From 20183afaec92af4748b2dd0d86ee5fd5c91c80e4 Mon Sep 17 00:00:00 2001 From: Koos85 Date: Fri, 4 Oct 2024 16:41:41 +0200 Subject: [PATCH 1/3] empty address fallback --- lib/snmpclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/snmpclient.py b/lib/snmpclient.py index 14a6c10..ac4baf8 100644 --- a/lib/snmpclient.py +++ b/lib/snmpclient.py @@ -17,7 +17,7 @@ def get_snmp_client( asset_config: dict, check_config: dict) -> Union[Snmp, SnmpV1, SnmpV3]: address = check_config.get('address') - if address is None: + if not address: address = asset.name version = asset_config.get('version', '2c') From 34844fff10eefcadd9be3a4a8d92ac5129015260 Mon Sep 17 00:00:00 2001 From: Koos85 Date: Wed, 9 Oct 2024 13:59:27 +0200 Subject: [PATCH 2/3] add mib --- mibs/orig/FIBRE-CHANNEL-FE-MIB | 1795 ++++++++++++++++++++++++++++++++ 1 file changed, 1795 insertions(+) create mode 100644 mibs/orig/FIBRE-CHANNEL-FE-MIB diff --git a/mibs/orig/FIBRE-CHANNEL-FE-MIB b/mibs/orig/FIBRE-CHANNEL-FE-MIB new file mode 100644 index 0000000..dd4e725 --- /dev/null +++ b/mibs/orig/FIBRE-CHANNEL-FE-MIB @@ -0,0 +1,1795 @@ +FIBRE-CHANNEL-FE-MIB DEFINITIONS ::= BEGIN + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Unsigned32, Counter32, Gauge32, Integer32, mib-2 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, TruthValue, TimeStamp + FROM SNMPv2-TC + SnmpAdminString + FROM SNMP-FRAMEWORK-MIB -- rfc2571 + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + + fcFeMIB MODULE-IDENTITY + LAST-UPDATED "200005180000Z" + ORGANIZATION "IETF IPFC Working Group" + CONTACT-INFO "Kha Sin Teow + Brocade Communications Systems, + 1901 Guadalupe Parkway, + San Jose, CA 95131 + U.S.A + Tel: +1 408 487 8180 + Fax: +1 408 487 8190 + Email: khasin@Brocade.COM + + WG Mailing list:ipfc@standards.gadzoox.com + To Subscribe: ipfc-request@standards.gadzoox.com + In Body: subscribe" + + DESCRIPTION "The MIB module for Fibre Channel Fabric Element." + REVISION "200005180000Z" + DESCRIPTION "Initial revision, published as RFC 2837." + ::= { mib-2 75 } + + fcFeMIBObjects OBJECT IDENTIFIER ::= { fcFeMIB 1 } + + -- Note: + -- fcFeMIBConformance OBJECT IDENTIFIER ::= { fcFeMIB 2 } + -- see at the end of the module + + -- Groups under fcFeMIBObjects + + fcFeConfig OBJECT IDENTIFIER ::= { fcFeMIBObjects 1 } + fcFeStatus OBJECT IDENTIFIER ::= { fcFeMIBObjects 2 } + fcFeError OBJECT IDENTIFIER ::= { fcFeMIBObjects 3 } + fcFeAccounting OBJECT IDENTIFIER ::= { fcFeMIBObjects 4 } + fcFeCapabilities OBJECT IDENTIFIER ::= { fcFeMIBObjects 5 } + + -- Textual Conventions + MilliSeconds ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents time unit value in milliseconds." + SYNTAX Unsigned32 + + MicroSeconds ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents time unit value in microseconds." + SYNTAX Unsigned32 + + FcNameId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the Worldwide Name associated with + a Fibre Channel (FC) entity." + SYNTAX OCTET STRING (SIZE (8)) + + FcAddressId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents Fibre Channel Address ID, a 24-bit + value unique within the address space of a Fabric." + SYNTAX OCTET STRING (SIZE (3)) + + FcRxDataFieldSize ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the receive data field size of an + NxPort or FxPort." + SYNTAX Integer32 (128..2112) + + FcBbCredit ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the buffer-to-buffer credit of an + NxPort or FxPort." + SYNTAX Integer32 (0..32767) + + FcphVersion ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the version of FC-PH supported by an + NxPort or FxPort." + SYNTAX Integer32 (0..255) + + FcStackedConnMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents an enumerated value used to indicate + the Class 1 Stacked Connect Mode supported by + an NxPort or FxPort." + SYNTAX INTEGER { + none(1), + transparent(2), + lockedDown(3) + } + + FcCosCap ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the class of service capability of an + NxPort or FxPort." + SYNTAX BITS { classF(0), class1(1), class2(2), class3(3), + class4(4), class5(5), class6(6) } + + FcFeModuleCapacity ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the maximum number of modules within + a Fabric Element." + SYNTAX Unsigned32 + + FcFeFxPortCapacity ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the maximum number of FxPorts within + a module." + SYNTAX Unsigned32 + + FcFeModuleIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the module index within a conceptual table." + SYNTAX Unsigned32 + + FcFeFxPortIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the FxPort index within a conceptual table." + SYNTAX Unsigned32 + + FcFeNxPortIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the NxPort index within a conceptual table." + SYNTAX Integer32 (1..126) + + FcBbCreditModel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Represents the BB_Credit model of an FxPort." + SYNTAX INTEGER { regular(1), alternate (2) } + + -- The Configuration group + + -- This group consists of scalar objects and tables. + -- It contains the configuration and service parameters + -- of the Fabric Element and the FxPorts. + -- The group represents a set of parameters associated with + -- the Fabric Element or an FxPort to support its NxPorts. + + fcFeFabricName OBJECT-TYPE + SYNTAX FcNameId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Name_Identifier of the Fabric to which this Fabric + Element belongs." + ::= { fcFeConfig 1 } + + fcFeElementName OBJECT-TYPE + SYNTAX FcNameId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Name_Identifier of the Fabric Element." + ::= { fcFeConfig 2 } + + fcFeModuleCapacity OBJECT-TYPE + SYNTAX FcFeModuleCapacity + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of modules in the Fabric Element, + regardless of their current state." + ::= { fcFeConfig 3 } + + -- The Module Table. + -- This table contains one entry for each module, + -- information of the modules. + + fcFeModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFeModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each module in the + Fabric Element, information of the modules." + ::= { fcFeConfig 4 } + + fcFeModuleEntry OBJECT-TYPE + SYNTAX FcFeModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the configuration parameters of a + module." + INDEX { fcFeModuleIndex } + ::= { fcFeModuleTable 1 } + + + FcFeModuleEntry ::= + SEQUENCE { + fcFeModuleIndex + FcFeModuleIndex, + fcFeModuleDescr + SnmpAdminString, + fcFeModuleObjectID + OBJECT IDENTIFIER, + fcFeModuleOperStatus + INTEGER, + fcFeModuleLastChange + TimeStamp, + fcFeModuleFxPortCapacity + FcFeFxPortCapacity, + fcFeModuleName + FcNameId + } + + fcFeModuleIndex OBJECT-TYPE + SYNTAX FcFeModuleIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object identifies the module within the Fabric Element + for which this entry contains information. This value is + never greater than fcFeModuleCapacity." + ::= { fcFeModuleEntry 1 } + + fcFeModuleDescr OBJECT-TYPE + SYNTAX SnmpAdminString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the module. This value should + include the full name and version identification of the + module." + ::= { fcFeModuleEntry 2 } + + fcFeModuleObjectID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor's authoritative identification of the module. + This value may be allocated within the SMI enterprises + subtree (1.3.6.1.4.1) and provides a straight-forward and + unambiguous means for determining what kind of module is + being managed. + + For example, this object could take the value + 1.3.6.1.4.1.99649.3.9 if vendor 'Neufe Inc.' was assigned + the subtree 1.3.6.1.4.1.99649, and had assigned the + identifier 1.3.6.1.4.1.99649.3.9 to its 'FeFiFo-16 + PlugInCard.'" + ::= { fcFeModuleEntry 3 } + + fcFeModuleOperStatus OBJECT-TYPE + SYNTAX INTEGER { + online (1), -- functional + offline (2), -- not available + testing (3), -- under testing + faulty (4) -- defective + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the operational status of the module: + online(1) the module is functioning properly; + offline(2) the module is not available; + testing(3) the module is under testing; and + faulty(4) the module is defective in some way." + ::= { fcFeModuleEntry 4 } + + fcFeModuleLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the value of sysUpTime when the module + entered its current operational status. A value of zero + indicates that the operational status of the module has not + changed since the agent last restarted." + ::= { fcFeModuleEntry 5 } + + fcFeModuleFxPortCapacity OBJECT-TYPE + SYNTAX FcFeFxPortCapacity + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of FxPort that can be contained within the + module. Within each module, the ports are uniquely numbered + in the range from 1 to fcFeModuleFxPortCapacity inclusive. + However, the numbers are not required to be contiguous." + ::= { fcFeModuleEntry 6 } + + fcFeModuleName OBJECT-TYPE + SYNTAX FcNameId + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Name_Identifier of the module." + ::= { fcFeModuleEntry 7 } + + -- the FxPort Configuration Table. + -- This table contains, one entry for each FxPort, + -- configuration parameters of the ports. + + fcFxPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort in the + Fabric Element, configuration and service parameters of the + FxPorts." + ::= { fcFeConfig 5 } + + fcFxPortEntry OBJECT-TYPE + SYNTAX FcFxPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the configuration and service parameters + of a FxPort." + INDEX { fcFeModuleIndex, fcFxPortIndex } + ::= { fcFxPortTable 1 } + + + FcFxPortEntry ::= + SEQUENCE { + fcFxPortIndex + FcFeFxPortIndex, + fcFxPortName + FcNameId, + -- FxPort common service parameters + fcFxPortFcphVersionHigh + FcphVersion, + fcFxPortFcphVersionLow + FcphVersion, + fcFxPortBbCredit + FcBbCredit, + fcFxPortRxBufSize + FcRxDataFieldSize, + fcFxPortRatov + MilliSeconds, + fcFxPortEdtov + MilliSeconds, + -- FxPort class service parameters + fcFxPortCosSupported + FcCosCap, + fcFxPortIntermixSupported + TruthValue, + fcFxPortStackedConnMode + FcStackedConnMode, + fcFxPortClass2SeqDeliv + TruthValue, + fcFxPortClass3SeqDeliv + TruthValue, + -- other configuration parameters + fcFxPortHoldTime + MicroSeconds + } + + fcFxPortIndex OBJECT-TYPE + SYNTAX FcFeFxPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object identifies the FxPort within the module. This + number ranges from 1 to the value of fcFeModulePortCapacity + for the associated module. The value remains constant for + the identified FxPort until the module is re-initialized." + ::= { fcFxPortEntry 1 } + + fcFxPortName OBJECT-TYPE + SYNTAX FcNameId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The World_wide Name of this FxPort. Each FxPort has a + unique Port World_wide Name within the Fabric." + ::= { fcFxPortEntry 2 } + + -- FxPort common service parameters + + fcFxPortFcphVersionHigh OBJECT-TYPE + SYNTAX FcphVersion + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The highest or most recent version of FC-PH that the FxPort + is configured to support." + ::= { fcFxPortEntry 3 } + + fcFxPortFcphVersionLow OBJECT-TYPE + SYNTAX FcphVersion + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The lowest or earliest version of FC-PH that the FxPort is + configured to support." + ::= { fcFxPortEntry 4 } + + fcFxPortBbCredit OBJECT-TYPE + SYNTAX FcBbCredit + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of receive buffers available for holding + Class 1 connect-request, Class 2 or 3 frames from the + attached NxPort. It is for buffer-to-buffer flow control + in the direction from the attached NxPort (if applicable) + to FxPort." + ::= { fcFxPortEntry 5 } + + fcFxPortRxBufSize OBJECT-TYPE + SYNTAX FcRxDataFieldSize + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The largest Data_Field Size (in octets) for an FT_1 frame + that can be received by the FxPort." + ::= { fcFxPortEntry 6 } + + fcFxPortRatov OBJECT-TYPE + SYNTAX MilliSeconds + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Resource_Allocation_Timeout Value configured for the + FxPort. This is used as the timeout value for determining + when to reuse an NxPort resource such as a + Recovery_Qualifier. It represents E_D_TOV (see next + object) plus twice the maximum time that a frame may be + delayed within the Fabric and still be delivered." + ::= { fcFxPortEntry 7 } + + fcFxPortEdtov OBJECT-TYPE + SYNTAX MilliSeconds + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The E_D_TOV value configured for the FxPort. The + Error_Detect_Timeout Value is used as the timeout value for + detecting an error condition." + ::= { fcFxPortEntry 8 } + + + -- FxPort class service parameters + + fcFxPortCosSupported OBJECT-TYPE + SYNTAX FcCosCap + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value indicating the set of Classes of Service supported + by the FxPort." + ::= { fcFxPortEntry 9 } + + fcFxPortIntermixSupported OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether or not the FxPort supports an + Intermixed Dedicated Connection." + ::= { fcFxPortEntry 10 } + + fcFxPortStackedConnMode OBJECT-TYPE + SYNTAX FcStackedConnMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value indicating the mode of Stacked Connect supported by + the FxPort." + ::= { fcFxPortEntry 11 } + + fcFxPortClass2SeqDeliv OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether or not Class 2 Sequential + Delivery is supported by the FxPort." + ::= { fcFxPortEntry 12 } + + fcFxPortClass3SeqDeliv OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether or not Class 3 Sequential + Delivery is supported by the FxPort." + ::= { fcFxPortEntry 13 } + + + -- other FxPort parameters + + fcFxPortHoldTime OBJECT-TYPE + SYNTAX MicroSeconds + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum time (in microseconds) that the FxPort shall + hold a frame before discarding the frame if it is unable to + deliver the frame. The value 0 means that the FxPort does + not support this parameter." + ::= { fcFxPortEntry 14 } + + + -- the Status group + + -- This group consists of tables that contains operational + -- status and established service parameters for the Fabric + -- Element and the attached NxPorts. + + -- The FxPort Status table + -- This table contains, one entry for each FxPort, + -- the operational status and parameters of the FxPorts. + + fcFxPortStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort in the + Fabric Element, operational status and parameters of the + FxPorts." + ::= { fcFeStatus 1 } + + fcFxPortStatusEntry OBJECT-TYPE + SYNTAX FcFxPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing operational status and parameters of a + FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortStatusTable 1 } + + + FcFxPortStatusEntry ::= + SEQUENCE { + fcFxPortID + FcAddressId, + fcFxPortBbCreditAvailable + Gauge32, + fcFxPortOperMode + INTEGER, + fcFxPortAdminMode + INTEGER + } + + fcFxPortID OBJECT-TYPE + SYNTAX FcAddressId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The address identifier by which this FxPort is identified + within the Fabric. The FxPort may assign its address + identifier to its attached NxPort(s) during Fabric Login." + ::= { fcFxPortStatusEntry 1 } + + fcFxPortBbCreditAvailable OBJECT-TYPE + SYNTAX Gauge32 + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of buffers currently available for receiving + frames from the attached port in the buffer-to-buffer flow + control. The value should be less than or equal to + fcFxPortBbCredit." + ::= { fcFxPortStatusEntry 2 } + + fcFxPortOperMode OBJECT-TYPE + SYNTAX INTEGER { unknown(1), fPort(2), flPort(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational mode of the FxPort." + ::= { fcFxPortStatusEntry 3 } + + fcFxPortAdminMode OBJECT-TYPE + SYNTAX INTEGER { fPort(2), flPort(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired operational mode of the FxPort." + ::= { fcFxPortStatusEntry 4 } + + + -- the FxPort Physical Level table + -- This table contains, one entry for each FxPort in the + -- Fabric Element, the physical level status and parameters + -- of the FxPorts. + + fcFxPortPhysTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortPhysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort in the + Fabric Element, physical level status and parameters of the + FxPorts." + ::= { fcFeStatus 2 } + + fcFxPortPhysEntry OBJECT-TYPE + SYNTAX FcFxPortPhysEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing physical level status and parameters of + a FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortPhysTable 1 } + + FcFxPortPhysEntry ::= + SEQUENCE { + fcFxPortPhysAdminStatus + INTEGER, + fcFxPortPhysOperStatus + INTEGER, + fcFxPortPhysLastChange + TimeStamp, + fcFxPortPhysRttov + MilliSeconds + } + + fcFxPortPhysAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + online (1), -- place port online + offline (2), -- take port offline + testing (3) -- initiate test procedures + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired state of the FxPort. A management station may + place the FxPort in a desired state by setting this object + accordingly. The testing(3) state indicates that no + operational frames can be passed. When a Fabric Element + initializes, all FxPorts start with fcFxPortPhysAdminStatus + in the offline(2) state. As the result of either explicit + management action or per configuration information + accessible by the Fabric Element, fcFxPortPhysAdminStatus + is then changed to either the online(1) or testing(3) + states, or remains in the offline state." + ::= { fcFxPortPhysEntry 1 } + + fcFxPortPhysOperStatus OBJECT-TYPE + SYNTAX INTEGER { + online (1), -- Login may proceed + offline (2), -- Login cannot proceed + testing (3), -- port is under test + linkFailure (4) -- failure after online/testing + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational status of the FxPort. The + testing(3) indicates that no operational frames can be + passed. If fcFxPortPhysAdminStatus is offline(2) then + fcFxPortPhysOperStatus should be offline(2). If + fcFxPortPhysAdminStatus is changed to online(1) then + fcFxPortPhysOperStatus should change to online(1) if the + FxPort is ready to accept Fabric Login request from the + attached NxPort; it should proceed and remain in the link- + failure(4) state if and only if there is a fault that + prevents it from going to the online(1) state." + ::= { fcFxPortPhysEntry 2 } + + fcFxPortPhysLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the FxPort entered its + current operational status. A value of zero indicates that + the FxPort's operational status has not changed since the + agent last restarted." + ::= { fcFxPortPhysEntry 3 } + + fcFxPortPhysRttov OBJECT-TYPE + SYNTAX MilliSeconds + UNITS "milliseconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Receiver_Transmitter_Timeout value of the FxPort. This + is used by the receiver logic to detect Loss of + Synchronization." + ::= { fcFxPortPhysEntry 4 } + + -- The FxPort Fabric Login table + -- + -- This table contains, one entry for each FxPort in the + -- Fabric Element, the Service Parameters that have been + -- established from the most recent Fabric Login, + -- implicit or explicit. + + fcFxLoginTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxLoginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each NxPort attached + to a particular FxPort in the Fabric Element, services + parameters established from the most recent Fabric Login, + explicit or implicit. Note that an FxPort may have one or + more NxPort attached to it." + ::= { fcFeStatus 3 } + + + fcFxLoginEntry OBJECT-TYPE + SYNTAX FcFxLoginEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing service parameters established from a + successful Fabric Login." + INDEX { fcFeModuleIndex, fcFxPortIndex, fcFxPortNxLoginIndex } + ::= { fcFxLoginTable 1 } + + FcFxLoginEntry ::= + SEQUENCE { + fcFxPortNxLoginIndex + FcFeNxPortIndex, + fcFxPortFcphVersionAgreed + FcphVersion, + fcFxPortNxPortBbCredit + FcBbCredit, + fcFxPortNxPortRxDataFieldSize + FcRxDataFieldSize, + fcFxPortCosSuppAgreed + FcCosCap, + fcFxPortIntermixSuppAgreed + TruthValue, + fcFxPortStackedConnModeAgreed + FcStackedConnMode, + fcFxPortClass2SeqDelivAgreed + TruthValue, + fcFxPortClass3SeqDelivAgreed + TruthValue, + -- + fcFxPortNxPortName + FcNameId, + fcFxPortConnectedNxPort + FcAddressId, + fcFxPortBbCreditModel + FcBbCreditModel + } + + fcFxPortNxLoginIndex OBJECT-TYPE + SYNTAX FcFeNxPortIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The object identifies the associated NxPort in the + attachment for which the entry contains information." + ::= { fcFxLoginEntry 1 } + + fcFxPortFcphVersionAgreed OBJECT-TYPE + SYNTAX FcphVersion + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of FC-PH that the FxPort has agreed to support + from the Fabric Login" + ::= { fcFxLoginEntry 2 } + + fcFxPortNxPortBbCredit OBJECT-TYPE + SYNTAX FcBbCredit + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of buffers available for holding Class 1 + connect-request, Class 2 or Class 3 frames to be + transmitted to the attached NxPort. It is for buffer-to- + buffer flow control in the direction from FxPort to NxPort. + The buffer-to-buffer flow control mechanism is indicated in + the respective fcFxPortBbCreditModel." + ::= { fcFxLoginEntry 3 } + + fcFxPortNxPortRxDataFieldSize OBJECT-TYPE + SYNTAX FcRxDataFieldSize + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Receive Data Field Size of the attached NxPort. This + object specifies the largest Data Field Size for an FT_1 + frame that can be received by the NxPort." + ::= { fcFxLoginEntry 4 } + + fcFxPortCosSuppAgreed OBJECT-TYPE + SYNTAX FcCosCap + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A variable indicating that the attached NxPort has + requested the FxPort for the support of classes of services + and the FxPort has granted the request." + ::= { fcFxLoginEntry 5 } + + fcFxPortIntermixSuppAgreed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A variable indicating that the attached NxPort has + requested the FxPort for the support of Intermix and the + FxPort has granted the request. This flag is only valid if + Class 1 service is supported." + ::= { fcFxLoginEntry 6 } + + fcFxPortStackedConnModeAgreed OBJECT-TYPE + SYNTAX FcStackedConnMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A variable indicating whether the FxPort has agreed to + support stacked connect from the Fabric Login. This is only + meaningful if Class 1 service has been agreed." + ::= { fcFxLoginEntry 7 } + + fcFxPortClass2SeqDelivAgreed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A variable indicating whether the FxPort has agreed to + support Class 2 sequential delivery from the Fabric Login. + This is only meaningful if Class 2 service has been + agreed." + ::= { fcFxLoginEntry 8 } + + fcFxPortClass3SeqDelivAgreed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether the FxPort has agreed to support + Class 3 sequential delivery from the Fabric Login. This is + only meaningful if Class 3 service has been agreed." + ::= { fcFxLoginEntry 9 } + + fcFxPortNxPortName OBJECT-TYPE + SYNTAX FcNameId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port name of the attached NxPort." + ::= { fcFxLoginEntry 10 } + + fcFxPortConnectedNxPort OBJECT-TYPE + SYNTAX FcAddressId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The address identifier of the destination NxPort with which + this FxPort is currently engaged in a either a Class 1 or + loop connection. If this FxPort is not engaged in a + connection, then the value of this object is '000000'H." + ::= { fcFxLoginEntry 11 } + + fcFxPortBbCreditModel OBJECT-TYPE + SYNTAX FcBbCreditModel + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object identifies the BB_Credit model used by the + FxPort." + ::= { fcFxLoginEntry 12 } + + + -- the Error group + -- This group consists of tables that contain information about + -- the various types of errors detected. The management station + -- may use the information in this group to determine the + -- quality of the link between the FxPort and its attached NxPort. + + -- the FxPort Error table + -- This table contains, one entry for each FxPort in the Fabric + -- Element, counters recording numbers of errors detected + -- since the management agent re-initialized. + -- The first 6 columnar objects after the port index corresponds + -- to the counters in the Link Error Status Block. + + fcFxPortErrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortErrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort, counters + that record the numbers of errors detected." + ::= { fcFeError 1 } + + fcFxPortErrorEntry OBJECT-TYPE + SYNTAX FcFxPortErrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing error counters of a FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortErrorTable 1 } + + + FcFxPortErrorEntry ::= + SEQUENCE { + fcFxPortLinkFailures + Counter32, + fcFxPortSyncLosses + Counter32, + fcFxPortSigLosses + Counter32, + fcFxPortPrimSeqProtoErrors + Counter32, + fcFxPortInvalidTxWords + Counter32, + fcFxPortInvalidCrcs + Counter32, + fcFxPortDelimiterErrors + Counter32, + fcFxPortAddressIdErrors + Counter32, + fcFxPortLinkResetIns + Counter32, + fcFxPortLinkResetOuts + Counter32, + fcFxPortOlsIns + Counter32, + fcFxPortOlsOuts + Counter32 + } + + fcFxPortLinkFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of link failures detected by this FxPort." + ::= { fcFxPortErrorEntry 1 } + + fcFxPortSyncLosses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of loss of synchronization detected by the + FxPort." + ::= { fcFxPortErrorEntry 2 } + + fcFxPortSigLosses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of loss of signal detected by the FxPort." + ::= { fcFxPortErrorEntry 3 } + + fcFxPortPrimSeqProtoErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of primitive sequence protocol errors detected + by the FxPort." + ::= { fcFxPortErrorEntry 4 } + + fcFxPortInvalidTxWords OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of invalid transmission word detected by the + FxPort." + ::= { fcFxPortErrorEntry 5 } + + fcFxPortInvalidCrcs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of invalid CRC detected by this FxPort." + ::= { fcFxPortErrorEntry 6 } + + fcFxPortDelimiterErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Delimiter Errors detected by this FxPort." + ::= { fcFxPortErrorEntry 7 } + + fcFxPortAddressIdErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of address identifier errors detected by this + FxPort." + ::= { fcFxPortErrorEntry 8 } + + fcFxPortLinkResetIns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Link Reset Protocol received by this FxPort + from the attached NxPort." + ::= { fcFxPortErrorEntry 9 } + + fcFxPortLinkResetOuts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Link Reset Protocol issued by this FxPort to + the attached NxPort." + ::= { fcFxPortErrorEntry 10 } + + fcFxPortOlsIns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Offline Sequence received by this FxPort." + ::= { fcFxPortErrorEntry 11 } + + fcFxPortOlsOuts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Offline Sequence issued by this FxPort." + ::= { fcFxPortErrorEntry 12 } + + + + -- Accounting Groups: + -- (1) Class 1 Accounting Group, + -- (2) Class 2 Accounting Group, and + -- (3) Class 3 Accounting Group. + -- Each group consists of a table that contains accounting + -- information for the FxPorts in the Fabric Element. + + -- the Class 1 Accounting table + -- This table contains, one entry for each FxPort in the Fabric + -- Element, Counter32s for certain types of events occurred in the + -- the FxPorts since the the management agent has re-initialized. + + fcFxPortC1AccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortC1AccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort in the + Fabric Element, Class 1 accounting information recorded + since the management agent has re-initialized." + ::= { fcFeAccounting 1 } + + fcFxPortC1AccountingEntry OBJECT-TYPE + SYNTAX FcFxPortC1AccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing Class 1 accounting information for each + FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortC1AccountingTable 1 } + + + FcFxPortC1AccountingEntry ::= + SEQUENCE { + fcFxPortC1InFrames + Counter32, + fcFxPortC1OutFrames + Counter32, + fcFxPortC1InOctets + Counter32, + fcFxPortC1OutOctets + Counter32, + fcFxPortC1Discards + Counter32, + fcFxPortC1FbsyFrames + Counter32, + fcFxPortC1FrjtFrames + Counter32, + fcFxPortC1InConnections + Counter32, + fcFxPortC1OutConnections + Counter32, + fcFxPortC1ConnTime + MilliSeconds + } + + fcFxPortC1InFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 frames (other than Class 1 connect- + request) received by this FxPort from its attached NxPort." + ::= { fcFxPortC1AccountingEntry 1 } + + fcFxPortC1OutFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 frames (other than Class 1 connect- + request) delivered through this FxPort to its attached + NxPort." + ::= { fcFxPortC1AccountingEntry 2 } + + fcFxPortC1InOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 frame octets, including the frame + delimiters, received by this FxPort from its attached + NxPort." + ::= { fcFxPortC1AccountingEntry 3 } + + fcFxPortC1OutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 frame octets, including the frame + delimiters, delivered through this FxPort its attached + NxPort." + ::= { fcFxPortC1AccountingEntry 4 } + + fcFxPortC1Discards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 frames discarded by this FxPort." + ::= { fcFxPortC1AccountingEntry 5 } + + fcFxPortC1FbsyFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of F_BSY frames generated by this FxPort against + Class 1 connect-request." + ::= { fcFxPortC1AccountingEntry 6 } + + fcFxPortC1FrjtFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of F_RJT frames generated by this FxPort against + Class 1 connect-request." + ::= { fcFxPortC1AccountingEntry 7 } + + fcFxPortC1InConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 connections successfully established + in which the attached NxPort is the source of the connect- + request." + ::= { fcFxPortC1AccountingEntry 8 } + + fcFxPortC1OutConnections OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 1 connections successfully established + in which the attached NxPort is the destination of the + connect-request." + ::= { fcFxPortC1AccountingEntry 9 } + + fcFxPortC1ConnTime OBJECT-TYPE + SYNTAX MilliSeconds + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cumulative time that this FxPort has been engaged in + Class 1 connection. The amount of time is counted from + after a connect-request has been accepted until the + connection is disengaged, either by an EOFdt or Link + Reset." + ::= { fcFxPortC1AccountingEntry 10 } + + + -- the Class 2 Accounting table + -- This table contains, one entry for each FxPort in the Fabric + -- Element, Counter32s for certain types of events occurred in the + -- the FxPorts since the the management agent has re-initialized. + + + fcFxPortC2AccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortC2AccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort in the + Fabric Element, Class 2 accounting information recorded + since the management agent has re-initialized." + ::= { fcFeAccounting 2 } + + fcFxPortC2AccountingEntry OBJECT-TYPE + SYNTAX FcFxPortC2AccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing Class 2 accounting information for each + FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortC2AccountingTable 1 } + + FcFxPortC2AccountingEntry ::= + SEQUENCE { + fcFxPortC2InFrames + Counter32, + fcFxPortC2OutFrames + Counter32, + fcFxPortC2InOctets + Counter32, + fcFxPortC2OutOctets + Counter32, + fcFxPortC2Discards + Counter32, + fcFxPortC2FbsyFrames + Counter32, + fcFxPortC2FrjtFrames + Counter32 + } + + fcFxPortC2InFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 2 frames received by this FxPort from + its attached NxPort." + ::= { fcFxPortC2AccountingEntry 1 } + + fcFxPortC2OutFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 2 frames delivered through this FxPort + to its attached NxPort." + ::= { fcFxPortC2AccountingEntry 2 } + + fcFxPortC2InOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 2 frame octets, including the frame + delimiters, received by this FxPort from its attached + NxPort." + ::= { fcFxPortC2AccountingEntry 3 } + + fcFxPortC2OutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 2 frame octets, including the frame + delimiters, delivered through this FxPort to its attached + NxPort." + ::= { fcFxPortC2AccountingEntry 4 } + + fcFxPortC2Discards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 2 frames discarded by this FxPort." + ::= { fcFxPortC2AccountingEntry 5 } + + fcFxPortC2FbsyFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of F_BSY frames generated by this FxPort against + Class 2 frames." + ::= { fcFxPortC2AccountingEntry 6 } + + fcFxPortC2FrjtFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of F_RJT frames generated by this FxPort against + Class 2 frames." + ::= { fcFxPortC2AccountingEntry 7 } + + -- the Class 3 Accounting Group + -- This table contains, one entry for each FxPort in the Fabric + -- Element, Counter32s for certain types of events occurred in the + -- the FxPorts since the management agent has re-initialized. + + fcFxPortC3AccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortC3AccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort in the + Fabric Element, Class 3 accounting information recorded + since the management agent has re-initialized." + ::= { fcFeAccounting 3 } + + fcFxPortC3AccountingEntry OBJECT-TYPE + SYNTAX FcFxPortC3AccountingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing Class 3 accounting information for each + FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortC3AccountingTable 1 } + + + FcFxPortC3AccountingEntry ::= + SEQUENCE { + fcFxPortC3InFrames + Counter32, + fcFxPortC3OutFrames + Counter32, + fcFxPortC3InOctets + Counter32, + fcFxPortC3OutOctets + Counter32, + fcFxPortC3Discards + Counter32 + } + + fcFxPortC3InFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 3 frames received by this FxPort from + its attached NxPort." + ::= { fcFxPortC3AccountingEntry 1 } + + fcFxPortC3OutFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 3 frames delivered through this FxPort + to its attached NxPort." + ::= { fcFxPortC3AccountingEntry 2 } + + fcFxPortC3InOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 3 frame octets, including the frame + delimiters, received by this FxPort from its attached + NxPort." + ::= { fcFxPortC3AccountingEntry 3 } + + fcFxPortC3OutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 3 frame octets, including the frame + delimiters, delivered through this FxPort to its attached + NxPort." + ::= { fcFxPortC3AccountingEntry 4 } + + fcFxPortC3Discards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Class 3 frames discarded by this FxPort." + ::= { fcFxPortC3AccountingEntry 5 } + + + -- The Capability Group - consists of a table describing + -- information about what each FxPort is inherently capable + -- of operating or supporting. + -- A capability may be used, as expressed in its respective + -- object value in the Configuration group. + + fcFxPortCapTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcFxPortCapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains, one entry for each FxPort, the + capabilities of the port within the Fabric Element." + ::= { fcFeCapabilities 1 } + + fcFxPortCapEntry OBJECT-TYPE + SYNTAX FcFxPortCapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing the Cap of a FxPort." + AUGMENTS { fcFxPortEntry } + ::= { fcFxPortCapTable 1 } + + + FcFxPortCapEntry ::= + SEQUENCE { + fcFxPortCapFcphVersionHigh + FcphVersion, + fcFxPortCapFcphVersionLow + FcphVersion, + fcFxPortCapBbCreditMax + FcBbCredit, + fcFxPortCapBbCreditMin + FcBbCredit, + fcFxPortCapRxDataFieldSizeMax + FcRxDataFieldSize, + fcFxPortCapRxDataFieldSizeMin + FcRxDataFieldSize, + fcFxPortCapCos + FcCosCap, + fcFxPortCapIntermix + TruthValue, + fcFxPortCapStackedConnMode + FcStackedConnMode, + fcFxPortCapClass2SeqDeliv + TruthValue, + fcFxPortCapClass3SeqDeliv + TruthValue, + fcFxPortCapHoldTimeMax + MicroSeconds, + fcFxPortCapHoldTimeMin + MicroSeconds + } + + fcFxPortCapFcphVersionHigh OBJECT-TYPE + SYNTAX FcphVersion + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The highest or most recent version of FC-PH that the FxPort + is capable of supporting." + ::= { fcFxPortCapEntry 1 } + + fcFxPortCapFcphVersionLow OBJECT-TYPE + SYNTAX FcphVersion + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The lowest or earliest version of FC-PH that the FxPort is + capable of supporting." + ::= { fcFxPortCapEntry 2 } + + fcFxPortCapBbCreditMax OBJECT-TYPE + SYNTAX FcBbCredit + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of receive buffers available for holding + Class 1 connect-request, Class 2 or Class 3 frames from the + attached NxPort." + ::= { fcFxPortCapEntry 3 } + + fcFxPortCapBbCreditMin OBJECT-TYPE + SYNTAX FcBbCredit + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum number of receive buffers available for holding + Class 1 connect-request, Class 2 or Class 3 frames from the + attached NxPort." + ::= { fcFxPortCapEntry 4 } + + fcFxPortCapRxDataFieldSizeMax OBJECT-TYPE + SYNTAX FcRxDataFieldSize + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum size in bytes of the Data Field in a frame that + the FxPort is capable of receiving from its attached + NxPort." + ::= { fcFxPortCapEntry 5 } + + fcFxPortCapRxDataFieldSizeMin OBJECT-TYPE + SYNTAX FcRxDataFieldSize + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum size in bytes of the Data Field in a frame that + the FxPort is capable of receiving from its attached + NxPort." + ::= { fcFxPortCapEntry 6 } + + fcFxPortCapCos OBJECT-TYPE + SYNTAX FcCosCap + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value indicating the set of Classes of Service that the + FxPort is capable of supporting." + ::= { fcFxPortCapEntry 7 } + + fcFxPortCapIntermix OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether or not the FxPort is capable of + supporting the intermixing of Class 2 and Class 3 frames + during a Class 1 connection. This flag is only valid if the + port is capable of supporting Class 1 service." + ::= { fcFxPortCapEntry 8 } + + fcFxPortCapStackedConnMode OBJECT-TYPE + SYNTAX FcStackedConnMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value indicating the mode of Stacked Connect request that + the FxPort is capable of supporting." + ::= { fcFxPortCapEntry 9 } + + fcFxPortCapClass2SeqDeliv OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether or not the FxPort is capable of + supporting Class 2 Sequential Delivery." + ::= { fcFxPortCapEntry 10 } + + fcFxPortCapClass3SeqDeliv OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag indicating whether or not the FxPort is capable of + supporting Class 3 Sequential Delivery." + ::= { fcFxPortCapEntry 11 } + + fcFxPortCapHoldTimeMax OBJECT-TYPE + SYNTAX MicroSeconds + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum holding time (in microseconds) that the FxPort + is capable of supporting." + ::= { fcFxPortCapEntry 12 } + + fcFxPortCapHoldTimeMin OBJECT-TYPE + SYNTAX MicroSeconds + UNITS "microseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum holding time (in microseconds) that the FxPort + is capable of supporting." + ::= { fcFxPortCapEntry 13 } + + -- conformance information + + fcFeMIBConformance OBJECT IDENTIFIER ::= { fcFeMIB 2 } + fcFeMIBCompliances OBJECT IDENTIFIER ::= { fcFeMIBConformance 1 } + fcFeMIBGroups OBJECT IDENTIFIER ::= { fcFeMIBConformance 2 } + + -- compliance statements + fcFeMIBMinimumCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The minimum compliance statement for SNMP entities + which implement the FIBRE-CHANNEL-FE-MIB." + MODULE -- this module + MANDATORY-GROUPS { fcFeConfigGroup, fcFeStatusGroup, + fcFeErrorGroup } + + OBJECT fcFeFabricName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFeElementName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFeModuleName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortAdminMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortPhysAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortPhysRttov + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortBbCreditModel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { fcFeMIBCompliances 1 } + + fcFeMIBFullCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The full compliance statement for SNMP entities + which implement the FIBRE-CHANNEL-FE-MIB." + MODULE -- this module + MANDATORY-GROUPS { fcFeConfigGroup, fcFeStatusGroup, + fcFeErrorGroup, fcFeCapabilitiesGroup } + + GROUP fcFeClass1AccountingGroup + DESCRIPTION + "This group is mandatory for all fibre channel fabric + elements which support class 1 frames." + + GROUP fcFeClass2AccountingGroup + DESCRIPTION + "This group is mandatory for all fibre channel fabric + elements which support class 2 frames." + + GROUP fcFeClass3AccountingGroup + DESCRIPTION + "This group is mandatory for all fibre channel fabric + elements which support class 3 frames." + + OBJECT fcFeFabricName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFeElementName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFeModuleName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortAdminMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortPhysAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortPhysRttov + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT fcFxPortBbCreditModel + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + ::= { fcFeMIBCompliances 2 } + + -- units of conformance + fcFeConfigGroup OBJECT-GROUP + OBJECTS { fcFeFabricName, fcFeElementName, fcFeModuleCapacity, + fcFeModuleDescr, fcFeModuleObjectID, + fcFeModuleOperStatus, fcFeModuleLastChange, + fcFeModuleFxPortCapacity, fcFeModuleName, + fcFxPortName, fcFxPortFcphVersionHigh, + fcFxPortFcphVersionLow, fcFxPortBbCredit, + fcFxPortRxBufSize, fcFxPortRatov, fcFxPortEdtov, + fcFxPortCosSupported, fcFxPortIntermixSupported, + fcFxPortStackedConnMode, fcFxPortClass2SeqDeliv, + fcFxPortClass3SeqDeliv, fcFxPortHoldTime } + STATUS current + DESCRIPTION + "A collection of objects providing the configuration and service + parameters of the Fabric Element, the modules, and FxPorts." + ::= { fcFeMIBGroups 1 } + + fcFeStatusGroup OBJECT-GROUP + OBJECTS { fcFxPortID, fcFxPortBbCreditAvailable, + fcFxPortOperMode, fcFxPortAdminMode, + fcFxPortPhysAdminStatus, fcFxPortPhysOperStatus, + fcFxPortPhysLastChange, fcFxPortPhysRttov, + fcFxPortFcphVersionAgreed, fcFxPortNxPortBbCredit, + fcFxPortNxPortRxDataFieldSize, fcFxPortCosSuppAgreed, + fcFxPortIntermixSuppAgreed, + fcFxPortStackedConnModeAgreed, + fcFxPortClass2SeqDelivAgreed, + fcFxPortClass3SeqDelivAgreed, + fcFxPortNxPortName, fcFxPortConnectedNxPort, + fcFxPortBbCreditModel } + STATUS current + DESCRIPTION + "A collection of objects providing the operational status and + established service parameters for the Fabric Element and the + attached NxPorts." + ::= { fcFeMIBGroups 2 } + + fcFeErrorGroup OBJECT-GROUP + OBJECTS { fcFxPortLinkFailures, fcFxPortSyncLosses, + fcFxPortSigLosses, fcFxPortPrimSeqProtoErrors, + fcFxPortInvalidTxWords, fcFxPortInvalidCrcs, + fcFxPortDelimiterErrors, fcFxPortAddressIdErrors, + fcFxPortLinkResetIns, fcFxPortLinkResetOuts, + fcFxPortOlsIns, fcFxPortOlsOuts } + STATUS current + DESCRIPTION + "A collection of objects providing various error + statistics detected by the FxPorts." + ::= { fcFeMIBGroups 3 } + + fcFeClass1AccountingGroup OBJECT-GROUP + OBJECTS { fcFxPortC1InFrames, fcFxPortC1OutFrames, + fcFxPortC1InOctets, fcFxPortC1OutOctets, + fcFxPortC1Discards, fcFxPortC1FbsyFrames, + fcFxPortC1FrjtFrames, fcFxPortC1InConnections, + fcFxPortC1OutConnections, fcFxPortC1ConnTime + } + STATUS current + DESCRIPTION + "A collection of objects providing various class 1 + performance statistics detected by the FxPorts." + ::= { fcFeMIBGroups 4 } + + fcFeClass2AccountingGroup OBJECT-GROUP + OBJECTS { fcFxPortC2InFrames, fcFxPortC2OutFrames, + fcFxPortC2InOctets, fcFxPortC2OutOctets, + fcFxPortC2Discards, fcFxPortC2FbsyFrames, + fcFxPortC2FrjtFrames + } + STATUS current + DESCRIPTION + "A collection of objects providing various class 2 + performance statistics detected by the FxPorts." + ::= { fcFeMIBGroups 5 } + + fcFeClass3AccountingGroup OBJECT-GROUP + OBJECTS { fcFxPortC3InFrames, fcFxPortC3OutFrames, + fcFxPortC3InOctets, fcFxPortC3OutOctets, + fcFxPortC3Discards + } + STATUS current + DESCRIPTION + "A collection of objects providing various class 3 + performance statistics detected by the FxPorts." + ::= { fcFeMIBGroups 6 } + + fcFeCapabilitiesGroup OBJECT-GROUP + OBJECTS { fcFxPortCapFcphVersionHigh, fcFxPortCapFcphVersionLow, + fcFxPortCapBbCreditMax, fcFxPortCapBbCreditMin, + fcFxPortCapRxDataFieldSizeMax, + fcFxPortCapRxDataFieldSizeMin, + fcFxPortCapCos, fcFxPortCapIntermix, + fcFxPortCapStackedConnMode, fcFxPortCapClass2SeqDeliv, + fcFxPortCapClass3SeqDeliv, fcFxPortCapHoldTimeMax, + fcFxPortCapHoldTimeMin + } + STATUS current + DESCRIPTION + "A collection of objects providing the inherent + capability of each FxPort within the Fabric Element." + ::= { fcFeMIBGroups 7 } + + + END \ No newline at end of file From be4a5955020d5c1db136931b6367758944a47cbe Mon Sep 17 00:00:00 2001 From: Koos85 Date: Wed, 9 Oct 2024 15:22:49 +0200 Subject: [PATCH 3/3] cleanup mibs parse code --- mibs/README.md | 4 - mibs/orig/AH-INTERFACE-MIB | 965 - mibs/orig/AH-SMI-MIB | 87 - mibs/orig/AH-SYSTEM-MIB | 125 - mibs/orig/BDTMIB | 546 - mibs/orig/BRIDGE-MIB | 1503 - mibs/orig/Brocade-REG-MIB | 80 - mibs/orig/Brocade-TC | 78 - mibs/orig/CISCO-ENTITY-SENSOR-MIB | 970 - mibs/orig/CISCO-ENVMON-MIB | 938 - mibs/orig/CISCO-FIREWALL-MIB | 1336 - mibs/orig/CISCO-LWAPP-WLAN-MIB | 4253 -- mibs/orig/CISCO-MEMORY-POOL-MIB | 475 - mibs/orig/CISCO-PROCESS-MIB | 3311 - mibs/orig/CISCO-QOS-PIB-MIB | 2022 - mibs/orig/CISCO-SMI | 566 - mibs/orig/CISCO-SYSLOG-MIB | 605 - mibs/orig/CISCO-TC | 2669 - mibs/orig/CPQHLTH-MIB | 8511 --- mibs/orig/CPQHOST-MIB | 2583 - mibs/orig/CPQIDA-MIB | 11238 --- mibs/orig/CPQSINFO-MIB | 4132 -- mibs/orig/CPQSTDEQ-MIB | 5926 -- mibs/orig/DELL-RAC-MIB | 4023 -- mibs/orig/EATON-EMP-MIB | 271 - mibs/orig/EATON-OIDS | 193 - mibs/orig/ENTITY-MIB | 1466 - mibs/orig/ENTITY-SENSOR-MIB | 440 - mibs/orig/FCMGMT-MIB | 3340 - mibs/orig/FIBRE-CHANNEL-FE-MIB | 1795 - mibs/orig/HCNUM-TC | 141 - mibs/orig/HOST-RESOURCES-MIB | 1540 - mibs/orig/HOST-RESOURCES-TYPES | 394 - mibs/orig/HP-ICF-CHASSIS | 901 - mibs/orig/HP-ICF-OID | 4408 -- mibs/orig/HP-ICF-TC | 148 - mibs/orig/IANA-RTPROTO-MIB | 101 - mibs/orig/IANAifType-MIB | 518 - mibs/orig/IDRAC-MIB-SMIv2 | 11389 --- mibs/orig/IF-MIB | 1828 - mibs/orig/INET-ADDRESS-MIB | 425 - mibs/orig/IP-FORWARD-MIB | 1276 - mibs/orig/IP-MIB | 5171 -- mibs/orig/IPV6-MIB | 1459 - mibs/orig/IPV6-TC | 75 - mibs/orig/MG-SNMP-UPS-MIB | 2967 - mibs/orig/NETBOTZ300-MIB | 8803 --- mibs/orig/NIMBLE-MIB | 318 - mibs/orig/NS-ROOT-MIB | 25772 ------- mibs/orig/P-BRIDGE-MIB | 1102 - mibs/orig/PAN-COMMON-MIB | 2629 - mibs/orig/PAN-GLOBAL-REG | 84 - mibs/orig/PAN-GLOBAL-TC | 68 - mibs/orig/POWER-ETHERNET-MIB | 629 - mibs/orig/PowerNet-MIB | 78619 --------------------- mibs/orig/RFC-1212 | 79 - mibs/orig/RFC-1215 | 110 - mibs/orig/RFC1155-SMI | 183 - mibs/orig/RFC1213-MIB | 2618 - mibs/orig/RFC1271-MIB | 3357 - mibs/orig/RMON-MIB | 3948 -- mibs/orig/RMON2-MIB | 5953 -- mibs/orig/SNMP-FRAMEWORK-MIB | 538 - mibs/orig/SNMPv2-CONF | 19 - mibs/orig/SNMPv2-MIB | 864 - mibs/orig/SNMPv2-SMI | 344 - mibs/orig/SNMPv2-TC | 729 - mibs/orig/STATISTICS-MIB | 1523 - mibs/orig/SW-MIB | 4172 -- mibs/orig/SYNOLOGY-DISK-MIB | 141 - mibs/orig/SYNOLOGY-EBOX-MIB | 94 - mibs/orig/SYNOLOGY-FLASHCACHE-MIB | 218 - mibs/orig/SYNOLOGY-ISCSILUN-MIB | 212 - mibs/orig/SYNOLOGY-RAID-MIB | 127 - mibs/orig/SYNOLOGY-SERVICES-MIB | 86 - mibs/orig/SYNOLOGY-SHA-MIB | 141 - mibs/orig/SYNOLOGY-SMART-MIB | 141 - mibs/orig/SYNOLOGY-SPACEIO-MIB | 189 - mibs/orig/SYNOLOGY-STORAGEIO-MIB | 187 - mibs/orig/SYNOLOGY-SYSTEM-MIB | 156 - mibs/orig/TCP-MIB | 792 - mibs/orig/TOKEN-RING-RMON-MIB | 2580 - mibs/orig/UBNT-MIB | 108 - mibs/orig/UBNT-UniFi-MIB | 606 - mibs/orig/UCD-DISKIO-MIB | 171 - mibs/orig/UCD-SNMP-MIB | 1788 - mibs/orig/UDP-MIB | 553 - mibs/orig/XG-FIREWALL-MIB | 655 - mibs/orig/XUPS-MIB | 2057 - mibs/parse_mibs.py | 54 - mibs/parsed/AH-INTERFACE-MIB.json | 1167 - mibs/parsed/AH-SMI-MIB.json | 155 - mibs/parsed/AH-SYSTEM-MIB.json | 162 - mibs/parsed/BDTMIB.json | 309 - mibs/parsed/BRIDGE-MIB.json | 881 - mibs/parsed/Brocade-REG-MIB.json | 68 - mibs/parsed/Brocade-TC.json | 72 - mibs/parsed/CISCO-ENTITY-SENSOR-MIB.json | 476 - mibs/parsed/CISCO-ENVMON-MIB.json | 582 - mibs/parsed/CISCO-FIREWALL-MIB.json | 945 - mibs/parsed/CISCO-LWAPP-WLAN-MIB.json | 2970 - mibs/parsed/CISCO-MEMORY-POOL-MIB.json | 310 - mibs/parsed/CISCO-PROCESS-MIB.json | 1972 - mibs/parsed/CISCO-QOS-PIB-MIB.json | 1966 - mibs/parsed/CISCO-SMI.json | 397 - mibs/parsed/CISCO-SYSLOG-MIB.json | 432 - mibs/parsed/CISCO-TC.json | 731 - mibs/parsed/CPQHLTH-MIB.json | 4843 -- mibs/parsed/CPQHOST-MIB.json | 1901 - mibs/parsed/CPQIDA-MIB.json | 5952 -- mibs/parsed/CPQSINFO-MIB.json | 3078 - mibs/parsed/CPQSTDEQ-MIB.json | 4740 -- mibs/parsed/DELL-RAC-MIB.json | 1398 - mibs/parsed/EATON-EMP-MIB.json | 219 - mibs/parsed/EATON-OIDS.json | 254 - mibs/parsed/FCMGMT-MIB.json | 2787 - mibs/parsed/HCNUM-TC.json | 39 - mibs/parsed/HP-ICF-CHASSIS.json | 679 - mibs/parsed/HP-ICF-OID.json | 5577 -- mibs/parsed/HP-ICF-TC.json | 125 - mibs/parsed/IDRAC-MIB-SMIv2.json | 8389 --- mibs/parsed/MG-SNMP-UPS-MIB.json | 2978 - mibs/parsed/NETBOTZ300-MIB.json | 2569 - mibs/parsed/NIMBLE-MIB.json | 400 - mibs/parsed/NS-ROOT-MIB.json | 32382 --------- mibs/parsed/P-BRIDGE-MIB.json | 696 - mibs/parsed/PAN-COMMON-MIB.json | 3233 - mibs/parsed/PAN-GLOBAL-REG.json | 68 - mibs/parsed/PAN-GLOBAL-TC.json | 43 - mibs/parsed/PowerNet-MIB.json | 75326 -------------------- mibs/parsed/RMON-MIB.json | 2605 - mibs/parsed/RMON2-MIB.json | 3528 - mibs/parsed/STATISTICS-MIB.json | 1859 - mibs/parsed/SW-MIB.json | 4387 -- mibs/parsed/SYNOLOGY-DISK-MIB.json | 155 - mibs/parsed/SYNOLOGY-EBOX-MIB.json | 133 - mibs/parsed/SYNOLOGY-FLASHCACHE-MIB.json | 261 - mibs/parsed/SYNOLOGY-ISCSILUN-MIB.json | 276 - mibs/parsed/SYNOLOGY-RAID-MIB.json | 144 - mibs/parsed/SYNOLOGY-SERVICES-MIB.json | 122 - mibs/parsed/SYNOLOGY-SHA-MIB.json | 192 - mibs/parsed/SYNOLOGY-SMART-MIB.json | 188 - mibs/parsed/SYNOLOGY-SPACEIO-MIB.json | 229 - mibs/parsed/SYNOLOGY-STORAGEIO-MIB.json | 229 - mibs/parsed/SYNOLOGY-SYSTEM-MIB.json | 175 - mibs/parsed/TOKEN-RING-RMON-MIB.json | 2124 - mibs/parsed/UBNT-MIB.json | 212 - mibs/parsed/UBNT-UniFi-MIB.json | 801 - mibs/parsed/XG-FIREWALL-MIB.json | 861 - mibs/parsed/XUPS-MIB.json | 1742 - mibs/parser/__init__.py | 0 mibs/parser/grammar.py | 353 - mibs/parser/parse_tree.py | 167 - mibs/parser/utils.py | 52 - mibs/requirements.txt | 1 - 155 files changed, 442776 deletions(-) delete mode 100644 mibs/README.md delete mode 100644 mibs/orig/AH-INTERFACE-MIB delete mode 100644 mibs/orig/AH-SMI-MIB delete mode 100644 mibs/orig/AH-SYSTEM-MIB delete mode 100644 mibs/orig/BDTMIB delete mode 100644 mibs/orig/BRIDGE-MIB delete mode 100644 mibs/orig/Brocade-REG-MIB delete mode 100644 mibs/orig/Brocade-TC delete mode 100644 mibs/orig/CISCO-ENTITY-SENSOR-MIB delete mode 100644 mibs/orig/CISCO-ENVMON-MIB delete mode 100644 mibs/orig/CISCO-FIREWALL-MIB delete mode 100644 mibs/orig/CISCO-LWAPP-WLAN-MIB delete mode 100644 mibs/orig/CISCO-MEMORY-POOL-MIB delete mode 100644 mibs/orig/CISCO-PROCESS-MIB delete mode 100644 mibs/orig/CISCO-QOS-PIB-MIB delete mode 100644 mibs/orig/CISCO-SMI delete mode 100644 mibs/orig/CISCO-SYSLOG-MIB delete mode 100644 mibs/orig/CISCO-TC delete mode 100644 mibs/orig/CPQHLTH-MIB delete mode 100644 mibs/orig/CPQHOST-MIB delete mode 100644 mibs/orig/CPQIDA-MIB delete mode 100644 mibs/orig/CPQSINFO-MIB delete mode 100644 mibs/orig/CPQSTDEQ-MIB delete mode 100644 mibs/orig/DELL-RAC-MIB delete mode 100644 mibs/orig/EATON-EMP-MIB delete mode 100644 mibs/orig/EATON-OIDS delete mode 100644 mibs/orig/ENTITY-MIB delete mode 100644 mibs/orig/ENTITY-SENSOR-MIB delete mode 100644 mibs/orig/FCMGMT-MIB delete mode 100644 mibs/orig/FIBRE-CHANNEL-FE-MIB delete mode 100644 mibs/orig/HCNUM-TC delete mode 100644 mibs/orig/HOST-RESOURCES-MIB delete mode 100644 mibs/orig/HOST-RESOURCES-TYPES delete mode 100644 mibs/orig/HP-ICF-CHASSIS delete mode 100644 mibs/orig/HP-ICF-OID delete mode 100644 mibs/orig/HP-ICF-TC delete mode 100644 mibs/orig/IANA-RTPROTO-MIB delete mode 100644 mibs/orig/IANAifType-MIB delete mode 100644 mibs/orig/IDRAC-MIB-SMIv2 delete mode 100644 mibs/orig/IF-MIB delete mode 100644 mibs/orig/INET-ADDRESS-MIB delete mode 100644 mibs/orig/IP-FORWARD-MIB delete mode 100644 mibs/orig/IP-MIB delete mode 100644 mibs/orig/IPV6-MIB delete mode 100644 mibs/orig/IPV6-TC delete mode 100644 mibs/orig/MG-SNMP-UPS-MIB delete mode 100644 mibs/orig/NETBOTZ300-MIB delete mode 100644 mibs/orig/NIMBLE-MIB delete mode 100644 mibs/orig/NS-ROOT-MIB delete mode 100644 mibs/orig/P-BRIDGE-MIB delete mode 100644 mibs/orig/PAN-COMMON-MIB delete mode 100644 mibs/orig/PAN-GLOBAL-REG delete mode 100644 mibs/orig/PAN-GLOBAL-TC delete mode 100644 mibs/orig/POWER-ETHERNET-MIB delete mode 100644 mibs/orig/PowerNet-MIB delete mode 100644 mibs/orig/RFC-1212 delete mode 100644 mibs/orig/RFC-1215 delete mode 100644 mibs/orig/RFC1155-SMI delete mode 100644 mibs/orig/RFC1213-MIB delete mode 100644 mibs/orig/RFC1271-MIB delete mode 100644 mibs/orig/RMON-MIB delete mode 100644 mibs/orig/RMON2-MIB delete mode 100644 mibs/orig/SNMP-FRAMEWORK-MIB delete mode 100644 mibs/orig/SNMPv2-CONF delete mode 100644 mibs/orig/SNMPv2-MIB delete mode 100644 mibs/orig/SNMPv2-SMI delete mode 100644 mibs/orig/SNMPv2-TC delete mode 100644 mibs/orig/STATISTICS-MIB delete mode 100644 mibs/orig/SW-MIB delete mode 100644 mibs/orig/SYNOLOGY-DISK-MIB delete mode 100644 mibs/orig/SYNOLOGY-EBOX-MIB delete mode 100644 mibs/orig/SYNOLOGY-FLASHCACHE-MIB delete mode 100644 mibs/orig/SYNOLOGY-ISCSILUN-MIB delete mode 100644 mibs/orig/SYNOLOGY-RAID-MIB delete mode 100644 mibs/orig/SYNOLOGY-SERVICES-MIB delete mode 100644 mibs/orig/SYNOLOGY-SHA-MIB delete mode 100644 mibs/orig/SYNOLOGY-SMART-MIB delete mode 100644 mibs/orig/SYNOLOGY-SPACEIO-MIB delete mode 100644 mibs/orig/SYNOLOGY-STORAGEIO-MIB delete mode 100644 mibs/orig/SYNOLOGY-SYSTEM-MIB delete mode 100644 mibs/orig/TCP-MIB delete mode 100644 mibs/orig/TOKEN-RING-RMON-MIB delete mode 100644 mibs/orig/UBNT-MIB delete mode 100644 mibs/orig/UBNT-UniFi-MIB delete mode 100644 mibs/orig/UCD-DISKIO-MIB delete mode 100644 mibs/orig/UCD-SNMP-MIB delete mode 100644 mibs/orig/UDP-MIB delete mode 100644 mibs/orig/XG-FIREWALL-MIB delete mode 100644 mibs/orig/XUPS-MIB delete mode 100644 mibs/parse_mibs.py delete mode 100644 mibs/parsed/AH-INTERFACE-MIB.json delete mode 100644 mibs/parsed/AH-SMI-MIB.json delete mode 100644 mibs/parsed/AH-SYSTEM-MIB.json delete mode 100644 mibs/parsed/BDTMIB.json delete mode 100644 mibs/parsed/BRIDGE-MIB.json delete mode 100644 mibs/parsed/Brocade-REG-MIB.json delete mode 100644 mibs/parsed/Brocade-TC.json delete mode 100644 mibs/parsed/CISCO-ENTITY-SENSOR-MIB.json delete mode 100644 mibs/parsed/CISCO-ENVMON-MIB.json delete mode 100644 mibs/parsed/CISCO-FIREWALL-MIB.json delete mode 100644 mibs/parsed/CISCO-LWAPP-WLAN-MIB.json delete mode 100644 mibs/parsed/CISCO-MEMORY-POOL-MIB.json delete mode 100644 mibs/parsed/CISCO-PROCESS-MIB.json delete mode 100644 mibs/parsed/CISCO-QOS-PIB-MIB.json delete mode 100644 mibs/parsed/CISCO-SMI.json delete mode 100644 mibs/parsed/CISCO-SYSLOG-MIB.json delete mode 100644 mibs/parsed/CISCO-TC.json delete mode 100644 mibs/parsed/CPQHLTH-MIB.json delete mode 100644 mibs/parsed/CPQHOST-MIB.json delete mode 100644 mibs/parsed/CPQIDA-MIB.json delete mode 100644 mibs/parsed/CPQSINFO-MIB.json delete mode 100644 mibs/parsed/CPQSTDEQ-MIB.json delete mode 100644 mibs/parsed/DELL-RAC-MIB.json delete mode 100644 mibs/parsed/EATON-EMP-MIB.json delete mode 100644 mibs/parsed/EATON-OIDS.json delete mode 100644 mibs/parsed/FCMGMT-MIB.json delete mode 100644 mibs/parsed/HCNUM-TC.json delete mode 100644 mibs/parsed/HP-ICF-CHASSIS.json delete mode 100644 mibs/parsed/HP-ICF-OID.json delete mode 100644 mibs/parsed/HP-ICF-TC.json delete mode 100644 mibs/parsed/IDRAC-MIB-SMIv2.json delete mode 100644 mibs/parsed/MG-SNMP-UPS-MIB.json delete mode 100644 mibs/parsed/NETBOTZ300-MIB.json delete mode 100644 mibs/parsed/NIMBLE-MIB.json delete mode 100644 mibs/parsed/NS-ROOT-MIB.json delete mode 100644 mibs/parsed/P-BRIDGE-MIB.json delete mode 100644 mibs/parsed/PAN-COMMON-MIB.json delete mode 100644 mibs/parsed/PAN-GLOBAL-REG.json delete mode 100644 mibs/parsed/PAN-GLOBAL-TC.json delete mode 100644 mibs/parsed/PowerNet-MIB.json delete mode 100644 mibs/parsed/RMON-MIB.json delete mode 100644 mibs/parsed/RMON2-MIB.json delete mode 100644 mibs/parsed/STATISTICS-MIB.json delete mode 100644 mibs/parsed/SW-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-DISK-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-EBOX-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-FLASHCACHE-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-ISCSILUN-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-RAID-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-SERVICES-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-SHA-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-SMART-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-SPACEIO-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-STORAGEIO-MIB.json delete mode 100644 mibs/parsed/SYNOLOGY-SYSTEM-MIB.json delete mode 100644 mibs/parsed/TOKEN-RING-RMON-MIB.json delete mode 100644 mibs/parsed/UBNT-MIB.json delete mode 100644 mibs/parsed/UBNT-UniFi-MIB.json delete mode 100644 mibs/parsed/XG-FIREWALL-MIB.json delete mode 100644 mibs/parsed/XUPS-MIB.json delete mode 100644 mibs/parser/__init__.py delete mode 100644 mibs/parser/grammar.py delete mode 100644 mibs/parser/parse_tree.py delete mode 100644 mibs/parser/utils.py delete mode 100644 mibs/requirements.txt diff --git a/mibs/README.md b/mibs/README.md deleted file mode 100644 index a41ea6a..0000000 --- a/mibs/README.md +++ /dev/null @@ -1,4 +0,0 @@ -``` -run parse_mibs.py when a new mib is added to the mibs/orig folder -``` - diff --git a/mibs/orig/AH-INTERFACE-MIB b/mibs/orig/AH-INTERFACE-MIB deleted file mode 100644 index a708a85..0000000 --- a/mibs/orig/AH-INTERFACE-MIB +++ /dev/null @@ -1,965 +0,0 @@ --- --- Copyright (c) 2006-2018. Aerohive Netowrks, Inc --- All rights reserved. - -AH-INTERFACE-MIB DEFINITIONS ::= BEGIN - --- --- Imports --- - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, IpAddress - FROM SNMPv2-SMI - TruthValue - FROM SNMPv2-TC - ahAPInterface, AhString, AhNodeID, AhInterfaceMode, AhInterfaceType, AhMACProtocol - FROM AH-SMI-MIB - ifIndex, ifEntry - FROM IF-MIB; - -ahInterface MODULE-IDENTITY - LAST-UPDATED "201608310000Z" -- Aug 31, 2016 - ORGANIZATION "Aerohive Networks, Inc" - CONTACT-INFO "info@aerohive.com - 1011 McCarthy Boulevard - - Milpitas, CA 95035" - DESCRIPTION "This module contains the MIB definition of - interface related information." - - ::= { ahAPInterface 1 } - - - -AhAuthenticationMethod ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Authentication method supported within Aerohive AP" - SYNTAX INTEGER { - cwp (0), - open (1), - wep-open (2), - wep-shared (3), - wpa-psk (4), - wpa2-psk (5), - wpa-8021x (6), - wpa2-8021X (7), - wpa-auto-psk (8), - wpa-auto-8021x (9), - dynamic-wep (10) - } - -AhEncrytionMethod ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Encryption method supported within Aerohive AP" - SYNTAX INTEGER { - AES (0), - TKIP (1), - WEP (2), - Non (3) - } - - --- --- Aerohive Extension to ifTable --- interfaceName --- SSIDName --- interfaceMode --- - -ahXIfTable OBJECT-TYPE - SYNTAX SEQUENCE OF AhXIfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of all the Interface/SSID info - not covered by the rfc 2863" - ::= { ahInterface 1 } - -ahXIfEntry OBJECT-TYPE - SYNTAX AhXIfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Individual entry of Interface/SSID table" - AUGMENTS { ifEntry } - ::= { ahXIfTable 1 } - -AhXIfEntry ::= SEQUENCE { - ahIfName AhString, - ahSSIDName AhString, - ahIfPromiscuous TruthValue, - ahIfType AhInterfaceType, - ahIfMode AhInterfaceMode, - ahIfConfMode AhInterfaceMode - } - - -ahIfName OBJECT-TYPE - SYNTAX AhString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Name - uniquely identifies an AP Interface." - ::= { ahXIfEntry 1 } - - -ahSSIDName OBJECT-TYPE - SYNTAX AhString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Name - identifies a wireless interface with Access mode. - If the interface is not a wireless interface with Access mode, the - SSIDName should be set N/A" - ::= { ahXIfEntry 2 } - -ahIfPromiscuous OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Indicates whether an interface is in promiscuous - mode or not." - ::= { ahXIfEntry 3 } - -ahIfType OBJECT-TYPE - SYNTAX AhInterfaceType - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Indicates whether an interface is a physical - or virtual one." - ::= { ahXIfEntry 4 } - -ahIfMode OBJECT-TYPE - SYNTAX AhInterfaceMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Indicates whether an interface is used for Access - or Backhaul currently." - ::= { ahXIfEntry 5 } - -ahIfConfMode OBJECT-TYPE - SYNTAX AhInterfaceMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Indicates whether an interface is configured for Access - or Backhaul." - ::= { ahXIfEntry 6 } - --- --- AssociationTable --- ClientMac --- RSSI --- linkUpTime --- --- Association are attached to wireless interface with Access mode only --- - -ahAssociationTable OBJECT-TYPE - SYNTAX SEQUENCE OF AhAssociationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of directly connected APs" - ::= { ahInterface 2 } - -ahAssociationEntry OBJECT-TYPE - SYNTAX AhAssociationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Individual entry of client table" - INDEX { ifIndex, ahClientMac } - ::= { ahAssociationTable 1 } - -AhAssociationEntry ::= SEQUENCE { - ahClientMac AhNodeID, - ahClientIP IpAddress, - ahClientHostname AhString, - ahClientRSSI Integer32, - ahClientLinkUptime Counter32, - ahClientCWPUsed TruthValue, - ahClientAuthMethod AhAuthenticationMethod, - ahClientEncryptionMethod AhEncrytionMethod, - ahClientMACProtocol AhMACProtocol, - ahClientSSID AhString, - ahClientVLAN Integer32, - ahClientUserProfId Integer32, - ahClientChannel Integer32, - ahClientLastTxRate Integer32, - ahClientUsername AhString, - ahClientRxDataFrames Counter32, - ahClientRxDataOctets Counter32, - ahClientRxMgtFrames Counter32, - ahClientRxUnicastFrames Counter32, - ahClientRxMICFailures Counter32, - ahClientLastRxRate Integer32, - ahClientTxDataFrames Counter32, - ahClientTxBeDataFrames Counter32, - ahClientTxBgDataFrames Counter32, - ahClientTxViDataFrames Counter32, - ahClientTxVoDataFrames Counter32, - ahClientTxMgtFrames Counter32, - ahClientTxDataOctets Counter32, - ahClientTxUnicastFrames Counter32, - ahClientTxMulticastFrames Counter32, - ahClientTxBroadcastFrames Counter32, - ahClientTxAirtime Counter64, - ahClientRxAirtime Counter64, - ahClientAssociationTime Counter32, - ahClientBSSID AhNodeID -} - -ahClientMac OBJECT-TYPE - SYNTAX AhNodeID - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Uniquely identifies a client." - ::= { ahAssociationEntry 1 } - -ahClientIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The IP address of the client if known. Otherwise, this - field should be 0" - ::= { ahAssociationEntry 2 } - -ahClientHostname OBJECT-TYPE - SYNTAX AhString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The host name of the client if known. Otherwise, this - field should be empty" - ::= { ahAssociationEntry 3 } - -ahClientRSSI OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "An indicator for the RSSI of the client - derived from last communication" - ::= { ahAssociationEntry 4 } - -ahClientLinkUptime OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Link up time in second" - ::= { ahAssociationEntry 5 } - -ahClientCWPUsed OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The boolean indicating whether Captive Web Portal - is used." - ::= { ahAssociationEntry 6 } - -ahClientAuthMethod OBJECT-TYPE - SYNTAX AhAuthenticationMethod - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The authentication method the client uses to communicated - with AP" - ::= { ahAssociationEntry 7 } - -ahClientEncryptionMethod OBJECT-TYPE - SYNTAX AhEncrytionMethod - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The encryption method the client uses to communicated - with AP" - ::= { ahAssociationEntry 8 } - -ahClientMACProtocol OBJECT-TYPE - SYNTAX AhMACProtocol - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The radio mode the client uses to communicated - with AP" - ::= { ahAssociationEntry 9 } - -ahClientSSID OBJECT-TYPE - SYNTAX AhString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The SSID used by client to communicated - with AP" - ::= { ahAssociationEntry 10 } - -ahClientVLAN OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The VLAN used by client to communicated - with AP" - ::= { ahAssociationEntry 11 } - - -ahClientUserProfId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The user profile id used by client to communicated - with AP" - ::= { ahAssociationEntry 12 } - -ahClientChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The radio channel used by client to communicated - with AP" - ::= { ahAssociationEntry 13 } - -ahClientLastTxRate OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The rate (KBPS) of last transmitting frame to the client." - ::= { ahAssociationEntry 14 } - -ahClientUsername OBJECT-TYPE - SYNTAX AhString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The client user name to login to the network. - It contain empty string if the authentication - method is other than EAP (802.1x)." - ::= { ahAssociationEntry 15 } - -ahClientRxDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of data frames received from client - to AP" - ::= { ahAssociationEntry 16 } - -ahClientRxDataOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of data octets received from client - to AP" - ::= { ahAssociationEntry 17 } - -ahClientRxMgtFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of mgt frames received from client - to AP" - ::= { ahAssociationEntry 18 } - -ahClientRxUnicastFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of unitcast frames received from client - to AP" - ::= { ahAssociationEntry 19 } - -ahClientRxMulticastFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of multicast frames received - from client to AP." - ::= { ahAssociationEntry 20 } - -ahClientRxBroadcastFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of broadcast frames received - from client to AP." - ::= { ahAssociationEntry 21 } - -ahClientRxMICFailures OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of frames dropped due to Message - Integrity Check failure from client to AP." - ::= { ahAssociationEntry 22 } - -ahClientTxDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted data frames - from ." - ::= { ahAssociationEntry 23 } - -ahClientTxMgtFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted management frames - from ." - ::= { ahAssociationEntry 24 } - -ahClientTxDataOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted data in octets - from ." - ::= { ahAssociationEntry 25 } - -ahClientTxUnicastFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of unitcast frames transmitted from client - to AP" - ::= { ahAssociationEntry 26 } - -ahClientTxMulticastFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of multicast frames transmitted from client - to AP" - ::= { ahAssociationEntry 27 } - -ahClientTxBroadcastFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of broadcast frames transmitted from client - to AP" - ::= { ahAssociationEntry 28 } - -ahClientLastRxRate OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The rate (KBPS) of last received frame from client." - ::= { ahAssociationEntry 29 } - -ahClientTxBeDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted best effort priority data frames - from AP to client." - ::= { ahAssociationEntry 30 } - -ahClientTxBgDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted back ground priority data frames - from AP to client." - ::= { ahAssociationEntry 31 } - -ahClientTxViDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted video priority data frames - from AP to client." - ::= { ahAssociationEntry 32 } - -ahClientTxVoDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted voice priority data frames - from AP to client." - ::= { ahAssociationEntry 33 } - -ahClientTxAirtime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The accumulative transmit time in microseconds () - from AP to client." - ::= { ahAssociationEntry 34 } - -ahClientRxAirtime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The accumulative receive time in microseconds (us) - from client to AP." - ::= { ahAssociationEntry 35 } - -ahClientAssociationTime OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The association time(s) of client connect to AP." - ::= { ahAssociationEntry 36 } - -ahClientBSSID OBJECT-TYPE - SYNTAX AhNodeID - MAX-ACCESS read-only - STATUS current - DESCRIPTION "It is the basic service set identifier of the client." - ::= { ahAssociationEntry 37 } --- --- ahIfRadioStatsTable --- --- Statistics for Aerohive HiveAP Radio interfaces. --- - -ahRadioStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AhRadioStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of radio interface statistics." - ::= { ahInterface 3 } - -ahRadioStatsEntry OBJECT-TYPE - SYNTAX AhRadioStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Individual entry of client table" - INDEX { ifIndex } - ::= { ahRadioStatsTable 1 } - -AhRadioStatsEntry ::= SEQUENCE { - ahRadioTxDataFrames Counter32, - ahRadioTxBeDataFrames Counter32, - ahRadioTxBgDataFrames Counter32, - ahRadioTxViDataFrames Counter32, - ahRadioTxVoDataFrames Counter32, - ahRadioTxUnicastDataFrames Counter32, - ahRadioTxMulticastDataFrames Counter32, - ahRadioTxBroadcastDataFrames Counter32, - ahRadioTxNonBeaconMgtFrames Counter32, - ahRadioTxBeaconFrames Counter32, - ahRadioTxTotalRetries Counter32, - ahRadioTxTotalFramesDropped Counter32, - ahRadioTxTotalFrameErrors Counter32, - ahRadioTxFEForExcessiveHWRetries Counter32, - ahRadioTXRTSFailures Counter32, - ahRadioRxTotalDataFrames Counter32, - ahRadioRxUnicastDataFrames Counter32, - ahRadioRxMulticastDataFrames Counter32, - ahRadioRxBroadcastDataFrames Counter32, - ahRadioRxMgtFrames Counter32, - ahRadioRxTotalFrameDropped Counter32, - ahRadioTxAirtime Counter64, - ahRadioRxAirtime Counter64 -} - -ahRadioTxDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmit data frames for the given - interface." - ::= { ahRadioStatsEntry 1 } - -ahRadioTxUnicastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted unicast frames - for the given interface." - ::= { ahRadioStatsEntry 2 } - -ahRadioTxMulticastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted multicast frames - for the given interface." - ::= { ahRadioStatsEntry 3 } - -ahRadioTxBroadcastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted broadcast frames - for the given interface." - ::= { ahRadioStatsEntry 4 } - -ahRadioTxNonBeaconMgtFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmit management frames - other than beacon for the given interface." - ::= { ahRadioStatsEntry 5 } - -ahRadioTxBeaconFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmit beacon frames for the given - interface." - ::= { ahRadioStatsEntry 6 } - -ahRadioTxTotalRetries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The total number of transmit retries for the given - interface." - ::= { ahRadioStatsEntry 7 } - -ahRadioTxTotalFramesDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmit frames dropped - for the given interface." - ::= { ahRadioStatsEntry 8 } - -ahRadioTxTotalFrameErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The total number of transmit frames in error - for the given interface." - ::= { ahRadioStatsEntry 9 } - -ahRadioTxFEForExcessiveHWRetries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmit frames in error due to - excessive hardware retries for the given interface." - ::= { ahRadioStatsEntry 10 } - -ahRadioRxTotalDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The total number of received data frames - for the given interface." - ::= { ahRadioStatsEntry 11 } - -ahRadioRxUnicastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received unicast frames - for the given interface." - ::= { ahRadioStatsEntry 12 } - -ahRadioRxMulticastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received multicast frames - for the given interface." - ::= { ahRadioStatsEntry 13 } - -ahRadioRxBroadcastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received broadcast frames - for the given interface." - ::= { ahRadioStatsEntry 14 } - -ahRadioRxMgtFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received management frames - for the given interface." - ::= { ahRadioStatsEntry 15 } - -ahRadioRxTotalFrameDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The total number of dropped received frames - for the given interface." - ::= { ahRadioStatsEntry 16 } - -ahRadioTxBeDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted best effort priority data frames - from the radio." - ::= { ahRadioStatsEntry 17 } - -ahRadioTxBgDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted back ground priority data frames - from the radio." - ::= { ahRadioStatsEntry 18 } - -ahRadioTxViDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted video priority data frames - from the radio." - ::= { ahRadioStatsEntry 19 } - -ahRadioTxVoDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted voice priority data frames - from the radio." - ::= { ahRadioStatsEntry 20 } - -ahRadioTXRTSFailures OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted RTS failures - from the Radio." - ::= { ahRadioStatsEntry 21 } - -ahRadioTxAirtime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The accumulative transmit time in microseconds (us) - from the given Radio." - ::= { ahRadioStatsEntry 22 } - -ahRadioRxAirtime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The accumulative receive time in microseconds (us) - to the given radio." - ::= { ahRadioStatsEntry 23 } - --- --- ahVIfStatsTable --- --- Statistics for Aerohive HiveAP Virtual Interfaces (VIf). --- - -ahVIfStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AhVIfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of virtual interface (vif) statistics." - ::= { ahInterface 4 } - -ahVIfStatsEntry OBJECT-TYPE - SYNTAX AhVIfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Individual entry of VIf statistics" - INDEX { ifIndex } - ::= { ahVIfStatsTable 1 } - -AhVIfStatsEntry ::= SEQUENCE { - ahVIfRxDataFrames Counter32, - ahVIfRxUnicastDataFrames Counter32, - ahVIfRxMulticastDataFrames Counter32, - ahVIfRxBroadcastDataFrames Counter32, - ahVIfRxErrorFrames Counter32, - ahVIfRxDroppedFrames Counter32, - ahVIfTxDataFrames Counter32, - ahVIfTxBeDataFrames Counter32, - ahVIfTxBgDataFrames Counter32, - ahVIfTxViDataFrames Counter32, - ahVIfTxVoDataFrames Counter32, - ahVIfTxUnicastDataFrames Counter32, - ahVIfTxMulticastDataFrames Counter32, - ahVIfTxBroadcastDataFrames Counter32, - ahVIfTxErrorFrames Counter32, - ahVIfTxDroppedFrames Counter32, - ahVifTxAirtime Counter64, - ahVifRxAirtime Counter64 -} - -ahVIfRxDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received data frames for the given - virtual interface." - ::= { ahVIfStatsEntry 1 } - -ahVIfRxUnicastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received unicast data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 2 } - -ahVIfRxMulticastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received multicast data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 3 } - -ahVIfRxBroadcastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received broadcast data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 4 } - -ahVIfRxErrorFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received error frames for the given - virtual interface." - ::= { ahVIfStatsEntry 5 } - -ahVIfRxDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of received dropped frames for the given - virtual interface." - ::= { ahVIfStatsEntry 6 } - -ahVIfTxDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of trasmitted data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 7 } - -ahVIfTxUnicastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted unicast data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 8 } - -ahVIfTxMulticastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted multicast data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 9 } - -ahVIfTxBroadcastDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted broadcast data frames - for the given virtual interface." - ::= { ahVIfStatsEntry 10 } - -ahVIfTxErrorFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of trasmitted frames encontered error - for the given virtual interface." - ::= { ahVIfStatsEntry 11 } - -ahVIfTxDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of trasmitted frames dropped due to error - condition for the given virtual interface." - ::= { ahVIfStatsEntry 12 } - -ahVIfTxBeDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted best effort priority data frames - from the virtual interface." - ::= { ahVIfStatsEntry 13 } - -ahVIfTxBgDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted back ground priority data frames - from the virtual interface." - ::= { ahVIfStatsEntry 14 } - -ahVIfTxViDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted video priority data frames - from the virtual interface." - ::= { ahVIfStatsEntry 15 } - -ahVIfTxVoDataFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of transmitted voice priority data frames - from the virtual interface." - ::= { ahVIfStatsEntry 16 } - -ahVifTxAirtime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The accumulative transmit time in microseconds (us) - from the given SSID." - ::= { ahVIfStatsEntry 17 } - -ahVifRxAirtime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The accumulative receive time in microseconds (us) - to the given SSID." - ::= { ahVIfStatsEntry 18 } - --- --- ahIfRadioAttributeTable --- --- Attribute for Aerohive HiveAP Radio interfaces. --- - -ahRadioAttributeTable OBJECT-TYPE - SYNTAX SEQUENCE OF AhRadioAttributeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of radio interface statistics." - ::= { ahInterface 5 } - -ahRadioAttributeEntry OBJECT-TYPE - SYNTAX AhRadioAttributeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Individual entry for each Radio" - INDEX { ifIndex } - ::= { ahRadioAttributeTable 1 } - -AhRadioAttributeEntry ::= SEQUENCE { - ahRadioChannel Integer32, - ahRadioTxPower Integer32, - ahRadioNoiseFloor Integer32 - } - -ahRadioChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The channel number currently in use for this radio." - ::= { ahRadioAttributeEntry 1 } - -ahRadioTxPower OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The transmit power currently for the radio in dbm. The range - is 0 to 20 dBm" - ::= { ahRadioAttributeEntry 2 } - -ahRadioNoiseFloor OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The noise floor for the radio dbm. The range is 0 to 256 dBm. - The value of this variable is the actual value plus 256 dBm." - ::= { ahRadioAttributeEntry 3 } - -END diff --git a/mibs/orig/AH-SMI-MIB b/mibs/orig/AH-SMI-MIB deleted file mode 100644 index 930609e..0000000 --- a/mibs/orig/AH-SMI-MIB +++ /dev/null @@ -1,87 +0,0 @@ --- --- Copyright (c) 2006-2013. Aerohive Netowrks, Inc --- All rights reserved. - -AH-SMI-MIB DEFINITIONS ::= BEGIN - --- --- Imports --- - -IMPORTS MODULE-IDENTITY, OBJECT-TYPE, enterprises - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, MacAddress - FROM SNMPv2-TC; - --- --- Module Identity --- - -aerohive MODULE-IDENTITY - LAST-UPDATED "200612140000Z" -- Dec 14, 2006 - ORGANIZATION "Aerohive Networks, Inc" - CONTACT-INFO "info@aerohive.com - 330 Gibraltar Drive - Sunnyvale CA, 94089" - DESCRIPTION - "This is the MIB module for object type definitions - that are used throughout the Aerohive Networks enterprise MIBs." - - - ::= { enterprises 26928 } - - -ahProduct OBJECT IDENTIFIER ::= { aerohive 1 } - -ahAP OBJECT IDENTIFIER ::= { ahProduct 1 } -ahAPCommon OBJECT IDENTIFIER ::= { ahAP 1 } -ahAPTrap OBJECT IDENTIFIER ::= { ahAPCommon 1 } -ahAPInterface OBJECT IDENTIFIER ::= { ahAPCommon 2 } -ahAPMRP OBJECT IDENTIFIER ::= { ahAPCommon 3 } -ahAPIDP OBJECT IDENTIFIER ::= { ahAPCommon 4 } - -ahAPHiveAP020-ag OBJECT IDENTIFIER ::= { ahAP 2 } -ahAPHiveAP028-ag OBJECT IDENTIFIER ::= { ahAP 3 } -ahAPHiveAP320-n OBJECT IDENTIFIER ::= { ahAP 4 } -ahAPHiveAP340-n OBJECT IDENTIFIER ::= { ahAP 5 } - -AhString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "A text string with 32 octets" - SYNTAX OCTET STRING (SIZE (0..32)) - -AhNodeID ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Mgmt MAC address in hex decimal notation" - SYNTAX MacAddress - -AhInterfaceType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Interface type - (PHYSICAL, VIRTUAL)" - SYNTAX INTEGER { - ahPHYSICAL (0), -- physical Interface - ahVIRTURAL (1) -- logical Interface - } - -AhInterfaceMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Interface role types" - SYNTAX INTEGER { - ahNotUsed (0), -- interface is not used - ahAccess (1), -- interface is used for access - ahBackhaul (2), -- interface is used for backhaul - ahBridge (3) -- interface is used for bridge - } - -AhMACProtocol ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Radio Mode" - SYNTAX INTEGER { - ah11a (0), -- A mode - ah11b (1), -- B mode - ah11g (2), -- G mode - ah11na (3), -- NA mode - ah11ng (4) -- NG mode - } - -END diff --git a/mibs/orig/AH-SYSTEM-MIB b/mibs/orig/AH-SYSTEM-MIB deleted file mode 100644 index 78f43cf..0000000 --- a/mibs/orig/AH-SYSTEM-MIB +++ /dev/null @@ -1,125 +0,0 @@ --- --- Copyright (c) 2010-2016. Aerohive Networks, Inc --- All rights reserved. - -AH-SYSTEM-MIB DEFINITIONS ::= BEGIN - --- --- Imports --- - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE - FROM SNMPv2-SMI - - DisplayString - FROM SNMPv2-TC - - ahProduct - FROM AH-SMI-MIB; - --- --- Module Identity --- - -ahSystem MODULE-IDENTITY - LAST-UPDATED "201608310000Z" -- Aug 31, 2016 - ORGANIZATION "Aerohive Networks, Inc" - CONTACT-INFO "info@aerohive.com - 1011 McCarthy Boulevard - Milpitas, CA 95035" - DESCRIPTION "This module contains the MIB definition of - aerohive system related information." - - ::= { ahProduct 2 } - --- --- Aerohive Extension to ahSystem --- - -ahSystemName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform system name" - ::= { ahSystem 1 } - -ahSystemDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform system description" - ::= { ahSystem 2 } - -ahCpuUtilization OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform cpu utilization" - ::= { ahSystem 3 } - -ahMemUtilization OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform memory utilization" - ::= { ahSystem 4 } - -ahSystemSerial OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform system serial-number" - ::= { ahSystem 5 } - -ahDeviceMode OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive device mode type" - ::= { ahSystem 6 } - -ahUpTime OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform up time" - ::= { ahSystem 7 } - -ahHwVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform hardware version" - ::= { ahSystem 8 } - -ahClientCount OBJECT-TYPE - SYNTAX INTEGER (0..10000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "the counter of devices connected to aerohive products" - ::= { ahSystem 9 } - -ahEnvirmentTemp OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive envirment temp-ditection" - ::= { ahSystem 10 } - -ahEnvirmentFan OBJECT-TYPE - SYNTAX INTEGER (0..10000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive envirment fan speed, unit as RPM" - ::= { ahSystem 11 } - -ahFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "aerohive platform fireware version" - ::= { ahSystem 12 } - - -END diff --git a/mibs/orig/BDTMIB b/mibs/orig/BDTMIB deleted file mode 100644 index 96e030f..0000000 --- a/mibs/orig/BDTMIB +++ /dev/null @@ -1,546 +0,0 @@ - BDTMIB DEFINITIONS ::= BEGIN - - IMPORTS - OBJECT-TYPE - FROM RFC-1212 - TRAP-TYPE - FROM RFC-1215 - enterprises - FROM RFC1155-SMI - DisplayString - FROM RFC1213-MIB; - - - --- --- Node definitions --- - - bdt OBJECT IDENTIFIER ::= { enterprises 20884 } - - storage OBJECT IDENTIFIER ::= { bdt 10893 } - - hardware OBJECT IDENTIFIER ::= { storage 2 } - - bDTagent OBJECT IDENTIFIER ::= { hardware 101 } - - bDTAgentInfo OBJECT IDENTIFIER ::= { bDTagent 1 } - - bDTDisplayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of this agent for display purposes." - ::= { bDTAgentInfo 1 } - - bDTDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A short description of this agent ." - ::= { bDTAgentInfo 2 } - - bDTAgentVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the agent software manufacturer." - ::= { bDTAgentInfo 3 } - - bDTAgentVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of this SNMP agent software." - ::= { bDTAgentInfo 4 } - - bDTGlobalData OBJECT IDENTIFIER ::= { bDTagent 2 } - - bDTGlobalStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - unknown(2), - ok(3), - non-critical(4), - critical(5), - non-Recoverable(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current status of the agent for this server. - This is a rollup for the entire agent including any - monitored devices. The status is intended to give - initiative to a snmp monitor to get further data when - this status is abnormal. - " - ::= { bDTGlobalData 1 } - - bDTLastGlobalStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - unknown(2), - ok(3), - non-critical(4), - critical(5), - non-recoverable(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status before the current status which induced an initiative - to issue a global status change trap." - ::= { bDTGlobalData 2 } - - bDTTimeStamp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The last time that the agent values have been updated. - Universal time in sec since UTC 1/1/70." - ::= { bDTGlobalData 3 } - - bDTGetTimeOut OBJECT-TYPE - SYNTAX INTEGER (1..10000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Suggested time out value in milleseconds for how long the SNMP getter - should wait while attempting to poll the SNMP agent." - ::= { bDTGlobalData 4 } - - bDTErrorCode OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Error Code." - ::= { bDTGlobalData 5 } - - bDTRefreshRate OBJECT-TYPE - SYNTAX INTEGER (-1..1000000000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Rate in milliseconds at which the agent cached data is being updated. If the - value is 0 then the data is not cached. If the value is -1 then the value does - not apply." - ::= { bDTGlobalData 6 } - - bDTErrorData OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Error Data." - ::= { bDTGlobalData 9 } - - - bDTDeviceInfo OBJECT IDENTIFIER ::= { bDTagent 4 } - - bDTDevSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device Serial Number." - ::= { bDTDeviceInfo 1 } - - bDTDevVendorID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device Vendor ID." - ::= { bDTDeviceInfo 2 } - - bDTDevProductID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device Product ID." - ::= { bDTDeviceInfo 3 } - - bDTDevFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device Firmware Revision." - ::= { bDTDeviceInfo 4 } - - bDTDevRobFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device Robotic Firmware Revision." - ::= { bDTDeviceInfo 5 } - - bDTDevBootcodeRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Device Bootcode Revision." - ::= { bDTDeviceInfo 6 } - --- --- Trap definitions --- - bDTTraps OBJECT IDENTIFIER ::= { bDTagent 3 } - - bDTAgentStatusChange TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTGlobalStatus, bDTLastGlobalStatus } - DESCRIPTION - "The %s status has changed to %d. Previous status was %d." - --#TYPE "Status Changed" - --#SUMMARY "The %s status has changed to %d. Previous status was %d." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 1 - - bDTPowerUp TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName } - DESCRIPTION - "The %s device has powered up." - --#TYPE "Power Up" - --#SUMMARY "The %s device has powered up." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 2 - - - bDTShutdown TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName } - DESCRIPTION - "The %s device has shutdown." - --#TYPE "Shut Down" - --#SUMMARY "The %s device has shutdown." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE NONOPERATIONAL - ::= 3 - - - bDTError TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTErrorCode, bDTErrorData } - DESCRIPTION - "The %s device had an error. Error code is %s. Error data is %s." - --#TYPE "Error" - --#SUMMARY "The %s device had an error. Error code is %s. Error data is %s." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY MAJOR - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 4 - - - bDTInformational TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTErrorCode, bDTErrorData } - DESCRIPTION - "The %s device has changed (%s). %s" - --#TYPE "Informational" - --#SUMMARY "The %s device has changed (%s). %s" - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 5 - - - bDTWarning TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTErrorCode, bDTErrorData } - DESCRIPTION - "The %s device had a warning. Error code is %s. Error data is %s." - --#TYPE "Warning" - --#SUMMARY "The %s device had a warning. Error code is %s. Error data is %s." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY MINOR - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 6 - - bDTCritical TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTErrorCode, bDTErrorData } - DESCRIPTION - "The %s device had an critial error. Error code is %s. Error data is %s." - --#TYPE "Critical" - --#SUMMARY "The %s device had an critial error. Error code is %s. Error data is %s." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY CRITICAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 7 - - - bDTMailslotOpen TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName } - DESCRIPTION - "The %s device: mailslot opened." - --#TYPE "Mailslot Opened" - --#SUMMARY "The %s device: mailslot opened." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 8 - - - bDTMailslotClosed TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName } - DESCRIPTION - "The %s device: mailslot closed." - --#TYPE "Mailslot Closed" - --#SUMMARY "The %s device: mailslot closed." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 9 - - - bDTMagazineRemoved TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTMagNumber } - DESCRIPTION - "The %s device: magazine %s removed." - --#TYPE "Magazine Removed" - --#SUMMARY "The %s device: magazine %s removed." - --#ARGUMENTS { 0, 1 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 10 - - - bDTMagazineInserted TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDisplayName, bDTMagNumber } - DESCRIPTION - "The %s device: magazine %s inserted." - --#TYPE "Magazin Inserted" - --#SUMMARY "The %s device: magazine %s inserted." - --#ARGUMENTS { 0, 1 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 11 - - - bDTCleanDrive TRAP-TYPE - ENTERPRISE bDTTraps - VARIABLES { bDTDriveNumber, bDTDisplayName } - DESCRIPTION - "The drive %s of device %s has requested cleaning." - --#TYPE "Clean Drive" - --#SUMMARY "The drive %d of device %s has requested cleaning." - --#ARGUMENTS { 0, 1 } - --#SEVERITY MINOR - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= 12 - - - bDTDriveNumber OBJECT-TYPE - SYNTAX INTEGER (0..6) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Number." - ::= { bDTTraps 13 } - - bDTMagNumber OBJECT-TYPE - SYNTAX INTEGER (0..6) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Number." - ::= { bDTTraps 14 } - - - --- --- Notification definitions --- - - bDTAgentStatusChange NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s status has changed to %d. Previous status was %d." - --#TYPE "Status Changed" - --#SUMMARY "The %s status has changed to %d. Previous status was %d." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 1} - - bDTPowerUp NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device has powered up." - --#TYPE "Power Up" - --#SUMMARY "The %s device has powered up." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 2} - - - bDTShutdown NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device has shutdown." - --#TYPE "Shut Down" - --#SUMMARY "The %s device has shutdown." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE NONOPERATIONAL - ::= {bDTTraps 3} - - - bDTError NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device had an error. Error code is %s. Error data is %s." - --#TYPE "Error" - --#SUMMARY "The %s device had an error. Error code is %s. Error data is %s." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY MAJOR - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 4} - - - bDTInformational NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device has changed (%s). %s" - --#TYPE "Informational" - --#SUMMARY "The %s device has changed (%s). %s" - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 5} - - - bDTWarning NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device had a warning. Error code is %s. Error data is %s." - --#TYPE "Warning" - --#SUMMARY "The %s device had a warning. Error code is %s. Error data is %s." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY MINOR - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 6} - - bDTCritical NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device had an critial error. Error code is %s. Error data is %s." - --#TYPE "Critical" - --#SUMMARY "The %s device had an critial error. Error code is %s. Error data is %s." - --#ARGUMENTS { 0, 1, 2 } - --#SEVERITY CRITICAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 7} - - - bDTMailslotOpen NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device: mailslot opened." - --#TYPE "Mailslot Opened" - --#SUMMARY "The %s device: mailslot opened." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 8} - - - bDTMailslotClosed NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device: mailslot closed." - --#TYPE "Mailslot Closed" - --#SUMMARY "The %s device: mailslot closed." - --#ARGUMENTS { 0 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 9} - - - bDTMagazineRemoved NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device: %s magazine removed." - --#TYPE "Magazine Removed" - --#SUMMARY "The %s device: magazine %s removed." - --#ARGUMENTS { 0, 1 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 10} - - - bDTMagazineInserted NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The %s device: %s magazine inserted." - --#TYPE "Magazin Inserted" - --#SUMMARY "The %s device: magazine %s inserted." - --#ARGUMENTS { 0, 1 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 11} - - - bDTCleanDrive NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "The drive %s of device %s has requested cleaning." - --#TYPE "Clean Drive" - --#SUMMARY "The drive %d of device %s has requested cleaning." - --#ARGUMENTS { 0, 1 } - --#SEVERITY MINOR - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= {bDTTraps 12} - - END - --- --- BDT_MIB.mib --- diff --git a/mibs/orig/BRIDGE-MIB b/mibs/orig/BRIDGE-MIB deleted file mode 100644 index c64589d..0000000 --- a/mibs/orig/BRIDGE-MIB +++ /dev/null @@ -1,1503 +0,0 @@ --- ---------------------------------------------------------------- --- BRIDGE-MIB.my Definitions of Managed Objects for Bridges --- --- Copyright (c) 2008 by cisco Systems, Inc. --- All rights reserved. --- --- Extracted from RFC-4188 --- Mar, 2008 Sudheer Reddy Thati --- --- ---------------------------------------------------------------- - - - BRIDGE-MIB DEFINITIONS ::= BEGIN - - -- ---------------------------------------------------------- -- - -- MIB for IEEE 802.1D devices - -- ---------------------------------------------------------- -- - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, - Counter32, Integer32, TimeTicks, mib-2 - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, MacAddress - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - InterfaceIndex FROM IF-MIB - ; - - dot1dBridge MODULE-IDENTITY - LAST-UPDATED "200509190000Z" - ORGANIZATION "IETF Bridge MIB Working Group" - CONTACT-INFO - "Email: bridge-mib@ietf.org - - K.C. Norseth (Editor) - L-3 Communications - Tel: +1 801-594-2809 - Email: kenyon.c.norseth@L-3com.com - Postal: 640 N. 2200 West. - Salt Lake City, Utah 84116-0850 - - Les Bell (Editor) - 3Com Europe Limited - Phone: +44 1442 438025 - Email: elbell@ntlworld.com - Postal: 3Com Centre, Boundary Way - Hemel Hempstead - Herts. HP2 7YU - UK - - Send comments to " - DESCRIPTION - "The Bridge MIB module for managing devices that support - IEEE 802.1D. - - Copyright (C) The Internet Society (2005). This version of - this MIB module is part of RFC 4188; see the RFC itself for - full legal notices." - REVISION "200509190000Z" - DESCRIPTION - "Third revision, published as part of RFC 4188. - - The MIB module has been converted to SMIv2 format. - Conformance statements have been added and some - description and reference clauses have been updated. - - The object dot1dStpPortPathCost32 was added to - support IEEE 802.1t and the permissible values of - dot1dStpPriority and dot1dStpPortPriority have been - clarified for bridges supporting IEEE 802.1t or - IEEE 802.1w. - - The interpretation of dot1dStpTimeSinceTopologyChange - has been clarified for bridges supporting the Rapid - Spanning Tree Protocol (RSTP)." - REVISION "199307310000Z" - DESCRIPTION - "Second revision, published as part of RFC 1493." - REVISION "199112310000Z" - DESCRIPTION - "Initial revision, published as part of RFC 1286." - ::= { mib-2 17 } - - -- ---------------------------------------------------------- -- - -- Textual Conventions - -- ---------------------------------------------------------- -- - - BridgeId ::= TEXTUAL-CONVENTION - - STATUS current - DESCRIPTION - "The Bridge-Identifier, as used in the Spanning Tree - Protocol, to uniquely identify a bridge. Its first two - octets (in network byte order) contain a priority value, - and its last 6 octets contain the MAC address used to - refer to a bridge in a unique fashion (typically, the - numerically smallest MAC address of all ports on the - bridge)." - SYNTAX OCTET STRING (SIZE (8)) - - Timeout ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "A Spanning Tree Protocol (STP) timer in units of 1/100 - seconds. Several objects in this MIB module represent - values of timers used by the Spanning Tree Protocol. - In this MIB, these timers have values in units of - hundredths of a second (i.e., 1/100 secs). - - These timers, when stored in a Spanning Tree Protocol's - BPDU, are in units of 1/256 seconds. Note, however, that - 802.1D-1998 specifies a settable granularity of no more - than one second for these timers. To avoid ambiguity, - a conversion algorithm is defined below for converting - between the different units, which ensures a timer's - value is not distorted by multiple conversions. - - To convert a Timeout value into a value in units of - 1/256 seconds, the following algorithm should be used: - - b = floor( (n * 256) / 100) - - where: - floor = quotient [ignore remainder] - n is the value in 1/100 second units - b is the value in 1/256 second units - - To convert the value from 1/256 second units back to - 1/100 seconds, the following algorithm should be used: - - n = ceiling( (b * 100) / 256) - - where: - ceiling = quotient [if remainder is 0], or - quotient + 1 [if remainder is nonzero] - n is the value in 1/100 second units - - b is the value in 1/256 second units - - Note: it is important that the arithmetic operations are - done in the order specified (i.e., multiply first, - divide second)." - SYNTAX Integer32 - - -- ---------------------------------------------------------- -- - -- subtrees in the Bridge MIB - -- ---------------------------------------------------------- -- - - dot1dNotifications OBJECT IDENTIFIER ::= { dot1dBridge 0 } - - dot1dBase OBJECT IDENTIFIER ::= { dot1dBridge 1 } - dot1dStp OBJECT IDENTIFIER ::= { dot1dBridge 2 } - - dot1dSr OBJECT IDENTIFIER ::= { dot1dBridge 3 } - -- documented in RFC 1525 - - dot1dTp OBJECT IDENTIFIER ::= { dot1dBridge 4 } - dot1dStatic OBJECT IDENTIFIER ::= { dot1dBridge 5 } - - -- Subtrees used by Bridge MIB Extensions: - -- pBridgeMIB MODULE-IDENTITY ::= { dot1dBridge 6 } - -- qBridgeMIB MODULE-IDENTITY ::= { dot1dBridge 7 } - -- Note that the practice of registering related MIB modules - -- below dot1dBridge has been discouraged since there is no - -- robust mechanism to track such registrations. - - dot1dConformance OBJECT IDENTIFIER ::= { dot1dBridge 8 } - - -- ---------------------------------------------------------- -- - -- the dot1dBase subtree - -- ---------------------------------------------------------- -- - -- Implementation of the dot1dBase subtree is mandatory for all - -- bridges. - -- ---------------------------------------------------------- -- - - dot1dBaseBridgeAddress OBJECT-TYPE - - SYNTAX MacAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The MAC address used by this bridge when it must be - referred to in a unique fashion. It is recommended - that this be the numerically smallest MAC address of - all ports that belong to this bridge. However, it is only - - required to be unique. When concatenated with - dot1dStpPriority, a unique BridgeIdentifier is formed, - which is used in the Spanning Tree Protocol." - REFERENCE - "IEEE 802.1D-1998: clauses 14.4.1.1.3 and 7.12.5" - ::= { dot1dBase 1 } - - dot1dBaseNumPorts OBJECT-TYPE - SYNTAX Integer32 - UNITS "ports" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of ports controlled by this bridging - entity." - REFERENCE - "IEEE 802.1D-1998: clause 14.4.1.1.3" - ::= { dot1dBase 2 } - - dot1dBaseType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - transparent-only(2), - sourceroute-only(3), - srt(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates what type of bridging this bridge can - perform. If a bridge is actually performing a - certain type of bridging, this will be indicated by - entries in the port table for the given type." - ::= { dot1dBase 3 } - - -- ---------------------------------------------------------- -- - -- The Generic Bridge Port Table - -- ---------------------------------------------------------- -- - dot1dBasePortTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dBasePortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains generic information about every - port that is associated with this bridge. Transparent, - source-route, and srt ports are included." - ::= { dot1dBase 4 } - - dot1dBasePortEntry OBJECT-TYPE - SYNTAX Dot1dBasePortEntry - MAX-ACCESS not-accessible - STATUS current - - DESCRIPTION - "A list of information for each port of the bridge." - REFERENCE - "IEEE 802.1D-1998: clause 14.4.2, 14.6.1" - INDEX { dot1dBasePort } - ::= { dot1dBasePortTable 1 } - - Dot1dBasePortEntry ::= - SEQUENCE { - dot1dBasePort - Integer32, - dot1dBasePortIfIndex - InterfaceIndex, - dot1dBasePortCircuit - OBJECT IDENTIFIER, - dot1dBasePortDelayExceededDiscards - Counter32, - dot1dBasePortMtuExceededDiscards - Counter32 - } - - dot1dBasePort OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port number of the port for which this entry - contains bridge management information." - ::= { dot1dBasePortEntry 1 } - - dot1dBasePortIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the instance of the ifIndex object, - defined in IF-MIB, for the interface corresponding - to this port." - ::= { dot1dBasePortEntry 2 } - - dot1dBasePortCircuit OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - - STATUS current - DESCRIPTION - "For a port that (potentially) has the same value of - dot1dBasePortIfIndex as another port on the same bridge. - This object contains the name of an object instance - unique to this port. For example, in the case where - multiple ports correspond one-to-one with multiple X.25 - virtual circuits, this value might identify an (e.g., - the first) object instance associated with the X.25 - virtual circuit corresponding to this port. - - For a port which has a unique value of - dot1dBasePortIfIndex, this object can have the value - { 0 0 }." - ::= { dot1dBasePortEntry 3 } - - dot1dBasePortDelayExceededDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of frames discarded by this port due - to excessive transit delay through the bridge. It - is incremented by both transparent and source - route bridges." - REFERENCE - "IEEE 802.1D-1998: clause 14.6.1.1.3" - ::= { dot1dBasePortEntry 4 } - - dot1dBasePortMtuExceededDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of frames discarded by this port due - to an excessive size. It is incremented by both - transparent and source route bridges." - REFERENCE - "IEEE 802.1D-1998: clause 14.6.1.1.3" - ::= { dot1dBasePortEntry 5 } - - -- ---------------------------------------------------------- -- - -- the dot1dStp subtree - -- ---------------------------------------------------------- -- - -- Implementation of the dot1dStp subtree is optional. It is - -- implemented by those bridges that support the Spanning Tree - -- Protocol. - -- ---------------------------------------------------------- -- - - dot1dStpProtocolSpecification OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - decLb100(2), - ieee8021d(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of what version of the Spanning Tree - Protocol is being run. The value 'decLb100(2)' - indicates the DEC LANbridge 100 Spanning Tree protocol. - IEEE 802.1D implementations will return 'ieee8021d(3)'. - If future versions of the IEEE Spanning Tree Protocol - that are incompatible with the current version - are released a new value will be defined." - ::= { dot1dStp 1 } - - dot1dStpPriority OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The value of the write-able portion of the Bridge ID - (i.e., the first two octets of the (8 octet long) Bridge - ID). The other (last) 6 octets of the Bridge ID are - given by the value of dot1dBaseBridgeAddress. - On bridges supporting IEEE 802.1t or IEEE 802.1w, - permissible values are 0-61440, in steps of 4096." - REFERENCE - "IEEE 802.1D-1998 clause 8.10.2, Table 8-4, - IEEE 802.1t clause 8.10.2, Table 8-4, clause 14.3." - ::= { dot1dStp 2 } - - dot1dStpTimeSinceTopologyChange OBJECT-TYPE - SYNTAX TimeTicks - UNITS "centi-seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time (in hundredths of a second) since the - last time a topology change was detected by the - bridge entity. - For RSTP, this reports the time since the tcWhile - timer for any port on this Bridge was nonzero." - REFERENCE - "IEEE 802.1D-1998 clause 14.8.1.1., - IEEE 802.1w clause 14.8.1.1." - - ::= { dot1dStp 3 } - - dot1dStpTopChanges OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of topology changes detected by - this bridge since the management entity was last - reset or initialized." - REFERENCE - "IEEE 802.1D-1998 clause 14.8.1.1." - ::= { dot1dStp 4 } - - dot1dStpDesignatedRoot OBJECT-TYPE - SYNTAX BridgeId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The bridge identifier of the root of the spanning - tree, as determined by the Spanning Tree Protocol, - as executed by this node. This value is used as - the Root Identifier parameter in all Configuration - Bridge PDUs originated by this node." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.1" - ::= { dot1dStp 5 } - - dot1dStpRootCost OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The cost of the path to the root as seen from - this bridge." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.2" - ::= { dot1dStp 6 } - - dot1dStpRootPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port number of the port that offers the lowest - cost path from this bridge to the root bridge." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.3" - - ::= { dot1dStp 7 } - - dot1dStpMaxAge OBJECT-TYPE - SYNTAX Timeout - UNITS "centi-seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum age of Spanning Tree Protocol information - learned from the network on any port before it is - discarded, in units of hundredths of a second. This is - the actual value that this bridge is currently using." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.4" - ::= { dot1dStp 8 } - - dot1dStpHelloTime OBJECT-TYPE - SYNTAX Timeout - UNITS "centi-seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of time between the transmission of - Configuration bridge PDUs by this node on any port when - it is the root of the spanning tree, or trying to become - so, in units of hundredths of a second. This is the - actual value that this bridge is currently using." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.5" - ::= { dot1dStp 9 } - - dot1dStpHoldTime OBJECT-TYPE - SYNTAX Integer32 - UNITS "centi-seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This time value determines the interval length - during which no more than two Configuration bridge - PDUs shall be transmitted by this node, in units - of hundredths of a second." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.14" - ::= { dot1dStp 10 } - - dot1dStpForwardDelay OBJECT-TYPE - SYNTAX Timeout - UNITS "centi-seconds" - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This time value, measured in units of hundredths of a - second, controls how fast a port changes its spanning - state when moving towards the Forwarding state. The - value determines how long the port stays in each of the - Listening and Learning states, which precede the - Forwarding state. This value is also used when a - topology change has been detected and is underway, to - age all dynamic entries in the Forwarding Database. - [Note that this value is the one that this bridge is - currently using, in contrast to - dot1dStpBridgeForwardDelay, which is the value that this - bridge and all others would start using if/when this - bridge were to become the root.]" - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.6" - ::= { dot1dStp 11 } - - dot1dStpBridgeMaxAge OBJECT-TYPE - SYNTAX Timeout (600..4000) - UNITS "centi-seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The value that all bridges use for MaxAge when this - bridge is acting as the root. Note that 802.1D-1998 - specifies that the range for this parameter is related - to the value of dot1dStpBridgeHelloTime. The - granularity of this timer is specified by 802.1D-1998 to - be 1 second. An agent may return a badValue error if a - set is attempted to a value that is not a whole number - of seconds." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.8" - ::= { dot1dStp 12 } - - dot1dStpBridgeHelloTime OBJECT-TYPE - SYNTAX Timeout (100..1000) - UNITS "centi-seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The value that all bridges use for HelloTime when this - bridge is acting as the root. The granularity of this - timer is specified by 802.1D-1998 to be 1 second. An - agent may return a badValue error if a set is attempted - - to a value that is not a whole number of seconds." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.9" - ::= { dot1dStp 13 } - - dot1dStpBridgeForwardDelay OBJECT-TYPE - SYNTAX Timeout (400..3000) - UNITS "centi-seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The value that all bridges use for ForwardDelay when - this bridge is acting as the root. Note that - 802.1D-1998 specifies that the range for this parameter - is related to the value of dot1dStpBridgeMaxAge. The - granularity of this timer is specified by 802.1D-1998 to - be 1 second. An agent may return a badValue error if a - set is attempted to a value that is not a whole number - of seconds." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.3.10" - ::= { dot1dStp 14 } - - -- ---------------------------------------------------------- -- - -- The Spanning Tree Port Table - -- ---------------------------------------------------------- -- - - dot1dStpPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dStpPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains port-specific information - for the Spanning Tree Protocol." - ::= { dot1dStp 15 } - - dot1dStpPortEntry OBJECT-TYPE - SYNTAX Dot1dStpPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of information maintained by every port about - the Spanning Tree Protocol state for that port." - INDEX { dot1dStpPort } - ::= { dot1dStpPortTable 1 } - - Dot1dStpPortEntry ::= - SEQUENCE { - - dot1dStpPort - Integer32, - dot1dStpPortPriority - Integer32, - dot1dStpPortState - INTEGER, - dot1dStpPortEnable - INTEGER, - dot1dStpPortPathCost - Integer32, - dot1dStpPortDesignatedRoot - BridgeId, - dot1dStpPortDesignatedCost - Integer32, - dot1dStpPortDesignatedBridge - BridgeId, - dot1dStpPortDesignatedPort - OCTET STRING, - dot1dStpPortForwardTransitions - Counter32, - dot1dStpPortPathCost32 - Integer32 - } - - dot1dStpPort OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port number of the port for which this entry - contains Spanning Tree Protocol management information." - REFERENCE - "IEEE 802.1D-1998: clause 14.8.2.1.2" - ::= { dot1dStpPortEntry 1 } - - dot1dStpPortPriority OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The value of the priority field that is contained in - the first (in network byte order) octet of the (2 octet - long) Port ID. The other octet of the Port ID is given - by the value of dot1dStpPort. - On bridges supporting IEEE 802.1t or IEEE 802.1w, - permissible values are 0-240, in steps of 16." - REFERENCE - "IEEE 802.1D-1998 clause 8.10.2, Table 8-4, - - IEEE 802.1t clause 8.10.2, Table 8-4, clause 14.3." - ::= { dot1dStpPortEntry 2 } - - dot1dStpPortState OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - blocking(2), - listening(3), - learning(4), - forwarding(5), - broken(6) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port's current state, as defined by application of - the Spanning Tree Protocol. This state controls what - action a port takes on reception of a frame. If the - bridge has detected a port that is malfunctioning, it - will place that port into the broken(6) state. For - ports that are disabled (see dot1dStpPortEnable), this - object will have a value of disabled(1)." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.5.2" - ::= { dot1dStpPortEntry 3 } - - dot1dStpPortEnable OBJECT-TYPE - SYNTAX INTEGER { - enabled(1), - disabled(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The enabled/disabled status of the port." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.5.2" - ::= { dot1dStpPortEntry 4 } - - dot1dStpPortPathCost OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The contribution of this port to the path cost of - paths towards the spanning tree root which include - this port. 802.1D-1998 recommends that the default - value of this parameter be in inverse proportion to - - the speed of the attached LAN. - - New implementations should support dot1dStpPortPathCost32. - If the port path costs exceeds the maximum value of this - object then this object should report the maximum value, - namely 65535. Applications should try to read the - dot1dStpPortPathCost32 object if this object reports - the maximum value." - REFERENCE "IEEE 802.1D-1998: clause 8.5.5.3" - ::= { dot1dStpPortEntry 5 } - - dot1dStpPortDesignatedRoot OBJECT-TYPE - SYNTAX BridgeId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique Bridge Identifier of the Bridge - recorded as the Root in the Configuration BPDUs - transmitted by the Designated Bridge for the - segment to which the port is attached." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.5.4" - ::= { dot1dStpPortEntry 6 } - - dot1dStpPortDesignatedCost OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The path cost of the Designated Port of the segment - connected to this port. This value is compared to the - Root Path Cost field in received bridge PDUs." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.5.5" - ::= { dot1dStpPortEntry 7 } - - dot1dStpPortDesignatedBridge OBJECT-TYPE - SYNTAX BridgeId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Bridge Identifier of the bridge that this - port considers to be the Designated Bridge for - this port's segment." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.5.6" - ::= { dot1dStpPortEntry 8 } - - dot1dStpPortDesignatedPort OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (2)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Port Identifier of the port on the Designated - Bridge for this port's segment." - REFERENCE - "IEEE 802.1D-1998: clause 8.5.5.7" - ::= { dot1dStpPortEntry 9 } - - dot1dStpPortForwardTransitions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times this port has transitioned - from the Learning state to the Forwarding state." - ::= { dot1dStpPortEntry 10 } - - dot1dStpPortPathCost32 OBJECT-TYPE - SYNTAX Integer32 (1..200000000) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The contribution of this port to the path cost of - paths towards the spanning tree root which include - this port. 802.1D-1998 recommends that the default - value of this parameter be in inverse proportion to - the speed of the attached LAN. - - This object replaces dot1dStpPortPathCost to support - IEEE 802.1t." - REFERENCE - "IEEE 802.1t clause 8.10.2, Table 8-5." - ::= { dot1dStpPortEntry 11 } - - -- ---------------------------------------------------------- -- - -- the dot1dTp subtree - -- ---------------------------------------------------------- -- - -- Implementation of the dot1dTp subtree is optional. It is - -- implemented by those bridges that support the transparent - -- bridging mode. A transparent or SRT bridge will implement - -- this subtree. - -- ---------------------------------------------------------- -- - - dot1dTpLearnedEntryDiscards OBJECT-TYPE - SYNTAX Counter32 - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of Forwarding Database entries that - have been or would have been learned, but have been - discarded due to a lack of storage space in the - Forwarding Database. If this counter is increasing, it - indicates that the Forwarding Database is regularly - becoming full (a condition that has unpleasant - performance effects on the subnetwork). If this counter - has a significant value but is not presently increasing, - it indicates that the problem has been occurring but is - not persistent." - REFERENCE - "IEEE 802.1D-1998: clause 14.7.1.1.3" - ::= { dot1dTp 1 } - - dot1dTpAgingTime OBJECT-TYPE - SYNTAX Integer32 (10..1000000) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The timeout period in seconds for aging out - dynamically-learned forwarding information. - 802.1D-1998 recommends a default of 300 seconds." - REFERENCE - "IEEE 802.1D-1998: clause 14.7.1.1.3" - ::= { dot1dTp 2 } - - -- ---------------------------------------------------------- -- - -- The Forwarding Database for Transparent Bridges - -- ---------------------------------------------------------- -- - - dot1dTpFdbTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dTpFdbEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains information about unicast - entries for which the bridge has forwarding and/or - filtering information. This information is used - by the transparent bridging function in - determining how to propagate a received frame." - ::= { dot1dTp 3 } - - dot1dTpFdbEntry OBJECT-TYPE - - SYNTAX Dot1dTpFdbEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a specific unicast MAC address - for which the bridge has some forwarding and/or - filtering information." - INDEX { dot1dTpFdbAddress } - ::= { dot1dTpFdbTable 1 } - - Dot1dTpFdbEntry ::= - SEQUENCE { - dot1dTpFdbAddress - MacAddress, - dot1dTpFdbPort - Integer32, - dot1dTpFdbStatus - INTEGER - } - - dot1dTpFdbAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unicast MAC address for which the bridge has - forwarding and/or filtering information." - REFERENCE - "IEEE 802.1D-1998: clause 7.9.1, 7.9.2" - ::= { dot1dTpFdbEntry 1 } - - dot1dTpFdbPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Either the value '0', or the port number of the port on - which a frame having a source address equal to the value - of the corresponding instance of dot1dTpFdbAddress has - been seen. A value of '0' indicates that the port - number has not been learned, but that the bridge does - have some forwarding/filtering information about this - address (e.g., in the dot1dStaticTable). Implementors - are encouraged to assign the port value to this object - whenever it is learned, even for addresses for which the - corresponding value of dot1dTpFdbStatus is not - learned(3)." - ::= { dot1dTpFdbEntry 2 } - - dot1dTpFdbStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - invalid(2), - learned(3), - self(4), - mgmt(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of this entry. The meanings of the - values are: - other(1) - none of the following. This would - include the case where some other MIB object - (not the corresponding instance of - dot1dTpFdbPort, nor an entry in the - dot1dStaticTable) is being used to determine if - and how frames addressed to the value of the - corresponding instance of dot1dTpFdbAddress are - being forwarded. - invalid(2) - this entry is no longer valid (e.g., - it was learned but has since aged out), but has - not yet been flushed from the table. - learned(3) - the value of the corresponding instance - of dot1dTpFdbPort was learned, and is being - used. - self(4) - the value of the corresponding instance of - dot1dTpFdbAddress represents one of the bridge's - addresses. The corresponding instance of - dot1dTpFdbPort indicates which of the bridge's - ports has this address. - mgmt(5) - the value of the corresponding instance of - dot1dTpFdbAddress is also the value of an - existing instance of dot1dStaticAddress." - ::= { dot1dTpFdbEntry 3 } - - -- ---------------------------------------------------------- -- - -- Port Table for Transparent Bridges - -- ---------------------------------------------------------- -- - - dot1dTpPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dTpPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains information about every port that - is associated with this transparent bridge." - - ::= { dot1dTp 4 } - - dot1dTpPortEntry OBJECT-TYPE - SYNTAX Dot1dTpPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of information for each port of a transparent - bridge." - INDEX { dot1dTpPort } - ::= { dot1dTpPortTable 1 } - - Dot1dTpPortEntry ::= - SEQUENCE { - dot1dTpPort - Integer32, - dot1dTpPortMaxInfo - Integer32, - dot1dTpPortInFrames - Counter32, - dot1dTpPortOutFrames - Counter32, - dot1dTpPortInDiscards - Counter32 - } - - dot1dTpPort OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port number of the port for which this entry - contains Transparent bridging management information." - ::= { dot1dTpPortEntry 1 } - - -- It would be nice if we could use ifMtu as the size of the - -- largest INFO field, but we can't because ifMtu is defined - -- to be the size that the (inter-)network layer can use, which - -- can differ from the MAC layer (especially if several layers - -- of encapsulation are used). - - dot1dTpPortMaxInfo OBJECT-TYPE - SYNTAX Integer32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum size of the INFO (non-MAC) field that - - this port will receive or transmit." - ::= { dot1dTpPortEntry 2 } - - dot1dTpPortInFrames OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of frames that have been received by this - port from its segment. Note that a frame received on the - interface corresponding to this port is only counted by - this object if and only if it is for a protocol being - processed by the local bridging function, including - bridge management frames." - REFERENCE - "IEEE 802.1D-1998: clause 14.6.1.1.3" - ::= { dot1dTpPortEntry 3 } - - dot1dTpPortOutFrames OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of frames that have been transmitted by this - port to its segment. Note that a frame transmitted on - the interface corresponding to this port is only counted - by this object if and only if it is for a protocol being - processed by the local bridging function, including - bridge management frames." - REFERENCE - "IEEE 802.1D-1998: clause 14.6.1.1.3" - ::= { dot1dTpPortEntry 4 } - - dot1dTpPortInDiscards OBJECT-TYPE - SYNTAX Counter32 - UNITS "frames" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of received valid frames that were discarded - (i.e., filtered) by the Forwarding Process." - REFERENCE - "IEEE 802.1D-1998: clause 14.6.1.1.3" - ::= { dot1dTpPortEntry 5 } - - -- ---------------------------------------------------------- -- - - -- The Static (Destination-Address Filtering) Database - -- ---------------------------------------------------------- -- - -- Implementation of this subtree is optional. - -- ---------------------------------------------------------- -- - - dot1dStaticTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dStaticEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table containing filtering information configured - into the bridge by (local or network) management - specifying the set of ports to which frames received - from specific ports and containing specific destination - addresses are allowed to be forwarded. The value of - zero in this table, as the port number from which frames - with a specific destination address are received, is - used to specify all ports for which there is no specific - entry in this table for that particular destination - address. Entries are valid for unicast and for - group/broadcast addresses." - REFERENCE - "IEEE 802.1D-1998: clause 14.7.2" - ::= { dot1dStatic 1 } - - dot1dStaticEntry OBJECT-TYPE - SYNTAX Dot1dStaticEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Filtering information configured into the bridge by - (local or network) management specifying the set of - ports to which frames received from a specific port and - containing a specific destination address are allowed to - be forwarded." - REFERENCE - "IEEE 802.1D-1998: clause 14.7.2" - INDEX { dot1dStaticAddress, dot1dStaticReceivePort } - ::= { dot1dStaticTable 1 } - - Dot1dStaticEntry ::= - SEQUENCE { - dot1dStaticAddress MacAddress, - dot1dStaticReceivePort Integer32, - dot1dStaticAllowedToGoTo OCTET STRING, - dot1dStaticStatus INTEGER - } - - dot1dStaticAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The destination MAC address in a frame to which this - entry's filtering information applies. This object can - take the value of a unicast address, a group address, or - the broadcast address." - REFERENCE - "IEEE 802.1D-1998: clause 7.9.1, 7.9.2" - ::= { dot1dStaticEntry 1 } - - dot1dStaticReceivePort OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Either the value '0', or the port number of the port - from which a frame must be received in order for this - entry's filtering information to apply. A value of zero - indicates that this entry applies on all ports of the - bridge for which there is no other applicable entry." - ::= { dot1dStaticEntry 2 } - - dot1dStaticAllowedToGoTo OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..512)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The set of ports to which frames received from a - specific port and destined for a specific MAC address, - are allowed to be forwarded. Each octet within the - value of this object specifies a set of eight ports, - with the first octet specifying ports 1 through 8, the - second octet specifying ports 9 through 16, etc. Within - each octet, the most significant bit represents the - lowest numbered port, and the least significant bit - represents the highest numbered port. Thus, each port - of the bridge is represented by a single bit within the - value of this object. If that bit has a value of '1', - then that port is included in the set of ports; the port - is not included if its bit has a value of '0'. (Note - that the setting of the bit corresponding to the port - from which a frame is received is irrelevant.) The - default value of this object is a string of ones of - appropriate length. - - The value of this object may exceed the required minimum - maximum message size of some SNMP transport (484 bytes, - in the case of SNMP over UDP, see RFC 3417, section 3.2). - SNMP engines on bridges supporting a large number of - ports must support appropriate maximum message sizes." - ::= { dot1dStaticEntry 3 } - - dot1dStaticStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - invalid(2), - permanent(3), - deleteOnReset(4), - deleteOnTimeout(5) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object indicates the status of this entry. - The default value is permanent(3). - other(1) - this entry is currently in use but the - conditions under which it will remain so are - different from each of the following values. - invalid(2) - writing this value to the object - removes the corresponding entry. - permanent(3) - this entry is currently in use and - will remain so after the next reset of the - bridge. - deleteOnReset(4) - this entry is currently in use - and will remain so until the next reset of the - bridge. - deleteOnTimeout(5) - this entry is currently in use - and will remain so until it is aged out." - ::= { dot1dStaticEntry 4 } - - -- ---------------------------------------------------------- -- - -- Notifications for use by Bridges - -- ---------------------------------------------------------- -- - -- Notifications for the Spanning Tree Protocol - -- ---------------------------------------------------------- -- - - newRoot NOTIFICATION-TYPE - -- OBJECTS { } - STATUS current - DESCRIPTION - "The newRoot trap indicates that the sending agent has - become the new root of the Spanning Tree; the trap is - sent by a bridge soon after its election as the new - - root, e.g., upon expiration of the Topology Change Timer, - immediately subsequent to its election. Implementation - of this trap is optional." - ::= { dot1dNotifications 1 } - - topologyChange NOTIFICATION-TYPE - -- OBJECTS { } - STATUS current - DESCRIPTION - "A topologyChange trap is sent by a bridge when any of - its configured ports transitions from the Learning state - to the Forwarding state, or from the Forwarding state to - the Blocking state. The trap is not sent if a newRoot - trap is sent for the same transition. Implementation of - this trap is optional." - ::= { dot1dNotifications 2 } - - -- ---------------------------------------------------------- -- - -- IEEE 802.1D MIB - Conformance Information - -- ---------------------------------------------------------- -- - - dot1dGroups OBJECT IDENTIFIER ::= { dot1dConformance 1 } - dot1dCompliances OBJECT IDENTIFIER ::= { dot1dConformance 2 } - - -- ---------------------------------------------------------- -- - -- units of conformance - -- ---------------------------------------------------------- -- - - -- ---------------------------------------------------------- -- - -- the dot1dBase group - -- ---------------------------------------------------------- -- - - dot1dBaseBridgeGroup OBJECT-GROUP - OBJECTS { - dot1dBaseBridgeAddress, - dot1dBaseNumPorts, - dot1dBaseType - } - STATUS current - DESCRIPTION - "Bridge level information for this device." - ::= { dot1dGroups 1 } - - dot1dBasePortGroup OBJECT-GROUP - OBJECTS { - dot1dBasePort, - dot1dBasePortIfIndex, - dot1dBasePortCircuit, - - dot1dBasePortDelayExceededDiscards, - dot1dBasePortMtuExceededDiscards - } - STATUS current - DESCRIPTION - "Information for each port on this device." - ::= { dot1dGroups 2 } - - -- ---------------------------------------------------------- -- - -- the dot1dStp group - -- ---------------------------------------------------------- -- - - dot1dStpBridgeGroup OBJECT-GROUP - OBJECTS { - dot1dStpProtocolSpecification, - dot1dStpPriority, - dot1dStpTimeSinceTopologyChange, - dot1dStpTopChanges, - dot1dStpDesignatedRoot, - dot1dStpRootCost, - dot1dStpRootPort, - dot1dStpMaxAge, - dot1dStpHelloTime, - dot1dStpHoldTime, - dot1dStpForwardDelay, - dot1dStpBridgeMaxAge, - dot1dStpBridgeHelloTime, - dot1dStpBridgeForwardDelay - } - STATUS current - DESCRIPTION - "Bridge level Spanning Tree data for this device." - ::= { dot1dGroups 3 } - - dot1dStpPortGroup OBJECT-GROUP - OBJECTS { - dot1dStpPort, - dot1dStpPortPriority, - dot1dStpPortState, - dot1dStpPortEnable, - dot1dStpPortPathCost, - dot1dStpPortDesignatedRoot, - dot1dStpPortDesignatedCost, - dot1dStpPortDesignatedBridge, - dot1dStpPortDesignatedPort, - dot1dStpPortForwardTransitions - } - STATUS current - - DESCRIPTION - "Spanning Tree data for each port on this device." - ::= { dot1dGroups 4 } - - dot1dStpPortGroup2 OBJECT-GROUP - OBJECTS { - dot1dStpPort, - dot1dStpPortPriority, - dot1dStpPortState, - dot1dStpPortEnable, - dot1dStpPortDesignatedRoot, - dot1dStpPortDesignatedCost, - dot1dStpPortDesignatedBridge, - dot1dStpPortDesignatedPort, - dot1dStpPortForwardTransitions, - dot1dStpPortPathCost32 - } - STATUS current - DESCRIPTION - "Spanning Tree data for each port on this device." - ::= { dot1dGroups 5 } - - dot1dStpPortGroup3 OBJECT-GROUP - OBJECTS { - dot1dStpPortPathCost32 - } - STATUS current - DESCRIPTION - "Spanning Tree data for devices supporting 32-bit - path costs." - ::= { dot1dGroups 6 } - - -- ---------------------------------------------------------- -- - -- the dot1dTp group - -- ---------------------------------------------------------- -- - - dot1dTpBridgeGroup OBJECT-GROUP - OBJECTS { - dot1dTpLearnedEntryDiscards, - dot1dTpAgingTime - } - STATUS current - DESCRIPTION - "Bridge level Transparent Bridging data." - ::= { dot1dGroups 7 } - - dot1dTpFdbGroup OBJECT-GROUP - OBJECTS { - - dot1dTpFdbAddress, - dot1dTpFdbPort, - dot1dTpFdbStatus - } - - STATUS current - DESCRIPTION - "Filtering Database information for the Bridge." - ::= { dot1dGroups 8 } - - dot1dTpGroup OBJECT-GROUP - OBJECTS { - dot1dTpPort, - dot1dTpPortMaxInfo, - dot1dTpPortInFrames, - dot1dTpPortOutFrames, - dot1dTpPortInDiscards - } - STATUS current - DESCRIPTION - "Dynamic Filtering Database information for each port of - the Bridge." - ::= { dot1dGroups 9 } - - -- ---------------------------------------------------------- -- - -- The Static (Destination-Address Filtering) Database - -- ---------------------------------------------------------- -- - - dot1dStaticGroup OBJECT-GROUP - OBJECTS { - dot1dStaticAddress, - dot1dStaticReceivePort, - dot1dStaticAllowedToGoTo, - dot1dStaticStatus - } - STATUS current - DESCRIPTION - "Static Filtering Database information for each port of - the Bridge." - ::= { dot1dGroups 10 } - - -- ---------------------------------------------------------- -- - -- The Trap Notification Group - -- ---------------------------------------------------------- -- - - dot1dNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { - newRoot, - - topologyChange - } - STATUS current - DESCRIPTION - "Group of objects describing notifications (traps)." - ::= { dot1dGroups 11 } - - -- ---------------------------------------------------------- -- - -- compliance statements - -- ---------------------------------------------------------- -- - - bridgeCompliance1493 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for device support of bridging - services, as per RFC1493." - - MODULE - MANDATORY-GROUPS { - dot1dBaseBridgeGroup, - dot1dBasePortGroup - } - - GROUP dot1dStpBridgeGroup - DESCRIPTION - "Implementation of this group is mandatory for bridges - that support the Spanning Tree Protocol." - - GROUP dot1dStpPortGroup - DESCRIPTION - "Implementation of this group is mandatory for bridges - that support the Spanning Tree Protocol." - - GROUP dot1dTpBridgeGroup - DESCRIPTION - "Implementation of this group is mandatory for bridges - that support the transparent bridging mode. A - transparent or SRT bridge will implement this group." - - GROUP dot1dTpFdbGroup - DESCRIPTION - "Implementation of this group is mandatory for bridges - that support the transparent bridging mode. A - transparent or SRT bridge will implement this group." - - GROUP dot1dTpGroup - DESCRIPTION - "Implementation of this group is mandatory for bridges - - that support the transparent bridging mode. A - transparent or SRT bridge will implement this group." - - GROUP dot1dStaticGroup - DESCRIPTION - "Implementation of this group is optional." - - GROUP dot1dNotificationGroup - DESCRIPTION - "Implementation of this group is optional." - ::= { dot1dCompliances 1 } - - bridgeCompliance4188 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for device support of bridging - services. This supports 32-bit Path Cost values and the - more restricted bridge and port priorities, as per IEEE - 802.1t. - - Full support for the 802.1D management objects requires that - the SNMPv2-MIB [RFC3418] objects sysDescr, and sysUpTime, as - well as the IF-MIB [RFC2863] objects ifIndex, ifType, - ifDescr, ifPhysAddress, and ifLastChange are implemented." - - MODULE - MANDATORY-GROUPS { - dot1dBaseBridgeGroup, - dot1dBasePortGroup - } - - GROUP dot1dStpBridgeGroup - DESCRIPTION - "Implementation of this group is mandatory for - bridges that support the Spanning Tree Protocol." - - OBJECT dot1dStpPriority - SYNTAX Integer32 (0|4096|8192|12288|16384|20480|24576 - |28672|32768|36864|40960|45056|49152 - |53248|57344|61440) - DESCRIPTION - "The possible values defined by IEEE 802.1t." - - GROUP dot1dStpPortGroup2 - DESCRIPTION - "Implementation of this group is mandatory for - bridges that support the Spanning Tree Protocol." - - GROUP dot1dStpPortGroup3 - DESCRIPTION - "Implementation of this group is mandatory for bridges - that support the Spanning Tree Protocol and 32-bit path - costs. In particular, this includes devices supporting - IEEE 802.1t and IEEE 802.1w." - - OBJECT dot1dStpPortPriority - SYNTAX Integer32 (0|16|32|48|64|80|96|112|128 - |144|160|176|192|208|224|240) - DESCRIPTION - "The possible values defined by IEEE 802.1t." - - GROUP dot1dTpBridgeGroup - DESCRIPTION - "Implementation of this group is mandatory for - bridges that support the transparent bridging - mode. A transparent or SRT bridge will implement - this group." - - GROUP dot1dTpFdbGroup - DESCRIPTION - "Implementation of this group is mandatory for - bridges that support the transparent bridging - mode. A transparent or SRT bridge will implement - this group." - - GROUP dot1dTpGroup - DESCRIPTION - "Implementation of this group is mandatory for - bridges that support the transparent bridging - mode. A transparent or SRT bridge will implement - this group." - - GROUP dot1dStaticGroup - DESCRIPTION - "Implementation of this group is optional." - - GROUP dot1dNotificationGroup - DESCRIPTION - "Implementation of this group is optional." - - ::= { dot1dCompliances 2 } - - END - - - diff --git a/mibs/orig/Brocade-REG-MIB b/mibs/orig/Brocade-REG-MIB deleted file mode 100644 index a57b4b5..0000000 --- a/mibs/orig/Brocade-REG-MIB +++ /dev/null @@ -1,80 +0,0 @@ --- ******************************************************************* --- Brocade-REG-MIB.my: Brocade Products MIB. --- --- Feb 2012, Sanjeev C Joshi, Yasar Khan --- --- Copyright (c) 1996-2002, 2012 by Brocade Communications Systems, Inc. --- All rights reserved. --- --- ******************************************************************* -Brocade-REG-MIB DEFINITIONS ::= BEGIN -IMPORTS - MODULE-IDENTITY, - OBJECT-IDENTITY, - enterprises FROM SNMPv2-SMI; - -bcsi MODULE-IDENTITY - LAST-UPDATED "201202030000Z" - ORGANIZATION " Brocade Communications Systems, Inc." - CONTACT-INFO - "Brocade Communications Systems, Inc. - Postal: 130 Holger Way - San Jose, CA 95134 - U.S.A - Tel: +1-408-333-8000 - E-mail: support@Brocade.com - web: www.brocade.com." - DESCRIPTION - "This MIB module defines Structure of Management - Information for the Brocade enterprise and serves as - central repository of all the OIDs under Brocade - enterprise OID tree." - - REVISION "201202030000Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { enterprises 1588 } -- assigned by IANA - -commDev OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The root OID sub-tree for Communication devices of Brocade." - ::= { bcsi 2 } - -fibrechannel OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The root OID sub-tree for Fibre Channel Devices of Brocade." - ::= { commDev 1 } - -nos OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The root OID sub-tree for Brocade's NOS products." - ::= { commDev 2 } - -fcSwitch OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The root OID sub-tree for Fibre Channel Switches of Brocade." - ::= { fibrechannel 1 } - -bcsiReg OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The root OID sub-tree for Brocade Global Registry." - ::= { bcsi 3 } - -bcsiModules OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The root OID sub-tree for all the Brocade management MIBs." - ::= { bcsiReg 1 } - -brocadeAgentCapability OBJECT-IDENTITY - STATUS current - DESCRIPTION - "This provides a root object identifier from which - AGENT-CAPABILITIES values may be assigned." - ::= { bcsiReg 2 } -END diff --git a/mibs/orig/Brocade-TC b/mibs/orig/Brocade-TC deleted file mode 100644 index e66d411..0000000 --- a/mibs/orig/Brocade-TC +++ /dev/null @@ -1,78 +0,0 @@ --- --- Title: Brocade Registration MIB, Version v5.0 --- --- This is specified based on SMIv2, mainly to ensure that the specification --- can be parsed easily by off-the-shelf network management product in --- the market. --- --- The goal of this mib is to access all the Brocade Enterprise products. --- This mib file contains the generic textual conventions of Brocade's product. --- - - -Brocade-TC DEFINITIONS ::= BEGIN - IMPORTS - bcsiModules - FROM Brocade-REG-MIB - TEXTUAL-CONVENTION - FROM SNMPv2-TC - Integer32, MODULE-IDENTITY - FROM SNMPv2-SMI; - - bcsiModuleTC MODULE-IDENTITY - LAST-UPDATED "0210030000Z" - ORGANIZATION "Brocade Communications Systems, Inc.," - CONTACT-INFO "Customer Support Group - Brocade Communications Systems, - 1745 Technology Drive, - San Jose, CA 95110 U.S.A - Tel: +1-408-392-6061 - Fax: +1-408-392-6656 - Email: support@Brocade.COM - WEB: www.brocade.com" - - - DESCRIPTION "The MIB module contains all shared textual conventions - for Brocade specific MIBs. - Copyright (c) 1996-2002 Brocade Communications Systems, Inc. - All rights reserved." - REVISION "0301131430Z" -- Jan 13, 2003 2:30pm - DESCRIPTION "The initial version of this module." - ::= { bcsiModules 2 } - - -- additional textual conventions - - FcWwn ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "The World Wide Name (WWN) of Brocade's - specific products and ports." - SYNTAX OCTET STRING (SIZE(8)) - - SwDomainIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "The Fibre Channel domain ID of the switch." - SYNTAX Integer32 (1..239) - - SwNbIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Index of the neighbour ISL entry." - SYNTAX Integer32 (1..2048) - - SwSensorIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Index of the Sensor entry." - SYNTAX Integer32 (1..1024) - - SwPortIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Index of the Port start from 1 upto Maximum - number of ports of the Brocade Switch." - SYNTAX Integer32 - - SwTrunkMaster ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Index of the Trunk Master start from 1 upto Maximum - number of trunk groups of Brocade Switch." - SYNTAX Integer32 - -END diff --git a/mibs/orig/CISCO-ENTITY-SENSOR-MIB b/mibs/orig/CISCO-ENTITY-SENSOR-MIB deleted file mode 100644 index b5b0781..0000000 --- a/mibs/orig/CISCO-ENTITY-SENSOR-MIB +++ /dev/null @@ -1,970 +0,0 @@ --- ***************************************************************** --- CISCO-ENTITY-SENSOR-MIB --- --- November 1997, Cliff L. Sojourner --- --- Copyright (c) 1998-2017 by cisco Systems Inc. --- All rights reserved. --- ***************************************************************** - -CISCO-ENTITY-SENSOR-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-TYPE, - NOTIFICATION-TYPE, - Integer32 - FROM SNMPv2-SMI - MODULE-COMPLIANCE, - OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF - TEXTUAL-CONVENTION, - TimeStamp, - TruthValue - FROM SNMPv2-TC - entPhysicalIndex - FROM ENTITY-MIB - EntPhysicalIndexOrZero - FROM CISCO-TC - ciscoMgmt - FROM CISCO-SMI; - - -ciscoEntitySensorMIB MODULE-IDENTITY - LAST-UPDATED "201701190000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - "Postal: Cisco Systems, Inc. - 170 West Tasman Drive - San Jose, CA 95134-1706 - USA - - Tel: +1 408 526 4000 - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "The CISCO-ENTITY-SENSOR-MIB is used to monitor - the values of sensors in the Entity-MIB (RFC 2037) - entPhysicalTable." - REVISION "201701190000Z" - DESCRIPTION - "Added enumerated value dB(15) to SensorDataType." - REVISION "201501150000Z" - DESCRIPTION - "Corrected the definition of entSensorPrecision." - REVISION "201309210000Z" - DESCRIPTION - "Added entSensorThresholdRecoveryNotification to - entitySensorMIBNotifications. - Added entSensorThresholdSeverity as a varbind - object to entSensorThresholdNotification. - Added entitySensorNotificationGroup - and deprecated - entitySensorThresholdNotificationGroup. - Added entSensorThresholdNotification and - entSensorThresholdRecoveryNotification to - entitySensorNotificationGroup. - Added entitySensorMIBComplianceV05 and - deprecated entitySensorMIBComplianceV04." - REVISION "200711120000Z" - DESCRIPTION - "Added entitySensorNotifCtrlGlobalGroup." - REVISION "200601010000Z" - DESCRIPTION - "Add new object entSensorMeasuredEntity to - entSensorValueTable." - REVISION "200509080000Z" - DESCRIPTION - "Change the module descriptor name from entitySensorMIB - to ciscoEntitySensorMIB since ENTITY-SENSOR-MIB also - uses the same name and there is a conflict." - REVISION "200301070000Z" - DESCRIPTION - "[1] Add dBm(14) in SensorDataType." - REVISION "200210160000Z" - DESCRIPTION - "[1] Add critical(30) in CSensorThresholdSeverity. - [2] Change to MAX-ACCESS read-write for 3 objects. - [3] Add entitySensorMIBComplianceV02." - REVISION "200006200000Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { ciscoMgmt 91 } - - -entitySensorMIBObjects OBJECT IDENTIFIER - ::= { ciscoEntitySensorMIB 1 } - -entitySensorMIBNotificationPrefix OBJECT IDENTIFIER - ::= { ciscoEntitySensorMIB 2 } - -entitySensorMIBConformance OBJECT IDENTIFIER - ::= { ciscoEntitySensorMIB 3 } - - --- textual conventions - -SensorDataType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "sensor measurement data types. valid values are: - other(1): a measure other than those listed below - unknown(2): unknown measurement, or - arbitrary, relative numbers - voltsAC(3): electric potential - voltsDC(4): electric potential - amperes(5): electric current - watts(6): power - hertz(7): frequency - celsius(8): temperature - percentRH(9): percent relative humidity - rpm(10): shaft revolutions per minute - cmm(11),: cubic meters per minute (airflow) - truthvalue(12): value takes { true(1), false(2) } - specialEnum(13): value takes user defined enumerated values - dBm(14): dB relative to 1mW of power - dB(15): decibel" - SYNTAX INTEGER { - other(1), - unknown(2), - voltsAC(3), - voltsDC(4), - amperes(5), - watts(6), - hertz(7), - celsius(8), - percentRH(9), - rpm(10), - cmm(11), - truthvalue(12), - specialEnum(13), - dBm(14), - dB(15) - } - -SensorDataScale ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "International System of Units (SI) prefixes." - SYNTAX INTEGER { - yocto(1), -- 10^-24 - zepto(2), -- 10^-21 - atto(3), -- 10^-18 - femto(4), -- 10^-15 - pico(5), -- 10^-12 - nano(6), -- 10^-9 - micro(7), -- 10^-6 - milli(8), -- 10^-3 - units(9), -- 10^0 - kilo(10), -- 10^3 - mega(11), -- 10^6 - giga(12), -- 10^9 - tera(13), -- 10^12 - exa(14), -- 10^15 - peta(15), -- 10^18 - zetta(16), -- 10^21 - yotta(17) -- 10^24 - } - -SensorPrecision ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "When in the range 1 to 9, SensorPrecision is the number - of decimal places in the fractional part of - a SensorValue fixed-point number. When in the range -8 to - -1, SensorPrecision is the number of accurate digits in - a SensorValue fixed-point number. - - SensorPrecision is 0 for non-fixed-point numbers. - - Agent implementors must choose a value for SensorPrecision - so that the precision and accuracy of a SensorValue is - correctly indicated. - - For example, a temperature sensor that can measure 0o to - 100o C in 0.1o increments, +/- 0.05o, would have a - SensorPrecision of 1, a SensorDataScale of units(0), and a - SensorValue ranging from 0 to 1000. - The SensorValue would be interpreted as (degrees C * 10). - - If that temperature sensor's precision were 0.1o but its - accuracy were only +/- 0.5o, then the SensorPrecision would - be 0. The SensorValue would be interpreted as degrees C. - - Another example: a fan rotation speed sensor that measures RPM - from 0 to 10,000 in 100 RPM increments, with an accuracy of - +50/-37 RPM, would have a SensorPrecision of -2, a - SensorDataScale of units(9), and a SensorValue ranging from 0 - to 10000. The 10s and 1s digits of SensorValue would always - be 0." - SYNTAX INTEGER (-8..9) - -SensorValue ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "For sensors that measure voltsAC, voltsDC, - amperes, watts, hertz, celsius, cmm - this item is a fixed point number ranging from - -999,999,999 to +999,999,999. Use the value - -1000000000 to indicate underflow. Use the value - +1000000000 to indicate overflow. Use SensorPrecision - to indicate how many fractional digits the SensorValue - has. - - For sensors that measure percentRH, this item - is a number ranging from 0 to 100. - - For sensors that measure rpm, this item - can take only nonnegative values, 0..999999999. - - For sensors of type truthvalue, this item - can take only two values: true(1), false(2). - - For sensors of type specialEnum, this item - can take any value in the range (-1000000000..1000000000), - but the meaning of each value is specific to the - sensor. - - For sensors of type other and unknown, - this item can take any value in the range - (-1000000000..1000000000), but the meaning of the values - are specific to the sensor. - - Use Entity-MIB entPhysicalTable.entPhysicalVendorType - to learn about the sensor type." - SYNTAX INTEGER (-1000000000..1000000000) - -SensorStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Indicates the operational status of the sensor. - - ok(1) means the agent can read the sensor - value. - - unavailable(2) means that the agent presently - can not report the sensor value. - - nonoperational(3) means that the agent believes - the sensor is broken. The sensor could have a - hard failure (disconnected wire), or a soft failure - such as out-of-range, jittery, or wildly fluctuating - readings." - SYNTAX INTEGER { - ok(1), - unavailable(2), - nonoperational(3) - } - -SensorValueUpdateRate ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Indicates the interval in seconds between updates to the - sensor's value. - - The value zero indicates: - - the sensor value is updated on demand (when polled by the - agent for a get-request), - - or when the sensor value changes (event-driven), - - or the agent does not know the rate" - SYNTAX INTEGER (0..999999999) - -SensorThresholdSeverity ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "sensor threshold severity. Valid values are: - - other(1) : a severity other than those listed below. - minor(10) : Minor Problem threshold. - major(20) : Major Problem threshold. - critical(30): Critical problem threshold. A system might shut - down the sensor associated FRU automatically if - the sensor value reach the critical problem - threshold." - SYNTAX INTEGER { - other(1), - minor(10), - major(20), - critical(30) - } - -SensorThresholdRelation ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "sensor threshold relational operator types. valid values are: - - lessThan(1): if the sensor value is less than - the threshold value - lessOrEqual(2): if the sensor value is less than or equal to - the threshold value - greaterThan(3): if the sensor value is greater than - the threshold value - greaterOrEqual(4): if the sensor value is greater than or equal - to the threshold value - equalTo(5): if the sensor value is equal to - the threshold value - notEqualTo(6): if the sensor value is not equal to - the threshold value" - SYNTAX INTEGER { - lessThan(1), - lessOrEqual(2), - greaterThan(3), - greaterOrEqual(4), - equalTo(5), - notEqualTo(6) - } --- MIB variables - -entSensorValues OBJECT IDENTIFIER - ::= { entitySensorMIBObjects 1 } - -entSensorThresholds OBJECT IDENTIFIER - ::= { entitySensorMIBObjects 2 } - -entSensorGlobalObjects OBJECT IDENTIFIER - ::= { entitySensorMIBObjects 3 } - --- entSensorValueTable - -entSensorValueTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntSensorValueEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table lists the type, scale, and present value - of a sensor listed in the Entity-MIB entPhysicalTable." - ::= { entSensorValues 1 } - -entSensorValueEntry OBJECT-TYPE - SYNTAX EntSensorValueEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entSensorValueTable entry describes the - present reading of a sensor, the measurement units - and scale, and sensor operational status." - INDEX { entPhysicalIndex } - ::= { entSensorValueTable 1 } - -EntSensorValueEntry ::= SEQUENCE { - entSensorType SensorDataType, - entSensorScale SensorDataScale, - entSensorPrecision SensorPrecision, - entSensorValue SensorValue, - entSensorStatus SensorStatus, - entSensorValueTimeStamp TimeStamp, - entSensorValueUpdateRate SensorValueUpdateRate, - entSensorMeasuredEntity EntPhysicalIndexOrZero -} - -entSensorType OBJECT-TYPE - SYNTAX SensorDataType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the type of data - reported by the entSensorValue. - - This variable is set by the agent at start-up - and the value does not change during operation." - ::= { entSensorValueEntry 1 } - -entSensorScale OBJECT-TYPE - SYNTAX SensorDataScale - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the exponent to apply - to sensor values reported by entSensorValue. - - This variable is set by the agent at start-up - and the value does not change during operation." - ::= { entSensorValueEntry 2 } - -entSensorPrecision OBJECT-TYPE - SYNTAX SensorPrecision - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the number of decimal - places of precision in fixed-point - sensor values reported by entSensorValue. - - This variable is set to 0 when entSensorType - is not a fixed-point type: e.g.'percentRH(9)', - 'rpm(10)', 'cmm(11)', or 'truthvalue(12)'. - - This variable is set by the agent at start-up - and the value does not change during operation." - ::= { entSensorValueEntry 3 } - -entSensorValue OBJECT-TYPE - SYNTAX SensorValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable reports the most recent measurement seen - by the sensor. - - To correctly display or interpret this variable's value, - you must also know entSensorType, entSensorScale, and - entSensorPrecision. - - However, you can compare entSensorValue with the threshold - values given in entSensorThresholdTable without any semantic - knowledge." - ::= { entSensorValueEntry 4 } - -entSensorStatus OBJECT-TYPE - SYNTAX SensorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the present operational status - of the sensor." - ::= { entSensorValueEntry 5 } - -entSensorValueTimeStamp OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the age of the value reported by - entSensorValue" - ::= { entSensorValueEntry 6 } - -entSensorValueUpdateRate OBJECT-TYPE - SYNTAX SensorValueUpdateRate - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the rate that the agent - updates entSensorValue." - ::= { entSensorValueEntry 7 } - -entSensorMeasuredEntity OBJECT-TYPE - SYNTAX EntPhysicalIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object identifies the physical entity for which the - sensor is taking measurements. For example, for a sensor - measuring the voltage output of a power-supply, this object - would be the entPhysicalIndex of that power-supply; for a sensor - measuring the temperature inside one chassis of a multi-chassis - system, this object would be the enPhysicalIndex of that - chassis. - - This object has a value of zero when the physical entity - for which the sensor is taking measurements can not be - represented by any one row in the entPhysicalTable, or that - there is no such physical entity." - ::= { entSensorValueEntry 8 } - - --- entSensorThresholdTable - -entSensorThresholdTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntSensorThresholdEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table lists the threshold severity, relation, and - comparison value, for a sensor listed in the Entity-MIB - entPhysicalTable." - ::= { entSensorThresholds 1 } - -entSensorThresholdEntry OBJECT-TYPE - SYNTAX EntSensorThresholdEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entSensorThresholdTable entry describes the - thresholds for a sensor: the threshold severity, - the threshold value, the relation, and the - evaluation of the threshold. - - Only entities of type sensor(8) are listed in this table. - Only pre-configured thresholds are listed in this table. - - Users can create sensor-value monitoring instruments - in different ways, such as RMON alarms, Expression-MIB, etc. - - Entries are created by the agent at system startup and - FRU insertion. Entries are deleted by the agent at - FRU removal." - INDEX { - entPhysicalIndex, - entSensorThresholdIndex - } - ::= { entSensorThresholdTable 1 } - -EntSensorThresholdEntry ::= SEQUENCE { - entSensorThresholdIndex Integer32, - entSensorThresholdSeverity SensorThresholdSeverity, - entSensorThresholdRelation SensorThresholdRelation, - entSensorThresholdValue SensorValue, - entSensorThresholdEvaluation TruthValue, - entSensorThresholdNotificationEnable TruthValue -} - -entSensorThresholdIndex OBJECT-TYPE - SYNTAX Integer32 (1..99999999) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the entSensorThresholdTable. This index - permits the same sensor to have several - different thresholds." - ::= { entSensorThresholdEntry 1 } - -entSensorThresholdSeverity OBJECT-TYPE - SYNTAX SensorThresholdSeverity - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable indicates the severity of this threshold." - ::= { entSensorThresholdEntry 2 } - -entSensorThresholdRelation OBJECT-TYPE - SYNTAX SensorThresholdRelation - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable indicates the relation between sensor value - (entSensorValue) and threshold value (entSensorThresholdValue), - required to trigger the alarm. when evaluating the relation, - entSensorValue is on the left of entSensorThresholdRelation, - entSensorThresholdValue is on the right. - - in pseudo-code, the evaluation-alarm mechanism is: - - ... - if (entSensorStatus == ok) then - if (evaluate(entSensorValue, entSensorThresholdRelation, - entSensorThresholdValue)) - then - if (entSensorThresholdNotificationEnable == true)) - then - raise_alarm(sensor's entPhysicalIndex); - endif - endif - endif - ..." - ::= { entSensorThresholdEntry 3 } - -entSensorThresholdValue OBJECT-TYPE - SYNTAX SensorValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable indicates the value of the threshold. - - To correctly display or interpret this variable's value, - you must also know entSensorType, entSensorScale, and - entSensorPrecision. - - However, you can directly compare entSensorValue - with the threshold values given in entSensorThresholdTable - without any semantic knowledge." - ::= { entSensorThresholdEntry 4 } - -entSensorThresholdEvaluation OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This variable indicates the result of the most - recent evaluation of the threshold. If the threshold - condition is true, entSensorThresholdEvaluation - is true(1). If the threshold condition is false, - entSensorThresholdEvaluation is false(2). - - Thresholds are evaluated at the rate indicated by - entSensorValueUpdateRate." - ::= { entSensorThresholdEntry 5 } - -entSensorThresholdNotificationEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable controls generation of - entSensorThresholdNotification for this threshold. - - When this variable is 'true', generation of - entSensorThresholdNotification is enabled for this - threshold. When this variable is 'false', - generation of entSensorThresholdNotification is - disabled for this threshold." - ::= { entSensorThresholdEntry 6 } - - - --- Entity Sensor Global Objects - -entSensorThreshNotifGlobalEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable enables the generation of - entSensorThresholdNotification globally - on the device. If this object value is - 'false', then no entSensorThresholdNotification - will be generated on this device. If this object - value is 'true', then whether a - entSensorThresholdNotification for a threshold will - be generated or not depends on the instance value of - entSensorThresholdNotificationEnable for that - threshold." - ::= { entSensorGlobalObjects 1 } --- notifications - -entitySensorMIBNotifications OBJECT IDENTIFIER - ::= { entitySensorMIBNotificationPrefix 0 } - - -entSensorThresholdNotification NOTIFICATION-TYPE - OBJECTS { - entSensorThresholdValue, - entSensorValue, - entSensorThresholdSeverity - } - STATUS current - DESCRIPTION - "The notification is generated when - the sensor value entSensorValue crosses - the threshold value entSensorThresholdValue and - the value of entSensorThreshNotifGlobalEnable is true. - - entSensorThresholdSeverity indicates the severity - of this threshold. - - The agent implementation guarantees prompt, timely - evaluation of threshold and generation of this - notification." - ::= { entitySensorMIBNotifications 1 } - -entSensorThresholdRecoveryNotification NOTIFICATION-TYPE - OBJECTS { - entSensorValue, - entSensorThresholdSeverity, - entSensorThresholdValue - } - STATUS current - DESCRIPTION - "This notification is generated - as a recovery notification when - the sensor value entSensorValue goes below - the threshold value entSensorThresholdValue - once it has generated entSensorThresholdNotification. - The value of entSensorThreshNotifGlobalEnable needs - to be true. - - entSensorThresholdSeverity indicates the severity - of this threshold. - - The agent implementation guarantees prompt, timely - evaluation of threshold and generation of this - notification." - ::= { entitySensorMIBNotifications 2 } --- conformance information - -entitySensorMIBCompliances OBJECT IDENTIFIER - ::= { entitySensorMIBConformance 1 } - -entitySensorMIBGroups OBJECT IDENTIFIER - ::= { entitySensorMIBConformance 2 } - - --- compliance statements - -entitySensorMIBComplianceV01 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "An Entity-MIB implementation that lists - sensors in its entPhysicalTable must implement - this group." - MODULE -- this module - MANDATORY-GROUPS { - entitySensorValueGroup, - entitySensorThresholdGroup, - entitySensorThresholdNotificationGroup - } - ::= { entitySensorMIBCompliances 1 } - -entitySensorMIBComplianceV02 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "An Entity-MIB implementation that lists - sensors in its entPhysicalTable must implement - this group." - MODULE -- this module - MANDATORY-GROUPS { entitySensorThresholdGroup } - - GROUP entitySensorValueGroup - DESCRIPTION - "This group is mandatory for the systems which don't - support IETF version of ENTITY-SENSOR-MIB." - - GROUP entitySensorThresholdNotificationGroup - DESCRIPTION - "This group is mandatory for the systems which support - entitySensorValueGroup group." - - OBJECT entSensorThresholdSeverity - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdRelation - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdValue - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { entitySensorMIBCompliances 2 } - -entitySensorMIBComplianceV03 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "An Entity-MIB implementation that lists - sensors in its entPhysicalTable must implement - this group." - MODULE -- this module - MANDATORY-GROUPS { entitySensorThresholdGroup } - - GROUP entitySensorValueGroup - DESCRIPTION - "This group is mandatory for the systems which don't - support IETF version of ENTITY-SENSOR-MIB." - - GROUP entitySensorThresholdNotificationGroup - DESCRIPTION - "This group is mandatory for the systems which support - entitySensorValueGroup group." - - GROUP entitySensorValueGroupSup1 - DESCRIPTION - "This group is mandatory for the systems which support - the correlation between sensor and its measured - physical entity." - - OBJECT entSensorThresholdSeverity - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdRelation - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdValue - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { entitySensorMIBCompliances 3 } - -entitySensorMIBComplianceV04 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "An Entity-MIB implementation that lists - sensors in its entPhysicalTable must implement - this group." - MODULE -- this module - MANDATORY-GROUPS { entitySensorThresholdGroup } - - GROUP entitySensorValueGroup - DESCRIPTION - "This group is mandatory for the systems which don't - support IETF version of ENTITY-SENSOR-MIB." - - GROUP entitySensorThresholdNotificationGroup - DESCRIPTION - "This group is mandatory for the systems which support - entitySensorValueGroup group." - - GROUP entitySensorValueGroupSup1 - DESCRIPTION - "This group is mandatory for the systems which support - the correlation between sensor and its measured - physical entity." - - GROUP entitySensorNotifCtrlGlobalGroup - DESCRIPTION - "This group is mandatory for the platforms which support - global notification control on - entSensorThresholdNotification." - - OBJECT entSensorThresholdSeverity - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdRelation - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdValue - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { entitySensorMIBCompliances 4 } - -entitySensorMIBComplianceV05 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "An Entity-MIB implementation that lists - sensors in its entPhysicalTable must implement - this group." - MODULE -- this module - MANDATORY-GROUPS { entitySensorThresholdGroup } - - GROUP entitySensorValueGroup - DESCRIPTION - "This group is mandatory for the systems - which don't support IETF version of - ENTITY-SENSOR-MIB." - - GROUP entitySensorValueGroupSup1 - DESCRIPTION - "This group is mandatory for the systems - which don't support IETF version of - ENTITY-SENSOR-MIB." - - GROUP entitySensorNotifCtrlGlobalGroup - DESCRIPTION - "This group is mandatory for the systems - which don't support IETF version of - ENTITY-SENSOR-MIB." - - GROUP entitySensorNotificationGroup - DESCRIPTION - "This group is mandatory for the systems - which don't support IETF version of - ENTITY-SENSOR-MIB." - - OBJECT entSensorThresholdSeverity - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdRelation - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT entSensorThresholdValue - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { entitySensorMIBCompliances 5 } - --- units of conformance - -entitySensorValueGroup OBJECT-GROUP - OBJECTS { - entSensorType, - entSensorScale, - entSensorPrecision, - entSensorValue, - entSensorStatus, - entSensorValueTimeStamp, - entSensorValueUpdateRate - } - STATUS current - DESCRIPTION - "The collection of objects which are used - to describe and monitor values of Entity-MIB - entPhysicalTable entries of sensors." - ::= { entitySensorMIBGroups 1 } - -entitySensorThresholdGroup OBJECT-GROUP - OBJECTS { - entSensorThresholdSeverity, - entSensorThresholdRelation, - entSensorThresholdValue, - entSensorThresholdEvaluation, - entSensorThresholdNotificationEnable - } - STATUS current - DESCRIPTION - "The collection of objects which are used - to describe and monitor thresholds for - sensors." - ::= { entitySensorMIBGroups 2 } - -entitySensorThresholdNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { entSensorThresholdNotification } - STATUS deprecated - DESCRIPTION - "The collection of notifications used for - monitoring sensor threshold activity. - entitySensorThresholdNotificationGroup - object is superseded by - entitySensorNotificationGroup." - ::= { entitySensorMIBGroups 3 } - -entitySensorValueGroupSup1 OBJECT-GROUP - OBJECTS { entSensorMeasuredEntity } - STATUS current - DESCRIPTION - "The collection of objects which are used to describe and track - the measured entities of ENTITY-MIB entPhysicalTable." - ::= { entitySensorMIBGroups 4 } - -entitySensorNotifCtrlGlobalGroup OBJECT-GROUP - OBJECTS { entSensorThreshNotifGlobalEnable } - STATUS current - DESCRIPTION - "The collection of objects which provide the global - notification control on entSensorThresholdNotification." - ::= { entitySensorMIBGroups 5 } - -entitySensorNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { - entSensorThresholdNotification, - entSensorThresholdRecoveryNotification - } - STATUS current - DESCRIPTION - "The collection of notifications used for - monitoring sensor threshold activity." - ::= { entitySensorMIBGroups 6 } - -END - - --- %DNP% MLC -Compiled MLC - --- %DNP% MRS -with reviewer MRS - --- %DNP% MRC - ciscoEntitySensorMIB~1~ - 2017011904:47 PST - linche -18.0 -ACK --- %DNP% - < ^^ Copyright (c) 1998-2017 by cisco Systems Inc. --- %DNP%^^- --- %DNP%> ^^ Copyright (c) 1998-2003-2006, 2013, 2015, 2017 by cisco Systems --- %DNP%Inc. --- %DNP%35c35 --- %DNP%< LAST-UPDATED "201701190000Z" --- %DNP%^^- --- %DNP%> LAST-UPDATED "201612210000Z" --- %DNP%50c50 --- %DNP%< REVISION "201701190000Z" --- %DNP%^^- --- %DNP%> REVISION "201612210000Z" --- %DNP%52c52 --- %DNP%< "Added enumerated value dB(15) to SensorDataType." --- %DNP%^^- --- %DNP%> "[1] Add dB(15) in SensorDataType." --- %DNP% --- %DNP% -0 MRC - diff --git a/mibs/orig/CISCO-ENVMON-MIB b/mibs/orig/CISCO-ENVMON-MIB deleted file mode 100644 index bc564c1..0000000 --- a/mibs/orig/CISCO-ENVMON-MIB +++ /dev/null @@ -1,938 +0,0 @@ --- ***************************************************************** --- CISCO-ENVMON-MIB.my: CISCO Environmental Monitor MIB file --- --- November 1994 Sandra C. Durham/Jeffrey T. Johnson --- --- Copyright (c) 1994-2003, 2004 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** --- -CISCO-ENVMON-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-TYPE, - NOTIFICATION-TYPE, - Gauge32, - Integer32 - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, - DisplayString, - TruthValue - FROM SNMPv2-TC - MODULE-COMPLIANCE, - OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF - ciscoMgmt - FROM CISCO-SMI; - - -ciscoEnvMonMIB MODULE-IDENTITY - LAST-UPDATED "200312010000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - " Cisco Systems - Customer Service - - Postal: 170 W Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "The MIB module to describe the status of the Environmental - Monitor on those devices which support one." - REVISION "200312010000Z" - DESCRIPTION - "Added c37xx (13) and other (14) as values for - ciscoEnvMonPresent" - REVISION "200311250000Z" - DESCRIPTION - "Added ciscoEnvMonMIBMiscNotifGroup." - REVISION "200210150000Z" - DESCRIPTION - "Added c7600(12) as values for ciscoEnvMonPresent" - REVISION "200207170000Z" - DESCRIPTION - "Added optional groups ciscoEnvMonEnableStatChangeGroup - and ciscoEnvMonStatChangeNotifGroup." - REVISION "200202040000Z" - DESCRIPTION - "Added osr7600(11) as values - for ciscoEnvMonPresent" - REVISION "200108300000Z" - DESCRIPTION - "Added c10000(10) as values for ciscoEnvMonPresent" - REVISION "200108160000Z" - DESCRIPTION - "Added cat4000(9) as values for ciscoEnvMonPresent" - REVISION "200105070000Z" - DESCRIPTION - "Added cat6000(7),ubr7200(8) - as values for ciscoEnvMonPresent" - REVISION "200001310000Z" - DESCRIPTION - "Add notFunctioning to CiscoEnvMonState. - " - REVISION "9810220000Z" - DESCRIPTION - "Renamed enumerated value internalRPS(5) as - internalRedundant(5) and added description for - ciscoEnvMonSupplySource enumerated values. - " - REVISION "9808050000Z" - DESCRIPTION - "Add enumerated value internalRPS(5) to - ciscoEnvMonSupplySource. - " - REVISION "9611120000Z" - DESCRIPTION - "Add monitoring support for c3600 series router" - REVISION "9508150000Z" - DESCRIPTION - "Specify a correct (non-negative) range for several - index objects." - REVISION "9503130000Z" - DESCRIPTION - "Miscellaneous changes including monitoring support - for c7000 series redundant power supplies." - - ::= { ciscoMgmt 13 } - - -CiscoEnvMonState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the state of a device being monitored. - Valid values are: - - normal(1): the environment is good, such as low - temperature. - - warning(2): the environment is bad, such as temperature - above normal operation range but not too - high. - - critical(3): the environment is very bad, such as - temperature much higher than normal - operation limit. - - shutdown(4): the environment is the worst, the system - should be shutdown immediately. - - notPresent(5): the environmental monitor is not present, - such as temperature sensors do not exist. - - notFunctioning(6): the environmental monitor does not - function properly, such as a temperature - sensor generates a abnormal data like - 1000 C. - " - SYNTAX INTEGER { - normal(1), - warning(2), - critical(3), - shutdown(4), - notPresent(5), - notFunctioning(6) - } - -CiscoSignedGauge ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the current value of an entity, as a signed - integer." - SYNTAX Integer32 - -ciscoEnvMonObjects OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 1 } - -ciscoEnvMonPresent OBJECT-TYPE - SYNTAX INTEGER { - oldAgs (1), - ags (2), - c7000 (3), - ci (4), - cAccessMon (6), - cat6000 (7), - ubr7200 (8), - cat4000 (9), - c10000 (10), - osr7600(11), - c7600 (12), - c37xx (13), - other (14) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of environmental monitor located in the chassis. - An oldAgs environmental monitor card is identical to an ags - environmental card except that it is not capable of supplying - data, and hence no instance of the remaining objects in this - MIB will be returned in response to an SNMP query. Note that - only a firmware upgrade is required to convert an oldAgs into - an ags card." - ::= { ciscoEnvMonObjects 1 } - - -ciscoEnvMonVoltageStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CiscoEnvMonVoltageStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of voltage status maintained by the environmental - monitor." - ::= { ciscoEnvMonObjects 2 } - -ciscoEnvMonVoltageStatusEntry OBJECT-TYPE - SYNTAX CiscoEnvMonVoltageStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the voltage status table, representing the status - of the associated testpoint maintained by the environmental - monitor." - INDEX { ciscoEnvMonVoltageStatusIndex } - ::= { ciscoEnvMonVoltageStatusTable 1 } - -CiscoEnvMonVoltageStatusEntry ::= - SEQUENCE { - ciscoEnvMonVoltageStatusIndex Integer32, - ciscoEnvMonVoltageStatusDescr DisplayString, - ciscoEnvMonVoltageStatusValue CiscoSignedGauge, - ciscoEnvMonVoltageThresholdLow Integer32, - ciscoEnvMonVoltageThresholdHigh Integer32, - ciscoEnvMonVoltageLastShutdown Integer32, - ciscoEnvMonVoltageState CiscoEnvMonState - } - -ciscoEnvMonVoltageStatusIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Unique index for the testpoint being instrumented. - This index is for SNMP purposes only, and has no - intrinsic meaning." - ::= { ciscoEnvMonVoltageStatusEntry 1 } - -ciscoEnvMonVoltageStatusDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Textual description of the testpoint being instrumented. - This description is a short textual label, suitable as a - human-sensible identification for the rest of the - information in the entry." - ::= { ciscoEnvMonVoltageStatusEntry 2 } - -ciscoEnvMonVoltageStatusValue OBJECT-TYPE - SYNTAX CiscoSignedGauge - UNITS "millivolts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current measurement of the testpoint being instrumented." - ::= { ciscoEnvMonVoltageStatusEntry 3 } - -ciscoEnvMonVoltageThresholdLow OBJECT-TYPE - SYNTAX Integer32 - UNITS "millivolts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The lowest value that the associated instance of the object - ciscoEnvMonVoltageStatusValue may obtain before an emergency - shutdown of the managed device is initiated." - ::= { ciscoEnvMonVoltageStatusEntry 4 } - -ciscoEnvMonVoltageThresholdHigh OBJECT-TYPE - SYNTAX Integer32 - UNITS "millivolts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The highest value that the associated instance of the object - ciscoEnvMonVoltageStatusValue may obtain before an emergency - shutdown of the managed device is initiated." - ::= { ciscoEnvMonVoltageStatusEntry 5 } - -ciscoEnvMonVoltageLastShutdown OBJECT-TYPE - SYNTAX Integer32 - UNITS "millivolts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the associated instance of the object - ciscoEnvMonVoltageStatusValue at the time an emergency - shutdown of the managed device was last initiated. This - value is stored in non-volatile RAM and hence is able to - survive the shutdown." - ::= { ciscoEnvMonVoltageStatusEntry 6 } - -ciscoEnvMonVoltageState OBJECT-TYPE - SYNTAX CiscoEnvMonState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of the testpoint being instrumented." - ::= { ciscoEnvMonVoltageStatusEntry 7 } - - - -ciscoEnvMonTemperatureStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CiscoEnvMonTemperatureStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of ambient temperature status maintained by the - environmental monitor." - ::= { ciscoEnvMonObjects 3 } - -ciscoEnvMonTemperatureStatusEntry OBJECT-TYPE - SYNTAX CiscoEnvMonTemperatureStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the ambient temperature status table, representing - the status of the associated testpoint maintained by the - environmental monitor." - INDEX { ciscoEnvMonTemperatureStatusIndex } - ::= { ciscoEnvMonTemperatureStatusTable 1 } - -CiscoEnvMonTemperatureStatusEntry ::= - SEQUENCE { - ciscoEnvMonTemperatureStatusIndex Integer32, - ciscoEnvMonTemperatureStatusDescr DisplayString, - ciscoEnvMonTemperatureStatusValue Gauge32, - ciscoEnvMonTemperatureThreshold Integer32, - ciscoEnvMonTemperatureLastShutdown Integer32, - ciscoEnvMonTemperatureState CiscoEnvMonState - } - - -ciscoEnvMonTemperatureStatusIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Unique index for the testpoint being instrumented. - This index is for SNMP purposes only, and has no - intrinsic meaning." - ::= { ciscoEnvMonTemperatureStatusEntry 1 } - -ciscoEnvMonTemperatureStatusDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Textual description of the testpoint being instrumented. - This description is a short textual label, suitable as a - human-sensible identification for the rest of the - information in the entry." - ::= { ciscoEnvMonTemperatureStatusEntry 2 } - -ciscoEnvMonTemperatureStatusValue OBJECT-TYPE - SYNTAX Gauge32 - UNITS "degrees Celsius" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current measurement of the testpoint being instrumented." - ::= { ciscoEnvMonTemperatureStatusEntry 3 } - -ciscoEnvMonTemperatureThreshold OBJECT-TYPE - SYNTAX Integer32 - UNITS "degrees Celsius" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The highest value that the associated instance of the - object ciscoEnvMonTemperatureStatusValue may obtain - before an emergency shutdown of the managed device is - initiated." - ::= { ciscoEnvMonTemperatureStatusEntry 4 } - -ciscoEnvMonTemperatureLastShutdown OBJECT-TYPE - SYNTAX Integer32 - UNITS "degrees Celsius" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the associated instance of the object - ciscoEnvMonTemperatureStatusValue at the time an emergency - shutdown of the managed device was last initiated. This - value is stored in non-volatile RAM and hence is able to - survive the shutdown." - ::= { ciscoEnvMonTemperatureStatusEntry 5 } - -ciscoEnvMonTemperatureState OBJECT-TYPE - SYNTAX CiscoEnvMonState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of the testpoint being instrumented." - ::= { ciscoEnvMonTemperatureStatusEntry 6 } - - - -ciscoEnvMonFanStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CiscoEnvMonFanStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of fan status maintained by the environmental - monitor." - ::= { ciscoEnvMonObjects 4 } - -ciscoEnvMonFanStatusEntry OBJECT-TYPE - SYNTAX CiscoEnvMonFanStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the fan status table, representing the status of - the associated fan maintained by the environmental monitor." - INDEX { ciscoEnvMonFanStatusIndex } - ::= { ciscoEnvMonFanStatusTable 1 } - -CiscoEnvMonFanStatusEntry ::= - SEQUENCE { - ciscoEnvMonFanStatusIndex Integer32, - ciscoEnvMonFanStatusDescr DisplayString, - ciscoEnvMonFanState CiscoEnvMonState - } - -ciscoEnvMonFanStatusIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Unique index for the fan being instrumented. - This index is for SNMP purposes only, and has no - intrinsic meaning." - ::= { ciscoEnvMonFanStatusEntry 1 } - -ciscoEnvMonFanStatusDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Textual description of the fan being instrumented. - This description is a short textual label, suitable as a - human-sensible identification for the rest of the - information in the entry." - ::= { ciscoEnvMonFanStatusEntry 2 } - -ciscoEnvMonFanState OBJECT-TYPE - SYNTAX CiscoEnvMonState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of the fan being instrumented." - ::= { ciscoEnvMonFanStatusEntry 3 } - - - -ciscoEnvMonSupplyStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CiscoEnvMonSupplyStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of power supply status maintained by the - environmental monitor card." - ::= { ciscoEnvMonObjects 5 } - -ciscoEnvMonSupplyStatusEntry OBJECT-TYPE - SYNTAX CiscoEnvMonSupplyStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the power supply status table, representing the - status of the associated power supply maintained by the - environmental monitor card." - INDEX { ciscoEnvMonSupplyStatusIndex } - ::= { ciscoEnvMonSupplyStatusTable 1 } - -CiscoEnvMonSupplyStatusEntry ::= - SEQUENCE { - ciscoEnvMonSupplyStatusIndex Integer32, - ciscoEnvMonSupplyStatusDescr DisplayString, - ciscoEnvMonSupplyState CiscoEnvMonState, - ciscoEnvMonSupplySource INTEGER - } - -ciscoEnvMonSupplyStatusIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Unique index for the power supply being instrumented. - This index is for SNMP purposes only, and has no - intrinsic meaning." - ::= { ciscoEnvMonSupplyStatusEntry 1 } - -ciscoEnvMonSupplyStatusDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Textual description of the power supply being instrumented. - This description is a short textual label, suitable as a - human-sensible identification for the rest of the - information in the entry." - ::= { ciscoEnvMonSupplyStatusEntry 2 } - -ciscoEnvMonSupplyState OBJECT-TYPE - SYNTAX CiscoEnvMonState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of the power supply being instrumented." - ::= { ciscoEnvMonSupplyStatusEntry 3 } - -ciscoEnvMonSupplySource OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ac(2), - dc(3), - externalPowerSupply(4), - internalRedundant(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The power supply source. - unknown - Power supply source unknown - ac - AC power supply - dc - DC power supply - externalPowerSupply - External power supply - internalRedundant - Internal redundant power supply - " - ::= { ciscoEnvMonSupplyStatusEntry 4 } - -ciscoEnvMonAlarmContacts OBJECT-TYPE - SYNTAX BITS { - minorVisual(0), - majorVisual(1), - criticalVisual(2), - minorAudible(3), - majorAudible(4), - criticalAudible(5), - input(6) - } - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Each bit is set to reflect the respective - alarm being set. The bit will be cleared - when the respective alarm is cleared." - ::= { ciscoEnvMonObjects 6 } - -ciscoEnvMonMIBNotificationEnables OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 2 } - -ciscoEnvMonEnableShutdownNotification OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable indicates whether the system - produces the ciscoEnvMonShutdownNotification. A false - value will prevent shutdown notifications - from being generated by this system." - DEFVAL { false } - ::= { ciscoEnvMonMIBNotificationEnables 1 } - -ciscoEnvMonEnableVoltageNotification OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This variable indicates whether the system - produces the ciscoEnvMonVoltageNotification. A false - value will prevent voltage notifications from being - generated by this system. This object is deprecated - in favour of ciscoEnvMonEnableStatChangeNotif." - DEFVAL { false } - ::= { ciscoEnvMonMIBNotificationEnables 2 } - -ciscoEnvMonEnableTemperatureNotification OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This variable indicates whether the system - produces the ciscoEnvMonTemperatureNotification. - A false value prevents temperature notifications - from being sent by this entity. This object is - deprecated in favour of - ciscoEnvMonEnableStatChangeNotif." - DEFVAL { false } - ::= { ciscoEnvMonMIBNotificationEnables 3 } - -ciscoEnvMonEnableFanNotification OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This variable indicates whether the system - produces the ciscoEnvMonFanNotification. - A false value prevents fan notifications - from being sent by this entity. This object is - deprecated in favour of - ciscoEnvMonEnableStatChangeNotif." - DEFVAL { false } - ::= { ciscoEnvMonMIBNotificationEnables 4 } - -ciscoEnvMonEnableRedundantSupplyNotification OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This variable indicates whether the system - produces the ciscoEnvMonRedundantSupplyNotification. - A false value prevents redundant supply notifications - from being generated by this system. This object is - deprecated in favour of - ciscoEnvMonEnableStatChangeNotif." - DEFVAL { false } - ::= { ciscoEnvMonMIBNotificationEnables 5 } - -ciscoEnvMonEnableStatChangeNotif OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This variable indicates whether the system - produces the ciscoEnvMonVoltStatusChangeNotif, - ciscoEnvMonTempStatusChangeNotif, - ciscoEnvMonFanStatusChangeNotif and - ciscoEnvMonSuppStatusChangeNotif. A false value will - prevent these notifications from being generated by - this system." - DEFVAL { false } - ::= { ciscoEnvMonMIBNotificationEnables 6 } - --- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications --- that are backward compatible with SNMPv1 Traps. -ciscoEnvMonMIBNotificationPrefix OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 3 } -ciscoEnvMonMIBNotifications OBJECT IDENTIFIER ::= { ciscoEnvMonMIBNotificationPrefix 0 } - -ciscoEnvMonShutdownNotification NOTIFICATION-TYPE - -- no OBJECTS - STATUS current - DESCRIPTION - "A ciscoEnvMonShutdownNotification is sent if the environmental - monitor detects a testpoint reaching a critical state - and is about to initiate a shutdown. This notification - contains no objects so that it may be encoded and sent in the - shortest amount of time possible. Even so, management - applications should not rely on receiving such a notification - as it may not be sent before the shutdown completes." - ::= { ciscoEnvMonMIBNotifications 1 } - - -ciscoEnvMonVoltageNotification NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonVoltageStatusDescr, - ciscoEnvMonVoltageStatusValue, - ciscoEnvMonVoltageState - } - STATUS deprecated - DESCRIPTION - "A ciscoEnvMonVoltageNotification is sent if the voltage - measured at a given testpoint is outside the normal range - for the testpoint (i.e. is at the warning, critical, or - shutdown stage). Since such a notification is usually - generated before the shutdown state is reached, it can - convey more data and has a better chance of being sent - than does the ciscoEnvMonShutdownNotification. - This notification is deprecated in favour of - ciscoEnvMonVoltStatusChangeNotif." - ::= { ciscoEnvMonMIBNotifications 2 } - - -ciscoEnvMonTemperatureNotification NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonTemperatureStatusDescr, - ciscoEnvMonTemperatureStatusValue, - ciscoEnvMonTemperatureState - } - STATUS deprecated - DESCRIPTION - "A ciscoEnvMonTemperatureNotification is sent if the - temperature measured at a given testpoint is outside - the normal range for the testpoint (i.e. is at the warning, - critical, or shutdown stage). Since such a Notification - is usually generated before the shutdown state is reached, - it can convey more data and has a better chance of being - sent than does the ciscoEnvMonShutdownNotification. - This notification is deprecated in favour of - ciscoEnvMonTempStatusChangeNotif." - ::= { ciscoEnvMonMIBNotifications 3 } - - - -ciscoEnvMonFanNotification NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonFanStatusDescr, - ciscoEnvMonFanState - } - STATUS deprecated - DESCRIPTION - "A ciscoEnvMonFanNotification is sent if any one of - the fans in the fan array (where extant) fails. - Since such a notification is usually generated before - the shutdown state is reached, it can convey more - data and has a better chance of being sent - than does the ciscoEnvMonShutdownNotification. - This notification is deprecated in favour of - ciscoEnvMonFanStatusChangeNotif." - ::= { ciscoEnvMonMIBNotifications 4 } - -ciscoEnvMonRedundantSupplyNotification NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonSupplyStatusDescr, - ciscoEnvMonSupplyState - } - STATUS deprecated - DESCRIPTION - "A ciscoEnvMonRedundantSupplyNotification is sent if - the redundant power supply (where extant) fails. - Since such a notification is usually generated before - the shutdown state is reached, it can convey more - data and has a better chance of being sent - than does the ciscoEnvMonShutdownNotification. - This notification is deprecated in favour of - ciscoEnvMonSuppStatusChangeNotif." - ::= { ciscoEnvMonMIBNotifications 5 } - -ciscoEnvMonVoltStatusChangeNotif NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonVoltageStatusDescr, - ciscoEnvMonVoltageStatusValue, - ciscoEnvMonVoltageState - } - STATUS current - DESCRIPTION - "A ciscoEnvMonVoltStatusChangeNotif is sent if there is - change in the state of a device being monitored - by ciscoEnvMonVoltageState." - ::= { ciscoEnvMonMIBNotifications 6 } - -ciscoEnvMonTempStatusChangeNotif NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonTemperatureStatusDescr, - ciscoEnvMonTemperatureStatusValue, - ciscoEnvMonTemperatureState - } - STATUS current - DESCRIPTION - "A ciscoEnvMonTempStatusChangeNotif is sent if there - is change in the state of a device being monitored - by ciscoEnvMonTemperatureState." - ::= { ciscoEnvMonMIBNotifications 7 } - -ciscoEnvMonFanStatusChangeNotif NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonFanStatusDescr, - ciscoEnvMonFanState - } - STATUS current - DESCRIPTION - "A ciscoEnvMonFanStatusChangeNotif is sent if there - is change in the state of a device being monitored - by ciscoEnvMonFanState." - ::= { ciscoEnvMonMIBNotifications 8 } - -ciscoEnvMonSuppStatusChangeNotif NOTIFICATION-TYPE - OBJECTS { - ciscoEnvMonSupplyStatusDescr, - ciscoEnvMonSupplyState - } - STATUS current - DESCRIPTION - "A ciscoEnvMonSupplyStatChangeNotif is sent if there - is change in the state of a device being monitored - by ciscoEnvMonSupplyState." - ::= { ciscoEnvMonMIBNotifications 9 } - --- conformance information - -ciscoEnvMonMIBConformance OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 4 } -ciscoEnvMonMIBCompliances OBJECT IDENTIFIER ::= { ciscoEnvMonMIBConformance 1 } -ciscoEnvMonMIBGroups OBJECT IDENTIFIER ::= { ciscoEnvMonMIBConformance 2 } - - --- compliance statements - -ciscoEnvMonMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Environmental Monitor MIB. This is - deprecated and new compliance - ciscoEnvMonMIBComplianceRev1 is added." - MODULE -- this module - MANDATORY-GROUPS { ciscoEnvMonMIBGroup } - ::= { ciscoEnvMonMIBCompliances 1 } - -ciscoEnvMonMIBComplianceRev1 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Environmental Monitor MIB." - MODULE -- this module - MANDATORY-GROUPS { ciscoEnvMonMIBGroupRev, - ciscoEnvMonMIBNotifGroup } - - GROUP ciscoEnvMonEnableStatChangeGroup - DESCRIPTION - "The ciscoEnvMonEnableStatChangeGroup is optional. - This group is applicable for implementations which - need status change notifications for environmental - monitoring." - - GROUP ciscoEnvMonStatChangeNotifGroup - DESCRIPTION - "The ciscoEnvMonStatChangeNotifGroup is optional. - This group is applicable for implementations which - need status change notifications for environmental - monitoring." - - ::= { ciscoEnvMonMIBCompliances 2 } - --- units of conformance - -ciscoEnvMonMIBGroup OBJECT-GROUP - OBJECTS { - ciscoEnvMonPresent, - - ciscoEnvMonVoltageStatusDescr, - ciscoEnvMonVoltageStatusValue, - ciscoEnvMonVoltageThresholdLow, - ciscoEnvMonVoltageThresholdHigh, - ciscoEnvMonVoltageLastShutdown, - ciscoEnvMonVoltageState, - - ciscoEnvMonTemperatureStatusDescr, - ciscoEnvMonTemperatureStatusValue, - ciscoEnvMonTemperatureThreshold, - ciscoEnvMonTemperatureLastShutdown, - ciscoEnvMonTemperatureState, - - ciscoEnvMonFanStatusDescr, - ciscoEnvMonFanState, - - ciscoEnvMonSupplyStatusDescr, - ciscoEnvMonSupplyState, - ciscoEnvMonSupplySource, - - ciscoEnvMonAlarmContacts, - - ciscoEnvMonEnableShutdownNotification, - ciscoEnvMonEnableVoltageNotification, - ciscoEnvMonEnableTemperatureNotification, - ciscoEnvMonEnableFanNotification, - ciscoEnvMonEnableRedundantSupplyNotification - - } - STATUS deprecated - DESCRIPTION - "A collection of objects providing environmental - monitoring capability to a cisco chassis. This group - is deprecated in favour of ciscoEnvMonMIBGroupRev." - ::= { ciscoEnvMonMIBGroups 1 } - -ciscoEnvMonMIBGroupRev OBJECT-GROUP - OBJECTS { - ciscoEnvMonPresent, - - ciscoEnvMonVoltageStatusDescr, - ciscoEnvMonVoltageStatusValue, - ciscoEnvMonVoltageThresholdLow, - ciscoEnvMonVoltageThresholdHigh, - ciscoEnvMonVoltageLastShutdown, - ciscoEnvMonVoltageState, - - ciscoEnvMonTemperatureStatusDescr, - ciscoEnvMonTemperatureStatusValue, - ciscoEnvMonTemperatureThreshold, - ciscoEnvMonTemperatureLastShutdown, - ciscoEnvMonTemperatureState, - - ciscoEnvMonFanStatusDescr, - ciscoEnvMonFanState, - - ciscoEnvMonSupplyStatusDescr, - ciscoEnvMonSupplyState, - ciscoEnvMonSupplySource, - - ciscoEnvMonAlarmContacts, - - ciscoEnvMonEnableShutdownNotification - - } - STATUS current - DESCRIPTION - "A collection of objects providing environmental - monitoring capability to a cisco chassis." - ::= { ciscoEnvMonMIBGroups 2 } - -ciscoEnvMonEnableStatChangeGroup OBJECT-GROUP - OBJECTS { - ciscoEnvMonEnableStatChangeNotif - } - STATUS current - DESCRIPTION - "A collection of objects providing enabling/disabling - of the status change notifications for environmental - monitoring." - ::= { ciscoEnvMonMIBGroups 3 } - -ciscoEnvMonMIBNotifGroup NOTIFICATION-GROUP - NOTIFICATIONS { - ciscoEnvMonShutdownNotification - } - STATUS current - DESCRIPTION - "A notification group providing shutdown notification - for environmental monitoring. " - ::= { ciscoEnvMonMIBGroups 4 } - -ciscoEnvMonStatChangeNotifGroup NOTIFICATION-GROUP - NOTIFICATIONS { - ciscoEnvMonVoltStatusChangeNotif, - ciscoEnvMonTempStatusChangeNotif, - ciscoEnvMonFanStatusChangeNotif, - ciscoEnvMonSuppStatusChangeNotif - } - STATUS current - DESCRIPTION - "A collection of notifications providing the status - change for environmental monitoring." - ::= { ciscoEnvMonMIBGroups 5 } - -ciscoEnvMonMIBMiscNotifGroup NOTIFICATION-GROUP - NOTIFICATIONS { - ciscoEnvMonVoltageNotification, - ciscoEnvMonTemperatureNotification, - ciscoEnvMonFanNotification, - ciscoEnvMonRedundantSupplyNotification - } - STATUS deprecated - DESCRIPTION - "A collection of various notifications for the - enviromental monitoring mib module. The notifications - the group and the group are both in deprecated state. - The notifications in the group were deprecated in - favour of notifications in - ciscoEnvMonStatChangeNotifGroup." - ::= { ciscoEnvMonMIBGroups 6 } - -END diff --git a/mibs/orig/CISCO-FIREWALL-MIB b/mibs/orig/CISCO-FIREWALL-MIB deleted file mode 100644 index 8472ad5..0000000 --- a/mibs/orig/CISCO-FIREWALL-MIB +++ /dev/null @@ -1,1336 +0,0 @@ --- ***************************************************************** --- CISCO-FIREWALL-MIB --- --- April, 1999 Jim Fitzgerald --- --- Copyright (c) 1999-2005 by cisco Systems, Inc. --- All rights reserved. --- ***************************************************************** - -CISCO-FIREWALL-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, - NOTIFICATION-GROUP, - MODULE-COMPLIANCE FROM SNMPv2-CONF - - MODULE-IDENTITY, - OBJECT-TYPE, - NOTIFICATION-TYPE, - Counter32, - Gauge32, - Unsigned32, - IpAddress FROM SNMPv2-SMI - - DateAndTime, - TEXTUAL-CONVENTION, - RowPointer FROM SNMPv2-TC - - SnmpAdminString FROM SNMP-FRAMEWORK-MIB - InterfaceIndexOrZero FROM IF-MIB - ciscoMgmt FROM CISCO-SMI; - - -ciscoFirewallMIB MODULE-IDENTITY - LAST-UPDATED "200512060000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - " Cisco Systems - Customer Service - - Postal: 170 W Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-pix@cisco.com - cs-iosfw@cisco.com" - DESCRIPTION "MIB module for monitoring Cisco Firewalls." - REVISION "200512060000Z" - DESCRIPTION - "Added the copyright statement and updated the imports - such that Unsigned32 is imported from SNMPv2-SMI instead - of CISCO-TC. Added a new NOTIFICATION-GROUP - ciscoFirewallMIBNotificationGroupRev1 to include all the - notifications defined in the MIB. Obsoleted the - OBJECT-GROUP ciscoFirewallMIBNotificationGroup. Deprecated - the MODULE-COMPLIANCE ciscoFirewallMIBCompliance and added - a new MODULE-COMPLIANCE ciscoFirewallMIBComplianceRev1." - REVISION "9904291200Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { ciscoMgmt 147 } - -ciscoFirewallMIBObjects OBJECT IDENTIFIER ::= { ciscoFirewallMIB 1 } - -cfwEvents OBJECT IDENTIFIER ::= { ciscoFirewallMIBObjects 1 } - cfwBasicEvents OBJECT IDENTIFIER ::= { cfwEvents 1 } - cfwNetEvents OBJECT IDENTIFIER ::= { cfwEvents 2 } - - -cfwSystem OBJECT IDENTIFIER ::= { ciscoFirewallMIBObjects 2 } - cfwStatus OBJECT IDENTIFIER ::= { cfwSystem 1 } - cfwStatistics OBJECT IDENTIFIER ::= { cfwSystem 2 } - --- Textual Conventions - -ResourceStatistics ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to identify various statistics - that are related to the resources on a firewall. - - highUse : The highest load the resource has had for a - time period. The time period will be - implementation dependent. - highLoad : The highest load the resource has had since - startup. - maximum : The maximum amount of the resource that is - available. - minimum : The minimum amount of the resource that is - available. - low : The lowest amount of the resource that has been - available since startup. - high : The highest amount of the resource that has been - available since startup. - average : The average amount of the resource that has been - available since startup. - free : The amount of the resource that is currently - available since startup. - inUse : The amount of the resource that is currently - in use, eg. CPU usage, memory usage." - SYNTAX INTEGER { - highUse(1), - highLoad(2), - maximum(3), - minimum(4), - low(5), - high(6), - average(7), - free(8), - inUse(9) - } - -Hardware ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various hardware - resouces that can be monitored by the firewall. - - memory - identifies memory. - disk - identifies disk. - power - identifies power. - netInterface - identifies a network interface. - tape - identifies a tape drive. - controller - identifies hardware controller. - cpu - identifies CPU. - primaryUnit - identifies the primary unit of the two - identical firewalls configured redundancy. - secondaryUnit - identifies the secondary unit of the two - identical firewalls configured redundancy. - other - identifies other hardware." - SYNTAX INTEGER { - memory(1), - disk(2), - power(3), - netInterface(4), - cpu(5), - primaryUnit(6), - secondaryUnit(7), - other(8) - } - -Services ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - - "This textual convention is used to describe various services - that are monitored by the firewall. - - otherFWService - a service that does not fit into any - other category. - fileXferFtp - identifies FTP, File Transfer Protocol. - fileXferTftp - identifies TFTP, Trivial File - Transfer Protocol - fileXferFtps - identifies FTP, File Transfer - Protocol running over Secure Sockets Layer. - loginTelnet - identifies telnet - loginRlogin - identifies rlogin. - loginTelnets - identifies telnet over - Secure Sockets Layer(SSL). - remoteExecSunRPC - identifies Sun Remote - Procedure Call Protocol. - remoteExecMSRPC - identifies Microsoft Remote - Procedure Call Protocol. - remoteExecRsh - identifies the remote shell. - remoteExecXserver - identifies the Xwindows server. - webHttp - identifies Hyper Text Transfer Protocol. - webHttps - identifies the secure HTTP protocol. - mailSmtp - identifies SMTP, Simple Mail Transfer Protocol. - mailSmtps - identifies SMTP, Simple Mail Transfer Protocol - running over Secure Sockets Layer (SSL). - multimediaStreamworks - identifies streamworks. - multimediaH323 - identifies H323. - multimediaNetShow - identifies NetShow. - multimediaVDOLive - identifies vDOLive. - multimediaRealAV - identifies RealAV. - multimediaRTSP - identifies Real Time Streaming Protocol - dbOracle - identifies Oracle's SQL*Net. - dbMSsql - identifies MicroSoft SQL. - contInspProgLang - identifies a payload as a programming - language such as Java or ActiveX. - contInspUrl - identifies a payload as a URL. - directoryNis - identifies NIS, Network Information Service. - directoryDns - identifies DNS, Domain Name Service. - directoryNetbiosns - identifies NetBIOSNS - NetBIOS Name Service. - directoryNetbiosdgm - identifies NetBIOSNS - NetBIOS - datagram Service. - directoryNetbiosssn - identifies NetBIOSNS - NetBIOS - Session Service. - directoryWins - identifies Windows Internet Naming - Service (WINS). - qryWhois - identifies WhoIs service. - qryFinger - identifies finger. - qryIdent - identifies Ident. - fsNfsStatus - identifies Network File System (NFS) Status. - fsNfs - identifies Network File System (NFS). - fsCifs - identifies CIFS, Common Internet - File Service. - protoIcmp - identifies ICMP, Internet Control Message Protocol. - protoTcp - identifies TCP, Transmission Control Protocol. - protoUdp - identifies UDP, User Datagram Protocol. - protoIp - identifies IP, Internet Protocol. - protoSnmp - identifies SNMP, Simple Network Management Protocol." - - SYNTAX INTEGER { - otherFWService(1), - fileXferFtp(2), - fileXferTftp(3), - fileXferFtps(4), - loginTelnet(5), - loginRlogin(6), - loginTelnets(7), - remoteExecSunRPC(8), - remoteExecMSRPC(9), - remoteExecRsh(10), - remoteExecXserver(11), - webHttp(12), - webHttps(13), - mailSmtp(14), - multimediaStreamworks(15), - multimediaH323(16), - multimediaNetShow(17), - multimediaVDOLive(18), - multimediaRealAV(19), - multimediaRTSP(20), - dbOracle(21), - dbMSsql(22), - contInspProgLang(23), - contInspUrl(24), - directoryNis(25), - directoryDns(26), - directoryNetbiosns(27), - directoryNetbiosdgm(28), - directoryNetbiosssn(29), - directoryWins(30), - qryWhois(31), - qryFinger(32), - qryIdent(33), - fsNfsStatus(34), - fsNfs(35), - fsCifs(36), - protoIcmp(37), - protoTcp(38), - protoUdp(39), - protoIp(40), - protoSnmp(41) - } - -HardwareStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various events - that are related to the resources on a firewall. - other : Generic resource event. - up : The resource is in service. - down : The resource is not in service. - error : There has been an error for this resource. - overTemp : The resource is overheating. - busy : The resource is busy. - noMedia : A device doesn't have its needed media. - backup : Processing has switched to the backup. - active : This is the active unit. - standby : This is the standby unit." - - SYNTAX INTEGER { - other(1), - up(2), - down(3), - error(4), - overTemp(5), - busy(6), - noMedia(7), - backup(8), - active(9), - standby(10) - } - -SecurityEvent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various - security-related events and statistics on a firewall. - - other : Generic attack event. - none : No attack is occurring, an informational - event. - dos : A denial of service attack has been detected. - recon : A pattern of reconnaissance activity has been - detected. - pakFwd : A packet forwarding attack has been detected. - addrSpoof : A spoofed address has been detected. - svcSpoof : A spoofed service (eg., DNS) has been detected. - thirdParty : This site is being used as a third-party for - an attack on another network. For example, the - 'smurf' attack or email spamming. - complete : An attack has terminated - invlPak : An invalid packet with attack characteristics - has been detected. - illegCmd : An illegal command has been found. - policy : An attempt has reen made to violate a security - policy." - - SYNTAX INTEGER { - other(1), - none(2), - dos(3), - recon(4), - pakFwd(5), - addrSpoof(6), - svcSpoof(7), - thirdParty(8), - complete(9), - invalPak(10), - illegCom(11), - policy(12) - } - -ContentInspectionEvent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Content inspection events, these events report that - something was found in the application payload. The - details entry in the event can report on what was - found (eg., virus, company private info., etc), what it - was found in (eg., html, win32 executable, e-mail), and - what was done with it (eg., the quarantine location). - - other : A content inspection event. Used to indicate - that some content inspection has occurred that - is not covered by the other content inspection - enumerations. - okay : The check of the content was okay, nothing 'bad' - was found. - error : There was an error while checking the content. - found : Something was found that the content inspection - engine has determined merits attention. - clean : The content inspection engine has found something - that violates the security policy and has - neutralized the content in the data flow. - reject : The content inspection engine has found something - that violates the security policy and has discarded - the content. - saved : The content inspection engine has found something - that violates the security policy and has stored - it in a quarentine storage area." - SYNTAX INTEGER { - other(1), - okay(2), - error(3), - found(4), - clean(5), - reject(6), - saved(7) - } - -ConnectionEvent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various events - and statistics that are related to the connections that - occur on a firewall. - - other : A generic connection event. - accept : A connection has been acccepted. - error : An error has occurred for a connection. - drop : The connection has been dropped. - close : A connection has been closed. - timeout : A connection has been timed out. - refused : A connection has been refused. - reset : A connection has been reset. - noResp : A connection has received no response." - SYNTAX INTEGER { - other(1), - accept(2), - error(3), - drop(4), - close(5), - timeout(6), - refused(7), - reset(8), - noResp(9) - } - -ConnectionStat ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various - connections statistics. - - other : A generic connection event. - totalOpen : Total open connections since reboot. - currentOpen : The number of connections currently open. - currentClosing : The number of connections currently closing. - currentHalfOpen : The number of connections currently half-open. - currentInUse : The number of connections currently in use. - high : The highest number of connections in use at - any one time since system startup." - SYNTAX INTEGER { - other(1), - totalOpen(2), - currentOpen(3), - currentClosing(4), - currentHalfOpen(5), - currentInUse(6), - high(7) - } - -AccessEvent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various events - and statistics that are related to the access control on a - firewall. - - other : Miscellaneous access event. - grant : A service has allowed access based on all - of its access checks. - deny : a client was denied use of a service. - denyMult : A client was denied use of a service - multiple times. - error : An error has ocurred during the access - control process." - SYNTAX INTEGER { - other(1), - grant(2), - deny(3), - denyMult(4), - error(5) - } - -AuthenticationEvent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is used to describe various events - and statistics that are related to authorization. - - other : Miscellaneous authentication event. - succ : A client successfuly authenticated. - error : Error while authenticating. - fail : A client failed an authenticating. - succPriv : A client accessed a service with special - privileges. - failPriv : A client failed to access a service with - special privileges. - failMult : Multiple failed authentication attempts by - a client." - SYNTAX INTEGER { - other(1), - succ(2), - error(3), - fail(4), - succPriv(5), - failPriv(6), - failMult(7) - } - -GenericEvent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Generic Events - events for which there is no more specific - enumeration - abnormal : An abnormal event has occurred that is neither - 'okay' nor an 'error'. - okay : A normal event occurred or the system has changed - from an abnormal state to a normal state - error : An error event occurred" - SYNTAX INTEGER { - abnormal(1), - okay(2), - error(3) - } - --- --- The cfwBasicEventsGroup --- --- This group defines the table containing information that is --- for every logged event on the firewall. The table is --- defined along with one variable to obtain the index value of --- the last row in the table. The table is indexed by the --- integer-valued cfwBasicEventIndex which is assigned to events --- in ascending chronological order, such that the oldest event --- stored in the table has the numerically smallest value of --- cfwBasicEventIndex." --- --- The index of the last row also indicates the total number --- modulo 2**32 of events logged in the table since reboot. --- Events are not retained across reboots. --- - -cfwBasicEventsTableLastRow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index value of the most recently created row - in the cfwBasicEventsTable. This number starts at - 1 and increase by one with each new log entry. When - this number wraps, all events are deleted." - ::= { cfwBasicEvents 1 } - -cfwBasicEventsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CfwBasicEventsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of basic data for firewall events. The agent - may choose to delete the instances of cfwBasicEventsEntry - as required because of lack of memory. The oldest Events - will be selected first for deletion." - ::= { cfwBasicEvents 2 } - -cfwBasicEventsEntry OBJECT-TYPE - SYNTAX CfwBasicEventsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the table, containing general information - about an event. This table will always be sparse, i.e., - each row will instanciate only a subet of the columnar - objects." - INDEX { cfwBasicEventIndex } - ::= { cfwBasicEventsTable 1 } - -CfwBasicEventsEntry ::= SEQUENCE { - cfwBasicEventIndex Unsigned32, - cfwBasicEventTime DateAndTime, - cfwBasicSecurityEventType SecurityEvent, - cfwBasicContentInspEventType ContentInspectionEvent, - cfwBasicConnectionEventType ConnectionEvent, - cfwBasicAccessEventType AccessEvent, - cfwBasicAuthenticationEventType AuthenticationEvent, - cfwBasicGenericEventType GenericEvent, - cfwBasicEventDescription SnmpAdminString, - cfwBasicEventDetailsTableRow RowPointer - } - -cfwBasicEventIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - log table. These indices are assigned beginning - with 1 and increase by one with each new event logged." - ::= { cfwBasicEventsEntry 1 } - -cfwBasicEventTime OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time that the event occurred." - ::= { cfwBasicEventsEntry 2 } - -cfwBasicSecurityEventType OBJECT-TYPE - SYNTAX SecurityEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of security-related event that this row contains. - If the event is not security-related this object will not - be instantiated." - ::= { cfwBasicEventsEntry 3 } - -cfwBasicContentInspEventType OBJECT-TYPE - SYNTAX ContentInspectionEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of content inspection-related event that this row - contains. If the event is not content inspection-related - this object will not be instantiated." - ::= { cfwBasicEventsEntry 4 } - -cfwBasicConnectionEventType OBJECT-TYPE - SYNTAX ConnectionEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of connection-related event that this row contains. - If the event is not connection-related this object will not - be instantiated." - ::= { cfwBasicEventsEntry 5 } - -cfwBasicAccessEventType OBJECT-TYPE - SYNTAX AccessEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of access-related event that this row contains. - If the event is not access-related this object will not be - instantiated." - ::= { cfwBasicEventsEntry 6 } - -cfwBasicAuthenticationEventType OBJECT-TYPE - SYNTAX AuthenticationEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of authentication-related event that this row - contains. If the event is not authentication-related this - object will not be instantiated." - ::= { cfwBasicEventsEntry 7 } - -cfwBasicGenericEventType OBJECT-TYPE - SYNTAX GenericEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of generic event that this row contains. If the - event does not fall into one of the other categories this - object will be populated. Otherwise, this object will not - be instantiated." - ::= { cfwBasicEventsEntry 8 } - -cfwBasicEventDescription OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A description of the event. The value of the object may - be a zero-length string." - ::= { cfwBasicEventsEntry 9 } - -cfwBasicEventDetailsTableRow OBJECT-TYPE - SYNTAX RowPointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A pointer to a row in the table containing details - about this event. Generally, the table will be the - cfwNetEventsTable but a Cisco-defined table may also - appear here. If there there is no more detailed - information for this event the value of this object - will have the value {0 0}." - ::= { cfwBasicEventsEntry 10 } - --- --- Network Events --- --- A details table with information related to network events --- or events involving "users" of the firewall resources and services --- (eg., traffic flows through the firewall or a user authenticating --- to use a firewall service). - -cfwNetEventsTableLastRow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index value of the last row in the - cfwNetEventsTable. This number starts at 1 and - increase by one with each new log entry. When this - number wraps, all events are deleted." - ::= { cfwNetEvents 1 } - -cfwNetEventsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CfwNetEventsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of detailed data for network events. The - agent may choose to delete the instances of - cfwBasicEventsEntry as required because of lack of - memory. It is an implementation-specific matter as - to when this deletion may occur. It is recommended - that the oldest log instances are deleted first." - ::= { cfwNetEvents 2} - -cfwNetEventsEntry OBJECT-TYPE - SYNTAX CfwNetEventsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the table, containing detailed information - about an event. Note that this table may be sparse. - If Network Address Translation is not enabled - cfwNetEventInsideSrcIpAddress and - cfwNetEventInsideDstIpAddress will not be instantiated - in the row. If Port Address Translation is not enabled - cfwNetEventInsideSrcIpPort and - cfwNetEventInsideDstIpPort will not be instantiated - in the row. Entries are added to this table at the - same time that events are added to the cfwBasicEventsTable. - These two tables may be configured to be different - sizes so there may not be a one-to-one correspondence - between rows in the two tables." - INDEX { cfwNetEventIndex } - ::= { cfwNetEventsTable 1 } - - -CfwNetEventsEntry ::= SEQUENCE { - cfwNetEventIndex Unsigned32, - cfwNetEventInterface InterfaceIndexOrZero, - cfwNetEventSrcIpAddress IpAddress, - cfwNetEventInsideSrcIpAddress IpAddress, - cfwNetEventDstIpAddress IpAddress, - cfwNetEventInsideDstIpAddress IpAddress, - cfwNetEventSrcIpPort INTEGER, - cfwNetEventInsideSrcIpPort INTEGER, - cfwNetEventDstIpPort INTEGER, - cfwNetEventInsideDstIpPort INTEGER, - cfwNetEventService Services, - cfwNetEventServiceInformation SnmpAdminString, - cfwNetEventIdentity SnmpAdminString, - cfwNetEventDescription SnmpAdminString - } - -cfwNetEventIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - log table. These indices are assigned beginning with - one and increase by one with each new log entry. When - this number wraps, all events are deleted in order to - allow the NMS to differentiate between old and new - events." - ::= { cfwNetEventsEntry 1 } - -cfwNetEventInterface OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The interface most closely associated with this event. - For example, for an event that relates to the receipt of - a packet, this object identifies the interface on which - the packet was received. If there are multiple interfaces - associated with an event, the interface most closely - associated with the cause of the event will be used. - For example, for an event for the setup of a TCP - connection, the interface on the initiator's side - of the connection would be preferred. If there is no - associated interface, then this object has the value zero." - ::= { cfwNetEventsEntry 2 } - -cfwNetEventSrcIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Source IP address in the IP packet that caused the - event. If there is no packet associated with the - event this object has the value of zero. If the event is - the result of multiple packets with different source - addresses, this value may be zero or an address taken - from an arbitrarily chosen packet in the sequence of - packets causing the event." - ::= { cfwNetEventsEntry 3 } - -cfwNetEventInsideSrcIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Source IP address after Network Address Translation - has been applied. If NAT has not been applied to the - source address in this packet this object will not - be instantiated, resulting in a sparse table. If the - event is the result of multiple packets with different - source addresses, this value may be zero or an address - taken from an arbitrarily chosen packet in the sequence - of packets causing the event." - ::= { cfwNetEventsEntry 4 } - -cfwNetEventDstIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination IP address in the IP packet that caused - the event. If there is no packet associated with - the event this object has the value of zero. If the event - is the result of multiple packets with different destination - addresses, this value may be zero or an address taken - from an arbitrarily chosen packet in the sequence of - packets causing the event." - ::= { cfwNetEventsEntry 5 } - -cfwNetEventInsideDstIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination IP address after Network Address Translation - has been applied. If NAT has not been applied to the - destination address in this packet this object will not - be instantiated, resulting in a sparse table. If the event - is the result of multiple packets with different destination - addresses, this value may be zero or an address taken - from an arbitrarily chosen packet in the sequence of - packets causing the event." - ::= { cfwNetEventsEntry 6 } - -cfwNetEventSrcIpPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Source UDP/TCP port in the IP packet that caused - the event. If there is no packet associated with the - event this object has the value of zero. If the event - is the result of multiple packets with different source - ports, this value may be zero or a port taken from an - arbitrarily chosen packet in the sequence of packets - causing the event." - ::= { cfwNetEventsEntry 7 } - - -cfwNetEventInsideSrcIpPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Source UDP/TCP port after Port Address Translation - has been applied. If PAT has not been applied to the - source port in this packet this object will not be - instantiated, resulting in a sparse table. If the - event is the result of multiple packets with different - source ports, this value may be zero or a port taken - from an arbitrarily chosen packet in the sequence of - packets causing the event." - ::= { cfwNetEventsEntry 8 } - -cfwNetEventDstIpPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination UDP/TCP port in the IP packet that caused - the event. If there is no packet associated with the - event this object has the value of zero. If the event is - the result of multiple packets with different destination - ports, this value may be zero or a port taken from an - arbitrarily chosen packet in the sequence of packets - causing the event." - ::= { cfwNetEventsEntry 9 } - -cfwNetEventInsideDstIpPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination UDP/TCP port after Port Address Translation - has been applied. If PAT has not been applied to the - Destination port in this packet this object will not be - instantiated, resulting in a sparse table. If the event - is the result of multiple packets with different - destination ports, this value may be zero or a port - taken from an arbitrarily chosen packet in the sequence - of packets causing the event." - ::= { cfwNetEventsEntry 10 } - -cfwNetEventService OBJECT-TYPE - SYNTAX Services - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The identification of the type of service involved - with this event." - ::= { cfwNetEventsEntry 11 } - -cfwNetEventServiceInformation OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Specific service information. This can be used to - describe the particular service indentified by - cfwNetEventService and can reflect whether the service - is a local service or a gateway service. For example, - if the value for cfwNetEventService is loginTelnet - then the string provided might be 'local telnet'." - ::= { cfwNetEventsEntry 12 } - -cfwNetEventIdentity OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object will contain a description of the entity that - caused the event. The entity could be a userid, username, - processid or other identifier for the entity using the service. - If there is no such information then this object will contain - a zero-length string." - ::= { cfwNetEventsEntry 13 } - -cfwNetEventDescription OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A detailed description of the event." - ::= { cfwNetEventsEntry 14 } - --- The cfwHardwareStatus --- --- The resource information related queries, this table is for --- providing the status of the resources on the firewall. Resources --- can include hardware or software modules on the firewall. - -cfwHardwareStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CfwHardwareStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of firewall cfwHardwareStatusEntry entries." - ::= { cfwStatus 1 } - -cfwHardwareStatusEntry OBJECT-TYPE - SYNTAX CfwHardwareStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the table, containing status information - about a resource." - INDEX { cfwHardwareType } - ::= { cfwHardwareStatusTable 1 } - -CfwHardwareStatusEntry ::= SEQUENCE { - cfwHardwareType Hardware, - cfwHardwareInformation SnmpAdminString, - cfwHardwareStatusValue HardwareStatus, - cfwHardwareStatusDetail SnmpAdminString - } - -cfwHardwareType OBJECT-TYPE - SYNTAX Hardware - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The hardware type for which this row provides - status information." - ::= { cfwHardwareStatusEntry 1 } - -cfwHardwareInformation OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A detailed textual description of the resource - identified by cfwHardwareType." - ::= { cfwHardwareStatusEntry 2 } - -cfwHardwareStatusValue OBJECT-TYPE - SYNTAX HardwareStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the current status of the resource." - ::= { cfwHardwareStatusEntry 3 } - -cfwHardwareStatusDetail OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A detailed textual description of the current status of - the resource which may provide a more specific description - than cfwHardwareStatusValue." - ::= { cfwHardwareStatusEntry 4 } - --- The cfwBufferStatistics --- --- This table is for providing the statistics for the buffers --- on the firewall. - -cfwBufferStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CfwBufferStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table conatining status information about a firewall's - buffers." - ::= { cfwStatistics 1 } - -cfwBufferStatsEntry OBJECT-TYPE - SYNTAX CfwBufferStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the table, containing status information - about a particular statistic for the set of buffers - of a particular size." - INDEX { cfwBufferStatSize, cfwBufferStatType } - ::= { cfwBufferStatsTable 1 } - -CfwBufferStatsEntry ::= SEQUENCE { - cfwBufferStatSize Unsigned32, - cfwBufferStatType ResourceStatistics, - cfwBufferStatInformation SnmpAdminString, - cfwBufferStatValue Gauge32 - } - -cfwBufferStatSize OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object contains the size of the set of buffers - for which this row contains the statistics given by - cfwBufferStatType." - ::= { cfwBufferStatsEntry 1 } - -cfwBufferStatType OBJECT-TYPE - SYNTAX ResourceStatistics - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object identifies the type of statistic given by - this row for the particular set of buffers identified by - cfwBufferStatSize." - ::= { cfwBufferStatsEntry 2 } - -cfwBufferStatInformation OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A detailed textual description of the statistic - identified by cfwBufferStatType." - ::= { cfwBufferStatsEntry 3 } - -cfwBufferStatValue OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the buffer statistic." - ::= { cfwBufferStatsEntry 4 } - --- --- The Firewall Connection Statistics Table --- --- This table can be used to provide the statistics for firewall --- connection events or services. These "connections" can be --- connections in a loose sense of the word - a UDP transaction --- would qualify as a connection if the firewall maintains --- state information to monitor the packets traversing the firewall --- for this "connection". A uni-directional UDP "connection" could be --- described as being "half-open" by a value of 'halfOpen' in --- cfwConnectionStatType. --- --- This table contains multiple rows for each service to which the --- statistic applies. --- - -cfwConnectionStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF CfwConnectionStatEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of firewall statistic instances." - ::= { cfwStatistics 2 } - -cfwConnectionStatEntry OBJECT-TYPE - SYNTAX CfwConnectionStatEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the table, containing information about a - firewall statistic." - INDEX { cfwConnectionStatService, cfwConnectionStatType } - ::= { cfwConnectionStatTable 1 } - -CfwConnectionStatEntry ::= SEQUENCE { - cfwConnectionStatService Services, - cfwConnectionStatType ConnectionStat, - cfwConnectionStatDescription SnmpAdminString, - cfwConnectionStatCount Counter32, - cfwConnectionStatValue Gauge32 - } - -cfwConnectionStatService OBJECT-TYPE - SYNTAX Services - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The identification of the type of connection providing - statistics." - ::= { cfwConnectionStatEntry 1 } - -cfwConnectionStatType OBJECT-TYPE - SYNTAX ConnectionStat - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The state of the connections that this row contains - statistics for." - ::= { cfwConnectionStatEntry 2 } - -cfwConnectionStatDescription OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A detailed textual description of this statistic." - ::= { cfwConnectionStatEntry 3 } - -cfwConnectionStatCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is an integer that contains the value of the - resource statistic. If a type of 'gauge' is more - appropriate this object will be omitted resulting - in a sparse table." - ::= { cfwConnectionStatEntry 4 } - -cfwConnectionStatValue OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is an integer that contains the value of the - resource statistic. If a type of 'counter' is more - appropriate this object will be omitted resulting - in a sparse table." - ::= { cfwConnectionStatEntry 5 } - - --- Notifications - -ciscoFirewallMIBNotificationPrefix OBJECT IDENTIFIER ::= - { ciscoFirewallMIB 2 } -ciscoFirewallMIBNotifications OBJECT IDENTIFIER ::= - { ciscoFirewallMIBNotificationPrefix 0 } - -cfwSecurityNotification NOTIFICATION-TYPE - OBJECTS { - cfwBasicEventTime, - cfwBasicSecurityEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS current - DESCRIPTION - "This notification is used for events involving security - events. The included objects provide more detailed - information about the event." - ::= { ciscoFirewallMIBNotifications 2 } - -cfwContentInspectNotification NOTIFICATION-TYPE - OBJECTS { - cfwBasicEventTime, - cfwBasicContentInspEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS current - DESCRIPTION - "This notification is used to notify the NMS of content - inspection events. The included objects provide more - detailed information about the event." - ::= { ciscoFirewallMIBNotifications 3 } - -cfwConnNotification NOTIFICATION-TYPE - OBJECTS { - cfwBasicEventTime, - cfwBasicConnectionEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS current - DESCRIPTION - "This notification is used to notify the NMS of - connection-oriented events. The included objects provide - more detailed information about the event." - ::= { ciscoFirewallMIBNotifications 4 } - -cfwAccessNotification NOTIFICATION-TYPE - OBJECTS { - cfwBasicEventTime, - cfwBasicAccessEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS current - DESCRIPTION - "This notification is used to notify the NMS of access - events. The included objects provide more detailed - information about the event." - ::= { ciscoFirewallMIBNotifications 5 } - -cfwAuthNotification NOTIFICATION-TYPE - OBJECTS { - cfwBasicEventTime, - cfwBasicAuthenticationEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS current - DESCRIPTION - "This notification is used to notify the NMS of - authentication events. The included objects provide - more detailed information about the event." - ::= { ciscoFirewallMIBNotifications 6 } - -cfwGenericNotification NOTIFICATION-TYPE - OBJECTS { - cfwBasicEventTime, - cfwBasicGenericEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS current - DESCRIPTION - "This notification is used to notify the NMS of events - that do not fall into the other categories. The included - objects provide more detailed information about the event." - ::= { ciscoFirewallMIBNotifications 7 } - - --- Conformance - -ciscoFirewallMIBConformance OBJECT IDENTIFIER ::= { ciscoFirewallMIB 3 } -ciscoFirewallMIBCompliances OBJECT IDENTIFIER ::= - { ciscoFirewallMIBConformance 1 } -ciscoFirewallMIBGroups OBJECT IDENTIFIER ::= - { ciscoFirewallMIBConformance 2 } - --- Conformance - -ciscoFirewallMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco FirewallMIB." - MODULE -- this module - MANDATORY-GROUPS { ciscoFirewallMIBStatisticsGroup } - ::= { ciscoFirewallMIBCompliances 1 } - -ciscoFirewallMIBComplianceRev1 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for entities which implement - the Cisco FirewallMIB." - MODULE -- this module - MANDATORY-GROUPS { ciscoFirewallMIBStatisticsGroup } - - GROUP ciscoFirewallMIBEventsGroup - DESCRIPTION - "Implementation of these objects is not required." - GROUP ciscoFirewallMIBNotificationGroupRev1 - DESCRIPTION - "Implementation of these notifications is not required." - - ::= { ciscoFirewallMIBCompliances 2 } - --- Units of Conformance - -ciscoFirewallMIBEventsGroup OBJECT-GROUP - OBJECTS { - cfwBasicEventsTableLastRow, - cfwBasicEventTime, - cfwBasicSecurityEventType, - cfwBasicContentInspEventType, - cfwBasicConnectionEventType, - cfwBasicAccessEventType, - cfwBasicAuthenticationEventType, - cfwBasicGenericEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow, - cfwNetEventsTableLastRow, - cfwNetEventInterface, - cfwNetEventSrcIpAddress, - cfwNetEventInsideSrcIpAddress, - cfwNetEventDstIpAddress, - cfwNetEventInsideDstIpAddress, - cfwNetEventSrcIpPort, - cfwNetEventInsideSrcIpPort, - cfwNetEventDstIpPort, - cfwNetEventInsideDstIpPort, - cfwNetEventService, - cfwNetEventServiceInformation, - cfwNetEventIdentity, - cfwNetEventDescription - } - STATUS current - DESCRIPTION - "Firewall events" - ::= { ciscoFirewallMIBGroups 1 } - -ciscoFirewallMIBStatisticsGroup OBJECT-GROUP - OBJECTS { - cfwHardwareInformation, - cfwHardwareStatusValue, - cfwHardwareStatusDetail, - cfwBufferStatInformation, - cfwBufferStatValue, - cfwConnectionStatDescription, - cfwConnectionStatCount, - cfwConnectionStatValue - } - STATUS current - DESCRIPTION - "Firewall statistics" - ::= { ciscoFirewallMIBGroups 2 } - -ciscoFirewallMIBNotificationGroup OBJECT-GROUP - OBJECTS { - cfwBasicEventTime, - cfwBasicSecurityEventType, - cfwBasicContentInspEventType, - cfwBasicConnectionEventType, - cfwBasicAccessEventType, - cfwBasicAuthenticationEventType, - cfwBasicGenericEventType, - cfwBasicEventDescription, - cfwBasicEventDetailsTableRow - } - STATUS obsolete - DESCRIPTION - "Firewall Notifications" - ::= { ciscoFirewallMIBGroups 3 } - -ciscoFirewallMIBNotificationGroupRev1 NOTIFICATION-GROUP - NOTIFICATIONS { - cfwSecurityNotification, - cfwContentInspectNotification, - cfwConnNotification, - cfwAccessNotification, - cfwAuthNotification, - cfwGenericNotification - } - STATUS current - DESCRIPTION - "Firewall Notifications" - ::= { ciscoFirewallMIBGroups 4 } - -END - diff --git a/mibs/orig/CISCO-LWAPP-WLAN-MIB b/mibs/orig/CISCO-LWAPP-WLAN-MIB deleted file mode 100644 index ae362dd..0000000 --- a/mibs/orig/CISCO-LWAPP-WLAN-MIB +++ /dev/null @@ -1,4253 +0,0 @@ --- ******************************************************************* --- CISCO-LWAPP-WLAN-MIB.my --- This MIB helps to manage the WLANs on the controller --- January 2006, Devesh Pujari, Prasanna Viswakumar --- --- Copyright (c) 2006, 2007, 2009-2016 by Cisco Systems Inc. --- All rights reserved. --- ******************************************************************* - -CISCO-LWAPP-WLAN-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-TYPE, - Unsigned32, - Integer32, - Gauge32 - FROM SNMPv2-SMI - MODULE-COMPLIANCE, - OBJECT-GROUP - FROM SNMPv2-CONF - TimeStamp, - TruthValue, - RowStatus, - DisplayString, - StorageType, - MacAddress - FROM SNMPv2-TC - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB - InetAddressType, - InetAddress - FROM INET-ADDRESS-MIB - ciscoMgmt - FROM CISCO-SMI; - - -ciscoLwappWlanMIB MODULE-IDENTITY - LAST-UPDATED "201504230000Z" - ORGANIZATION "Cisco Systems Inc." - CONTACT-INFO - "Cisco Systems, - Customer Service - Postal: 170 West Tasman Drive - San Jose, CA 95134 - USA - Tel: +1 800 553-NETS - - Email: cs-wnbu-snmp@cisco.com" - DESCRIPTION - "This MIB is intended to be implemented on all those - devices operating as Central Controllers (CC) that - terminate the Light Weight Access Point Protocol - tunnel from Cisco Light-weight LWAPP Access Points. - - This MIB helps to manage the WLANs on the controller. - - The relationship between CC and the LWAPP APs - can be depicted as follows: - - +......+ +......+ +......+ +......+ - + + + + + + + + - + CC + + CC + + CC + + CC + - + + + + + + + + - +......+ +......+ +......+ +......+ - .. . . . - .. . . . - . . . . . - . . . . . - . . . . . - . . . . . - +......+ +......+ +......+ +......+ +......+ - + + + + + + + + + + - + AP + + AP + + AP + + AP + + AP + - + + + + + + + + + + - +......+ +......+ +......+ +......+ +......+ - . . . . - . . . . . - . . . . . - . . . . . - . . . . . - +......+ +......+ +......+ +......+ +......+ - + + + + + + + + + + - + MN + + MN + + MN + + MN + + MN + - + + + + + + + + + + - +......+ +......+ +......+ +......+ +......+ - - The LWAPP tunnel exists between the controller and - the APs. The MNs communicate with the APs through - the protocol defined by the 802.11 standard. - - LWAPP APs, upon bootup, discover and join one of the - controllers and the controller pushes the configuration, - that includes the WLAN parameters, to the LWAPP APs. - The APs then encapsulate all the 802.11 frames from - wireless clients inside LWAPP frames and forward - the LWAPP frames to the controller. - - GLOSSARY - - Access Point ( AP ) - - An entity that contains an 802.11 medium access - control ( MAC ) and physical layer ( PHY ) interface - and provides access to the distribution services via - the wireless medium for associated clients. - - LWAPP APs encapsulate all the 802.11 frames in - LWAPP frames and sends it to the controller to which - it is logically connected to. - - Central Controller ( CC ) - - The central entity that terminates the LWAPP protocol - tunnel from the LWAPP APs. Throughout this MIB, - this entity also referred to as 'controller'. - - Light Weight Access Point Protocol ( LWAPP ) - - This is a generic protocol that defines the - communication between the Access Points and the - controllers. - - Mobile Node ( MN ) - - A roaming 802.11 wireless device in a wireless - network associated with an access point. - - Access Control List ( ACL ) - - A list of rules used to restrict the traffic reaching - an interface or the CPU or WLAN. Each ACL is an ordered - set of rules and actions. If a rule matches then the - action for that rule is applied to the packet. - - 802.1x - - The IEEE ratified standard for enforcing port based - access control. This was originally intended for - use on wired LANs and later extended for use in - 802.11 WLAN environments. This defines an - architecture with three main parts - a supplicant - (Ex. an 802.11 wireless client), an authenticator - (the AP) and an authentication server(a Radius - server). The authenticator passes messages back - and forth between the supplicant and the - authentication server to enable the supplicant - get authenticated to the network. - - Temporal Key Integrity Protocol ( TKIP ) - - A security protocol defined to enhance the limitations - of WEP. Message Integrity Check and per-packet keying - on all WEP-encrypted frames are two significant - enhancements provided by TKIP to WEP. - - Cisco Key Integrity Protocol ( CKIP ) - - A proprietary implementation similar to TKIP. CKIP - implements key permutation for protecting the CKIP - key against attacks. Other features of CKIP include - expansion of encryption key to 16 bytes of length for - key protection and MIC to ensure data integrity. - - Wired Equivalent Privacy ( WEP ) - - A security method defined by 802.11. WEP uses a - symmetric key stream cipher called RC4 to encrypt the - data packets. - - Wi-Fi Protected Access ( WPA ) - - Wi-Fi Protected Access (WPA and WPA2) are security - systems created in response to several serious - weaknesses found in Wired Equivalent Privacy (WEP). - WPA implements the majority of the IEEE 802.11i - standard, and was intended as an intermediate - measure to take the place of WEP while 802.11i was - prepared. WPA is designed to work with all wireless - network interface cards, but not necessarily with - first generation wireless access points. - - WLAN Layer 2 Security - - WLAN layer 2 (MAC) security defines the encryption and - authentication approaches such as 802.1x, WPA, - WPA2, CKIP and WEP. - - Delivery Traffic Indication Map ( DTIM ) - - DTIM is measured in beacon intervals and is the time - period during which multicast/broadcast packets are - sent to clients. This helps client to go in Power Saving - mode and helps to save battery power. - - Network Admission Control (NAC) - - Cisco NAC uses the network infrastructure to enforce security - policy compliance on all devices that seek to access network - computing resources. With the Cisco NAC appliance, network - administrators can authenticate, authorize, evaluate, and - remediate wired, wireless, and remote users and their machines - prior to network access. The Cisco NAC appliance identifies - whether networked devices such as laptops, IP phones, or game - consoles are compliant with network security policies, and - repairs any vulnerabilities before it permits access to the - network. - - Out of Band (OOB) - - Out-of-band deployments require user traffic to traverse through - the NAC appliance only within authentication, posture - assessment, and remediation. When a user is authenticated and - passes all policy checks, the traffic is switched normally - through the network and bypasses the NAC server. - - Band Select - - The 2.4 GHz band is congested and clients have to contend with - numerous performance challenges. These consist of interference - from Bluetooth, microwave ovens, cordless phones, etc.; - protection mechanisms from 802.11b legacy clients; and - co-channel interference from other access points due to - 802.11bg?s limit of three non-overlapping channels. Allowing - client Wi-Fi radios capable of dual band (2.4 and 5 GHz) - operation move to the less congested 5 GHz radios would improve - the overall performance of the network. - The Band Select algorithm is based on probe response suppression - on clients 2.4G radio. The feature is OFF by default and has to - be manually switched ON globally for a WLC. It can be optionally - over-ridden per-SSID to disallow it. - - Network Access Identifier ( NAI ) - - In order to provide roaming services, it is necessary - to have a standardized method for identifying users. - NAI is actually the user identity submitted by the client - during network authentication. - - KTS (Key Telephone System) - - Key Telephone System is an alternative to a - private branch exchange (PBX)phone system. - A KTS is equipped with several buttons that allow - a caller to directly select outgoing lines or - incoming calls, and use intercom and - conference facilities. - - HALO (Hyperlocation) - - Hyperlocation is a technique of calculating location using - Angle of Arrival(AoA) tracks 802.11 OFDM clients - (meaning 802.11a/g/n/ac clients) that are associated(connected) - on the network and is able to do so with much higher accuracy - than conventional Real Time Location Systems(RTLS) that rely - on only RSSI (RF Signal Strength). - - PakRSSI (Packet Received Signal Strength Indicator) - - PakRSSI is a measurement of the power present in a received radio signal. - - POE (Power Over Ethernet) - - Power over Ethernet or PoE describes any of several standardized - or ad-hoc systems which pass electrical power along with data on - Ethernet cabling. This allows a single cable to provide both data - connection and electrical power to devices such as wireless - access points or IP cameras. - REFERENCE - - [1] Wireless LAN Medium Access Control ( MAC ) and - Physical Layer ( PHY ) Specifications. - - [2] Draft-obara-capwap-lwapp-00.txt, IETF Light - Weight Access Point Protocol - - [3] IEEE 802.11 - The original 1 Mbit/s and 2 Mbit/s, - 2.4 GHz RF and IR standard." - REVISION "201604070000Z" - DESCRIPTION - "Added new tables ciscoLwappAPGroupsHyperlocationConfig to - support Hyperlocation feature and ciscoLwappAPGroupsPortConfig - to support AP Group LAN port configurations. - Added new groups ciscoLwappWlanConfigGroupSup8, - ciscoLwappWlanConfigGroupSup9. Added new compliance - ciscoLwappWlanMIBComplianceRev8 which - deprecates ciscoLwappWlanMIBComplianceRev7." - REVISION "201504230000Z" - DESCRIPTION - "Added Default value to the cLWlanMulticastInterface object." - REVISION "201504170000Z" - DESCRIPTION - "Added cLWlan11acMuMimoEnabled object to cLWlanConfigEntry. - ciscoLwappWlanMIBComplianceRev6 is superceded by - ciscoLwappWlanMIBComplianceRev7 - Added new group ciscoLwappWlanConfigGroupSup6." - REVISION "201411050000Z" - DESCRIPTION - "Added the cLWlanSelfAnchorEnabled to support - the mobility self anchor. - cLAPGroupsVlanMappingInterfaceName is superceded by - cLAPGroupsVlanMappingInterfaceNameRev1. - ciscoLwappAPGroupsVlanConfigGroup is superceded by - ciscoLwappAPGroupsVlanConfigGroupSup2. - ciscoLwappWlanMIBComplianceRev5 is superceded by - ciscoLwappWlanMIBComplianceRev6 - Added cLWlanUniversalAdmin object to cLWlanConfigEntry. - Added new group ciscoLwappWlanConfigGroupSup5." - REVISION "201303300000Z" - DESCRIPTION - "Added cLWlanFlexibleNetflowTable to support AVC feature. - Added new object group - CiscoLwappWlanConfigFlexibleNetflowGroup. - Added new compliance ciscoLwappWlanMIBComplianceRev5 which - deprecates ciscoLwappWlanMIBComplianceRev4." - REVISION "201206210000Z" - DESCRIPTION - "Added the following objects - WLAN QoS Config table, - AP group Venue Table, - ciscoLwappWlanQosConfigGroup - ciscoLwappWlanConfigGroupSup4 - ciscoLwappWlan11uConfigGroupsup2 - ciscoLwappWlanHotSpot2ConfigGroupSup1 - ciscoLwappAPGroupsVlanConfigGroupSup1 - cLAPGroupsVenueConfigGroup - cLAPGroupsMultipleVenueGroup - ciscoLwappWlanConfigClientGroupSup2 - WLAN IOS objects. - - - Added the following objects to cLWlan11uTable. - cLWlan11uHessid, - cLWlan11uNetworkAuthType, - cLWlan11uOui, - cLWlan11uOuiIsBeacon, - cWlan11uOuiRowStatus, - cLWlan11uOuiStorageType, - cLWlan11uRealmName, - cLWlan11uRealmRowStatus, - cLWlan11uRealmEapMethod, - cLWlan11uRealmEapRowStatus, - cLWlan11uRealmEapAuthMethod, - cLWlan11uRealmEapAuthParam, - cLWlan11uRealmEapAuthRowStatus, - cLWlan11uDomainName, - cLWlan11uDomainRowStatus, - cLWlan11u3gppCountryCode, - cLWlan11u3gppNetworkCode, - cLWlan11u3gppRowStatus, - cLWlan11uIpAddressAvailIpv4, - cLWlan11uIpAddressAvailIpv6 - - - Added the following OBJECT-GROUPs: - ciscoLwappWlan11uConfigGroupsup1 - ciscoLwappWlanServiceAdvertisementConfigGroup, - ciscoLwappWlanHotSpot2ConfigGroup - - - Added new compliance ciscoLwappWlanMIBComplianceRev4 which - deprecates ciscoLwappWlanMIBComplianceRev3." - REVISION "201103100000Z" - DESCRIPTION - "Added the following objects to cLWlanConfigTable. - cLWlanReAnchorRoamedVoiceClientsEnable, - cLWlanMulticastInterfaceEnable, - cLWlanMulticastInterface, - cLWlanMulticastDirectEnable, - cLWlanNACPostureSupport, - cLWlanMaxClientsAccepted, - cLWlanScanDeferPriority, - cLWlanScanDeferTime, - cLWlanLanSubType, - cLWlanWebAuthOnMacFilterFailureEnabled, - cLWlanStaticIpTunnelingEnabled. - - - Added new group ciscoLwappWlanConfigGroupSup3. - - - Added new compliance ciscoLwappWlanMIBComplianceRev3 which - deprecates ciscoLwappWlanMIBComplianceRev2." - REVISION "201003030000Z" - DESCRIPTION - "Added the following OBJECT-GROUPs: - ciscoLwappWlan11uConfigGroup - ciscoLwappAPGroupsVlanConfigGroup - ciscoLwappWlanConfigGroupSup2 - ciscoLwappWlanConfigClientGroupSup1" - REVISION "200704020000Z" - DESCRIPTION - "Added following object in cLWlanConfigClientTable - cLWlanP2PBlocking" - REVISION "200702030000Z" - DESCRIPTION - "Added following objects in cLWlanConfigTable: - cLWlanProfileName - cLWlanSsid - cLWlanDiagChan - cLWlanStorageType - Added following table: - cLWlanConfigClientTable - Added the following OBJECT-GROUPs: - ciscoLwappWlanConfigGroupSup1 - ciscoLwappWlanConfigClientGroup - Added ciscoLwappWlanMIBComplianceRev1 MODULE-COMPLIANCE." - REVISION "200603210000Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { ciscoMgmt 512 } - - -ciscoLwappWlanMIBNotifs OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIB 0 } - -ciscoLwappWlanMIBObjects OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIB 1 } - -ciscoLwappWlanMIBConform OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIB 2 } - -ciscoLwappWlanConfig OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 1 } - -ciscoLwappAPGroupsVlanConfig OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 2 } - -ciscoLwappWlan11uConfig OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 3 } - -ciscoLwappWlanServiceAdvertisementConfig OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 4 } - -ciscoLwappWlanHotSpot2Config OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 5 } - -ciscoLwappAPGroupsHyperlocationConfig OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 8 } - -ciscoLwappAPGroupsPortConfig OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBObjects 9 } - --- ******************************************************************** --- WLAN configuration --- ******************************************************************** - -cLWlanConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the WLAN configuration sent by - the controller to the LWAPP APs for their operation. - - LWAPP APs exchange configuration messages with the - controller and get the required configuration for - their 802.11 related operations. As part of these - messages, the WLAN configuration is pushed by the - controller to the LWAPP APs. - - This table doesn't have any dependencies on other - existing tables. By defining cLWlanIndex, the - unique identifier for a WLAN, this table provides - a common index structure for use in several other - new tables that populate information on security - related attributes like authentication, encryption, - 802.11 parameters, Quality-of-Service attributes - etc., that would relate to a particular WLAN. - - Rows are added or deleted by explicit - management actions initiated by the user from a - network management station through the - cLWlanRowStatus object." - ::= { ciscoLwappWlanConfig 1 } - -cLWlanConfigEntry OBJECT-TYPE - SYNTAX CLWlanConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the WLAN - configuration sent by the controller to LWAPP APs - for use during their operations. entries can be - added/deleted by explicit management actions by - NMS or by user console" - INDEX { cLWlanIndex } - ::= { cLWlanConfigTable 1 } - -CLWlanConfigEntry ::= SEQUENCE { - cLWlanIndex Unsigned32, - cLWlanRowStatus RowStatus, - cLWlanProfileName SnmpAdminString, - cLWlanSsid OCTET STRING, - cLWlanDiagChan TruthValue, - cLWlanStorageType StorageType, - cLWlanIsWired TruthValue, - cLWlanIngressInterface OCTET STRING, - cLWlanNACSupport TruthValue, - cLWlanWepKeyChange TimeStamp, - cLWlanChdEnable TruthValue, - cLWlan802dot11anDTIM Unsigned32, - cLWlan802dot11bgnDTIM Unsigned32, - cLWlanLoadBalancingEnable TruthValue, - cLWlanBandSelectEnable TruthValue, - cLWlanPassiveClientEnable TruthValue, - cLWlanReAnchorRoamedVoiceClientsEnable TruthValue, - cLWlanMulticastInterfaceEnable TruthValue, - cLWlanMulticastInterface SnmpAdminString, - cLWlanMulticastDirectEnable TruthValue, - cLWlanNACPostureSupport TruthValue, - cLWlanMaxClientsAccepted Unsigned32, - cLWlanScanDeferPriority BITS, - cLWlanScanDeferTime Unsigned32, - cLWlanLanSubType INTEGER, - cLWlanWebAuthOnMacFilterFailureEnabled TruthValue, - cLWlanStaticIpTunnelingEnabled TruthValue, - cLWlanKtsCacSupportEnabled TruthValue, - cLWlanWifiDirectPolicyStatus INTEGER, - cLWlanWebAuthIPv6AclName DisplayString, - cLWlanHotSpot2Enabled TruthValue, - cLWlanMaxClientsAllowedPerRadio Unsigned32, - cLWlanDhcpDeviceProfiling TruthValue, - cLWlanMacAuthOverDot1xEnabled TruthValue, - cLWlanUserTimeout Unsigned32, - cLWlanUserIdleThreshold Unsigned32, - cLWlanHttpDeviceProfiling TruthValue, - cLWlanHotSpotClearConfig INTEGER, - cLWlanRadiusAuthFourthServer DisplayString, - cLWlanRadiusAuthFifthServer DisplayString, - cLWlanRadiusAuthSixthServer DisplayString, - cLWlanRadiusAcctFourthServer DisplayString, - cLWlanRadiusAcctFifthServer DisplayString, - cLWlanRadiusAcctSixthServer DisplayString, - cLWlanSelfAnchorEnabled TruthValue, - cLWlanUniversalAdmin TruthValue, - cLWlan11acMuMimoEnabled TruthValue -} - -cLWlanIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..517) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of - a WLAN on the controller. The value 513-517 indicates - wired clients." - ::= { cLWlanConfigEntry 1 } - -cLWlanRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the status column for this row and used - to create, modify and delete specific instances of rows - in this table. - This table supports modification of writable objects when the - RowStatus is 'active'. - The following objects are mandatory for successful - creation of an entry: - cLWlanProfileName - cLWlanSsid." - ::= { cLWlanConfigEntry 2 } - -cLWlanProfileName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..64)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the profile name assigned - to this WLAN. The name assigned to a WLAN has to be - unique across all the WLANs on the controller. - An administrator can assign a meaningful - name that could later be used to refer a particular - WLAN on the controller. This object cannot be - modified when cLWlanRowStatus is 'active'." - ::= { cLWlanConfigEntry 3 } - -cLWlanSsid OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..32)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the SSID assigned to - this WLAN. The access points will broadcast this SSID - on this WLAN. Different WLAN could use the same SSID as - long as the layer 2 security is different. This object - cannot be modified when cLWlanRowStatus is 'active'." - ::= { cLWlanConfigEntry 4 } - -cLWlanDiagChan OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure this WLAN as a diagnostic - WLAN. A value of 'true' indicates that the WLAN can be used for - diagnostic purposes. A value of 'false' indicates that the WLAN - can not be used for diagnostic purposes." - DEFVAL { false } - ::= { cLWlanConfigEntry 5 } - -cLWlanStorageType OBJECT-TYPE - SYNTAX StorageType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represnts the storage type for this - conceptual row." - DEFVAL { nonVolatile } - ::= { cLWlanConfigEntry 6 } - -cLWlanIsWired OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure this WLAN as a - wired or wireless WLAN. A value of 'true' indicates - that this is a wired WLAN. A value of 'false' - indicates that this is a wireless WLAN." - ::= { cLWlanConfigEntry 7 } - -cLWlanIngressInterface OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..32)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the ingress interface attached to the - wireless lan." - ::= { cLWlanConfigEntry 8 } - -cLWlanNACSupport OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure the NAC- Out Of - Band(OOB) support for the WLAN. - A value of 'true' indicates that - the WLAN supports the NAC- Out Of Band(OOB) feature. - A value of 'false' indicates that - the WLAN does not support the NAC- Out Of Band(OOB) - feature." - DEFVAL { false } - ::= { cLWlanConfigEntry 9 } - -cLWlanWepKeyChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the time when the - static WEP key was changed by the user." - ::= { cLWlanConfigEntry 10 } - -cLWlanChdEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object indicates whether Coverage Hole Detection - (CHD) is enabled on the controller. A value of 'true' - indicates CHD is on and a value of 'false' indicates - CHD is turned off for this WLAN." - DEFVAL { true } - ::= { cLWlanConfigEntry 11 } - -cLWlan802dot11anDTIM OBJECT-TYPE - SYNTAX Unsigned32 (1..255) - UNITS "Beacon Intervals" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents DTIM configuration per WLAN for each - 802.11 network. - The DTIM value is measured in Beacon Intervals." - DEFVAL { 1 } - ::= { cLWlanConfigEntry 12 } - -cLWlan802dot11bgnDTIM OBJECT-TYPE - SYNTAX Unsigned32 (1..255) - UNITS "Beacon Intervals" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents DTIM configuration per WLAN for each - 802.11 network. - The DTIM value is measured in Beacon Intervals." - DEFVAL { 1 } - ::= { cLWlanConfigEntry 13 } - -cLWlanLoadBalancingEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object indicates whether Load Balancing is - enabled on the controller for this WLAN . A value of 'true' - indicates Load Balance is on and a value of 'false' indicates - Load Balance is turned off for this WLAN." - DEFVAL { true } - ::= { cLWlanConfigEntry 14 } - -cLWlanBandSelectEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object indicates whether Band Select is enabled - on the controller for this WLAN. A value of 'true' - indicates Band Select is on and a value of 'false' indicates - Band Select is turned off for this WLAN." - DEFVAL { true } - ::= { cLWlanConfigEntry 15 } - -cLWlanPassiveClientEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies whether passive client is enabled - on the controller for this WLAN. A value of 'true' - indicates passive client is on and a value of 'false' indicates - passive client is turned off for this WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 16 } - -cLWlanReAnchorRoamedVoiceClientsEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies whether the Roamed Voice Client - Re-Anchoring feature is enabled on the controller for this - WLAN. - A value of 'true' indicates the roamed voice clients will get - re-anchored. - A value of 'false' indicates the roamed voice clients - re-anchoring is turned off for this WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 17 } - -cLWlanMulticastInterfaceEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies whether multicast interface - is enabled on the controller. A value of 'true' - indicates that multicast interface feature is enabled - and the interface represented by 'cLWlanMulticastInterface' - would be used for the multicast traffic on this WLAN. - A value of 'false' indicates that multicast interface - feature is turned off for this WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 18 } - -cLWlanMulticastInterface OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the interface, which would be used - for the multicast traffic for all the clients that are - associated to this WLAN." - DEFVAL { "default" } - ::= { cLWlanConfigEntry 19 } - -cLWlanMulticastDirectEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies whether multicast direct is enabled - on the controller for this WLAN. - A value of 'true' indicates multicast direct is ON. - A value of 'false' indicates multicast direct is turned - off for this WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 20 } - -cLWlanNACPostureSupport OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure the NAC-Posture - support for the WLAN. - A value of 'true' indicates that the WLAN supports the - NAC-Posture feature. - A value of 'false' indicates that the WLAN does not support the - NAC-Posture feature." - DEFVAL { false } - ::= { cLWlanConfigEntry 21 } - -cLWlanMaxClientsAccepted OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the maximum number of client connection - allowed for this WLAN. - A value of 0 indicates that there is no limit on maximum - allowed clients for this WLAN." - DEFVAL { 0 } - ::= { cLWlanConfigEntry 22 } - -cLWlanScanDeferPriority OBJECT-TYPE - SYNTAX BITS { - bit0(0), - bit1(1), - bit2(2), - bit3(3), - bit4(4), - bit5(5), - bit6(6), - bit7(7) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the priority of packets - that defer the off-channel scan. This is used in - off-channel scanning to improve performance - for medical devices using Radio Resource Management. - Each bit represents a packet type for which off-channel - scanning needs to be deferred. - bit0 - Best effort. - bit1 - Background - bit2 - Spare - bit3 - Excellent effort - bit4 - Controlled load - bit5 - Video, less than 100-ms latency and jitter - bit6 - Voice, less than 10-ms latency and jitter - bit7 - Network control" - DEFVAL { { bit5 , bit6 } } - ::= { cLWlanConfigEntry 23 } - -cLWlanScanDeferTime OBJECT-TYPE - SYNTAX Unsigned32 (0..60000) - UNITS "milliseconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the minimum number of milliseconds - that must elapse without the appearance of a specified packet - before the access point radios begin an off-channel scan." - DEFVAL { 100 } - ::= { cLWlanConfigEntry 24 } - -cLWlanLanSubType OBJECT-TYPE - SYNTAX INTEGER { - wirelessLan(1), - guestLan(2), - remoteLan(3), - other(4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the sub-type of the LAN created. - This has to be congruent with cLWlanIswired. - If cLWlanIswired is set to 'true', allowed values are - guestLan(2) - and remoteLan(3). - If cLWlanIswired is set to 'false', allowed value is - wirelessLan(1). - A value of other(4) will be returned if it doesnt match any - values defined here. This value is not configurable." - ::= { cLWlanConfigEntry 25 } - -cLWlanWebAuthOnMacFilterFailureEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure the Web based - authentication on Mac Filter failure support for the WLAN. - A value of 'true' enables Web authentication on MAC - filter failure for the WLAN. - A value of 'false' disables Web authentication on MAC - filter failure for the WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 26 } - -cLWlanStaticIpTunnelingEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure the Static IP Tunneling - of clients feature support for the WLAN. - A value of 'true' enables static IP Tunneling of client - for the WLAN. - A value of 'false' disables static IP Tunneling of client - for the WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 27 } - -cLWlanKtsCacSupportEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure the KTS CAC - support for the WLAN. - A value of 'true' enables the KTS based CAC support - for this wlan. - A value of 'false' disables the KTS based CAC support - for this wlan." - DEFVAL { false } - ::= { cLWlanConfigEntry 28 } - -cLWlanWifiDirectPolicyStatus OBJECT-TYPE - SYNTAX INTEGER { - disable(1), - allow(2), - notAllow(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to allow/disallow wi-fi - direct clients to/from joining the infrastructure - network. - disable(1) - WFD is completely disabled. - allow(2) - allow WFD clients - disallow(3) - controller rejects association request from WFD - clients only if it has P2P IE with concurrency enabled." - ::= { cLWlanConfigEntry 29 } - -cLWlanWebAuthIPv6AclName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the name of the Web Auth - IPv6 ACL applied to this WLAN. - If it is required to remove the ACL - name for a WLAN, it should be set to 'none'. - ACL's are applied in the following priority order - - interfaces ACLs, WLAN ACLs, client ACLs." - ::= { cLWlanConfigEntry 30 } - -cLWlanHotSpot2Enabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the hotSpot2 feature for this WLAN. - A value of 'true' enables the HotSpot2 - for this wlan. - A value of 'false' disables the HotSpot2 - for this wlan." - DEFVAL { false } - ::= { cLWlanConfigEntry 31 } - -cLWlanMaxClientsAllowedPerRadio OBJECT-TYPE - SYNTAX Unsigned32 (1..200) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the maximum allowed clients - per AP radio for a WLAN." - DEFVAL { 200 } - ::= { cLWlanConfigEntry 32 } - -cLWlanDhcpDeviceProfiling OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the status of - DHCP Device Profiling feature for this WLAN. - A value of 'true' enables DHCP Device Profiling on this wlan. - A value of 'false' disables DHCP the Device Profiling - on this wlan." - DEFVAL { false } - ::= { cLWlanConfigEntry 33 } - -cLWlanMacAuthOverDot1xEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the configuration state of - authentication failover to Dot1x for the WLAN. - A value of 'true' enables mac auth or dot1x - for the WLAN. - A value of 'false' disables mac auth or dot1x - for the WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 34 } - -cLWlanUserTimeout OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the timeout value of user for a WLAN." - DEFVAL { 300 } - ::= { cLWlanConfigEntry 35 } - -cLWlanUserIdleThreshold OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "bytes" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the user idle threshold value in bytes - for a WLAN." - DEFVAL { 0 } - ::= { cLWlanConfigEntry 36 } - -cLWlanHttpDeviceProfiling OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the status of - HTTP Device Profiling feature for this WLAN. - A value of 'true' enables HTTP Device Profiling on this wlan. - A value of 'false' disables the HTTP Device Profiling - on this wlan." - DEFVAL { false } - ::= { cLWlanConfigEntry 37 } - -cLWlanHotSpotClearConfig OBJECT-TYPE - SYNTAX INTEGER { - enable(1), - disable(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to clear all the configuration - related to HotSpot feature at WLAN level. - A value of 'enable' would clear the configuration. - When queries for the current value, always 'disable' - would be returned." - DEFVAL { disable } - ::= { cLWlanConfigEntry 38 } - -cLWlanRadiusAuthFourthServer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the Fourth - Radius Authentication Server for this wlan." - ::= { cLWlanConfigEntry 39 } - -cLWlanRadiusAuthFifthServer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the Fifth - Radius Authentication Server for this wlan." - ::= { cLWlanConfigEntry 40 } - -cLWlanRadiusAuthSixthServer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the Sixth - Radius Authentication Server for this wlan." - ::= { cLWlanConfigEntry 41 } - -cLWlanRadiusAcctFourthServer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the Fourth - Radius Accounting Server for this wlan." - ::= { cLWlanConfigEntry 42 } - -cLWlanRadiusAcctFifthServer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the Fifth - Radius Accounting Server for this wlan." - ::= { cLWlanConfigEntry 43 } - -cLWlanRadiusAcctSixthServer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies the Sixth - Radius Accounting Server for this wlan." - ::= { cLWlanConfigEntry 44 } - -cLWlanSelfAnchorEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object specifies whether self anchoring - is enabled for the wlan." - DEFVAL { false } - ::= { cLWlanConfigEntry 64 } - -cLWlanUniversalAdmin OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object allows universal admin mode. - to be enabled on a 802.1X/WPA/WPA2 secured WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 65 } - -cLWlan11acMuMimoEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure 11ac Mu Mimo mode for - the WLAN. - A value of 'true' enables Mu Mimo mode for the WLAN. - A value of 'false' disables Mu Mimo mode for the WLAN." - DEFVAL { false } - ::= { cLWlanConfigEntry 66 } - - --- ******************************************************************** --- * WLAN 11u Table --- ******************************************************************** - -cLWlan11uTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11uEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the generic 802.11u - configuration for a particular WLAN in a - controller. - - This table has a one-to-one relationship with - cLWlanConfigTable. There exist a row in this - table corresponding to each row representing - a WLAN in cLWlanConfigTable." - ::= { ciscoLwappWlan11uConfig 1 } - -cLWlan11uEntry OBJECT-TYPE - SYNTAX CLWlan11uEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the generic 802.11u - configuration for a WLAN." - INDEX { cLWlanIndex } - ::= { cLWlan11uTable 1 } - -CLWlan11uEntry ::= SEQUENCE { - cLWlan11uStatus TruthValue, - cLWlan11uInternetAccess TruthValue, - cLWlan11uNetworkType INTEGER, - cLWlan11uVenueGroup INTEGER, - cLWlan11uVenueType INTEGER, - cLWlan11uVenueName SnmpAdminString, - cLWlan11uHessid MacAddress, - cLWlan11uNetworkAuthType INTEGER, - cLWlan11uIpAddressAvailIpv4 INTEGER, - cLWlan11uIpAddressAvailIpv6 INTEGER -} - -cLWlan11uStatus OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used to configure the 802.11u support - for this WLAN. A value of 'true' indicates that 802.11u - support is enabled for this WLAN and a value of 'false' - indicates that the support is disabled for this WLAN." - DEFVAL { false } - ::= { cLWlan11uEntry 1 } - -cLWlan11uInternetAccess OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used to configure the internet access - with respect to 802.11u feature for this WLAN. - A value of 'true' indicates that internet access is - enabled for this WLAN and a value of 'false' indicates - that the internet access is disabled for this WLAN." - DEFVAL { true } - ::= { cLWlan11uEntry 2 } - -cLWlan11uNetworkType OBJECT-TYPE - SYNTAX INTEGER { - invalid(1), - private(2), - privateWithGuestAccess(3), - chargeablePublicNetwork(4), - freePublicNetwork(5), - testOrEquipment(6), - wildcard(7), - personnalDeviceNetwork(8), - emgerencyServiceOnlyNetwork(9), - notConfigured(255) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object indicates the network type with respect - to 802.11u feature , for this WLAN. - invalid (1) : Invalid network type. - private(2) : Non-authorized users are not - permitted on this network. - privateWithGuestAccess(3) : Private network but guest - accounts area available. - chargeablePublicNetwork(4) : The network is accessible to - anyone, however, access to the - network requires payment. - freePublicNetwork(5) : The network is accessible to - anyone and no charges apply - for the network use. - testOrEquipment(6) : The network is used for test or - experimental purposes only. - wildcard(6) : Wildcard network type. - personnalDeviceNetwork(8) : The network is accessible only - by Personnal Device. - emgerencyServiceOnlyNetwork(9) : Emergency Service - network Type." - ::= { cLWlan11uEntry 3 } - -cLWlan11uVenueGroup OBJECT-TYPE - SYNTAX INTEGER { - unspecified(1), - assembly(2), - business(3), - educational(4), - factoryAndIndustrial(5), - institutional(6), - mercantile(7), - residential(8), - storage(9), - utilityAndMisc(10), - vehicular(11), - outdoor(12) - } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This object indicates the venue group with respect - to 802.11u feature , for this WLAN." - DEFVAL { unspecified } - ::= { cLWlan11uEntry 4 } - -cLWlan11uVenueType OBJECT-TYPE - SYNTAX INTEGER { - unspecified(1), - assembly(2), - business(3), - educational(4), - factoryAndIndustrial(5), - institutional(6), - mercantile(7), - residential(8), - storage(9), - utilityAndMisc(10), - vehicular(11), - outdoor(12) - } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This object indicates the venue type within - a particular venue group, with respect - to 802.11u feature , for this WLAN. - The Venue group-Venue Type relationship is per - the following table: - Venue Group Venue Type Code Venue Description - =========== =============== ================= - 0 0 Unspecified - 0 1-255 Reserved - 1 0 Unspecified Assembly - 1 1 Arena - 1 2 Stadium - 1 3 Passenger Terminal (e.g., - airport, port, bus station, ferry - terminal, train station) - 1 4 Amphitheater - 1 5 Amusement Park - 1 6 Place of Worship - 1 7 Convention Center - 1 8 Library - 1 9 Museum - 1 10 Restaurant - 1 11 Theater - 1 12 Bar - 1 13 Coffee Shop - 1 14 Zoo or Aquarium - 1 15 Emergency Coordination Center - 1 16-255 Reserved - 2 0 Unspecified Business - 2 1 Doctor or Dentist office - 2 2 Bank - 2 3 Fire Station - 2 4 Police Station - 2 6 Post Office - 2 7 Professional Office - 2 8 Research and Development Facility - 2 9 Attorney Office - 2 10-255 Reserved - 3 0 Unspecified Educational - 3 1 School, Primary - 3 2 School, Secondary - 3 3 University or College - 3 4-255 Reserved - 4 0 Unspecified Factory and Industrial - 4 1 Factory - 4 2-255 Reserved - 5 0 Unspecified Institutional - 5 1 Hospital - 5 2 Long-Term Care Facility (e.g., - Nursing home, Hospice, etc.) - 5 3 Alcohol and Drug Re-habilitation - Center - 5 4 Group Home - 5 5 Prison or Jail - 5 6-255 Reserved - 6 0 Unspecified Mercantile - 6 1 Retail Store - 6 2 Grocery Market - 6 3 Automotive Service Station - 6 4-255 Reserved - 7 0 Unspecified Residential - 7 1 Hotel or Motel - 7 2 Dormitory - 7 3 Boarding House - 7 4-255 Reserved - 8 0-255 Reserved - 9 0-255 Reserved - 10 0 Unspecified Vehicular - 10 1 Automobile or Truck - 10 2 Airplane - 10 3 Bus - 10 4 Ferry - 10 5 Ship or Boat - 10 6 Train - 10 7-255 Reserved - 11 0 Unspecified Outdoor - 11 1 Muni-mesh Network - 11 2 City Park - 11 3-255 Reserved" - DEFVAL { unspecified } - ::= { cLWlan11uEntry 5 } - -cLWlan11uVenueName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..255)) - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This is the venue name defined for this WLAN - with respect to 802.11u feature." - ::= { cLWlan11uEntry 6 } - -cLWlan11uHessid OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used to configure the Hessid for this WLAN." - ::= { cLWlan11uEntry 8 } - -cLWlan11uNetworkAuthType OBJECT-TYPE - SYNTAX INTEGER { - acceptance(1), - enrollment(2), - redirection(3), - dnsRedirection(4), - notConfigured(5) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used to configure the NetworkAuthType - for a WLAN" - DEFVAL { notConfigured } - ::= { cLWlan11uEntry 9 } - -cLWlan11uIpAddressAvailIpv4 OBJECT-TYPE - SYNTAX INTEGER { - notAvailable(1), - public(2), - portRestricted(3), - singleNATPrivate(4), - doubleNATPrivate(5), - portRestrictedAndSingleNATPrivate(6), - portRestrictedAndDoubleNATPrivate(7), - unKnown(8) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the IPv4 Address Availability." - DEFVAL { notAvailable } - ::= { cLWlan11uEntry 10 } - -cLWlan11uIpAddressAvailIpv6 OBJECT-TYPE - SYNTAX INTEGER { - notAvailable(1), - available(2), - unKnown(3) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the IPv6 Address Availability." - DEFVAL { notAvailable } - ::= { cLWlan11uEntry 11 } - - --- ******************************************************************** --- * WLAN 11u OUI Table --- ******************************************************************** - -cLWlan11uOuiTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11uOuiEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the OUI - (organizational unique identifier) - configuration for a particular WLAN. - OUIs are assigned by IEEE. - A WLAN can have up to 32 OUIs defined. - OUI configuration per WLAN is required - for the 802.11u feature to work. - - Rows are added or deleted by explicit - management actions initiated by the user from a - network management station through the - cLWlan11uOuiRowStatus object." - ::= { ciscoLwappWlan11uConfig 2 } - -cLWlan11uOuiEntry OBJECT-TYPE - SYNTAX CLWlan11uOuiEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the OUI - (organizational unique identifier) - configuration for a particular WLAN. - OUIs are assigned by IEEE. - A WLAN can have up to 32 OUIs defined. - OUI configuration per WLAN is required - for the 802.11u feature to work." - INDEX { - cLWlanIndex, - cLWlan11uOuiIndex - } - ::= { cLWlan11uOuiTable 1 } - -CLWlan11uOuiEntry ::= SEQUENCE { - cLWlan11uOuiIndex Unsigned32, - cLWlan11uOui OCTET STRING, - cLWlan11uOuiIsBeacon TruthValue, - cLWlan11uOuiRowStatus RowStatus, - cLWlan11uOuiStorageType StorageType -} - -cLWlan11uOuiIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of a OUI - on a WLAN.Each WLAN can have up to 32 OUIs defined. - Each OUI should be unique." - ::= { cLWlan11uOuiEntry 1 } - -cLWlan11uOui OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (6 | 10)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The OUI field is a public OUI assigned by the IEEE. - Each OUI identifies a roaming consortium - (group of SSPs with inter-SSP roaming agreement) - or a single SSP.WLAN can have up to 32 OUIs defined. - Each OUI defined for a WLAN should be unique. - For example the value for Cisco is 004096." - ::= { cLWlan11uOuiEntry 2 } - -cLWlan11uOuiIsBeacon OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure this particular - OUI as one of the beacon OUIs. - Beacon can carry at most 3 OUIs. - User should be able to select 0-3 OUIs - (from the already configured OUIs for this WLAN). - A value of 'true' indicates that this OUI would - be carried in beacon. A value of 'false' - indicates that this OUI is not a beacon OUI." - DEFVAL { false } - ::= { cLWlan11uOuiEntry 3 } - -cLWlan11uOuiRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - OUI entry in the table." - ::= { cLWlan11uOuiEntry 4 } - -cLWlan11uOuiStorageType OBJECT-TYPE - SYNTAX StorageType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represnts the storage type for this - conceptual row." - DEFVAL { nonVolatile } - ::= { cLWlan11uOuiEntry 5 } - - --- ******************************************************************** --- * WLAN 11u Realm Table --- ******************************************************************** - -cLWlan11uRealmTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11uRealmEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the realm (NAI) details per WLAN. - In order to provide roaming services, - it is necessary to have a standardized method for - identifying users. NAI is the user identity - submitted by the client during network authentication. - Each realm entry should be unique." - ::= { ciscoLwappWlan11uConfig 3 } - -cLWlan11uRealmEntry OBJECT-TYPE - SYNTAX CLWlan11uRealmEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the realm (NAI) - configuration for a particular WLAN.A WLAN can have - up to 32 realm defined" - INDEX { - cLWlanIndex, - cLWlan11uRealmIndex - } - ::= { cLWlan11uRealmTable 1 } - -CLWlan11uRealmEntry ::= SEQUENCE { - cLWlan11uRealmIndex Unsigned32, - cLWlan11uRealmName SnmpAdminString, - cLWlan11uRealmRowStatus RowStatus -} - -cLWlan11uRealmIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..128) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object specifies, one instance of - a realm EAP entry (NAI) on a WLAN. - Each realm entry should be unique." - ::= { cLWlan11uRealmEntry 1 } - -cLWlan11uRealmName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..128)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the NAI name. - In order to provide roaming services, - it is necessary to have a standardized method for - identifying users. NAI is the user identity - submitted by the client during network authentication. - In roaming, the purpose of the NAI is to identify the - user as well as to assist in the routing of the authentication - request. - Please note that the NAI may not necessarily be - the same as the user's e-mail address or the user identity - submitted in an application layer authentication." - ::= { cLWlan11uRealmEntry 2 } - -cLWlan11uRealmRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular realm - entry (NAI)from the table" - ::= { cLWlan11uRealmEntry 3 } - - --- ******************************************************************** --- * WLAN 11u Realm Eap Table --- ******************************************************************** - -cLWlan11uRealmEapTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11uRealmEapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the EAP method configured per realm - for a particular WLAN. A realm can have up to 4 EAP - method defined. The EAP method supported are - LEAP,PEAP,EAP-FAST and EAP-TLS." - ::= { ciscoLwappWlan11uConfig 4 } - -cLWlan11uRealmEapEntry OBJECT-TYPE - SYNTAX CLWlan11uRealmEapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the EAP method - configured per realm for a particular WLAN. - A realm can have up to 4 EAP method defined. - The EAP method supported are LEAP,PEAP,EAP-FAST and EAP-TLS." - INDEX { - cLWlanIndex, - cLWlan11uRealmIndex, - cLWlan11uRealmEapIndex - } - ::= { cLWlan11uRealmEapTable 1 } - -CLWlan11uRealmEapEntry ::= SEQUENCE { - cLWlan11uRealmEapIndex Unsigned32, - cLWlan11uRealmEapMethod INTEGER, - cLWlan11uRealmEapRowStatus RowStatus -} - -cLWlan11uRealmEapIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..4) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of - a EAP entry configured per a realm for a particular WLAN." - ::= { cLWlan11uRealmEapEntry 1 } - -cLWlan11uRealmEapMethod OBJECT-TYPE - SYNTAX INTEGER { - none(1), - leap(2), - peap(3), - eapTls(4), - eapFast(5), - eapSim(6), - eapTtls(7), - eapAka(8) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the EAP method defined." - ::= { cLWlan11uRealmEapEntry 2 } - -cLWlan11uRealmEapRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular EAP - entry from the table" - ::= { cLWlan11uRealmEapEntry 3 } - - --- ******************************************************************** --- * WLAN 11u Realm Eap Auth Table --- ******************************************************************** - -cLWlan11uRealmEapAuthTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11uRealmEapAuthEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the authentication method details - configured per EAP method for particular realm. - There can be up to 10 authentication configuration - entries per EAP method." - ::= { ciscoLwappWlan11uConfig 5 } - -cLWlan11uRealmEapAuthEntry OBJECT-TYPE - SYNTAX CLWlan11uRealmEapAuthEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the authentication - method details configured per EAP method for particular realm. - There can be up to 10 authentication configuration - entries per EAP method." - INDEX { - cLWlanIndex, - cLWlan11uRealmIndex, - cLWlan11uRealmEapIndex, - cLWlan11uRealmEapAuthIndex - } - ::= { cLWlan11uRealmEapAuthTable 1 } - -CLWlan11uRealmEapAuthEntry ::= SEQUENCE { - cLWlan11uRealmEapAuthIndex Unsigned32, - cLWlan11uRealmEapAuthMethod INTEGER, - cLWlan11uRealmEapAuthParam INTEGER, - cLWlan11uRealmEapAuthCredentialType INTEGER, - cLWlan11uRealmEapAuthRowStatus RowStatus -} - -cLWlan11uRealmEapAuthIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..10) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of - a auth entry configured per a EAP for a particular WLAN." - ::= { cLWlan11uRealmEapAuthEntry 1 } - -cLWlan11uRealmEapAuthMethod OBJECT-TYPE - SYNTAX INTEGER { - nonEapInnerAuthType(1), - innerAuthEapType(2), - credentialType(3), - tunneledEapCredentialType(4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the authentication method defined." - DEFVAL { nonEapInnerAuthType } - ::= { cLWlan11uRealmEapAuthEntry 2 } - -cLWlan11uRealmEapAuthParam OBJECT-TYPE - SYNTAX INTEGER { - none(1), - pap(2), - chap(3), - mschap(4), - mschapV2(5), - leap(6), - peap(7), - eapTls(8), - eapFast(9), - eapSim(10), - eapTtls(11), - eapAka(12), - sim(13), - usim(14), - nfcSecure(15), - hardwareToken(16), - softToken(17), - certificate(18), - usernamePassword(19), - reserved(20), - anonynous(21), - vendorSpecific(22) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the authentication parameter - defined for a particular authentication method. - The Autentication Parameter and the Authentication Method - relationship as follows - - Method Parameter Description - =========== =============== ================= - 1 1 Reserved - 1 2 PAP - 1 3 CHAP - 1 4 MSCHAP - 1 5 MSCHAPV2 - 2 6 LEAP - 2 7 PEAP - 2 8 EAP-TLS - 2 9 EAP-FAST - 2 10 EAP-SIM - 2 11 EAP-TTLS - 2 12 EAP-AKA - 3 13 SIM - 3 14 USIM - 3 15 NFCSECURE - 3 16 HARDWARE TOKEN - 3 17 SOFT TOKEN - 3 18 CERTIFICATE - 3 19 USERNAME PASSWORD - 3 20 RESERVED - 3 21 Anonynous - 3 22 Vendor Specific" - DEFVAL { none } - ::= { cLWlan11uRealmEapAuthEntry 3 } - -cLWlan11uRealmEapAuthCredentialType OBJECT-TYPE - SYNTAX INTEGER { - sim(1), - usim(2), - nfcSecure(3), - hardwareToken(4), - softToken(5), - certificate(6), - usernamePassword(7), - reserved(8), - anonynous(9), - vendorSpecific(10) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the credential type defined for a particular - authentication method." - DEFVAL { sim } - ::= { cLWlan11uRealmEapAuthEntry 4 } - -cLWlan11uRealmEapAuthRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular auth - entry from the table" - ::= { cLWlan11uRealmEapAuthEntry 5 } - - --- ******************************************************************** --- * WLAN 11u Domain Table --- ******************************************************************** - -cLWlan11uDomainTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11uDomainEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the Domain Entry - configuration for a particular WLAN in a - controller. - Rows are added or deleted by explicit - management actions initiated by the user from a - network management station through the - cLWlan11uDomainRowStatus object" - ::= { ciscoLwappWlan11uConfig 6 } - -cLWlan11uDomainEntry OBJECT-TYPE - SYNTAX CLWlan11uDomainEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the Domain - configuration for a particular WLAN. - A WLAN can have up to 10 domains defined." - INDEX { - cLWlanIndex, - cLWlan11uDomainIndex - } - ::= { cLWlan11uDomainTable 1 } - -CLWlan11uDomainEntry ::= SEQUENCE { - cLWlan11uDomainIndex Unsigned32, - cLWlan11uDomainName SnmpAdminString, - cLWlan11uDomainRowStatus RowStatus -} - -cLWlan11uDomainIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..32) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of a Domain - on a WLAN.Each WLAN can have up to 10 Domains defined. - Each Domain should be unique." - ::= { cLWlan11uDomainEntry 1 } - -cLWlan11uDomainName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..255)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the domain name for this particular - Index." - ::= { cLWlan11uDomainEntry 2 } - -cLWlan11uDomainRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - Domain entry in the table." - ::= { cLWlan11uDomainEntry 3 } - - --- ******************************************************************** --- * WLAN 11u 3gpp Table --- ******************************************************************** - -cLWlan11u3gppTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlan11u3gppEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the 3gpp info - configuration for a particular WLAN in a - controller. - Rows are added or deleted by explicit - management actions initiated by the user from a - network management station through the - cLWlan11u3gppRowStatus object" - ::= { ciscoLwappWlan11uConfig 7 } - -cLWlan11u3gppEntry OBJECT-TYPE - SYNTAX CLWlan11u3gppEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the Domain - configuration for a particular WLAN. - A WLAN can have up to 32 operator defined." - INDEX { - cLWlanIndex, - cLWlan11u3gppIndex - } - ::= { cLWlan11u3gppTable 1 } - -CLWlan11u3gppEntry ::= SEQUENCE { - cLWlan11u3gppIndex Unsigned32, - cLWlan11u3gppCountryCode OCTET STRING, - cLWlan11u3gppNetworkCode OCTET STRING, - cLWlan11u3gppRowStatus RowStatus -} - -cLWlan11u3gppIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..32) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of a 3gpp - on a WLAN.Each WLAN can have up to 32 3gpps defined. - Each 3gpp should be unique." - ::= { cLWlan11u3gppEntry 1 } - -cLWlan11u3gppCountryCode OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the Language defined for this 3gpp Index." - ::= { cLWlan11u3gppEntry 2 } - -cLWlan11u3gppNetworkCode OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the Language defined for this 3gpp Index." - ::= { cLWlan11u3gppEntry 3 } - -cLWlan11u3gppRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - 3gpp entry in the table." - ::= { cLWlan11u3gppEntry 4 } - - --- ******************************************************************** --- * WLAN Service Advertisement Table --- ******************************************************************** - -cLWlanServiceAdvertisementTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanServiceAdvertisementEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the generic service advertisement - configuration for a particular WLAN in a - controller. - - This table has a one-to-one relationship with - cLWlanConfigTable. There exist a row in this - table corresponding to each row representing - a WLAN in cLWlanConfigTable." - ::= { ciscoLwappWlanServiceAdvertisementConfig 1 } - -cLWlanServiceAdvertisementEntry OBJECT-TYPE - SYNTAX CLWlanServiceAdvertisementEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the generic 802.11u - configuration for a WLAN." - INDEX { cLWlanIndex } - ::= { cLWlanServiceAdvertisementTable 1 } - -CLWlanServiceAdvertisementEntry ::= SEQUENCE { - cLWlanServiceAdvertisementStatus TruthValue, - cLWlanServiceAdvertisementMsapServerIndex Unsigned32 -} - -cLWlanServiceAdvertisementStatus OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the MSAP status for this WLAN. - A value of true enables MSAP for this WLAN. - A value of false disbales MSAP for this WLAN." - DEFVAL { false } - ::= { cLWlanServiceAdvertisementEntry 1 } - -cLWlanServiceAdvertisementMsapServerIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..10) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the Index for the MSAP Server." - ::= { cLWlanServiceAdvertisementEntry 5 } - - - -cLWlanHotSpot2OperatorTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanHotSpot2OperatorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the Operator - configuration for a particular WLAN in a - controller. - Rows are added or deleted by explicit - management actions initiated by the user from a - network management station through the - cLWlanHotSpot2OperatorRowStatus object" - ::= { ciscoLwappWlanHotSpot2Config 1 } - -cLWlanHotSpot2OperatorEntry OBJECT-TYPE - SYNTAX CLWlanHotSpot2OperatorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the Domain - configuration for a particular WLAN. - A WLAN can have up to 32 operator defined." - INDEX { - cLWlanIndex, - cLWlanHotSpot2OperatorIndex - } - ::= { cLWlanHotSpot2OperatorTable 1 } - -CLWlanHotSpot2OperatorEntry ::= SEQUENCE { - cLWlanHotSpot2OperatorIndex Unsigned32, - cLWlanHotSpot2OperatorName SnmpAdminString, - cLWlanHotSpot2OperatorLanguage SnmpAdminString, - cLWlanHotSpot2OperatorRowStatus RowStatus -} - -cLWlanHotSpot2OperatorIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..32) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of a Operator - on a WLAN.Each WLAN can have up to 32 Operators defined. - Each Operator should be unique." - ::= { cLWlanHotSpot2OperatorEntry 1 } - -cLWlanHotSpot2OperatorName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..255)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the Operator name for this particular - Index." - ::= { cLWlanHotSpot2OperatorEntry 2 } - -cLWlanHotSpot2OperatorLanguage OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..3)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the Language defined for this Operator Index." - ::= { cLWlanHotSpot2OperatorEntry 3 } - -cLWlanHotSpot2OperatorRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - Operator entry in the table." - ::= { cLWlanHotSpot2OperatorEntry 4 } - - - -cLWlanHotSpot2PortConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanHotSpot2PortConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of - Port-Protocol Configuration on a WLAN.Each WLAN can - have up to 10 port configuration defined.Each configuration - should be unique." - ::= { ciscoLwappWlanHotSpot2Config 2 } - -cLWlanHotSpot2PortConfigEntry OBJECT-TYPE - SYNTAX CLWlanHotSpot2PortConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the Port-Protocol - configuration for a particular WLAN. - A WLAN can have up to 10 port configurations defined." - INDEX { - cLWlanIndex, - cLWlanHotSpot2PortConfigIndex - } - ::= { cLWlanHotSpot2PortConfigTable 1 } - -CLWlanHotSpot2PortConfigEntry ::= SEQUENCE { - cLWlanHotSpot2PortConfigIndex Unsigned32, - cLWlanHotSpot2PortConfigIpProtocol INTEGER, - cLWlanHotSpot2PortConfigPortNumber INTEGER, - cLWlanHotSpot2PortConfigStatus INTEGER, - cLWlanHotSpot2PortConfigRowStatus RowStatus -} - -cLWlanHotSpot2PortConfigIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies one instance of a Port - Configuration on a WLAN.Each WLAN can have up to 32 Port - Configurations defined.Each Port Configuration should be - unique." - ::= { cLWlanHotSpot2PortConfigEntry 1 } - -cLWlanHotSpot2PortConfigIpProtocol OBJECT-TYPE - SYNTAX INTEGER { - icmp(1), - ftp(6), - ikev2(17), - esp(50) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the Port Ip protocol - for this index for a WLAN" - ::= { cLWlanHotSpot2PortConfigEntry 2 } - -cLWlanHotSpot2PortConfigPortNumber OBJECT-TYPE - SYNTAX INTEGER { - icmp-esp(0), - ftp(20), - ssh(22), - ttls-vpn(443), - ikev2(500), - pptp-vpn(1723), - ipsec-nat(4500), - voip(5060) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the Port Number for this index - for a WLAN. This object indicates the Port Number - with respect to an IP Protocol. - The Protocol Port Number relationship is per - the following table: - IP Protocol Port Number Description - =========== =============== ================= - 1 0 ICMP - 6 20 FTP - 6 22 SSH - 6 443 TLS - 6 1723 PPTP-VPN - 6 5060 VoIP - 17 5060 VoIP - 17 4500 IKEv - 17 500 IKEv2 - 50 0 ESP" - ::= { cLWlanHotSpot2PortConfigEntry 3 } - -cLWlanHotSpot2PortConfigStatus OBJECT-TYPE - SYNTAX INTEGER { - closed(1), - open(2), - unknown(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the Port Status - for this instance for a WLAN" - ::= { cLWlanHotSpot2PortConfigEntry 4 } - -cLWlanHotSpot2PortConfigRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - PortConfig entry in the table." - ::= { cLWlanHotSpot2PortConfigEntry 5 } - - - -cLWlanHotSpot2ConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanHotSpot2ConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the generic HotSpot2 - configuration for a particular WLAN in a - controller. - - This table has a one-to-one relationship with - cLWlanConfigTable. There exist a row in this - table corresponding to each row representing - a WLAN in cLWlanConfigTable." - ::= { ciscoLwappWlanHotSpot2Config 3 } - -cLWlanHotSpot2ConfigEntry OBJECT-TYPE - SYNTAX CLWlanHotSpot2ConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry in this table represents the generic HotSpot2 - configuration for a WLAN." - INDEX { cLWlanIndex } - ::= { cLWlanHotSpot2ConfigTable 1 } - -CLWlanHotSpot2ConfigEntry ::= SEQUENCE { - cLWlanHotSpot2WanLinkStatus INTEGER, - cLWlanHotSpot2WanSymLinkStatus INTEGER, - cLWlanHotSpot2WanDownLinkSpeed Unsigned32, - cLWlanHotSpot2WanUpLinkSpeed Unsigned32 -} - -cLWlanHotSpot2WanLinkStatus OBJECT-TYPE - SYNTAX INTEGER { - linkUp(1), - linkDown(2), - linkInTestState(3), - notConfigured(4) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the status of the link with respect to - WAN metrics configuration." - ::= { cLWlanHotSpot2ConfigEntry 1 } - -cLWlanHotSpot2WanSymLinkStatus OBJECT-TYPE - SYNTAX INTEGER { - different(1), - same(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the symmetry of the link with respect to - WAN metrics configuration. A value of 'different(1)' - indicates that link speed is different in uplink and - downlink(ex:ADSL). A value of 'same(2)' indicates that - link speed is same in uplink and downlink(ex:DSL)." - ::= { cLWlanHotSpot2ConfigEntry 2 } - -cLWlanHotSpot2WanDownLinkSpeed OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the down link speed of WAN Backhaul - in kbps." - ::= { cLWlanHotSpot2ConfigEntry 3 } - -cLWlanHotSpot2WanUpLinkSpeed OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the up link speed of WAN Backhaul - in kbps." - ::= { cLWlanHotSpot2ConfigEntry 4 } - - - -cLAPGroupsHyperlocationConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLAPGroupsHyperlocationConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table for configuring Hyperlocation - settings allowed for each AP Group. - Each site can have a set of HALO and PakRSSI - parameters associated with it." - ::= { ciscoLwappAPGroupsHyperlocationConfig 1 } - -cLAPGroupsHyperlocationConfigEntry OBJECT-TYPE - SYNTAX CLAPGroupsHyperlocationConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in cLAPGroupsHyperlocationConfigEntry. - cLAPGroupName is mandatory for creating an entry in - CLAPGroupsHyperlocationConfigEntry ." - INDEX { cLAPGroupName } - ::= { cLAPGroupsHyperlocationConfigTable 1 } - -CLAPGroupsHyperlocationConfigEntry ::= SEQUENCE { - cLAPGroupsHyperlocationEnable TruthValue, - cLAPGroupsPakRssiThreshold Integer32, - cLAPGroupsPakRssiThresholdTrigger Gauge32, - cLAPGroupsPakRssiNtpIpAddressType InetAddressType, - cLAPGroupsPakRssiNtpAddress InetAddress -} - -cLAPGroupsHyperlocationEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the state of Hyperlocation. - A value of 'true' indicates that Hyperlocation is enabled. - A value of 'false' indicates that Hyperlocation is disabled." - DEFVAL { false } - ::= { cLAPGroupsHyperlocationConfigEntry 1 } - -cLAPGroupsPakRssiThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the threshold value for - Packet RSSI location feature. Valid range is - -100 dbm to -50 dbm." - DEFVAL { -100 } - ::= { cLAPGroupsHyperlocationConfigEntry 2 } - -cLAPGroupsPakRssiThresholdTrigger OBJECT-TYPE - SYNTAX Gauge32 (1..100) - UNITS "dbm" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the trigger threshold - value for Packet RSSI location feature. Valid - range is 1 dbm to 100 dbm." - DEFVAL { 10 } - ::= { cLAPGroupsHyperlocationConfigEntry 3 } - -cLAPGroupsPakRssiNtpIpAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the NTP server - IP address type for Packet RSSI location feature." - ::= { cLAPGroupsHyperlocationConfigEntry 4 } - -cLAPGroupsPakRssiNtpAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the NTP server - IP address for Packet RSSI location feature." - ::= { cLAPGroupsHyperlocationConfigEntry 5 } - - - -cLAPGroupsPortConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLAPGroupsPortConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table for configuring port - settings allowed for each AP Group." - ::= { ciscoLwappAPGroupsPortConfig 1 } - -cLAPGroupsPortConfigEntry OBJECT-TYPE - SYNTAX CLAPGroupsPortConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in cLAPGroupsPortConfigEntry. - cLAPGroupName is mandatory for creating a entry in - CLAPGroupsPortConfigEntry ." - INDEX { - cLAPGroupName, - cLAPGroupsLANPortNumber - } - ::= { cLAPGroupsPortConfigTable 1 } - -CLAPGroupsPortConfigEntry ::= SEQUENCE { - cLAPGroupsLANPortNumber Unsigned32, - cLAPGroupsLANPortStatus INTEGER, - cLAPGroupsLANPortPoeStatus INTEGER, - cLAPGroupsLANPortRlanName SnmpAdminString, - cLAPGroupsLANPortRowStatus RowStatus -} - -cLAPGroupsLANPortNumber OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies the LAN port number - of an AP Group. Each AP Group can have up to 3 LAN ports." - ::= { cLAPGroupsPortConfigEntry 1 } - -cLAPGroupsLANPortStatus OBJECT-TYPE - SYNTAX INTEGER { - disabled(0), - enabled(1) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the LAN port state. - A value of 'true' indicates that selected LAN Port is enabled. A value - of 'false' indicates that LAN Port is disabled." - DEFVAL { disabled } - ::= { cLAPGroupsPortConfigEntry 2 } - -cLAPGroupsLANPortPoeStatus OBJECT-TYPE - SYNTAX INTEGER { - notsupported(0), - disabled(1), - enabled(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the LAN port POE state. - A value of 'true' indicates that POE is enabled. A value - of 'false' indicates that POE is disabled." - DEFVAL { disabled } - ::= { cLAPGroupsPortConfigEntry 3 } - -cLAPGroupsLANPortRlanName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..64)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the remote LAN name of the corresponding port." - ::= { cLAPGroupsPortConfigEntry 4 } - -cLAPGroupsLANPortRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the status column for this row and used - to create and delete specific instances of rows - in this table. cLAPGroupName and cLAPGroupsLANPortNumber - are mandatory for creating and deleting an entry." - ::= { cLAPGroupsPortConfigEntry 5 } - - - -cLAPGroupsExtModuleConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLAPGroupsExtModuleConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table for configuring external module settings allowed for each AP Group. - An entry in this table is created for each AP group." - ::= { ciscoLwappAPGroupsPortConfig 2 } - -cLAPGroupsExtModuleConfigEntry OBJECT-TYPE - SYNTAX CLAPGroupsExtModuleConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in cLAPGroupsExtModuleConfigEntry. - cLAPGroupName is mandatory for creating an entry in - CLAPGroupsExtModuleConfigEntry ." - INDEX { cLAPGroupName } - ::= { cLAPGroupsExtModuleConfigTable 1 } - -CLAPGroupsExtModuleConfigEntry ::= SEQUENCE { - cLAPGroupsExtModuleStatus INTEGER, - cLAPGroupsExtModuleRlanName SnmpAdminString -} - -cLAPGroupsExtModuleStatus OBJECT-TYPE - SYNTAX INTEGER { - disabled(0), - enabled(1) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the external module state. - A value of 'true' indicates that external module is enabled. A value - of 'false' indicates that external module is disabled." - DEFVAL { disabled } - ::= { cLAPGroupsExtModuleConfigEntry 1 } - -cLAPGroupsExtModuleRlanName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the remote lan name of the external module." - ::= { cLAPGroupsExtModuleConfigEntry 2 } - - --- ******************************************************************** --- * AP Groups Vlan Config --- ******************************************************************** - -cLAPGroupsVlanConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLAPGroupsVlanConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table for the WLAN-interface-mappings and WLAN-NAC - settings allowed for each configured site. - Each site can have a set of WLANs associated - with it. - - Rows are added or deleted by explicit - management actions initiated by the user from a - network management station through the - cLAPGroupsVlanConfigRowStatus object." - ::= { ciscoLwappAPGroupsVlanConfig 1 } - -cLAPGroupsVlanConfigEntry OBJECT-TYPE - SYNTAX CLAPGroupsVlanConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in cLAPGroupsVlanMappingTable. - cLWlanProfileName is mandatory for creating a entry in - cLWlanConfigEntry." - INDEX { - cLAPGroupName, - cLWlanProfileName - } - ::= { cLAPGroupsVlanConfigTable 1 } - -CLAPGroupsVlanConfigEntry ::= SEQUENCE { - cLAPGroupName OCTET STRING, - cLAPGroupsVlanMappingInterfaceName OCTET STRING, - cLAPGroupNACSupport TruthValue, - cLAPGroupsVlanConfigRowStatus RowStatus, - cLAPGroupsVlanConfigStorageType StorageType, - cLAPGroupsWlanOrderIndex Unsigned32, - cLAPGroupsVlanMappingInterfaceNameRev1 OCTET STRING -} - -cLAPGroupName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..64)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object uniquely identifies a AP group. - The string is an unique name assigned to a site." - ::= { cLAPGroupsVlanConfigEntry 1 } - -cLAPGroupsVlanMappingInterfaceName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..32)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "This object represents the interface to be used - when a client connects to the 'cLWlanProfileName' - WLAN on the AP. - When an AP is associated with a site, and the site - has an associated set of WLANs, then only those - WLANs are beamed by the AP. - cLAPGroupsVlanMappingInterfaceName object is superseded - by cLAPGroupsVlanMappingInterfaceNameRev1." - ::= { cLAPGroupsVlanConfigEntry 2 } - -cLAPGroupNACSupport OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to configure the NAC- Out Of - Band(OOB) support for this AP groups VLAN. - A value of 'true' indicates that the AP group - supports the NAC- Out Of Band(OOB) feature. - A value of 'false' indicates that the AP group - does not support the NAC- Out Of Band(OOB) feature." - DEFVAL { false } - ::= { cLAPGroupsVlanConfigEntry 3 } - -cLAPGroupsVlanConfigRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the status column for this row and used - to create and delete specific instances of rows - in this table." - ::= { cLAPGroupsVlanConfigEntry 4 } - -cLAPGroupsVlanConfigStorageType OBJECT-TYPE - SYNTAX StorageType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represnts the storage type for this - conceptual row." - DEFVAL { nonVolatile } - ::= { cLAPGroupsVlanConfigEntry 5 } - -cLAPGroupsWlanOrderIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represnts the position of a wlan in each - AP group. When a WLAN is added to an AP group, it will be - placed in the lowest available slot in an array of size 16. - This index will determine the order in which the WLAN is - applied on an AP in that group." - ::= { cLAPGroupsVlanConfigEntry 6 } - -cLAPGroupsVlanMappingInterfaceNameRev1 OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..128)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the interface to be used - when a client connects to the 'cLWlanProfileName' - WLAN on the AP. - When an AP is associated with a site, and the site - has an associated set of WLANs, then only those - WLANs are beamed by the AP." - ::= { cLAPGroupsVlanConfigEntry 7 } - - - -cLAPGroupsVenueConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLAPGroupsVenueConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table for the configuring Venue details - for a configured site." - ::= { ciscoLwappAPGroupsVlanConfig 2 } - -cLAPGroupsVenueConfigEntry OBJECT-TYPE - SYNTAX CLAPGroupsVenueConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in cLAPGroupsVlanMappingTable. - cLWlanProfileName is mandatory for creating a entry in - cLWlanConfigEntry." - INDEX { cLAPGroupName } - ::= { cLAPGroupsVenueConfigTable 1 } - -CLAPGroupsVenueConfigEntry ::= SEQUENCE { - cLAPGroupsVenueConfigVenueGroup INTEGER, - cLAPGroupsVenueConfigVenueType INTEGER, - cLAPGroupsVenueConfigVenueName SnmpAdminString, - cLAPGroupsVenueConfigLanguage SnmpAdminString, - cLAPGroupsOperatingClass BITS -} - -cLAPGroupsVenueConfigVenueGroup OBJECT-TYPE - SYNTAX INTEGER { - unspecified(1), - assembly(2), - business(3), - educational(4), - factoryAndIndustrial(5), - institutional(6), - mercantile(7), - residential(8), - storage(9), - utilityAndMisc(10), - vehicular(11), - outdoor(12) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object indicates the venue group - for this AP Group." - DEFVAL { unspecified } - ::= { cLAPGroupsVenueConfigEntry 1 } - -cLAPGroupsVenueConfigVenueType OBJECT-TYPE - SYNTAX INTEGER { - unspecified(1), - unspecifiedAssembly(2), - arena(3), - stadium(4), - passengerTerminal(5), - amphitheater(6), - amusementPark(7), - placeOfWorship(8), - conventionCenter(9), - library(10), - museum(11), - restaurant(12), - theater(13), - bar(14), - coffeeShop(15), - zooOrAquarium(16), - emergencyCoordinationCenter(17), - unspecifiedBusiness(18), - doctorOrDentistOffice(19), - bank(20), - fireStation(21), - policeStation(22), - postOffice(23), - professionalOffice(24), - researchAndDevelopmentFacility(25), - attorneyOffice(26), - unspecifiedEducational(27), - schoolPrimary(28), - schoolSecondary(29), - universityOrCollege(30), - unspecifiedFactoryAndIndustrial(31), - factory(32), - unspecifiedInstitutional(33), - hospital(34), - longTermCareFacility(35), - alcoholAndDrugRehabilitationCenter(36), - groupHome(37), - prisonOrJail(38), - unspecifiedMercantile(39), - retailStore(40), - groceryMarket(41), - atomotiveServiceStation(42), - shoppingMall(43), - gasStation(44), - unspecifiedResidential(45), - privateResidence(46), - hotelOrMotel(47), - dormitory(48), - boardingHouse(49), - unspecifiedStorage(50), - unspecifiedUtility(51), - unspecifiedVehicular(52), - automobileOrTruck(53), - airplane(54), - bus(55), - ferry(56), - shipOrBoat(57), - train(58), - motorBike(59), - unspecifiedOutdoor(60), - muniMeshNetwork(61), - cityPark(62), - restArea(63), - trafficControl(64), - busStop(65), - kiosk(66) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object indicates the venue type within - a particular venue group,for this AP Group. - The Venue group-Venue Type relationship is per - the following table: - Venue Group Venue Type Code Venue Description - =========== =============== ================= - 0 0 Unspecified - 0 1-255 Reserved - 1 0 Unspecified Assembly - 1 1 Arena - 1 2 Stadium - 1 3 Passenger Terminal (e.g., - airport, port, bus station, - ferry terminal, train station) - 1 4 Amphitheater - 1 5 Amusement Park - 1 6 Place of Worship - 1 7 Convention Center - 1 8 Library - 1 9 Museum - 1 10 Restaurant - 1 11 Theater - 1 12 Bar - 1 13 Coffee Shop - 1 14 Zoo or Aquarium - 1 15 Emergency Coordination Center - 1 16-255 Reserved - 2 0 Unspecified Business - 2 1 Doctor or Dentist office - 2 2 Bank - 2 3 Fire Station - 2 4 Police Station - 2 6 Post Office - 2 7 Professional Office - 2 8 Research and Development - Facility - 2 9 Attorney Office - 2 10-255 Reserved - 3 0 Unspecified Educational - 3 1 School, Primary - 3 2 School, Secondary - 3 3 University or College - 3 4-255 Reserved - 4 0 Unspecified Factory and - Industrial Factory - 4 2-255 Reserved - 5 0 Unspecified Institutional - 5 1 Hospital - 5 2 Long-Term Care Facility (e.g., - Nursing home, Hospice, etc.) - 5 3 Alcohol and Drug Re-habilitation - Center - 5 4 Group Home - 5 5 Prison or Jail - 5 6-255 Reserved - 6 0 Unspecified Mercantile - 6 1 Retail Store - 6 2 Grocery Market - 6 3 Automotive Service Station - 6 4-255 Reserved - 7 0 Unspecified Residential - 7 1 Hotel or Motel - 7 2 Dormitory - 7 3 Boarding House - 7 4-255 Reserved - 8 0-255 Reserved - 9 0-255 Reserved - 10 0 Unspecified Vehicular - 10 1 Automobile or Truck - 10 2 Airplane - 10 3 Bus - 10 4 Ferry - 10 5 Ship or Boat - 10 6 Train - 10 7-255 Reserved - 11 0 Unspecified Outdoor - 11 1 Muni-mesh Network - 11 2 City Park - 11 3-255 Reserved" - DEFVAL { unspecified } - ::= { cLAPGroupsVenueConfigEntry 2 } - -cLAPGroupsVenueConfigVenueName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..252)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This is the venue name defined for this AP Group." - ::= { cLAPGroupsVenueConfigEntry 3 } - -cLAPGroupsVenueConfigLanguage OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..3)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This is the Language defined for this AP Group." - ::= { cLAPGroupsVenueConfigEntry 4 } - -cLAPGroupsOperatingClass OBJECT-TYPE - SYNTAX BITS { - class81(0), - class83(1), - class84(2), - class112(3), - class113(4), - class115(5), - class116(6), - class117(7), - class118(8), - class119(9), - class120(10), - class121(11), - class122(12), - class123(13), - class124(14), - class125(15), - class126(16), - class127(17) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies the the group of channels on the - frequency band(s) the access network operates." - ::= { cLAPGroupsVenueConfigEntry 5 } - - - -cLAPGroupsMultipleVenueTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLAPGroupsMultipleVenueEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table for configuring multiple venues - for a configured site." - ::= { ciscoLwappAPGroupsVlanConfig 3 } - -cLAPGroupsMultipleVenueEntry OBJECT-TYPE - SYNTAX CLAPGroupsMultipleVenueEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in cLAPGroupsMultipleVenueTable. - cLAPGroupsMultipleVenueLanguage is mandatory - for creating a row in this table." - INDEX { - cLAPGroupName, - cLAPGroupsMultipleVenueLanguage - } - ::= { cLAPGroupsMultipleVenueTable 1 } - -CLAPGroupsMultipleVenueEntry ::= SEQUENCE { - cLAPGroupsMultipleVenueLanguage SnmpAdminString, - cLAPGroupsMultipleVenueName SnmpAdminString, - cLAPGroupsMultipleVenueRowStatus RowStatus -} - -cLAPGroupsMultipleVenueLanguage OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..3)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This is the Language defined for the particular venue name - entry." - ::= { cLAPGroupsMultipleVenueEntry 1 } - -cLAPGroupsMultipleVenueName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..252)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is the one of the venue names defined for this AP Group." - ::= { cLAPGroupsMultipleVenueEntry 2 } - -cLAPGroupsMultipleVenueRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - venue entry in the table." - ::= { cLAPGroupsMultipleVenueEntry 3 } - - --- ******************************************************************** --- WLAN Client Configuration --- ******************************************************************** - -cLWlanConfigClientTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanConfigClientEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the WLAN configuration for - the 802.11 wireless clients that are associated - with the APs that have joined this controller. - - The creation of a new row in cLWlanConfigTable, - through an explicit network management action, - results in creation of an entry in this table. - Similarly, deletion of a row in - cLWlanConfigTable through user action causes the - deletion of corresponding row in this table. - - This table has an one-to-one relationship with - cLWlanConfigTable. There exists an entry in this - table for each corresponding entry in the - cLWlanConfigTable." - ::= { ciscoLwappWlanConfig 2 } - -cLWlanConfigClientEntry OBJECT-TYPE - SYNTAX CLWlanConfigClientEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry represents a conceptual row in this - table and provides the information about the - clients associated on the WLAN, uniquely identified by - the cLWlanIndex." - INDEX { cLWlanIndex } - ::= { cLWlanConfigClientTable 1 } - -CLWlanConfigClientEntry ::= SEQUENCE { - cLWlanClientAclName DisplayString, - cLWlanP2PBlocking INTEGER, - cLWlanClientIPv6AclName DisplayString -} - -cLWlanClientAclName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the name of the ACL applied - to this WLAN. If it is required to remove the ACL - name for a WLAN, it should be set to 'none'. - ACL's are applied in the following priority order - - interfaces ACLs, WLAN ACLs, client ACLs." - ::= { cLWlanConfigClientEntry 1 } - -cLWlanP2PBlocking OBJECT-TYPE - SYNTAX INTEGER { - disable(1), - drop(2), - forwardUp(3) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents per WLAN peer-to-peer - blocking behavior on controller. Peer-to-peer - blocking means traffic between two clients on - same VLAN will not be bridged. - - disable : Peer-to-peer blocking is disabled - and traffic is bridged locally - within the controller. - drop : The packet will be discarded. - forwardUp : The packet will be forwarded on the - upstream VLAN. The device 'north' of - the controller can then make the - decision about what to do with the - packet." - ::= { cLWlanConfigClientEntry 2 } - -cLWlanClientIPv6AclName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the name of the IPv6 ACL applied - to this WLAN. If it is required to remove the ACL - name for a WLAN, it should be set to 'none'. - ACL's are applied in the following priority order - - interfaces ACLs, WLAN ACLs, client ACLs." - ::= { cLWlanConfigClientEntry 3 } - - --- ******************************************************************** --- WLAN QoS Configuration --- ******************************************************************** - -cLWlanConfigQosTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanConfigQosEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the QoS configuration for - the WLAN. - - The creation of a new row in cLWlanConfigTable, - through an explicit network management action, - results in creation of an entry in this table. - Similarly, deletion of a row in - cLWlanConfigTable through user action causes the - deletion of corresponding row in this table. - - This table has an one-to-one relationship with - cLWlanConfigTable. There exists an entry in this - table for each corresponding entry in the - cLWlanConfigTable." - ::= { ciscoLwappWlanConfig 3 } - -cLWlanConfigQosEntry OBJECT-TYPE - SYNTAX CLWlanConfigQosEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry represents a conceptual row in this - table and provides the information about the - QoS parameters on the WLAN, uniquely identified by - the cLWlanIndex." - INDEX { cLWlanIndex } - ::= { cLWlanConfigQosTable 1 } - -CLWlanConfigQosEntry ::= SEQUENCE { - cLWlanClientDSAverageDataRate Unsigned32, - cLWlanClientUSAverageDataRate Unsigned32, - cLWlanClientDSBurstDataRate Unsigned32, - cLWlanClientUSBurstDataRate Unsigned32, - cLWlanClientDSAvgRealTimeDataRate Unsigned32, - cLWlanClientUSAvgRealTimeDataRate Unsigned32, - cLWlanClientDSBurstRealTimeDataRate Unsigned32, - cLWlanClientUSBurstRealTimeDataRate Unsigned32, - cLWlanSsidDSAverageDataRate Unsigned32, - cLWlanSsidUSAverageDataRate Unsigned32, - cLWlanSsidDSBurstDataRate Unsigned32, - cLWlanSsidUSBurstDataRate Unsigned32, - cLWlanSsidDSAvgRealTimeDataRate Unsigned32, - cLWlanSsidUSAvgRealTimeDataRate Unsigned32, - cLWlanSsidDSBurstRealTimeDataRate Unsigned32, - cLWlanSsidUSBurstRealTimeDataRate Unsigned32 -} - -cLWlanClientDSAverageDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Average Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 1 } - -cLWlanClientUSAverageDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Average Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 2 } - -cLWlanClientDSBurstDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Burst Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 3 } - -cLWlanClientUSBurstDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Burst Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 4 } - -cLWlanClientDSAvgRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies average real time - Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 5 } - -cLWlanClientUSAvgRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies average real time - Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 6 } - -cLWlanClientDSBurstRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies burst real time - Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 7 } - -cLWlanClientUSBurstRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies burst real time - Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 8 } - -cLWlanSsidDSAverageDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Average - Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 9 } - -cLWlanSsidUSAverageDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Average - Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 10 } - -cLWlanSsidDSBurstDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Burst - Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 11 } - -cLWlanSsidUSBurstDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies Burst - Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 12 } - -cLWlanSsidDSAvgRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies average real time - Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 13 } - -cLWlanSsidUSAvgRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies average real time - Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 14 } - -cLWlanSsidDSBurstRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies burst real time - Data Rate per user on downstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 15 } - -cLWlanSsidUSBurstRealTimeDataRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies burst real time - Data Rate per user on upstream. - Value of 0 indicates the feature is disabled." - ::= { cLWlanConfigQosEntry 16 } - - --- ******************************************************************** --- WLAN IOS Configuration --- ******************************************************************** - -cLWlanConfigIosTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanConfigIosEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the WLAN configuration for - IOS profiles configured on the switch. - - The creation of a new row in cLWlanConfigTable, - through an explicit network management action, - results in creation of an entry in this table. - Similarly, deletion of a row in - cLWlanConfigTable through user action causes the - deletion of corresponding row in this table. - - This table has an one-to-one relationship with - cLWlanConfigTable. There exists an entry in this - table for each corresponding entry in the - cLWlanConfigTable." - ::= { ciscoLwappWlanConfig 4 } - -cLWlanConfigIosEntry OBJECT-TYPE - SYNTAX CLWlanConfigIosEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry represents a conceptual row in this - table and provides the information about the - clients associated on the WLAN, uniquely identified by - the cLWlanIndex." - INDEX { cLWlanIndex } - ::= { cLWlanConfigIosTable 1 } - -CLWlanConfigIosEntry ::= SEQUENCE { - cLWlanIosAccountingMethodListName SnmpAdminString, - cLWlanIosAuthenticationMethodListName SnmpAdminString, - cLWlanIosMacFilteringMethodListName SnmpAdminString, - cLWlanIosWebAuthMethodListName SnmpAdminString, - cLWlanIosQosUpStreamProfileName SnmpAdminString, - cLWlanIosQosDownStreamProfileName SnmpAdminString, - cLWlanIngressDHCPOption82Format Unsigned32, - cLWlanIngressDHCPOption82Ascii TruthValue, - cLWlanIngressDHCPOption82Rid TruthValue, - cLWlanIngressDHCPOption82Enable TruthValue, - cLWlanIosScanDeferPriority Unsigned32, - cLWlanIosWebAuthParameterMapName SnmpAdminString, - cLWlanIosQosClientUpStreamProfileName SnmpAdminString, - cLWlanIosQosClientDownStreamProfileName SnmpAdminString -} - -cLWlanIosAccountingMethodListName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the method list name used for - accounting on this WLAN." - ::= { cLWlanConfigIosEntry 1 } - -cLWlanIosAuthenticationMethodListName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the method list name used for - 802.1x authentication on this WLAN. This could be - LDAP, RADIUS, LOCAL AUTH." - ::= { cLWlanConfigIosEntry 2 } - -cLWlanIosMacFilteringMethodListName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the method list name used for - mac filtering on this WLAN." - ::= { cLWlanConfigIosEntry 3 } - -cLWlanIosWebAuthMethodListName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the method list name used for - WEB AUTH on this WLAN." - ::= { cLWlanConfigIosEntry 4 } - -cLWlanIosQosUpStreamProfileName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the profile name used for - upstream QOS configuration on this WLAN." - ::= { cLWlanConfigIosEntry 5 } - -cLWlanIosQosDownStreamProfileName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the profile name used for - downstream QOS configuration on this WLAN." - ::= { cLWlanConfigIosEntry 6 } - -cLWlanIngressDHCPOption82Format OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the DHCP - Option82 format for this WLAN." - ::= { cLWlanConfigIosEntry 7 } - -cLWlanIngressDHCPOption82Ascii OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the DHCP Option82 Ascii option - for this WLAN." - ::= { cLWlanConfigIosEntry 8 } - -cLWlanIngressDHCPOption82Rid OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the DHCP Option82 Rid option - for this WLAN." - ::= { cLWlanConfigIosEntry 9 } - -cLWlanIngressDHCPOption82Enable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the DHCP Option82 state - for this WLAN." - ::= { cLWlanConfigIosEntry 10 } - -cLWlanIosScanDeferPriority OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object specifies the priority of packets - that defer the off-channel scan. This is used in - off-channel scanning to improve performance - for medical devices using Radio Resource Management. - Each bit represents a packet type for which off-channel - scanning needs to be deferred." - ::= { cLWlanConfigIosEntry 11 } - -cLWlanIosWebAuthParameterMapName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the web auth parameter name - on this WLAN." - ::= { cLWlanConfigIosEntry 12 } - -cLWlanIosQosClientUpStreamProfileName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the profile name used for - upstream QOS client configuration on this WLAN." - ::= { cLWlanConfigIosEntry 13 } - -cLWlanIosQosClientDownStreamProfileName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object represents the profile name used for - downstream QOS client configuration on this WLAN." - ::= { cLWlanConfigIosEntry 14 } - - --- ******************************************************************** --- * WLAN Flexible Netflow Table --- ******************************************************************** - -cLWlanFlexibleNetflowTable OBJECT-TYPE - SYNTAX SEQUENCE OF CLWlanFlexibleNetflowEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table represents the flexible netflow policy details - per WLAN for AVC. - The creation of a new row in cLWlanFlexibleConfigTable, - through an explicit network management action, - results in creation of an entry in this table. - Similarly, deletion of a row in - cLWlanConfigTable through user action causes the - deletion of corresponding rows in this table. - For each wlan, there will be zero to many instances of - flexible netflow policies." - ::= { ciscoLwappWlanConfig 5 } - -cLWlanFlexibleNetflowEntry OBJECT-TYPE - SYNTAX CLWlanFlexibleNetflowEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry represents a conceptual row in this - table and provides the information about the flexible - netflow policy types associated on the WLAN, uniquely - identified by the cLWlanIndex and - cLWlanFlexibleNetflowPolicyTypeIndex." - INDEX { - cLWlanIndex, - cLWlanFlexibleNetflowPolicyTypeIndex - } - ::= { cLWlanFlexibleNetflowTable 1 } - -CLWlanFlexibleNetflowEntry ::= SEQUENCE { - cLWlanFlexibleNetflowPolicyTypeIndex INTEGER, - cLWlanFlexibleNetflowMonitorName SnmpAdminString, - cLWlanFlexibleNetflowRowStatus RowStatus -} - -cLWlanFlexibleNetflowPolicyTypeIndex OBJECT-TYPE - SYNTAX INTEGER { - none(0), - ipv4InputPolicy(1), - ipv4OutputPolicy(2), - ipv6InputPolicy(3), - ipv6OutputPolicy(4), - datalinkInputPolicy(5), - datalinkOutputPolicy(6) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object is used to set the netflow traffic direction - for AVC. - none(0) capture no traffic - IPV4 Input Policy(1) - IPV4 input policy - IPV4OutputPolicy(2) - IPV4 output policy - IPV6InputPolicy(3) - IPV6 input policy - IPV6OutputPolicy(4) - IPV6 output policy - DatalinkInputPolicy(5) - Datalink input policy - DatalinkOutputPolicy(6) - Datalink output policy." - ::= { cLWlanFlexibleNetflowEntry 1 } - -cLWlanFlexibleNetflowMonitorName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object represents the flexible netflow - monitor name assigned to this WLAN." - ::= { cLWlanFlexibleNetflowEntry 2 } - -cLWlanFlexibleNetflowRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Row Status for creation/deletion of a particular - flexible netflow policy - entry from the table" - ::= { cLWlanFlexibleNetflowEntry 3 } - - --- ******************************************************************** --- * Compliance statements --- ******************************************************************** - -ciscoLwappWlanMIBCompliances OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBConform 1 } - -ciscoLwappWlanMIBGroups OBJECT IDENTIFIER - ::= { ciscoLwappWlanMIBConform 2 } - - -ciscoLwappWlanMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { ciscoLwappWlanConfigGroup } - - OBJECT cLWlanRowStatus - SYNTAX INTEGER { - active(1), - createAndGo(4), - destroy(6) - } - DESCRIPTION - "An implementation is only required to support - three of the six enumerated values of the - RowStatus textual convention, specifically, - 'active', 'createAndGo' and 'destroy'." - ::= { ciscoLwappWlanMIBCompliances 1 } - -ciscoLwappWlanMIBComplianceRev1 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup - } - - OBJECT cLWlanRowStatus - SYNTAX INTEGER { - active(1), - createAndGo(4), - destroy(6) - } - DESCRIPTION - "An implementation is only required to support - three of the six enumerated values of the - RowStatus textual convention, specifically, - 'active', 'createAndGo' and 'destroy'." - ::= { ciscoLwappWlanMIBCompliances 2 } - -ciscoLwappWlanMIBComplianceRev2 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappWlan11uConfigGroup, - ciscoLwappAPGroupsVlanConfigGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1 - } - - OBJECT cLAPGroupsVlanConfigRowStatus - SYNTAX RowStatus - DESCRIPTION - "An implementation is only required to support - three of the six enumerated values of the - RowStatus textual convention, specifically, - 'active', 'createAndGo' and 'destroy'." - - OBJECT cLWlan11uOuiRowStatus - SYNTAX RowStatus - DESCRIPTION - "An implementation is only required to support - three of the six enumerated values of the - RowStatus textual convention, specifically, - 'active', 'createAndGo' and 'destroy'." - ::= { ciscoLwappWlanMIBCompliances 3 } - -ciscoLwappWlanMIBComplianceRev3 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappWlan11uConfigGroup, - ciscoLwappAPGroupsVlanConfigGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1, - ciscoLwappWlanConfigGroupSup3 - } - ::= { ciscoLwappWlanMIBCompliances 4 } - -ciscoLwappWlanMIBComplianceRev4 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappAPGroupsVlanConfigGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1, - ciscoLwappWlanConfigGroupSup3, - ciscoLwappWlan11uConfigGroupsup1, - ciscoLwappWlanServiceAdvertisementConfigGroup, - ciscoLwappWlanHotSpot2ConfigGroup, - ciscoLwappWlanIosConfigGroup, - ciscoLwappWlanQosConfigGroup, - ciscoLwappWlan11uConfigGroupsup2, - ciscoLwappWlanConfigGroupSup4, - ciscoLwappWlanHotSpot2ConfigGroupSup1, - ciscoLwappAPGroupsVlanConfigGroupSup1, - cLAPGroupsVenueConfigGroup, - cLAPGroupsMultipleVenueGroup, - ciscoLwappWlanConfigClientGroupSup2 - } - ::= { ciscoLwappWlanMIBCompliances 5 } - -ciscoLwappWlanMIBComplianceRev5 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappAPGroupsVlanConfigGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1, - ciscoLwappWlanConfigGroupSup3, - ciscoLwappWlan11uConfigGroupsup1, - ciscoLwappWlanServiceAdvertisementConfigGroup, - ciscoLwappWlanHotSpot2ConfigGroup, - ciscoLwappWlanIosConfigGroup, - ciscoLwappWlanQosConfigGroup, - ciscoLwappWlan11uConfigGroupsup2, - ciscoLwappWlanConfigGroupSup4, - ciscoLwappWlanHotSpot2ConfigGroupSup1, - ciscoLwappAPGroupsVlanConfigGroupSup1, - cLAPGroupsVenueConfigGroup, - cLAPGroupsMultipleVenueGroup, - ciscoLwappWlanConfigClientGroupSup2, - ciscoLwappWlanConfigFlexibleNetflowGroup - } - ::= { ciscoLwappWlanMIBCompliances 6 } - -ciscoLwappWlanMIBComplianceRev6 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1, - ciscoLwappWlanConfigGroupSup3, - ciscoLwappWlan11uConfigGroupsup1, - ciscoLwappWlanServiceAdvertisementConfigGroup, - ciscoLwappWlanHotSpot2ConfigGroup, - ciscoLwappWlanIosConfigGroup, - ciscoLwappWlanQosConfigGroup, - ciscoLwappWlan11uConfigGroupsup2, - ciscoLwappWlanConfigGroupSup4, - ciscoLwappWlanHotSpot2ConfigGroupSup1, - ciscoLwappAPGroupsVlanConfigGroupSup1, - cLAPGroupsVenueConfigGroup, - cLAPGroupsMultipleVenueGroup, - ciscoLwappWlanConfigClientGroupSup2, - ciscoLwappWlanConfigFlexibleNetflowGroup, - ciscoLwappAPGroupsVlanConfigGroupSup2 - } - ::= { ciscoLwappWlanMIBCompliances 7 } - -ciscoLwappWlanMIBComplianceRev7 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1, - ciscoLwappWlanConfigGroupSup3, - ciscoLwappWlan11uConfigGroupsup1, - ciscoLwappWlanServiceAdvertisementConfigGroup, - ciscoLwappWlanHotSpot2ConfigGroup, - ciscoLwappWlanIosConfigGroup, - ciscoLwappWlanQosConfigGroup, - ciscoLwappWlan11uConfigGroupsup2, - ciscoLwappWlanConfigGroupSup4, - ciscoLwappWlanHotSpot2ConfigGroupSup1, - ciscoLwappAPGroupsVlanConfigGroupSup1, - cLAPGroupsVenueConfigGroup, - cLAPGroupsMultipleVenueGroup, - ciscoLwappWlanConfigClientGroupSup2, - ciscoLwappWlanConfigFlexibleNetflowGroup, - ciscoLwappAPGroupsVlanConfigGroupSup2, - ciscoLwappWlanConfigGroupSup6 - } - ::= { ciscoLwappWlanMIBCompliances 8 } - -ciscoLwappWlanMIBComplianceRev8 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for the SNMP entities that - implement the ciscoLwappWlanMIB module." - MODULE -- this module - MANDATORY-GROUPS { - ciscoLwappWlanConfigGroupSup1, - ciscoLwappWlanConfigClientGroup, - ciscoLwappWlanConfigGroupSup2, - ciscoLwappWlanConfigClientGroupSup1, - ciscoLwappWlanConfigGroupSup3, - ciscoLwappWlan11uConfigGroupsup1, - ciscoLwappWlanServiceAdvertisementConfigGroup, - ciscoLwappWlanHotSpot2ConfigGroup, - ciscoLwappWlanIosConfigGroup, - ciscoLwappWlanQosConfigGroup, - ciscoLwappWlan11uConfigGroupsup2, - ciscoLwappWlanConfigGroupSup4, - ciscoLwappWlanHotSpot2ConfigGroupSup1, - ciscoLwappAPGroupsVlanConfigGroupSup1, - cLAPGroupsVenueConfigGroup, - cLAPGroupsMultipleVenueGroup, - ciscoLwappWlanConfigClientGroupSup2, - ciscoLwappWlanConfigFlexibleNetflowGroup, - ciscoLwappAPGroupsVlanConfigGroupSup2, - ciscoLwappWlanConfigGroupSup6, - ciscoLwappWlanConfigGroupSup7, - ciscoLwappWlanConfigGroupSup8 - } - ::= { ciscoLwappWlanMIBCompliances 9 } - --- ******************************************************************** --- * Units of conformance --- ******************************************************************** - -ciscoLwappWlanConfigGroup OBJECT-GROUP - OBJECTS { cLWlanRowStatus } - STATUS deprecated - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP. - ciscoLwappWlanConfigGroup object is superseded by - ciscoLwappWlanConfigGroupSup1." - ::= { ciscoLwappWlanMIBGroups 1 } - -ciscoLwappWlanConfigGroupSup1 OBJECT-GROUP - OBJECTS { - cLWlanRowStatus, - cLWlanProfileName, - cLWlanSsid, - cLWlanDiagChan, - cLWlanStorageType - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 2 } - -ciscoLwappWlanConfigClientGroup OBJECT-GROUP - OBJECTS { cLWlanClientAclName } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an 8021.11 clients." - ::= { ciscoLwappWlanMIBGroups 3 } - -ciscoLwappWlan11uConfigGroup OBJECT-GROUP - OBJECTS { - cLWlan11uStatus, - cLWlan11uInternetAccess, - cLWlan11uNetworkType, - cLWlan11uVenueGroup, - cLWlan11uVenueType, - cLWlan11uVenueName, - cLWlan11uOui, - cLWlan11uOuiIsBeacon, - cLWlan11uOuiRowStatus, - cLWlan11uOuiStorageType - } - STATUS deprecated - DESCRIPTION - "This collection of objects represents 802.11u - related configuration of WLANs on the controller - to be passed to an AP. - ciscoLwappWlan11uConfigGroup object is superseded - by ciscoLwappWlan11uConfigGroupsup1." - ::= { ciscoLwappWlanMIBGroups 4 } - -ciscoLwappAPGroupsVlanConfigGroup OBJECT-GROUP - OBJECTS { - cLAPGroupsVlanMappingInterfaceName, - cLAPGroupNACSupport, - cLAPGroupsVlanConfigRowStatus, - cLAPGroupsVlanConfigStorageType - } - STATUS deprecated - DESCRIPTION - "This collection of objects represent the - configuration of AP Groups Vlan on the controller - to be passed to an AP. - ciscoLwappAPGroupsVlanConfigGroup object is superseded by - ciscoLwappAPGroupsVlanConfigGroupSup2." - ::= { ciscoLwappWlanMIBGroups 5 } - -ciscoLwappWlanConfigGroupSup2 OBJECT-GROUP - OBJECTS { - cLWlanLoadBalancingEnable, - cLWlanBandSelectEnable, - cLWlanPassiveClientEnable, - cLWlanIsWired, - cLWlanIngressInterface, - cLWlanNACSupport, - cLWlanWepKeyChange, - cLWlanChdEnable, - cLWlan802dot11anDTIM, - cLWlan802dot11bgnDTIM - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 6 } - -ciscoLwappWlanConfigClientGroupSup1 OBJECT-GROUP - OBJECTS { cLWlanP2PBlocking } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an 8021.11 clients." - ::= { ciscoLwappWlanMIBGroups 7 } - -ciscoLwappWlanConfigGroupSup3 OBJECT-GROUP - OBJECTS { - cLWlanReAnchorRoamedVoiceClientsEnable, - cLWlanMulticastInterfaceEnable, - cLWlanMulticastInterface, - cLWlanMulticastDirectEnable, - cLWlanNACPostureSupport, - cLWlanMaxClientsAccepted, - cLWlanScanDeferPriority, - cLWlanScanDeferTime, - cLWlanLanSubType, - cLWlanWebAuthOnMacFilterFailureEnabled, - cLWlanStaticIpTunnelingEnabled - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 8 } - -ciscoLwappWlan11uConfigGroupsup1 OBJECT-GROUP - OBJECTS { - cLWlan11uStatus, - cLWlan11uInternetAccess, - cLWlan11uNetworkType, - cLWlan11uHessid, - cLWlan11uNetworkAuthType, - cLWlan11uOui, - cLWlan11uOuiIsBeacon, - cLWlan11uOuiRowStatus, - cLWlan11uOuiStorageType, - cLWlan11uRealmName, - cLWlan11uRealmRowStatus, - cLWlan11uRealmEapMethod, - cLWlan11uRealmEapRowStatus, - cLWlan11uRealmEapAuthMethod, - cLWlan11uRealmEapAuthParam, - cLWlan11uRealmEapAuthRowStatus, - cLWlan11uDomainName, - cLWlan11uDomainRowStatus, - cLWlan11u3gppCountryCode, - cLWlan11u3gppNetworkCode, - cLWlan11u3gppRowStatus, - cLWlan11uIpAddressAvailIpv4, - cLWlan11uIpAddressAvailIpv6 - } - STATUS current - DESCRIPTION - "This collection of objects represents 802.11u - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 9 } - -ciscoLwappWlanServiceAdvertisementConfigGroup OBJECT-GROUP - OBJECTS { - cLWlanServiceAdvertisementStatus, - cLWlanServiceAdvertisementMsapServerIndex - } - STATUS current - DESCRIPTION - "This collection of objects represents 802.11u - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 10 } - -ciscoLwappWlanHotSpot2ConfigGroup OBJECT-GROUP - OBJECTS { - cLWlanHotSpot2OperatorName, - cLWlanHotSpot2OperatorLanguage, - cLWlanHotSpot2OperatorRowStatus, - cLWlanHotSpot2PortConfigIpProtocol, - cLWlanHotSpot2PortConfigPortNumber, - cLWlanHotSpot2PortConfigStatus, - cLWlanHotSpot2PortConfigRowStatus - } - STATUS current - DESCRIPTION - "This collection of objects represents 802.11u - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 11 } - -ciscoLwappWlanIosConfigGroup OBJECT-GROUP - OBJECTS { - cLWlanIosAccountingMethodListName, - cLWlanIosAuthenticationMethodListName, - cLWlanIosMacFilteringMethodListName, - cLWlanIosWebAuthMethodListName, - cLWlanIosQosUpStreamProfileName, - cLWlanIosQosDownStreamProfileName, - cLWlanIngressDHCPOption82Format, - cLWlanIngressDHCPOption82Ascii, - cLWlanIngressDHCPOption82Rid, - cLWlanIngressDHCPOption82Enable, - cLWlanIosScanDeferPriority, - cLWlanIosWebAuthParameterMapName, - cLWlanIosQosClientUpStreamProfileName, - cLWlanIosQosClientDownStreamProfileName - } - STATUS current - DESCRIPTION - "This collection of objects represents IOS - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 12 } - -ciscoLwappWlanQosConfigGroup OBJECT-GROUP - OBJECTS { - cLWlanClientDSAverageDataRate, - cLWlanClientUSAverageDataRate, - cLWlanClientDSBurstDataRate, - cLWlanClientUSBurstDataRate, - cLWlanClientDSAvgRealTimeDataRate, - cLWlanClientUSAvgRealTimeDataRate, - cLWlanClientDSBurstRealTimeDataRate, - cLWlanClientUSBurstRealTimeDataRate, - cLWlanSsidDSAverageDataRate, - cLWlanSsidUSAverageDataRate, - cLWlanSsidDSBurstDataRate, - cLWlanSsidUSBurstDataRate, - cLWlanSsidDSAvgRealTimeDataRate, - cLWlanSsidUSAvgRealTimeDataRate, - cLWlanSsidDSBurstRealTimeDataRate, - cLWlanSsidUSBurstRealTimeDataRate - } - STATUS current - DESCRIPTION - "This collection of objects represents QoS - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 13 } - -ciscoLwappWlanConfigGroupSup4 OBJECT-GROUP - OBJECTS { - cLWlanKtsCacSupportEnabled, - cLWlanWifiDirectPolicyStatus, - cLWlanWebAuthIPv6AclName, - cLWlanHotSpot2Enabled, - cLWlanMaxClientsAllowedPerRadio, - cLWlanDhcpDeviceProfiling, - cLWlanMacAuthOverDot1xEnabled, - cLWlanUserTimeout, - cLWlanUserIdleThreshold, - cLWlanHttpDeviceProfiling, - cLWlanHotSpotClearConfig, - cLWlanRadiusAuthFourthServer, - cLWlanRadiusAuthFifthServer, - cLWlanRadiusAuthSixthServer, - cLWlanRadiusAcctFourthServer, - cLWlanRadiusAcctFifthServer, - cLWlanRadiusAcctSixthServer, - cLWlanSelfAnchorEnabled - } - STATUS deprecated - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP.This object is superceded by - ciscoLwappWlanConfigGroupSup5. - ciscoLwappWlanConfigGroupSup4 object is superseded by ciscoLwappWlanConfigGroupSup5." - ::= { ciscoLwappWlanMIBGroups 14 } - -ciscoLwappWlan11uConfigGroupsup2 OBJECT-GROUP - OBJECTS { cLWlan11uRealmEapAuthCredentialType } - STATUS current - DESCRIPTION - "This collection of objects represents 802.11u - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 15 } - -ciscoLwappWlanHotSpot2ConfigGroupSup1 OBJECT-GROUP - OBJECTS { - cLWlanHotSpot2WanLinkStatus, - cLWlanHotSpot2WanSymLinkStatus, - cLWlanHotSpot2WanDownLinkSpeed, - cLWlanHotSpot2WanUpLinkSpeed - } - STATUS current - DESCRIPTION - "This collection of objects represents 802.11u - related configuration of WLANs on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 16 } - -ciscoLwappAPGroupsVlanConfigGroupSup1 OBJECT-GROUP - OBJECTS { cLAPGroupsWlanOrderIndex } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of AP Groups Vlan on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 17 } - -cLAPGroupsVenueConfigGroup OBJECT-GROUP - OBJECTS { - cLAPGroupsVenueConfigVenueGroup, - cLAPGroupsVenueConfigVenueType, - cLAPGroupsVenueConfigVenueName, - cLAPGroupsVenueConfigLanguage, - cLAPGroupsOperatingClass - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of Venue groups on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 18 } - -cLAPGroupsMultipleVenueGroup OBJECT-GROUP - OBJECTS { - cLAPGroupsMultipleVenueName, - cLAPGroupsMultipleVenueRowStatus - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of Venue groups on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 19 } - -ciscoLwappWlanConfigClientGroupSup2 OBJECT-GROUP - OBJECTS { cLWlanClientIPv6AclName } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an 8021.11 clients." - ::= { ciscoLwappWlanMIBGroups 20 } - -ciscoLwappWlanConfigFlexibleNetflowGroup OBJECT-GROUP - OBJECTS { - cLWlanFlexibleNetflowMonitorName, - cLWlanFlexibleNetflowRowStatus - } - STATUS current - DESCRIPTION - "This collection of objects represent the configuration - of flexible netflow policy details per WLAN - on the conroller to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 21 } - -ciscoLwappWlanConfigGroupSup5 OBJECT-GROUP - OBJECTS { - cLWlanKtsCacSupportEnabled, - cLWlanWifiDirectPolicyStatus, - cLWlanWebAuthIPv6AclName, - cLWlanHotSpot2Enabled, - cLWlanMaxClientsAllowedPerRadio, - cLWlanDhcpDeviceProfiling, - cLWlanMacAuthOverDot1xEnabled, - cLWlanUserTimeout, - cLWlanUserIdleThreshold, - cLWlanHttpDeviceProfiling, - cLWlanHotSpotClearConfig, - cLWlanRadiusAuthFourthServer, - cLWlanRadiusAuthFifthServer, - cLWlanRadiusAuthSixthServer, - cLWlanRadiusAcctFourthServer, - cLWlanRadiusAcctFifthServer, - cLWlanRadiusAcctSixthServer, - cLWlanSelfAnchorEnabled, - cLWlanUniversalAdmin - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 22 } - -ciscoLwappAPGroupsVlanConfigGroupSup2 OBJECT-GROUP - OBJECTS { - cLAPGroupNACSupport, - cLAPGroupsVlanConfigRowStatus, - cLAPGroupsVlanConfigStorageType, - cLAPGroupsVlanMappingInterfaceNameRev1 - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of AP Groups Vlan on the controller - to be passed to an AP." - ::= { ciscoLwappWlanMIBGroups 23 } - -ciscoLwappWlanConfigGroupSup6 OBJECT-GROUP - OBJECTS { cLWlan11acMuMimoEnabled } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of WLANs on the controller to be passed - to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 24 } - -ciscoLwappWlanConfigGroupSup7 OBJECT-GROUP - OBJECTS { - cLAPGroupsHyperlocationEnable, - cLAPGroupsPakRssiThreshold, - cLAPGroupsPakRssiThresholdTrigger, - cLAPGroupsPakRssiNtpIpAddressType, - cLAPGroupsPakRssiNtpAddress - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of AP Groups HyperLocation on the - controller to be passed to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 25 } - -ciscoLwappWlanConfigGroupSup8 OBJECT-GROUP - OBJECTS { - cLAPGroupsLANPortStatus, - cLAPGroupsLANPortPoeStatus, - cLAPGroupsLANPortRlanName, - cLAPGroupsLANPortRowStatus, - cLAPGroupsExtModuleStatus, - cLAPGroupsExtModuleRlanName - } - STATUS current - DESCRIPTION - "This collection of objects represent the - configuration of AP Groups LAN Port on the controller - to be passed to an LWAPP AP." - ::= { ciscoLwappWlanMIBGroups 26 } - -END - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/mibs/orig/CISCO-MEMORY-POOL-MIB b/mibs/orig/CISCO-MEMORY-POOL-MIB deleted file mode 100644 index 2b427a0..0000000 --- a/mibs/orig/CISCO-MEMORY-POOL-MIB +++ /dev/null @@ -1,475 +0,0 @@ --- ***************************************************************** --- CISCO-MEMORY-POOL-MIB --- --- February 1996, Jeffrey T. Johnson --- --- July 2001, Seth Wang --- --- Copyright (c) 2001, 2013 by cisco Systems Inc. --- All rights reserved. --- ***************************************************************** - -CISCO-MEMORY-POOL-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-TYPE, - Integer32, - Gauge32, - NOTIFICATION-TYPE - FROM SNMPv2-SMI - MODULE-COMPLIANCE, - OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF - TEXTUAL-CONVENTION, - DisplayString, - TruthValue - FROM SNMPv2-TC - Percent - FROM CISCO-QOS-PIB-MIB - ciscoMgmt - FROM CISCO-SMI; - - -ciscoMemoryPoolMIB MODULE-IDENTITY - LAST-UPDATED "201309180000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - "Postal: Cisco Systems, Inc. - 170 West Tasman Drive - San Jose, CA 95134-1706 - USA - - Tel: +1 408 526 4000 - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "MIB module for monitoring memory pools" - REVISION "201309180000Z" - DESCRIPTION - "Added new notification ciscoMemoryPoolLowMemoryNotif. - Added new notification ciscoMemoryPoolLowMemoryRecoveryNotif. - Added new object ciscoMemoryPoolLowMemoryNotifEnable. - Added new object ciscoMemoryPoolLowMemoryNotifThreshold. - Added new group ciscoMemoryPoolGroupRev1 which deprecates - ciscoMemoryPoolGroup. - Added new compliance ciscoMemoryPoolComplianceRev2 which - deprecates ciscoMemoryPoolComplianceRev1." - REVISION "200107310000Z" - DESCRIPTION - "Added a new table, ciscoMemoryPoolUtilizationTable, which - provides information about memory utilization." - REVISION "199602010000Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { ciscoMgmt 48 } - - - -CiscoMemoryPoolTypes ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the different types of memory pools that - may be present in a managed device. Memory pools can - be roughly categorized into two groups, predefined - pools and dynamic pools. The following pool types - are currently predefined: - 1: processor memory - 2: i/o memory - 3: pci memory - 4: fast memory - 5: multibus memory - - Dynamic pools will have a pool type value greater than - any of the predefined types listed above. - - Note that only the processor pool is required to be - supported by all devices. Support for other pool types - is dependent on the device being managed." - SYNTAX Integer32 (1..65535) -ciscoMemoryPoolObjects OBJECT IDENTIFIER - ::= { ciscoMemoryPoolMIB 1 } - - -ciscoMemoryPoolTable OBJECT-TYPE - SYNTAX SEQUENCE OF CiscoMemoryPoolEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of memory pool monitoring entries." - ::= { ciscoMemoryPoolObjects 1 } - -ciscoMemoryPoolEntry OBJECT-TYPE - SYNTAX CiscoMemoryPoolEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the memory pool monitoring table." - INDEX { ciscoMemoryPoolType } - ::= { ciscoMemoryPoolTable 1 } - -CiscoMemoryPoolEntry ::= SEQUENCE { - ciscoMemoryPoolType CiscoMemoryPoolTypes, - ciscoMemoryPoolName DisplayString, - ciscoMemoryPoolAlternate Integer32, - ciscoMemoryPoolValid TruthValue, - ciscoMemoryPoolUsed Gauge32, - ciscoMemoryPoolFree Gauge32, - ciscoMemoryPoolLargestFree Gauge32, - ciscoMemoryPoolLowMemoryNotifThreshold Percent -} - -ciscoMemoryPoolType OBJECT-TYPE - SYNTAX CiscoMemoryPoolTypes - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The type of memory pool for which this entry - contains information." - ::= { ciscoMemoryPoolEntry 1 } - -ciscoMemoryPoolName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual name assigned to the memory pool. This - object is suitable for output to a human operator, - and may also be used to distinguish among the various - pool types, especially among dynamic pools." - ::= { ciscoMemoryPoolEntry 2 } - -ciscoMemoryPoolAlternate OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether or not this memory pool has an - alternate pool configured. Alternate pools are - used for fallback when the current pool runs out - of memory. - - If an instance of this object has a value of zero, - then this pool does not have an alternate. Otherwise - the value of this object is the same as the value of - ciscoMemoryPoolType of the alternate pool." - ::= { ciscoMemoryPoolEntry 3 } - -ciscoMemoryPoolValid OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether or not the remaining objects in - this entry contain accurate data. If an instance - of this object has the value false (which in and of - itself indicates an internal error condition), the - values of the remaining objects in the conceptual row - may contain inaccurate information (specifically, the - reported values may be less than the actual values)." - ::= { ciscoMemoryPoolEntry 4 } - -ciscoMemoryPoolUsed OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the number of bytes from the memory pool - that are currently in use by applications on the - managed device." - ::= { ciscoMemoryPoolEntry 5 } - -ciscoMemoryPoolFree OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the number of bytes from the memory pool - that are currently unused on the managed device. - - Note that the sum of ciscoMemoryPoolUsed and - ciscoMemoryPoolFree is the total amount of memory - in the pool" - ::= { ciscoMemoryPoolEntry 6 } - -ciscoMemoryPoolLargestFree OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the largest number of contiguous bytes - from the memory pool that are currently unused on - the managed device." - ::= { ciscoMemoryPoolEntry 7 } - -ciscoMemoryPoolLowMemoryNotifThreshold OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used to indicate the threshold value in - percentage of free memory remaining in a memory pool. - If the free memory available goes below this threshold value and - if ciscoMemoryPoolLowMemoryNotifEnable is set to 'true', - ciscoMemoryPoolLowMemoryNotif will be generated. When the - available free memory comes back to the threshold value - ciscoMemoryPoolLowMemoryRecoveryNotif will be generated." - ::= { ciscoMemoryPoolEntry 8 } - - - -ciscoMemoryPoolUtilizationTable OBJECT-TYPE - SYNTAX SEQUENCE OF CiscoMemoryPoolUtilizationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of memory pool utilization entries. Each of the - objects provides a general idea of how much of the memory - pool has been used over a given period of time. It is - determined as a weighted decaying average." - ::= { ciscoMemoryPoolObjects 2 } - -ciscoMemoryPoolUtilizationEntry OBJECT-TYPE - SYNTAX CiscoMemoryPoolUtilizationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the memory pool utilization table." - AUGMENTS { ciscoMemoryPoolEntry } - ::= { ciscoMemoryPoolUtilizationTable 1 } - -CiscoMemoryPoolUtilizationEntry ::= SEQUENCE { - ciscoMemoryPoolUtilization1Min Percent, - ciscoMemoryPoolUtilization5Min Percent, - ciscoMemoryPoolUtilization10Min Percent -} - -ciscoMemoryPoolUtilization1Min OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the memory pool utilization for 1 minute." - ::= { ciscoMemoryPoolUtilizationEntry 1 } - -ciscoMemoryPoolUtilization5Min OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the memory pool utilization for 5 minutes." - ::= { ciscoMemoryPoolUtilizationEntry 2 } - -ciscoMemoryPoolUtilization10Min OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the memory pool utilization for 10 minutes." - ::= { ciscoMemoryPoolUtilizationEntry 3 } - - - -ciscoMemoryPoolLowMemoryNotifEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used to enable or disable the generation of - notification when the available memory in the system has fallen - below ciscoMemoryPoolLowMemoryNotifThreshold and on recovery. - - Setting this object to 'true' will generate - ciscoMemoryPoolLowMemoryNotif and - ciscoMemoryPoolLowMemoryRecoveryNotif. - - Setting this object to 'false' will disable the generation of - ciscoMemoryPoolLowMemoryNotif and - ciscoMemoryPoolLowMemoryRecoveryNotif." - ::= { ciscoMemoryPoolObjects 3 } --- notifications - -ciscoMemoryPoolNotifications OBJECT IDENTIFIER - ::= { ciscoMemoryPoolMIB 2 } - -ciscoMemoryPoolMIBNotificationPrefix OBJECT IDENTIFIER - ::= { ciscoMemoryPoolNotifications 0 } - - -ciscoMemoryPoolLowMemoryNotif NOTIFICATION-TYPE - OBJECTS { - ciscoMemoryPoolName, - ciscoMemoryPoolUsed - } - STATUS current - DESCRIPTION - "This notification is generated when the percentage of free - memory in the system has fallen below - ciscoMemoryPoolLowMemoryNotifThreshold and when the value of - ciscoMemoryPoolLowMemoryNotifEnable is set to 'true'. - - ciscoMemoryPoolName indicates the name of the memory pool for - which the notification is being generated. - - ciscoMemoryPoolUsed indicates the used memory in bytes for the - memory pool." - ::= { ciscoMemoryPoolMIBNotificationPrefix 1 } - -ciscoMemoryPoolLowMemoryRecoveryNotif NOTIFICATION-TYPE - OBJECTS { - ciscoMemoryPoolName, - ciscoMemoryPoolUsed - } - STATUS current - DESCRIPTION - "This notification is generated when the percentage of free - memory in the system has returned to - ciscoMemoryPoolLowMemoryNotifThreshold after suffering from a - low memory. This notification is generated when the value of - ciscoMemoryPoolLowMemoryNotifEnable is set to 'true'. This - notification is generated as a recovery notification for - ciscoMemoryPoolLowMemoryNotif. - - ciscoMemoryPoolName indicates the name of the memory pool for - which the notification is being generated. - - ciscoMemoryPoolUsed indicates the used memory in bytes for the - memory pool." - ::= { ciscoMemoryPoolMIBNotificationPrefix 2 } --- conformance information - -ciscoMemoryPoolConformance OBJECT IDENTIFIER - ::= { ciscoMemoryPoolMIB 3 } - -ciscoMemoryPoolCompliances OBJECT IDENTIFIER - ::= { ciscoMemoryPoolConformance 1 } - -ciscoMemoryPoolGroups OBJECT IDENTIFIER - ::= { ciscoMemoryPoolConformance 2 } - - --- compliance statements - -ciscoMemoryPoolCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Memory Pool MIB" - MODULE -- this module - MANDATORY-GROUPS { ciscoMemoryPoolGroup } - ::= { ciscoMemoryPoolCompliances 1 } - -ciscoMemoryPoolComplianceRev1 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Memory Pool MIB" - MODULE -- this module - MANDATORY-GROUPS { ciscoMemoryPoolGroup } - - GROUP ciscoMemoryPoolUtilizationGroup - DESCRIPTION - "Per memory pool utilization statistics is mandatory for - the managed system that supports memory pool utilization." - ::= { ciscoMemoryPoolCompliances 2 } - -ciscoMemoryPoolComplianceRev2 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Memory Pool MIB" - MODULE -- this module - MANDATORY-GROUPS { ciscoMemoryPoolGroupRev1 } - - GROUP ciscoMemoryPoolUtilizationGroup - DESCRIPTION - "Per memory pool utilization statistics is mandatory for - the managed system that supports memory pool utilization." - - GROUP ciscoMemoryPoolNotificationGroup - DESCRIPTION - "ciscoMemoryPoolNotificationGroup is mandatory for the managed - system that supports memory pool notifications." - - GROUP ciscoMemoryPoolNotificationCtrlGroup - DESCRIPTION - "ciscoMemoryPoolNotificationCtrlGroup is mandatory for the - managed system that supports memory pool notifications." - ::= { ciscoMemoryPoolCompliances 3 } - --- units of conformance - -ciscoMemoryPoolGroup OBJECT-GROUP - OBJECTS { - ciscoMemoryPoolName, - ciscoMemoryPoolAlternate, - ciscoMemoryPoolValid, - ciscoMemoryPoolUsed, - ciscoMemoryPoolFree, - ciscoMemoryPoolLargestFree - } - STATUS deprecated - DESCRIPTION - "A collection of objects providing memory pool monitoring." - ::= { ciscoMemoryPoolGroups 1 } - -ciscoMemoryPoolUtilizationGroup OBJECT-GROUP - OBJECTS { - ciscoMemoryPoolUtilization1Min, - ciscoMemoryPoolUtilization5Min, - ciscoMemoryPoolUtilization10Min - } - STATUS current - DESCRIPTION - "An optional group providing a collection of memory pool - utilization objects." - ::= { ciscoMemoryPoolGroups 2 } - -ciscoMemoryPoolNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { - ciscoMemoryPoolLowMemoryNotif, - ciscoMemoryPoolLowMemoryRecoveryNotif - } - STATUS current - DESCRIPTION - "A collection of all the notifications supported in the - CISCO-MEMORY-POOL-MIB." - ::= { ciscoMemoryPoolGroups 3 } - -ciscoMemoryPoolNotificationCtrlGroup OBJECT-GROUP - OBJECTS { ciscoMemoryPoolLowMemoryNotifEnable } - STATUS current - DESCRIPTION - "A collection of all the notification control objects." - ::= { ciscoMemoryPoolGroups 4 } - -ciscoMemoryPoolGroupRev1 OBJECT-GROUP - OBJECTS { - ciscoMemoryPoolName, - ciscoMemoryPoolAlternate, - ciscoMemoryPoolValid, - ciscoMemoryPoolUsed, - ciscoMemoryPoolFree, - ciscoMemoryPoolLargestFree, - ciscoMemoryPoolLowMemoryNotifThreshold - } - STATUS current - DESCRIPTION - "A collection of objects providing memory pool monitoring." - ::= { ciscoMemoryPoolGroups 5 } - -END - - - - - - - - - - diff --git a/mibs/orig/CISCO-PROCESS-MIB b/mibs/orig/CISCO-PROCESS-MIB deleted file mode 100644 index a4cc59a..0000000 --- a/mibs/orig/CISCO-PROCESS-MIB +++ /dev/null @@ -1,3311 +0,0 @@ --- ***************************************************************** --- CISCO-PROCESS-MIB.my: MIB for CPU and process statistics --- --- August 1998, Ramanathan R. Kavasseri --- --- Copyright (c) 1998, 2001, 2003, 2006-2011 by cisco Systems Inc. --- All rights reserved. --- ***************************************************************** --- --- This mib was extracted from RFC xxx - -CISCO-PROCESS-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-TYPE, - Counter32, - Gauge32, - Unsigned32, - NOTIFICATION-TYPE, - Counter64 - FROM SNMPv2-SMI - MODULE-COMPLIANCE, - OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF - TimeStamp, - DisplayString, - RowStatus, - TruthValue, - RowPointer, - TEXTUAL-CONVENTION - FROM SNMPv2-TC - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB - CounterBasedGauge64 - FROM HCNUM-TC - EntPhysicalIndexOrZero, - Unsigned64 - FROM CISCO-TC - ciscoMgmt - FROM CISCO-SMI; - - -ciscoProcessMIB MODULE-IDENTITY - LAST-UPDATED "201106230000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - "Cisco Systems - Customer Service - - Postal: 170 W Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "The MIB module to describe active system processes. - Virtual Machine refers to those OS which can run the - code or process of a different executional model OS. - Virtual Process assume the executional model - of a OS which is different from Native OS. Virtual - Processes are also referred as Tasks. - Thread is a sequence of instructions to be executed - within a program. Thread which adhere to POSIX standard - is referred as a POSIX thread." - REVISION "201106230000Z" - DESCRIPTION - "Added new table cpmCoreTable as well as a new optoinal - compliance group cpmCoreGroup." - REVISION "201005060000Z" - DESCRIPTION - "Added the following new objects to the cpmCPUTotalTable. - cpmCPUMemoryCommitted, cpmCPUMemoryCommittedOvrFlow and - cpmCPUMemoryHCCommitted. - - Added new compliance group cpmCPUTotalMemoryCommitGroup which - includes Committed memory objects. - - Added new compliance cProcessMIBComplianceRev5 which - deprecates cProcessMIBComplianceRev4." - REVISION "200910120000Z" - DESCRIPTION - "Added TEXTUAL-CONVENTION called CPULoadAverage. - Added the following new objects to cpmCPUTotalTable. - cpmCPULoadAvg1min, cpmCPULoadAvg5min, cpmCPULoadAvg15min. - - Added new compliance group cpmCPULoadAvgGroup which includes - load average objects. - - Added new compliance cProcessMIBComplianceRev4 which - deprecates cProcessMIBComplianceRev3." - REVISION "200901230000Z" - DESCRIPTION - "Added the following new objects to cpmCPUTotalTable. - cpmCPUMemoryUsedOvrflw, cpmCPUMemoryHCUsed, - cpmCPUMemoryFreeOvrflw, cpmCPUMemoryHCFree, - cpmCPUMemoryKernelReservedOvrflw, cpmCPUMemoryHCKernelReserved, - cpmCPUMemoryLowestOvrflw, cpmCPUMemoryHCLowest - - Added the following new objects to cpmProcessExtRevTable. - cpmProcExtMemAllocatedRevOvrflw, cpmProcExtHCMemAllocatedRev, - cpmProcExtMemFreedRevOvrflw, cpmProcExtHCMemFreedRev, - cpmProcessTextSegmentSizeOvrflw, cpmProcessHCTextSegmentSize, - cpmProcessDataSegmentSizeOvrflw, cpmProcessHCDataSegmentSize, - cpmProcessStackSizeOvrflw, cpmProcessHCStackSize, - cpmProcessDynamicMemorySizeOvrflw, cpmProcessHCDynamicMemorySize - - Added the following new objects to cpmThreadTable. - cpmThreadStackSizeOvrflw, cpmThreadHCStackSize - - Added the following new objects to cpmVirtualProcessTable. - cpmVirtualProcessMemAllocatedOvrflw, - cpmVirtualProcessHCMemAllocated, - cpmVirtualProcessMemFreedOvrflw, cpmVirtualProcessHCMemFreed - - Added following new compliance groups. - cpmCPUTotalOverflowGroup, cpmCPUTotalOverflowGroup, - cpmProcessExtRevOverflowGroup, cpmProcessExtRevHCGroup, - cpmThreadOverflowGroup, cpmThreadHCGroup, - cpmVirtualProcessOverflowGroup, cpmVirtualProcessHCGroup - - Added new compliance cProcessMIBComplianceRev3 which deprecates - cProcessMIBComplianceRev2." - REVISION "200703230000Z" - DESCRIPTION - "Added new objects to support POSIX compliant OS. Added - cpmThread, cpmThreadTable, cpmVirtualProcess, - cpmVirtualProcessTable and updated cpmCPUTotalTable, - cpmProcessExtRevTable. Added cProcessMIBComplianceRev2 - by deprecating cProcessMIBComplianceRev1. Added - cpmCPUPosixMemoryGroup, cpmPosixProcessGroup, - cpmThreadGroup, cpmVirtualProcessGroup." - REVISION "200301220000Z" - DESCRIPTION - "cpmCPUThresholdTable, cpmCPUHistoryTable, - cpmCPUProcessHistoryTable are added for CPU thresholding - feature." - REVISION "200105180000Z" - DESCRIPTION - "The objects cpmProcExtUtil5Sec, cpmProcExtUtil1Min, - cpmProcExtUtil5Min,cpmCPUTotal5sec, cpmCPUTotal1min - and cpmCPUTotal5min are deprecated to increase the - value range as 0..100. The table cpmProcessExtTable - is deprecated. The new objects added are - cpmProcessExtRevTable, cpmProcExtMemAllocatedRev, - cpmProcExtMemFreedRev, cpmProcExtInvokedRev, - cpmProcExtRuntimeRev, cpmProcExtUtil5SecRev, - cpmProcExtUtil1MinRev, cpmCPUTotal5MinRev, - cpmCPUTotal5secRev, cpmCPUTotal1minRev and - cpmCPUTotal5minRev." - REVISION "9804150000Z" - DESCRIPTION - "Initial version of this MIB." - ::= { ciscoMgmt 109 } - - - -CPULoadAverage ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "The average number of processes in the queue waiting for CPU - time over the last N minutes, where the N is defined by the - object using this TC. This is similar to UNIX/Linux system load - average. The calculation may vary by different OS kernels, so - refer to the specific system document of your interest. - The object value, which uses this TC, reflects the average - number of runnable processes with units of hundredths of - processes, i.e. a value of 183 indicates the average number of - runnable processes over the N minutes is 1.83." - SYNTAX Unsigned32 --- This MIB displays memory and CPU utilization on cisco devices. CPU --- utilization will give a general idea of how busy the processor is. --- The numbers are a ratio of the current idle time over the longest --- idle time. Please note that this information should be used as an --- estimate only. - -ciscoProcessMIBObjects OBJECT IDENTIFIER - ::= { ciscoProcessMIB 1 } - -cpmCPU OBJECT IDENTIFIER - ::= { ciscoProcessMIBObjects 1 } - -cpmProcess OBJECT IDENTIFIER - ::= { ciscoProcessMIBObjects 2 } - -cpmThread OBJECT IDENTIFIER - ::= { ciscoProcessMIBObjects 3 } - -cpmVirtualProcess OBJECT IDENTIFIER - ::= { ciscoProcessMIBObjects 4 } - -cpmCPUHistory OBJECT IDENTIFIER - ::= { cpmProcess 5 } - --- Cisco CPU Total Table - -cpmCPUTotalTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmCPUTotalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of overall CPU statistics." - ::= { cpmCPU 1 } - -cpmCPUTotalEntry OBJECT-TYPE - SYNTAX CpmCPUTotalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Overall information about the CPU load. Entries in this - table come and go as CPUs are added and removed from the - system." - INDEX { cpmCPUTotalIndex } - ::= { cpmCPUTotalTable 1 } - -CpmCPUTotalEntry ::= SEQUENCE { - cpmCPUTotalIndex Unsigned32, - cpmCPUTotalPhysicalIndex EntPhysicalIndexOrZero, - cpmCPUTotal5sec Gauge32, - cpmCPUTotal1min Gauge32, - cpmCPUTotal5min Gauge32, - cpmCPUTotal5secRev Gauge32, - cpmCPUTotal1minRev Gauge32, - cpmCPUTotal5minRev Gauge32, - cpmCPUMonInterval Unsigned32, - cpmCPUTotalMonIntervalValue Gauge32, - cpmCPUInterruptMonIntervalValue Gauge32, - cpmCPUMemoryUsed Gauge32, - cpmCPUMemoryFree Gauge32, - cpmCPUMemoryKernelReserved Gauge32, - cpmCPUMemoryLowest Gauge32, - cpmCPUMemoryUsedOvrflw Gauge32, - cpmCPUMemoryHCUsed CounterBasedGauge64, - cpmCPUMemoryFreeOvrflw Gauge32, - cpmCPUMemoryHCFree Counter64, - cpmCPUMemoryKernelReservedOvrflw Gauge32, - cpmCPUMemoryHCKernelReserved CounterBasedGauge64, - cpmCPUMemoryLowestOvrflw Gauge32, - cpmCPUMemoryHCLowest CounterBasedGauge64, - cpmCPULoadAvg1min CPULoadAverage, - cpmCPULoadAvg5min CPULoadAverage, - cpmCPULoadAvg15min CPULoadAverage, - cpmCPUMemoryCommitted Gauge32, - cpmCPUMemoryCommittedOvrflw Gauge32, - cpmCPUMemoryHCCommitted CounterBasedGauge64 -} - -cpmCPUTotalIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..4294967295) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely represents a CPU (or group of CPUs) - whose CPU load information is reported by a row in this table. - This index is assigned arbitrarily by the engine - and is not saved over reboots." - ::= { cpmCPUTotalEntry 1 } - -cpmCPUTotalPhysicalIndex OBJECT-TYPE - SYNTAX EntPhysicalIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The entPhysicalIndex of the physical entity for which - the CPU statistics in this entry are maintained. - The physical entity can be a CPU chip, a group of CPUs, - a CPU card etc. The exact type of this entity is described by - its entPhysicalVendorType value. If the CPU statistics - in this entry correspond to more than one physical entity - (or to no physical entity), or if the entPhysicalTable is - not supported on the SNMP agent, the value of this object - must be zero." - ::= { cpmCPUTotalEntry 2 } - -cpmCPUTotal5sec OBJECT-TYPE - SYNTAX Gauge32 (1..100) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The overall CPU busy percentage in the last 5 second - period. This object obsoletes the busyPer object from - the OLD-CISCO-SYSTEM-MIB. This object is deprecated - by cpmCPUTotal5secRev which has the changed range of - value (0..100)." - ::= { cpmCPUTotalEntry 3 } - -cpmCPUTotal1min OBJECT-TYPE - SYNTAX Gauge32 (1..100) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The overall CPU busy percentage in the last 1 minute - period. This object obsoletes the avgBusy1 object from - the OLD-CISCO-SYSTEM-MIB. This object is deprecated - by cpmCPUTotal1minRev which has the changed range - of value (0..100)." - ::= { cpmCPUTotalEntry 4 } - -cpmCPUTotal5min OBJECT-TYPE - SYNTAX Gauge32 (1..100) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The overall CPU busy percentage in the last 5 minute - period. This object deprecates the avgBusy5 object from - the OLD-CISCO-SYSTEM-MIB. This object is deprecated - by cpmCPUTotal5minRev which has the changed range - of value (0..100)." - ::= { cpmCPUTotalEntry 5 } - -cpmCPUTotal5secRev OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The overall CPU busy percentage in the last 5 second - period. This object deprecates the object cpmCPUTotal5sec - and increases the value range to (0..100). This object - is deprecated by cpmCPUTotalMonIntervalValue" - ::= { cpmCPUTotalEntry 6 } - -cpmCPUTotal1minRev OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU busy percentage in the last 1 minute - period. This object deprecates the object cpmCPUTotal1min - and increases the value range to (0..100)." - ::= { cpmCPUTotalEntry 7 } - -cpmCPUTotal5minRev OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU busy percentage in the last 5 minute - period. This object deprecates the object cpmCPUTotal5min - and increases the value range to (0..100)." - ::= { cpmCPUTotalEntry 8 } - -cpmCPUMonInterval OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "CPU usage monitoring interval. The value of this - object in seconds indicates the how often the - CPU utilization is calculated and monitored." - ::= { cpmCPUTotalEntry 9 } - -cpmCPUTotalMonIntervalValue OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU busy percentage in the last - cpmCPUMonInterval period. - This object deprecates the object cpmCPUTotal5secRev." - ::= { cpmCPUTotalEntry 10 } - -cpmCPUInterruptMonIntervalValue OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU busy percentage in the - interrupt context in the last cpmCPUMonInterval - period." - ::= { cpmCPUTotalEntry 11 } - -cpmCPUMemoryUsed OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is currently - under use." - ::= { cpmCPUTotalEntry 12 } - -cpmCPUMemoryFree OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is currently - free." - ::= { cpmCPUTotalEntry 13 } - -cpmCPUMemoryKernelReserved OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is reserved - for kernel usage." - ::= { cpmCPUTotalEntry 14 } - -cpmCPUMemoryLowest OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The lowest free memory that has been recorded since - device has booted." - ::= { cpmCPUTotalEntry 15 } - -cpmCPUMemoryUsedOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of cpmCPUMemoryUsed. - This object needs to be supported only when the value of - cpmCPUMemoryUsed exceeds 32-bit, otherwise this object value - would be set to 0." - ::= { cpmCPUTotalEntry 16 } - -cpmCPUMemoryHCUsed OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is currently under - use. This object is a 64-bit version of cpmCPUMemoryUsed." - ::= { cpmCPUTotalEntry 17 } - -cpmCPUMemoryFreeOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of cpmCPUMemoryFree. - This object needs to be supported only when the value of - cpmCPUMemoryFree exceeds 32-bit, otherwise this object value - would be set to 0." - ::= { cpmCPUTotalEntry 18 } - -cpmCPUMemoryHCFree OBJECT-TYPE - SYNTAX Counter64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is currently free. - This object is a 64-bit version of cpmCPUMemoryFree." - ::= { cpmCPUTotalEntry 19 } - -cpmCPUMemoryKernelReservedOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmCPUMemoryKernelReserved. This object needs - to be supported only when the value of - cpmCPUMemoryKernelReserved exceeds 32-bit, otherwise - this object value would be set to 0." - ::= { cpmCPUTotalEntry 20 } - -cpmCPUMemoryHCKernelReserved OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is reserved - for kernel usage. This object is a 64-bit version of - cpmCPUMemoryKernelReserved." - ::= { cpmCPUTotalEntry 21 } - -cpmCPUMemoryLowestOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of cpmCPUMemoryLowest. - This object needs to be supported only when the value of - cpmCPUMemoryLowest exceeds 32-bit, otherwise this object value - would be set to 0." - ::= { cpmCPUTotalEntry 22 } - -cpmCPUMemoryHCLowest OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The lowest free memory that has been recorded since device has - booted. This object is a 64-bit version of cpmCPUMemoryLowest." - ::= { cpmCPUTotalEntry 23 } - -cpmCPULoadAvg1min OBJECT-TYPE - SYNTAX CPULoadAverage - UNITS "hundredths of processes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU load Average in the last 1 minute period" - ::= { cpmCPUTotalEntry 24 } - -cpmCPULoadAvg5min OBJECT-TYPE - SYNTAX CPULoadAverage - UNITS "hundredths of processes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU load Average in the last 5 minutes period" - ::= { cpmCPUTotalEntry 25 } - -cpmCPULoadAvg15min OBJECT-TYPE - SYNTAX CPULoadAverage - UNITS "hundredths of processes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU load Average in the last 15 minutes period" - ::= { cpmCPUTotalEntry 26 } - -cpmCPUMemoryCommitted OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is currently - Committed." - ::= { cpmCPUTotalEntry 27 } - -cpmCPUMemoryCommittedOvrflw OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmCPUMemoryCommitted. - This object needs to be supported only when the value of - cpmCPUMemoryCommitted exceeds 32-bit, otherwise this object - value would be set to 0." - ::= { cpmCPUTotalEntry 28 } - -cpmCPUMemoryHCCommitted OBJECT-TYPE - SYNTAX CounterBasedGauge64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall CPU wide system memory which is currently - committed. This object is a 64-bit version of - cpmCPUMemoryCommitted" - ::= { cpmCPUTotalEntry 29 } - - --- Cisco Core Table - -cpmCoreTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmCoreEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of per-Core statistics." - ::= { cpmCPU 2 } - -cpmCoreEntry OBJECT-TYPE - SYNTAX CpmCoreEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Overall information about the Core load. Entries in this - table could come and go as Cores go online or offline." - INDEX { - cpmCPUTotalIndex, - cpmCoreIndex - } - ::= { cpmCoreTable 1 } - -CpmCoreEntry ::= SEQUENCE { - cpmCoreIndex Unsigned32, - cpmCorePhysicalIndex EntPhysicalIndexOrZero, - cpmCore5sec Gauge32, - cpmCore1min Gauge32, - cpmCore5min Gauge32, - cpmCoreLoadAvg1min CPULoadAverage, - cpmCoreLoadAvg5min CPULoadAverage, - cpmCoreLoadAvg15min CPULoadAverage -} - -cpmCoreIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..4294967295) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely represents a Core (or group of Cores) - whose Core load information is reported by a row in this table. - This index is assigned arbitrarily by the engine - and is not saved over reboots." - ::= { cpmCoreEntry 1 } - -cpmCorePhysicalIndex OBJECT-TYPE - SYNTAX EntPhysicalIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The entCorePhysicalIndex of the physical entity for which - the Core statistics in this entry are maintained. - The physical entity can be a CPU chip, a group of CPUs, - a CPU card etc. The exact type of this entity is described by - its entPhysicalVendorType value. If the Core statistics - in this entry correspond to more than one physical entity - (or to no physical entity), or if the entPhysicalTable is - not supported on the SNMP agent, the value of this object - must be zero." - ::= { cpmCoreEntry 2 } - -cpmCore5sec OBJECT-TYPE - SYNTAX Gauge32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall Core busy percentage in the last 5 second - period." - ::= { cpmCoreEntry 3 } - -cpmCore1min OBJECT-TYPE - SYNTAX Gauge32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall Core busy percentage in the last 1 minute - period." - ::= { cpmCoreEntry 4 } - -cpmCore5min OBJECT-TYPE - SYNTAX Gauge32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall Core busy percentage in the last 5 minute - period." - ::= { cpmCoreEntry 5 } - -cpmCoreLoadAvg1min OBJECT-TYPE - SYNTAX CPULoadAverage - UNITS "hundredths of processes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall Core load Average in the last 1 minute period" - ::= { cpmCoreEntry 6 } - -cpmCoreLoadAvg5min OBJECT-TYPE - SYNTAX CPULoadAverage - UNITS "hundredths of processes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall Core load Average in the last 5 minutes period" - ::= { cpmCoreEntry 7 } - -cpmCoreLoadAvg15min OBJECT-TYPE - SYNTAX CPULoadAverage - UNITS "hundredths of processes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The overall Core load Average in the last 15 minutes period" - ::= { cpmCoreEntry 8 } - - --- Cisco Processes Common Table - -cpmProcessTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmProcessEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of generic information on all active - processes on this device." - ::= { cpmProcess 1 } - -cpmProcessEntry OBJECT-TYPE - SYNTAX CpmProcessEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Generic information about an active process on this - device. Entries in this table come and go as processes are - created and destroyed by the device." - INDEX { - cpmCPUTotalIndex, - cpmProcessPID - } - ::= { cpmProcessTable 1 } - -CpmProcessEntry ::= SEQUENCE { - cpmProcessPID Unsigned32, - cpmProcessName DisplayString, - cpmProcessuSecs Unsigned32, - cpmProcessTimeCreated TimeStamp, - cpmProcessAverageUSecs Unsigned32 -} - -cpmProcessPID OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the process ID. cpmTimeCreated - should be checked against the last time it was polled, - and if it has changed the PID has been reused and the - entire entry should be polled again." - ::= { cpmProcessEntry 1 } - -cpmProcessName OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name associated with this process. If the name is - longer than 32 characters, it will be truncated to the first - 31 characters, and a `*' will be appended as the last - character to imply this is a truncated process name." - ::= { cpmProcessEntry 2 } - -cpmProcessuSecs OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "microseconds" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "Average elapsed CPU time in microseconds when the - process was active. This object is deprecated - by cpmProcessAverageUSecs." - ::= { cpmProcessEntry 4 } - -cpmProcessTimeCreated OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time when the process was created. The process ID - and the time when the process was created, uniquely - identifies a process." - ::= { cpmProcessEntry 5 } - -cpmProcessAverageUSecs OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "microseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average elapsed CPU time in microseconds when the - process was active. This object deprecates the - object cpmProcessuSecs." - ::= { cpmProcessEntry 6 } - - --- Cisco processes detail Table. This table is mandatory on systems --- that have the internal capability to keep the information. - -cpmProcessExtTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmProcessExtEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "This table contains information that may or may - not be available on all cisco devices. It contains - additional objects for the more general - cpmProcessTable. This object is deprecated by - cpmProcessExtRevTable." - ::= { cpmProcess 2 } - -cpmProcessExtEntry OBJECT-TYPE - SYNTAX CpmProcessExtEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "An entry containing additional information for - a particular process. This object is deprecated by - cpmProcessExtRevEntry." - AUGMENTS { cpmProcessEntry } - ::= { cpmProcessExtTable 1 } - -CpmProcessExtEntry ::= SEQUENCE { - cpmProcExtMemAllocated Gauge32, - cpmProcExtMemFreed Gauge32, - cpmProcExtInvoked Counter32, - cpmProcExtRuntime Counter32, - cpmProcExtUtil5Sec Gauge32, - cpmProcExtUtil1Min Gauge32, - cpmProcExtUtil5Min Gauge32, - cpmProcExtPriority INTEGER -} - -cpmProcExtMemAllocated OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The sum of all the dynamically allocated memory that - this process has received from the system. This includes - memory that may have been returned. The sum of freed - memory is provided by cpmProcExtMemFreed. This object - is deprecated by cpmProcExtMemAllocatedRev." - ::= { cpmProcessExtEntry 1 } - -cpmProcExtMemFreed OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The sum of all memory that this process has returned - to the system. This object is deprecated by - cpmProcExtMemFreedRev." - ::= { cpmProcessExtEntry 2 } - -cpmProcExtInvoked OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of times since cpmTimeCreated that - the process has been invoked. This object is - deprecated by cpmProcExtInvokedRev." - ::= { cpmProcessExtEntry 3 } - -cpmProcExtRuntime OBJECT-TYPE - SYNTAX Counter32 - UNITS "microseconds" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The amount of CPU time the process has used, in - microseconds. This object is deprecated by - cpmProcExtRuntimeRev." - ::= { cpmProcessExtEntry 4 } - -cpmProcExtUtil5Sec OBJECT-TYPE - SYNTAX Gauge32 (1..100) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "This object provides a general idea of how busy - a process caused the processor to be over a 5 - second period. It is determined as a weighted - decaying average of the current idle time over - the longest idle time. Note that this information - should be used as an estimate only. This object is - deprecated by cpmProcExtUtil5SecRev which has the - changed range of value (0..100)." - ::= { cpmProcessExtEntry 5 } - -cpmProcExtUtil1Min OBJECT-TYPE - SYNTAX Gauge32 (1..100) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "This object provides a general idea of how busy - a process caused the processor to be over a 1 - minute period. It is determined as a weighted - decaying average of the current idle time over the - longest idle time. Note that this information - should be used as an estimate only. This object is - deprecated by cpmProcExtUtil1MinRev which has - the changed range of value (0..100)." - ::= { cpmProcessExtEntry 6 } - -cpmProcExtUtil5Min OBJECT-TYPE - SYNTAX Gauge32 (1..100) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "This object provides a general idea of how busy - a process caused the processor to be over a 5 - minute period. It is determined as a weighted - decaying average of the current idle time over - the longest idle time. Note that this information - should be used as an estimate only. This object - is deprecated by cpmProcExtUtil5MinRev which - has the changed range of value (0..100)." - ::= { cpmProcessExtEntry 7 } - -cpmProcExtPriority OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - high(2), - normal(3), - low(4), - notAssigned(5) - } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "The priority level at which the process is - running. This object is deprecated by - cpmProcExtPriorityRev." - ::= { cpmProcessExtEntry 8 } - - - -cpmProcessExtRevTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmProcessExtRevEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information that may or may - not be available on all cisco devices. It contains - additional objects for the more general - cpmProcessTable. This object deprecates - cpmProcessExtTable." - ::= { cpmProcess 3 } - -cpmProcessExtRevEntry OBJECT-TYPE - SYNTAX CpmProcessExtRevEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing additional information for - a particular process. This object deprecates - cpmProcessExtEntry." - INDEX { - cpmCPUTotalIndex, - cpmProcessPID - } - ::= { cpmProcessExtRevTable 1 } - -CpmProcessExtRevEntry ::= SEQUENCE { - cpmProcExtMemAllocatedRev Gauge32, - cpmProcExtMemFreedRev Gauge32, - cpmProcExtInvokedRev Counter32, - cpmProcExtRuntimeRev Counter32, - cpmProcExtUtil5SecRev Gauge32, - cpmProcExtUtil1MinRev Gauge32, - cpmProcExtUtil5MinRev Gauge32, - cpmProcExtPriorityRev INTEGER, - cpmProcessType INTEGER, - cpmProcessRespawn TruthValue, - cpmProcessRespawnCount Counter32, - cpmProcessRespawnAfterLastPatch Counter32, - cpmProcessMemoryCore INTEGER, - cpmProcessLastRestartUser SnmpAdminString, - cpmProcessTextSegmentSize Unsigned32, - cpmProcessDataSegmentSize Gauge32, - cpmProcessStackSize Gauge32, - cpmProcessDynamicMemorySize Gauge32, - cpmProcExtMemAllocatedRevOvrflw Gauge32, - cpmProcExtHCMemAllocatedRev CounterBasedGauge64, - cpmProcExtMemFreedRevOvrflw Gauge32, - cpmProcExtHCMemFreedRev CounterBasedGauge64, - cpmProcessTextSegmentSizeOvrflw Unsigned32, - cpmProcessHCTextSegmentSize Unsigned64, - cpmProcessDataSegmentSizeOvrflw Gauge32, - cpmProcessHCDataSegmentSize CounterBasedGauge64, - cpmProcessStackSizeOvrflw Gauge32, - cpmProcessHCStackSize CounterBasedGauge64, - cpmProcessDynamicMemorySizeOvrflw Gauge32, - cpmProcessHCDynamicMemorySize CounterBasedGauge64 -} - -cpmProcExtMemAllocatedRev OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The sum of all the dynamically allocated memory that - this process has received from the system. This includes - memory that may have been returned. The sum of freed - memory is provided by cpmProcExtMemFreedRev. This object - deprecates cpmProcExtMemAllocated." - ::= { cpmProcessExtRevEntry 1 } - -cpmProcExtMemFreedRev OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The sum of all memory that this process has returned - to the system. This object deprecates - cpmProcExtMemFreed." - ::= { cpmProcessExtRevEntry 2 } - -cpmProcExtInvokedRev OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times since cpmTimeCreated that - the process has been invoked. This object - deprecates cpmProcExtInvoked." - ::= { cpmProcessExtRevEntry 3 } - -cpmProcExtRuntimeRev OBJECT-TYPE - SYNTAX Counter32 - UNITS "microseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of CPU time the process has used, in - microseconds. This object deprecates - cpmProcExtRuntime." - ::= { cpmProcessExtRevEntry 4 } - -cpmProcExtUtil5SecRev OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object provides a general idea of how busy - a process caused the processor to be over a 5 - second period. It is determined as a weighted - decaying average of the current idle time over - the longest idle time. Note that this information - should be used as an estimate only. This object - deprecates cpmProcExtUtil5Sec and increases the - value range to (0..100)." - ::= { cpmProcessExtRevEntry 5 } - -cpmProcExtUtil1MinRev OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object provides a general idea of how busy - a process caused the processor to be over a 1 - minute period. It is determined as a weighted - decaying average of the current idle time over the - longest idle time. Note that this information - should be used as an estimate only. This object - deprecates cpmProcExtUtil1Min and increases the value - range to (0..100)." - ::= { cpmProcessExtRevEntry 6 } - -cpmProcExtUtil5MinRev OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object provides a general idea of how busy - a process caused the processor to be over a 5 - minute period. It is determined as a weighted - decaying average of the current idle time over - the longest idle time. Note that this information - should be used as an estimate only. This object - deprecates cpmProcExtUtil5Min and increases the - value range to (0..100)." - ::= { cpmProcessExtRevEntry 7 } - -cpmProcExtPriorityRev OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - high(2), - normal(3), - low(4), - notAssigned(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The priority level at which the process is - running. This object deprecates - cpmProcExtPriority." - ::= { cpmProcessExtRevEntry 8 } - -cpmProcessType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - posix(2), - ios(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the kind of process in context." - ::= { cpmProcessExtRevEntry 9 } - -cpmProcessRespawn OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates whether respawn of a process is enabled - or not. If enabled the process in context repawns after - it has crashed/stopped." - ::= { cpmProcessExtRevEntry 10 } - -cpmProcessRespawnCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the number of times the process has - respawned/restarted." - ::= { cpmProcessExtRevEntry 11 } - -cpmProcessRespawnAfterLastPatch OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the number of times a process has - restarted after the last patch is applied. This is to - determine the stability of the last patch." - ::= { cpmProcessExtRevEntry 12 } - -cpmProcessMemoryCore OBJECT-TYPE - SYNTAX INTEGER { - other(1), - mainmem(2), - mainmemSharedmem(3), - mainmemText(4), - mainmemTextSharedmem(5), - sharedmem(6), - sparse(7), - off(8) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the part of process memory to be - dumped when a process crashes. The process - memory is used for debugging purposes to trace the - root cause of the crash. - sparse - Some operating systems support minimal - dump of process core like register - info, partial stack, partial memory - pages especially for critical process - to facilitate faster process restart." - ::= { cpmProcessExtRevEntry 13 } - -cpmProcessLastRestartUser OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicate the user that has last restarted the - process or has taken running coredump of the process." - ::= { cpmProcessExtRevEntry 14 } - -cpmProcessTextSegmentSize OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the text memory of a process and all - its shared objects." - ::= { cpmProcessExtRevEntry 15 } - -cpmProcessDataSegmentSize OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the data segment of a process and - all its shared objects." - ::= { cpmProcessExtRevEntry 16 } - -cpmProcessStackSize OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the amount of stack memory used by the - process." - ::= { cpmProcessExtRevEntry 17 } - -cpmProcessDynamicMemorySize OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the amount of dynamic memory being used - by the process." - ::= { cpmProcessExtRevEntry 18 } - -cpmProcExtMemAllocatedRevOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmProcExtMemAllocatedRev. This object needs - to be supported only when the value of - cpmProcExtMemAllocatedRev exceeds 32-bit, - otherwise this object value would be set to 0." - ::= { cpmProcessExtRevEntry 19 } - -cpmProcExtHCMemAllocatedRev OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The sum of all the dynamically allocated memory that this - process has received from the system. This includes memory - that may have been returned. This object is a 64-bit version - of cpmProcExtMemAllocatedRev." - ::= { cpmProcessExtRevEntry 20 } - -cpmProcExtMemFreedRevOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmProcExtMemFreedRev. This object needs to - be supported only when the value of - cpmProcExtMemFreedRev exceeds 32-bit,otherwise - this object value would be set to 0." - ::= { cpmProcessExtRevEntry 21 } - -cpmProcExtHCMemFreedRev OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The sum of all memory that this process has returned to the - system. This object is a 64-bit version of - cpmProcExtMemFreedRev." - ::= { cpmProcessExtRevEntry 22 } - -cpmProcessTextSegmentSizeOvrflw OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmProcessTextSegmentSize. This object needs - to be supported only when the value of - cpmProcessTextSegmentSize exceeds 32-bit, - otherwise this object value would be set to 0." - ::= { cpmProcessExtRevEntry 23 } - -cpmProcessHCTextSegmentSize OBJECT-TYPE - SYNTAX Unsigned64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the text memory of a process and all - its shared objects. This object is a 64-bit version - of cpmProcessTextSegmentSize." - ::= { cpmProcessExtRevEntry 24 } - -cpmProcessDataSegmentSizeOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmProcessDataSegmentSize. This object needs - to be supported only when the value of - cpmProcessDataSegmentSize exceeds 32-bit, - otherwise this object value would be set to 0." - ::= { cpmProcessExtRevEntry 25 } - -cpmProcessHCDataSegmentSize OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the data segment of a process and - all its shared objects.. This object is a 64-bit - version of cpmProcessDataSegmentSize." - ::= { cpmProcessExtRevEntry 26 } - -cpmProcessStackSizeOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of cpmProcessStackSize. - This object needs to be supported only when the value of - cpmProcessStackSize exceeds 32-bit, otherwise this object value - would be set to 0." - ::= { cpmProcessExtRevEntry 27 } - -cpmProcessHCStackSize OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the amount of stack memory used by the process. - This object is a 64-bit version of cpmProcessStackSize." - ::= { cpmProcessExtRevEntry 28 } - -cpmProcessDynamicMemorySizeOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmProcessDynamicMemorySize. This object needs - to be supported only when the value of - cpmProcessDynamicMemorySize exceeds 32-bit, - otherwise this object value would be set to 0." - ::= { cpmProcessExtRevEntry 29 } - -cpmProcessHCDynamicMemorySize OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "kilo-bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates the amount of dynamic memory being used - by the process. This object is a 64-bit version of - cpmProcessDynamicMemorySize." - ::= { cpmProcessExtRevEntry 30 } - - --- Threshold Table allows the CPU threshold configurations. --- When the configured threshold is reached a NMS will be notified --- with this event. - -cpmCPUThresholdTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmCPUThresholdEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains the information about the - thresholding values for CPU , configured by the user." - ::= { cpmProcess 4 } - -cpmCPUThresholdEntry OBJECT-TYPE - SYNTAX CpmCPUThresholdEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing information about - CPU thresholding parameters. cpmCPUTotalIndex - identifies the CPU (or group of CPUs) for which this - configuration applies." - INDEX { - cpmCPUTotalIndex, - cpmCPUThresholdClass - } - ::= { cpmCPUThresholdTable 1 } - -CpmCPUThresholdEntry ::= SEQUENCE { - cpmCPUThresholdClass INTEGER, - cpmCPURisingThresholdValue Unsigned32, - cpmCPURisingThresholdPeriod Unsigned32, - cpmCPUFallingThresholdValue Unsigned32, - cpmCPUFallingThresholdPeriod Unsigned32, - cpmCPUThresholdEntryStatus RowStatus -} - -cpmCPUThresholdClass OBJECT-TYPE - SYNTAX INTEGER { - total(1), - interrupt(2), - process(3) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Value of this object indicates the type of - utilization, which is monitored. The total(1) indicates - the total CPU utilization, interrupt(2) indicates the - the CPU utilization in interrupt context and process(3) - indicates the CPU utilization in the process level - execution context." - ::= { cpmCPUThresholdEntry 1 } - -cpmCPURisingThresholdValue OBJECT-TYPE - SYNTAX Unsigned32 (1..100) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The percentage rising threshold value configured by - the user. The value indicates, - if the percentage CPU utilization is equal to or above - this value for cpmCPURisingThresholdPeriod duration - then send a cpmCPURisingThreshold notification to - the NMS." - ::= { cpmCPUThresholdEntry 2 } - -cpmCPURisingThresholdPeriod OBJECT-TYPE - SYNTAX Unsigned32 (5..4294967295) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is an observation interval. - The value of this object indicates that - the CPU utilization should be above - cpmCPURisingThresholdValue for this duration to send a - cpmCPURisingThreshold notification to the NMS." - DEFVAL { 5 } - ::= { cpmCPUThresholdEntry 3 } - -cpmCPUFallingThresholdValue OBJECT-TYPE - SYNTAX Unsigned32 (1..100) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The percentage falling threshold value configured by - the user. The value indicates, if the percentage - CPU utilization is equal to or below this value for - cpmCPUFallingThresholdPeriod duration - then send a cpmCPUFallingThreshold notification - to the NMS." - ::= { cpmCPUThresholdEntry 4 } - -cpmCPUFallingThresholdPeriod OBJECT-TYPE - SYNTAX Unsigned32 (5..4294967295) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This is an observation interval. The value of this - object indicates that CPU utilization should be below - cpmCPUFallingThresholdValue for this duration to send a - cpmCPURisingThreshold notification to the NMS." - DEFVAL { 5 } - ::= { cpmCPUThresholdEntry 5 } - -cpmCPUThresholdEntryStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this table entry." - ::= { cpmCPUThresholdEntry 6 } - - - -cpmCPUHistoryThreshold OBJECT-TYPE - SYNTAX Unsigned32 (1..100) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The user configured value of this object gives - the minimum percent CPU utilization of a process - in the last cpmCPUMonInterval duration required to be a - member of history table. When this object is changed - the new value will have effect in the next interval." - ::= { cpmCPUHistory 1 } - -cpmCPUHistorySize OBJECT-TYPE - SYNTAX Unsigned32 (1..4294967295) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "A value configured by the user which specifies the - number of reports in the history table. - A report contains set of processes which crossed - the cpmCPUHistoryThreshold - in the last cpmCPUMonInterval along with - the time at which this report is - created, total and interrupt CPU utilizations. - When this object is changed - the new value will have effect in the next interval." - ::= { cpmCPUHistory 2 } - -cpmCPUHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmCPUHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of CPU utilization history entries." - ::= { cpmCPUHistory 3 } - -cpmCPUHistoryEntry OBJECT-TYPE - SYNTAX CpmCPUHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A historical sample of CPU utilization statistics. - cpmCPUTotalIndex identifies the CPU (or group of CPUs) - for which this history is collected. - When the cpmCPUHistorySize is - reached the least recent entry is lost." - INDEX { - cpmCPUTotalIndex, - cpmCPUHistoryReportId - } - ::= { cpmCPUHistoryTable 1 } - -CpmCPUHistoryEntry ::= SEQUENCE { - cpmCPUHistoryReportId Unsigned32, - cpmCPUHistoryReportSize Unsigned32, - cpmCPUHistoryTotalUtil Gauge32, - cpmCPUHistoryInterruptUtil Gauge32, - cpmCPUHistoryCreatedTime TimeStamp -} - -cpmCPUHistoryReportId OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "All the entries which are created at the same time - will have same value for this object. When the - configured threshold for being a part of History table - is reached then the qualified processes become the - part of history table. The entries which became the - part of history table at one instant will have - the same value for this object. When this object - reaches the max index value then it will wrap around." - ::= { cpmCPUHistoryEntry 1 } - -cpmCPUHistoryReportSize OBJECT-TYPE - SYNTAX Unsigned32 (0..4294967295) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of process entries in a report. - This object gives information about how many processes - became a part of history table at one instant." - ::= { cpmCPUHistoryEntry 2 } - -cpmCPUHistoryTotalUtil OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total percentage of CPU utilization - at cpmCPUHistoryCreated." - ::= { cpmCPUHistoryEntry 3 } - -cpmCPUHistoryInterruptUtil OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of CPU utilization in the interrupt context - at cpmCPUHistoryCreated." - ::= { cpmCPUHistoryEntry 4 } - -cpmCPUHistoryCreatedTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time stamp with respect to sysUpTime indicating - the time at which this report is created." - ::= { cpmCPUHistoryEntry 5 } - - - -cpmThreadTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmThreadEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains generic information about - POSIX threads in the device." - ::= { cpmThread 1 } - -cpmThreadEntry OBJECT-TYPE - SYNTAX CpmThreadEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing the general statistics - of a POSIX thread." - INDEX { - cpmCPUTotalIndex, - cpmProcessPID, - cpmThreadID - } - ::= { cpmThreadTable 1 } - -CpmThreadEntry ::= SEQUENCE { - cpmThreadID Unsigned32, - cpmThreadName SnmpAdminString, - cpmThreadPriority Unsigned32, - cpmThreadState INTEGER, - cpmThreadBlockingProcess RowPointer, - cpmThreadCpuUtilization Gauge32, - cpmThreadStackSize Gauge32, - cpmThreadStackSizeOvrflw Gauge32, - cpmThreadHCStackSize CounterBasedGauge64 -} - -cpmThreadID OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object contains the thread ID. ThreadID is - Unique per process." - ::= { cpmThreadEntry 1 } - -cpmThreadName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the name of the thread. - Thread names need not be unique. Hence statistics - should be analyzed against thread ID." - ::= { cpmThreadEntry 2 } - -cpmThreadPriority OBJECT-TYPE - SYNTAX Unsigned32 (0..63) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the priority of a POSIX thread. - The higher the number, the higher the priority of the - thread over other threads." - ::= { cpmThreadEntry 3 } - -cpmThreadState OBJECT-TYPE - SYNTAX INTEGER { - other(1), - dead(2), - running(3), - ready(4), - stopped(5), - send(6), - receive(7), - reply(8), - stack(9), - waitpage(10), - sigsuspend(11), - sigwaitinfo(12), - nanosleep(13), - mutex(14), - condvar(15), - join(16), - intr(17), - sem(18) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the current state of a thread. - Running state means that the thread is actively - consumig CPU. All the other states are just waiting - states. The valid states are: - other - Any other state apart from the listed - ones. - dead - Kernel is waiting to release the - thread's resources. - running - Actively running on a CPU. - ready - Not running on a CPU, but is ready to - run (one or more higher or equal - priority threads are running). - stopped - Suspended (SIGSTOP signal). - send - Waiting for a server to receive - a message. - receive - Waiting for a client to send a message. - reply - Waiting for a server to reply to a - message. - stack - Waiting for more stack to be allocated. - waitpage - Waiting for process manager to - resolve a fault on a page. - sigsuspend - Suspended for a signal. - sigwaitinfo - Waiting for a signal. - nanosleep - Sleeping for a period of time. - mutex - Waiting to acquire a mutex - condvar - Waiting for a condition variable to be - signalled. - join - Waiting for the completion of another - thread. - intr - Waiting for an interrupt. - sem - Waiting to acquire a semaphore." - ::= { cpmThreadEntry 4 } - -cpmThreadBlockingProcess OBJECT-TYPE - SYNTAX RowPointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object identifies the process on which the - current thread is blocked on. This points to the - cpmProcessTable of the process on which the thread - in context is blocked. This is valid only to threads - which are either in send/reply states. For the - rest of the threads it is returned as 0.0" - ::= { cpmThreadEntry 5 } - -cpmThreadCpuUtilization OBJECT-TYPE - SYNTAX Gauge32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object provides a general idea on how busy - the thread in context caused the processor to be." - ::= { cpmThreadEntry 6 } - -cpmThreadStackSize OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the stack size allocated to - the thread in context." - ::= { cpmThreadEntry 7 } - -cpmThreadStackSizeOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of cpmThreadStackSize. - This object needs to be supported only when the value of - cpmThreadStackSize exceeds 32-bit, otherwise this object value - would be set to 0." - ::= { cpmThreadEntry 8 } - -cpmThreadHCStackSize OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the stack size allocated to the - thread in context. This object is a 64-bit version of - cpmThreadStackSize." - ::= { cpmThreadEntry 9 } - - - -cpmVirtualProcessTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmVirtualProcessEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about virtual - processes in a virtual machine." - ::= { cpmVirtualProcess 1 } - -cpmVirtualProcessEntry OBJECT-TYPE - SYNTAX CpmVirtualProcessEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing the general statistics of a - virtual process in a virtual machine." - INDEX { - cpmCPUTotalIndex, - cpmProcessPID, - cpmVirtualProcessID - } - ::= { cpmVirtualProcessTable 1 } - -CpmVirtualProcessEntry ::= SEQUENCE { - cpmVirtualProcessID Unsigned32, - cpmVirtualProcessName SnmpAdminString, - cpmVirtualProcessUtil5Sec Gauge32, - cpmVirtualProcessUtil1Min Gauge32, - cpmVirtualProcessUtil5Min Gauge32, - cpmVirtualProcessMemAllocated Gauge32, - cpmVirtualProcessMemFreed Gauge32, - cpmVirtualProcessInvokeCount Counter32, - cpmVirtualProcessRuntime Counter32, - cpmVirtualProcessMemAllocatedOvrflw Gauge32, - cpmVirtualProcessHCMemAllocated CounterBasedGauge64, - cpmVirtualProcessMemFreedOvrflw Gauge32, - cpmVirtualProcessHCMemFreed CounterBasedGauge64 -} - -cpmVirtualProcessID OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object indicates the process ID of a virtual - process. PID is unique only inside one address space. - Virtual process PID should be considered along with - Parent process cpmProcessPID." - ::= { cpmVirtualProcessEntry 1 } - -cpmVirtualProcessName OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (1..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the name of a virtual process. - If the name is longer than 32 characters, it will be - truncated to the first 31 characters, and a `*' will be - appended as the last character to imply this is a - truncated process name." - ::= { cpmVirtualProcessEntry 2 } - -cpmVirtualProcessUtil5Sec OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates an estimated CPU utilization by - a virtual process over the last 5 seconds." - ::= { cpmVirtualProcessEntry 3 } - -cpmVirtualProcessUtil1Min OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates an estimated CPU utilization by - a virtual process over the last one minute." - ::= { cpmVirtualProcessEntry 4 } - -cpmVirtualProcessUtil5Min OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This indicates an estimated CPU utilization by - a virtual process over the last 5 minutes." - ::= { cpmVirtualProcessEntry 5 } - -cpmVirtualProcessMemAllocated OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the memory allocated by the - virtual process inside the address space of a - process running on Native OS." - ::= { cpmVirtualProcessEntry 6 } - -cpmVirtualProcessMemFreed OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the memory freed by the virtual - process inside the address space of a process running - on Native OS." - ::= { cpmVirtualProcessEntry 7 } - -cpmVirtualProcessInvokeCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times a virtual process is invoked." - ::= { cpmVirtualProcessEntry 8 } - -cpmVirtualProcessRuntime OBJECT-TYPE - SYNTAX Counter32 - UNITS "microseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of CPU time a virtual process has used in - microseconds." - ::= { cpmVirtualProcessEntry 9 } - -cpmVirtualProcessMemAllocatedOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmVirtualProcessMemAllocated. This object - needs to be supported only when the value of - cpmVirtualProcessMemAllocated exceeds 32-bit, - otherwise this object value would be set to 0." - ::= { cpmVirtualProcessEntry 10 } - -cpmVirtualProcessHCMemAllocated OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the memory allocated by the - virtual process inside the address space of a process - running on Native OS. This object is a 64-bit version - of cpmVirtualProcessMemAllocated." - ::= { cpmVirtualProcessEntry 11 } - -cpmVirtualProcessMemFreedOvrflw OBJECT-TYPE - SYNTAX Gauge32 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents the upper 32-bit of - cpmVirtualProcessMemFreed. This object needs - to be supported only when the value of - cpmVirtualProcessMemFreed exceeds 32-bit, - otherwise this object value would be set to 0." - ::= { cpmVirtualProcessEntry 12 } - -cpmVirtualProcessHCMemFreed OBJECT-TYPE - SYNTAX CounterBasedGauge64 - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the memory freed by the virtual process - inside the address space of a process running on Native OS.This - object is a 64-bit version of cpmVirtualProcessMemAllocated." - ::= { cpmVirtualProcessEntry 13 } - - --- History table contains the statistics for the processes --- qualified to be a part of history table. --- The statistics are the CPU utilization of processes --- for past 5 second period. - -cpmCPUProcessHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpmCPUProcessHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of process history entries. This table contains - CPU utilization of processes which crossed the - cpmCPUHistoryThreshold." - ::= { cpmCPUHistory 4 } - -cpmCPUProcessHistoryEntry OBJECT-TYPE - SYNTAX CpmCPUProcessHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A historical sample of process utilization - statistics. The entries in this table will have - corresponding entires in the cpmCPUHistoryTable. - The entries in this table get deleted when the entry - associated with this entry in the cpmCPUHistoryTable - gets deleted." - INDEX { - cpmCPUTotalIndex, - cpmCPUHistoryReportId, - cpmCPUProcessHistoryIndex - } - ::= { cpmCPUProcessHistoryTable 1 } - -CpmCPUProcessHistoryEntry ::= SEQUENCE { - cpmCPUProcessHistoryIndex Unsigned32, - cpmCPUHistoryProcId Unsigned32, - cpmCPUHistoryProcName DisplayString, - cpmCPUHistoryProcCreated TimeStamp, - cpmCPUHistoryProcUtil Gauge32 -} - -cpmCPUProcessHistoryIndex OBJECT-TYPE - SYNTAX Unsigned32 (1..4294967295) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in - the cmpCPUProcessHistory table among those in the - same report. This index is between 1 to N, - where N is the cpmCPUHistoryReportSize." - ::= { cpmCPUProcessHistoryEntry 1 } - -cpmCPUHistoryProcId OBJECT-TYPE - SYNTAX Unsigned32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The process Id associated with this entry." - ::= { cpmCPUProcessHistoryEntry 2 } - -cpmCPUHistoryProcName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The process name associated with this entry." - ::= { cpmCPUProcessHistoryEntry 3 } - -cpmCPUHistoryProcCreated OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time when the process was created. The process ID - and the time when the process was created, uniquely - identifies a process." - ::= { cpmCPUProcessHistoryEntry 4 } - -cpmCPUHistoryProcUtil OBJECT-TYPE - SYNTAX Gauge32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The percentage CPU utilization of a process at - cpmCPUHistoryCreatedTime." - ::= { cpmCPUProcessHistoryEntry 5 } - - --- notifications - -ciscoProcessMIBNotifPrefix OBJECT IDENTIFIER - ::= { ciscoProcessMIB 2 } - -ciscoProcessMIBNotifs OBJECT IDENTIFIER - ::= { ciscoProcessMIBNotifPrefix 0 } - - -cpmCPURisingThreshold NOTIFICATION-TYPE - OBJECTS { - cpmCPURisingThresholdValue, - cpmCPUTotalMonIntervalValue, - cpmCPUInterruptMonIntervalValue, - cpmProcExtUtil5SecRev, - cpmProcessTimeCreated - } - STATUS current - DESCRIPTION - "A cpmCPURisingThreshold notification is sent - when configured rising CPU utilization threshold - (cpmCPURisingThresholdValue) is reached and - CPU utilization remained above the threshold - for configured interval(cpmCPURisingThresholdPeriod) - and such a notification is requested. - The cpmProcExtUtil5SecRev and cpmProcessTimeCreated - objects can be repeated multiple times - in a notification indicating the top users of CPU." - ::= { ciscoProcessMIBNotifs 1 } - -cpmCPUFallingThreshold NOTIFICATION-TYPE - OBJECTS { - cpmCPUFallingThresholdValue, - cpmCPUTotalMonIntervalValue, - cpmCPUInterruptMonIntervalValue - } - STATUS current - DESCRIPTION - "A cpmCPUFallingThresholdTrap is sent when the - configured falling threshold - (cpmCPURisingThresholdValue) - is reached and CPU utilization remained under - threshold for configured - interval (cpmCPUFallingThresholdPeriod) - and such a notification is requested." - ::= { ciscoProcessMIBNotifs 2 } --- conformance information - -ciscoProcessMIBConformance OBJECT IDENTIFIER - ::= { ciscoProcessMIB 3 } - -cpmCompliances OBJECT IDENTIFIER - ::= { ciscoProcessMIBConformance 1 } - -cpmGroups OBJECT IDENTIFIER - ::= { ciscoProcessMIBConformance 2 } - - -cProcessMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This is deprecated and new - compliance cProcessMIBComplianceRev is added." - MODULE -- this module - MANDATORY-GROUPS { - cpmCPUTotalGroup, - cpmProcessGroup - } - - GROUP cpmProcessExtGroup - DESCRIPTION - "The cpmProcessExtGroup is optional for all entities." - - OBJECT cpmProcExtPriority - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { cpmCompliances 1 } - -cProcessMIBComplianceRev MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This compliance module - deprecates cProcessMIBCompliance." - MODULE -- this module - MANDATORY-GROUPS { - cpmCPUTotalGroupRev, - cpmProcessGroupRev - } - - GROUP cpmProcessExtGroupRev - DESCRIPTION - "The cpmProcessExtGroupRev is optional for all - entities. This object is defined after deprecating - cpmProcessExtGroup." - ::= { cpmCompliances 2 } - -cProcessMIBComplianceRev1 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This compliance module - deprecates cProcessMIBComplianceRev." - MODULE -- this module - MANDATORY-GROUPS { - cpmCPUThresholdGroup, - cpmCPUTotalGroupRev1 - } - - GROUP cpmCPUHistoryGroup - DESCRIPTION - "The cpmCPUHistoryGroup is optional and gives - the information about process CPU utilization history." - - GROUP cpmCPUThresholdNotificationGroup - DESCRIPTION - "The cpmCPUThresholdNotificationGroup is optional and - these traps indicates that - configured threshold is reached." - ::= { cpmCompliances 3 } - -cProcessMIBComplianceRev2 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This compliance module - deprecates cProcessMIBComplianceRev1." - MODULE -- this module - MANDATORY-GROUPS { cpmCPUTotalGroupRev1 } - - GROUP cpmCPUHistoryGroup - DESCRIPTION - "The cpmCPUHistoryGroup is optional and gives - the information about process CPU utilization history." - - GROUP cpmCPUThresholdNotificationGroup - DESCRIPTION - "The cpmCPUThresholdNotificationGroup is optional and - these traps indicates that configured threshold - is reached." - - GROUP cpmProcessExtGroupRev - DESCRIPTION - "The cpmProcessExtGroupRev is optional and gives - detailed process monitoring information." - - GROUP cpmCPUThresholdGroup - DESCRIPTION - "The cpmCPUThresholdGroup is optional and provides - information on configuring threshold values." - - GROUP cpmProcessGroupRev - DESCRIPTION - "The cpmProcessGroupRev is optional and provides common - process monitoring information." - - GROUP cpmCPUPosixMemoryGroup - DESCRIPTION - "The cpmCPUPosixMemoryGroup gives information about - CPU wide system memory of POSIX OS. - cpmCPUPosixMemoryGroup is mandatory if the Operating - System of the managed system supports Posix standard - kernel." - - GROUP cpmPosixProcessGroup - DESCRIPTION - "The cpmPosixProcessGroup gives information about - POSIX process. cpmPosixProcessGroup is mandatory if - the Operating System of the managed system - supports Posix standard kernel." - - GROUP cpmThreadGroup - DESCRIPTION - "The cpmThreadGroup gives information about POSIX - threads. cpmThreadGroup is mandatory if the Operating - System of the managed system supports Posix standard - kernel." - - GROUP cpmVirtualProcessGroup - DESCRIPTION - "The cpmVirtualProcessGroup gives information about - virtual process. cpmVirtualProcessGroup is mandatory - Operating System of the managed system supports - Posix standard kernel." - ::= { cpmCompliances 4 } - -cProcessMIBComplianceRev3 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This compliance module - deprecates cProcessMIBComplianceRev2." - MODULE -- this module - MANDATORY-GROUPS { cpmCPUTotalGroupRev1 } - - GROUP cpmCPUHistoryGroup - DESCRIPTION - "The cpmCPUHistoryGroup is optional and gives - the information about process CPU utilization history." - - GROUP cpmCPUThresholdNotificationGroup - DESCRIPTION - "The cpmCPUThresholdNotificationGroup is optional and - these traps indicates that configured threshold - is reached." - - GROUP cpmProcessExtGroupRev - DESCRIPTION - "The cpmProcessExtGroupRev is optional and gives - detailed process monitoring information." - - GROUP cpmCPUThresholdGroup - DESCRIPTION - "The cpmCPUThresholdGroup is optional and provides - information on configuring threshold values." - - GROUP cpmProcessGroupRev - DESCRIPTION - "The cpmProcessGroupRev is optional and provides common - process monitoring information." - - GROUP cpmCPUPosixMemoryGroup - DESCRIPTION - "The cpmCPUPosixMemoryGroup gives information about - CPU wide system memory of POSIX OS. - cpmCPUPosixMemoryGroup is mandatory if the Operating - System of the managed system supports Posix standard - kernel." - - GROUP cpmPosixProcessGroup - DESCRIPTION - "The cpmPosixProcessGroup gives information about - POSIX process. cpmPosixProcessGroup is mandatory if - the Operating System of the managed system - supports Posix standard kernel." - - GROUP cpmThreadGroup - DESCRIPTION - "The cpmThreadGroup gives information about POSIX - threads. cpmThreadGroup is mandatory if the Operating - System of the managed system supports Posix standard - kernel." - - GROUP cpmVirtualProcessGroup - DESCRIPTION - "The cpmVirtualProcessGroup gives information about - virtual process. cpmVirtualProcessGroup is mandatory - Operating System of the managed system supports - Posix standard kernel." - - GROUP cpmCPUTotalOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmCPUTotalHCGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmProcessExtRevOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmProcessExtRevHCGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmThreadOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmThreadHCGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmVirtualProcessOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - - GROUP cpmVirtualProcessHCGroup - DESCRIPTION - "This group is an optional group for the devices which - run on 32-bit operating system." - ::= { cpmCompliances 5 } - -cProcessMIBComplianceRev4 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This compliance module - deprecates cProcessMIBComplianceRev3." - MODULE -- this module - MANDATORY-GROUPS { cpmCPUTotalGroupRev1 } - - GROUP cpmCPUHistoryGroup - DESCRIPTION - "The cpmCPUHistoryGroup is optional and gives the information - about process CPU utilization history." - - GROUP cpmCPUThresholdNotificationGroup - DESCRIPTION - "The cpmCPUThresholdNotificationGroup is optional and these traps - indicates that configured threshold is reached." - - GROUP cpmProcessExtGroupRev - DESCRIPTION - "The cpmProcessExtGroupRev is optional and gives detailed process - monitoring information." - - GROUP cpmCPUThresholdGroup - DESCRIPTION - "The cpmCPUThresholdGroup is optional and provides information on - configuring threshold values." - - GROUP cpmProcessGroupRev - DESCRIPTION - "The cpmProcessGroupRev is optional and provides common process - monitoring information." - - GROUP cpmCPUPosixMemoryGroup - DESCRIPTION - "The cpmCPUPosixMemoryGroup gives information about CPU wide - system memory of POSIX OS. - cpmCPUPosixMemoryGroup is mandatory if the Operating System of - the managed system supports Posix standard kernel." - - GROUP cpmPosixProcessGroup - DESCRIPTION - "The cpmPosixProcessGroup gives information about POSIX process. - cpmPosixProcessGroup is mandatory if the Operating System of the - managed system supports Posix standard kernel." - - GROUP cpmThreadGroup - DESCRIPTION - "The cpmThreadGroup gives information about POSIX threads. - cpmThreadGroup is mandatory if the Operating System of the - managed system supports Posix standard kernel." - - GROUP cpmVirtualProcessGroup - DESCRIPTION - "The cpmVirtualProcessGroup gives information about virtual - process.cpmVirtualProcessGroup is mandatory Operating System of - the managed system supports Posix standard kernel." - - GROUP cpmCPUTotalOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmCPUTotalHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmProcessExtRevOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmProcessExtRevHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmThreadOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmThreadHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmVirtualProcessOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmVirtualProcessHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmCPULoadAvgGroup - DESCRIPTION - "The cpmCPULoadAvgGroup is optional and provides CPU load - average information.This Group is valid only for the device - which supports it." - ::= { cpmCompliances 6 } - -cProcessMIBComplianceRev5 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for entities which implement - the Cisco Process MIB. This compliance module - deprecates cProcessMIBComplianceRev4" - MODULE -- this module - MANDATORY-GROUPS { cpmCPUTotalGroupRev1 } - - GROUP cpmCoreGroup - DESCRIPTION - "The cpmCoreGroup is optoinal and gives per-core CPU utilization." - - GROUP cpmCPUHistoryGroup - DESCRIPTION - "The cpmCPUHistoryGroup is optional and gives the information - about process CPU utilization history." - - GROUP cpmCPUThresholdNotificationGroup - DESCRIPTION - "The cpmCPUThresholdNotificationGroup is optional and these - traps indicates that configured threshold is reached." - - GROUP cpmProcessExtGroupRev - DESCRIPTION - "The cpmProcessExtGroupRev is optional and gives detailed process - monitoring information." - - GROUP cpmCPUThresholdGroup - DESCRIPTION - "The cpmCPUThresholdGroup is optional and provides information - on configuring threshold values." - - GROUP cpmProcessGroupRev - DESCRIPTION - "The cpmProcessGroupRev is optional and provides common process - monitoring information." - - GROUP cpmCPUPosixMemoryGroup - DESCRIPTION - "The cpmCPUPosixMemoryGroup gives information about CPU wide - system memory of POSIX OS. - cpmCPUPosixMemoryGroup is mandatory if the Operating System of - the managed system supports Posix standard kernel." - - GROUP cpmPosixProcessGroup - DESCRIPTION - "The cpmPosixProcessGroup gives information about POSIX process. - cpmPosixProcessGroup is mandatory if the Operating System - of the managed system supports Posix standard kernel." - - GROUP cpmThreadGroup - DESCRIPTION - "The cpmThreadGroup gives information about POSIX threads. - cpmThreadGroup is mandatory if the Operating System of the - managed system supports Posix standard kernel." - - GROUP cpmVirtualProcessGroup - DESCRIPTION - "The cpmVirtualProcessGroup gives information about virtual - process.cpmVirtualProcessGroup is mandatory Operating System of - the managed system supports Posix standard kernel." - - GROUP cpmCPUTotalOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system." - - GROUP cpmCPUTotalHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmProcessExtRevOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmProcessExtRevHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmThreadOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmThreadHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmVirtualProcessOverflowGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system." - - GROUP cpmVirtualProcessHCGroup - DESCRIPTION - "This group is an optional group for the devices which run on - 32-bit operating system" - - GROUP cpmCPULoadAvgGroup - DESCRIPTION - "The cpmCPULoadAvgGroup is optional and provides CPU load - average information.This Group is valid only for the device - which supports it" - - GROUP cpmCPUTotalMemoryCommitGroup - DESCRIPTION - "The cpmCPUTotalMemoryCommitGroup is optional and provides system - Committed memory information.This Group is valid only for the - device which supports it." - ::= { cpmCompliances 7 } - --- units of conformance - -cpmCPUTotalGroup OBJECT-GROUP - OBJECTS { - cpmCPUTotalPhysicalIndex, - cpmCPUTotal5sec, - cpmCPUTotal1min, - cpmCPUTotal5min - } - STATUS deprecated - DESCRIPTION - "A collection of objects providing CPU load monitoring - information. This group is mandatory for all cisco devices. - This group is deprecated since the objects cpmCPUTotal5sec, - cpmCPUTotal1min and cpmCPUTotal5min are - deprecated. A new object cpmCPUTotalGroupRev is - added in place of it." - ::= { cpmGroups 1 } - -cpmProcessGroup OBJECT-GROUP - OBJECTS { - cpmProcessPID, - cpmProcessName, - cpmProcessuSecs, - cpmProcessTimeCreated - } - STATUS deprecated - DESCRIPTION - "A collection of objects providing common process - monitoring information. This group is mandatory for - all cisco devices. This object is deprecated - by cpmProcessGroupRev." - ::= { cpmGroups 2 } - -cpmProcessExtGroup OBJECT-GROUP - OBJECTS { - cpmProcExtMemAllocated, - cpmProcExtMemFreed, - cpmProcExtInvoked, - cpmProcExtRuntime, - cpmProcExtUtil5Sec, - cpmProcExtUtil1Min, - cpmProcExtUtil5Min, - cpmProcExtPriority - } - STATUS deprecated - DESCRIPTION - "A collection of objects providing additional and - more detailed process monitoring information. This - group is mandatory for all cisco devices that have - the internal capability to keep this information. - This group is deprecated and new group - cpmProcessExtGroupRev is added." - ::= { cpmGroups 3 } - -cpmCPUTotalGroupRev OBJECT-GROUP - OBJECTS { - cpmCPUTotalPhysicalIndex, - cpmCPUTotal5secRev, - cpmCPUTotal1minRev, - cpmCPUTotal5minRev - } - STATUS deprecated - DESCRIPTION - "A collection of objects providing CPU load monitoring - information. This group is mandatory for all cisco - devices. This group deprecates cpmCPUTotalGroup. - This group is deprecated since the object - cpmCPUTotal5secRev is deprecated. - A new object cpmCPUTotalGroupRev1 is - added in place of it." - ::= { cpmGroups 4 } - -cpmProcessExtGroupRev OBJECT-GROUP - OBJECTS { - cpmProcExtMemAllocatedRev, - cpmProcExtMemFreedRev, - cpmProcExtInvokedRev, - cpmProcExtRuntimeRev, - cpmProcExtUtil5SecRev, - cpmProcExtUtil1MinRev, - cpmProcExtUtil5MinRev, - cpmProcExtPriorityRev - } - STATUS current - DESCRIPTION - "A collection of objects providing additional and - more detailed process monitoring information. This - group is mandatory for all cisco devices that have - the internal capability to keep this information. - This group is formed after deprecating cpmProcessExtGroup. - cpmProcExtMemAllocatedRev, cpmProcExtMemFreedRev, - cpmProcExtInvokedRev, cpmProcExtRuntimeRev, - cpmProcExtUtil5SecRev, cpmProcExtUtil1MinRev and - cpmProcExtUtil5MinRev are the new objects added." - ::= { cpmGroups 5 } - -cpmProcessGroupRev OBJECT-GROUP - OBJECTS { - cpmProcessPID, - cpmProcessName, - cpmProcessAverageUSecs, - cpmProcessTimeCreated - } - STATUS current - DESCRIPTION - "A collection of objects providing common process - monitoring information. This group is mandatory for - all cisco devices. This object deprecates - cpmProcessGroup." - ::= { cpmGroups 6 } - -cpmCPUTotalGroupRev1 OBJECT-GROUP - OBJECTS { - cpmCPUTotalPhysicalIndex, - cpmCPUTotal1minRev, - cpmCPUTotal5minRev, - cpmCPUMonInterval, - cpmCPUTotalMonIntervalValue, - cpmCPUInterruptMonIntervalValue - } - STATUS current - DESCRIPTION - "A collection of objects providing CPU load monitoring - information. This group is mandatory for all cisco - devices. This group deprecates cpmCPUTotalGroupRev." - ::= { cpmGroups 7 } - -cpmCPUThresholdGroup OBJECT-GROUP - OBJECTS { - cpmCPURisingThresholdValue, - cpmCPURisingThresholdPeriod, - cpmCPUFallingThresholdValue, - cpmCPUFallingThresholdPeriod, - cpmCPUThresholdEntryStatus - } - STATUS current - DESCRIPTION - "A collection of objects used for configuration - of thresholding." - ::= { cpmGroups 8 } - -cpmCPUHistoryGroup OBJECT-GROUP - OBJECTS { - cpmCPUHistorySize, - cpmCPUHistoryThreshold, - cpmCPUHistoryTotalUtil, - cpmCPUHistoryInterruptUtil, - cpmCPUHistoryCreatedTime, - cpmCPUHistoryReportSize, - cpmCPUHistoryProcId, - cpmCPUHistoryProcName, - cpmCPUHistoryProcCreated, - cpmCPUHistoryProcUtil - } - STATUS current - DESCRIPTION - "A collection of objects providing information - about CPU utilization history." - ::= { cpmGroups 9 } - -cpmCPUThresholdNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { - cpmCPURisingThreshold, - cpmCPUFallingThreshold - } - STATUS current - DESCRIPTION - "A group of notifications." - ::= { cpmGroups 10 } - -cpmCPUPosixMemoryGroup OBJECT-GROUP - OBJECTS { - cpmCPUMemoryUsed, - cpmCPUMemoryFree, - cpmCPUMemoryKernelReserved, - cpmCPUMemoryLowest - } - STATUS current - DESCRIPTION - "A collection of common objects providing - CPU wide System memory information running - POSIX compliant OS." - ::= { cpmGroups 11 } - -cpmPosixProcessGroup OBJECT-GROUP - OBJECTS { - cpmProcessType, - cpmProcessRespawn, - cpmProcessRespawnCount, - cpmProcessRespawnAfterLastPatch, - cpmProcessMemoryCore, - cpmProcessLastRestartUser, - cpmProcessTextSegmentSize, - cpmProcessDataSegmentSize, - cpmProcessStackSize, - cpmProcessDynamicMemorySize - } - STATUS current - DESCRIPTION - "A collection of common objects providing Process - information on devices running POSIX compliant OS." - ::= { cpmGroups 12 } - -cpmThreadGroup OBJECT-GROUP - OBJECTS { - cpmThreadName, - cpmThreadPriority, - cpmThreadState, - cpmThreadBlockingProcess, - cpmThreadCpuUtilization, - cpmThreadStackSize - } - STATUS current - DESCRIPTION - "A collection of objects providing thread information - information on devices running POSIX compliant OS." - ::= { cpmGroups 13 } - -cpmVirtualProcessGroup OBJECT-GROUP - OBJECTS { - cpmVirtualProcessName, - cpmVirtualProcessUtil5Sec, - cpmVirtualProcessUtil1Min, - cpmVirtualProcessUtil5Min, - cpmVirtualProcessMemAllocated, - cpmVirtualProcessMemFreed, - cpmVirtualProcessInvokeCount, - cpmVirtualProcessRuntime - } - STATUS current - DESCRIPTION - "A collection of objects providing virtual process - information on devices that can run virtual machines." - ::= { cpmGroups 14 } - -cpmCPUTotalOverflowGroup OBJECT-GROUP - OBJECTS { - cpmCPUMemoryUsedOvrflw, - cpmCPUMemoryFreeOvrflw, - cpmCPUMemoryKernelReservedOvrflw, - cpmCPUMemoryLowestOvrflw - } - STATUS current - DESCRIPTION - "A collection of Overflow (Ovrflw) objects providing CPU load - monitoring information." - ::= { cpmGroups 15 } - -cpmCPUTotalHCGroup OBJECT-GROUP - OBJECTS { - cpmCPUMemoryHCUsed, - cpmCPUMemoryHCFree, - cpmCPUMemoryHCKernelReserved, - cpmCPUMemoryHCLowest - } - STATUS current - DESCRIPTION - "A collection of High Capacity (HC) objects providing CPU - load monitoring information." - ::= { cpmGroups 16 } - -cpmProcessExtRevOverflowGroup OBJECT-GROUP - OBJECTS { - cpmProcExtMemAllocatedRevOvrflw, - cpmProcExtMemFreedRevOvrflw, - cpmProcessTextSegmentSizeOvrflw, - cpmProcessDataSegmentSizeOvrflw, - cpmProcessStackSizeOvrflw, - cpmProcessDynamicMemorySizeOvrflw - } - STATUS current - DESCRIPTION - "A collection of Overflow objects providing additional - and more detailed process monitoring information." - ::= { cpmGroups 17 } - -cpmProcessExtRevHCGroup OBJECT-GROUP - OBJECTS { - cpmProcExtHCMemAllocatedRev, - cpmProcExtHCMemFreedRev, - cpmProcessHCTextSegmentSize, - cpmProcessHCDataSegmentSize, - cpmProcessHCStackSize, - cpmProcessHCDynamicMemorySize - } - STATUS current - DESCRIPTION - "A collection of High Capacity objects providing - additional and more detailed process monitoring - information." - ::= { cpmGroups 18 } - -cpmThreadOverflowGroup OBJECT-GROUP - OBJECTS { cpmThreadStackSizeOvrflw } - STATUS current - DESCRIPTION - "A collection of Overflow objects providing thread - information on devices running POSIX compliant OS." - ::= { cpmGroups 19 } - -cpmThreadHCGroup OBJECT-GROUP - OBJECTS { cpmThreadHCStackSize } - STATUS current - DESCRIPTION - "A collection of High Capacity objects providing thread - information on devices running POSIX compliant OS." - ::= { cpmGroups 20 } - -cpmVirtualProcessOverflowGroup OBJECT-GROUP - OBJECTS { - cpmVirtualProcessMemAllocatedOvrflw, - cpmVirtualProcessMemFreedOvrflw - } - STATUS current - DESCRIPTION - "A collection of Overflow objects providing virtual process - information on devices that can run virtual machines." - ::= { cpmGroups 21 } - -cpmVirtualProcessHCGroup OBJECT-GROUP - OBJECTS { - cpmVirtualProcessHCMemAllocated, - cpmVirtualProcessHCMemFreed - } - STATUS current - DESCRIPTION - "A collection of High Capacity objects providing virtual process - information on devices that can run virtual machines." - ::= { cpmGroups 22 } - -cpmCPULoadAvgGroup OBJECT-GROUP - OBJECTS { - cpmCPULoadAvg1min, - cpmCPULoadAvg5min, - cpmCPULoadAvg15min - } - STATUS current - DESCRIPTION - "A collection of objects providing CPU load average - information" - ::= { cpmGroups 23 } - -cpmCPUTotalMemoryCommitGroup OBJECT-GROUP - OBJECTS { - cpmCPUMemoryCommitted, - cpmCPUMemoryCommittedOvrflw, - cpmCPUMemoryHCCommitted - } - STATUS current - DESCRIPTION - "A collection of objects providing CPU system Committed memory - information." - ::= { cpmGroups 24 } - -cpmCoreGroup OBJECT-GROUP - OBJECTS { - cpmCorePhysicalIndex, - cpmCore5sec, - cpmCore1min, - cpmCore5min, - cpmCoreLoadAvg1min, - cpmCoreLoadAvg5min, - cpmCoreLoadAvg15min - } - STATUS current - DESCRIPTION - "A collection of objects providing per-Core CPU utilization." - ::= { cpmGroups 25 } - -END - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/mibs/orig/CISCO-QOS-PIB-MIB b/mibs/orig/CISCO-QOS-PIB-MIB deleted file mode 100644 index bdf7d0b..0000000 --- a/mibs/orig/CISCO-QOS-PIB-MIB +++ /dev/null @@ -1,2022 +0,0 @@ -CISCO-QOS-PIB-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-TYPE, - Counter64, - Unsigned32, - IpAddress - FROM SNMPv2-SMI - - MODULE-COMPLIANCE, - OBJECT-GROUP - FROM SNMPv2-CONF - - TEXTUAL-CONVENTION, - DisplayString, - MacAddress, - TruthValue - FROM SNMPv2-TC - - - ciscoPibToMib - FROM CISCO-SMI - ; - -ciscoQosPIBMIB MODULE-IDENTITY - LAST-UPDATED "200708290000Z" - ORGANIZATION "Cisco Systems Inc." - CONTACT-INFO - "Cisco Systems - Customer Service - - Postal: 170 W Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-wbu@cisco.com" - DESCRIPTION - "The Cisco QOS Policy PIB for provisioning QOS policy." - REVISION "200708290000Z" - DESCRIPTION - "Add new enum values in QosInterfaceQueueType - textual convention for various queue type." - REVISION "200405030000Z" - DESCRIPTION - "Add new enum value in QosInterfaceQueueType - textual convention for 1p3q8t queue type." - REVISION "200302210000Z" - DESCRIPTION - "Add new enum values in QosInterfaceQueueType - textual convention to indicate queue types - containing priority queue. Add new enum value - in ThresholdSetRange textual convention for - zero threshold." - REVISION "200205020000Z" - DESCRIPTION - "Fix the SYNTAX of Role and RoleCombination." - REVISION "200006160000Z" - DESCRIPTION - "Added QosInterfaceTypeCapabilities textual convention." - REVISION "200005110000Z" - DESCRIPTION - "Initial version of this PIB module." - ::= { ciscoPibToMib 1 } - --- New textual conventions --- - --- DiffServ Codepoint --- -Dscp ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer that is in the range of the DiffServ codepoint - values." - SYNTAX INTEGER (0..63) - --- Layer 2 CoS --- -QosLayer2Cos ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer that is in the range of the layer 2 CoS values. - This corresponds to the 802.1p and ISL CoS values." - SYNTAX INTEGER (0..7) - --- Supported Queues --- -QueueRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer that is limited to the number of queues per - interface supported by the PIB. Limited to 64 which is the - number of codepoints." - SYNTAX INTEGER { - oneQ(1), twoQ(2), threeQ(3), fourQ(4), - eightQ(8), sixteenQ(16), thirtyTwoQ(32), sixtyFourQ(64) - } - --- Supported Thresholds --- -ThresholdSetRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer that is limited to the number of threshold sets - per queue supported by the PIB. A threshold set is a - collection of parameters describing queue threshold. The - parameters of a threshold set depend on the drop mechanism the - queue implements. For example, the threshold set for - tail-drop comprises a single parameter, the percentage of - queue size at which dropping occurs. The threshold set for - WRED comprises two parameters; within the range of the two - parameters packets are randomly dropped." - SYNTAX INTEGER { - zeroT(0), oneT(1), twoT(2), fourT(4), eightT(8) - } - --- Percentage for thresholds, etc. --- -Percent ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer that is in the range of a percent value." - SYNTAX INTEGER (0..100) - --- Interface types --- -QosInterfaceQueueType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An enumerated type for all the known interface types. The - interface types are currently limited to a predefined - combination of queues and thresholds such that the product of - queues and thresholds does not exceed 64 (i.e., the total - number of DSCPs." - SYNTAX INTEGER { - oneQ1t(1), oneQ2t(2), oneQ4t(3), oneQ8t(4), - twoQ1t(5), twoQ2t(6), twoQ4t(7), twoQ8t(8), - threeQ1t(9), threeQ2t(10), threeQ4t(11), threeQ8t(12), - fourQ1t(13), fourQ2t(14), fourQ4t(15), fourQ8t(16), - eightQ1t(17), eightQ2t(18), eightQ4t(19), eightQ8t(20), - sixteenQ1t(21), sixteenQ2t(22), sixteenQ4t(23), - sixtyfourQ1t(24), sixtyfourQ2t(25), sixtyfourQ4t(26), - oneP1Q0t(27), oneP1Q4t(28), oneP1Q8t(29), oneP2Q1t(30), - oneP2Q2t(31), oneP3Q1t(32), oneP7Q8t(33), oneP3Q8t(34), - sixteenQ8t(35), oneP15Q8t(36), oneP15Q1t(37), oneP7Q1t(38), - oneP31Q1t(39), thirtytwoQ1t(40), thirtytwoQ8t(41), - oneP31Q8t(42), oneP7Q4t(43), oneP3Q4t(44), oneP7Q2t(45) - } - -QosInterfaceTypeCapabilities ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An enumeration of interface capabilities. Used by the PDP to - select policies and configuration to push to the PEP." - SYNTAX BITS { - unspecified (0), - - -- Classification support - inputL2Classification (1), inputIpClassification (2), - outputL2Classification (3), outputIpClassification (4), - inputPortClassification (19), outputPortClassification (20), - - -- Policing support - inputUflowPolicing (5), inputAggregatePolicing (6), - outputUflowPolicing (7), outputAggregatePolicing (8), - policeByMarkingDown (9), policeByDropping (10), - inputUflowShaping (21), inputAggregateShaping (22), - outputUflowShaping (23), outputAggregateShaping (24), - - -- Supported scheduling mechanisms - fifo (11), wrr (12), wfq (13), cq (14), pq (15), cbwfq (16), - pqWrr (25), pqCbwfq (26), - - -- Supported congestion control mechanisms - tailDrop (17), wred (18) - } - --- Role --- --- This TC is commented out since it is not actually used in this --- PIB. Nevertheless, the size and character restrictions must still --- be enforced --- --- Role ::= TEXTUAL-CONVENTION --- STATUS current --- DESCRIPTION --- "A display string where valid letters are a-z, A-Z, 0-9, --- ., - and _. Name can not start with an '_'. --- SYNTAX OCTET STRING (SIZE (1..31)) - --- Role Combination --- -RoleCombination ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A Display string consisting of a set of roles concatenated - with a '+' character where the roles are in lexicographic - order from minimum to maximum." - SYNTAX OCTET STRING (SIZE (0..255)) - --- Policy Instance Index --- -PolicyInstanceId ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A textual convention for an attribute that is an an - unsigned integer index attribute of class. It is used for - attributes that exist for the purpose of providing an integer - index of an instance. - - For any integer index that refers to another policy instance, - that other policy instance must exist. Furthermore, it is an - error to try to delete a policy instance that is referred to by - another instance without first deleting the referring - instance." - SYNTAX Unsigned32 - --- Unsigned 64 bit integer --- -Unsigned64 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An unsigned 64 bit integer. We use SYNTAX Counter64 for the - enconding rules." - SYNTAX Counter64 - --- --- Object identifier for conformance statements --- - -qosPIBConformance OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 1 } - --- --- Device Config. --- - --- This group contains device configuration information. This --- configuration is either set by management or reflects the physical --- configuration of the device. This configuration is generally --- reported to the PDP (i.e., the policy server so that the PDP can --- determine what policies to download to the PEP (i.e., the device). - -qosDeviceConfig OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 2 } - -qosDevicePibIncarnationTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosDevicePibIncarnationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This class contains a single policy instance that identifies - the current incarnation of the PIB and the PDP that installed - this incarnation. The instance of this class is reported to - the PDP at client connect time so that the PDP can (attempt - to) ascertain the current state of the PIB." - ::= { qosDeviceConfig 1 } - -qosDevicePibIncarnationEntry OBJECT-TYPE - SYNTAX QosDevicePibIncarnationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The single policy instance of this class identifies the - current incarnation of the PIB and the PDP that installed - this incarnation." - INDEX { qosDeviceIncarnationId } - ::= { qosDevicePibIncarnationTable 1 } - -QosDevicePibIncarnationEntry ::= SEQUENCE { - qosDeviceIncarnationId PolicyInstanceId, - qosDevicePdpName DisplayString, - qosDevicePibIncarnation OCTET STRING, - qosDevicePibTtl Unsigned32 - } - -qosDeviceIncarnationId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosDevicePibIncarnationEntry 1 } - -qosDevicePdpName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the PDP that installed the current incarnation of - the PIB into the device. By default it is the zero length - string." - ::= { qosDevicePibIncarnationEntry 2 } - -qosDevicePibIncarnation OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An octet string to identify the current incarnation. It has - meaning to the PDP that installed the PIB and perhaps its - standby PDPs. By default the empty string." - ::= { qosDevicePibIncarnationEntry 3 } - -qosDevicePibTtl OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of seconds after a client close or TCP timeout for - which the PEP continues to enforce the policy in the PIB. - After this interval, the PIB is consired expired and the - device no longer enforces the policy installed in the PIB." - ::= { qosDevicePibIncarnationEntry 4 } - -qosDeviceAttributeTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosDeviceAttributeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The single instance of this class indicates specific - attributes of the device. These include configuration values - such as the configured PDP addresses, the maximum message - size, and specific device capabilities. The latter include - input port-based and output port-based classification and/or - policing, support for flow based policing, aggregate based - policing, traffic shaping capabilities, etc." - ::= { qosDeviceConfig 2 } - -qosDeviceAttributeEntry OBJECT-TYPE - SYNTAX QosDeviceAttributeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The single instance of this class indicates specific - attributes of the device." - INDEX { qosDeviceAttributeId } - ::= { qosDeviceAttributeTable 1 } - -QosDeviceAttributeEntry ::= SEQUENCE { - qosDeviceAttributeId PolicyInstanceId, - qosDevicePepDomain DisplayString, - qosDevicePrimaryPdp IpAddress, - qosDeviceSecondaryPdp IpAddress, - qosDeviceMaxMessageSize Unsigned32, - qosDeviceCapabilities BITS - } - -qosDeviceAttributeId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosDeviceAttributeEntry 1 } - -qosDevicePepDomain OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The QoS domain that this device belongs to. This is - configured locally on the device (perhaps by some management - protocol such as SNMP). By default, it is the zero-length - string." - ::= { qosDeviceAttributeEntry 2 } - -qosDevicePrimaryPdp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address of the PDP configured to be the primary PDP for - the device." - ::= { qosDeviceAttributeEntry 3 } - -qosDeviceSecondaryPdp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address of the PDP configured to be the secondary PDP for - the device. An address of zero indicates no secondary is - configured." - ::= { qosDeviceAttributeEntry 4 } - -qosDeviceMaxMessageSize OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum size message that this PEP is capable of - receiving in bytes. A value of zero means that the maximum - message size is unspecified (but does not mean it is - unlimited). A message greater than this maximum results in a - MessageTooBig error on a 'no commit' REP." - ::= { qosDeviceAttributeEntry 5 } - -qosDeviceCapabilities OBJECT-TYPE - SYNTAX BITS { - unspecified (0), - - -- QoS labels supported - layer2Cos (1), ipPrecedence (2), dscp (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An enumeration of device capabilities. Used by the PDP to - select policies and configuration to push to the PEP." - ::= { qosDeviceAttributeEntry 6 } - -qosInterfaceTypeTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosInterfaceTypeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This class describes the interface types of the interfaces - that exist on the device. It includes the queue type, role - combination and capabilities of interfaces. The PEP does not - report which specific interfaces have which characteristics." - ::= { qosDeviceConfig 3 } - -qosInterfaceTypeEntry OBJECT-TYPE - SYNTAX QosInterfaceTypeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class describes a role combination for - an interface type of an interface that exists on the device." - INDEX { qosInterfaceTypeId } - ::= { qosInterfaceTypeTable 1 } - -QosInterfaceTypeEntry ::= SEQUENCE { - qosInterfaceTypeId PolicyInstanceId, - qosInterfaceQueueType QosInterfaceQueueType, - qosInterfaceTypeRoles RoleCombination, - qosInterfaceTypeCapabilities QosInterfaceTypeCapabilities - } - -qosInterfaceTypeId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosInterfaceTypeEntry 1 } - -qosInterfaceQueueType OBJECT-TYPE - SYNTAX QosInterfaceQueueType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The interface type in terms of number of queues and - thresholds." - ::= { qosInterfaceTypeEntry 2 } - -qosInterfaceTypeRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A combination of roles on at least one interface of type - qosInterfaceType." - ::= { qosInterfaceTypeEntry 3 } - -qosInterfaceTypeCapabilities OBJECT-TYPE - SYNTAX QosInterfaceTypeCapabilities - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An enumeration of interface capabilities. Used by the PDP to - select policies and configuration to push to the PEP." - ::= { qosInterfaceTypeEntry 4 } - --- --- General Config for the entire domain. --- - --- Table of DiffServ codepoint mappings --- Maps DSCP to marked-down DSCP, IP precedence and CoS - -qosDomainConfig OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 3 } - -qosDiffServMappingTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosDiffServMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Maps each DSCP to a marked-down DSCP. Also maps each DSCP to - an IP precedence and QosLayer2Cos. When configured for the - first time, all 64 entries of the table must be - specified. Thereafter, instances may be modified (with a - delete and install in a single decision) but not deleted - unless all instances are deleted." - ::= { qosDomainConfig 1 } - -qosDiffServMappingEntry OBJECT-TYPE - SYNTAX QosDiffServMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class represents mappings from a DSCP." - INDEX { qosDscp } - ::= { qosDiffServMappingTable 1 } - -QosDiffServMappingEntry ::= SEQUENCE { - qosDscp Dscp, - qosMarkedDscp Dscp, - qosL2Cos QosLayer2Cos - } - -qosDscp OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A DSCP for which this entry contains mappings." - ::= { qosDiffServMappingEntry 1 } - -qosMarkedDscp OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DSCP to use instead of the qosDscp when the packet is out - of profile and hence marked as such." - ::= { qosDiffServMappingEntry 2 } - -qosL2Cos OBJECT-TYPE - SYNTAX QosLayer2Cos - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The L2 CoS value to use when mapping this DSCP to layer 2 - CoS." - ::= { qosDiffServMappingEntry 3 } - --- Table of Layer 2 CoS to DSCP mappings --- - -qosCosToDscpTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosCosToDscpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Maps each of eight CoS values to a DSCP. When configured for - the first time, all 8 entries of the table must be - specified. Thereafter, instances may be modified (with a - delete and install in a single decision) but not deleted - unless all instances are deleted." - ::= { qosDomainConfig 2 } - -qosCosToDscpEntry OBJECT-TYPE - SYNTAX QosCosToDscpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class maps a CoS value to a DSCP." - INDEX { qosCosToDscpCos } - ::= { qosCosToDscpTable 1 } - -QosCosToDscpEntry ::= SEQUENCE { - qosCosToDscpCos QosLayer2Cos, - qosCosToDscpDscp Dscp - } - -qosCosToDscpCos OBJECT-TYPE - SYNTAX QosLayer2Cos - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The L2 CoS value that is being mapped." - ::= { qosCosToDscpEntry 1 } - -qosCosToDscpDscp OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DSCP value to use when mapping the L2 CoS to a DSCP." - ::= { qosCosToDscpEntry 2 } - --- --- The Unmatched Policy Table --- - --- This group specifies the policy to apply to an interface for a --- given role combination where no other policy matches. More --- specifically, the unmatched policy is what is applied to non-IP --- packets for which there is no MAC classification, or what is --- applied to IP packets that do not match any ACE in any ACL applied --- to the interface. - -qosUnmatchedPolicy OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 4 } - -qosUnmatchedPolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosUnmatchedPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A policy class that specifies what QoS to apply to a packet - that does not match any other policy configured for this role - combination for a particular direction of traffic." - ::= { qosUnmatchedPolicy 1 } - -qosUnmatchedPolicyEntry OBJECT-TYPE - SYNTAX QosUnmatchedPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies the unmatched policy - for a particular role combination for incoming or outgoing - traffic." - INDEX { qosUnmatchedPolicyId } - ::= { qosUnmatchedPolicyTable 1 } - -QosUnmatchedPolicyEntry ::= SEQUENCE { - qosUnmatchedPolicyId PolicyInstanceId, - qosUnmatchedPolicyRole RoleCombination, - qosUnmatchedPolicyDirection INTEGER, - qosUnmatchedPolicyDscp Dscp, - qosUnmatchedPolicyDscpTrusted TruthValue, - qosUnmatchPolMicroFlowPolicerId PolicyInstanceId, - qosUnmatchedPolicyAggregateId PolicyInstanceId - } - -qosUnmatchedPolicyId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosUnmatchedPolicyEntry 1 } - -qosUnmatchedPolicyRole OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Role combination for which this instance applies." - ::= { qosUnmatchedPolicyEntry 2 } - -qosUnmatchedPolicyDirection OBJECT-TYPE - SYNTAX INTEGER { in(0), out(1) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The direction of packet flow at the interface in question to - which this instance applies." - ::= { qosUnmatchedPolicyEntry 3 } - -qosUnmatchedPolicyDscp OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DSCP to classify the unmatched packet with. This must be - specified even if qosUnmatchedPolicyDscpTrusted is true." - ::= { qosUnmatchedPolicyEntry 4 } - -qosUnmatchedPolicyDscpTrusted OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "If this attribute is true, then the Dscp associated with the - packet is trusted, i.e., it is assumed to have already been - set. In this case, the Dscp is not rewritten with - qosUnmatchedPolicyDscp (qosUnmatchedPolicyDscp is ignored) - unless this is a non-IP packet and arrives untagged. The - packet is still policed as part of its micro flow and its - aggregate flow. - - When a trusted action is applied to an input interface, the - Dscp (for an IP packet) or CoS (for a non-IP packet) - associated with the packet is the one contained in the packet. - When a trusted action is applied to an output interface, the - Dscp associated with the packet is the one that is the result - of the input classification and policing." - ::= { qosUnmatchedPolicyEntry 5 } - -qosUnmatchPolMicroFlowPolicerId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index identifying the instance of policer to apply to - unmatched packets. It must correspond to the integer index of - an instance of class qosPolicerTable or be zero. If zero, the - microflow is not policed." - ::= { qosUnmatchedPolicyEntry 6 } - -qosUnmatchedPolicyAggregateId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index identifying the aggregate that the packet belongs - to. It must correspond to the integer index of an instance of - class qosAggregateTable or be zero. If zero, the microflow - does not belong to any aggregate and is not policed as part of - any aggregate." - ::= { qosUnmatchedPolicyEntry 7 } - --- --- The Policer Group --- - --- This group specifies policer parameters that can then be used by --- other groups such as the IP ACL Actions, or the unmatched policy. --- This group also defines aggregates that flows can then be assigned --- to. - -qosPolicer OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 5 } - --- The Policer Definition Table --- - -qosPolicerTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosPolicerEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class specifying policing parameters for both microflows - and aggregate flows. This table is designed for policing - according to a token bucket scheme where an average rate and - burst size is specified." - ::= { qosPolicer 1 } - -qosPolicerEntry OBJECT-TYPE - SYNTAX QosPolicerEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies a set of policing - parameters." - INDEX { qosPolicerId } - ::= { qosPolicerTable 1 } - -QosPolicerEntry ::= SEQUENCE { - qosPolicerId PolicyInstanceId, - qosPolicerRate Unsigned64, - qosPolicerNormalBurst Unsigned32, - qosPolicerExcessBurst Unsigned32, - qosPolicerAction INTEGER - } - -qosPolicerId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosPolicerEntry 1 } - -qosPolicerRate OBJECT-TYPE - SYNTAX Unsigned64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The token rate. It is specified in units of bit/s. A rate of - zero means that all packets will be out of profile. If the - qosPolicerAction is set to drop then this effectively - denies any service to packets policed by this policer." - ::= { qosPolicerEntry 2 } - -qosPolicerNormalBurst OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The normal size of a burst in terms of bits." - ::= { qosPolicerEntry 3 } - -qosPolicerExcessBurst OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The excess size of a burst in terms of bits." - ::= { qosPolicerEntry 4 } - -qosPolicerAction OBJECT-TYPE - SYNTAX INTEGER { drop(0), mark(1), shape(2) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of how to handle out of profile packets. When - the shape action is chosen then traffic is shaped to the rate - specified by qosPolicerRate." - ::= { qosPolicerEntry 5 } - --- The Aggregate Table --- - -qosAggregateTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosAggregateEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Instances of this class identify aggregate flows and the - policer to apply to each." - ::= { qosPolicer 2 } - -qosAggregateEntry OBJECT-TYPE - SYNTAX QosAggregateEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies the policer to apply to - an aggregate flow." - INDEX { qosAggregateId } - ::= { qosAggregateTable 1 } - -QosAggregateEntry ::= SEQUENCE { - qosAggregateId PolicyInstanceId, - qosAggregatePolicerId PolicyInstanceId - } - -qosAggregateId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosAggregateEntry 1 } - -qosAggregatePolicerId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index identifying the instance of policer to apply to the - aggregate. It must correspond to the integer index of an - instance of class qosPolicerTable." - ::= { qosAggregateEntry 2 } - --- --- MAC DA Classification Group --- - --- This group determines the CoS to assign to a MAC frame on the --- basis of the destination MAC address. There is no provision for --- policing or rate limiting at layer 2. - -qosMacQos OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 6 } - -qosMacClassificationTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosMacClassificationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class of MAC/Vlan tuples and their associated CoS values." - ::= { qosMacQos 1 } - -qosMacClassificationEntry OBJECT-TYPE - SYNTAX QosMacClassificationEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies the mapping of a VLAN - and a MAC address to a CoS value." - INDEX { qosMacClassificationId } - ::= { qosMacClassificationTable 1 } - -QosMacClassificationEntry ::= SEQUENCE { - qosMacClassificationId PolicyInstanceId, - qosDstMacVlan INTEGER, - qosDstMacAddress MacAddress, - qosDstMacCos QosLayer2Cos - } - -qosMacClassificationId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosMacClassificationEntry 1 } - -qosDstMacVlan OBJECT-TYPE - SYNTAX INTEGER (1..4095) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The VLAN of the destination MAC address of the L2 frame." - ::= { qosMacClassificationEntry 2 } - -qosDstMacAddress OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The destination MAC address of the L2 frame." - ::= { qosMacClassificationEntry 3 } - -qosDstMacCos OBJECT-TYPE - SYNTAX QosLayer2Cos - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The CoS to assign the packet with the associated MAC/VLAN - tuple. Note that this CoS is overridden by the policies to - classify the frame at layer 3 if there are any." - ::= { qosMacClassificationEntry 4 } - --- --- The IP Classification and Policing Group --- - -qosIpQos OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 7 } - --- The ACE Table --- - -qosIpAceTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIpAceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "ACE definitions." - ::= { qosIpQos 1 } - -qosIpAceEntry OBJECT-TYPE - SYNTAX QosIpAceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies an ACE." - INDEX { qosIpAceId } - ::= { qosIpAceTable 1 } - -QosIpAceEntry ::= SEQUENCE { - qosIpAceId PolicyInstanceId, - qosIpAceDstAddr IpAddress, - qosIpAceDstAddrMask IpAddress, - qosIpAceSrcAddr IpAddress, - qosIpAceSrcAddrMask IpAddress, - qosIpAceDscpMin Dscp, - qosIpAceDscpMax Dscp, - qosIpAceProtocol INTEGER, - qosIpAceDstL4PortMin INTEGER, - qosIpAceDstL4PortMax INTEGER, - qosIpAceSrcL4PortMin INTEGER, - qosIpAceSrcL4PortMax INTEGER, - qosIpAcePermit TruthValue - } - -qosIpAceId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIpAceEntry 1 } - -qosIpAceDstAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP address to match against the packet's destination IP - address." - ::= { qosIpAceEntry 2 } - -qosIpAceDstAddrMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A mask for the matching of the destination IP address." - ::= { qosIpAceEntry 3 } - -qosIpAceSrcAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP address to match against the packet's source IP - address." - ::= { qosIpAceEntry 4 } - -qosIpAceSrcAddrMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A mask for the matching of the source IP address." - ::= { qosIpAceEntry 5 } - -qosIpAceDscpMin OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum value that the DSCP in the packet can have and - match this ACE." - ::= { qosIpAceEntry 6 } - -qosIpAceDscpMax OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum value that the DSCP in the packet can have and - match this ACE." - ::= { qosIpAceEntry 7 } - -qosIpAceProtocol OBJECT-TYPE - SYNTAX INTEGER (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP protocol to match against the packet's protocol. - A value of zero means match all." - ::= { qosIpAceEntry 8 } - -qosIpAceDstL4PortMin OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum value that the packet's layer 4 dest port number - can have and match this ACE." - ::= { qosIpAceEntry 9 } - -qosIpAceDstL4PortMax OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum value that the packet's layer 4 dest port number - can have and match this ACE." - ::= { qosIpAceEntry 10 } - -qosIpAceSrcL4PortMin OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum value that the packet's layer 4 source port - number can have and match this ACE." - ::= { qosIpAceEntry 11 } - -qosIpAceSrcL4PortMax OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum value that the packet's layer 4 source port - number can have and match this ACE." - ::= { qosIpAceEntry 12 } - -qosIpAcePermit OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "If the packet matches this ACE and the value of this attribute - is true, then the matching process terminates and the QoS - associated with this ACE (indirectly through the ACL) is - applied to the packet. If the value of this attribute is false, - then no more ACEs in this ACL are compared to this packet and - matching continues with the first ACE of the next ACL." - ::= { qosIpAceEntry 13 } - --- The ACL Definition Table --- - -qosIpAclDefinitionTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIpAclDefinitionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class that defines a set of ACLs each being an ordered list - of ACEs." - ::= { qosIpQos 2 } - -qosIpAclDefinitionEntry OBJECT-TYPE - SYNTAX QosIpAclDefinitionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies an ACE in an ACL and its - order with respect to other ACEs in the same ACL." - INDEX { qosIpAclDefinitionId } - ::= { qosIpAclDefinitionTable 1 } - -QosIpAclDefinitionEntry ::= SEQUENCE { - qosIpAclDefinitionId PolicyInstanceId, - qosIpAclId PolicyInstanceId, - qosIpAceOrder Unsigned32, - qosIpAclDefAceId PolicyInstanceId - } - -qosIpAclDefinitionId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIpAclDefinitionEntry 1 } - -qosIpAclId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index for this ACL. There will be one instance of - policy class qosIpAclDefinition with this integer index for - each ACE in the ACL per role combination." - ::= { qosIpAclDefinitionEntry 2 } - -qosIpAceOrder OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An integer that determines the position of this ACE in the ACL. - An ACE with a given order is positioned in the access contol - list before one with a higher order." - ::= { qosIpAclDefinitionEntry 3 } - -qosIpAclDefAceId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute specifies the ACE in the qosIpAceTable that is - in the ACL specified by qosIpAclId at the position specified - by qosIpAceOrder." - ::= { qosIpAclDefinitionEntry 4 } - --- The ACL Action Table --- - -qosIpAclActionTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIpAclActionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class that applies a set of ACLs to interfaces specifying, - for each interface the order of the ACL with respect to other - ACLs applied to the same interface and, for each ACL the - action to take for a packet that matches a permit ACE in that - ACL. Interfaces are specified abstractly in terms of - interface role combinations." - ::= { qosIpQos 3 } - -qosIpAclActionEntry OBJECT-TYPE - SYNTAX QosIpAclActionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class applies an ACL to traffic in a - particular direction on an interface with a particular role - combination, and specifies the action for packets which match - the ACL." - INDEX { qosIpAclActionId } - ::= { qosIpAclActionTable 1 } - -QosIpAclActionEntry ::= SEQUENCE { - qosIpAclActionId PolicyInstanceId, - qosIpAclActAclId PolicyInstanceId, - qosIpAclInterfaceRoles RoleCombination, - qosIpAclInterfaceDirection INTEGER, - qosIpAclOrder Unsigned32, - qosIpAclDscp Dscp, - qosIpAclDscpTrusted TruthValue, - qosIpAclMicroFlowPolicerId PolicyInstanceId, - qosIpAclAggregateId PolicyInstanceId - } - -qosIpAclActionId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIpAclActionEntry 1 } - -qosIpAclActAclId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ACL associated with this action." - ::= { qosIpAclActionEntry 2 } - -qosIpAclInterfaceRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The interfaces to which this ACL applies specified in terms - of a set of roles." - ::= { qosIpAclActionEntry 3 } - -qosIpAclInterfaceDirection OBJECT-TYPE - SYNTAX INTEGER { in(0), out(1) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The direction of packet flow at the interface in question to - which this ACL applies." - ::= { qosIpAclActionEntry 4 } - -qosIpAclOrder OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An integer that determines the order of this ACL in the list - of ACLs applied to interfaces of the specified role - combination. An ACL with a given order is positioned in the - list before one with a higher order." - ::= { qosIpAclActionEntry 5 } - -qosIpAclDscp OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DSCP to classify the packet with in the event that the - packet matches an ACE in this ACL and the ACE is a permit." - ::= { qosIpAclActionEntry 6 } - -qosIpAclDscpTrusted OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "If this attribute is true, then the Dscp associated with - the packet is trusted, i.e., it is assumed to have already - been set. In this case, the Dscp is not rewritten with - qosIpAclDscp (qosIpAclDscp is ignored). The packet is still - policed as part of its micro flow and its aggregate flow. - - When a trusted action is applied to an input interface, the - Dscp associated with the packet is the one contained in the - packet. When a trusted action is applied to an output - interface, the Dscp associated with the packet is the one that - is the result of the input classification and policing." - ::= { qosIpAclActionEntry 7 } - -qosIpAclMicroFlowPolicerId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index identifying the instance of policer to apply to the - microflow. It must correspond to the integer index of an - instance of class qosPolicerTableor be zero. If zero, the - microflow is not policed." - ::= { qosIpAclActionEntry 8 } - -qosIpAclAggregateId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index identifying the aggregate that the packet belongs - to. It must correspond to the integer index of an instance of - class qosAggregateTable or be zero. If zero, the microflow - does not belong to any aggregate and is not policed as part of - any aggregate." - ::= { qosIpAclActionEntry 9 } - --- --- QoS Interface Group --- - --- This group specifies the configuration of the various interface --- types including the setting of thresholds, queueing parameters, --- mapping of DSCPs to queues and thresholds, etc. - -qosIfParameters OBJECT IDENTIFIER ::= { ciscoQosPIBMIB 8 } - --- Table of scheduling discipline preferences --- - -qosIfSchedulingPreferencesTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIfSchedulingPreferenceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This class specifies the scheduling preference an interface - chooses if it supports multiple scheduling types. Higher - values are preferred over lower values." - ::= { qosIfParameters 1 } - -qosIfSchedulingPreferenceEntry OBJECT-TYPE - SYNTAX QosIfSchedulingPreferenceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies a scheduling preference - for a queue-type on an interface with a particular role - combination." - INDEX { qosIfSchedulingPreferenceId } - ::= { qosIfSchedulingPreferencesTable 1 } - -QosIfSchedulingPreferenceEntry ::= SEQUENCE { - qosIfSchedulingPreferenceId PolicyInstanceId, - qosIfSchedulingRoles RoleCombination, - qosIfSchedulingPreference INTEGER, - qosIfSchedulingDiscipline INTEGER, - qosIfSchedulingQueueType QosInterfaceQueueType - } - -qosIfSchedulingPreferenceId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIfSchedulingPreferenceEntry 1 } - -qosIfSchedulingRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The combination of roles the interface must have for this - policy instance to apply to that interface." - ::= { qosIfSchedulingPreferenceEntry 2 } - -qosIfSchedulingPreference OBJECT-TYPE - SYNTAX INTEGER (1..16) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The preference to use this scheduling discipline and queue - type. A higher value means a higher preference. If two - disciplines have the same preference the choice is a local - decision." - ::= { qosIfSchedulingPreferenceEntry 3 } - -qosIfSchedulingDiscipline OBJECT-TYPE - SYNTAX INTEGER { - weightedFairQueueing (1), - weightedRoundRobin (2), - customQueueing (3), - priorityQueueing (4), - classBasedWFQ (5), - fifo (6), - pqWrr (7), - pqCbwfq (8) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An enumerate type for all the known scheduling disciplines." - ::= { qosIfSchedulingPreferenceEntry 4 } - -qosIfSchedulingQueueType OBJECT-TYPE - SYNTAX QosInterfaceQueueType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The queue type of this preference." - ::= { qosIfSchedulingPreferenceEntry 5 } - --- Table of drop mechanism preferences --- - -qosIfDropPreferenceTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIfDropPreferenceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This class specifies the preference of the drop mechanism an - interface chooses if it supports multiple drop mechanisms. - Higher values are preferred over lower values." - ::= { qosIfParameters 2 } - -qosIfDropPreferenceEntry OBJECT-TYPE - SYNTAX QosIfDropPreferenceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies a drop preference for - a drop mechanism on an interface with a particular role - combination." - INDEX { qosIfDropPreferenceId } - ::= { qosIfDropPreferenceTable 1 } - -QosIfDropPreferenceEntry ::= SEQUENCE { - qosIfDropPreferenceId PolicyInstanceId, - qosIfDropRoles RoleCombination, - qosIfDropPreference INTEGER, - qosIfDropDiscipline INTEGER - } - -qosIfDropPreferenceId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIfDropPreferenceEntry 1 } - -qosIfDropRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The combination of roles the interface must have for this - policy instance to apply to that interface." - ::= { qosIfDropPreferenceEntry 2 } - -qosIfDropPreference OBJECT-TYPE - SYNTAX INTEGER (1..16) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The preference to use this drop mechanism. A higher value - means a higher preference. If two mechanisms have the same - preference the choice is a local decision." - ::= { qosIfDropPreferenceEntry 3 } - -qosIfDropDiscipline OBJECT-TYPE - SYNTAX INTEGER { - qosIfDropWRED (1), - qosIfDropTailDrop (2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An enumerate type for all the known drop mechanisms." - ::= { qosIfDropPreferenceEntry 4 } - --- The Assignment of DSCPs to queues and thresholds for each interface --- type. --- - -qosIfDscpAssignmentTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIfDscpAssignmentEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The assignment of each DSCP to a queue and threshold for each - interface queue type." - ::= { qosIfParameters 3 } - -qosIfDscpAssignmentEntry OBJECT-TYPE - SYNTAX QosIfDscpAssignmentEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies the queue and threshold - set for a packet with a particular DSCP on an interface of - a particular type with a particular role combination." - INDEX { qosIfDscpAssignmentId } - ::= { qosIfDscpAssignmentTable 1 } - -QosIfDscpAssignmentEntry ::= SEQUENCE { - qosIfDscpAssignmentId PolicyInstanceId, - qosIfDscpRoles RoleCombination, - qosIfQueueType QosInterfaceQueueType, - qosIfDscp Dscp, - qosIfQueue INTEGER, - qosIfThresholdSet INTEGER - } - -qosIfDscpAssignmentId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIfDscpAssignmentEntry 1 } - -qosIfDscpRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The role combination the interface must be configured with." - ::= { qosIfDscpAssignmentEntry 2 } - -qosIfQueueType OBJECT-TYPE - SYNTAX QosInterfaceQueueType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The interface queue type to which this row applies." - ::= { qosIfDscpAssignmentEntry 3 } - -qosIfDscp OBJECT-TYPE - SYNTAX Dscp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DSCP to which this row applies." - ::= { qosIfDscpAssignmentEntry 4 } - -qosIfQueue OBJECT-TYPE - SYNTAX INTEGER (1..64) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The queue to which the DSCP applies for the given interface - type." - ::= { qosIfDscpAssignmentEntry 5 } - -qosIfThresholdSet OBJECT-TYPE - SYNTAX INTEGER (1..8) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The threshold set of the specified queue to which the DSCP - applies for the given interface type." - ::= { qosIfDscpAssignmentEntry 6 } - --- The configuration of RED thresholds --- - -qosIfRedTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIfRedEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class of lower and upper values for each threshold set in a - queue supporting WRED. If the size of the queue for a given - threshold is below the lower value then packets assigned to - that threshold are always accepted into the queue. If the - size of the queue is above upper value then packets are always - dropped. If the size of the queue is between the lower and - the upper then packets are randomly dropped." - ::= { qosIfParameters 4 } - -qosIfRedEntry OBJECT-TYPE - SYNTAX QosIfRedEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies threshold limits for a - particular RED threshold of a given threshold set on an - interface and with a particular role combination." - INDEX { qosIfRedId } - ::= { qosIfRedTable 1 } - -QosIfRedEntry ::= SEQUENCE { - qosIfRedId PolicyInstanceId, - qosIfRedRoles RoleCombination, - qosIfRedNumThresholdSets ThresholdSetRange, - qosIfRedThresholdSet INTEGER, - qosIfRedThresholdSetLower Percent, - qosIfRedThresholdSetUpper Percent - } - -qosIfRedId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIfRedEntry 1 } - -qosIfRedRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The role combination the interface must be configured with." - ::= { qosIfRedEntry 2 } - -qosIfRedNumThresholdSets OBJECT-TYPE - SYNTAX ThresholdSetRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The values in this entry apply only to queues with the number - of thresholds specified by this attribute." - ::= { qosIfRedEntry 3 } - -qosIfRedThresholdSet OBJECT-TYPE - SYNTAX INTEGER (1..8) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The threshold set to which the lower and upper values apply. - It must be in the range 1 through qosIfRedNumThresholdSets. - There must be exactly one PRI for each value in this range." - ::= { qosIfRedEntry 4 } - -qosIfRedThresholdSetLower OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The threshold value below which no packets are dropped." - ::= { qosIfRedEntry 5 } - -qosIfRedThresholdSetUpper OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The threshold value above which all packets are dropped." - ::= { qosIfRedEntry 6 } - --- The configuration of tail drop thresholds --- - -qosIfTailDropTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIfTailDropEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class for threshold sets in a queue supporting tail drop. - If the size of the queue for a given threshold set is at or - below the specified value then packets assigned to that - threshold set are always accepted into the queue. If the size - of the queue is above the specified value then packets are - always dropped." - ::= { qosIfParameters 5 } - -qosIfTailDropEntry OBJECT-TYPE - SYNTAX QosIfTailDropEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies the queue depth for a - particular tail-drop threshold set on an interface with a - particular role combination." - INDEX { qosIfTailDropId } - ::= { qosIfTailDropTable 1 } - -QosIfTailDropEntry ::= SEQUENCE { - qosIfTailDropId PolicyInstanceId, - qosIfTailDropRoles RoleCombination, - qosIfTailDropNumThresholdSets ThresholdSetRange, - qosIfTailDropThresholdSet INTEGER, - qosIfTailDropThresholdSetValue Percent - } - -qosIfTailDropId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIfTailDropEntry 1 } - -qosIfTailDropRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The role combination the interface must be configured with." - ::= { qosIfTailDropEntry 2 } - -qosIfTailDropNumThresholdSets OBJECT-TYPE - SYNTAX ThresholdSetRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value in this entry applies only to queues with the - number of thresholds specified by this attribute." - ::= { qosIfTailDropEntry 3 } - -qosIfTailDropThresholdSet OBJECT-TYPE - SYNTAX INTEGER (1..8) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The threshold set to which the threshold value applies" - ::= { qosIfTailDropEntry 4 } - -qosIfTailDropThresholdSetValue OBJECT-TYPE - SYNTAX Percent - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The threshold value above which packets are dropped." - ::= { qosIfTailDropEntry 5 } - --- Weights for interfaces that support WRR, WFQ, CBWFQ, etc. --- - -qosIfWeightsTable OBJECT-TYPE - SYNTAX SEQUENCE OF QosIfWeightsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A class of scheduling weights for each queue of an interface - that supports weighted round robin scheduling or a mix of - priority queueing and weighted round robin. For a queue with - N priority queues, the N highest queue numbers are the - priority queues with the highest queue number having the - highest priority. WRR is applied to the non-priority queues." - ::= { qosIfParameters 6 } - -qosIfWeightsEntry OBJECT-TYPE - SYNTAX QosIfWeightsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An instance of this class specifies the scheduling weight for - a particular queue of an interface with a particular number - of queues and with a particular role combination." - INDEX { qosIfWeightsId } - ::= { qosIfWeightsTable 1 } - -QosIfWeightsEntry ::= SEQUENCE { - qosIfWeightsId PolicyInstanceId, - qosIfWeightsRoles RoleCombination, - qosIfWeightsNumQueues QueueRange, - qosIfWeightsQueue INTEGER, - qosIfWeightsDrainSize Unsigned32, - qosIfWeightsQueueSize Unsigned32 - } - -qosIfWeightsId OBJECT-TYPE - SYNTAX PolicyInstanceId - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An integer index to identify the instance of the policy class." - ::= { qosIfWeightsEntry 1 } - -qosIfWeightsRoles OBJECT-TYPE - SYNTAX RoleCombination - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The role combination the interface must be configured with." - ::= { qosIfWeightsEntry 2 } - -qosIfWeightsNumQueues OBJECT-TYPE - SYNTAX QueueRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the weight in this instance applies only to - interfaces with the number of queues specified by this - attribute." - ::= { qosIfWeightsEntry 3 } - -qosIfWeightsQueue OBJECT-TYPE - SYNTAX INTEGER (1..64) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The queue to which the weight applies." - ::= { qosIfWeightsEntry 4 } - -qosIfWeightsDrainSize OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of bytes that may be drained from the - queue in one cycle. The percentage of the bandwith allocated - to this queue can be calculated from this attribute and the - sum of the drain sizes of all the non-priority queues of the - interface." - ::= { qosIfWeightsEntry 5 } - -qosIfWeightsQueueSize OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the queue in bytes. Some devices set queue size - in terms of packets. These devices must calculate the queue - size in packets by assuming an average packet size suitable - for the particular interface. - - Some devices have a fixed size buffer to be shared among all - queues. These devices must allocate a fraction of the - total buffer space to this queue calculated as the the ratio - of the queue size to the sum of the queue sizes for the - interface." - ::= { qosIfWeightsEntry 6 } - -qosPIBCompliances OBJECT IDENTIFIER ::= { qosPIBConformance 1 } -qosPIBGroups OBJECT IDENTIFIER ::= { qosPIBConformance 2 } - --- Compliance - -qosPIBCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for the QOS Policy Derived MIB." - MODULE - MANDATORY-GROUPS { - qosDevicePibIncarnationTableGroup, - qosDeviceAttributeTableGroup, - qosInterfaceTypeTableGroup - } - ::= { qosPIBCompliances 1 } - -qosDevicePibIncarnationTableGroup OBJECT-GROUP - OBJECTS { - qosDevicePdpName, - qosDevicePibIncarnation, - qosDevicePibTtl - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 1 } - -qosDeviceAttributeTableGroup OBJECT-GROUP - OBJECTS { - qosDevicePepDomain, - qosDevicePrimaryPdp, - qosDeviceSecondaryPdp, - qosDeviceMaxMessageSize, - qosDeviceCapabilities - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 2 } - -qosInterfaceTypeTableGroup OBJECT-GROUP - OBJECTS { - qosInterfaceQueueType, - qosInterfaceTypeRoles, - qosInterfaceTypeCapabilities - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 3 } - -qosDiffServMappingTableGroup OBJECT-GROUP - OBJECTS { - qosMarkedDscp, - qosL2Cos - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 4 } - -qosCosToDscpTableGroup OBJECT-GROUP - OBJECTS { - qosCosToDscpDscp - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 5 } - -qosUnmatchedPolicyTableGroup OBJECT-GROUP - OBJECTS { - qosUnmatchedPolicyRole, - qosUnmatchedPolicyDirection, - qosUnmatchedPolicyDscp, - qosUnmatchedPolicyDscpTrusted, - qosUnmatchPolMicroFlowPolicerId, - qosUnmatchedPolicyAggregateId - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 6 } - -qosPolicerTableGroup OBJECT-GROUP - OBJECTS { - qosPolicerRate, - qosPolicerNormalBurst, - qosPolicerExcessBurst, - qosPolicerAction - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 7 } - -qosAggregateTableGroup OBJECT-GROUP - OBJECTS { - qosAggregatePolicerId - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 8 } - -qosMacClassificationTableGroup OBJECT-GROUP - OBJECTS { - qosDstMacVlan, - qosDstMacAddress, - qosDstMacCos - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 9 } - -qosIpAceTableGroup OBJECT-GROUP - OBJECTS { - qosIpAceDstAddr, - qosIpAceDstAddrMask, - qosIpAceSrcAddr, - qosIpAceSrcAddrMask, - qosIpAceDscpMin, - qosIpAceDscpMax, - qosIpAceProtocol, - qosIpAceDstL4PortMin, - qosIpAceDstL4PortMax, - qosIpAceSrcL4PortMin, - qosIpAceSrcL4PortMax, - qosIpAcePermit - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 10 } - -qosIpAclDefinitionTableGroup OBJECT-GROUP - OBJECTS { - qosIpAclId, - qosIpAceOrder, - qosIpAclDefAceId - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 11 } - -qosIpAclActionTableGroup OBJECT-GROUP - OBJECTS { - qosIpAclActAclId, - qosIpAclInterfaceRoles, - qosIpAclInterfaceDirection, - qosIpAclOrder, - qosIpAclDscp, - qosIpAclDscpTrusted, - qosIpAclMicroFlowPolicerId, - qosIpAclAggregateId - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 12 } - -qosIfSchedulingPreferencesTableGroup OBJECT-GROUP - OBJECTS { - qosIfSchedulingRoles, - qosIfSchedulingPreference, - qosIfSchedulingDiscipline, - qosIfSchedulingQueueType - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 13 } - -qosIfDropPreferenceTableGroup OBJECT-GROUP - OBJECTS { - qosIfDropRoles, - qosIfDropPreference, - qosIfDropDiscipline - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 14 } - -qosIfDscpAssignmentTableGroup OBJECT-GROUP - OBJECTS { - qosIfDscpRoles, - qosIfQueueType, - qosIfDscp, - qosIfQueue, - qosIfThresholdSet - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 15 } - -qosIfRedTableGroup OBJECT-GROUP - OBJECTS { - qosIfRedRoles, - qosIfRedNumThresholdSets, - qosIfRedThresholdSet, - qosIfRedThresholdSetLower, - qosIfRedThresholdSetUpper - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 16 } - -qosIfTailDropTableGroup OBJECT-GROUP - OBJECTS { - qosIfTailDropRoles, - qosIfTailDropNumThresholdSets, - qosIfTailDropThresholdSet, - qosIfTailDropThresholdSetValue - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 17 } - -qosIfWeightsTableGroup OBJECT-GROUP - OBJECTS { - qosIfWeightsRoles, - qosIfWeightsNumQueues, - qosIfWeightsQueue, - qosIfWeightsDrainSize, - qosIfWeightsQueueSize - } - STATUS current - DESCRIPTION - "" - ::= { qosPIBGroups 18 } - -END - - - diff --git a/mibs/orig/CISCO-SMI b/mibs/orig/CISCO-SMI deleted file mode 100644 index 3c5de65..0000000 --- a/mibs/orig/CISCO-SMI +++ /dev/null @@ -1,566 +0,0 @@ --- ***************************************************************** --- CISCO-SMI.my: Cisco Enterprise Structure of Management Information --- --- April 1994, Jeffrey T. Johnson --- --- Copyright (c) 1994-1997, 2001, 2009, 2012, 2016 by cisco Systems Inc. --- All rights reserved. --- --- **************************************************************** - -CISCO-SMI DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - OBJECT-IDENTITY, - enterprises - FROM SNMPv2-SMI; - - -cisco MODULE-IDENTITY - LAST-UPDATED "201601150000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - "Cisco Systems - Customer Service - - Postal: 170 West Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "The Structure of Management Information for the - Cisco enterprise." - REVISION "201601150000Z" - DESCRIPTION - "Added ciscoLDAP under cisco" - REVISION "201208290000Z" - DESCRIPTION - "Added ciscoSMB under otherEnterprises" - REVISION "200902030000Z" - DESCRIPTION - "Added ciscoSB under otherEnterprises" - REVISION "200203210000Z" - DESCRIPTION - "Added ciscoPKI for PKI policy and extension OIDs" - REVISION "200105220000Z" - DESCRIPTION - "Added transport protocol domains." - REVISION "200011012246Z" - DESCRIPTION - "Added ciscoDomains to define new transports. Also added - ciscoCpeCIB, which will contain managed objects that - contribute to the CPE Configuration Information Base (CIB)." - REVISION "200001110000Z" - DESCRIPTION - "Added ciscoPolicy, ciscoPolicyAuto, ciscoPIB, and - ciscoPibToMib." - REVISION "9704090000Z" - DESCRIPTION - "Added ciscoPartnerProducts to generate sysObjectID - for partner platforms" - REVISION "9505160000Z" - DESCRIPTION - "New oid assignments for Cisco REPEATER MIB and others." - REVISION "9404262000Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { enterprises 9 } - - - --- assigned by IANA - -ciscoProducts OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoProducts is the root OBJECT IDENTIFIER from - which sysObjectID values are assigned. Actual - values are defined in CISCO-PRODUCTS-MIB." - ::= { cisco 1 } - - -local OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Subtree beneath which pre-10.2 MIBS were built." - ::= { cisco 2 } - - -temporary OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Subtree beneath which pre-10.2 experiments were - placed." - ::= { cisco 3 } - - -pakmon OBJECT-IDENTITY - STATUS current - DESCRIPTION - "reserved for pakmon" - ::= { cisco 4 } - - -workgroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "subtree reserved for use by the Workgroup Business Unit" - ::= { cisco 5 } - - -otherEnterprises OBJECT-IDENTITY - STATUS current - DESCRIPTION - "otherEnterprises provides a root object identifier - from which mibs produced by other companies may be - placed. mibs produced by other enterprises are - typicially implemented with the object identifiers - as defined in the mib, but if the mib is deemed to - be uncontrolled, we may reroot the mib at this - subtree in order to have a controlled version." - ::= { cisco 6 } - - -ciscoSB OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoSB provides root Object Identifier for Management - Information Base for products of Cisco Small Business. - This includes products rebranded from linksys aquisition. - MIB numbers under this root are managed and controlled - by ciscosb_mib@cisco.com." - ::= { otherEnterprises 1 } - - -ciscoSMB OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoSMB provides root Object Identifier for Management - Information Base for products of Cisco built for Small and - Medium Business market.The MIB numbers under this root are - managed and controlled by ciscosmb_mib@cisco.com" - ::= { otherEnterprises 2 } - - -ciscoAgentCapability OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoAgentCapability provides a root object identifier - from which AGENT-CAPABILITIES values may be assigned." - ::= { cisco 7 } - - -ciscoConfig OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoConfig is the main subtree for configuration mibs." - ::= { cisco 8 } - - -ciscoMgmt OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoMgmt is the main subtree for new mib development." - ::= { cisco 9 } - - -ciscoExperiment OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoExperiment provides a root object identifier - from which experimental mibs may be temporarily - based. mibs are typicially based here if they - fall in one of two categories - 1) are IETF work-in-process mibs which have not - been assigned a permanent object identifier by - the IANA. - 2) are cisco work-in-process which has not been - assigned a permanent object identifier by the - cisco assigned number authority, typicially because - the mib is not ready for deployment. - - NOTE WELL: support for mibs in the ciscoExperiment - subtree will be deleted when a permanent object - identifier assignment is made." - ::= { cisco 10 } - - -ciscoAdmin OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoAdmin is reserved for administratively assigned - OBJECT IDENTIFIERS, i.e. those not associated with MIB - objects" - ::= { cisco 11 } - - -ciscoModules OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoModules provides a root object identifier - from which MODULE-IDENTITY values may be assigned." - ::= { cisco 12 } - - -lightstream OBJECT-IDENTITY - STATUS current - DESCRIPTION - "subtree reserved for use by Lightstream" - ::= { cisco 13 } - - -ciscoworks OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoworks provides a root object identifier beneath - which mibs applicable to the CiscoWorks family of network - management products are defined." - ::= { cisco 14 } - - -newport OBJECT-IDENTITY - STATUS current - DESCRIPTION - "subtree reserved for use by the former Newport Systems - Solutions, now a portion of the Access Business Unit." - ::= { cisco 15 } - - -ciscoPartnerProducts OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoPartnerProducts is the root OBJECT IDENTIFIER from - which partner sysObjectID values may be assigned. Such - sysObjectID values are composed of the ciscoPartnerProducts - prefix, followed by a single identifier that is unique for - each partner, followed by the value of sysObjectID of the - Cisco product from which partner product is derived. Note - that the chassisPartner MIB object defines the value of the - identifier assigned to each partner." - ::= { cisco 16 } - - -ciscoPolicy OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoPolicy is the root of the Cisco-assigned OID - subtree for use with Policy Management." - ::= { cisco 17 } - - --- Note that 1.3.6.1.4.1.9.17.1 is currently unassigned - -ciscoPIB OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoPIB is the root of the Cisco-assigned OID - subtree for assignment to PIB (Policy Information - Base) modules." - ::= { ciscoPolicy 2 } - - -ciscoPolicyAuto OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoPolicyAuto is the root of the Cisco-assigned - OID subtree for OIDs which are automatically assigned - for use in Policy Management." - ::= { cisco 18 } - - --- Note that 1.3.6.1.4.1.9.18.1 is currently unassigned - -ciscoPibToMib OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoPibToMib is the root of the Cisco-assigned - OID subtree for MIBs which are algorithmically - generated/translated from Cisco PIBs with OIDs - assigned under the ciscoPIB subtree. - These generated MIBs allow management - entities (other the current Policy Server) to - read the downloaded policy. By convention, for PIB - 'ciscoPIB.x', the generated MIB shall have the - name 'ciscoPibToMib.x'." - ::= { ciscoPolicyAuto 2 } - - -ciscoDomains OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoDomains provides a root object identifier from which - different transport mapping values may be assigned." - ::= { cisco 19 } - - -ciscoCIB OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoCIB is the root of the Cisco-assigned OID subtree for - assignment to MIB modules describing managed objects that - part of the CPE automatic configuration framework." - ::= { cisco 20 } - - -ciscoCibMmiGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoCibMmiGroup is the root of the Cisco-assigned OID - subtree for assignment to MIB modules describing managed - objects supporting the Modem Management Interface (MMI), - the interface that facilitates CPE automatic configuration." - ::= { ciscoCIB 1 } - - -ciscoCibProvGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoCibStoreGroup is the root of the Cisco-assigned OID - subtree for assignment to MIB modules describing managed - objects contributing to the Configuration Information Base - (CIB)." - ::= { ciscoCIB 2 } - - -ciscoPKI OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoPKI is the root of cisco-assigned OID subtree for PKI - Certificate Policies and Certificate Extensions." - ::= { cisco 21 } - - -ciscoLDAP OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoLDAP is the root of the Cisco-assigned OID - subtree for assignment to LDAP (Lightweight Directory - Access Protocol) modules." - ::= { cisco 22 } - - --- ciscoAdmin assignments follow - -ciscoProxy OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoProxy OBJECT IDENTIFIERS are used to uniquely name - party mib records created to proxy for SNMPv1." - ::= { ciscoAdmin 1 } - -ciscoPartyProxy OBJECT IDENTIFIER - ::= { ciscoProxy 1 } - -ciscoContextProxy OBJECT IDENTIFIER - ::= { ciscoProxy 2 } - - --- Administrative assignments for repeaters - -ciscoRptrGroupObjectID OBJECT-IDENTITY - STATUS current - DESCRIPTION - "ciscoRptrGroupObjectID OBJECT IDENTIFIERS are used to - uniquely identify groups of repeater ports for use by the - SNMP-REPEATER-MIB (RFC 1516) rptrGroupObjectID object." - ::= { ciscoAdmin 2 } - - -ciscoUnknownRptrGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The identity of an unknown repeater port group." - ::= { ciscoRptrGroupObjectID 1 } - - -cisco2505RptrGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The authoritative identity of the Cisco 2505 repeater - port group." - ::= { ciscoRptrGroupObjectID 2 } - - -cisco2507RptrGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The authoritative identity of the Cisco 2507 repeater - port group." - ::= { ciscoRptrGroupObjectID 3 } - - -cisco2516RptrGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The authoritative identity of the Cisco 2516 repeater - port group." - ::= { ciscoRptrGroupObjectID 4 } - - -ciscoWsx5020RptrGroup OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The authoritative identity of the wsx5020 repeater - port group." - ::= { ciscoRptrGroupObjectID 5 } - - --- Administrative assignments for chip sets - -ciscoChipSets OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Numerous media-specific MIBS have an object, defined as - an OBJECT IDENTIFIER, which is the identity of the chipset - realizing the interface. Cisco-specific chipsets have their - OBJECT IDENTIFIERS assigned under this subtree." - ::= { ciscoAdmin 3 } - - -ciscoChipSetSaint1 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The identity of the Rev 1 SAINT ethernet chipset - manufactured for cisco by LSI Logic." - ::= { ciscoChipSets 1 } - - -ciscoChipSetSaint2 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The identity of the Rev 2 SAINT ethernet chipset - manufactured for cisco by LSI Logic." - ::= { ciscoChipSets 2 } - - -ciscoChipSetSaint3 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The identity of the Rev 3 SAINT ethernet chipset - manufactured for cisco by Plessey." - ::= { ciscoChipSets 3 } - - -ciscoChipSetSaint4 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The identity of the Rev 4 SAINT ethernet chipset - manufactured for cisco by Mitsubishi." - ::= { ciscoChipSets 4 } - --- Transport protocol domains --- --- The textual conventions for these domains are defined in CISCO-TM. - -ciscoTDomains OBJECT IDENTIFIER - ::= { ciscoDomains 99999 } - - -ciscoTDomainUdpIpv4 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The UDP over IPv4 transport domain. The corresponding - transport address is of type CiscoTAddressIPv4." - ::= { ciscoTDomains 1 } - - -ciscoTDomainUdpIpv6 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The UDP over IPv6 transport domain. The corresponding - transport address is of type CiscoTAddressIPv6 for global IPv6 - addresses and CiscoTAddressIPv6s for scoped IPv6 addresses." - ::= { ciscoTDomains 2 } - - -ciscoTDomainTcpIpv4 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The TCP over IPv4 transport domain. The corresponding - transport address is of type CiscoTAddressIPv4." - ::= { ciscoTDomains 3 } - - -ciscoTDomainTcpIpv6 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The TCP over IPv6 transport domain. The corresponding - transport address is of type CiscoTAddressIPv6 for global IPv6 - addresses and CiscoTAddressIPv6s for scoped IPv6 addresses." - ::= { ciscoTDomains 4 } - - -ciscoTDomainLocal OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The Posix Local IPC transport domain. The corresponding - transport address is of type CiscoTAddressLocal. The Posix - Local IPC transport domain incorporates the well known UNIX - domain sockets." - ::= { ciscoTDomains 5 } - - -ciscoTDomainClns OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The CLNS transport domain. The corresponding transport - address is of type CiscoTAddressOSI." - ::= { ciscoTDomains 6 } - - -ciscoTDomainCons OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The CONS transport domain. The corresponding transport - address is of type CiscoTAddressOSI." - ::= { ciscoTDomains 7 } - - -ciscoTDomainDdp OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The DDP transport domain. The corresponding transport - address is of type CiscoTAddressNBP." - ::= { ciscoTDomains 8 } - - -ciscoTDomainIpx OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The IPX transport domain. The corresponding transport - address is of type CiscoTAddressIPX." - ::= { ciscoTDomains 9 } - - -ciscoTDomainSctpIpv4 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The SCTP over IPv4 transport domain. The corresponding - transport address is of type CiscoTAddressIPv4." - REFERENCE - "RFC 2960 - Stream Control Transmission Protocol. R. Stewart, - Q. Xie, K. Morneault, C. Sharp, H. Schwarzbauer, T. Taylor, - I. Rytina, M. Kalla, L. Zhang, V. Paxson. October 2000." - ::= { ciscoTDomains 10 } - - -ciscoTDomainSctpIpv6 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The SCTP over IPv6 transport domain. The corresponding - transport address is of type CiscoTAddressIPv6 for global IPv6 - addresses and CiscoTAddressIPv6s for scoped IPv6 addresses." - REFERENCE - "RFC 2960 - Stream Control Transmission Protocol. R. Stewart, - Q. Xie, K. Morneault, C. Sharp, H. Schwarzbauer, T. Taylor, - I. Rytina, M. Kalla, L. Zhang, V. Paxson. October 2000." - ::= { ciscoTDomains 11 } - - -END - - diff --git a/mibs/orig/CISCO-SYSLOG-MIB b/mibs/orig/CISCO-SYSLOG-MIB deleted file mode 100644 index 532e922..0000000 --- a/mibs/orig/CISCO-SYSLOG-MIB +++ /dev/null @@ -1,605 +0,0 @@ --- ***************************************************************** --- CISCO-SYSLOG-MIB.my: Cisco syslog message MIB file --- --- August 1995, Scott Mordock --- --- Copyright (c) 1995-1997, 2005 by cisco Systems, Inc. --- All rights reserved. --- ***************************************************************** --- - --- This MIB provides a means to gather syslog messages generated --- by the Cisco IOS - --- Terminology: --- Various textual messages are generated by the Cisco IOS. The IOS --- can be configured such that these messages are sent to a "syslog" --- server. With this MIB these same messages can also be received via --- the SNMP. These messages are hereupon referred to as "syslog --- messages" in this document. Note: Messages generated as a result --- of entering CLI debug commands are not made available via the SNMP --- at this time. --- --- All IOS syslog messages have the following attributes: --- timestamp (optional), facility name (where the message came --- from), severity, message name, message text --- --- The following example is often seen: --- %SYS-5-CONFIG_I: Configured from console ... --- where facility=SYS, severity=5, message name=CONFIG_I - -CISCO-SYSLOG-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - NOTIFICATION-TYPE, - OBJECT-TYPE, - Integer32, - Counter32, - Unsigned32 - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, - DisplayString, - TimeStamp, - TruthValue, - RowStatus - FROM SNMPv2-TC - MODULE-COMPLIANCE, - OBJECT-GROUP, - NOTIFICATION-GROUP - FROM SNMPv2-CONF - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB - ciscoMgmt - FROM CISCO-SMI - InetAddress, - InetAddressType - FROM INET-ADDRESS-MIB; - -ciscoSyslogMIB MODULE-IDENTITY - LAST-UPDATED "200512030000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - " Cisco Systems - Customer Service - - Postal: 170 W Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "The MIB module to describe and store the system - messages generated by the IOS and any other - OS which supports syslogs." - REVISION "200512030000Z" - DESCRIPTION - "Removed UNITS clause for clogOriginIDType - as UNITS clause is not applicable." - - REVISION "200508110000Z" - DESCRIPTION - "Added following objects: - clogOriginIDType - clogOriginID" - - REVISION "200506010000Z" - DESCRIPTION - "Added clogServerGroup." - REVISION "9508070000Z" - DESCRIPTION - "Initial version of this MIB module." - ::= { ciscoMgmt 41 } - -ciscoSyslogMIBObjects OBJECT IDENTIFIER ::= { ciscoSyslogMIB 1 } - --- Subgroups - -clogBasic OBJECT IDENTIFIER ::= { ciscoSyslogMIBObjects 1 } -clogHistory OBJECT IDENTIFIER ::= { ciscoSyslogMIBObjects 2 } -clogServer OBJECT IDENTIFIER ::= { ciscoSyslogMIBObjects 3 } - --- Textual Conventions - -SyslogSeverity ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The severity of a syslog message. The enumeration - values are equal to the values that syslog uses + 1. - For example, with syslog, emergency=0. - - 'emergency' : system is unusable - 'alert' : action must be taken immediately - 'critical' : critical conditions - 'error' : error conditions - 'warning' : warning conditions - 'notice' : normal but significant condition - 'informational': informational messages - 'debug' : debug-level messages." - REFERENCE - "RFC 3164, Section 4.1 - syslog Message Parts" - SYNTAX INTEGER { emergency(1), - alert(2), - critical(3), - error(4), - warning(5), - notice(6), - info(7), - debug(8) - } - --- Basic syslog objects - -clogNotificationsSent OBJECT-TYPE - SYNTAX Counter32 - UNITS "notifications" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of clogMessageGenerated notifications that - have been sent. This number may include notifications - that were prevented from being transmitted due to - reasons such as resource limitations and/or - non-connectivity. If one is receiving notifications, - one can periodically poll this object to determine if - any notifications were missed. If so, a poll of the - clogHistoryTable might be appropriate." - ::= { clogBasic 1 } - -clogNotificationsEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Indicates whether clogMessageGenerated notifications - will or will not be sent when a syslog message is - generated by the device. Disabling notifications - does not prevent syslog messages from being added - to the clogHistoryTable." - DEFVAL { false } - ::= { clogBasic 2 } - -clogMaxSeverity OBJECT-TYPE - SYNTAX SyslogSeverity - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Indicates which syslog severity levels will be - processed. Any syslog message with a severity value - greater than this value will be ignored by the agent. - note: severity numeric values increase as their - severity decreases, e.g. 'error' is more severe than - 'debug'." - DEFVAL { warning } - ::= { clogBasic 3 } - -clogMsgIgnores OBJECT-TYPE - SYNTAX Counter32 - UNITS "messages" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of syslog messages which were ignored. A - message will be ignored if it has a severity value - greater than clogMaxSeverity." - ::= { clogBasic 4 } - -clogMsgDrops OBJECT-TYPE - SYNTAX Counter32 - UNITS "messages" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of syslog messages which could not be - processed due to lack of system resources. Most - likely this will occur at the same time that syslog - messages are generated to indicate this lack of - resources. Increases in this object's value may serve - as an indication that system resource levels should be - examined via other mib objects. A message that is - dropped will not appear in the history table and - no notification will be sent for this message." - ::= { clogBasic 5 } - -clogOriginIDType OBJECT-TYPE - SYNTAX INTEGER { - none (1), - other (2), - hostName (3), - ipv4Address (4), - contextName (5), - userDefined (6) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object identifies the type of value that - will be contained in clogOriginID object. - - The possible value(s) are: - 'none' : do not send origin identifier in - syslog messages. - 'other' : type that is not identified by other - values specified in this object. - 'hostName' : Send hostname of the system in syslog - messages. - 'ipv4Address': Send IP address of the sending interface. - 'contextName': Send context name of the security device. - 'userDefined': Send user configured string in - syslog message. - - The value 'other' and 'none' can not be set but - can only be read." - DEFVAL { none } - ::= { clogBasic 6 } - -clogOriginID OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is used for configuring the - origin identifier for the syslog messages. - - The origin identifier is useful for identifying - the source of system logging messages in cases - syslog messages from multiple devices are sent - to a single syslog host. - The origin identifier is added to the beginning of - all system logging (syslog) messages sent to remote - hosts. - - The type of the identifier is specified - by clogOriginIDType object. - - This object can be written by the SNMP manager - only when clogOriginIDType is set to 'userDefined'. - - For following value(s) of clogOriginIDType, - this object can not be set; the value of this - object is derived by the system in these cases: - 'contextName' - 'ipv4Address' - 'hostName' - 'other' - 'none' - - This object contains the context name - of the device, when clogOriginIDType is - set to 'contextName'. - - This object contains IPv4 address - (in dotted decimal notation) of the sending - interface when clogOriginIDType is set to - 'ipv4Address'. - - This object contains hostname of the system - when clogOriginIDType is set to 'hostName'. - - This object will contain zero length - octet string when clogOriginIDType is - either 'none' or 'other'." - DEFVAL { "" } - ::= { clogBasic 7 } - --- Syslog message history table - -clogHistTableMaxLength OBJECT-TYPE - SYNTAX Integer32 (0..500) - UNITS "entries" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The upper limit on the number of entries that the - clogHistoryTable may contain. A value of 0 will - prevent any history from being retained. When this - table is full, the oldest entry will be deleted and - a new one will be created." - DEFVAL { 1 } - ::= { clogHistory 1 } - -clogHistMsgsFlushed OBJECT-TYPE - SYNTAX Counter32 - UNITS "messages" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of entries that have been removed from - the clogHistoryTable in order to make room for new - entries. This object can be utilized to determine - whether your polling frequency on the history table - is fast enough and/or the size of your history table - is large enough such that you are not missing - messages." - ::= { clogHistory 2 } - -clogHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF ClogHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of syslog messages generated by this device. - All 'interesting' syslog messages (i.e. severity <= - clogMaxSeverity) are entered into this table." - ::= { clogHistory 3 } - -clogHistoryEntry OBJECT-TYPE - SYNTAX ClogHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A syslog message that was previously generated by this - device. Each entry is indexed by a message index." - INDEX { clogHistIndex } - ::= { clogHistoryTable 1 } - -ClogHistoryEntry ::= - SEQUENCE { - clogHistIndex Integer32, - clogHistFacility DisplayString, - clogHistSeverity SyslogSeverity, - clogHistMsgName DisplayString, - clogHistMsgText DisplayString, - clogHistTimestamp TimeStamp - } - -clogHistIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A monotonically increasing integer for the sole - purpose of indexing messages. When it reaches the - maximum value the agent flushes the table and wraps - the value back to 1." - ::= { clogHistoryEntry 1 } - -clogHistFacility OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..20)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of the facility that generated this message. - For example: 'SYS'." - ::= { clogHistoryEntry 2 } - -clogHistSeverity OBJECT-TYPE - SYNTAX SyslogSeverity - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The severity of the message." - ::= { clogHistoryEntry 3 } - -clogHistMsgName OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..30)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual identification for the message type. - A facility name in conjunction with a message name - uniquely identifies a message type." - ::= { clogHistoryEntry 4 } - -clogHistMsgText OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The text of the message. If the text of the message - exceeds 255 bytes, the message will be truncated to - 254 bytes and a '*' character will be appended - - indicating that the message has been truncated." - ::= { clogHistoryEntry 5 } - -clogHistTimestamp OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this message was - generated." - ::= { clogHistoryEntry 6 } - -clogMaxServers OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of syslog servers that can be - configured for the system in clogServerConfigTable. - - A value of zero for this object indicates there is - no specified limit for the system and is only dictated - by system resources." - ::= { clogServer 1 } - - -clogServerConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF ClogServerConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains entries that allow application - to configure syslog servers for the system. - - The maximum number of entries that can be created - for this table is limited by the object - clogMaxServers." - ::= { clogServer 2 } - -clogServerConfigEntry OBJECT-TYPE - SYNTAX ClogServerConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing information about syslog servers - configured for the system." - INDEX { clogServerAddrType, - clogServerAddr } - ::= { clogServerConfigTable 1 } - -ClogServerConfigEntry ::= - SEQUENCE { - clogServerAddrType InetAddressType, - clogServerAddr InetAddress, - clogServerStatus RowStatus - } - -clogServerAddrType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The type of Internet address of this syslog server." - ::= { clogServerConfigEntry 1 } - -clogServerAddr OBJECT-TYPE - SYNTAX InetAddress (SIZE(0..64)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The Internet address of this syslog server. - The type of this address is determined by the - value of the clogServerAddrType object." - ::= { clogServerConfigEntry 2 } - -clogServerStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status object used to manage rows in this table. - - A row may only be created by setting this object to - 'createAndGo'. - - A row may only be deleted by setting this object to - 'destroy'." - ::= { clogServerConfigEntry 3 } - --- notifications - -ciscoSyslogMIBNotificationPrefix OBJECT IDENTIFIER - ::= { ciscoSyslogMIB 2 } -ciscoSyslogMIBNotifications OBJECT IDENTIFIER - ::= { ciscoSyslogMIBNotificationPrefix 0 } - -clogMessageGenerated NOTIFICATION-TYPE - OBJECTS { clogHistFacility, - clogHistSeverity, - clogHistMsgName, - clogHistMsgText, - clogHistTimestamp - } - STATUS current - DESCRIPTION - "When a syslog message is generated by the device a - clogMessageGenerated notification is sent. The - sending of these notifications can be enabled/disabled - via the clogNotificationsEnabled object." - ::= { ciscoSyslogMIBNotifications 1 } - --- conformance information - -ciscoSyslogMIBConformance OBJECT IDENTIFIER ::= { ciscoSyslogMIB 3 } -ciscoSyslogMIBCompliances OBJECT IDENTIFIER - ::= { ciscoSyslogMIBConformance 1 } -ciscoSyslogMIBGroups OBJECT IDENTIFIER - ::= { ciscoSyslogMIBConformance 2 } - - --- compliance statements - -ciscoSyslogMIBCompliance MODULE-COMPLIANCE - STATUS deprecated -- superceded by ciscoSyslogMIBComplianceRev1 - DESCRIPTION - "The compliance statement for entities which implement - the Cisco syslog MIB." - MODULE -- this module - MANDATORY-GROUPS { ciscoSyslogMIBGroup } - ::= { ciscoSyslogMIBCompliances 1 } - -ciscoSyslogMIBComplianceRev1 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for entities which implement - the Cisco syslog MIB." - MODULE -- this module - MANDATORY-GROUPS { ciscoSyslogMIBGroup } - - GROUP clogServerGroup - DESCRIPTION - "The implementation of this group is - mandatory for those systems where - configuration of remote syslog server hosts - is supported." - - GROUP clogOriginIDGroup - DESCRIPTION - "The implementation of this group is - mandatory for those systems where - syslog origin identifier is supported." - - GROUP clogNotificationsGroup - DESCRIPTION - "The implementation of this group is - mandatory for those systems where - syslog notification is supported." - ::= { ciscoSyslogMIBCompliances 2 } - --- units of conformance - -ciscoSyslogMIBGroup OBJECT-GROUP - OBJECTS { clogNotificationsSent, - clogNotificationsEnabled, - clogMaxSeverity, - clogMsgIgnores, - clogMsgDrops, - clogHistTableMaxLength, - clogHistMsgsFlushed, - clogHistFacility, - clogHistSeverity, - clogHistMsgName, - clogHistMsgText, - clogHistTimestamp - } - STATUS current - DESCRIPTION - "A collection of objects providing the syslog - MIB capability." - ::= { ciscoSyslogMIBGroups 1 } - -clogNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { - clogMessageGenerated - } - STATUS current - DESCRIPTION - "A collection of notification(s) for syslog feature." - ::= { ciscoSyslogMIBGroups 2 } - -clogServerGroup OBJECT-GROUP - OBJECTS { - clogMaxServers, - clogServerStatus - } - STATUS current - DESCRIPTION - "A collection of objects providing syslog server - information for the system." - ::= { ciscoSyslogMIBGroups 3 } - -clogOriginIDGroup OBJECT-GROUP - OBJECTS { - clogOriginIDType, - clogOriginID - } - STATUS current - DESCRIPTION - "A collection of objects providing information - on origin of syslog messages." - ::= { ciscoSyslogMIBGroups 4 } -END diff --git a/mibs/orig/CISCO-TC b/mibs/orig/CISCO-TC deleted file mode 100644 index 610abd3..0000000 --- a/mibs/orig/CISCO-TC +++ /dev/null @@ -1,2669 +0,0 @@ --- ***************************************************************** --- CISCO-TC.my: Cisco MIB Textual Conventions --- --- May 1994, Jeffrey T. Johnson --- --- Copyright (c) 1994-2015 and by Cisco Systems Inc. --- All rights reserved. --- --- *************************************************************** - -CISCO-TC DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, - Gauge32, - Integer32, - Unsigned32, - Counter64 - FROM SNMPv2-SMI - TEXTUAL-CONVENTION - FROM SNMPv2-TC - ciscoModules - FROM CISCO-SMI; - - -ciscoTextualConventions MODULE-IDENTITY - LAST-UPDATED "201506090000Z" - ORGANIZATION "Cisco Systems, Inc." - CONTACT-INFO - "Cisco Systems - Customer Service - - Postal: 170 W Tasman Drive - San Jose, CA 95134 - USA - - Tel: +1 800 553-NETS - - E-mail: cs-snmp@cisco.com" - DESCRIPTION - "This module defines textual conventions used throughout - cisco enterprise mibs." - REVISION "201506090000Z" - DESCRIPTION - "Added the following enumerations for IfOperStatusReason: - physicalPortHotStandBy, - wimaxModemUnattached, - wpanModemUnattached, - rbhModulo, - fpcMinLinkNotMet, - misCabling, - rcvSrpOnNonFcoeFex, - acessPortOnBd, - lacpMisConfig, - fortyGMemberPort, - goldLoopBackTest, - edpError, - vpcCompCheckFailed, - aclQosNoResource, - vpcShutdown, - notPcMember, - systemIntfShut, - speedGroupConfigMisMatch, - dot1qMisConfig, - mdMisMatch, - vpcPeerLinkShut, - notAvailable" - REVISION "201407230000Z" - DESCRIPTION - "-Added the textual-convention CiscoAbsZeroBasedCounter64." - REVISION "201208060000Z" - DESCRIPTION - "-Added the following enums for IfOperStatusReason: - ficonNoPortSwapLogicalPort, - ficonInvalidPortNum, - remotePortInL2vpnDown, - suspendedDueToNoLacpPdus, - fcotValidationFailedAtDriver, - unsupportedTransceiverMd5DigestNotSame, - unsupportedTransceiver, - adminStateConfigChange, - vlanAllowedList, - vlanAllowedListOverride, - vlanAllowedListAdd, - vlanAllowedRemove, - vlanCfgStateChange, - vlanCfgDelete, - pppPeerNotResponding, - pppAuthFailed, - xcvrAuthFailed, - badFramesRcvdFromLink" - REVISION "201202010000Z" - DESCRIPTION - "Added CiscoVlanIndex TC." - REVISION "201111110000Z" - DESCRIPTION - "Added CiscoEntityIndexList TC." - REVISION "201106170000Z" - DESCRIPTION - "-Added the following enums for FcIfOperStatusReason: - fcRedirectIsolation, - portActLicenseNotAvailable, - sdmIsolation, - fcidAllocationFailed, - unavailableNPVUpstreamPort, - unavailableNPVPrefUpstreamPort, - sfpReadError, - stickyDownOnLinkFailure, - tooManyLinkFlapsErr, - unidirectionalUDLD, - txRxLoopUDLD, - neighborMismatchUDLD, - authzPending, - hotStdbyInBundle, - incompleteConfig, - incompleteTunnelCfg, - hwProgrammingFailed, - tunnelDstUnreachable, - suspendByMtu, - sfpInvalid, - sfpAbsent, - portCapabilitiesUnknown, - channelErrDisabled, - vrfMismatch, - vrfForwardReferencing, - dupTunnelConfigDetected, - primaryVLANDown, - vrfUnusable, - errDisableHandShkFailure, - errDisabledBPDUGuard, - dot1xSecViolationErrDisabled, - emptyEchoUDLD, - vfTaggingCapErr, - portDisabled, - tunnelModeNotConfigured, - tunnelSrcNotConfigured, - tunnelDstNotConfigured, - tunnelUnableToResolveSrcIP - tunnelUnableToResolveDstIP, - tunnelVrfDown, - sifAdminDown, - phyIntfDown, - ifSifLimitExceeded, - sifHoldDown, - noFcoe, - dcxCompatMismatch, - isolateBundleLimitExceeded, - sifNotBound, - errDisabledLacpMiscfg, - satFabricIfDown, - invalidSatFabricIf, - noRemoteChassis, - vicEnableNotReceived, - vicDisableReceived, - vlanVsanMappingNotEnabled, - stpNotFwdingInFcoeMappedVlan, - moduleOffline, - udldAggModeLinkFailure, - stpInconsVpcPeerDisabled, - setPortStateFailed, - suspendedByVpc, - vpcCfgInProgress, - vpcPeerLinkDown, - vpcNoRspFromPeer, - protoPortSuspend, - tunnelSrcDown, - cdpInfoUnavailable, - fexSfpInvalid, - errDisabledIpConflict, - fcotClkRateMismatch, - portGuardTrustSecViolation, - sdpTimeout, - satIncompatTopo, - waitForFlogi, - satNotConfigured, - npivNotEnabledInUpstream, - vsanMismatchWithUpstreamSwPort, - portGuardBitErrRate, - portGuardSigLoss, - portGuardSyncLoss, - portGuardLinkReset, - portGuardCreditLoss, - bitErrorRate, - signalLoss, - syncLoss, - linkReset, - creditLoss, - ipQosMgrPolicyAppFailure, - pauseRateLimitErrDisabled, - lstGrpUplinkDown, - stickyDnLinkFailure, - routerMacFailure, - dcxMultipleMsapIds, - dcxHundredPdusRcvdNoAck, - enmSatIncompatibleUplink, - enmLoopDetected, - nonStickyExternallyDisabled, - subGroupIdNotAssigned, - vemUnlicensed, - profileNotFound, - nonExistentVlan, - vlanInvalidType, - vlanDown, - vpcPeerUpgrade, - ipQosDcbxpCompatFailure, - nonCiscoHbaVfTag, - domainIdConfigMismatch, - sfpSpeedMismatch, - xcvrInitializing, - xcvrAbsent, - xcvrInvalid, - vfcBindingInvalid, - vlanNotFcoeEnabled, - pvlanNativeVlanErr, - ethL2VlanDown, - ethIntfInvalidBinding, - pmonFailure, - l3NotReady, - speedMismatch, - flowControlMismatch, - vdcMode, - suspendedDueToMinLinks, - enmPinFailLinkDown, - inactiveM1PortFpathActiveVlan, - parentPortDown, - moduleRemoved, - corePortMct, - nonCorePortMct, - ficonInorderNotActive, - invalidEncapsulation, - modemLineDeasserted, - ipSecHndshkInProgress, - sfpEthCompliantErr, - cellularModemUnattached, - outOfGlblRxBuffers, - sfpFcCompliantErr, - ethIntfNotLicensed, - domainIdsInvalid, - fabricNameInvalid." - REVISION "201002240000Z" - DESCRIPTION - "Added CiscoURLStringOrEmpty textual convention." - REVISION "200906180000Z" - DESCRIPTION - "Added the new textual convention CiscoVrfName" - REVISION "200903100000Z" - DESCRIPTION - "Added the new textual convention CiscoInterfaceIndexList" - REVISION "200902260000Z" - DESCRIPTION - "Added the new textual convention Cisco2KVlanList" - REVISION "200804020000Z" - DESCRIPTION - "Added the new textual convention CiscoBridgeDomain." - REVISION "200702150000Z" - DESCRIPTION - "Added following textual conventions: - CiscoVlanList, - CiscoCosList, - CiscoPbbServiceIdentifier" - REVISION "200607060000Z" - DESCRIPTION - "Added the following enums to IfOperStatusReason: - - elpFailureAllZeroPeerWWNRcvd, - - preferredPathIsolation." - REVISION "200604130000Z" - DESCRIPTION - "Added enumeration to IfOperStatusReason from 113-131 - ('dpvmVsanSuspended' to 'domainOther')." - REVISION "200506240000Z" - DESCRIPTION - "Added CvE164Address textual convention." - REVISION "200506160000Z" - DESCRIPTION - "Added following textual conventions: - CiscoURLString - CiscoHTTPResponseStatusCode - EntLogicalIndexOrZero." - REVISION "200410110000Z" - DESCRIPTION - "Added IfOperStatusReason textual convention." - REVISION "200406080000Z" - DESCRIPTION - "Added CiscoPortListRange textual convention." - REVISION "200404140000Z" - DESCRIPTION - "Added CiscoPortList textual convention. - Removed Unsigned32 textual convention." - REVISION "200212180000Z" - DESCRIPTION - "Changed MilliSeconds TC to CiscoMilliSeconds as it was - overlapping with the one in a standard MIB." - REVISION "200212121600Z" - DESCRIPTION - "Added the 'http' enumeration to CiscoNetworkProtocol." - REVISION "200212020000Z" - DESCRIPTION - "Added Unsigned64 textual convention." - REVISION "200209220000Z" - DESCRIPTION - "Added ListIndex, ListIndexOrZero, TimeIntervalSec, - TimeintervalMin, MicroSeconds and MicroSeconds TC from - Andiamo's TC MIB ." - REVISION "200209170000Z" - DESCRIPTION - "Added ConfigIterator & BulkConfigResult textual - convention for bulk provisioning. - Added CountryCodeITU textual convention for ITU-T defined - country codes for non-standard facilities." - REVISION "200204160000Z" - DESCRIPTION - "Added PerfHighIntervalCount TEXTUAL-CONVENTION." - REVISION "200107070000Z" - DESCRIPTION - "Added enumerations to CiscoNetworkProtocol" - REVISION "200101180000Z" - DESCRIPTION - "Added CiscoAlarmSeverity textual convention. - Changed SAPType display hint to d. Changed - INTEGER to Integer32 in CiscoPort and - CiscoIpProtocol TCs. Changed SnmpAdminString - to OCTET STRING in CiscoLocationSpecifier. - Removed IMPORTs for ciscoProducts and - SnmpAdminString." - REVISION "200011210000Z" - DESCRIPTION - "Added CiscoLocationClass, CiscoLocationSpecifier - CiscoInetAddressMask, CiscoAbsZeroBasedCounter32, - CiscoSnapShotAbsCounter32 textual conventions." - REVISION "9810280000Z" - DESCRIPTION - "Added CiscoRowOperStatus, EntPhysicalIndexOrZero, - Port and IpProtocol textual conventions." - REVISION "9703130000Z" - DESCRIPTION - "Added SAPType, CountryCode textual convention." - REVISION "9608140000Z" - DESCRIPTION - "Added InterfaceIndexOrZero textual convention." - REVISION "9607080000Z" - DESCRIPTION - "Added new CiscoNetworkProtocol enumerations." - REVISION "9602220000Z" - DESCRIPTION - "Added Unsigned32 textual conventions." - REVISION "9506070000Z" - DESCRIPTION - "Miscellaneous updates/corrections, including making - CiscoNetworkProtocol enumerations contiguous." - ::= { ciscoModules 1 } - - - -Layer2Cos ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer that is in the range of the layer 2 CoS values. It - corresponds to the IEEE 802.1P CoS value which defines eight - (2^3) user priority levels. - Note: the IEEE 802.1P has been merged into IEEE 802.1D." - - REFERENCE - "IEEE 802.1D, 2004 Edition, Annex G User priorities and traffic - classes." - SYNTAX Integer32 (0..7) - -CiscoNetworkProtocol ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the different types of network layer protocols." - SYNTAX INTEGER { - ip(1), - decnet(2), - pup(3), - chaos(4), - xns(5), - x121(6), - appletalk(7), - clns(8), - lat(9), - vines(10), - cons(11), - apollo(12), - stun(13), - novell(14), - qllc(15), - snapshot(16), - atmIlmi(17), - bstun(18), - x25pvc(19), - ipv6(20), - cdm(21), - nbf(22), - bpxIgx(23), - clnsPfx(24), - http(25), - unknown(65535) - } - -CiscoNetworkAddress ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a network layer address. The length and format of - the address is protocol dependent as follows: - ip 4 octets - decnet 2 octets - pup obsolete - chaos 2 octets - xns 10 octets - first 4 octets are the net number - last 6 octets are the host number - x121 - appletalk 3 octets - first 2 octets are the net number - last octet is the host number - clns - lat - vines 6 octets - first 4 octets are the net number - last 2 octets are the host number - cons - apollo 10 octets - first 4 octets are the net number - last 6 octets are the host number - stun 8 octets - novell 10 octets - first 4 octets are the net number - last 6 octets are the host number - qllc 6 octets - bstun 1 octet - bi-sync serial tunnel - snapshot 1 octet - atmIlmi 4 octets - x25 pvc 2 octets (12 bits) - ipv6 16 octets - cdm - nbf - bgpIgx - clnsPfx upto 20 octets - http upto 70 octets - first 4 octets are the IPv4 host - address - next 2 octets are the TCP port - number - remaining(1 upto 64) octets are - the URI" - SYNTAX OCTET STRING - -Unsigned64 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An unsigned 64 bit integer. We use SYNTAX Counter64 for the - encoding rules." - SYNTAX Counter64 - -InterfaceIndexOrZero ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Either the value 0, or the ifIndex value of an - interface in the ifTable." - SYNTAX Integer32 (0..2147483647) - -SAPType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Service Access Point - is a term that denotes the means - by which a user entity in layer n+1 accesses a service - of a provider entity in layer n." - SYNTAX Integer32 (0..254) - -CountryCode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a case-insensitive 2-letter country code taken - from ISO-3166. Unrecognized countries are represented as - empty string." - SYNTAX OCTET STRING (SIZE (0 | 2)) - -CountryCodeITU ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention represents a country or area code for - non-standard facilities in telematic services." - - REFERENCE "ITU-T T.35 - Section 3.1 Country Code" - SYNTAX Unsigned32 (0..255) - -EntPhysicalIndexOrZero ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is an extension of entPhysicalIndex. - If non-zero, the object is an entPhysicalIndex. If zero, no - appropriate entPhysicalIndex exists. Any additional semantics - are object specific." - SYNTAX Integer32 (0..2147483647) - -CiscoRowOperStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the operational status of an table entry. - This textual convention allows explicitly representing - the states of rows dependent on rows in other tables. - - active(1) - - Indicates this entry's RowStatus is active - and the RowStatus for each dependency is active. - - activeDependencies(2) - - Indicates that the RowStatus for each dependency - is active, but the entry's RowStatus is not active. - - inactiveDependency(3) - - Indicates that the RowStatus for at least one - dependency is not active. - - missingDependency(4) - - Indicates that at least one dependency does - not exist in it's table." - SYNTAX INTEGER { - active(1), - activeDependencies(2), - inactiveDependency(3), - missingDependency(4) - } - -CiscoPort ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The TCP or UDP port number range." - - REFERENCE - "Transmission Control Protocol. J. Postel. RFC793, - User Datagram Protocol. J. Postel. RFC768" - SYNTAX Integer32 (0..65535) - -CiscoIpProtocol ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "IP protocol number range." - - REFERENCE "Internet Protocol. J. Postel. RFC791" - SYNTAX Integer32 (0..255) - -CiscoLocationClass ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An enumerated value which provides an indication of - the general location type of a particular physical and/or - logical interface. - chassis - a system framework for mounting one or more - shelves/slots/cards. - shelf - a cabinet that holds one or more slots. - slot - card or subSlot holder. - subSlot - daughter-card holder. - port - a physical port (e.g., a DS1 or DS3 physical port). - subPort - a logical port on a physical port (e.g., a DS1 - subPort on a DS3 physical port). - channel - a logical interface (e.g., a DS0 channel, signaling - channel, ATM port, other virtual interfaces). - subChannel - a sub-channel on a logical interface." - SYNTAX INTEGER { - chassis(1), - shelf(2), - slot(3), - subSlot(4), - port(5), - subPort(6), - channel(7), - subChannel(8) - } - -CiscoLocationSpecifier ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Use this TC to define objects that indicate the - physical entity and/or logical interface location - of a managed entity on a managed device. In SNMP, a - standard mechanism for indicating the physical location - of entities is via the ENTITY-MIB. However, that approach - is not satisfactory in some cases because: - - 1. The entity requiring a location-based naming may be - associated with an entity which can not be represented - as a physical entity in the ENTITY-MIB, - 2. NMS applications may desire a more direct - name/representation of a physical entity than is - available via the ENTITY-MIB, e.g., a physical entity - which is named via a hierarchy of levels in the ENTITY-MIB. - - The value of an object defined using this TC is an ASCII - string consisting of zero or more elements separated by - commas. Each element is of the form = . - - An example of this syntax is 'slot=5,port=3'. - - The syntax of the string is formally specified using - ABNF notation (with one exception, noted below), as - follows: - - location-specifier = elem *(',' elem) - ; subject to - ; size restriction specified in the SYNTAX - ; clause below - - elem = loctype '=' number - - number = %x00-FFFFFFFF / %d0-4294967295 - - loctype = 1*32VCHAR - - It is recommended that loctype use one of the enumerated - labels defined for CiscoLocationClass. - - (NOTE: To conform to ABNF notation as defined in RFC2234, - substitute the single-quote symbol with a double-quote - symbol in the above rules.) - - A zero length of CiscoLocationSpecifier is object-specific - and must be defined as part of the description of any object - which uses this syntax." - - REFERENCE - "RFC2234, Augmented BNF for syntax specifications: ABNF" - SYNTAX OCTET STRING (SIZE (0..255)) - -CiscoInetAddressMask ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Denotes a generic Internet subnet address mask. - The Internet subnet address mask is represented as the - number of contiguous 1-bit from MSB (most significant bit) - of the Internet subnet address mask. - A CiscoInetAddressMask value is always interpreted within - the context of an InetAddressType value. The - InetAddressType only object or InetAddressType with - InetAddress objects which define the context must be - registered immediately before the object which uses the - CiscoInetAddressMask textual convention. In other words, - the object identifiers for the InetAddressType object and - the CiscoInetAddressMask object MUST have the same length - and the last sub-identifier of the InetAddressType object - MUST be 1 less than the last sub-identifier of the - CiscoInetAddressMask object and MUST be 2 less than the - last sub-identifier of the CiscoInetAddressMask object if - an InetAddress object is defined between InetAddressType - and CiscoInetAddressMask objects. - The maximum value of the CiscoInetAddressMask TC is 32 for - the value 'ipv4(1)' in InetAddressType object and 128 for - the value 'ipv6(2)' in InetAddressType object. - The value zero is object-specific and must therefore be - defined as part of the description of any object which - uses this syntax. Examples of the usage of zero might - include situations where Internet subnet mask was unknown, - or when none subnet masks need to be referenced." - - REFERENCE - "RFC2851, Textual Conventions for Internet Network Addresses." - SYNTAX Unsigned32 (0..128) - -CiscoAbsZeroBasedCounter32 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC describes an object which counts events with the - following semantics: objects of this type will be set to - zero(0) on creation and will thereafter count appropriate - events, it locks at the maximum value of 4,294,967,295 if - the counter overflows. - This TC may be used only in situations where wrapping is - not possible or extremely unlikely situation." - SYNTAX Gauge32 - -CiscoSnapShotAbsCounter32 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC describes an object which stores a snap-shot value - with the following semantics: objects of this type will - take a snap-shot value from their associated - CiscoAbsZeroBasedCounter32 type objects on creation." - SYNTAX Unsigned32 - -CiscoAlarmSeverity ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents the perceived alarm severity associated - with a service or safety affecting condition and/or - event. These are based on ITU severities, except - that info(7) is added. - - cleared(1) - - Indicates a previous alarm condition has been - cleared. It is not required (unless specifically - stated elsewhere on a case by case basis) that an - alarm condition that has been cleared will produce - a notification or other event containing an - alarm severity with this value. - - indeterminate(2) - - Indicates that the severity level cannot be - determined. - - critical(3) - - Indicates that a service or safety affecting - condition has occurred and an immediate - corrective action is required. - - major(4) - - Indicates that a service affecting condition has - occurred and an urgent corrective action is - required. - - minor(5) - - Indicates the existence of a non-service affecting - condition and that corrective action should be - taken in order to prevent a more serious (for - example, service or safety affecting) condition. - - warning(6) - - Indicates the detection of a potential or impending - service or safety affecting condition, before any - significant effects have been felt. - - info(7) - - Indicates an alarm condition that does not - meet any other severity definition. This can - include important, but non-urgent, notices or - informational events." - - REFERENCE "ITU-X.733" - SYNTAX INTEGER { - cleared(1), - indeterminate(2), - critical(3), - major(4), - minor(5), - warning(6), - info(7) - } - -PerfHighIntervalCount ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A 64 bit counter associated with a - performance measurement in a previous - 15 minute measurement interval. In the - case where the agent has no valid data - available for a particular interval the - corresponding object instance is not - available and upon a retrieval request - a corresponding error message shall be - returned to indicate that this instance - does not exist (for example, a noSuchName - error for SNMPv1 and a noSuchInstance for - SNMPv2 GET operation). - In a system supporting - a history of n intervals with - IntervalCount(1) and IntervalCount(n) the - most and least recent intervals - respectively, the following applies at - the end of a 15 minute interval: - - discard the value of IntervalCount(n) - - the value of IntervalCount(i) becomes that - of IntervalCount(i-1) for n >= i > 1 - - the value of IntervalCount(1) becomes that - of CurrentCount - - the TotalCount, if supported, is adjusted. - - This definition is based on CounterBasedGauge64 TEXTUAL - CONVENTION defined in RFC2856. The PerfHighIntervalCount - type represents a non-negative - integer, which may increase or decrease, but shall never - exceed a maximum value, nor fall below a minimum value. The - maximum value can not be greater than 2^64-1 - (18446744073709551615 decimal), and the minimum value can - not be smaller than 0. The value of a PerfHighIntervalCount, - has its maximum value whenever the information being modeled - is greater than or equal to its maximum value, and has its - minimum value whenever the information being modeled is - smaller than or equal to its minimum value. If the - information being modeled subsequently decreases below - (increases above) the maximum (minimum) value, the - PerfHighIntervalCount also decreases (increases). - - Note that this TC is not strictly supported in SMIv2, - because the 'always increasing' and 'counter wrap' semantics - associated with the Counter64 base type are not preserved. - It is possible that management applications which rely - solely upon the (Counter64) ASN.1 tag to determine object - semantics will mistakenly operate upon objects of this type - as they would for Counter64 objects. - - This textual convention represents a limited and short-term - solution, and may be deprecated as a long term solution is - defined and deployed to replace it." - - REFERENCE - "RFC 2856(HCNUM-TC MIB). - RFC 2493(PerfHist-TC-MIB)." - SYNTAX Counter64 - -ConfigIterator ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This object type is a control object type which applies to - writable objects in the same SNMP PDU related to the - same table containing those objects. It controls an - operation which repeatedly applies the specified - configuration data to more than one rows in a table. - The operation starts from the row specified by the index - of the instance and repeats for the number of rows as - the value of the object. - - ConfigIterator object needs to be accompanied by one set of - writable objects which are of the same instance to apply to. - - For example, a SNMP PDU contains - { objectA.10 = 1, - objectB.10 = 'E1', - objectC.10 = 44, - objectRepetition.10 = 100 } - - The SYNTAX of objectRepetition is ConfigIterator. - This will apply value 1 to objectA, value 'E1' to objectB, - value 44 to objectC in the table starting from row 10 - repeatedly for 100 rows. - - The iteration is based on the number of rows, not based on - the value of the index. For sparse tables, the index 10, - 20, 30, 110, and 120 counts for 5 rows, the operation will - go beyond index 100 in the previous SNMP PDU example. - - The iteration will stop prematurely when it comes to the - following situations: - (1) When the number of the rows in the table is less than - the designated row indicated by the ConfigIterator - object. - (2) When it encounters the first error in any row, the - operation won't continue to next row. - - The operation of ConfigIterator object applies only to - the writable objects having the same index as the - ConfigIterator object in one SNMP PDU. - - For example, a SNMP PDU contains - { objectD.5 = 38, - objectE.6 = 'T1', - objectF.5 = 'false', - objectIterator.5 = 10 } - - The SYNTAX of objectIterator is ConfigIterator. - This will apply value 38 to objectD, value 'false' to - objectF in the table starting from row 5 repeatedly - for 10 rows. Since the object objectE.6 has different - index (6) from the index of objectIterator, the - repetition won't be applied to it. However the value - of objectE in the row 6 will be set to 'T1' according - to regular SNMP SET orperation. - - If there is row overlapping of the iteration in a SNMP PDU, - it will be operated as they are in two different SNMP PDUs. - - For example, a SNMP PDU contains - { objectD.5 = 38, - objectD.6 = 40, - objectE.6 = 'T1', - objectF.5 = 'false', - objectIterator.5 = 10 - objectIterator.6 = 10 } - - This will apply value 38 to objectD, value 'false' to - objectF starting from row 5 repeatedly for 10 rows, and - apply value 40 to objectD, value 'T1' to objectE starting - from row 6 repeatedly for 10 rows. The final value of - objectD.6 can be 38 or 40, it depends on the SNMP stack of - the system starts SNMP SET for the row 5 before the row 6 - or the other way around. - - The object defined as ConfigIterator will be set to value 1 - after the iteration operation is kick-off regardless the - system has completed the operation to the designated rows - or not. Therefore retrieving the value of this object - is meaningless. It acts as the one time operation for - bulk configuration. - - The object defined as ConfigIterator has no meaning by itself, - it has to be combined with one or more than one writable - objects from the same table and within the same SNMP PDU - for the repetition operation. - - For example, a SNMP PDU contains - { objectG.2 = 49, - objectH.2 = 'AE'h - objectIterator.4 = 20 } - - The SYNTAX of objectIterator is ConfigIterator. Since - there are no objects having the same index as the index - of objectIterator in the PDU, the result of this SNMP - operation will set value 49 to objectG and value 0xAE - to objectH of the row 2 only as regular SNMP SET operation. - - The index of the instance indicates the starting row for the - iteration. - The order of the iteration depends, for instance, on: - (1) physical hardware position, or - (2) logical index. - - It depends on the characters of the table which contains - the ConfigIterator object. - - Iteration can be done through some or all the components - of the index for a table. The description of the iterator - object in that table should describe which part of the - index the iteration is applied to. - - The operation for this object type is based on the best - effort. When the agent receives a SNMP PDU containing this - data type, the return status of the SNMP request reflects - only the result of the SET operation has applied to the - starting row. It may return a SNMP response with SUCCESS - status regardless the number of rows for the data actually - been deployed later on. Therefore it is possible the data - might not be completely deployed to the number of rows - designated by the ConfigIterator and the operation stops - prematurely due to an error it first encounters after - n rows (n < the value of ConfigIterator object). - - Usually the error report mechanism for this type of operation - is accomplished by combining this type of object with the - other two objects in the same table: - - (1) An OwnerString object - (2) An object indicates the result of the operation. - - When issuing this bulk configuration request, the SNMP - manager should provide its identifier in (1) object. - After issuing the request, it should check the value of (1) - object if it is the same with it own name. - If they are the same, then the value of the object presents - in (2) is the result from the previous operation from this - manager. Otherwise, another SNMP manager might issue - the bulk configuration to the same table before the previous - bulk operation has been completed. These two objects will - represent the last bulk operation in the table." - SYNTAX Unsigned32 (1..4294967295) - -BulkConfigResult ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention defines the format of the - displayable textual result from the bulk configuration - operation specified as ConfigIterator type. - - The format should be: - 'COMPLETION= error occured>/, - ERROR=/: - ' - - For example: - 'COMPLETION=22/100,ERROR=38/44:Invalid Ds1 line coding - for the line type'" - SYNTAX OCTET STRING (SIZE (0..255)) - -ListIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A unique value greater than zero, for each of the - list that is defined. The object using this - convention should give all the object specific - details including the list type." - SYNTAX Integer32 (1..2147483647) - -ListIndexOrZero ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is an extension of the - ListIndex. In addition to the ListIndex range, - this also includes 0 in its range of values. - This value could be object specific and - should be given the description of that object. - In most cases, a value 0 means that the it does - not represent any lists." - SYNTAX Integer32 (0..2147483647) - -TimeIntervalSec ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A period of time, measured in units of 1 second." - SYNTAX Unsigned32 - -TimeIntervalMin ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A period of time, measured in units of 1 minute." - SYNTAX Unsigned32 - -CiscoMilliSeconds ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents time unit value in milliseconds." - SYNTAX Unsigned32 - -MicroSeconds ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents time unit value in microseconds." - SYNTAX Unsigned32 - -CiscoPortList ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Each octet within this value specifies a set of eight - ports. The object defined by this textual convention - can specify a port range of 2k ports in its description. - Example: 1 - 2048, 2049 - 4096, etc. The first octet - represents the first 8 ports of the range of ports - specified by the object, the second octet represents - the next 8 ports, etc. When a port range is not - specified, a default port range of '1 - 2048' is assumed. - - Within each octet, the most significant bit represents - the lowest numbered port, and the least significant bit - represents the highest numbered port. Thus, each port - of the bridge is represented by a single bit within the - value of this object. If that bit has a value of '1' - then that port is included in the set of ports; the port - is not included if its bit has a value of '0'. - - Note that if the length of this string is less than - 256 octets, any 'missing' octets are assumed to contain - the value zero. An NMS may omit any zero-valued octets - from the end of this string in order to reduce SetPDU size, - and the agent may also omit zero-valued trailing octets, - to reduce the size of GetResponse PDUs." - SYNTAX OCTET STRING (SIZE (0..256)) - -CiscoPortListRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Indicates the port range. - - oneto2K(1) indicates that the port number range is - from 1 to 2048. - - twoKto4K(2) indicates that the port number range is - from 2049 to 4096. - - fourKto6K(3) indicates that the port number range is - from 4097 to 6144. - - sixKto8K(4) indicates that the port number range is - from 6145 to 8192. - - eightKto10K(5) indicates that the port number range is - from 8193 to 10240. - - tenKto12K(6) indicates that the port number range is - from 10241 to 12288. - - twelveKto14K(7) indicates that the port number range is - from 12289 to 14336. - - fourteenKto16K(8) indicates that the port number range is - from 14337 to 16384. - - When an object is defined with this textual convention, - it must be accompanied by an object of CiscoPortList - syntax." - SYNTAX INTEGER { - oneto2k(1), - twoKto4K(2), - fourKto6K(3), - sixKto8K(4), - eightKto10K(5), - tenKto12K(6), - twelveKto14K(7), - fourteenKto16K(8) - } - -IfOperStatusReason ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The cause of current operational state of the - interface. - - GLOSSARY: - - BB - Buffer-to-Buffer. - - BB_Credit - Buffer-to-Buffer credit, a link level flow - control mechanism. - - B_Port - A Fibre Channel, Bridging port. - - BPDU - Bridge Protocol Data Unit. - - CDP - Cisco Discovery Protocol. - - Class F - A connectionless service with notification on - non-delivery between E_Ports, used for control, - coordination, and configuration of the Fabric. - - Class N - Refers to any class of service (different types - of frame delivery services) other than Class F. - - E_D_TOV - Error Detect Timeout Value. - - EDP - Error Disabled Policy. - - ENM - Egress Non-Multicast. - - ELP - Exchange Link Parameter. - - E-mode - A fibre channel port providing E_Port - functionality. - - E_Port - A Fabric Expansion Port. - - EPP - Exchange Peer Parameters. - - ESC - Exchange Switch Capabilities. - - Fabric - The set of physically connected fibre channel - switches. - - FEX - Fabric EXtender. - - FC-FS - Fibre Channel Framing and Signaling. - - FCIP - Fibre Channel over IP protocol. - - FCID - Fibre Channel Domain ID. - - FCOE - Fibre Channel Over Ethernet. - - FCOT - Fibre channel optical transmitter. - - FC-PH - The Fibre Channel Physical and Signaling - standard. - - FCSP - Fibre Channel Security Protocol. - - Fibre Channel - The primary protocol for building SANs. - - FICON - An I\O protocol used between IBM (and compatible) - mainframes and storage. - - FLOGI - Fabric Login, used by a node port to establish a - session with the fabric. - - FPC - Fabric Port Channel. - - GBIC - Gigabit Interface Converter; a removable - transceiver module permitting Fibre Channel and - Gigabit Ethernet physical-layer transport. - - Interconnect_Ports - Switch Ports that assume either the - E_Port or B_Port mode are generally referred to - as Interconnect_Ports. - - LACP - Link Access Control Protocol. - - LIP - Loop Initialization Primitive sequence. - - LR - Link Reset, the FC-PH defined primitive sequence - used to initiate a link reset. - - MTU - Maximun transmission unit. - - NOS - Not Operational Sequence, the FC-PH defined - primitive sequence to indicate that the - transmitting port has detected a link failure (or) - offline condition. - - VIC - Virtual Interface Card. - - VPC - Virtual Port Channel. - - NPIV - N Port Identifier Virtualization. - - NPV - NPort Virtualizer. - - Nx_Port - A Fiber Channel Node Port. - - OLS - Offline Sequence, the FC-PH defined primitive - sequence to indicate that the port is entering - into offline state. - - OHMS - Online Health Management System. - - PMON - Port Monitor. - - QoS - Quality of Service. - - R_A_TOV - Resource Allocation Timeout Value. - - RBH - Resource Bundle Hash. - - RCF - Reconfigure Fabric. - - Rxbbcredit - Receive BB credit value configured for - a FC interface. - - SAN - Storage Area Network; a network linking computing - devices to disk or tape arrays and other devices - over Fibre Channel. - - SIF - Service Information Field. - - SDM - Security Device Manager. - - SDP - Secure Device Provisioning. - - SFP - Small Formfactor Pluggable. - - SRP - Spatial Reuse Protocol. - - TE_Port - Trunking E_Port. - - TOV - Time out value. - - UDLD - Uni Directional Link Detection. - - VDC - Virtual Device Context. - - VEM - Virtual Ethernet Module. - - VFC - Virtual Fibre Channel. - - VRF - VPN Routing and Forwarding. - - VSAN - Virtual Storage Area Network. - - WiMAX - Worldwide Interoperability for Microwave Access. - - WPAN - Wireless Personal Area Network. - - WWN - World Wide Name. - - xE_Port - A Fiber channel port that can assume either - E_Port or TE_Port mode. - - The enumerated values which provides the cause of the current - operational state of the interface are, - - 'other(1)' - reasons other than defined here. - - 'none(2)' - no failure. - - 'hwFailure(3)' - hardware failure. - - 'loopbackDiagFailure(4)' - loopback diagnostics failure. - - 'errorDisabled(5)' - the port is not operational due to - some error conditions that require administrative - attention. - - 'swFailure(6)' - software failure. - - 'linkFailure(7)' - physical link failure. - - 'offline(8)' - physical link is in offline state as - defined in the FC-FS standards. - - 'nonParticipating(9)' - during loop initialization, the - port is not allowed to participate in loop operations. - - 'initializing(10)' - port is being initialized. - - 'vsanInactive(11)'- port VSAN is inactive. The port becomes - operational again when the port VSAN is active. - - 'adminDown(12)' - ifAdminStatus is 'down'. - - 'channelAdminDown(13)' - this port is a member of a port - channel and that port channel's ifAdminStatus is - 'down'. - - 'channelOperSuspended(14)' - this port is a member of a - port channel and its operational parameters are - incompatible with the port channel parameters. - - 'channelConfigurationInProgress(15)' - this port is - undergoing a port channel configuration. - - 'rcfInProgress(16)' - an isolated xE_port is transmitting - an reconfigure fabric, requesting a disruptive - reconfiguration in an attempt to build a single, - non-isolated fabric. Only the Interconnect_Ports can - become isolated. - - 'elpFailureIsolation(17)' - during a port initialization - the prospective Interconnect_Ports find incompatible - link parameters. - - 'escFailureIsolation(18) - during a port initialization the - prospective Interconnect_Ports are unable to proceed - with initialization as a result of ESC. - - 'domainOverlapIsolation(19)' - there is a overlap in - domains while attempting to connect two existing - fabrics. - - 'domainAddrAssignFailureIsolation(20)' - the elected - principal switch is not capable of performing domain - address manager functions so no Nx_port traffic can be - forwarded across switches, hence all Interconnect_Ports - in the switch are isolated. - - 'domainOtherSideEportIsolation(21)' - the peer E_port is - isolated. - - 'domainInvalidRcfReceived(22)' - invalid RCF received. - - 'domainManagerDisabled(23) - domain manager is disabled. - - 'zoneMergeFailureIsolation(24)' - the two Interconnect_Ports - cannot merge zoning configuration after having exchanged - merging request for zoning. - - 'vsanMismatchIsolation(25)' - this VSAN is not configured - on both sides of a trunk port. - - 'parentDown(26)' - the physical port to which this interface - is bound is down. - - 'srcPortNotBound(27)'- no source port is specified for this - interface. - - 'interfaceRemoved(28)' - interface is being removed. - - 'fcotNotPresent(29)' - FCOT (GBIC) not present. - - 'fcotVendorNotSupported(30)' - FCOT (GBIC) vendor is not - supported. - - 'incompatibleAdminMode(31)' - port administrative mode is - incompatible with port capabilities. - - 'incompatibleAdminSpeed(32)' - port speed is incompatible - with port capabilities. - - 'suspendedByMode(33)' - port that belongs to a port channel - is suspended due to incompatible operational mode. - - 'suspendedBySpeed(34)' - port that belongs to a port channel - is suspended due to incompatible operational speed. - - 'suspendedByWwn(35)' - port that belongs to a port channel - is suspended due to incompatible remote switch WWN. - - 'domainMaxReTxFailure(36)' - domain manager failure after - maximum retries. - - 'eppFailure(37)' - trunk negotiation protocol failure after - maximum retries. - - 'portVsanMismatchIsolation(38)' - an attempt is made to - connect two switches using non-trunking ports having - different port VSANs. - - 'loopbackIsolation(39)' - port is connected to another port - in the same switch. - - 'upgradeInProgress(40)' - linecard upgrade in progress. - - 'incompatibleAdminRxBbCredit(41)' - receive BB credit is - incompatible. - - 'incompatibleAdminRxBufferSize(42)' - receive buffer size - is incompatible. - - 'portChannelMembersDown(43)' - no operational members. - - 'zoneRemoteNoRespIsolation(44)' - isolation due to remote - zone server not responding. - - 'firstPortUpAsEport(45)' - in a over subscribed line card, - when the first port in a group is up in E-mode, other - ports in that group cannot be brought up. - - 'firstPortNotUp(46)' - in a over subscribed line card, - first port cannot be brought up in E-mode when the - other ports in the group are up. - - 'peerFcipPortClosedConnection(47)' - port went down because - peer FCIP port closed TCP connection. - - 'peerFcipPortResetConnection(48)' - port went down because - the TCP connection was reset by the peer FCIP port. - - 'fcipPortMaxReTx(49)' - FCIP port went down due to maximum - TCP re-transmissions reached the configured limit. - - 'fcipPortKeepAliveTimerExpire(50)' - FCIP port went down - due to TCP keep alive timer expired. - - 'fcipPortPersistTimerExpire(51)' - FCIP port went down due - to TCP persist timer expired. - - 'fcipPortSrcLinkDown(52)' - FCIP port went down due to - Ethernet link down. - - 'fcipPortSrcAdminDown(53)' - FCIP port went down because - the source Ethernet link was administratively shutdown. - - 'fcipPortAdminCfgChange(54)' - FCIP port went down due to - configuration change. - - 'fcipSrcPortRemoved(55)' - FCIP port went down due to source - port removal. - - 'fcipSrcModuleNotOnline(56)' - FCIP port went down due to - source module not online. - - 'invalidConfig(57)' - this port has a misconfiguration with - respect to port channels. - - 'portBindFailure(58)' - port got isolated due to port bind - failure. - - 'portFabricBindFailure(59)' - port got isolated due to - fabric bind failure. - - 'noCommonVsanIsolation(60)' - trunk is isolated because - there are no common VSANs with peer. - - 'ficonVsanDown (61)' - FICON VSAN down. - - 'invalidAttachment (62)' - invalid attachment. - - 'portBlocked (63)' - port blocked due to FICON. - - 'incomAdminRxBbCreditPerBuf (64)' - disabled due to - incompatible administrative port rxbbcredit, - performance buffers. - - 'tooManyInvalidFlogis (65)' - suspended due to too many - invalid FLOGIs. - - 'deniedDueToPortBinding (66)' - suspended due to port - binding. - - 'elpFailureRevMismatch (67)' - isolated for ELP failure due - to revision mismatch. - - 'elpFailureClassFParamErr (68)' - isolated for ELP failure - due to Class F parameter error. - - 'elpFailureClassNParamErr (69)' - isolated for ELP failure - due to Class N parameter error. - - 'elpFailureUnknownFlowCtlCode (70)' - isolated for ELP - failure due to invalid flow control code. - - 'elpFailureInvalidFlowCtlParam (71)' - isolated for ELP - failure due to invalid flow control parameter. - - 'elpFailureInvalidPortName(72)' - isolated for ELP failure - due to invalid port name. - - 'elpFailureInvalidSwitchName (73)' - isolated for ELP - failure due to invalid switch name. - - 'elpFailureRatovEdtovMismatch (74)' - isolated for ELP - failure due to R_A_TOV or E_D_TOV mismatch. - - 'elpFailureLoopbackDetected (75)' - isolated for ELP - failure due to loopback detected. - - 'elpFailureInvalidTxBbCredit (76)' - isolated for ELP - failure due to invalid transmit BB credit. - - 'elpFailureInvalidPayloadSize (77)' - isolated for ELP - failure due to invalid payload size. - - 'bundleMisCfg (78)' - misconfiguration in port channel - membership detected. - - 'bitErrRuntimeThreshExceeded (79)' - bit error rate too - high. It has exceeded the run time threshold. - - 'linkFailLinkReset (80)' - link failure due to link reset. - - 'linkFailPortInitFail (81)' - link failure due to port - initialization failure. - - 'linkFailPortUnusable (82)' - link failure due to port - unusable. - - 'linkFailLossOfSignal (83)' - link failure due to loss of - signal. - - 'linkFailLossOfSync (84)' - link failure due to loss of - sync. - - 'linkFailNosRcvd (85)' - link failure due to non-operational - sequences received. - - 'linkFailOLSRcvd (86)' - link failure due to offline - sequences received. - - 'linkFailDebounceTimeout (87)' - link failure due to - re-negotiation failed. - - 'linkFailLrRcvd (88)' - link failure when link reset(LR) - operation fails due to non-empty receive queue. - - 'linkFailCreditLoss (89)' - link failure due to excessive - credit loss indications. - - 'linkFailRxQOverflow (90)' - link failure due to receive - queue overflow. - - 'linkFailTooManyInterrupts (91)' - link failure due to - excessive port interrupts. - - 'linkFailLipRcvdBb (92)' - link failure when loop - initialization(LIP) operation fails due to non empty - receive queue. - - 'linkFailBbCreditLoss (93)' - link failure when link - reset(LR) operation fails due to queue not empty. - - 'linkFailOpenPrimSignalTimeout (94)' - link failure due to - open primitive signal timeout while receive queue - not empty. - - 'linkFailOpenPrimSignalReturned (95)' - link failure due to - open primitive signal returned while receive queue - not empty. - - 'linkFailLipF8Rcvd (96)' - link failure due to F8 LIP - received. - - 'linkFailLineCardPortShutdown (97)' - link failure due to - port shutdown. - - 'fcspAuthenFailure (98)' - fibre channel security protocol - authorization fail. - - 'fcotChecksumError (99)' - FCOT SPROM checksum error. - - 'ohmsExtLoopbackTest (100)' - link suspended due to external - loopback diagnostics failure. - - 'invalidFabricBindExchange (101)' - invalid fabric binding - exchange. - - 'tovMismatch (102)' - link isolation due to TOV mismatch. - - 'ficonNotEnabled (103)' - FICON not enabled. - - 'ficonNoPortNumber (104)' - no FICON port number. - - 'ficonBeingEnabled (105)' - FICON is being enabled. - - 'ePortProhibited (106)' - port down because FICON prohibit - mask in place for E/TE port. - - 'portGracefulShutdown (107)' - port has been shutdown - gracefully. - - 'trunkNotFullyActive (108)' - some of the VSANs which are - common with the peer are not up. - - 'fabricBindingSwitchWwnNotFound (109)' - peer switch WWN not - found in fabric binding active database. - - 'fabricBindingDomainInvalid (110)' - peer domain ID is - invalid in fabric binding active database. - - 'fabricBindingDbMismatch (111)' - fabric binding active - database mismatch with peer. - - 'fabricBindingNoRspFromPeer (112)' - fabric binding no - response from peer. - - 'dpvmVsanSuspended (113)' - dpvm vsan is suspended. - - 'dpvmVsanNotFound (114)' - dpvm vsan not found. - - 'trackedPortDown (115)' - port down because tracked - port is down. - - 'ecSuspendedOnLoop (116)' - port suspended because extended - BB credits are configured on loop port. - - 'isolateBundleMisCfg (117)' - port isolated due to bundle - mis-configuration. - - 'noPeerBundleSupport (118)' - peer port does not support - bundle. - - 'portBringupIsolation (119)' - trunk port isolated during - bringup time. - - 'domainNotAllowedIsolated (120)' - port isolated due to - domain not allowed. - - 'virtualIvrDomainOverlapIsolation (121)' - port isolated - due to virtual IVR domain overlap. - - 'outOfService (122)' - port is in out of service state. - - 'portAuthFailed (123)' - port has encountered an 802.1x - authentication failure. - - 'bundleStandby (124)' - port cannot be brought up in - a bundle, since the bundle has max members. - - 'portConnectorTypeErr (125)' - Error in the port connector - type (SFP). - - 'errorDisabledReInitLmtReached (126)' - the port is not - operational after trying to initialize the port multiple - times due to some erorrs. - - 'ficonDupPortNum (127)' - the ficon vsan has a duplicate - port number. - - 'localRcf (128)' - fcdomain applied a locally disruptive - reconfiguration (the local domain became invalid; no - RCF frames have been sent outside the local switch). - - 'twoSwitchesWithSameWWN (129)' - merge attempt between - VSANs containing the same WWN. If the user attempts to - merge two different VSANs and both have at least one - switch with the same WWN then the link in between the - VSANs is isolated. - - 'invalidOtherSidePrincEFPReqRecd (130)' - EFP request frame - indicating a principal switch other than the locally - known one. - - 'domainOther (131)' - other domain manager reasons not - defined here. - - 'elpFailureAllZeroPeerWWNRcvd (132)' - isolated for ELP - failure due to peer WWN is received with all zeros. - - 'preferredPathIsolation (133)' - port isolated due to - preferred path not able to program the routes. - - 'fcRedirectIsolation (134)' - port isolated due to - FC Redirect not being able to program routes. - - 'portActLicenseNotAvailable (135)' - port not brought up - due to lack of port activation licenses. - - 'sdmIsolation (136)' - port isolated due to SDM - (Security Device Manager) not being - able to program routes. - - 'fcidAllocationFailed (137)' - port down due to failure - in FCID (Fibre Channel Domain ID) allocation. - - 'externallyDisabled (138)' - port externally disabled. - - 'unavailableNPVUpstreamPort (139)' - NPV - (NPort Virtualizer) upstream port not available. - - 'unavailableNPVPrefUpstreamPort (140)' - NPV - (NPort Virtualizer) preferred - upstream port not available. - - 'sfpReadError (141)' - the port is not operational due to - SFP (Small Formfactor Pluggable) read error. - - 'stickyDownOnLinkFailure (142)' - the port is - not operational due to link failure - in the sticky down mode. - - 'tooManyLinkFlapsErr (143)' - too many link flaps - on the port in a short interval. - - 'unidirectionalUDLD (144)' - unidirectional UDLD - (Uni Directional Link Detection) detected. - - 'txRxLoopUDLD (145)' - UDLD (Uni Directional - Link Detection) Tx Rx loop. - - 'neighborMismatchUDLD (146)' - UDLD - (Uni Directional Link Detection) neighbor mismatch. - - 'authzPending (147)' - authorization pending. - - 'hotStdbyInBundle (148)' - hot standby in bundle. - - 'incompleteConfig (149)' - all parameters on the port - have not been configured. - - 'incompleteTunnelCfg (150)' - incomplete tunnel config. - - 'hwProgrammingFailed (151)' - hardware programming failed. - - 'tunnelDstUnreachable (152)' - no route to - tunnel destination address. - - 'suspendByMtu (153)' - MTU allocation failed. - - 'sfpInvalid (154)' - SFP (Small Formfactor Pluggable) - is not Cisco certified. - - 'sfpAbsent (155)' - SFP (Small Formfactor - Pluggable) is absent. - - 'portCapabilitiesUnknown (156)' - the capabilities of the - port are unknown. - - 'channelErrDisabled (157)' - the port-channel to which - the port belongs is in error disabled state. - - 'vrfMismatch (158)' - Mismatch in source and transport VRF - (VPN Routing and Forwarding). - - 'vrfForwardReferencing (159)' - Forward referencing - transport VRF (VPN Routing and Forwarding). - - 'dupTunnelConfigDetected (160)' - two tunnel interfaces - with same configuration is not allowed. - - 'primaryVLANDown (161)' - primary VLAN is in down state. - - 'vrfUnusable (162)' - VRF (VPN Routing and Forwarding) - is unusable. - - 'errDisableHandShkFailure (163)' - port is not operational - due to an internal handshake failure. - - 'errDisabledBPDUGuard (164)' - BPDUGuard - (Bridge Protocol Data Unit) triggered - error disable on the port. - - 'dot1xSecViolationErrDisabled (165)' - error disabled - due to dot1x security violation. - - 'emptyEchoUDLD (166)' - UDLD (Uni Directional - Link Detection) empty echo. - - 'vfTaggingCapErr (167)' - VF Tagging capability - mismatch error. - - 'portDisabled (168)' - Port disabled. - - 'tunnelModeNotConfigured (169)' - Tunnel Mode is not - configured. - - 'tunnelSrcNotConfigured (170)' - Tunnel Source is not - configured. - - 'tunnelDstNotConfigured (171)' - Tunnel Destination - is not configured. - - 'tunnelUnableToResolveSrcIP (172)' - Unable to resolve - tunnel source IP address. - - 'tunnelUnableToResolveDstIP (173)' - Unable to resolve - tunnel destination IP address. - - 'tunnelVrfDown (174)' - Tunnel VRF down. - - 'sifAdminDown (175)' - SIF (Service Information Field) - is admin down. - - 'phyIntfDown (176)' - Physical interface is down. - - 'ifSifLimitExceeded (177)' - Interface SIF - (Service Information Field)limit is exceeded. - - 'sifHoldDown (178)' - SIF (Service Information Field) - hold down. - - 'noFcoe (179)' - No FCOE (Fibre Channel Over Ethernet) - configuration. - - 'dcxCompatMismatch (180)' - DCX Compatibility Mismatch. - - 'isolateBundleLimitExceeded (181)' - Isolation due to - bundle limit exceeded. - - 'sifNotBound (182)' - SIF (ervice Information Field) - is not bound. - - 'errDisabledLacpMiscfg (183)' - Error Disabled due to - LACP (Link Access Control Protocol) misconfig. - - 'satFabricIfDown (184)' - Satellite fabric interface down. - - 'invalidSatFabricIf (185)' - Invalid satellite fabric - interface. - - 'noRemoteChassis (186)' - No remote chassis. - - 'vicEnableNotReceived (187)' - VIC enable not received. - - 'vicDisableReceived (188)' - VIC disable received. - - 'vlanVsanMappingNotEnabled (189)' - VLAN VSAN mapping not - enabled. - - 'stpNotFwdingInFcoeMappedVlan (190)' - STP not forwarding - in FCOE Mapped Vlan. - - 'moduleOffline (191)' - Module Offline. - - 'udldAggModeLinkFailure (192)' - UDLD (Uni Directional Link - Detection) aggresive mode link failure. - - 'stpInconsVpcPeerDisabled (193)' - STP inconsistent - VPC (Virtual Port Channel) peer disabled. - - 'setPortStateFailed (194)' - Set port state failed. - - 'suspendedByVpc (195)' - Suspended by VPC - (Virtual Port Channel). - - 'vpcCfgInProgress (196)' - VPC (Virtual Port Channel) - configuration in progress. - - 'vpcPeerLinkDown (197)' - VPC (Virtual Port Channel) - peer link down. - - 'vpcNoRspFromPeer (198)' - VPC (Virtual Port Channel) - no response from peer. - - 'protoPortSuspend (199)' - Proto port suspend. - - 'tunnelSrcDown (200)' - Tunnel source down. - - 'cdpInfoUnavailable (201)' - CDP - (Cisco Discovery Protocol) information unavailable. - - 'fexSfpInvalid (202)' - FEX (Fabric Extender) - SFP (Small Formfactor Pluggable) invalid. - - 'errDisabledIpConflict (203)' - Error Disabled due to IP - conflict. - - 'fcotClkRateMismatch (204)' - FCOT CLK rate mismatch. - - 'portGuardTrustSecViolation (205)' - Error disabled due - to port guard (Cisco Trusted Security Violation). - - 'sdpTimeout (206)' - SDP (Secure Device Provisioning) - timeout. - - 'satIncompatTopo (207)' - Satellite incompatible topology. - - 'waitForFlogi (208)' - Wait for FLOGI. - - 'satNotConfigured (209)' - Satellite not configured. - - 'npivNotEnabledInUpstream (210)' - NPIV (N Port Identifier - Virtualization) not enabled in upstream. - - 'vsanMismatchWithUpstreamSwPort (211)' - VSAN - mismatch with upstream switch port. - - 'portGuardBitErrRate (212)' - Error disabled due to port - guard (Bit Error Rate). - - 'portGuardSigLoss (213)' - Error disabled due to - port guard (Signal Loss). - - 'portGuardSyncLoss (214)' - Error disabled due to port - guard (Sync Loss). - - 'portGuardLinkReset (215)' - Error disabled due to port - guard (Link Reset). - - 'portGuardCreditLoss (216)' - Error disabled due to port - guard (Credit Loss). - - 'ipQosMgrPolicyAppFailure (217)' - IP QOS Manager policy - application failure. - - 'pauseRateLimitErrDisabled (218)' - Port error disabled due - to pause rate limit condition. - - 'lstGrpUplinkDown (219)' - EthPM LSTGRP downstream link - down due to upstream link down. - - 'stickyDnLinkFailure (220)' - Port kept in error disabled - state due to Link Failure. - - 'routerMacFailure (221)' - Router MAC failure. - - 'dcxMultipleMsapIds (222)' - Port error disabled due to - multiple MSAP IDs (DCX). - - 'dcxHundredPdusRcvdNoAck (223)' - Hundred PDUs received - without ACK (DCX). - - 'enmSatIncompatibleUplink (224)' - Satellite Incompatible - Uplink. - - 'enmLoopDetected (225)' - Loop Detected (ENM). - - 'nonStickyExternallyDisabled (226)' - Disabled by VPD - Manager with shut/no shut allowed. - - 'nonStickyExternallyDisabled (227)' - Sub-group ID - not assigned. - - 'vemUnlicensed (228)' - VEM Unlicensed. - - 'profileNotFound (229)' - Profile not found. - - 'nonExistentVlan (230)' - VLAN does not exist. - - 'vlanInvalidType (231)' - Invalid VLAN type. - - 'vlanDown (232)' - VLAN down. - - 'vpcPeerUpgrade (233)' - VPC Peer Upgrade. - - 'ipQosDcbxpCompatFailure (234)' - IPQOS DCBXP compatibility - failure. - - 'nonCiscoHbaVfTag (235)' - Error Disabled due to Non-Cisco - HBA VF Tag. - - 'domainIdConfigMismatch (236)' - Domain ID config mismatch. - - 'sfpSpeedMismatch (237)' - SFP (Small Formfactor Pluggable) - speed mismatch. - 'xcvrInitializing (238)' - Transceiver initializing. - - 'xcvrAbsent (239)' - Transceiver absent. - - 'xcvrInvalid (240)' - Transceiver invalid. - - 'vfcBindingInvalid (241)' - Invalid VFC Binding. - - 'vlanNotFcoeEnabled (242)' - VLAN down due to FCOE - disabled. - - 'pvlanNativeVlanErr (243)' - Private VLAN - Native VLAN error. - - 'ethL2VlanDown (244)' - Ethernet L2 VLAN down. - - 'ethIntfInvalidBinding (245)' - Invalid Binding - to Ethernet Interface. - - 'pmonFailure (246)' - PMON Failure. - - 'l3NotReady (247)' - L3 not ready. - - 'speedMismatch (248)' - Speed Mismatch. - - 'flowControlMismatch (249)' - Flow Control Mismatch. - - 'vdcMode (250)' - VDC mode - - 'suspendedDueToMinLinks (251)' - Suspended due - to Min Links. - - 'enmPinFailLinkDown (252)' - ENM Pin Fail Link Down. - - 'inactiveM1PortFpathActiveVlan (253)' - Inactive M1 Port - F Path Active VLAN. - - 'parentPortDown (254)' - Parent Port Down. - - 'moduleRemoved (255)' - Module Removed. - - 'corePortMct (256)' - Core Port MCT. - - 'nonCorePortMct (257)' - Non Core port MCT. - - 'ficonInorderNotActive (258)'- FICON Inorder Not Active. - - 'invalidEncapsulation (259)' - Invalid Encapsulation. - - 'modemLineDeasserted (260)' - Modem line Deasserted. - - 'ipSecHndshkInProgress (261)' - IP Sec Handshake in - progress. - - 'sfpEthCompliantErr (262)' - Sfp Ethernet compliant error. - - 'cellularModemUnattached (263)' - Cellular Modem - unattached. - - 'outOfGlblRxBuffers (264)' - Out of Global Rx Buffers. - - 'sfpFcCompliantErr (265)' - Sfp Fc compliant Error. - - 'ethIntfNotLicensed (266)' - Ethernet Interface Not - Licensed. - - 'domainIdsInvalid (267)' - Domain IDs Invalid. - - 'fabricNameInvalid (268)' - Fabric Name Invalid. - - 'ficonNoPortSwapLogicalPort (269)' - Ficon No Port Swap Logical Port. - - 'ficonInvalidPortNum (270)' - Ficon Invalid Port Number. - - 'remotePortInL2vpnDown (271)' - Remote Port in L2VPN Down. - - 'suspendedDueToNoLacpPdus (272)' - Suspended due to no LACP PDUs. - - 'fcotValidationFailedAtDriver (273)' - Fcot validation failed at driver. - - 'unsupportedTransceiverMd5DigestNotSame (274)' - Unsupported transceiver MD5 digest not Same. - - 'unsupportedTransceiver (275)' - Unsupport transceiver. - - 'adminStateConfigChange (276)' - Admin state config change. - - 'vlanAllowedList (277)' - Allowed Vlan list configured on the port. - - 'vlanAllowedListOverride (278)' - Allowed Vlan list changed on the port. - - 'vlanAllowedListAdd (279)' - Vlan has been added to the allowed Vlan list on the port. - - 'vlanAllowedListRemove (280)' - Vlan has been removed from the allowed Vlan list on the port. - - 'vlanCfgStateChange (281)' - Port affected due to Vlan state change. - - 'vlanCfgDelete (282)' - Port affected due to Vlan delete. - - 'pppPeerNotResponding (283)' - ppp peer not responding. - - 'pppAuthFailed (284)' - ppp authentication failed. - - 'xcvrAuthFailed (285)' - Transceiver authentication failed. - - 'badFramesRcvdFromLink (286)' - Excessive bad frames received from link. - - 'physicalPortHotStandBy (287)' - - Physical Port in Hot-StandBy State. - - 'wimaxModemUnattached (288)' - - Modem Disconnected from WiMAX network. - - 'wpanModemUnattached (289)' - - Modem Disconnected from WPAN network. - - 'rbhModulo (290)' - - Down due to RBH modulo load-balance feature toggle. - - 'fpcMinLinkNotMet (291)' - - Suspended as the FPC min-link requirement has not - been met. - - 'misCabling (292)' - - Miscabling detected. - - 'rcvSrpOnNonFcoeFex (293)' - - Down due to received SRP for a non-FCOE capable FEX - - 'acessPortOnBd (294)' - - Inactive due to access port is configured with a - Bridge-Domain ID. - - 'lacpMisConfig (295)' - - LACP port suspended due to misconfiguration. - - 'fortyGMemberPort (300)' - - Port is a member of a 40G interface. - - 'goldLoopBackTest (301)' - - Suspended due to Loopback diagnostics. - - 'edpError (302)' - - Down due to EDP enforcement. - - 'vpcCompCheckFailed (303)' - - VPC down because compatibility check failed. - - 'aclQosNoResource (304)' - - Not enough free entries in TCAM bank for QoS. - - 'vpcShutdown (305)' - - VPC shutdown. - - 'notPcMember (306)' - - Port is not a member of a port channel. - - 'systemIntfShut (307)' - - System interface shutdown. - - 'speedGroupConfigMisMatch (308)' - - Speed-Group config does not match type of transceiver. - - 'dot1qMisConfig (310)' - - Dot1q-tunnel misconfiguration. - - 'mdMisMatch (311)' - - Mobility Domain Config Mismatch. - - 'vpcPeerLinkShut (312)' - - Suspended because VPC peer link had been shut down. - - 'notAvailable (313)' - - Port Operation Status is currently not available. - " - SYNTAX INTEGER { - other(1), - none(2), - hwFailure(3), - loopbackDiagFailure(4), - errorDisabled(5), - swFailure(6), - linkFailure(7), - offline(8), - nonParticipating(9), - initializing(10), - vsanInactive(11), - adminDown(12), - channelAdminDown(13), - channelOperSuspended(14), - channelConfigurationInProgress(15), - rcfInProgress(16), - elpFailureIsolation(17), - escFailureIsolation(18), - domainOverlapIsolation(19), - domainAddrAssignFailureIsolation(20), - domainOtherSideEportIsolation(21), - domainInvalidRcfReceived(22), - domainManagerDisabled(23), - zoneMergeFailureIsolation(24), - vsanMismatchIsolation(25), - parentDown(26), - srcPortNotBound(27), - interfaceRemoved(28), - fcotNotPresent(29), - fcotVendorNotSupported(30), - incompatibleAdminMode(31), - incompatibleAdminSpeed(32), - suspendedByMode(33), - suspendedBySpeed(34), - suspendedByWWN(35), - domainMaxReTxFailure(36), - eppFailure(37), - portVsanMismatchIsolation(38), - loopbackIsolation(39), - upgradeInProgress(40), - incompatibleAdminRxBbCredit(41), - incompatibleAdminRxBufferSize(42), - portChannelMembersDown(43), - zoneRemoteNoRespIsolation(44), - firstPortUpAsEport(45), - firstPortNotUp(46), - peerFCIPPortClosedConnection(47), - peerFCIPPortResetConnection(48), - fcipPortMaxReTx(49), - fcipPortKeepAliveTimerExpire(50), - fcipPortPersistTimerExpire(51), - fcipPortSrcLinkDown(52), - fcipPortSrcAdminDown(53), - fcipPortAdminCfgChange(54), - fcipSrcPortRemoved(55), - fcipSrcModuleNotOnline(56), - invalidConfig(57), - portBindFailure(58), - portFabricBindFailure(59), - noCommonVsanIsolation(60), - ficonVsanDown(61), - invalidAttachment(62), - portBlocked(63), - incomAdminRxBbCreditPerBuf(64), - tooManyInvalidFlogis(65), - deniedDueToPortBinding(66), - elpFailureRevMismatch(67), - elpFailureClassFParamErr(68), - elpFailureClassNParamErr(69), - elpFailureUnknownFlowCtlCode(70), - elpFailureInvalidFlowCtlParam(71), - elpFailureInvalidPortName(72), - elpFailureInvalidSwitchName(73), - elpFailureRatovEdtovMismatch(74), - elpFailureLoopbackDetected(75), - elpFailureInvalidTxBbCredit(76), - elpFailureInvalidPayloadSize(77), - bundleMisCfg(78), - bitErrRuntimeThreshExceeded(79), - linkFailLinkReset(80), - linkFailPortInitFail(81), - linkFailPortUnusable(82), - linkFailLossOfSignal(83), - linkFailLossOfSync(84), - linkFailNosRcvd(85), - linkFailOLSRcvd(86), - linkFailDebounceTimeout(87), - linkFailLrRcvd(88), - linkFailCreditLoss(89), - linkFailRxQOverflow(90), - linkFailTooManyInterrupts(91), - linkFailLipRcvdBb(92), - linkFailBbCreditLoss(93), - linkFailOpenPrimSignalTimeout(94), - linkFailOpenPrimSignalReturned(95), - linkFailLipF8Rcvd(96), - linkFailLineCardPortShutdown(97), - fcspAuthenfailure(98), - fcotChecksumError(99), - ohmsExtLoopbackTest(100), - invalidFabricBindExchange(101), - tovMismatch(102), - ficonNotEnabled(103), - ficonNoPortNumber(104), - ficonBeingEnabled(105), - ePortProhibited(106), - portGracefulShutdown(107), - trunkNotFullyActive(108), - fabricBindingSwitchWwnNotFound(109), - fabricBindingDomainInvalid(110), - fabricBindingDbMismatch(111), - fabricBindingNoRspFromPeer(112), - dpvmVsanSuspended(113), - dpvmVsanNotFound(114), - trackedPortDown(115), - ecSuspendedOnLoop(116), - isolateBundleMisCfg(117), - noPeerBundleSupport(118), - portBringupIsolation(119), - domainNotAllowedIsolated(120), - virtualIvrDomainOverlapIsolation(121), - outOfService(122), - portAuthFailed(123), - bundleStandby(124), - portConnectorTypeErr(125), - errorDisabledReInitLmtReached(126), - ficonDupPortNum(127), - localRcf(128), - twoSwitchesWithSameWWN(129), - invalidOtherSidePrincEFPReqRecd(130), - domainOther(131), - elpFailureAllZeroPeerWWNRcvd(132), - preferredPathIsolation(133), - fcRedirectIsolation(134), - portActLicenseNotAvailable(135), - sdmIsolation(136), - fcidAllocationFailed(137), - externallyDisabled(138), - unavailableNPVUpstreamPort(139), - unavailableNPVPrefUpstreamPort(140), - sfpReadError(141), - stickyDownOnLinkFailure(142), - tooManyLinkFlapsErr(143), - unidirectionalUDLD(144), - txRxLoopUDLD(145), - neighborMismatchUDLD(146), - authzPending(147), - hotStdbyInBundle(148), - incompleteConfig(149), - incompleteTunnelCfg(150), - hwProgrammingFailed(151), - tunnelDstUnreachable(152), - suspendByMtu(153), - sfpInvalid(154), - sfpAbsent(155), - portCapabilitiesUnknown(156), - channelErrDisabled(157), - vrfMismatch(158), - vrfForwardReferencing(159), - dupTunnelConfigDetected(160), - primaryVLANDown(161), - vrfUnusable(162), - errDisableHandShkFailure(163), - errDisabledBPDUGuard(164), - dot1xSecViolationErrDisabled(165), - emptyEchoUDLD(166), - vfTaggingCapErr(167), - portDisabled(168), - tunnelModeNotConfigured(169), - tunnelSrcNotConfigured(170), - tunnelDstNotConfigured(171), - tunnelUnableToResolveSrcIP(172), - tunnelUnableToResolveDstIP(173), - tunnelVrfDown(174), - sifAdminDown(175), - phyIntfDown(176), - ifSifLimitExceeded(177), - sifHoldDown(178), - noFcoe(179), - dcxCompatMismatch(180), - isolateBundleLimitExceeded(181), - sifNotBound(182), - errDisabledLacpMiscfg(183), - satFabricIfDown(184), - invalidSatFabricIf(185), - noRemoteChassis(186), - vicEnableNotReceived(187), - vicDisableReceived(188), - vlanVsanMappingNotEnabled(189), - stpNotFwdingInFcoeMappedVlan(190), - moduleOffline(191), - udldAggModeLinkFailure(192), - stpInconsVpcPeerDisabled(193), - setPortStateFailed(194), - suspendedByVpc(195), - vpcCfgInProgress(196), - vpcPeerLinkDown(197), - vpcNoRspFromPeer(198), - protoPortSuspend(199), - tunnelSrcDown(200), - cdpInfoUnavailable(201), - fexSfpInvalid(202), - errDisabledIpConflict(203), - fcotClkRateMismatch(204), - portGuardTrustSecViolation(205), - sdpTimeout(206), - satIncompatTopo(207), - waitForFlogi(208), - satNotConfigured(209), - npivNotEnabledInUpstream(210), - vsanMismatchWithUpstreamSwPort(211), - portGuardBitErrRate(212), - portGuardSigLoss(213), - portGuardSyncLoss(214), - portGuardLinkReset(215), - portGuardCreditLoss(216), - ipQosMgrPolicyAppFailure(217), - pauseRateLimitErrDisabled(218), - lstGrpUplinkDown(219), - stickyDnLinkFailure(220), - routerMacFailure(221), - dcxMultipleMsapIds(222), - dcxHundredPdusRcvdNoAck(223), - enmSatIncompatibleUplink(224), - enmLoopDetected(225), - nonStickyExternallyDisabled(226), - subGroupIdNotAssigned(227), - vemUnlicensed(228), - profileNotFound(229), - nonExistentVlan(230), - vlanInvalidType(231), - vlanDown(232), - vpcPeerUpgrade(233), - ipQosDcbxpCompatFailure(234), - nonCiscoHbaVfTag(235), - domainIdConfigMismatch(236), - sfpSpeedMismatch(237), - xcvrInitializing(238), - xcvrAbsent(239), - xcvrInvalid(240), - vfcBindingInvalid(241), - vlanNotFcoeEnabled(242), - pvlanNativeVlanErr(243), - ethL2VlanDown(244), - ethIntfInvalidBinding(245), - pmonFailure(246), - l3NotReady(247), - speedMismatch(248), - flowControlMismatch(249), - vdcMode(250), - suspendedDueToMinLinks(251), - enmPinFailLinkDown(252), - inactiveM1PortFpathActiveVlan(253), - parentPortDown(254), - moduleRemoved(255), - corePortMct(256), - nonCorePortMct(257), - ficonInorderNotActive(258), - invalidEncapsulation(259), - modemLineDeasserted(260), - ipSecHndshkInProgress(261), - sfpEthCompliantErr(262), - cellularModemUnattached(263), - outOfGlblRxBuffers(264), - sfpFcCompliantErr(265), - ethIntfNotLicensed(266), - domainIdsInvalid(267), - fabricNameInvalid(268), - ficonNoPortSwapLogicalPort(269), - ficonInvalidPortNum(270), - remotePortInL2vpnDown(271), - suspendedDueToNoLacpPdus(272), - fcotValidationFailedAtDriver(273), - unsupportedTransceiverMd5DigestNotSame(274), - unsupportedTransceiver(275), - adminStateConfigChange(276), - vlanAllowedList(277), - vlanAllowedListOverride(278), - vlanAllowedListAdd(279), - vlanAllowedRemove(280), - vlanCfgStateChange(281), - vlanCfgDelete(282), - pppPeerNotResponding(283), - pppAuthFailed(284), - xcvrAuthFailed(285), - badFramesRcvdFromLink(286), - physicalPortHotStandBy(287), - wimaxModemUnattached(288), - wpanModemUnattached(289), - rbhModulo(290), - fpcMinLinkNotMet(291), - misCabling(292), - rcvSrpOnNonFcoeFex(293), - acessPortOnBd(294), - lacpMisConfig(295), - fortyGMemberPort(300), - goldLoopBackTest(301), - edpError(302), - vpcCompCheckFailed(303), - aclQosNoResource(304), - vpcShutdown(305), - notPcMember(306), - systemIntfShut(307), - speedGroupConfigMisMatch(308), - dot1qMisConfig(310), - mdMisMatch(311), - vpcPeerLinkShut(312), - notAvailable(313) - } - -EntLogicalIndexOrZero ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is an extension of entLogicalIndex. - If non-zero, the semantic is same as entLogicalIndex object. - If zero, no appropriate entLogicalIndex exists. Any additional - semantics must be defined as part of the description of any - object which uses this syntax." - SYNTAX Integer32 (0..2147483647) - -CiscoURLString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention defines the URL string. - The Universal Resource Locator(URL). The URL strings - are compact string representation for a resource - available via internet. This is the address location - of the page to load. The string should represent a - fully qualifying string with the format - 'protocol:/server/page'. In general the string should - point to any value that can be saved/loaded. - Any limitation for the URL must be defined as part of - the description of any object which uses this syntax." - - REFERENCE "Uniform Resource Locators. RFC 1738." - SYNTAX OCTET STRING (SIZE (1..255)) - -CiscoURLStringOrEmpty ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is an extension of CiscoURLString. - This extension permits the additional value of empty (zero - length) string. The description of any object which uses this - syntax must specifically describe the meaning of empty string - value." - - REFERENCE "Uniform Resource Locators. RFC 1738." - SYNTAX OCTET STRING (SIZE (0..255)) - -CiscoHTTPResponseStatusCode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This corresponds to the HTTP Status code. - The Status-Code element in HTTP response is - a 3-digit integer result code of the attempt - to understand and satisfy the HTTP request - The Status-Code is intended for use by automata. - - The first digit of the Status-Code defines the class of - response. The last two digits do not have any - categorization role. There are 5 values for the first digit: - - - 1xx: Informational - Request received, continuing process - - - 2xx: Success - The action was successfully received, - understood, and accepted - - - 3xx: Redirection - Further action must be taken in order - to complete the request - - - 4xx: Client Error - The request contains bad syntax - or cannot be fulfilled - - - 5xx: Server Error - The server failed to fulfill an - apparently valid request." - - REFERENCE - "RFC 2616 Section 6.1.1 Status Code and Reason Phrase." - SYNTAX Unsigned32 (100..599) - -CvE164Address ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A UTF-8 string limited to the character set defined for - E.164, '0123456789*#,'. - Note that represents the double quote which - cannot be contained in a SMI description clause. - OR - An IA5String limited to the character set '0123456789*#,.'" - - REFERENCE - "ITU-T E.164, Q.931 chapter 4.5.10 - ITU-H H.225.0 Annex H" - SYNTAX OCTET STRING (SIZE (1..128)) - -CiscoVlanList ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Each octet within this value specifies a set of eight - VLANs. The object defined by this textual convention - can specify a VLAN range of 1k VLANs in its description. - Example: 0 - 1023, 1024 - 2047, etc. The first octet - represents the first 8 VLANs of the range of VLANs - specified by the object, the second octet represents - the next 8 VLANs, etc. When a VLAN range is not - specified, a default VLAN range of '0 - 1023' is assumed. - - Within each octet, the most significant bit represents - the lowest numbered VLAN, and the least significant bit - represents the highest numbered VLAN. Thus, each VLAN - of the device is represented by a single bit within the - value of this object. If that bit has a value of '1' - then that VLAN is included in the set of VLANs; the VLAN - is not included if its bit has a value of '0'. - - Note that if the length of this string is less than - 128 octets, any 'missing' octets are assumed to contain - the value zero. An NMS may omit any zero-valued octets - from the end of this string in order to reduce SetPDU size, - and the agent may also omit zero-valued trailing octets, - to reduce the size of GetResponse PDUs." - SYNTAX OCTET STRING (SIZE (0..128)) - -CiscoCosList ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Each bit represents a CoS value (0 through 7)." - SYNTAX BITS { - cos0(0), - cos1(1), - cos2(2), - cos3(3), - cos4(4), - cos5(5), - cos6(6), - cos7(7) - } - -CiscoPbbServiceIdentifier ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An integer-value which identifies the service instance of - the Provider Backbone Bridge frame." - - REFERENCE "IEEE P802.1ah/D3.3 chapter 9.8, December 2006" - SYNTAX Unsigned32 (1..16777216) - -CiscoBridgeDomain ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An object with this syntax contains a bridge domain number - which is used to distinguish between multiple bridge domains. A - bridge domain represents a set of (logical) Ethernet segments - which are interconnected by 802.1D bridges. 802.1Q allows for a - maximum of 4095 VLANs within a bridge domain. Some devices can - be connected to multiple bridge domains, e.g., routers with - some of their interfaces in one bridge domain and other - interfaces in other bridge domain. In such devices, the - combination of bridge-domain-number and VLAN-id can be used to - uniquely identify any VLAN across all interfaces." - SYNTAX Unsigned32 (1..65535) - -Cisco2KVlanList ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Each octet within this value specifies a set of eight VLANs. - The object defined by this textual convention can specify a VLAN - range of 2k VLANs in its description. Example: 0 - 2047, 2048 - - 4095, etc. The first octet represents the first 8 VLANs of the - range of VLANs specified by the object, the second octet - represents the next 8 VLANs, etc. - - Within each octet, the most significant bit represents the - lowest numbered VLAN, and the least significant bit represents - the highest numbered VLAN. Thus, each VLAN of the device is - represented by a single bit within the value of this object. If - that bit has a value of '1' then that VLAN is included in the - set of VLANs; the VLAN is not included if its bit has a value of - '0'. - - Note that if the length of this string is less than 256 octets, - any 'missing' octets are assumed to contain the value zero. An - NMS may omit any zero-valued octets from the end of this string - in order to reduce SetPDU size, and the agent may also omit - zero-valued trailing octets, to reduce the size of GetResponse - PDUs." - SYNTAX OCTET STRING (SIZE (0..256)) - -CiscoInterfaceIndexList ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention contains a list of ifIndex values. - - Each ifIndex value is represented by four octets. - Every set of four octets represents a value of an instance - of ifIndex object, defined in IF-MIB, corresponding to a - particular interface. - - For example, the first octet to the fourth octet represent a - value of the instance of ifIndex object for the first - interface in the list. The fifth octet to the eighth octet - represent a value of the instance of ifIndex object for - the second interface in the list. - - Up to 64 interfaces can be represented by this textual - convention." - SYNTAX OCTET STRING (SIZE (0..256)) - -CiscoVrfName ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The name of the Virtual Private Network Routing and - Forwarding (VRF) domain. - - Semantics of a zero length CiscoVrfName are object-specific - and must be defined as part of the description of any object - which uses this syntax." - SYNTAX OCTET STRING (SIZE (0..32)) - -CiscoEntityIndexList ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This text convention contains a list of entPhysicalIndex - values. - - Each entPhysicalIndex value is represented by four - octets. Every set of four octets represents a value of an - instance of entPhysicalIndex object, defined in ENTITY-MIB, - corresponding to a particular physical entity. - - For example, the first octet to the fourth octet - represents a value of the instance of entPhysicalIndex object - for the first physical entity in the list. The fifth octet to - the eighth octet represents a value of the instance of - entPhysicalIndex object for the second physical entity in the - list. - - Up to 64 physical entities can be represented by this - textual convention." - SYNTAX OCTET STRING (SIZE (0..256)) - -CiscoVlanIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The VLAN-id of a VLAN on ISL or 802.1q trunks. - - - For a new object which needs the vlan-id of a VLAN as - its SYNTAX, it is suggested to import VlanIndex or VlanId - from Q-BRIDGE-MIB instead of importing this TC. - - - For a existing MIB which have the import of VlanIndex - from CISCO-VTP-MIB, it is suggested to import this TC." - SYNTAX Integer32 (0..4095) - -CiscoAbsZeroBasedCounter64 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC describes an object which counts events with - the following semantics: objects of this type will be - set to zero(0) on creation and will thereafter count - appropriate events, it locks at the maximum value of - 2^64-1 (18446744073709551615 decimal) if the counter - overflows. This TC may be used only in situations where - wrapping is not possible or extremely unlikely situation." - SYNTAX Counter64 - -END - diff --git a/mibs/orig/CPQHLTH-MIB b/mibs/orig/CPQHLTH-MIB deleted file mode 100644 index 8056ae5..0000000 --- a/mibs/orig/CPQHLTH-MIB +++ /dev/null @@ -1,8511 +0,0 @@ --- **************************************************************************** --- --- Server Health Features --- Management Information Base for SNMP Network Management --- --- --- Copyright 1992,2017 Hewlett Packard Enterprise Development LP. --- --- Hewlett-Packard Enterprise Development LP shall not be liable for technical --- or editorial errors or omissions contained herein. The information in --- this document is provided "as is" without warranty of any kind and --- is subject to change without notice. The warranties for HP products --- are set forth in the express limited warranty statements --- accompanying such products. Nothing herein should be construed as --- constituting an additional warranty. --- --- Confidential computer software. Valid license from HP required for --- possession, use or copying. Consistent with FAR 12.211 and 12.212, --- Commercial Computer Software, Computer Software Documentation, and --- Technical Data for Commercial Items are licensed to the U.S. --- Government under vendor's standard commercial license. --- --- Refer to the READMIB.RDM file for more information about the --- organization of the information in the Compaq Enterprise. --- --- The Compaq Enterprise number is 232. --- The ASN.1 prefix to, and including the Compaq Enterprise is: --- 1.3.6.1.4.1.232 --- --- **************************************************************************** - -CPQHLTH-MIB DEFINITIONS ::= BEGIN - - IMPORTS - compaq FROM CPQHOST-MIB - enterprises FROM RFC1155-SMI - Counter FROM RFC1155-SMI - DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212 - TRAP-TYPE FROM RFC-1215 - sysName FROM RFC1213-MIB - cpqHoTrapFlags FROM CPQHOST-MIB - cpqSiServerSystemId FROM CPQSINFO-MIB - cpqSiMemModuleSize FROM CPQSINFO-MIB - cpqHoGUIDCanonical FROM CPQHOST-MIB; - --- compaq OBJECT IDENTIFIER ::= { enterprises 232 } - cpqHealth OBJECT IDENTIFIER ::= { compaq 6 } - cpqHeMibRev OBJECT IDENTIFIER ::= { cpqHealth 1 } - cpqHeComponent OBJECT IDENTIFIER ::= { cpqHealth 2 } - cpqHeTrap OBJECT IDENTIFIER ::= { cpqHealth 3 } - - cpqHeInterface OBJECT IDENTIFIER ::= { cpqHeComponent 1 } - cpqHeCriticalError OBJECT IDENTIFIER ::= { cpqHeComponent 2 } - cpqHeCorrectableMemory OBJECT IDENTIFIER ::= { cpqHeComponent 3 } - cpqHeAsr OBJECT IDENTIFIER ::= { cpqHeComponent 5 } - cpqHeThermal OBJECT IDENTIFIER ::= { cpqHeComponent 6 } - cpqHePostMsg OBJECT IDENTIFIER ::= { cpqHeComponent 7 } - cpqHeSysUtil OBJECT IDENTIFIER ::= { cpqHeComponent 8 } - cpqHeFltTolPwrSupply OBJECT IDENTIFIER ::= { cpqHeComponent 9 } - cpqHeIRC OBJECT IDENTIFIER ::= { cpqHeComponent 10 } - cpqHeEventLog OBJECT IDENTIFIER ::= { cpqHeComponent 11 } - cpqHeMgmtDisplay OBJECT IDENTIFIER ::= { cpqHeComponent 12 } - cpqHePowerConverter OBJECT IDENTIFIER ::= { cpqHeComponent 13 } - cpqHeResilientMemory OBJECT IDENTIFIER ::= { cpqHeComponent 14 } - cpqHePowerMeter OBJECT IDENTIFIER ::= { cpqHeComponent 15 } - cpqHeHWBios OBJECT IDENTIFIER ::= { cpqHeComponent 16 } - cpqHeSysBackupBattery OBJECT IDENTIFIER ::= { cpqHeComponent 17 } - cpqHeSysPwrHw OBJECT IDENTIFIER ::= { cpqHeComponent 18 } - cpqHeSysBoardFru OBJECT IDENTIFIER ::= { cpqHeComponent 19 } - cpqHePowerFailure OBJECT IDENTIFIER ::= { cpqHeComponent 20 } - cpqHeInterlockFailure OBJECT IDENTIFIER ::= { cpqHeComponent 21 } - cpqHeNvdimm OBJECT IDENTIFIER ::= { cpqHeComponent 22 } - cpqHeBbu OBJECT IDENTIFIER ::= { cpqHeComponent 23 } - - cpqHeOsNetWare3x OBJECT IDENTIFIER ::= { cpqHeInterface 1 } - cpqHeOsCommon OBJECT IDENTIFIER ::= { cpqHeInterface 4 } - --- **************************************************************************** --- Health MIB Revision --- =================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeMibRev Group (1.3.6.1.4.1.232.6.1) --- --- An Insight Agent conforming to this document will return a --- cpqHeMibRevMajor of one (1) and a cpqHeMibRevMinor of sixty two(62). --- --- --- Implementation of the MibRev group is mandatory for all agents --- supporting the Server Health MIB. --- --- **************************************************************************** - - cpqHeMibRevMajor OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Major Revision level of the MIB. - - 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." - ::= { cpqHeMibRev 1 } - - cpqHeMibRevMinor OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minor revision level of the MIB. - - A change in the minor revision level may represent some minor - additional support, no changes to any pre-existing information - has occurred." - ::= { cpqHeMibRev 2 } - - cpqHeMibCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), -- default - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall condition. - - This object represents the overall status of the server health - system represented by this MIB." - ::= { cpqHeMibRev 3 } - --- **************************************************************************** --- Health MIB NetWare OS Group --- =========================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1) --- cpqHeOsNetWare3x Group (1.3.6.1.4.1.232.6.2.1.1) --- --- Implementation of the cpqHeOsNetWare3x group is mandatory for all --- agents that support the Server Health MIB in a NetWare host --- operating environment. --- --- **************************************************************************** - - cpqHeNw3xDriverName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Driver Name. - - This value identifies the NetWare Loadable Module providing the - operating system access to the Server Health information." - ::= { cpqHeOsNetWare3x 1 } - - cpqHeNw3xDriverDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (8)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Driver Date. - - The date of the NetWare Loadable Module providing the operating - system access to the Server Health logs. The date is - provided in mm/dd/yy format." - ::= { cpqHeOsNetWare3x 2 } - - cpqHeNw3xDriverVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Driver Version. - - This is the version of the NetWare Loadable Module (NLM) - providing the operating system access to the Server - Health logs." - ::= { cpqHeOsNetWare3x 3 } - --- **************************************************************************** --- Health MIB OS Common Group --- ========================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1) --- cpqHeOsCommon Group (1.3.6.1.4.1.232.6.2.1.4) --- --- The cpqHeOsCommon group describes the interface to the Server --- health components. This information describes the interface modules --- and general OS interface architectural information. --- --- Implementation of the cpqHeOsCommon group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - - cpqHeOsCommonPollFreq OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - 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 - 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 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 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." - ::= { cpqHeOsCommon 1 } - --- **************************************************************************** --- Health MIB OS Common Module Table --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1) --- cpqHeOsCommon Group (1.3.6.1.4.1.232.6.2.1.4) --- cpqHeOsCommonModuleTable (1.3.6.1.4.1.232.6.2.1.4.2) deprecated --- --- **************************************************************************** - - cpqHeOsCommonModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Supporting software table. - - This is a table of software modules that provide an interface - to the device this server health MIB describes." - ::= { cpqHeOsCommon 2 } - - cpqHeOsCommonModuleEntry OBJECT-TYPE - SYNTAX CpqHeOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a software modules that provide an interface - to the device this MIB describes." - INDEX { cpqHeOsCommonModuleIndex } - ::= { cpqHeOsCommonModuleTable 1 } - - CpqHeOsCommonModuleEntry ::= SEQUENCE { - cpqHeOsCommonModuleIndex INTEGER, - cpqHeOsCommonModuleName DisplayString, - cpqHeOsCommonModuleVersion DisplayString, - cpqHeOsCommonModuleDate OCTET STRING, - cpqHeOsCommonModulePurpose DisplayString - } - - cpqHeOsCommonModuleIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "A unique index for this module description." - ::= { cpqHeOsCommonModuleEntry 1 } - - cpqHeOsCommonModuleName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The module name." - ::= { cpqHeOsCommonModuleEntry 2 } - - cpqHeOsCommonModuleVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - 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 null (size 0) string if the agent - cannot provide the module version." - ::= { cpqHeOsCommonModuleEntry 3 } - - cpqHeOsCommonModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqHeOsCommonModuleEntry 4 } - - cpqHeOsCommonModulePurpose OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The purpose of the module described in this entry." - ::= { cpqHeOsCommonModuleEntry 5 } - --- **************************************************************************** --- Health MIB Critical Error Group --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeCriticalError Group (1.3.6.1.4.1.232.6.2.2) --- --- The cpqHeCriticalError group describes the health critical error log. --- --- Implementation of the cpqHeCriticalError group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - - cpqHeCritLogSupported OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - supported(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies if this system supports the critical - error logging feature." - ::= { cpqHeCriticalError 1 } - - cpqHeCritLogCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the critical - error log feature." - ::= { cpqHeCriticalError 2 } - - cpqHeLastCritErrorAbendMsg OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last Critical Termination message. - - The message associated with the last critical error of - type criticalException(14) or abend(27)." - ::= { cpqHeCriticalError 3 } - --- **************************************************************************** --- Health MIB Critical Error Table --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeCriticalError Group (1.3.6.1.4.1.232.6.2.2) --- cpqHeCriticalErrorTable (1.3.6.1.4.1.232.6.2.2.4) --- --- **************************************************************************** - - cpqHeCriticalErrorTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeCriticalErrorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of critical error descriptions." - ::= { cpqHeCriticalError 4 } - - cpqHeCriticalErrorEntry OBJECT-TYPE - SYNTAX CpqHeCriticalErrorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A critical error description." - INDEX { cpqHeCriticalErrorIndex } - ::= { cpqHeCriticalErrorTable 1 } - - CpqHeCriticalErrorEntry ::= SEQUENCE { - cpqHeCriticalErrorIndex INTEGER, - cpqHeCriticalErrorStatus INTEGER, - cpqHeCriticalErrorType INTEGER, - cpqHeCriticalErrorTime OCTET STRING, - cpqHeCriticalErrorInfo OCTET STRING, - cpqHeCriticalErrorDesc DisplayString - } - - cpqHeCriticalErrorIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this critical error - description. The entries will be in order of occurrence - with the most recent entry first." - ::= { cpqHeCriticalErrorEntry 1 } - - cpqHeCriticalErrorStatus OBJECT-TYPE - SYNTAX INTEGER { - uncorrected(1), - corrected(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This value specifies if the user has marked this error as - corrected. Marking errors as corrected may be performed with - the Diagnostics or by a set operation on this variable. - Attempting to set this variable to uncorrected(1) will fail." - ::= { cpqHeCriticalErrorEntry 2 } - - cpqHeCriticalErrorType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - empty(2), - nonCorrectableMemErr(3), - busMasterTimeoutNmi(4), - commandBusTimeoutNmi(5), - ioCheckNmi(6), - refreshOverflowNmi(7), - cacheParityNmi(8), - processorParityNmi(9), - eisaHostMemReadHit(10), - processorFailure(11), - cautionTemperature(12), - postCriticalError(13), - criticalException(14), - serverManagerIfFail(15), - pentiumIperr(16), - pentiumAperr(17), - pentiumIeerr(18), - pentiumApcheck(19), - cpuLocalError(20), - failsafeTimer(21), - softwareNmi(22), - asrBaseMemoryParity(23), - asrExtendedMemParity(24), - asrResetLimit(25), - asrMemoryParity(26), - abend(27), - asrTestEvent(28), - asrTimeoutNmi(29), - fanFailure(30), - upsDetectedLineFail(31), - asrDetectedAtBoot(32), - redunPowerSupplyFailure(33), - pciBusParityError(34), - diagnosticError(35), - rtcChipBatteryFailure(36), - pentiumBerr(37), - dcConverterFailure(38), - cpuInternalThreshPassed(39) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the type of error." - ::= { cpqHeCriticalErrorEntry 3 } - - cpqHeCriticalErrorTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..3)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time of the error: hour (first five bits), day of month - (next 5 bits), month (next 4 bits), year of the current century - (next 7 bits). The last 3 bits are reserved." - ::= { cpqHeCriticalErrorEntry 4 } - - cpqHeCriticalErrorInfo OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Information about the error." - ::= { cpqHeCriticalErrorEntry 5 } - - cpqHeCriticalErrorDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the critical error." - ::= { cpqHeCriticalErrorEntry 6 } - --- **************************************************************************** --- Health MIB Correctable Memory Error Group --- ========================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeCorrectableMemory Group (1.3.6.1.4.1.232.6.2.3) --- --- The cpqHeCorrectableMemory group describes the health correctable memory --- error log. --- --- Implementation of the cpqHeCorrectableMemory group is mandatory for all --- agents that support the Server Health MIB on a system that has the --- correctable memory feature. --- --- **************************************************************************** - - cpqHeCorrMemLogStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - disabled(3), - enabled(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies whether this system is currently tracking - correctable memory errors." - ::= { cpqHeCorrectableMemory 1 } - - cpqHeCorrMemLogCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the correctable - memory error log feature." - ::= { cpqHeCorrectableMemory 2 } - - cpqHeCorrMemTotalErrs OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of correctable memory errors that have occurred." - ::= { cpqHeCorrectableMemory 3 } - --- **************************************************************************** --- Health MIB Correctable Memory Error Table --- ========================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeCorrectableMemory Group (1.3.6.1.4.1.232.6.2.3) --- cpqHeCorrMemErrTable (1.3.6.1.4.1.232.6.2.3.4) --- --- **************************************************************************** - - cpqHeCorrMemErrTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeCorrMemErrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of correctable memory error descriptions." - ::= { cpqHeCorrectableMemory 4 } - - cpqHeCorrMemErrEntry OBJECT-TYPE - SYNTAX CpqHeCorrMemErrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A correctable memory error description." - INDEX { cpqHeCorrMemErrIndex } - ::= { cpqHeCorrMemErrTable 1 } - - CpqHeCorrMemErrEntry ::= SEQUENCE { - cpqHeCorrMemErrIndex INTEGER, - cpqHeCorrMemErrCount INTEGER, - cpqHeCorrMemErrTime OCTET STRING, - cpqHeCorrMemErrDdr OCTET STRING, - cpqHeCorrMemErrSyndrome OCTET STRING, - cpqHeCorrMemErrDesc DisplayString, - cpqHeCorrMemErrHwLocation DisplayString - } - - cpqHeCorrMemErrIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this correctable memory error - description. The entries will be in order of occurrence with the - most recent new entry first." - ::= { cpqHeCorrMemErrEntry 1 } - - cpqHeCorrMemErrCount OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of times this memory location has had a correctable - memory error. The value zero (0) indicates that the user has - marked this error as corrected. Marking errors as corrected may - be performed with the Diagnostics or with a set operation - of 0 on this variable. Any non-zero valued set operation will - fail." - ::= { cpqHeCorrMemErrEntry 2 } - - cpqHeCorrMemErrTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..3)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time of the error: hour (first five bits), day of month - (next 5 bits), month (next 4 bits), year of the current century - (next 7 bits). The last 3 bits are reserved." - ::= { cpqHeCorrMemErrEntry 3 } - - cpqHeCorrMemErrDdr OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The data destination register value. - - This contains information about the memory bank in which the - error occurred. The interpretation of this value is dependent - on the machine type." - ::= { cpqHeCorrMemErrEntry 4 } - - cpqHeCorrMemErrSyndrome OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory syndrome value. - - This contains information about the memory module in which the - error occurred. The interpretation of this value is dependant - on the machine type." - ::= { cpqHeCorrMemErrEntry 5 } - - cpqHeCorrMemErrDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the correctable memory error." - ::= { cpqHeCorrMemErrEntry 6 } - - cpqHeCorrMemErrHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the correctable memory error. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeCorrMemErrEntry 7 } - - cpqHeCorrMemErrorCntThresh OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The error threshold for Correctable memory errors. When - cpqHeCorrMemErrCount is greater than or equal to this value - user action is required to replace the failing memory module." - ::= { cpqHeCorrectableMemory 5 } - --- **************************************************************************** --- Health MIB Automatic Server Recovery (ASR) Group --- ================================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeAsr Group (1.3.6.1.4.1.232.6.2.5) --- --- The cpqHeAsr group describes the Automatic Server Recovery Health --- feature. --- --- Implementation of the cpqHeAsr group is mandatory for all agents that --- support the Server Health MIB on a system that supports the ASR feature. --- --- **************************************************************************** - - cpqHeAsrStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notAvailable(2), - disabled(3), - enabled(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Automatic Server Recovery feature status. - - If this object is currently other(1) or notAvailable(2) all - set operations will fail. Any attempt to set this object to - other(1) or notAvailable(2) by a management station will fail. - - Setting this object to disabled(3) or enabled(4) will disable - or enable the ASR feature. - - Setting this object to disabled(3) will disable the following - objects: - cpqHeAsrPagerStatus - cpqHeAsrDialInStatus - cpqHeAsrDialOutStatus" - ::= { cpqHeAsr 1 } - - cpqHeAsrMajorVersion OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The major version number of the Automatic Server Recovery - feature hardware." - ::= { cpqHeAsr 2 } - - cpqHeAsrMinorVersion OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minor version number of the Automatic Server Recovery - feature hardware." - ::= { cpqHeAsr 3 } - - cpqHeAsrTimeout OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time-out in minutes for the Automatic Server Recovery - feature hardware. If the variable is not supported, a value - of -1 will be returned." - ::= { cpqHeAsr 4 } - - cpqHeAsrBaseIo OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Automatic Server Recovery feature Base I/O address." - ::= { cpqHeAsr 5 } - - cpqHeAsrPost OBJECT-TYPE - SYNTAX INTEGER { - other(1), - failed(2), - ok(3) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Indicates if the Automatic Server Recovery timer passed - the server power-on self test." - ::= { cpqHeAsr 6 } - - cpqHeAsrReset OBJECT-TYPE - SYNTAX INTEGER { - other(1), - manualReset(2), - asrReset(3), - viewed-asrReset(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates if the previous reset was caused by the ASR - timer. An asrReset(3) condition may be changed with a - viewed-asrReset(4) set operation. This is only valid - if this variable's current value is asrReset(3). Setting - this variable to any other value than viewed-asrReset(4) - will fail." - ::= { cpqHeAsr 7 } - - cpqHeAsrReboot OBJECT-TYPE - SYNTAX INTEGER { - other(1), - bootOs(2), - bootUtilities(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates what software should be started when the server is - rebooted by the ASR feature. - - If this object is currently set to other(1), set operations - will fail. This object may not be set to other(1) by a - management station. - - Setting this object to bootOs(2) or bootUtilities(3) - will select the software to be started after an ASR reboot." - ::= { cpqHeAsr 8 } - - cpqHeAsrRebootLimit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of ASR timer reboots that should cause the server to - boot the firmware console and override the standard reboot - setting (cpqHeAsrReboot). If this value is 0 then no limit is - defined and the standard reboot option will always be used. If - the variable is not supported, a value of -1 will be returned." - ::= { cpqHeAsr 9 } - - cpqHeAsrRebootCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of ASR reboots that have occurred on this server - since the last manual reboot. Reboot count may be reset with - a zero valued set operation on this variable. Setting this - value to a non-zero value will fail. If the variable is not - supported, a value of -1 will be returned." - ::= { cpqHeAsr 10 } - - cpqHeAsrPagerStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of the ASR pager feature. - - If the current value of this object is not other(1), it may - be set to disabled(2) or enabled(3). Attempting a set operation - while the value is other(1) will fail. Attempting to set the - value to other(1) will fail. - - Setting this object to enabled(3) will enable the - cpqHeAsrStatus object." - ::= { cpqHeAsr 11 } - - cpqHeAsrPagerNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..60)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The pager number to be dialed after an ASR reboot." - ::= { cpqHeAsr 12 } - - cpqHeAsrCommPort OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The communication port to be used by the firmware pager and - console. The value zero (0) indicates this setting is undefined. - - If the current value of this object is zero (0) any - attempt to set this object from a management station - will fail. Any attempt to set this object to zero (0) - by a management station will fail. If the variable is not - supported, a value of -1 will be returned." - ::= { cpqHeAsr 13 } - - cpqHeAsrBaudRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The baud rate to be used by the firmware pager and console. - The value zero (0) indicates this setting is undefined. If the - variable is not supported, a value of -1 will be returned." - ::= { cpqHeAsr 14 } - - cpqHeAsrPagerMessage OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The 8 character pager message entered by the user." - ::= { cpqHeAsr 15 } - - cpqHeAsrBootFail OBJECT-TYPE - SYNTAX INTEGER { - other(1), - interrupt18(2) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The action to be taken if an ASR reboot failure occurs." - ::= { cpqHeAsr 16 } - - cpqHeAsrCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the ASR feature." - ::= { cpqHeAsr 17 } - - cpqHeAsrDialInStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of the ASR dial in feature. - - If the current value of this object is other(1) any attempt to - set this object from a management station will fail. Any - attempt to set this object to other(1) by a management station - will fail. - - Setting this object to enabled(3) will enable the - cpqHeAsrStatus object." - ::= { cpqHeAsr 18 } - - cpqHeAsrDialOutStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of the ASR dial out feature. - - If the current value of this object is other(1) any attempt to - set this object from a management station will fail. Any - attempt to set this object to other(1) by a management station - will fail. - - Setting this object to enabled(3) will enable the - cpqHeAsrStatus and the cpqHeAsrDialInStatus objects." - ::= { cpqHeAsr 19 } - - cpqHeAsrDialOutNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..60)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The phone number to be dialed for remote diagnostics if an ASR - reset occurs." - ::= { cpqHeAsr 20 } - - cpqHeAsrNetworkAccessStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of the ASR network access feature. - - If the current value of this object is other(1) any attempt to - set this object from a management station will fail. Any - attempt to set this object to other(1) by a management station - will fail." - ::= { cpqHeAsr 21 } - - cpqHeAsrPollTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "The poll time in seconds the ASR watchdog timer is being - refreshed periodically." - ::= { cpqHeAsr 22 } - - --- **************************************************************************** --- Health MIB Thermal Group --- ======================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) --- --- The cpqHeThermal group describes the status of the temperature and the --- fans that regulate the temperature. --- --- Implementation of the cpqHeThermal group is mandatory for all agents --- that support the Server Health MIB on a system that supports the thermal --- sensing features. --- --- **************************************************************************** - - cpqHeThermalCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the system's - thermal environment." - ::= { cpqHeThermal 1 } - - cpqHeThermalDegradedAction OBJECT-TYPE - SYNTAX INTEGER { - other(1), - continue(2), - shutdown(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The action to perform when the thermal condition is degraded. - - This value will be one of the following: - other(1) - This feature is not supported by this system or driver. - - continue(2) - The system should be allowed to continue. - - shutdown(3) - The system should be shutdown." - ::= { cpqHeThermal 2 } - - cpqHeThermalTempStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the system's temperature sensors: - - This value will be one of the following: - other(1) - Temp sensing is not supported by this system or driver. - - ok(2) - All temp sensors are within normal operating range. - - degraded(3) - A temp sensor is outside of normal operating range. - - failed(4) - A temp sensor detects a condition that could permanently - damage the system. - - The system will automatically shutdown if the failed(4) condition - results, so it is unlikely that this value will ever be returned - by the agent. If the cpqHeThermalDegradedAction is set to - shutdown(3) the system will be shutdown if the degraded(3) - condition occurs." - ::= { cpqHeThermal 3 } - - cpqHeThermalSystemFanStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the fan(s) in the system. - - This value will be one of the following: - other(1) - Fan status detection is not supported by this system or driver. - - ok(2) - All fans are operating properly. - - degraded(3) - A non-required fan is not operating properly. - - failed(4) - A required fan is not operating properly. - - If the cpqHeThermalDegradedAction is set to shutdown(3) the - system will be shutdown if the failed(4) condition occurs." - ::= { cpqHeThermal 4 } - - cpqHeThermalCpuFanStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the processor fan(s) in the system. - - This value will be one of the following: - other(1) - Fan status detection is not supported by this system or driver. - - ok(2) - All fans are operating properly. - - failed(4) - A fan is not operating properly. - - The system will be shutdown if the failed(4) condition occurs." - ::= { cpqHeThermal 5 } - --- **************************************************************************** --- Health MIB Thermal Fan Table --- ============================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) --- cpqHeThermalFanTable (1.3.6.1.4.1.232.6.2.6.6) --- --- **************************************************************************** - - cpqHeThermalFanTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeThermalFanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of fan descriptions." - ::= { cpqHeThermal 6 } - - cpqHeThermalFanEntry OBJECT-TYPE - SYNTAX CpqHeThermalFanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A fan description." - INDEX { cpqHeThermalFanIndex } - ::= { cpqHeThermalFanTable 1 } - - CpqHeThermalFanEntry ::= SEQUENCE { - cpqHeThermalFanIndex INTEGER, - cpqHeThermalFanRequired INTEGER, - cpqHeThermalFanPresent INTEGER, - cpqHeThermalFanCpuFan INTEGER, - cpqHeThermalFanStatus INTEGER, - cpqHeThermalFanHwLocation DisplayString, - cpqHeThermalFanCurrentSpeed INTEGER - } - - cpqHeThermalFanIndex OBJECT-TYPE - SYNTAX INTEGER (0..8) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this fan description." - ::= { cpqHeThermalFanEntry 1 } - - cpqHeThermalFanRequired OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonRequired(2), - required(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the fan described is required for proper - operation of the system." - ::= { cpqHeThermalFanEntry 2 } - - cpqHeThermalFanPresent OBJECT-TYPE - SYNTAX INTEGER { - other(1), - absent(2), - present(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the fan described is present in the system." - ::= { cpqHeThermalFanEntry 3 } - - cpqHeThermalFanCpuFan OBJECT-TYPE - SYNTAX INTEGER { - other(1), - systemFan(2), - cpuFan(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the described fan is intended specifically - to cool the CPU(s)." - ::= { cpqHeThermalFanEntry 4 } - - cpqHeThermalFanStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the fan described is operating properly. - - This value will be one of the following: - other(1) - Fan status detection is not supported by this system or driver. - - ok(2) - The fan is operating properly. - - failed(4) - The fan is not operating properly." - ::= { cpqHeThermalFanEntry 5 } - - cpqHeThermalFanHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the fan. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeThermalFanEntry 6 } - - cpqHeThermalFanCurrentSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The current speed of a fan in rpm - revolutions per minute." - ::= { cpqHeThermalFanEntry 7 } - - --- **************************************************************************** --- Health MIB Fault Tolerant Fan Table --- =================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) --- cpqHeFltTolFanTable (1.3.6.1.4.1.232.6.2.6.7) --- --- **************************************************************************** - - cpqHeFltTolFanTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeFltTolFanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Fault Tolerant Fan Entries." - ::= { cpqHeThermal 7 } - - cpqHeFltTolFanEntry OBJECT-TYPE - SYNTAX CpqHeFltTolFanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A Fault Tolerant Fan Entry." - INDEX { cpqHeFltTolFanChassis, cpqHeFltTolFanIndex } - ::= { cpqHeFltTolFanTable 1 } - - CpqHeFltTolFanEntry ::= SEQUENCE { - cpqHeFltTolFanChassis INTEGER, - cpqHeFltTolFanIndex INTEGER, - cpqHeFltTolFanLocale INTEGER, - cpqHeFltTolFanPresent INTEGER, - cpqHeFltTolFanType INTEGER, - cpqHeFltTolFanSpeed INTEGER, - cpqHeFltTolFanRedundant INTEGER, - cpqHeFltTolFanRedundantPartner INTEGER, - cpqHeFltTolFanCondition INTEGER, - cpqHeFltTolFanHotPlug INTEGER, - cpqHeFltTolFanHwLocation DisplayString, - cpqHeFltTolFanCurrentSpeed INTEGER - } - - cpqHeFltTolFanChassis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The System Chassis number." - ::= { cpqHeFltTolFanEntry 1 } - - cpqHeFltTolFanIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this fan description." - ::= { cpqHeFltTolFanEntry 2 } - - cpqHeFltTolFanLocale OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - system(3), - systemBoard(4), - ioBoard(5), - cpu(6), - memory(7), - storage(8), - removableMedia(9), - powerSupply(10), - ambient(11), - chassis(12), - bridgeCard(13), - managementBoard(14), - backplane(15), - networkSlot(16), - bladeSlot(17), - virtual(18) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the location of the fan in the system." - ::= { cpqHeFltTolFanEntry 3 } - - cpqHeFltTolFanPresent OBJECT-TYPE - SYNTAX INTEGER { - other(1), - absent(2), - present(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the fan described is present in the system." - ::= { cpqHeFltTolFanEntry 4 } - - cpqHeFltTolFanType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - tachOutput(2), - spinDetect(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the type of fan. - - other(1) - The type of fan could not be determined. - - tachOutput(2) - The fan can increase speed for greater cooling. Implies - spin detect. - - spinDetect(3) - The fan can detect when the fan stops spinning." - ::= { cpqHeFltTolFanEntry 5 } - - cpqHeFltTolFanSpeed OBJECT-TYPE - SYNTAX INTEGER { - other(1), - normal(2), - high(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the speed of the fan. This value will be set - if the fan type is tachOutput." - ::= { cpqHeFltTolFanEntry 6 } - - cpqHeFltTolFanRedundant OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notRedundant(2), - redundant(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the fan is in a redundant configuration." - ::= { cpqHeFltTolFanEntry 7 } - - cpqHeFltTolFanRedundantPartner OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the index of the redundant partner. A value - of zero will be used if there is no redundant partner." - ::= { cpqHeFltTolFanEntry 8 } - - cpqHeFltTolFanCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the fan. - - This value will be one of the following: - other(1) - Fan status detection is not supported by this system or driver. - - ok(2) - The fan is operating properly. - - degraded(3) - A redundant fan is not operating properly. - - failed(4) - A non-redundant fan is not operating properly." - ::= { cpqHeFltTolFanEntry 9 } - - cpqHeFltTolFanHotPlug OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonHotPluggable(2), - hotPluggable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates if the fan is capable of being removed and/or - inserted while the system is in an operational state. - - If the value is hotPluggable(3), the fan can be safely - removed if and only if the cpqHeFltTolFanRedundant - field is in a redundant(3) state. - - This value will be one of the following: - other(1) - The state could not be determined. - - nonHotPluggable(2) - The fan is not hot plug capable. - - hotPluggable(3) - The fan is hot plug capable and can be removed if - the system is operating in a redundant state. A fan - may be added to an empty fan bay." - ::= { cpqHeFltTolFanEntry 10 } - - cpqHeFltTolFanHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the fan. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeFltTolFanEntry 11 } - - cpqHeFltTolFanCurrentSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The current speed of a fan in rpm - revolutions per minute." - ::= { cpqHeFltTolFanEntry 12 } - - --- **************************************************************************** --- Health MIB Temperature Sensor Table --- =================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) --- cpqHeTemperatureTable (1.3.6.1.4.1.232.6.2.6.8) --- --- **************************************************************************** - - cpqHeTemperatureTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeTemperatureEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Temperature Sensor Entries." - ::= { cpqHeThermal 8 } - - cpqHeTemperatureEntry OBJECT-TYPE - SYNTAX CpqHeTemperatureEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A Temperature Sensor Entry." - INDEX { cpqHeTemperatureChassis, cpqHeTemperatureIndex } - ::= { cpqHeTemperatureTable 1 } - - CpqHeTemperatureEntry ::= SEQUENCE { - cpqHeTemperatureChassis INTEGER, - cpqHeTemperatureIndex INTEGER, - cpqHeTemperatureLocale INTEGER, - cpqHeTemperatureCelsius INTEGER, - cpqHeTemperatureThreshold INTEGER, - cpqHeTemperatureCondition INTEGER, - cpqHeTemperatureThresholdType INTEGER, - cpqHeTemperatureHwLocation DisplayString - } - - cpqHeTemperatureChassis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The System Chassis number." - ::= { cpqHeTemperatureEntry 1 } - - cpqHeTemperatureIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this temperature sensor - description." - ::= { cpqHeTemperatureEntry 2 } - - cpqHeTemperatureLocale OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - system(3), - systemBoard(4), - ioBoard(5), - cpu(6), - memory(7), - storage(8), - removableMedia(9), - powerSupply(10), - ambient(11), - chassis(12), - bridgeCard(13) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the location of the temperature sensor - present in the system." - ::= { cpqHeTemperatureEntry 3 } - - cpqHeTemperatureCelsius OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the current temperature sensor reading in degrees - celsius. - - If this value cannot be determined by software, then a value - of -99 will be returned." - ::= { cpqHeTemperatureEntry 4 } - - cpqHeTemperatureThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This is the shutdown threshold temperature sensor setting - in degrees celsius. This is the temperature in which the - sensor will be considered to be in a failed state thus - causing the system to be shutdown. - - If this value cannot be determined by software, then a value - of -99 will be returned. - - Only the Ambient zone type allows setting of the threshold - temperature." - ::= { cpqHeTemperatureEntry 5 } - - cpqHeTemperatureCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Temperature sensor condition. - - This value will be one of the following: - other(1) - Temperature could not be determined. - - ok(2) - The temperature sensor is within normal operating range. - - degraded(3) - The temperature sensor is outside of normal operating range. - - failed(4) - The temperature sensor detects a condition that could - permanently damage the system. - - The system will automatically shutdown if the failed(4) condition - results, so it is unlikely that this value will ever be returned - by the agent. If the cpqHeThermalDegradedAction is set to - shutdown(3) the system will be shutdown if the degraded(3) - condition occurs." - ::= { cpqHeTemperatureEntry 6 } - - cpqHeTemperatureThresholdType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - blowout(5), - caution(9), - critical(15), - noreaction(16) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the type of this instance of temperature - sensor. - - This value will be one of the following: - other(1) - Temperature threshold type could not be determined. - - blowout(5) - If a blowout(5) temperature sensor reaches its threshold, - the fan or fans in the area of the temperature sensor will - increase in speed in an attempt to reduce the temperature - before a caution or critical threshold is reached. - - caution(9) - If a caution(9) temperature sensor reaches its threshold, - the cpqHeTemperatureCondition will be set to degraded(3) - and the system will either continue or shutdown depending - on the setting of cpqHeThermalDegradedAction. - - critical(15) - If a critical(15) temperature sensor reaches its threshold, - the cpqHeTemperatureCondition will be set to failed(4) - and the system will shutdown. - - noreaction(16) - this value will be defined when a threshold value is zero and - system will not react on those sensor as those threshold - sensors are meant for display purpose only." - - ::= { cpqHeTemperatureEntry 7 } - - cpqHeTemperatureHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the temperature sensor. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeTemperatureEntry 8 } - --- **************************************************************************** --- Health MIB Post Message Group --- ============================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePostMsg Group (1.3.6.1.4.1.232.6.2.7) --- --- The cpqHePostMsg group contains a table of the non-critical POST --- errors that occurred during the last reboot. --- --- Implementation of the cpqHePostMsg group is mandatory for all agents --- that support the Server Health MIB on a system that supports the POST --- error recording feature. --- --- **************************************************************************** - - cpqHePostMsgCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the POST - error recording feature." - ::= { cpqHePostMsg 1 } - --- **************************************************************************** --- Health MIB Post Message Table --- ============================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePostMsg Group (1.3.6.1.4.1.232.6.2.7) --- cpqHePostMsgTable (1.3.6.1.4.1.232.6.2.7.2) --- --- This table may be empty if no errors occurred during POST. --- --- **************************************************************************** - - cpqHePostMsgTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHePostMsgEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of POST error message numbers." - ::= { cpqHePostMsg 2 } - - cpqHePostMsgEntry OBJECT-TYPE - SYNTAX CpqHePostMsgEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A POST error message number." - INDEX { cpqHePostMsgIndex } - ::= { cpqHePostMsgTable 1 } - - CpqHePostMsgEntry ::= SEQUENCE { - cpqHePostMsgIndex INTEGER, - cpqHePostMsgCode INTEGER, - cpqHePostMsgDesc DisplayString - } - - - cpqHePostMsgIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this POST error description." - ::= { cpqHePostMsgEntry 1 } - - cpqHePostMsgCode OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies POST message number for this error." - ::= { cpqHePostMsgEntry 2 } - - cpqHePostMsgDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This contains a text description of the POST error. - A string of length zero (0) will be returned if no description - is available." - ::= { cpqHePostMsgEntry 3 } - - cpqHePostMsgEv OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..8)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The EV used to store 8 non-critical POST error codes - for use with Quicktest, Utilities, and CIM. Setting - this variable with a zero length octet string will - clear this variable. All other set operations will - fail." - ::= { cpqHePostMsg 3 } - - --- **************************************************************************** --- Health MIB System Utilization Group --- =================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeSysUtil Group (1.3.6.1.4.1.232.6.2.8) --- --- The cpqHeSysUtil group contains measures of system utilization. --- This group includes long term utilization information like the total --- server up time since originally configured. This group also contains --- current operating utilization information such as the current EISA bus --- utilization. --- --- Implementation of the cpqHeSysUtil group is mandatory for all agents --- that support the Server Health MIB on a system that supports any system --- utilization features. --- --- **************************************************************************** - - cpqHeSysUtilLifeTime OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total time (in minutes) the system has been in full - operation (while the server health supporting software was - running)." - ::= { cpqHeSysUtil 1 } - - cpqHeSysUtilEisaBusMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA bus utilization as a percentage of the theoretical - maximum during the last minute. A value of -1 indicates that - this feature is not supported on this machine or is not - available." - ::= { cpqHeSysUtil 2 } - - cpqHeSysUtilEisaBusFiveMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA bus utilization as a percentage of the theoretical - maximum during the last five minutes. A value of -1 indicates - that this feature is not supported on this machine or is not - available." - ::= { cpqHeSysUtil 3 } - - cpqHeSysUtilEisaBusThirtyMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA bus utilization as a percentage of the theoretical - maximum during the last thirty minutes. A value of -1 - indicates that this feature is not supported on this machine - or is not available." - ::= { cpqHeSysUtil 4 } - - cpqHeSysUtilEisaBusHour OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA bus utilization as a percentage of the theoretical - maximum during the last hour. A value of -1 indicates that - this feature is not supported on this machine or is not - available." - ::= { cpqHeSysUtil 5 } - --- **************************************************************************** --- Health MIB PCI Utilization Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeSysUtil Group (1.3.6.1.4.1.232.6.2.8) --- cpqHeSysUtilPciTable (1.3.6.1.4.1.232.6.2.8.6) --- --- --- **************************************************************************** - - cpqHeSysUtilPciTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeSysUtilPciEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of PCI utilization numbers for a whole aggregate - PCI bus or a specific device on that bus." - ::= { cpqHeSysUtil 6 } - - cpqHeSysUtilPciEntry OBJECT-TYPE - SYNTAX CpqHeSysUtilPciEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "PCI utilization entry" - INDEX { cpqHeSysUtilPciIndex } - ::= { cpqHeSysUtilPciTable 1 } - - CpqHeSysUtilPciEntry ::= SEQUENCE { - cpqHeSysUtilPciIndex INTEGER, - cpqHeSysUtilPciBus INTEGER, - cpqHeSysUtilPciDevice INTEGER, - cpqHeSysUtilPciMin INTEGER, - cpqHeSysUtilPciFiveMin INTEGER, - cpqHeSysUtilPciThirtyMin INTEGER, - cpqHeSysUtilPciHour INTEGER, - cpqHeSysUtilPciHwLocation DisplayString - } - - cpqHeSysUtilPciIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique index into each PCI utilization table entry. " - ::= { cpqHeSysUtilPciEntry 1 } - - cpqHeSysUtilPciBus OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The PCI bus number for this set of utilization numbers. " - ::= { cpqHeSysUtilPciEntry 2 } - - cpqHeSysUtilPciDevice OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The PCI device number for this set of utilization numbers. - If this value is -1, the utilization reported is for the - aggregate of all devices on this PCI bus. " - ::= { cpqHeSysUtilPciEntry 3 } - - cpqHeSysUtilPciMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The utilization as a percentage of the theoretical - maximum during the last minute. A value of -1 indicates - that the utilization number is not available." - ::= { cpqHeSysUtilPciEntry 4 } - - cpqHeSysUtilPciFiveMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The utilization as a percentage of the theoretical - maximum during the last five minutes. A value of -1 - indicates that the utilization number is not available." - ::= { cpqHeSysUtilPciEntry 5 } - - cpqHeSysUtilPciThirtyMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The utilization as a percentage of the theoretical - maximum during the last thirty minutes. A value of -1 - indicates that the utilization number is not available." - ::= { cpqHeSysUtilPciEntry 6 } - - cpqHeSysUtilPciHour OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The utilization as a percentage of the theoretical - maximum during the last hour. A value of -1 indicates - that the utilization number is not available." - ::= { cpqHeSysUtilPciEntry 7 } - - cpqHeSysUtilPciHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the PCI drawer. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeSysUtilPciEntry 8 } - --- **************************************************************************** --- Health MIB Fault Tolerant Power Supply Group --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeFltTolPwrSupply Group (1.3.6.1.4.1.232.6.2.9) --- --- The cpqHeFltTolPwrSupply group contains management information about fault --- tolerant power supplies. --- --- Implementation of the cpqHeFltTolPwrSupply group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - cpqHeFltTolPwrSupplyCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the fault tolerant - power supply sub-system." - ::= { cpqHeFltTolPwrSupply 1 } - - cpqHeFltTolPwrSupplyStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - notInstalled(3), - installed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the status of the fault tolerant power - supply." - ::= { cpqHeFltTolPwrSupply 2 } - --- **************************************************************************** --- Health MIB Fault Tolerant Power Supply Table --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeFltTolPowerSupply Group (1.3.6.1.4.1.232.6.2.9) --- cpqHeFltTolPowerSupplyTable (1.3.6.1.4.1.232.6.2.9.3) --- --- **************************************************************************** - - cpqHeFltTolPowerSupplyTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeFltTolPowerSupplyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Power Supply Entries." - ::= { cpqHeFltTolPwrSupply 3 } - - cpqHeFltTolPowerSupplyEntry OBJECT-TYPE - SYNTAX CpqHeFltTolPowerSupplyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A Fault Tolerant Power Supply Entry." - INDEX { cpqHeFltTolPowerSupplyChassis, cpqHeFltTolPowerSupplyBay } - ::= { cpqHeFltTolPowerSupplyTable 1 } - - CpqHeFltTolPowerSupplyEntry ::= SEQUENCE { - cpqHeFltTolPowerSupplyChassis INTEGER, - cpqHeFltTolPowerSupplyBay INTEGER, - cpqHeFltTolPowerSupplyPresent INTEGER, - cpqHeFltTolPowerSupplyCondition INTEGER, - cpqHeFltTolPowerSupplyStatus INTEGER, - cpqHeFltTolPowerSupplyMainVoltage INTEGER, - cpqHeFltTolPowerSupplyCapacityUsed INTEGER, - cpqHeFltTolPowerSupplyCapacityMaximum INTEGER, - cpqHeFltTolPowerSupplyRedundant INTEGER, - cpqHeFltTolPowerSupplyModel DisplayString, - cpqHeFltTolPowerSupplySerialNumber DisplayString, - cpqHeFltTolPowerSupplyAutoRev OCTET STRING, - cpqHeFltTolPowerSupplyHotPlug INTEGER, - cpqHeFltTolPowerSupplyFirmwareRev DisplayString, - cpqHeFltTolPowerSupplyHwLocation DisplayString, - cpqHeFltTolPowerSupplySparePartNum DisplayString, - cpqHeFltTolPowerSupplyRedundantPartner INTEGER, - cpqHeFltTolPowerSupplyErrorCondition INTEGER - } - - cpqHeFltTolPowerSupplyChassis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system chassis number." - ::= { cpqHeFltTolPowerSupplyEntry 1 } - - cpqHeFltTolPowerSupplyBay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bay number to index within this chassis." - ::= { cpqHeFltTolPowerSupplyEntry 2 } - - cpqHeFltTolPowerSupplyPresent OBJECT-TYPE - SYNTAX INTEGER { - other(1), - absent(2), - present(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the power supply is present in the chassis." - ::= { cpqHeFltTolPowerSupplyEntry 3 } - - cpqHeFltTolPowerSupplyCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the power supply. - - This value will be one of the following: - - other(1) - The status could not be determined or not present. - - ok(2) - The power supply is operating normally. - - degraded(3) - A temperature sensor, fan or other power supply component is - outside of normal operating range. - - failed(4) - A power supply component detects a condition that could - permanently damage the system." - ::= { cpqHeFltTolPowerSupplyEntry 4 } - - cpqHeFltTolPowerSupplyStatus OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - generalFailure(2), - bistFailure(3), - fanFailure(4), - tempFailure(5), - interlockOpen(6), - epromFailed(7), - vrefFailed(8), - dacFailed(9), - ramTestFailed(10), - voltageChannelFailed(11), - orringdiodeFailed(12), - brownOut(13), - giveupOnStartup(14), - nvramInvalid(15), - calibrationTableInvalid(16), - noPowerInput(17) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the power supply." - ::= { cpqHeFltTolPowerSupplyEntry 5 } - - cpqHeFltTolPowerSupplyMainVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input main voltage of the power supply in volts." - ::= { cpqHeFltTolPowerSupplyEntry 6 } - - cpqHeFltTolPowerSupplyCapacityUsed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The currently used capacity of the power supply in watts." - ::= { cpqHeFltTolPowerSupplyEntry 7 } - - cpqHeFltTolPowerSupplyCapacityMaximum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum capacity of the power supply in watts." - ::= { cpqHeFltTolPowerSupplyEntry 8 } - - cpqHeFltTolPowerSupplyRedundant OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notRedundant(2), - redundant(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The redundancy state of the power supply. - - This value will be one of the following: - other(1) - The redundancy state could not be determined. - - notRedundant(2) - The power supply is not operating in a redundant state. - - redundant(3) - The power supply is operating in a redundant state." - ::= { cpqHeFltTolPowerSupplyEntry 9 } - - cpqHeFltTolPowerSupplyModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply model name." - ::= { cpqHeFltTolPowerSupplyEntry 10 } - - cpqHeFltTolPowerSupplySerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply serial number." - ::= { cpqHeFltTolPowerSupplyEntry 11 } - - cpqHeFltTolPowerSupplyAutoRev OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply auto revision number." - ::= { cpqHeFltTolPowerSupplyEntry 12 } - - cpqHeFltTolPowerSupplyHotPlug OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonHotPluggable(2), - hotPluggable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates if the power supply is capable of being - removed and/or inserted while the system is in an operational - state. - - If the value is hotPluggable(3), the power supply can be safely - removed if and only if the cpqHeFltTolPowerSupplyRedundant - field is in a redundant(3) state. - - This value will be one of the following: - other(1) - The state could not be determined. - - nonHotPluggable(2) - The power supply is not hot plug capable. - - hotPluggable(3) - The power supply is hot plug capable and can be removed if - the system is operating in a redundant state. A power - supply may be added to an empty power supply bay." - ::= { cpqHeFltTolPowerSupplyEntry 13 } - - cpqHeFltTolPowerSupplyFirmwareRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply firmware revision. This field will be left - blank if the firmware revision is unknown." - ::= { cpqHeFltTolPowerSupplyEntry 14 } - - cpqHeFltTolPowerSupplyHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the power supply. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeFltTolPowerSupplyEntry 15 } - - cpqHeFltTolPowerSupplySparePartNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..80)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The power supply part number or spare part number." - ::= { cpqHeFltTolPowerSupplyEntry 16 } - - cpqHeFltTolPowerSupplyRedundantPartner OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies the index of the redundant partner. A value - of zero will be used if there is no redundant partner." - ::= { cpqHeFltTolPowerSupplyEntry 17 } - - cpqHeFltTolPowerSupplyErrorCondition OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - generalFailure(2), - overvoltage(3), - overcurrent(4), - overtemperature(5), - powerinputloss(6), - fanfailure(7), - vinhighwarning(8), - vinlowwarning(9), - vouthighwarning(10), - voutlowwarning(11), - inlettemphighwarning(12), - iinternaltemphighwarning(13), - vauxhighwarning(14), - vauxlowwarning(15), - powersupplymismatch(16), - goodinstandby(17) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Error condition of the power supply." - ::= { cpqHeFltTolPowerSupplyEntry 18 } - --- **************************************************************************** --- Health MIB Integrated Remote Console (IRC) Group --- ================================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeIRC Group (1.3.6.1.4.1.232.6.2.10) --- --- The cpqHeIRC group contains management information about the Integrated --- Remote Console ASIC. --- --- Implementation of the cpqHeIRC group is mandatory for all agents that --- support the Server Health MIB. --- --- **************************************************************************** - - cpqHeIRCStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - notavailable(2), - disabled(3), - enabled(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Integrated Remote Console. A value of notavailable - will be returned if this system does not contain IRC." - - ::= { cpqHeIRC 1 } - --- **************************************************************************** --- Health MIB System Event Log Group --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeEventLog Group (1.3.6.1.4.1.232.6.2.11) --- --- The cpqHeEventLog group describes the health system event log. --- --- Implementation of the cpqHeEventLog group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - - cpqHeEventLogSupported OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - supported(3), - clear(4) -- Settable value to clear the log - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This value specifies if this system supports the Integrated - Management Log feature. - - An SNMP set of the value clear(4) will clear the System Event - Log of all entries." - ::= { cpqHeEventLog 1 } - - cpqHeEventLogCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the Integrated - Management Log feature." - ::= { cpqHeEventLog 2 } - --- **************************************************************************** --- Health MIB System Event Log Table --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeEventLog Group (1.3.6.1.4.1.232.6.2.11) --- cpqHeEventLogTable (1.3.6.1.4.1.232.6.2.11.3) --- --- **************************************************************************** - - cpqHeEventLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeEventLogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of System Event Log Entries." - ::= { cpqHeEventLog 3 } - - cpqHeEventLogEntry OBJECT-TYPE - SYNTAX CpqHeEventLogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A System Event Log Entry." - INDEX { cpqHeEventLogEntryNumber } - ::= { cpqHeEventLogTable 1 } - - CpqHeEventLogEntry ::= SEQUENCE { - cpqHeEventLogEntryNumber INTEGER, - cpqHeEventLogEntrySeverity INTEGER, - cpqHeEventLogEntryClass INTEGER, - cpqHeEventLogEntryCode INTEGER, - cpqHeEventLogEntryCount INTEGER, - cpqHeEventLogInitialTime OCTET STRING, - cpqHeEventLogUpdateTime OCTET STRING, - cpqHeEventLogErrorDesc DisplayString, - cpqHeEventLogFreeFormData OCTET STRING - } - - cpqHeEventLogEntryNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies this system event log - entry." - ::= { cpqHeEventLogEntry 1 } - - cpqHeEventLogEntrySeverity OBJECT-TYPE - SYNTAX INTEGER { - informational(2), -- informational with no action required - infoWithAlert(3), -- informational but with LCD alert message - repaired(6), -- corrective action taken - caution(9), -- non-fatal error condition - critical(15) -- component failure - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This value specifies the severity of the event log entry. - A caution or critical entry can have it's severity - lowered by setting this variable to the repaired state." - ::= { cpqHeEventLogEntry 2 } - - cpqHeEventLogEntryClass OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the event log entry class designation." - ::= { cpqHeEventLogEntry 3 } - - cpqHeEventLogEntryCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the event log entry code designation. - The meaning of this changes depending on the class." - ::= { cpqHeEventLogEntry 4 } - - cpqHeEventLogEntryCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the event log entry occurrence count. - This represents the number of times this event has occurred - starting from the initial time until the last modified time." - ::= { cpqHeEventLogEntry 5 } - - cpqHeEventLogInitialTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (6)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time stamp when the event log entry was first created. - - 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 - - The year field is set with the most significant octet first. - A value of 0 in the year indicates an unknown time stamp." - ::= { cpqHeEventLogEntry 6 } - - cpqHeEventLogUpdateTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (6)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time stamp when the event log entry was last modified. - - 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 - - The year field is set with the most significant octet first. - A value of 0 in the year indicates an unknown time stamp." - ::= { cpqHeEventLogEntry 7 } - - cpqHeEventLogErrorDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the event log entry." - ::= { cpqHeEventLogEntry 8 } - - cpqHeEventLogFreeFormData OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the free form data associated with a particular - event." - ::= { cpqHeEventLogEntry 9 } - --- **************************************************************************** --- Health MIB Management Display Group --- =================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeMgmtDisplay Group (1.3.6.1.4.1.232.6.2.12) --- --- **************************************************************************** - --- The cpqHeMgmtDisplay group maintains information about the Management --- Display device. --- --- Implementation of the cpqHeTrap group is mandatory for agents that --- support the Server Health MIB. - - cpqHeMgmtDisplayType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- Unknown device or could not be determined - none(2), -- No Management display device - imd4x16(3), -- IMD display (4 lines by 16 chars) - ocp1x16(4) -- Digital OCP display (1 line by 16 chars) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the type of Management Display device. - If a display device is available on the server, the type - will be set accordingly. If no device is present, the value - will be set to none(2)." - ::= { cpqHeMgmtDisplay 1 } - - cpqHeMgmtDisplayText OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The text to be written to the Management display device. - - If this item is read, it may not accurately reflect what - is currently displayed." - ::= { cpqHeMgmtDisplay 2 } - - cpqHeMgmtUID OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- Unknown device or could not be determined - none(2), -- No unit identifier device - ledOn(3), -- Unit identifier LED is On - ledOff(4), -- Unit identifier LED is Off - ledBlinking(5) -- Unit identifier LED is Blinking - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Unit Identifier LED. - - This value will be one of the following: - - other(1) - The state of the LED could not be determined. Setting the - LED state is not allowed. - - none(2) - The LED is not present. Setting LED state is not allowed. - - ledOn(3) - The LED is present and ON. The LED can be turned Off or Blinking - by setting the cpqHeMgmtUID to ledOff(4) or ledBlinking(5) respectively. - - ledOff(4) - The LED is present and OFF. The LED can be turned On or Blinking - by setting the cpqHeMgmtUID to ledOn(3) or ledBlinking(5) respectively. - - ledBlinking(5) - The LED is present and is Blinking. The LED can be turned On or Off - by setting the cpqHeMgmtUID to ledOn(3) or ledOff(4) respectively" - ::= { cpqHeMgmtDisplay 3 } - --- **************************************************************************** --- Health MIB Power Converter Group --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePowerConverter Group (1.3.6.1.4.1.232.6.2.13) --- --- The cpqHePowerConverter group describes the power converter modules --- in the system. --- --- Implementation of the cpqHePowerConverter group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - - cpqHePowerConverterSupported OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - supported(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies if this system supports reporting - power converter module information." - ::= { cpqHePowerConverter 1 } - - cpqHePowerConverterCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the power - converters modules in the system." - ::= { cpqHePowerConverter 2 } - --- **************************************************************************** --- Health MIB Power Converter Table --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePowerConverter Group (1.3.6.1.4.1.232.6.2.13) --- cpqHePowerConverterTable (1.3.6.1.4.1.232.6.2.13.3) --- --- **************************************************************************** - - cpqHePowerConverterTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHePowerConverterEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Power Converter Module Entries." - ::= { cpqHePowerConverter 3 } - - cpqHePowerConverterEntry OBJECT-TYPE - SYNTAX CpqHePowerConverterEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A Power Converter Module Entry." - INDEX { cpqHePwrConvChassis, cpqHePwrConvIndex } - ::= { cpqHePowerConverterTable 1 } - - CpqHePowerConverterEntry ::= SEQUENCE { - cpqHePwrConvChassis INTEGER, - cpqHePwrConvIndex INTEGER, - cpqHePwrConvPresent INTEGER, - cpqHePwrConvSlot INTEGER, - cpqHePwrConvSocket INTEGER, - cpqHePwrConvRedundant INTEGER, - cpqHePwrConvRedundantGroupId INTEGER, - cpqHePwrConvCondition INTEGER, - cpqHePwrConvHwLocation DisplayString - } - - cpqHePwrConvChassis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system chassis number containing the power converter - modules." - ::= { cpqHePowerConverterEntry 1 } - - cpqHePwrConvIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Power Converter Module number to index within the chassis." - ::= { cpqHePowerConverterEntry 2 } - - cpqHePwrConvPresent OBJECT-TYPE - SYNTAX INTEGER { - other(1), - absent(2), - present(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the Power Converter Module described is - present in the system." - ::= { cpqHePowerConverterEntry 3 } - - cpqHePwrConvSlot OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Power Converter Module slot number within the chassis." - ::= { cpqHePowerConverterEntry 4 } - - cpqHePwrConvSocket OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Power Converter Module socket number within the slot." - ::= { cpqHePowerConverterEntry 5 } - - cpqHePwrConvRedundant OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonRedundant(2), - redundant(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This specifies if the Power Converter Module is redundant." - ::= { cpqHePowerConverterEntry 6 } - - cpqHePwrConvRedundantGroupId OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Power Converter Module group id. A redundant set of - power converters will have the same group id." - ::= { cpqHePowerConverterEntry 7 } - - cpqHePwrConvCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Power Converter Module condition." - ::= { cpqHePowerConverterEntry 8 } - - cpqHePwrConvHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the power converter. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHePowerConverterEntry 9 } - --- **************************************************************************** --- Health MIB Advanced Memory Protection Group (formerly Resilient Memory) --- ======================================================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) --- --- The cpqHeResilientMemory group describes the Advanced Memory Protection --- sub-system in the server. --- --- Implementation of the cpqHeResilientMemory group is mandatory for all --- Server Agents that support the Server Health MIB. --- --- **************************************************************************** - - cpqHeResilientMemTypeActive OBJECT-TYPE - SYNTAX INTEGER { - other(1), - none(2), - onLineSpare(3), - mirrored(4), -- deprecated - advancedEcc(5), - mirroredSingleBoard(6), - mirroredDualBoard(7), - xor(8), - lockStep(9), - onLineSpareChannel(10), - onLineSpareRank(11), - mirroringIntrasocket(12), - mirroringIntersocket(13), - a3dc(14), - dimmECC(15) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the type of Advanced Memory Protection fault - tolerance currently active on the system. - - The following connection states are supported: - - other(1) - The Advanced Memory Protection fault tolerance cannot be - determined by the Management Agent. You may need to upgrade - your software. - - none(2) - This system is not configured for Advanced Memory Protection - fault tolerance or Advanced Memory Protection is not available - on this system. - - onLineSpare(3) - This system is configured for Online Spare Advanced Memory - Protection. - - mirrored(4) - This system is configured for Mirrored Advanced Memory - Protection. - - advancedECC(5) - This system is configured for the Advanced ECC type of - Advanced Memory Protection. - - mirroredSingleBoard(6) - This system is configured for Mirrored Advanced Memory - Protection within a single memory board. - - mirroredDualBoard(7) - This system is configured for Mirrored Advanced Memory - Protection within a dual memory board configuration. The - mirrored memory may be swapped with memory on the same - memory board or with memory on the second memory board. - - xor(8) - This system is configured for Advanced Memory Protection - using the XOR engine. - - lockStep(9) - This system is configured for LockStep type of - Advanced Memory Protection. - - onLineSpareChannel(10) - This system is configured for Online Spare Channel Advanced - Memory Protection. - - onLineSpareRank(11) - This system is configured for Online Spare Rank Advanced - Memory Protection. - - mirroringIntrasocket(12) - This system is configured for Mirrored Intrasocket Advanced - Memory Protection between memory of single processor or board. - - mirroringIntersocket(13) - This system is configured for Mirrored Intersocket Advanced - Memory Protection between memory of two processors or boards. - - a3dc(14) - This system is configured for HPE Fast Fault Tolerant Advanced Double Device Data Correction (A3DC) Memory Protection. - - dimmECC(15) - This system is protected by DIMM ECC only." - ::= { cpqHeResilientMemory 1 } - - cpqHeResilientMemTypeAvailable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the type of Advanced Memory Protection - Fault Tolerance available on the system. - - This is a collection of flags used to indicate the fault - Advanced Memory Protection options available. This integer - is a bitmap, with each bit indicating the availability of an - option. If the bit is set to 1, the option is available; - otherwise it is not. Multiple options are allowed. - - NOTE: bit 31 is the most significant bit, bit 0 is the least - significant. - - Bit 31-12: RESERVED (0) - Bit 11: A3DC - Bit 10: Mirroring Intersocket - Bit 9: Mirroring Intrasocket - Bit 8: Online Rank Spare - Bit 7: Online Channel Spare - Bit 6: LockStep - Bit 5: XOR - Bit 4: Mirrored Memory with dual memory boards - Bit 3: Mirrored Memory within a single memory board - Bit 2: Advanced ECC - Bit 1: Mirrored (deprecated) - Bit 0: Online Spare" - ::= { cpqHeResilientMemory 2 } - - cpqHeResilientMemStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notProtected(2), - protected(3), - degraded(4), - dimmEcc(5), - mirrorNoFaults(6), - mirrorWithFaults(7), - hotSpareNoFaults(8), - hotSpareWithFaults(9), - xorNoFaults(10), - xorWithFaults(11), - advancedEcc(12), - advancedEccWithFaults(13), - lockStep(14), - lockStepWithFaults(15), - a3dc(16), - a3dcWithFaults(17) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the current state of the Advanced - Memory Protection subsystem. - - The following states are supported: - - other(1) - The system does not support Advanced Memory Protection or the - status cannot be determined by the Management Agent. - - notProtected(2) - This system supports Advanced Memory Protection but the - feature is disabled. - - protected(3) - The system is protected by Advanced Memory Protection. - - degraded(4) - The system was protected, but the Advanced Memory - Protection feature has been engaged. - - dimmEcc(5) - The system is protected via DIMM ECC only. - - mirrorNoFaults(6) - The system is protected by Advanced Memory Protection in the - mirrored mode. No DIMM faults have been detected. - - mirrorWithFaults(7) - The system is protected by Advanced Memory Protection in the - mirrored mode. One or more DIMM faults have been detected. - - hotSpareNoFaults(8) - The system is protected by Advanced Memory Protection in the - hot spare mode. No DIMM faults have been detected. - - hotSpareWithFaults(9) - The system is protected by Advanced Memory Protection in the - hot spare mode. One or more DIMM faults have been detected. - - xorNoFaults(10) - The system is protected by Advanced Memory Protection in the - XOR memory mode. No DIMM faults have been detected. - - xorWithFaults(11) - The system is protected by Advanced Memory Protection in the - XOR memory mode. One or more DIMM faults have been detected. - - advancedEcc(12) - The system is protected by Advanced Memory Protection in the - Advanced ECC mode. - - advancedEccWithFaults(13) - The system is protected by Advanced Memory Protection in the - Advanced ECC mode. One or more DIMM faults have been detected. - - lockStep(14) - The system is protected by Advanced Memory Protection in the - Lock Step mode. - - localStepWithFaults(15) - The system is protected by Advanced Memory Protection in the - Lock Step mode. One or more DIMM faults have been detected. - - a3dc(16) - The system is protected by Advanced Memory Protection in the - A3DC mode. - - a3dcWithFaults(17) - The system is protected by Advanced Memory Protection in the - A3DC mode. One or more DIMM faults have been detected." - ::= { cpqHeResilientMemory 3 } - - cpqHeResilientMemCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the current condition of the Advanced - Memory Protection subsystem. - - The following states are supported: - - other(1) - The system does not support fault tolerant memory or the - state cannot be determined by the Management Agent. - - ok(2) - This system is operating normally. - - degraded(3) - The system is running in a degraded state because the - Advanced Memory Protection subsystem has been engaged." - ::= { cpqHeResilientMemory 4 } - - cpqHeResilientMemHotPlug OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonHotPluggable(2), - hotPluggable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the current condition of the Advanced - Memory Protection subsystem. - - The following states are supported: - - other(1) - The state could not be determined or the system does not - support Advanced Memory Protection. - - nonHotPluggable(2) - The memory board or cartridge is not hot plug capable. - - hotPluggable(3) - The memory board or cartridge is hot plug capable and can be - removed if the system is operating in a redundant state. A - memory board or cartridge may be added to an empty bay." - ::= { cpqHeResilientMemory 5 } - - cpqHeResilientMemOperatingSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the current operating speed of the Advanced - Memory Protection subsystem in MHz. - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResilientMemory 6 } - - cpqHeResilientMemOsMemSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the size of memory as seen by the Operating - System in MB (1 MB = 1048576 bytes). - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResilientMemory 7 } - - cpqHeResilientMemTotalMemSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the total size of memory including memory seen - by the Operating System and the memory used for spare, mirrored, or - RAID configurations in MB (1 MB = 1048576 bytes). - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResilientMemory 8 } - - cpqHeResilientMemRivState OBJECT-TYPE - SYNTAX INTEGER { - other(1), - inactive(2), - rebuilding(3), - initializing(4), - verifying(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the state of the Rebuild/Initialize/Verify - (RIV) engine of the Advanced Memory Protection sub-system. - - The following states are supported: - - other(1) - The system does not support Advanced Memory Protection or this - value cannot be determined, - - inactive(2) - The RIV engine is idle. - - rebuilding(3) - The RIV engine is rebuilding the XOR data. - - initializing(4) - The RIV engine is initializing memory. - - verifying(5) - The RIV engine is verifying memory integrity." - ::= { cpqHeResilientMemory 9 } - --- **************************************************************************** --- Health MIB Advanced Memory Protection Board Group --- ================================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) --- cpqHeResMemBoardTable (1.3.6.1.4.1.232.6.2.14.10) --- cpqHeResMemBoardEntry (1.3.6.1.4.1.232.6.2.14.10.1) --- --- **************************************************************************** - - cpqHeResMemBoardTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeResMemBoardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of memory board or cartridge descriptions in Advanced - Memory Protection systems." - ::= { cpqHeResilientMemory 10 } - - cpqHeResMemBoardEntry OBJECT-TYPE - SYNTAX CpqHeResMemBoardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A memory board or cartridge description." - INDEX { cpqHeResMemBoardSlotIndex } - ::= { cpqHeResMemBoardTable 1 } - - CpqHeResMemBoardEntry ::= SEQUENCE { - cpqHeResMemBoardSlotIndex INTEGER, - cpqHeResMemBoardOnlineStatus INTEGER, - cpqHeResMemBoardErrorStatus INTEGER, - cpqHeResMemBoardLocked INTEGER, - cpqHeResMemBoardNumSockets INTEGER, - cpqHeResMemBoardOsMemSize INTEGER, - cpqHeResMemBoardTotalMemSize INTEGER, - cpqHeResMemBoardCondition INTEGER, - cpqHeResMemBoardHotPlug INTEGER - } - - cpqHeResMemBoardSlotIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot in which the memory board or cartridge is installed." - ::= { cpqHeResMemBoardEntry 1 } - - cpqHeResMemBoardOnlineStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - present(2), - absent(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The online status of the Advanced Memory Protection board or - cartridge. - - The following status values are supported: - - other(1) - The value is unsupported or could not be determined. - - present(2) - The board or cartridge has memory and is currently online. - - absent(3) - The board or cartridge is missing or offline." - ::= { cpqHeResMemBoardEntry 2 } - - cpqHeResMemBoardErrorStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - noError(2), - dimmEccError(3), - unlockError(4), - configError(5), - busError(6), - powerError(7), - advancedEcc(8), - onlineSpare(9), - mirrored(10), - mirroredDimmError(11), - memoryRaid(12), - raidDimmError(13), - lockstep(14), - lockstepDimmError(15) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - - "The error status of the Advanced Memory Protection board or - cartridge. - - The following status values are supported: - - other(1) - The value is unsupported or could not be determined. - - noError(2) - The board or cartridge is configured and operating correctly. - - dimmEccError(3) - The board or cartridge has at least one DIMM ECC error. - - unlockError(4) - The board or cartridge is unlocked when it should not be. - Please insure the board of cartridge is locked. - - configError(5) - The board or cartridge has a bad memory configuration. - Please insure all memory modules are of the correct type, - speed, latency, etc. - - busError(6) - The board or cartridge has a memory bus error. - Please insure all memory modules are of the correct type, - speed, latency, etc. Also insure the cartridge is inserted - properly. - - powerError(7) - The board or cartridge has power error. - Please insure all memory modules are of the correct type, - speed, latency, etc. Also insure the cartridge is inserted - properly. - - advancedEcc(8), - The board or cartridge is configured for advanced Ecc mode. - - onlineSpare(9), - The board or cartridge is configured for Online Spare mode. - - mirrored(10), - The board or cartridge is configured for mirrored mode. - - mirroredDimmError(11), - The board or cartridge has a mirrored Dimm error. - - memoryRaid(12), - The board or cartridge is configured for memory raid mode. - - raidDimmError(13) - The board or cartridge has a raid Dimm error. - - lockstep(14) - The board or cartridge is configured for LockStep. - - lockstepDimmError(15) - The board or cartridge has a lockStep Dimm error." - ::= { cpqHeResMemBoardEntry 3 } - - cpqHeResMemBoardLocked OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unlocked(2), - locked(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The locked state of the Advanced Memory Protection board or - cartridge. - - The following status values are supported: - - other(1) - The value is unsupported or could not be determined. If the - system does not support hot plugging of the board or - cartridge, then this value will be returned. - - unlocked(2) - The board or cartridge is currently unlocked and may be - removed. - - locked(3) - The board or cartridge is currently locked and may not be - removed." - ::= { cpqHeResMemBoardEntry 4 } - - cpqHeResMemBoardNumSockets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of memory sockets for this memory board or - cartridge. - - If this value could not be determined, or if the board or - cartridge has been removed, this value will be -1." - ::= { cpqHeResMemBoardEntry 5 } - - cpqHeResMemBoardOsMemSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the size of memory for this board or - cartridge as seen by the Operating System in MB (1 MB = - 1048576 bytes). - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResMemBoardEntry 6 } - - cpqHeResMemBoardTotalMemSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the size of memory for this board or - cartridge including memory seen by the Operating System and - the memory used for spare, mirrored, or XOR configurations - in MB (1 MB = 1048576 bytes). - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResMemBoardEntry 7 } - - cpqHeResMemBoardCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the Advanced Memory - Protection memory board or cartridge. - - The following status values are supported: - - other(1): - The condition of this memory board or cartridge - could not be determined. - - ok(2): - The memory board or cartridge is operating normally. - - degraded(3): - The memory board or cartridge is in an error state. - Check for correct memory installation and that the - board has been inserted properly." - ::= { cpqHeResMemBoardEntry 8 } - - cpqHeResMemBoardHotPlug OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonHotPluggable(2), - hotPluggable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates if the memory board is capable of being - removed and/or inserted while the system is in an - operational state. - - The following states are supported: - - other(1) - The state could not be determined or the system does not - support Advanced Memory Protection. - - nonHotPluggable(2) - The memory board or cartridge is not hot plug capable. - - hotPluggable(3) - The memory board or cartridge is hot plug capable and can be - removed if the system is operating in a redundant state. A - memory board or cartridge may be added to an empty bay." - ::= { cpqHeResMemBoardEntry 9 } - --- **************************************************************************** --- Health MIB Advanced Memory Protection Memory Module Group --- ========================================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) --- cpqHeResMemModuleTable (1.3.6.1.4.1.232.6.2.14.11) --- cpqHeResMemModuleEntry (1.3.6.1.4.1.232.6.2.14.11.1) --- --- **************************************************************************** - - cpqHeResMemModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeResMemModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of memory module descriptions." - ::= { cpqHeResilientMemory 11 } - - cpqHeResMemModuleEntry OBJECT-TYPE - SYNTAX CpqHeResMemModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A memory module description." - INDEX { cpqHeResMemBoardIndex, cpqHeResMemModuleIndex } - ::= { cpqHeResMemModuleTable 1 } - - CpqHeResMemModuleEntry ::= SEQUENCE { - cpqHeResMemBoardIndex INTEGER, - cpqHeResMemModuleIndex INTEGER, - cpqHeResMemModuleSparePartNo DisplayString, - cpqHeResMemModuleStatus INTEGER, - cpqHeResMemModuleCondition INTEGER, - cpqHeResMemModuleSpd OCTET STRING - } - - cpqHeResMemBoardIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot in which the memory board or cartridge is installed. - - A value of 0 indicates memory installed directly on the - system board." - ::= { cpqHeResMemModuleEntry 1 } - - cpqHeResMemModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module number." - ::= { cpqHeResMemModuleEntry 2 } - - cpqHeResMemModuleSparePartNo OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module's manufacturer part number. - - This field will be a null (size 0) string if the manufacturer - part number is not available." - ::= { cpqHeResMemModuleEntry 3 } - - cpqHeResMemModuleStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notPresent(2), - present(3), - good(4), - add(5), - upgrade(6), - missing(7), - doesNotMatch(8), - notSupported(9), - badConfig(10), - degraded(11) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the correctable memory - errors for this memory module. - - The following status values are supported: - - other(1): - The status is unknown or could not be determined. - - notPresent(2): - The memory module is not present or is un-initialized. - - present(3): - The memory module is present but not in use. - - good(4): - The memory module is present and in use. The corrected - error threshold has not been exceeded. - - add(5): - The memory module has been added, but is not yet in use. - - upgraded(6): - The memory module has been upgraded, but the memory is not - yet in use. - - missing(7): - An expected memory module is missing. - - doesNotMatch(8): - The memory module does not match the other memory modules - within the bank. - - notSupported(9): - The memory module is not supported. - - badConfig(10): - The memory module violates the add/upgrade configuration - rules. - - degraded(11): - The memory module's correctable error count has exceeded - threshold." - ::= { cpqHeResMemModuleEntry 4 } - - cpqHeResMemModuleCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the correctable memory - errors for this memory module. - - The following status values are supported: - - other(1): - ECC is not supported on this memory module or the - condition could not be determined. - - ok(2): - The memory module is operating normally. - - degraded(3): - The memory module is correctable error count has exceeded - threshold or a configuration error has been detected." - ::= { cpqHeResMemModuleEntry 5 } - - cpqHeResMemModuleSpd OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..256)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the raw Serial Presence Detect information contained - in the memory module. - - If the SPD information is not available, this item will be empty." - ::= { cpqHeResMemModuleEntry 6 } - --- **************************************************************************** --- Health MIB Advanced Memory Protection Board Group --- ================================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) --- cpqHeResMem2BoardTable (1.3.6.1.4.1.232.6.2.14.12) --- cpqHeResMem2BoardEntry (1.3.6.1.4.1.232.6.2.14.12.1) --- --- **************************************************************************** - - cpqHeResMem2BoardTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeResMem2BoardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of memory board or cartridge descriptions in Advanced - Memory Protection systems." - ::= { cpqHeResilientMemory 12 } - - cpqHeResMem2BoardEntry OBJECT-TYPE - SYNTAX CpqHeResMem2BoardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A memory board or cartridge or CPU based Memory Board description." - INDEX { cpqHeResMem2BoardIndex } - ::= { cpqHeResMem2BoardTable 1 } - - CpqHeResMem2BoardEntry ::= SEQUENCE { - cpqHeResMem2BoardIndex INTEGER, - cpqHeResMem2BoardSlotNum INTEGER, - cpqHeResMem2BoardCpuNum INTEGER, - cpqHeResMem2BoardRiserNum INTEGER, - cpqHeResMem2BoardOnlineStatus INTEGER, - cpqHeResMem2BoardErrorStatus INTEGER, - cpqHeResMem2BoardLocked INTEGER, - cpqHeResMem2BoardNumSockets INTEGER, - cpqHeResMem2BoardOsMemSize INTEGER, - cpqHeResMem2BoardTotalMemSize INTEGER, - cpqHeResMem2BoardCondition INTEGER, - cpqHeResMem2BoardHotPlug INTEGER, - cpqHeResMem2BoardOperatingFrequency INTEGER, - cpqHeResMem2BoardOperatingVoltage INTEGER - } - - cpqHeResMem2BoardIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This will represent the unique memory board or cartridge or riser." - ::= { cpqHeResMem2BoardEntry 1 } - - - cpqHeResMem2BoardSlotNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot in which the memory board or cartridge is installed." - ::= { cpqHeResMem2BoardEntry 2 } - - cpqHeResMem2BoardCpuNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Processor Number to which the memory Riser belongs. Value 0 means memory is not CPU based." - ::= { cpqHeResMem2BoardEntry 3 } - - cpqHeResMem2BoardRiserNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Riser Number on the Processor." - ::= { cpqHeResMem2BoardEntry 4 } - - cpqHeResMem2BoardOnlineStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - present(2), - absent(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The online status of the Advanced Memory Protection board or - cartridge or riser. - - The following status values are supported: - - other(1) - The value is unsupported or could not be determined. - - present(2) - The board or cartridge or riser has memory and is currently online. - - absent(3) - The board or cartridge or riser is missing or offline." - ::= { cpqHeResMem2BoardEntry 5 } - - cpqHeResMem2BoardErrorStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - noError(2), - dimmEccError(3), - unlockError(4), - configError(5), - busError(6), - powerError(7), - advancedEcc(8), - onlineSpare(9), - mirrored(10), - mirroredDimmError(11), - memoryRaid(12), - raidDimmError(13), - lockStep(14), - lockStepError(15), - a3dc(16), - a3dcError(17) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The error status of the Advanced Memory Protection board or - Cartridge or riser. - - The following status values are supported: - - other(1) - The value is unsupported or could not be determined. - - noError(2) - The board or cartridge or riser is configured and operating correctly. - - dimmEccError(3) - The board or cartridge or riser has at least one DIMM ECC error. - - unlockError(4) - The board or cartridge or riser is unlocked when it should not be. - Please insure the board of cartridge is locked. - - configError(5) - The board or cartridge or riser has a bad memory configuration. - Please insure all memory modules are of the correct type, - speed, latency, etc. - - busError(6) - The board or cartridge or riser has a memory bus error. - Please insure all memory modules are of the correct type, - speed, latency, etc. Also insure the cartridge is inserted - properly. - - powerError(7) - The board or cartridge or riser has power error. - Please insure all memory modules are of the correct type, - speed, latency, etc. Also insure the cartridge is inserted - properly. - - advancedEcc(8) - The board or cartridge or riser is configured for advanced Ecc mode. - - onlineSpare(9) - The board or cartridge or riser is configured for Online Spare mode. - - mirrored(10) - The board or cartridge or riser is configured for mirrored mode. - - mirroredDimmError(11), - The board or cartridge or riser has a mirrored Dimm error. - - memoryRaid(12) - The board or cartridge or riser is configured for memory raid mode. - - raidDimmError(13) - The board or cartridge or riser has a raid Dimm error. - - lockStep(14), - The board or cartridge or riser is configured for lockStep mode. - - lockStepError(15) - The board or cartridge or riser has a lockStep Dimm error. - - a3dc(16) - The board or cartridge or riser is configured for A3DC mode. - - a3dcError(17) - The board or cartridge or riser has an A3DC Dimm error." - ::= { cpqHeResMem2BoardEntry 6 } - - cpqHeResMem2BoardLocked OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unlocked(2), - locked(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The locked state of the Advanced Memory Protection board or - Cartridge or riser. - - The following status values are supported: - - other(1) - The value is unsupported or could not be determined. If the - system does not support hot plugging of the board or - cartridge or riser, then this value will be returned. - - unlocked(2) - The board or cartridge or riser is currently unlocked and may be - removed. - - locked(3) - The board or cartridge or riser is currently locked and may not be - removed." - ::= { cpqHeResMem2BoardEntry 7 } - - cpqHeResMem2BoardNumSockets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of memory sockets for this memory board or - Cartridge or riser. - - If this value could not be determined, or if the board or - Cartridge or riser has been removed, this value will be -1." - ::= { cpqHeResMem2BoardEntry 8 } - - cpqHeResMem2BoardOsMemSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the size of memory for this board or - cartridge or riser as seen by the Operating System in MB (1 MB = - 1048576 bytes). - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResMem2BoardEntry 9 } - - cpqHeResMem2BoardTotalMemSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the size of memory for this board or - Cartridge or riser including memory seen by the Operating System and - the memory used for spare, mirrored, or XOR configurations - in MB (1 MB = 1048576 bytes). - - If this system does not support Advanced Memory Protection or this - value cannot be determined, then a value of 0 will be returned." - ::= { cpqHeResMem2BoardEntry 10 } - - cpqHeResMem2BoardCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the Advanced Memory - Protection memory board or cartridge or riser. - - The following status values are supported: - - other(1): - The condition of this memory board or cartridge or riser - could not be determined. - - ok(2): - The memory board or cartridge or riser is operating normally. - - degraded(3): - The memory board or cartridge or riser is in an error state. - Check for correct memory installation and that the - board has been inserted properly." - ::= { cpqHeResMem2BoardEntry 11 } - - cpqHeResMem2BoardHotPlug OBJECT-TYPE - SYNTAX INTEGER { - other(1), - nonHotPluggable(2), - hotPluggable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates if the memory board is capable of being - removed and/or inserted while the system is in an - operational state. - - The following states are supported: - - other(1) - The state could not be determined or the system does not - support Advanced Memory Protection. - - nonHotPluggable(2) - The memory board or cartridge or riser is not hot plug capable. - - hotPluggable(3) - The memory board or cartridge or riser is hot plug capable and can be - removed if the system is operating in a redundant state. A - memory board or cartridge or riser may be added to an empty bay." - ::= { cpqHeResMem2BoardEntry 12} - - cpqHeResMem2BoardOperatingFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the operational memory frequency for - this board or Cartridge or riser in MHz." - ::= { cpqHeResMem2BoardEntry 13 } - - cpqHeResMem2BoardOperatingVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the operational memory voltage for - this board or Cartridge or riser in millivolts." - ::= { cpqHeResMem2BoardEntry 14 } - --- **************************************************************************** --- Health MIB Advanced Memory Protection Memory Module Group --- ========================================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) --- cpqHeResMem2ModuleTable (1.3.6.1.4.1.232.6.2.14.13) --- cpqHeResMem2ModuleEntry (1.3.6.1.4.1.232.6.2.14.13.1) --- --- **************************************************************************** - - cpqHeResMem2ModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeResMem2ModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of memory module descriptions." - ::= { cpqHeResilientMemory 13 } - - cpqHeResMem2ModuleEntry OBJECT-TYPE - SYNTAX CpqHeResMem2ModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A memory module description." - INDEX { cpqHeResMem2Module } - ::= { cpqHeResMem2ModuleTable 1 } - - CpqHeResMem2ModuleEntry ::= SEQUENCE { - cpqHeResMem2Module INTEGER, - cpqHeResMem2BoardNum INTEGER, - cpqHeResMem2CpuNum INTEGER, - cpqHeResMem2RiserNum INTEGER, - cpqHeResMem2ModuleNum INTEGER, - cpqHeResMem2ModuleSize INTEGER, - cpqHeResMem2ModuleType INTEGER, - cpqHeResMem2ModuleTechnology INTEGER, - cpqHeResMem2ModuleManufacturer DisplayString, - cpqHeResMem2ModulePartNo DisplayString, - cpqHeResMem2ModuleDate OCTET STRING, - cpqHeResMem2ModuleSerialNo DisplayString, - cpqHeResMem2ModuleHwLocation DisplayString, - cpqHeResMem2ModuleFrequency INTEGER, - cpqHeResMem2ModuleCellTablePtr INTEGER, - cpqHeResMem2ModuleCellStatus INTEGER, - cpqHeResMem2ModulePartNoMfgr DisplayString, - cpqHeResMem2ModuleSerialNoMfgr DisplayString, - cpqHeResMem2ModuleStatus INTEGER, - cpqHeResMem2ModuleCondition INTEGER, - cpqHeResMem2ModuleSpd OCTET STRING, - cpqHeResMem2ModuleSmartMemory INTEGER, - cpqHeResMem2ModuleMinVoltage INTEGER, - cpqHeResMem2ModuleRanks INTEGER - } - - cpqHeResMem2Module OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This will represent the unique memory DIMM on - memory board or cartridge or riser. " - ::= { cpqHeResMem2ModuleEntry 1 } - - cpqHeResMem2BoardNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot in which the memory board or cartridge is installed. - - A value of 0 indicates memory installed directly on the - system board." - ::= { cpqHeResMem2ModuleEntry 2 } - - cpqHeResMem2CpuNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module CPU number. Value 0 means memory is not Processor based." - ::= { cpqHeResMem2ModuleEntry 3 } - - cpqHeResMem2RiserNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module rasier number." - ::= { cpqHeResMem2ModuleEntry 4 } - - cpqHeResMem2ModuleNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module number." - ::= { cpqHeResMem2ModuleEntry 5 } - - cpqHeResMem2ModuleSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Module memory size in kilobytes. A kilobyte of memory is - defined as 1024 bytes. - - A size of 0 indicates the module is not present." - ::= { cpqHeResMem2ModuleEntry 6 } - - cpqHeResMem2ModuleType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - board(2), - cpqSingleWidthModule(3), - cpqDoubleWidthModule(4), - simm(5), - pcmcia(6), - compaq-specific(7), - dimm(8), - smallOutlineDimm(9), - rimm(10), - srimm(11), - fb-dimm(12), - dimmddr(13), - dimmddr2(14), - dimmddr3(15), - dimmfbd2(16), - fb-dimmddr2(17), - fb-dimmddr3(18), - dimmddr4(19), - hpe-specific(20) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Type of memory module installed. The value other(1) will be - given if the type is not known. The value board(2) will be - given if the memory module is permanently mounted (not modular) - on a system board or memory expansion board." - ::= { cpqHeResMem2ModuleEntry 7 } - - cpqHeResMem2ModuleTechnology OBJECT-TYPE - SYNTAX INTEGER { - other(1), - fastPageMode(2), - edoPageMode(3), - burstEdoPageMode(4), - synchronous(5), - rdram(6), - rdimm(7), - udimm(8), - lrdimm(9), - nvdimm(10), - rnvdimm(11), - lrnvdimm(12), - pmm(13) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Technology type of memory module installed. The value other(1) - will be given if the technology is not known." - ::= { cpqHeResMem2ModuleEntry 8 } - - cpqHeResMem2ModuleManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module's manufacturer name. - - This field will be a null (size 0) string if the manufacturer - name is not available." - ::= { cpqHeResMem2ModuleEntry 9 } - - cpqHeResMem2ModulePartNo OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module's manufacturer part number. - - This field will be a null (size 0) string if the manufacturer - part number is not available." - ::= { cpqHeResMem2ModuleEntry 10 } - - cpqHeResMem2ModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module date of manufacture. - - 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 date of manufacture - is not available. The hour, minute, and second fields will - always be set to 0." - ::= { cpqHeResMem2ModuleEntry 11 } - - cpqHeResMem2ModuleSerialNo OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The memory module's serial number. - - This field will be a null (size 0) string if the serial number - is not available." - ::= { cpqHeResMem2ModuleEntry 12 } - - cpqHeResMem2ModuleHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the memory module. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHeResMem2ModuleEntry 13 } - - - cpqHeResMem2ModuleFrequency OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module maximum frequency in MHz. The value zero - (0) will be given if the module frequency cannot be determined." - ::= { cpqHeResMem2ModuleEntry 14 } - - cpqHeResMem2ModuleCellTablePtr OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS optional - DESCRIPTION - "Index for the cell in cpqSeCellTable where the memory board is - installed." - ::= { cpqHeResMem2ModuleEntry 15 } - - cpqHeResMem2ModuleCellStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - deconfigured(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This provides the current status for this memory module. - - The following status values are supported: - - other(1): - The memory module status is not available - - ok(2): - The memory module is active - - deconfigured(3): - The memory module is not ready" - ::= { cpqHeResMem2ModuleEntry 16 } - - - cpqHeResMem2ModulePartNoMfgr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The memory module's manufacturer's part number. - - This field will be a null (size 0) string if the manufacturer - part number is not available." - ::= { cpqHeResMem2ModuleEntry 17 } - - cpqHeResMem2ModuleSerialNoMfgr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The memory module's manufacturer's serial number. - - This field will be a null (size 0) string if the manufacturer - serial number is not available." - ::= { cpqHeResMem2ModuleEntry 18 } - - - cpqHeResMem2ModuleStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notPresent(2), - present(3), - good(4), - add(5), - upgrade(6), - missing(7), - doesNotMatch(8), - notSupported(9), - badConfig(10), - degraded(11), - spare(12), - partial(13), - configError(14), - trainingFailure(15) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the correctable memory - errors for this memory module. - - The following status values are supported: - - other(1): - The status is unknown or could not be determined. - - notPresent(2): - The memory module is not present or is un-initialized. - - present(3): - The memory module is present but not in use. - - good(4): - The memory module is present and in use. The corrected - error threshold has not been exceeded. - - add(5): - The memory module has been added, but is not yet in use. - - upgraded(6): - The memory module has been upgraded, but the memory is not - yet in use. - - missing(7): - An expected memory module is missing. - - doesNotMatch(8): - The memory module does not match the other memory modules - within the bank. - - notSupported(9): - The memory module is not supported. - - badConfig(10): - The memory module violates the add/upgrade configuration - rules. - - degraded(11): - The memory module's correctable error count has exceeded - threshold. - - spare(12): - The memory module is configured as a spare. - - partial(13): - The memory module is present and is partially in use." - - ::= { cpqHeResMem2ModuleEntry 19 } - - cpqHeResMem2ModuleCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - degradedModuleIndexUnknown(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the correctable memory - errors for this memory module. - - The following status values are supported: - - other(1): - ECC is not supported on this memory module or the - condition could not be determined. - - ok(2): - The memory module is operating normally. - - degraded(3): - The memory module is correctable error count has exceeded - threshold or a configuration error has been detected. - - degradedModuleIndexUnknown(4): - The correctable error count has exceeded threshold. - The module number not available." - ::= { cpqHeResMem2ModuleEntry 20 } - - cpqHeResMem2ModuleSpd OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..256)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the raw Serial Presence Detect information contained - in the memory module. - - If the SPD information is not available, this item will be empty. - NOTE: SPD information will not be available if cpqHeResMem2ModuleType is dimmddr4(19)." - ::= { cpqHeResMem2ModuleEntry 21 } - - cpqHeResMem2ModuleSmartMemory OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notHPSmartMemory(2), - isHPSmartMemory(3), - isHPStandardMemory(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates whether the DIMM slot is populated with HP Smart Memory or HP Standard Memory DIMM. - - The following values are supported: - - other(1): - HP SmartMemory not supported in this device. - - notHPSmartMemory(2): - HP SmartMemory is NOT installed in DIMM slot (includes - the case where the DIMM slot is not populated). - - isHPSmartMemory(3): - HP SmartMemory is installed in DIMM slot. - - isHPStandardMemory(4): - HP Standard Memory is installed in DIMM slot." - - ::= { cpqHeResMem2ModuleEntry 22 } - - cpqHeResMem2ModuleMinVoltage OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the minimum voltage needed for the module to - operate, in millivolts." - ::= { cpqHeResMem2ModuleEntry 23 } - - cpqHeResMem2ModuleRanks OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the number of physical ranks on the module." - ::= { cpqHeResMem2ModuleEntry 24 } - - --- **************************************************************************** --- Health MIB Power Meter Group --- ======================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePowerMeter Group (1.3.6.1.4.1.232.6.2.15) --- --- The cpqHePowerMeter group describes the Server's power consumption read --- --- --- Implementation of the cpqHePowerMeter group is mandatory for all --- platform that support Power Meter. --- --- **************************************************************************** - - cpqHePowerMeterSupport OBJECT-TYPE - SYNTAX INTEGER { - other(1), - supported(2), - unsupported(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies whether Power Meter is supported - by this Server . - - The following values are supported: - - other(1) - Could not read the Power Meter status. - - supported(2) - This system support Power Meter. - - unsupported(3) - This system does not support Power Meter." - ::= { cpqHePowerMeter 1} - - - cpqHePowerMeterStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - present(2), - absent(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies whether Power Meter reading is supported - by this Server . - - The following values are supported: - - other(1) - Could not read the Power Meter status. - - present(2) - The Power Meter data is available. - - absent(3) - The Power Meter data is not available at this time." - ::= { cpqHePowerMeter 2} - - - cpqHePowerMeterCurrReading OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " This is the current Power Meter reading in Watts. - This value shows the most recent power reading if available. - On systems without Power Meter support, this value will be -1." - ::= { cpqHePowerMeter 3 } - - cpqHePowerMeterPrevReading OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " This is the previous Power Meter reading in Watts. - This value shows previous power reading if available. - On systems without Power Meter support, this value will be -1." - ::= { cpqHePowerMeter 4 } - ---***************************************************************************** --- Health MIB Hardware BIOS Group --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeHWBios Group (1.3.6.1.4.1.232.6.2.16) --- --- The cpqHeHWBios group describes the Server's Hardware BIOS information --- --- --- **************************************************************************** - - cpqHeHWBiosCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates an error has been detected during Pre-OS Test (POST) or - during initial hardware initialization. Typically, this will be a hardware interlock - not closed due to an adapter or cable not properly seated in the slot. The first - action is to review the iLO Event Log and iLO Integrated Management Log (IML) - for a new event. If no entries found, the server will usually require a physical - inspection to identify the source of the issue by observing the external and - internal hardware status LEDs. - - - This value will be one of the following: - other(1) - There is no data available to support the cpqHeHWBiosCondition. - - ok(2) - The primary server hardware is operational. - - degraded(3) - A non-fatal condition detected. Review iLO Event and Integrated Management Logs. - - failed(4) - A fatal condition detected during POST or prior to hardware power on." - ::= { cpqHeHWBios 1 } - - --- **************************************************************************** --- Health MIB System Backup Battery Group --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeSysBackupBattery Group (1.3.6.1.4.1.232.6.2.17) --- --- The cpqHeSysBackupBattery group contains management information about --- HP Smart Storage Batteries. --- --- Implementation of the cpqHeSysBackupBattery group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - cpqHeSysBackupBatteryCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the battery - backup sub-system." - ::= { cpqHeSysBackupBattery 1 } - --- **************************************************************************** --- Health MIB System Battery Table --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeSysBackupBattery Group (1.3.6.1.4.1.232.6.2.17) --- cpqHeSysBattery Table (1.3.6.1.4.1.232.6.2.17.2) --- --- **************************************************************************** - - cpqHeSysBatteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeSysBatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of battery entries." - ::= { cpqHeSysBackupBattery 2} - - cpqHeSysBatteryEntry OBJECT-TYPE - SYNTAX CpqHeSysBatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A System Backup Battery Entry." - INDEX { cpqHeSysBatteryChassis, cpqHeSysBatteryIndex } - ::= { cpqHeSysBatteryTable 1 } - - CpqHeSysBatteryEntry ::= SEQUENCE { - cpqHeSysBatteryChassis INTEGER, - cpqHeSysBatteryIndex INTEGER, - cpqHeSysBatteryPresent INTEGER, - cpqHeSysBatteryCondition INTEGER, - cpqHeSysBatteryStatus INTEGER, - cpqHeSysBatteryCapacityMaximum INTEGER, - cpqHeSysBatteryProductName DisplayString, - cpqHeSysBatteryModel DisplayString, - cpqHeSysBatterySerialNumber DisplayString, - cpqHeSysBatteryFirmwareRev DisplayString, - cpqHeSysBatterySparePartNum DisplayString -} - - cpqHeSysBatteryChassis OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system chassis number." - ::= { cpqHeSysBatteryEntry 1 } - - cpqHeSysBatteryIndex OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery index number within this chassis." - ::= { cpqHeSysBatteryEntry 2 } - - cpqHeSysBatteryPresent OBJECT-TYPE - SYNTAX INTEGER { - other(1), - absent(2), - present(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the backup battery is present in the chassis." - ::= { cpqHeSysBatteryEntry 3 } - - cpqHeSysBatteryCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the backup battery. - - This value will be one of the following: - - other(1) - The status could not be determined or not present. - - ok(2) - The battery is operating normally. - - degraded(3) - The battery is degraded. - - failed(4) - The battery has stopped responding or has shutdown - in order to not permanently damage the system." - ::= { cpqHeSysBatteryEntry 4 } - - cpqHeSysBatteryStatus OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - generalFailure(2), - shutdownHighResistance(3), - shutdownLowVoltage(4), - shutdownShortCircuit(5), - shutdownChargeTimeout(6), - shutdownOverTemperature(7), - shutdownDischargeMinVoltage(8), - shutdownDischargeCurrent(9), - shutdownLoadCountHigh(10), - shutdownEnablePin(11), - shutdownOverCurrent(12), - shutdownPermanentFailure(13), - shutdownBackupTimeExceeded(14), - predictiveFailure(15) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the battery." - ::= { cpqHeSysBatteryEntry 5 } - - cpqHeSysBatteryCapacityMaximum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum capacity of the battery in watts." - ::= { cpqHeSysBatteryEntry 6 } - - cpqHeSysBatteryProductName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery product name." - ::= { cpqHeSysBatteryEntry 7 } - - cpqHeSysBatteryModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery model name." - ::= { cpqHeSysBatteryEntry 8 } - - cpqHeSysBatterySerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery serial number." - ::= { cpqHeSysBatteryEntry 9 } - - cpqHeSysBatteryFirmwareRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery firmware revision. This field will be left - blank if the firmware revision is unknown." - ::= { cpqHeSysBatteryEntry 10 } - - cpqHeSysBatterySparePartNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The battery part number or spare part number." - ::= { cpqHeSysBatteryEntry 11 } - --- **************************************************************************** --- Health MIB System Fru details Group --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeSysPwrAllocation Group (1.3.6.1.4.1.232.6.2.18) --- --- The cpqHeSysPwrAllocation group contains information about --- the Power Allocation Optimization status. --- --- **************************************************************************** - - cpqHeSysPwrAllocationOptimizeStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - failed(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies if server power throttle setting failed or not." - ::= { cpqHeSysPwrHw 1 } - - --- **************************************************************************** --- Health MIB System Fru details Group --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeSysBoardFru Group (1.3.6.1.4.1.232.6.2.19) --- --- The cpqHeSysBoardFru group contains information about --- the board fru or mezzanine card status. --- --- **************************************************************************** - - cpqHeSysBoardFruStatus OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is an array of status values representing the board fru status. - Octet Element Field - ======== ======= ========= - 0 0 Base board FRU - 1 1 Mezzanine Card 1 - 2 2 Mezzanine Card 2 - . - . - 16 16 Mezzanine Card 16 - . - n n Reserved - - - Status 0 - Not Present - 1 - OK - 2 - Read Error - 3 - Fru Format Error" - - ::= { cpqHeSysBoardFru 1 } - --- **************************************************************************** --- Critical Power Failure Group --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePowerFailure Group (1.3.6.1.4.1.232.6.2.20) --- --- Implementation of power failure support. --- **************************************************************************** - - cpqHePowerFailureSupported OBJECT-TYPE - SYNTAX INTEGER { - false (1), - true (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies whether this server supports power failure monitoring." - ::= { cpqHePowerFailure 1 } - - --- **************************************************************************** --- Critical Power Failure Fault Table --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHePowerFailure Group (1.3.6.1.4.1.232.6.2.20) --- cpqHePowerFailureTable (1.3.6.1.4.1.232.6.2.20.2) --- --- **************************************************************************** - - cpqHePowerFailureTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHePowerFailureTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Power Fault Entries." - ::= { cpqHePowerFailure 2 } - - - cpqHePowerFailureTableEntry OBJECT-TYPE - SYNTAX CpqHePowerFailureTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The server power failure details." - INDEX { cpqHePowerFailureIndex } - ::= { cpqHePowerFailureTable 1 } - - - - CpqHePowerFailureTableEntry ::= SEQUENCE { - cpqHePowerFailureIndex INTEGER, - cpqHePowerFailureStatus INTEGER, - cpqHePowerFailureDeviceID INTEGER, - cpqHePowerFailureArea INTEGER, - cpqHePowerFailureDeviceBitMap INTEGER, - cpqHePowerFailureGroupString DisplayString, - cpqHePowerFailureRepairSteps INTEGER, - cpqHePowerFailureType INTEGER - } - - cpqHePowerFailureIndex OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index uniquely identifies 1 of 16 areas on the system board." - ::= { cpqHePowerFailureTableEntry 1 } - - cpqHePowerFailureStatus OBJECT-TYPE - SYNTAX INTEGER { - ok(1), - failed(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of this table entry. - The value will be one of the following: - - ok(1) - There is no failed device in this area. - - failed(2) - A device has failed in this area." - - ::= { cpqHePowerFailureTableEntry 2 } - - - cpqHePowerFailureDeviceID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unique id of the failed power device on the system board." - - ::= { cpqHePowerFailureTableEntry 3 } - - cpqHePowerFailureArea OBJECT-TYPE - SYNTAX INTEGER { - systemBoard(1), - processor(2), - memory (3), - memoryBoard (4), - riserCardAssembly (5), - flexibleLOM (6), - flexibleSmartArray (7), - optIOPCIeSlots (8), - powerBackplane (9), - sasBackplane (10), - powerSupply (11), - mezzCard (12), - enclosure(13) - - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This field enumerates the area on the system board. - The value will be one of the following: - - systemBoard(1) - General - processor(2) - Processor - memory(3) - Memory - memoryBoard(4) - Memory Board - riserCardAssembly(5) - Riser Card Assembly - flexibleLOM(6) - Flexible LOM - flexibleSmartArray(7) - Flexible Smart Array - optIOPCIeSlots(8) - Opt IO PCIe Slots - powerBackplane(9) - Power Backplane - sasBackplane(10) - SAS Backplane - powerSupply(11) - Power Supply - mezzCard(12) - Mezzanine Card - enclosure(13) - Enclosure" - - ::= { cpqHePowerFailureTableEntry 4 } - - - cpqHePowerFailureDeviceBitMap OBJECT-TYPE - SYNTAX INTEGER (1..16) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hex representation of the device(s) within the specified area." - ::= { cpqHePowerFailureTableEntry 5 } - - cpqHePowerFailureGroupString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the device on the system board." - ::= { cpqHePowerFailureTableEntry 6 } - - cpqHePowerFailureRepairSteps OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - systemBoardRpMsg1(2), - processorRpMsg1(3), - memoryRpMsg1(4), - memoryBoardRpMsg1(5), - riserCardAssemblyRpMsg1(6), - flexibleLomRpMsg1(7), - flexibleSmartArrayRpMsg1(8), - optIOPCIeSlotsRpMsg1(9), - powerBackplaneRpMsg1(10), - sasBackplaneRpMsg1(11), - powerSupplyRpMsg1(12), - mezzCardRpMsg1(13), - enclosureRpMsg1(14) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recommended troubleshooting steps for a particular device error. - The value will be one of the following: - - noError(1) - No errors were detected at this time. - - systemBoardRpMsg1(2) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Restore the server to its base - configuration. Attempt to boot the server. (3)If error persists, capture the AHS - logs and contact your support representative for assistance. - - processorRpMsg1(3) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Processor - that has an issue. Attempt to boot the server. (3) Swap the faulty Processor with a - known good Processor. Attempt to boot the server. (4) If error persists, capture the AHS - logs and contact your support representative for assistance. - - - memoryRpMsg1(4) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall all DIMM's in - the memory channel group connected to the CPU that logged the error. Attempt to boot the - server. (3) Swap the first DIMM in the memory channel group with a known good DIMM. - Attempt to boot the server. If the server doesn't boot, repeat step 3 by swapping each - DIMM in the memory channel group, one DIMM at a time until the bad DIMM is found. - (4) If error persists, capture the AHS logs and contact your support representative for - assistance. - - - memoryBoardRpMsg1(5) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove the cartridge of the Memory - Board that logged the error. Open the cartridge and reseat the DIMM's. Attempt to boot - the server. (3) If error persists, capture the AHS logs and contact your support representative - for assistance. - - - riserCardAssemblyRpMsg1(6) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Riser Board - that has an issue. Attempt to boot the server. (3) Remove the Riser Board then attempt - to boot the server. (4) If error persists, capture the AHS logs and contact your support - representative for assistance. - - - flexibleLomRpMsg1(7) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Flexible - LOM that has an issue. Attempt to boot the server. (3) Remove the Flexible LOM then - attempt to boot the server. (4) If error persists, capture the AHS logs and contact your - support representative for assistance. - - - flexibleSmartArrayRpMsg1(8) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Flexible - Smart Array Controller that has an issue. Attempt to boot the server. (3) Remove the - Flexible Smart Array Controller then attempt to boot the server. (4) If error persists, capture - the AHS logs and contact your support representative for assistance. - - - optIOPCIeSlotsRpMsg1(9) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Option Card - that has an issue. Attempt to boot the server. (3) Remove all Option Cards from the system. - Attempt to boot the server. (4) If error persists, capture the AHS logs and contact your support - representative for assistance. - - - powerBackplaneRpMsg1(10) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove GPU power connects one at a time - in order to isolate the bad GPU card, each time attempt to boot the server. (3) If error persists, - capture the AHS logs and contact your support representative for assistance. - - - sasBackplaneRpMsg1(11) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall Storage - Blackplane that logged the error (including cables). Attempt to boot the server. - (3) If error persists, capture the AHS logs and contact your support representative for assistance. - - - powerSupplyRpMsg1(12) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Swap the first Power Supply with a - known good Power supply. Attempt to boot the server. (3) If error persists, capture the AHS - logs and contact your support representative for assistance. - - - mezzCardRpMsg1(13) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Mezzanine - Card that has an issue. Attempt to boot the server. (3) Remove the Mezzanine Card then - attempt to boot the server. (4) If error persists, capture the AHS logs and contact your - support representative for assistance. - - enclosureRpMsg1(14) - Try the following steps until the error no longer occurs: - (1) Remove AC power, then restore AC power. (2) Restore the enclosure to its base - configuration. Attempt to boot the server. (2) If error persists, capture the AHS logs - and contact your support representative for assistance." - - - ::= { cpqHePowerFailureTableEntry 7 } - - cpqHePowerFailureType OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - tempDeadly(2), - inputPowerLoss(3), - badFuse(4), - standby(5), - runtime(6), - powerOn(7), - generic(8), - cpuThermTrip(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Critical power failure that occurred. - The value will be one of the following: - - noError(1) - No error has occurred. - - tempDeadly(2) - The server was shut down because a temperature sensor was above the critical threshold. - - inputPowerLoss(3) - The server was shut down because the input power source was removed. - - badFuse(4) - The server was shut down because one or more fuses tripped. - - standby(5) - The server had a power fault that occurred while it was powered off. - - runtime(6) - The server was shut down due to a power fault that occurred while it was powered on. - - powerOn(7) - The server had a power fault while attempting to power on. - - generic(8) - The server had a power fault but the reason is unknown. - - cpuThermTrip(9) - The server was shut down because the CPU temperature sensor was above the allowed threshold. " - - ::= { cpqHePowerFailureTableEntry 8 } - - --- **************************************************************************** --- Critical Interlock Failure Group --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeInterlockFailure Group (1.3.6.1.4.1.232.6.2.21) --- --- Implementation of Interlock failure --- **************************************************************************** - - cpqHeInterlockFailureSupported OBJECT-TYPE - SYNTAX INTEGER { - false(1), - true(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies whether this server supports Interlock failure monitoring." - ::= { cpqHeInterlockFailure 1 } - - --- **************************************************************************** --- Critical Interlock Failure Fault Table --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeInterlockFailure Group (1.3.6.1.4.1.232.6.2.21) --- cpqHeInterlockFailureTable (1.3.6.1.4.1.232.6.2.21.2) --- **************************************************************************** - cpqHeInterlockFailureTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeInterlockFailureTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Interlock Table Entries." - ::= { cpqHeInterlockFailure 2 } - - cpqHeInterlockFailureTableEntry OBJECT-TYPE - SYNTAX CpqHeInterlockFailureTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Interlock failure details." - INDEX { cpqHeInterlockFailureIndex } - ::= { cpqHeInterlockFailureTable 1 } - - CpqHeInterlockFailureTableEntry ::= SEQUENCE { - cpqHeInterlockFailureIndex INTEGER, - cpqHeInterlockFailureStatus INTEGER, - cpqHeInterlockFailureDeviceID INTEGER, - cpqHeInterlockFailureArea INTEGER, - cpqHeInterlockFailureDeviceName DisplayString, - cpqHeInterlockFailureType INTEGER - } - - cpqHeInterlockFailureIndex OBJECT-TYPE - SYNTAX INTEGER (1..16) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index uniquely identifies 1 of 16 areas on the system board." - ::= { cpqHeInterlockFailureTableEntry 1 } - - cpqHeInterlockFailureStatus OBJECT-TYPE - SYNTAX INTEGER { - ok(1), - failed(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of this table entry. - The value will be one of the following: - - ok(1) - There are no missing devices in this area. - - failed(2) - A device is missing or improperly seated this area." - ::= { cpqHeInterlockFailureTableEntry 2 } - - - cpqHeInterlockFailureDeviceID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unique id of the missing or improperly seated device on the system board." - ::= { cpqHeInterlockFailureTableEntry 3 } - - cpqHeInterlockFailureArea OBJECT-TYPE - SYNTAX INTEGER { - systemBoard(1), - processor(2), - memory(3), - memoryBoard(4), - riserCardAssembly(5), - flexibleLOM(6), - flexibleSmartArray(7), - optIOPCIeSlots(8), - powerBackplane(9), - sasBackplane(10), - powerSupply(11), - mezzCard(12), - enclosure(13) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This field enumerates the area on the system board. - The value will be one of the following: - - systemBoard(1) - General - processor(2) - Processor - memory(3) - Memory - memoryBoard(4) - Memory Board - riserCardAssembly(5) - Riser Card Assembly - flexibleLOM(6) - Flexible LOM - flexibleSmartArray(7) - Flexible Smart Array - optIOPCIeSlots(8) - Opt IO PCIe Slots - powerBackplane(9) - Power Backplane - sasBackplane(10) - SAS Backplane - powerSupply(11) - Power Supply - mezzCard(12) - Mezzanine Card - enclosure(13) - Enclosure" - ::= { cpqHeInterlockFailureTableEntry 4 } - - cpqHeInterlockFailureDeviceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the missing or improperly seated device." - ::= { cpqHeInterlockFailureTableEntry 5 } - - cpqHeInterlockFailureType OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - standby(2), - runtime(3), - powerOn(4), - generic(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of critical Interlock failure that occurred. - The value will be one of the following: - - noError(1) - No error has occurred. - - standby(2) - The server had a power fault that occurred while it was powered off. - - runtime(3) - The server was shut down due to a power fault that occurred while it was powered on. - - powerOn(4) - The server had a power fault that occurred while attempting to power on. - - generic(5) - The server had a power fault but the reason is unknown. " - - ::= { cpqHeInterlockFailureTableEntry 6 } - --- **************************************************************************** --- Health MIB NVDIMM Group --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeNvdimm Group (1.3.6.1.4.1.232.6.2.22) --- --- The cpqHeNvdimm group contains management information about --- NVDIMM. --- --- Implementation of the cpqHeNvdimm group is mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - cpqHeNvdimmCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the NVDIMM - sub-system." - ::= { cpqHeNvdimm 1 } - - --- **************************************************************************** --- Health MIB NVDIMM Table --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeNvdimm Group (1.3.6.1.4.1.232.6.2.22) --- cpqHeNvdimm Table (1.3.6.1.4.1.232.6.2.22.2) --- --- **************************************************************************** - cpqHeNvdimmTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeNvdimmTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of NVDIMM entries." - ::= { cpqHeNvdimm 2} - - cpqHeNvdimmTableEntry OBJECT-TYPE - SYNTAX CpqHeNvdimmTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A NVDIMM Entry." - INDEX { cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - ::= { cpqHeNvdimmTable 1 } - - CpqHeNvdimmTableEntry ::= SEQUENCE { - cpqHeNvdimmDimmNum INTEGER, - cpqHeNvdimmProcessorNum INTEGER, - cpqHeNvdimmType INTEGER, - cpqHeNvdimmMemoryMedia INTEGER, - cpqHeNvdimmStatus INTEGER, - cpqHeNvdimmBackupStatus INTEGER, - cpqHeNvdimmRestoreStatus INTEGER, - cpqHeNvdimmEraseStatus INTEGER, - cpqHeNvdimmPredictedMediaLifePercent INTEGER, - cpqHeNvdimmPersistentRegionSizeLimitMiB INTEGER, - cpqHeNvdimmVolatileRegionSizeLimitMiB INTEGER, - cpqHeNvdimmPwrSource INTEGER, - cpqHeNvdimmFirmwareRev DisplayString, - cpqHeNvdimmMfrId DisplayString, - cpqHeNvdimmMfrLocation DisplayString, - cpqHeNvdimmMfrDate DisplayString, - cpqHeNvdimmSerialNumber DisplayString, - cpqHeNvdimmAssociatedNVMeDrive DisplayString, - cpqHeNvdimmAssociatedUPS DisplayString - } - - cpqHeNvdimmDimmNum OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "NVDIMM module number." - ::= { cpqHeNvdimmTableEntry 1 } - - cpqHeNvdimmProcessorNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module Processor number" - ::= { cpqHeNvdimmTableEntry 2 } - - cpqHeNvdimmType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - nvdimm-n(2), - nvdimm-f(3), - nvdimm-p(4), - nvdimm-logical(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "NVDIMM technologies." - ::= { cpqHeNvdimmTableEntry 3 } - - cpqHeNvdimmMemoryMedia OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - dram(2), - nand(3), - proprietary(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Memory media type." - ::= { cpqHeNvdimmTableEntry 4 } - - - cpqHeNvdimmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "BIT0: Init complete status - BIT1: Health status - BIT2: Backup power health status - BIT3: Backup enabled" - ::= { cpqHeNvdimmTableEntry 5 } - - cpqHeNvdimmBackupStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - inprogress(2), - complete(3), - error(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last Backup Operation Status" - ::= { cpqHeNvdimmTableEntry 6 } - - cpqHeNvdimmRestoreStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - inprogress(2), - complete(3), - error(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last Restore Operation Status" - ::= { cpqHeNvdimmTableEntry 7 } - - cpqHeNvdimmEraseStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - inprogress(2), - complete(3), - error(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last Erase Operation Status" - ::= { cpqHeNvdimmTableEntry 8 } - - cpqHeNvdimmPredictedMediaLifePercent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Predicated Media Life.(Applicable for only TYPE-N NVDIMM)" - ::= { cpqHeNvdimmTableEntry 9 } - - - cpqHeNvdimmPersistentRegionSizeLimitMiB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total size of persistent regions in MiB." - ::= { cpqHeNvdimmTableEntry 10 } - - cpqHeNvdimmVolatileRegionSizeLimitMiB OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total size of volatile regions in MiB." - ::= { cpqHeNvdimmTableEntry 11 } - - cpqHeNvdimmPwrSource OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - superCap(2), - aux(3), - systemBattery(4), - ups(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "NVDIMM backup power source." - ::= { cpqHeNvdimmTableEntry 12 } - - cpqHeNvdimmFirmwareRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The NVDIMM firmware revision. This field will be left - blank if the firmware revision is unknown." - ::= { cpqHeNvdimmTableEntry 13 } - - cpqHeNvdimmMfrId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Manufacturer Id." - ::= { cpqHeNvdimmTableEntry 14 } - - cpqHeNvdimmMfrLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Manufacturer Location." - ::= { cpqHeNvdimmTableEntry 15 } - - cpqHeNvdimmMfrDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Manufacture Date." - ::= { cpqHeNvdimmTableEntry 16 } - - cpqHeNvdimmSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Serial Number." - ::= { cpqHeNvdimmTableEntry 17 } - - cpqHeNvdimmAssociatedNVMeDrive OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Comma separated value representing associated NVMe drives.(Applicable only if cpqHeNvdimmType is Type-Logical(5))" - ::= { cpqHeNvdimmTableEntry 18 } - - cpqHeNvdimmAssociatedUPS OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..24)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Comma separated value represnting associated UPS.(Applicable only if cpqHeNvdimmType is Type-Logical(5))" - ::= { cpqHeNvdimmTableEntry 19 } - --- **************************************************************************** --- Health MIB BBU Group --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeBbu Group (1.3.6.1.4.1.232.6.2.23) --- --- The cpqHeBbu group contains management information about --- Battery Backup Unit. --- --- Implementation of the cpqHeBbu group is not mandatory for all --- agents that support the Server Health MIB. --- --- **************************************************************************** - cpqHeBbuCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the BBU - sub-system." - ::= { cpqHeBbu 1 } - --- **************************************************************************** --- Health MIB BBU Table --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) --- cpqHeBbu Group (1.3.6.1.4.1.232.6.2.23) --- cpqHeBbu Table (1.3.6.1.4.1.232.6.2.23.2) --- --- **************************************************************************** - cpqHeBbuTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeBbuEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Battery Backup Unit Entries." - ::= { cpqHeBbu 2 } - - cpqHeBbuEntry OBJECT-TYPE - SYNTAX CpqHeBbuEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A Battery Backup Unit Entry." - INDEX { cpqHeBbuChassis, cpqHeBbuBay } - ::= { cpqHeBbuTable 1 } - - CpqHeBbuEntry ::= SEQUENCE { - cpqHeBbuChassis INTEGER, - cpqHeBbuBay INTEGER, - cpqHeBbuStatus INTEGER, - cpqHeBbuTimeToCutoff INTEGER, - cpqHeBbuTimeToCharge INTEGER, - cpqHeBbuRatedCapacity INTEGER, - cpqHeBbuPresentCapacity INTEGER, - cpqHeBbuCutoffCapacity INTEGER, - cpqHeBbuCutoffSetPoint INTEGER, - cpqHeBbuChargePercentage INTEGER, - cpqHeBbuSerialNumber DisplayString, - cpqHeBbuMaxCapacityWatts INTEGER, - cpqHeBbuFirmware DisplayString, - cpqHeBbuChargeState INTEGER, - cpqHeBbuErrorCondition INTEGER - } - - cpqHeBbuChassis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system chassis number." - ::= { cpqHeBbuEntry 1 } - - cpqHeBbuBay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bay number to index within this chassis." - ::= { cpqHeBbuEntry 2 } - - cpqHeBbuStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - failure(3), - permanentFailure(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates status of the bbu. - - The following values are defined: - unknown(1) - Not able to determine the battery status - - ok(2) - Battery status is fine - - failure(3) - Battery general failure detected - - permanentFailure(4) - Battery needs to be replaced." - - ::= { cpqHeBbuEntry 3 } - - cpqHeBbuTimeToCutoff OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Run time (in seconds) available with the battery backup unit until cut off. This is detected only when battery is charging or discharging, otherwise set to 0." - ::= { cpqHeBbuEntry 4 } - - cpqHeBbuTimeToCharge OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Time required (in minutes) to fully charge the battery backup unit. This is detected only when battery is charging or discharging, otherwise set to 0." - ::= { cpqHeBbuEntry 5 } - - cpqHeBbuRatedCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Rated capacity (mAh) of the battery backup unit." - ::= { cpqHeBbuEntry 6 } - - cpqHeBbuPresentCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present capacity (mAh) of the battery backup unit." - ::= { cpqHeBbuEntry 7 } - - cpqHeBbuCutoffCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cutoff capacity (mAh) of the battery backup unit." - ::= { cpqHeBbuEntry 8 } - - cpqHeBbuCutoffSetPoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cutoff threshold (mAh) defined by firmware required to complete operations." - ::= { cpqHeBbuEntry 9 } - - cpqHeBbuChargePercentage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Percentage charge remaining for the battery backup unit." - ::= { cpqHeBbuEntry 10 } - - cpqHeBbuSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Serial number of the battery backup unit." - ::= { cpqHeBbuEntry 11 } - - cpqHeBbuMaxCapacityWatts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total capacity (in Watts) of the battery backup unit." - ::= { cpqHeBbuEntry 12 } - - cpqHeBbuFirmware OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware version of the battery backup unit." - ::= { cpqHeBbuEntry 13 } - - cpqHeBbuChargeState OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - discharging(2), - notCharging(3), - slowCharging(4), - standardCharging(5), - charged(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Charge state of the battery backup unit." - ::= { cpqHeBbuEntry 14 } - - cpqHeBbuErrorCondition OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - batteryFailure(2), - replaceBattery (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The error condition of the battery backup unit." - ::= { cpqHeBbuEntry 15 } --- **************************************************************************** --- HealthMIB Trap Group --- ===================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeTrap Group (1.3.6.1.4.1.232.6.3) (deprecated) --- --- The cpqHeTrap group maintains information about the number of traps --- issued from the health enterprise. The trap group also maintains a table --- of the last several traps issued. This table is intended to give a --- management application some recent status information immediately upon --- accessing the agent. --- --- Implementation of the cpqHeTrap group is optional for agents that --- support the Server Health MIB. --- --- **************************************************************************** - - cpqHeTrapPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of SNMP trap packets issued by the - Server Health agent." - ::= { cpqHeTrap 1 } - - cpqHeTrapLogMaxSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The maximum number of entries that will currently be kept in - the trap log. If the maximum size has been reached and a new - trap occurs the oldest trap will be removed." - ::= { cpqHeTrap 2 } - --- **************************************************************************** --- Health MIB Trap Log Table --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHealth Group (1.3.6.1.4.1.232.6) --- cpqHeTrap Group (1.3.6.1.4.1.232.6.3) --- cpqHeTrapLogTable (1.3.6.1.4.1.232.6.3.3) (deprecated) --- --- **************************************************************************** - - cpqHeTrapLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHeTrapLogEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "An ordered list of trap log entries (conceptually a queue). The - trap log entries will be kept in the order in which they were - generated with the most recent trap at index 1 and the oldest - trap entry at index trapLogMaxSize. If the maximum number of - entries has been reached and a new trap occurs the oldest trap - will be removed when the new trap is added so the trapMaxLogSize - is not exceeded." - ::= { cpqHeTrap 3 } - - cpqHeTrapLogEntry OBJECT-TYPE - SYNTAX CpqHeTrapLogEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a trap event." - INDEX { cpqHeTrapLogIndex } - ::= { cpqHeTrapLogTable 1 } - - CpqHeTrapLogEntry ::= SEQUENCE { - cpqHeTrapLogIndex INTEGER, - cpqHeTrapType INTEGER, - cpqHeTrapTime OCTET STRING - } - - cpqHeTrapLogIndex OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The value of this object uniquely identifies this trapLogEntry - at this time. The most recent trap will have an index of 1 and - the oldest trap will have an index of trapLogMaxSize. Because of - the queue-like nature of the trapLog this particular trap event's - index will change as new traps are issued." - ::= { cpqHeTrapLogEntry 1 } - - cpqHeTrapType OBJECT-TYPE - SYNTAX INTEGER { - cpqHeCorrectableMemoryError(1), - cpqHeCorrectableMemoryLogDisabled(2), - cpqHe2CorrectableMemoryError(6001), - cpqHe2CorrectableMemoryLogDisabled(6002), - cpqHeThermalTempFailed(6003), - cpqHeThermalTempDegraded(6004), - cpqHeThermalTempOk(6005), - cpqHeThermalSystemFanFailed(6006), - cpqHeThermalSystemFanDegraded(6007), - cpqHeThermalSystemFanOk(6008), - cpqHeThermalCpuFanFailed(6009), - cpqHeThermalCpuFanOk(6010), - cpqHeAsrConfirmation(6011), - cpqHeThermalConfirmation(6012), - cpqHePostError(6013) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The type of the trap event this entry describes. This - number refers to an entry in a list of traps enumerating the - possible traps the Server Health agent may issue." - ::= { cpqHeTrapLogEntry 2 } - - cpqHeTrapTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..6)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The time of the trap event that this entry describes. The time - is given in year (first octet), month, day of month, hour, - minute, second (last octet) order. The octets are in Binary - Coded Decimal (BCD)." - ::= { cpqHeTrapLogEntry 3 } - --- **************************************************************************** --- Health MIB Trap Definitions --- =========================== --- --- The SNMP trap messages must not be bigger than 484 octets (bytes). --- --- Trap support in an SNMP agent implementation is optional. An SNMP --- agent implementation may support all, some, or none of the traps. --- If traps are supported, The user should be provided with the option of --- disabling traps. --- ************************************************************************** - - cpqHeCorrectableMemoryError TRAP-TYPE - ENTERPRISE cpqHealth - VARIABLES { cpqHeCorrMemTotalErrs } - DESCRIPTION - "A correctable memory error occurred. - - The error has been corrected. The current number of correctable - memory errors is reported in the variable cpqHeCorrMemTotalErrs." - - --#TYPE "Correctable Memory Error Occurred (1)" - --#SUMMARY "Total correctable errors = %d." - --#ARGUMENTS {0} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - - ::= 1 - - cpqHeCorrectableMemoryLogDisabled TRAP-TYPE - ENTERPRISE cpqHealth - VARIABLES { cpqHeCorrMemLogStatus } - DESCRIPTION - "Correctable memory error tracking disabled. - - The frequency of errors is so high that the error tracking - logic has been temporarily disabled. The cpqHeCorrMemLogStatus - variable indicated the current tracking status." - - --#TYPE "Memory Error Tracking Disabled (2)" - --#SUMMARY "Too many memory errors - tracking now disabled." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - - ::= 2 - --- Trap definitions for Insight Manager version 2.00 and greater --- use the Compaq Enterprise (232) and have unique trap numbers between all --- of the MIBs. - - cpqHe2CorrectableMemoryError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqHeCorrMemTotalErrs } - DESCRIPTION - "A correctable memory error occurred. - - The error has been corrected. The current number of correctable - memory errors is reported in the variable cpqHeCorrMemTotalErrs." - - --#TYPE "Correctable Memory Error Occurred (6001)" - --#SUMMARY "Total correctable errors = %d." - --#ARGUMENTS {0} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - - - ::= 6001 - - cpqHe2CorrectableMemoryLogDisabled TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqHeCorrMemLogStatus } - DESCRIPTION - "Correctable memory error tracking disabled. - - The frequency of errors is so high that the error tracking - logic has been temporarily disabled. The cpqHeCorrMemLogStatus - variable indicated the current tracking status." - - --#TYPE "Memory Error Tracking Disabled (6002)" - --#SUMMARY "Too many memory errors - tracking now disabled." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - - ::= 6002 - - cpqHeThermalTempFailed TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The temperature status has been set to failed. - - The system will be shutdown due to this thermal condition." - - --#TYPE "Thermal Failure (6003)" - --#SUMMARY "System will be shutdown due to this thermal condition." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 6003 - - cpqHeThermalTempDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqHeThermalDegradedAction } - DESCRIPTION - "The temperature status has been set to degraded. - - The server's temperature is outside of the normal operating - range. The server will be shutdown if the - cpqHeThermalDegradedAction variable is set to shutdown(3)." - - --#TYPE "Thermal Status Degraded (6004)" - --#SUMMARY "Temperature out of range. Shutdown may occur." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 6004 - - cpqHeThermalTempOk TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The temperature status has been set to ok. - - The server's temperature has returned to the normal operating - range." - - --#TYPE "Temperature OK (6005)" - --#SUMMARY "Temperature has returned to normal range." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY THERMAL - - ::= 6005 - - cpqHeThermalSystemFanFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqHeThermalDegradedAction } - DESCRIPTION - "The system fan status has been set to failed. - - A required system fan is not operating normally. The system - will be shutdown if the cpqHeThermalDegradedAction variable - is set to shutdown(3)." - - --#TYPE "System Fan Failure (6006)" - --#SUMMARY "Required fan not operating normally. Shutdown may occur." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failed fan." - - ::= 6006 - - cpqHeThermalSystemFanDegraded TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The system fan status has been set to degraded. - - An optional system fan is not operating normally." - - --#TYPE "System Fan Degraded (6007)" - --#SUMMARY "An optional fan is not operating normally." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failing fan." - - ::= 6007 - - cpqHeThermalSystemFanOk TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The system fan status has been set to ok. - - Any previously non-operational system fans have returned to - normal operation." - - --#TYPE "System Fan OK (6008)" - --#SUMMARY "System fan has returned to normal operation." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY FAN - - ::= 6008 - - cpqHeThermalCpuFanFailed TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The CPU fan status has been set to failed. - - A processor fan is not operating normally. The server will be - shutdown." - - --#TYPE "CPU Fan Failure (6009)" - --#SUMMARY "CPU fan has failed. Server will be shutdown." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failed CPU fan." - - ::= 6009 - - cpqHeThermalCpuFanOk TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The CPU fan status has been set to ok. - - Any previously non-operational processor fans have returned - to normal operation." - - --#TYPE "CPU Fan OK (6010)" - --#SUMMARY "CPU fan is now OK." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY FAN - - ::= 6010 - - cpqHeAsrConfirmation TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The server is operational again. - - The server has previously been shutdown by the - Automatic Server Recovery (ASR) feature and has just - become operational again." - - --#TYPE "Server Operational (6011)" - --#SUMMARY "Server is operational again after ASR shutdown." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY ASR - --#LIFECYCLE - - ::= 6011 - - cpqHeThermalConfirmation TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The server is operational again. - - The server has previously been shutdown due to a thermal - anomaly on the server and has just become operational again." - - --#TYPE "Server Operational (6012)" - --#SUMMARY "Server is operational again after thermal shutdown." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY THERMAL - - ::= 6012 - - cpqHePostError TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "One or more POST errors occurred. - - Power On Self-Test (POST) errors occur during the server - restart process. " - - --#TYPE "POST Errors Occurred (6013)" - --#SUMMARY "Errors occurred during server restart." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY LOGS - --#ACTION "Refer to the Integrated Management Log for details on the Power on self-test error." - - ::= 6013 - - cpqHeFltTolPwrSupplyDegraded TRAP-TYPE - ENTERPRISE compaq - DESCRIPTION - "The fault tolerant power supply sub-system condition has been - set to degraded." - - --#TYPE "Server Power Supply Degraded (6014)" - --#SUMMARY "The server power supply status has become degraded." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check the system for a power supply failure. Replace the power supply." - - ::= 6014 - - - cpqHe3CorrectableMemoryError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeCorrMemTotalErrs } - DESCRIPTION - "A correctable memory error occurred. - - The error has been corrected. The current number of correctable - memory errors is reported in the variable cpqHeCorrMemTotalErrs." - - --#TYPE "Correctable Memory Error Occurred (6015)" - --#SUMMARY "Total correctable errors = %d." - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - - - ::= 6015 - - cpqHe3CorrectableMemoryLogDisabled TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeCorrMemLogStatus } - DESCRIPTION - "Correctable memory error tracking disabled. - - The frequency of errors is so high that the error tracking - logic has been temporarily disabled. The cpqHeCorrMemLogStatus - variable indicated the current tracking status." - - --#TYPE "Memory Error Tracking Disabled (6016)" - --#SUMMARY "Too many memory errors - tracking now disabled." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - - ::= 6016 - - cpqHe3ThermalTempFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The temperature status has been set to failed. - - The system will be shutdown due to this thermal condition." - - --#TYPE "Thermal Failure (6017)" - --#SUMMARY "System will be shutdown due to this thermal condition." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 6017 - - cpqHe3ThermalTempDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction } - DESCRIPTION - "The temperature status has been set to degraded. - - The server's temperature is outside of the normal operating - range. The server will be shutdown if the - cpqHeThermalDegradedAction variable is set to shutdown(3)." - - --#TYPE "Temperature Degraded (6018)" - --#SUMMARY "Temperature out of range. Shutdown may occur." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 6018 - - cpqHe3ThermalTempOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The temperature status has been set to ok. - - The server's temperature has returned to the normal operating - range." - - --#TYPE "Temperature OK (6019)" - --#SUMMARY "Temperature has returned to normal range." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY THERMAL - - ::= 6019 - - cpqHe3ThermalSystemFanFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction } - DESCRIPTION - "The system fan status has been set to failed. - - A required system fan is not operating normally. The system - will be shutdown if the cpqHeThermalDegradedAction variable - is set to shutdown(3)." - - --#TYPE "System Fan Failure (6020)" - --#SUMMARY "Required fan not operating normally. Shutdown may occur." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failed fan." - - ::= 6020 - - cpqHe3ThermalSystemFanDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The system fan status has been set to degraded. - - An optional system fan is not operating normally." - - --#TYPE "System Fan Degraded (6021)" - --#SUMMARY "An optional fan is not operating normally." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failing fan." - - ::= 6021 - - cpqHe3ThermalSystemFanOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The system fan status has been set to ok. - - Any previously non-operational system fans have returned to - normal operation." - - --#TYPE "System Fan OK (6022)" - --#SUMMARY "System fan has returned to normal operation." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY FAN - - ::= 6022 - - cpqHe3ThermalCpuFanFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The CPU fan status has been set to failed. - - A processor fan is not operating normally. The server will be - shutdown." - - --#TYPE "CPU Fan Failure (6023)" - --#SUMMARY "CPU fan has failed. Server will be shutdown." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failed CPU fan." - - ::= 6023 - - cpqHe3ThermalCpuFanOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The CPU fan status has been set to ok. - - Any previously non-operational processor fans have returned - to normal operation." - - --#TYPE "CPU Fan OK (6024)" - --#SUMMARY "CPU fan is now OK." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY FAN - - ::= 6024 - - cpqHe3AsrConfirmation TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The server is operational again. - - The server has previously been shutdown by the - Automatic Server Recovery (ASR) feature and has just - become operational again." - - --#TYPE "Server Operational (6025)" - --#SUMMARY "Server is operational again after ASR shutdown." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY ASR - --#LIFECYCLE - - ::= 6025 - - cpqHe3ThermalConfirmation TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The server is operational again. - - The server has previously been shutdown due to a thermal - anomaly on the server and has just become operational again." - - --#TYPE "Server Operational (6026)" - --#SUMMARY "Server is operational again after thermal shutdown." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY THERMAL - - ::= 6026 - - cpqHe3PostError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "One or more POST/UEFI errors occurred. - - Power On Self-Test (POST) errors occur during the server - restart process. UEFI errors occur during server boot time and run time. - Details of the POST/UEFI error messages can be found in Integrated Management Log." - - --#TYPE "POST Errors Occurred (6027)" - --#SUMMARY "Power On Self Test (POST)/UEFI errors occurred during server restart." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY LOGS - --#ACTION "Refer to the Integrated Management Log for details on the Power On Self Test (POST)/UEFI error." - ::= 6027 - - cpqHe3FltTolPwrSupplyDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The fault tolerant power supply sub-system condition has been - set to degraded." - - --#TYPE "Server Power Supply Degraded (6028)" - --#SUMMARY "The server power supply status has become degraded." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check the system for a power supply failure. Replace the power supply." - - ::= 6028 - --- Deprecated in 6.20 trap 6056 is the replacement - cpqHe3CorrMemReplaceMemModule TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "A correctable memory log entry indicates a memory module needs - to be replaced. - - The errors have been corrected, but the memory module should be - replaced. The error information is reported in the variable - cpqHeCorrMemErrDesc." - - --#TYPE "Corr Mem Errors Require a Replacement Memory Module. (6029)" - --#SUMMARY "Correctable memory errs require a replacement memory module." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the failing memory module." - - - ::= 6029 - - --- Deprecated in 5.10 - cpqHe3FltTolPowerSupplyDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay } - DESCRIPTION - "The fault tolerant power supply condition has been set - to degraded for the specified chassis and bay location." - - --#TYPE "Power Supply Degraded (6030)" - --#SUMMARY "The Power Supply Degraded on Chassis %d, Bay %d." - --#ARGUMENTS {2, 3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Replace the failing power supply." - - - ::= 6030 - --- Deprecated in 5.10 - cpqHe3FltTolPowerSupplyFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay } - DESCRIPTION - "The fault tolerant power supply condition has been set - to failed for the specified chassis and bay location." - - --#TYPE "Power Supply Failed (6031)" - --#SUMMARY "The Power Supply Failed on Chassis %d, Bay %d." - --#ARGUMENTS {2, 3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Replace the failed power supply." - - ::= 6031 - - cpqHe3FltTolPowerRedundancyLost TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis } - DESCRIPTION - "The Fault Tolerant Power Supplies have lost redundancy for - the specified chassis." - - --#TYPE "Power Redundancy Lost (6032)" - --#SUMMARY "The power supplies are no longer redundant on chassis %d." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check the system power supplies for a failure." - - ::= 6032 - - cpqHe3FltTolPowerSupplyInserted TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay } - DESCRIPTION - "A Fault Tolerant Power Supply has been inserted into the - specified chassis and bay location." - - --#TYPE "Power Supply Inserted (6033)" - --#SUMMARY "The power supply has been inserted on chassis %d, bay %d." - --#ARGUMENTS {2, 3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY POWER - --#LIFECYCLE - - ::= 6033 - - cpqHe3FltTolPowerSupplyRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay } - DESCRIPTION - "A Fault Tolerant Power Supply has been removed from the - specified chassis and bay location." - - --#TYPE "Power Supply Removed (6034)" - --#SUMMARY "The power supply has been removed on chassis %d, bay %d." - --#ARGUMENTS {2, 3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - --#LIFECYCLE - - ::= 6034 - - cpqHe3FltTolFanDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, - cpqHeFltTolFanIndex } - DESCRIPTION - "The Fault Tolerant Fan condition has been set to degraded - for the specified chassis and fan." - - --#TYPE "Fan Degraded (6035)" - --#SUMMARY "The fan degraded on chassis %d, fan %d." - --#ARGUMENTS {2, 3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failing fan." - - ::= 6035 - - cpqHe3FltTolFanFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, - cpqHeFltTolFanIndex } - DESCRIPTION - "The Fault Tolerant Fan condition has been set to failed - for the specified chassis and fan." - - --#TYPE "Fan Failed (6036)" - --#SUMMARY "The fan failed on chassis %d, fan %d." - --#ARGUMENTS {2, 3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY FAN - --#ACTION "Replace the failed fan." - - ::= 6036 - - cpqHe3FltTolFanRedundancyLost TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis } - DESCRIPTION - "The Fault Tolerant Fans have lost redundancy for the - specified chassis." - - --#TYPE "Fan Redundancy Lost (6037)" - --#SUMMARY "The fans are no longer redundant on chassis %d." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY FAN - --#ACTION "Check the system fans for a failure." - - ::= 6037 - - cpqHe3FltTolFanInserted TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, - cpqHeFltTolFanIndex } - DESCRIPTION - "A Fault Tolerant Fan has been inserted into the specified - chassis and fan location." - - --#TYPE "Fan Inserted (6038)" - --#SUMMARY "The fan has been inserted on chassis %d, fan %d." - --#ARGUMENTS {2, 3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY FAN - --#LIFECYCLE - - ::= 6038 - - cpqHe3FltTolFanRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, - cpqHeFltTolFanIndex } - DESCRIPTION - "A Fault Tolerant Fan has been removed from the specified - chassis and fan location." - - --#TYPE "Fan Removed (6039)" - --#SUMMARY "The fan has been removed on chassis %d, fan %d." - --#ARGUMENTS {2, 3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY FAN - --#LIFECYCLE - - ::= 6039 - - cpqHe3TemperatureFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeTemperatureChassis, - cpqHeTemperatureLocale } - DESCRIPTION - "The temperature status has been set to failed in the - specified chassis and location. - - The system will be shutdown due to this condition." - - --#TYPE "Thermal Failure (6040)" - --#SUMMARY "Temperature exceeded on chassis %d, location %d." - --#ARGUMENTS {2, 3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 6040 - - cpqHe3TemperatureDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction, - cpqHeTemperatureChassis, cpqHeTemperatureLocale } - DESCRIPTION - "The temperature status has been set to degraded in the - specified chassis and location. - - The server's temperature is outside of the normal operating - range. The server will be shutdown if the - cpqHeThermalDegradedAction variable is set to shutdown(3)." - - --#TYPE "Thermal Status Degraded (6041)" - --#SUMMARY "Temperature out of range on chassis %d, location %d. Shutdown may occur." - --#ARGUMENTS {3, 4} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 6041 - - cpqHe3TemperatureOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeTemperatureChassis, - cpqHeTemperatureLocale } - DESCRIPTION - "The temperature status has been set to ok in the - specified chassis and location. - - The server's temperature has returned to the normal operating - range." - - --#TYPE "Thermal Status OK (6042)" - --#SUMMARY "Temperature normal on chassis %d, location %d." - --#ARGUMENTS {2, 3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY THERMAL - - ::= 6042 - - cpqHe3PowerConverterDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis, - cpqHePwrConvSlot, cpqHePwrConvSocket } - DESCRIPTION - "The DC-DC Power Converter condition has been set to degraded - for the specified chassis, slot and socket." - - --#TYPE "Power Converter Degraded (6043)" - --#SUMMARY "The power converter degraded on chassis %d, slot %d, socket %d." - --#ARGUMENTS {2, 3, 4} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check for a failing power converter or for a failed power converter in a redundant pair. Replace the power converter." - - - ::= 6043 - - cpqHe3PowerConverterFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis, - cpqHePwrConvSlot, cpqHePwrConvSocket } - DESCRIPTION - "The DC-DC Power Converter condition has been set to failed - for the specified chassis, slot and socket." - - --#TYPE "Power Converter Failed (6044)" - --#SUMMARY "The power converter failed on chassis %d, slot %d, socket %d." - --#ARGUMENTS {2, 3, 4} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Replace the failed power converter." - - ::= 6044 - - cpqHe3PowerConverterRedundancyLost TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis } - DESCRIPTION - "The DC-DC Power Converters have lost redundancy for the - specified chassis." - - --#TYPE "Power Converter Redundancy Lost (6045)" - --#SUMMARY "The power converters are no longer redundant on chassis %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check the power converters in the system for a failure in a redundant pair. Replace the power converter." - - - ::= 6045 - - cpqHe3CacheAccelParityError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "A cache accelerator parity error indicates a cache module - needs to be replaced. - - The error information is reported in the variable - cpqHeEventLogErrorDesc." - - --#TYPE "Cache Accel Parity Errors may require a module. (6046)" - --#SUMMARY "Cache accelerator errors may require a replacement module." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Refer to the Integrated Management Log for details on the error. Replace the cache module." - - - ::= 6046 - - cpqHeResilientMemOnlineSpareEngaged TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Advanced Memory Protection Online Spare Engaged. - - The Advanced Memory Protection subsystem has detected a memory - fault. The Online Spare Memory has been activated. - - User Action: Schedule server down-time to replace the faulty - memory." - - --#TYPE "Online Spare Memory Engaged (6047)" - --#SUMMARY "The Advanced Memory Protection subsystem has engaged the online spare memory." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Schedule server down-time to replace the faulty memory." - - ::= 6047 - --- New for rev 5.10. - cpqHe4FltTolPowerSupplyOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, - cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, - cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, - cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } - DESCRIPTION - "The fault tolerant power supply condition has been set back - to the OK state for the specified chassis and bay location." - - --#TYPE "Power Supply OK (6048)" - --#SUMMARY "The power supply is ok on bay %d, status %d, model %s, serial number %s, firmware %s." - --#ARGUMENTS {3, 4, 5, 6, 8} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY POWER - - ::= 6048 - --- New for rev 5.10. Deprecated cpqHe3FltTolPowerSupplyDegraded - cpqHe4FltTolPowerSupplyDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, - cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, - cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, - cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } - DESCRIPTION - "The fault tolerant power supply condition has been set - to degraded for the specified chassis and bay location." - - --#TYPE "Power Supply Degraded (6049)" - --#SUMMARY "The power supply is degraded on chassis %d, bay %d, status %d, model %s, serial number %s, firmware %s." - --#ARGUMENTS {2, 3, 4, 5, 6, 8} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Replace the failing power supply." - - ::= 6049 - --- New for rev 5.10. Deprecated cpqHe3FltTolPowerSupplyFailed - cpqHe4FltTolPowerSupplyFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, - cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, - cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, - cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } - DESCRIPTION - "The fault tolerant power supply condition has been set - to failed for the specified chassis and bay location." - - --#TYPE "Power Supply Failed (6050)" - --#SUMMARY "The power supply is failed on chassis %d, bay %d, status %d, model %s, serial number %s, firmware %s." - --#ARGUMENTS {2, 3, 4, 5, 6, 8} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Replace the failed power supply." - - ::= 6050 - --- New for rev 5.40. - cpqHeResilientMemMirroredMemoryEngaged TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Advanced Memory Protection Mirrored Memory Engaged. - - The Advanced Memory Protection subsystem has detected a memory - fault. Mirrored Memory has been activated. - - User Action: Replace the faulty memory." - - --#TYPE "Mirrored Memory Engaged (6051)" - --#SUMMARY "The Advanced Memory Protection subsystem has engaged the online spare memory." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the faulty memory." - - ::= 6051 - --- New for rev 5.50. - cpqHeResilientAdvancedECCMemoryEngaged TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Advanced Memory Protection Advanced ECC Memory Engaged. - - The Advanced Memory Protection subsystem has detected a memory - fault. Advanced ECC has been activated. - - User Action: Replace the faulty memory." - - --#TYPE "Advanced ECC Memory Engaged (6052)" - --#SUMMARY "The Advanced Memory Protection subsystem has engaged the advanced ECC memory." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the faulty memory." - - ::= 6052 - --- New traps added for 6.20. - - cpqHeResilientMemXorMemoryEngaged TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Advanced Memory Protection XOR Engine Memory Engaged. - - The Advanced Memory Protection subsystem has detected a memory - fault. The XOR engine has been activated. - - User Action: Replace the faulty memory." - - --#TYPE "Advanced XOR Memory Engaged (6053)" - --#SUMMARY "The Advanced Memory Protection subsystem has engaged the XOR memory." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the faulty memory." - - ::= 6053 - - cpqHe3FltTolPowerRedundancyRestored TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis } - DESCRIPTION - "The Fault Tolerant Power Supplies have returned to a redundant - state for the specified chassis." - - --#TYPE "Power Redundancy Restored (6054)" - --#SUMMARY "The power supplies are now redundant on chassis %d." - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY POWER - - ::= 6054 - - cpqHe3FltTolFanRedundancyRestored TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis } - DESCRIPTION - "The Fault Tolerant Fans have returned to a redundant state for - the specified chassis." - - --#TYPE "Fan Redundancy Restored (6055)" - --#SUMMARY "The fans are now redundant on chassis %d." - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY FAN - - ::= 6055 - --- Updated for 6.20 trap replaced 6029 --- deprecateed in 8.20 replaced with 6064 - cpqHe4CorrMemReplaceMemModule TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardIndex, - cpqHeResMemModuleIndex, cpqHeResMemModuleSparePartNo, - cpqSiMemModuleSize, cpqSiServerSystemId } - DESCRIPTION - "Corrected Memory Errors Detected - - The errors have been corrected, but the memory module should be - replaced." - - --#TYPE "Corrected Memory Errors - Replace Memory Module. (6056)" - --#SUMMARY "Correctable memory errors require a replacement of the memory module in slot %d, socket %d." - --#ARGUMENTS {2, 3} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the failing memory module." - - ::= 6056 - --- deprecateed in 8.20 replaced with 6065 - cpqHeResMemBoardRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex } - DESCRIPTION - "Memory board or cartridge removed. - - An Advanced Memory Protection sub-system board or cartridge has - been removed from the system. - - User Action: Ensure the board or cartridge has memory correctly - installed and re-insert the memory board or cartridge back into - the system." - - --#TYPE "Memory Board or Cartridge Removed (6057)" - --#SUMMARY "Memory Board or Cartridge Removed from Slot %d." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Ensure the board or cartridge has memory correctly installed and re-insert the memory board or cartridge back into the system." - --#LIFECYCLE - - ::= 6057 - --- deprecateed in 8.20 replaced with 6066 - cpqHeResMemBoardInserted TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex } - DESCRIPTION - "Memory board or cartridge inserted. - - An Advanced Memory Protection sub-system board or cartridge has - been inserted into the system. - - User Action: None." - - --#TYPE "Memory Board or Cartridge Inserted (6058)" - --#SUMMARY "Memory Board or Cartridge Inserted into Slot %d." - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MEMORY - --#LIFECYCLE - - ::= 6058 - --- deprecateed in 8.20 replaced with 6067 - cpqHeResMemBoardBusError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex } - DESCRIPTION - "Memory board or cartridge bus error detected. - - An Advanced Memory Protection sub-system board or cartridge - bus error has been detected. - - User Action: Replace the indicated board or cartridge." - - --#TYPE "Memory Board or Cartridge Bus Error Detected (6059)" - --#SUMMARY "Memory Board or Cartridge Bus Error Detected in Slot %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the indicated board or cartridge." - - ::= 6059 - --- The follow trap 6060 is supported only in Tru64 at this time. --- This trap is not currently supported for ProLiants. - cpqHeEventOccurred TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeEventLogEntryNumber, - cpqHeEventLogEntrySeverity, cpqHeEventLogUpdateTime, - cpqHeEventLogErrorDesc } - DESCRIPTION - "An event has occurred. - User Action: None." - - --#TYPE "Event has occurred (6060)" - --#SUMMARY "Event %s has occurred, severity %d " - --#ARGUMENTS {5,3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - ::= 6060 - -cpqHeManagementProcInReset TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The Management processor is currently in reset - - The management processor is currently in the process of being reset - because of a firmware update or some other event. - - User action: None" - - --#TYPE "Management processor is currently in reset. (6061)" - --#SUMMARY "The management processor is in the process of being reset." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR - - ::= 6061 - - cpqHeManagementProcReady TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The Management processor is ready - - The management processor has successfully reset and is now available - again. - - User action: None" - - --#TYPE "Management processor is ready. (6062)" - --#SUMMARY "The management processor is ready after a successful reset." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR - - ::= 6062 - - cpqHeManagementProcFailedReset TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "The Management processor failed reset - - The management processor was not successfully reset and is not - operational. - - User action: Reset the management procesessor again or re-flash - the management processor firmware." - - --#TYPE "Management processor failed reset. (6063)" - --#SUMMARY "The management processor failed reset." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR - --#ACTION "Reset the management procesessor again or re-flash the management processor firmware." - - ::= 6063 - --- Updated for 8.20 trap replaced 6056 - cpqHe5CorrMemReplaceMemModule TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardNum, - cpqHeResMem2CpuNum, cpqHeResMem2RiserNum, - cpqHeResMem2ModuleNum, cpqHeResMem2ModulePartNo, - cpqHeResMem2ModuleSize, cpqSiServerSystemId } - DESCRIPTION - "Corrected \ uncorrected Memory Errors Detected - - The errors have been corrected, but the memory module should be - replaced. Value 0 for CPU means memory is not Processor based" - - --#TYPE "Corrected \ uncorrectable Memory Errors - Replace Memory Module. (6064)" - --#SUMMARY "Correctable \ uncorrectable memory errors require a replacement of the memory module in slot %d, cpu %d, riser %d, socket %d." - --#ARGUMENTS {2, 3, 4, 5} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the failing memory module." - - ::= 6064 - --- Updated for 8.20 trap replaced 6057 - cpqHe5ResMemBoardRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum } - DESCRIPTION - "Memory board or cartridge or riser removed. - - An Advanced Memory Protection sub-system board or cartridge or riser has - been removed from the system. Value 0 for CPU means memory is not processor based. - - User Action: Ensure the board or cartridge or riser has memory correctly - installed and re-insert the memory board or cartridge or CPU back into - the system." - - --#TYPE "Memory Board or Cartridge or Riser Removed (6065)" - --#SUMMARY "Memory board or cartridge or riser removed from slot %d, CPU %d, riser %d." - --#ARGUMENTS {2,3,4} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Ensure the board or cartridge or riser has memory correctly installed and re-insert the memory board or cartridge or CPU back into the system." - --#LIFECYCLE - ::= 6065 - --- Updated for 8.20 trap replaced 6058 - cpqHe5ResMemBoardInserted TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum } - DESCRIPTION - "Memory board or cartridge or riser inserted. - - An Advanced Memory Protection sub-system board or cartridge or riser - Has been inserted into the system. Value 0 for CPU means memory is not processor based. - - User Action: None." - - --#TYPE "Memory Board or Cartridge Inserted (6066)" - --#SUMMARY "Memory board or cartridge inserted into slot %d, CPU %d, riser %d." - --#ARGUMENTS {2,3,4} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MEMORY - --#LIFECYCLE - ::= 6066 - --- Updated for 8.20 trap replaced 6059 - cpqHe5ResMemBoardBusError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum } - DESCRIPTION - "Memory board or cartridge or Riser bus error detected. - - An Advanced Memory Protection sub-system board or cartridge or Riser - bus error has been detected. Value 0 for CPU means memory is not processor based. - - User Action: Replace the indicated board or cartridge or Riser." - - --#TYPE "Memory Board or Cartridge or Riser Bus Error Detected (6067)" - --#SUMMARY "Memory board or cartridge bus error detected in slot %d, CPU %d, riser %d." - --#ARGUMENTS {2,3,4} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#VARBINDSEVERITY 2 - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the indicated board, cartridge, or riser." - ::= 6067 - --- Added for 8.20 - cpqHeResilientMemLockStepMemoryEngaged TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Advanced Memory Protection LockStep Engine Memory Engaged. - - The Advanced Memory Protection subsystem has detected a memory - fault. The LockStep engine has been activated. - - User Action: Replace the faulty memory." - - --#TYPE "Advanced LockStep Memory Engaged (6068)" - --#SUMMARY "The Advanced Memory Protection subsystem has engaged the LockStep memory." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace the faulty memory." - - ::= 6068 - --- New for rev 8.30. - cpqHe4FltTolPowerSupplyACpowerloss TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, - cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, - cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, - cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, - cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } - DESCRIPTION - "The fault tolerant power supply AC power loss for the specified chassis and bay location." - - --#TYPE "Power Supply AC Power Loss (6069)" - --#SUMMARY "The power supply AC power loss in bay %d, status %d, model %s, serial number %s, firmware %s." - --#ARGUMENTS {3, 4, 5, 6, 8} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check the power source for the specified power supply." - - ::= 6069 - --- New for rev 10.0. - cpqHeSysBatteryFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical, - cpqHeSysBatteryChassis, cpqHeSysBatteryIndex, - cpqHeSysBatteryStatus, cpqHeSysBatteryModel, - cpqHeSysBatterySerialNumber, cpqHeSysBatterySparePartNum } - DESCRIPTION - "The system battery has either failed or met a predictive failure condition - for the specified chassis and index location." - - --#TYPE "System Battery Failed (6070)" - --#SUMMARY "The Battery has either Failed or met a predictive failure condition on Chassis %d, Index %d, Status %d, Model %s, Serial Num %s, Spare Part %s." - --#ARGUMENTS {3, 4, 5, 6, 7, 8} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY BATTERY - --#ACTION "Replace the failed battery." - - ::= 6070 - - cpqHeSysBatteryRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical, - cpqHeSysBatteryChassis, cpqHeSysBatteryIndex } - DESCRIPTION - "The system battery condition has removed - for the specified chassis and index location." - - --#TYPE "System Battery Removed (6071)" - --#SUMMARY "The Battery Has Been Removed on Chassis %d, Index %d." - --#ARGUMENTS {3, 4 } - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY BATTERY - --#ACTION "Install supported Smart Storage Energy Pack and ensure energy pack cable is well seated. Confirm energy pack status in the #ILO GUI. Contact support if condition persists." - - ::= 6071 - - --- New for rev 10.20. - - cpqHeSysPwrAllocationNotOptimized TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical} - DESCRIPTION - "Error in setting server power throttle. Server enclosure power request has increased. Server power allocation is not optimized." - - --#TYPE "Power Throttle Write Failed (6072)" - --#SUMMARY "Server power allocation could not be optimized. Server Enclosure power request has increased." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - --#ACTION "Refer to the Integrated Management Log on the iLO for details. Power down & reinsert the server blade. If the error persists, please contact your support representative." - ::= 6072 - - cpqHeSysPwrOnDenied TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical, - cpqHeSysBoardFruStatus } - DESCRIPTION - "One of the Field Replacement Units(FRU) is not allowing the system to power on." - - --#TYPE "FRU device read error(6073)" - --#SUMMARY "FRU device read error, status %s." - --#ARGUMENTS {3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#HWSTATUS_CATEGORY POWER - --#ACTION "Refer to the Integrated Management Log for details. In the event of a baseboard FRU read error: a) Remove and reinsert the server blade and attempt to power on the system. In the event of a mezzanine card read error: a) Remove and reseat the failing mezzanine card and attempt to power on the system. b) Remove the failing mezzanine card and attempt to power on the system. If the error persists, please contact your support representative." - ::= 6073 --- End for rev 10.20. - --- New for rev 10.30. - cpqHePowerFailureError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical, - cpqHePowerFailureIndex, cpqHePowerFailureType, cpqHePowerFailureArea, - cpqHePowerFailureGroupString, cpqHePowerFailureDeviceBitMap,cpqHePowerFailureRepairSteps} - - DESCRIPTION - "This trap signifies a device connected to or embedded on the system board has an error." - - --#TYPE "Server Critical Power Failure (6074)" - --#SUMMARY "A device connected to or embedded on the system board has an error. Service Information: Failure Type:%d, Area:%d, Group:%s." - --#ARGUMENTS {4, 5, 6} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#HWSTATUS_CATEGORY POWER - --#SIMPLE_SEVERITY CRITICAL - --#ACTION "Refer to the Integrated Management Log for details. Try the following steps until the error no longer occurs: a) Remove the AC power, and then restore AC power. Attempt to boot the server. (b) Remove and then reinstall the failed device. Attempt to boot the server. (c) Swap the failed device with a known good device and attempt to boot the server. (d) If the error persists, please contact your support representative." - - ::= 6074 - - cpqHeInterlockFailureError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical, - cpqHeInterlockFailureIndex, cpqHeInterlockFailureType, cpqHeInterlockFailureDeviceName } - - DESCRIPTION - "This trap signifies a device missing or improperly seated on the system board." - - --#TYPE "Server Critical Interlock Failure (6075)" - --#SUMMARY "There is a device missing or improperly seated on the system board. Service Information: Failure Type:%d, Missing or improperly seated device (%s)." - --#ARGUMENTS {4, 5} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#HWSTATUS_CATEGORY POWER - --#SIMPLE_SEVERITY CRITICAL - --#ACTION "Refer to the Integrated Management Log for details. Remove and then reinstall the failed device. Attempt to boot the server. If the error persists, please contact your support representative." - ::= 6075 - --- End for rev 10.30. - --- New for rev 11.00. - cpqHeNvdimmBackupError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Backup Error detected. Persistent data backup failed and data is not available." - - --#TYPE "NVDIMM Error - Backup Error (6076)" - --#SUMMARY "NVDIMM Error - Backup Error -Processor %d, DIMM %d (SN:%s-%s-%s-%s). Persistent data backup failed and data is irrecoverably lost." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Sanitize the NVDIMM. Replace NVDIMM if issue persists." - - ::= 6076 - - cpqHeNvdimmRestoreError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Restore Error detected. Persistent data restore failed and data is not available." - - --#TYPE "NVDIMM Error - Restore Error (6077)" - --#SUMMARY "NVDIMM Error - Restore Error - Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). Persistent data restore failed and data is not available. Data is not lost unless the issue persists." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Replace NVDIMM if issue persists." - - ::= 6077 - - cpqHeNvdimmUncorrectableMemoryError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error -Uncorrectable Memory Error - This NVDIMM will not be available to the operating system." - - --#TYPE "NVDIMM Error - Uncorrectable Memory Error (6078)" - --#SUMMARY "NVDIMM Error - Uncorrectable Memory Error -Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). This NVDIMM will not be available to the operating system and data may have been lost." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Use Persistent Memory Address Range Scrub option to attempt data recovery and Sanitize the NVDIMM. If issue persists, replace the NVDIMM." - - ::= 6078 - - cpqHeNvdimmBackupPowerError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags} - DESCRIPTION - "NVDIMM Error - Backup Power Error. Backup power is not available and a future backup is not possible." - - --#TYPE "NVDIMM Error - Backup Power Error (6079)" - --#SUMMARY "NVDIMM backup power has been lost and a future backup is not possible. Data from the last successful backup is intact, but data modified after the last successful backup will be lost if power cannot be restored." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Ensure backup power is available. Backup NVDIMM contents to other media to preserve data." - - ::= 6079 - - cpqHeNvdimmNVDIMMControllerError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - NVDIMM Controller Error. An error was found with the NVDIMM controller. The OS will not use the NVDIMM." - - --#TYPE "NVDIMM Error - NVDIMM Controller Error (6080)" - --#SUMMARY "NVDIMM Error - NVDIMM Controller Error - Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). An error was found with the NVDIMM controller. The OS will not use the NVDIMM. Data from last successful backup is still available, but will be lost if controller error persists." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Save NVDIMM contents to other media to preserve data, if possible, and update the NVDIMM Firmware. If issue persists, replace the NVDIMM." - - ::= 6080 - - cpqHeNvdimmEraseError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Erase Error. NVDIMM could not be erased and future backups are not possible." - - --#TYPE "NVDIMM Error - Erase Error (6081)" - --#SUMMARY "NVDIMM Error - Erase Error -Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). NVDIMM could not be erased by the NVDIMM controller firmware and future backups are not possible." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Save NVDIMM contents to other media to preserve data and then replace the NVDIMM." - - ::= 6081 - - cpqHeNvdimmArmingError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Arming Error. NVDIMM could not be armed and future backups are not possible." - - --#TYPE "NVDIMM Error - Arming Error (6082)" - --#SUMMARY "NVDIMM Error - Arming Error - Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). NVDIMM could not be armed and future backups are not possible." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Save NVDIMM contents to other media to preserve data. Replace the NVDIMM if issue persists." - - ::= 6082 - - cpqHeNvdimmSanitizationOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum } - DESCRIPTION - "This NVDIMM-N was selected for Sanitizing/Erasing. All data saved in the NVDIMM has been erased." - - --#TYPE "NVDIMM Error - Sanitization Ok(6083)" - --#SUMMARY "Processor %d, DIMM %d .This NVDIMM-N was selected for Sanitizing/Erasing. All data saved in the NVDIMM has been erased." - --#ARGUMENTS {2, 3} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "No action required." - - ::= 6083 - - cpqHeNvdimmSanitizationError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Sanitization Error. This NVDIMM-N was selected for Sanitizing/Erasing, but this process was not successful." - - --#TYPE "NVDIMM Error - Sanitization Error (6084)" - --#SUMMARY "NVDIMM Error - Sanitization Error - Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). This NVDIMM-N was selected for Sanitizing/Erasing, but this process was not successful." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Retry Sanitization. Replace NVDIMM if issue persists." - - ::= 6084 - - cpqHeNvdimmControllerFirmwareError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum } - DESCRIPTION - "NVDIMM Error - Controller Firmware Error. The controller firmware has been corrupted. The OS will not use the NVDIMM." - - --#TYPE "NVDIMM Error - Controller Firmware Error (6085)" - --#SUMMARY "NVDIMM Error - NVDIMM Controller Error - Processor %d, DIMM %d. The controller firmware has been corrupted. The OS will not use the NVDIMM." - --#ARGUMENTS {2, 3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Update the NVDIMM Firmware. If issue persists, replace the NVDIMM." - - ::= 6085 - - cpqHeNvdimmErrorInterleaveOn TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error. NVDIMM received a memory initialization or uncorrectable error. All NVDIMMs on Processor are disabled." - - --#TYPE "NVDIMM Error with Interleave On (6086)" - --#SUMMARY "Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). Received a memory initialization or uncorrectable error. All NVDIMMs on Processor %d are disabled. Data on NVDIMM may have been lost." - --#ARGUMENTS {2, 3, 4, 5, 6, 7, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Use Persistent Memory Address Range Scrub option to attempt data recovery and Sanitize all NVDIMMs on the particular Processor. If issue persists, replace the NVDIMM." - - ::= 6086 - - cpqHeNvdimmInterleaveOff TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - NVDIMM received a memory initialization or uncorrectable error. NVDIMM has been disabled." - - --#TYPE "NVDIMM Error with Interleave Off (6087)" - --#SUMMARY "Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). NVDIMM has received a memory initialization or uncorrectable error. NVDIMM has been disabled. Data on NVDIMM may have been lost." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Use Persistent Memory Address Range Scrub option to attempt data recovery and Sanitize the NVDIMM. If issue persists, replace the NVDIMM." - - ::= 6087 - - cpqHeNvdimmEventNotifyError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Unable to set event notification for this NVDIMM." - - --#TYPE "NVDIMM Error - Controller Event Notify Error (6088)" - --#SUMMARY "NVDIMM Error - Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). Unable to set event notification for this NVDIMM to generate alerts for health changes, including a loss of data persistency." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Update System ROM and Innovation Engine Firmware to latest supported revision. If issue persists, contact support." - - ::= 6088 - - - cpqHeNvdimmPersistencyLost TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Error - Persistency Lost. NVDIMM Persistency is lost and future data backup is not available." - - --#TYPE "NVDIMM Error - Persistency Lost (6089)" - --#SUMMARY "NVDIMM Error - Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). NVDIMM Persistency is lost and future data backup is not available." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Backup NVDIMM contents to other media to preserve data and replace NVDIMM." - - ::= 6089 - - cpqHeNvdimmPersistencyRestored TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum } - DESCRIPTION - "NVDIMM - Persistency Restored. NVDIMM Persistency is restored and future data backup is available." - - --#TYPE "NVDIMM Error - Persistency Restored (6090)" - --#SUMMARY "NVDIMM Error - Processor %d, DIMM %d. NVDIMM Persistency is restored and future data backup is available." - --#ARGUMENTS {2, 3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "No action required." - - ::= 6090 - - cpqHeNvdimmLifecycleWarning TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, - cpqHeNvdimmDimmNum, cpqHeNvdimmMfrId, - cpqHeNvdimmMfrLocation, cpqHeNvdimmMfrDate, - cpqHeNvdimmSerialNumber } - DESCRIPTION - "NVDIMM Lifecycle Warning. NVDIMM lifetime has reached." - - --#TYPE "NVDIMM Lifecycle Warning (6091)" - --#SUMMARY "Processor %d, DIMM %d (Serial no. %s-%s-%s-%s). NVDIMM lifetime has reached." - --#ARGUMENTS {2, 3, 4, 5, 6, 7} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Backup NVDIMM contents to other media to preserve data and replace NVDIMM." - - ::= 6091 - - cpqHeNvdimmLogicalNvdimmError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "One or more Logical NVDIMM errors occurred. - - Details of the Logical NVDIMM error messages can - be found in Integrated Management Log " - - --#TYPE "Logical NVDIMM Errors Occurred (6092)" - --#SUMMARY "Logical NVDIMM Errors Occurred." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Refer to the Integrated Management Log for details on Logical NVDIMM Errors." - - ::= 6092 - - cpqHeNvdimmConfigurationError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "One or more NVDIMM Configuration errors occurred. - - Details of the NVDIMM Configuration error messages can - be found in Integrated Management Log " - - --#TYPE "NVDIMM Configuration Errors Occurred (6093)" - --#SUMMARY "NVDIMM Configuration errors occurred." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Refer to the Integrated Management Log for details on NVDIMM Configuration error." - - ::= 6093 - - cpqHeNvdimmBatteryNotChargedwithWait TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Smart battery is not charged sufficiently to support the NVDIMMs installed in the system. " - - --#TYPE "NVDIMM Battery Not Charged - Wait (6094)" - --#SUMMARY "NVDIMM Battery is not charged sufficiently to support the energy-backed persistent memory installed in the system. The system will wait for the battery to charge sufficiently before continuing boot." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "No action required." - - ::= 6094 - - cpqHeNvdimmBatteryNotChargedwithNoWait TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Smart battery is not charged sufficiently to support the NVDIMMs installed in the system." - - --#TYPE "NVDIMM Battery Not Charged - No Wait (6095)" - --#SUMMARY "NVDIMM Battery is not charged sufficiently to support the energy-backed persistent memory installed in the system. System configured to not wait for battery to charge. Persistent memory regions may not be available in the OS." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "No action required." - - ::= 6095 - - cpqHeDimmMemoryMapChanged TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Uncorrectable Memory Error - The failed memory module could not be determined." - - --#TYPE "Uncorrectable Memory Error (6096)" - --#SUMMARY "Uncorrectable Memory Error - The failed memory module could not be determined." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Inspect the IML for another event that may indicate what memory module has failed." - - ::= 6096 - - cpqHeNvdimmPersistantMemoryAddressError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Persistent Memory Address Range Scrub has detected an error." - - --#TYPE "Persistent Memory Address Range Scrub has detected an error(6097)" - --#SUMMARY "Persistent Memory Address Range Scrub has detected an error." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "If the Operating System is unable to recover, check the Integrated Management Log (IML) for additional information." - - ::= 6097 - - cpqHeNvdimmInitializationError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "NVDIMM(s) cannot be initialized due to internal error." - - --#TYPE "NVDIMM Error - Initialization Error(6098)" - --#SUMMARY "NVDIMM Error - NVDIMM(s) cannot be initialized due to internal error. NVDIMM functionality might be impacted." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Update System ROM and Innovation Engine firmware to latest supported revision. Contact support if issue persists" - - ::= 6098 - - cpqHePwrSupplyError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, - cpqHeFltTolPowerSupplyChassis, cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyErrorCondition } - DESCRIPTION - "System Power Supply Error." - - --#TYPE "System Power Supply Error (6099)" - --#SUMMARY "System Power Supply Error: %d (Power Supply chassis %d, bay %d)" - --#ARGUMENTS { 4, 2, 3 } - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check error condition and the Integrated Management Log (IML) for additional information." - - ::= 6099 - - cpqHePwrSupplyErrorRepaired TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, - cpqHeFltTolPowerSupplyChassis, cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyErrorCondition } - DESCRIPTION - "System Power Supply Error Repaired." - - --#TYPE "System Power Supply Error Repaired(6100)" - --#SUMMARY "System Power Supply Repaired: (Power Supply chassis %d, bay %d)" - --#ARGUMENTS { 2, 3 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY POWER - --#ACTION "No action." - - ::= 6100 - - cpqHeBbuError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, - cpqHeBbuChassis, cpqHeBbuBay, cpqHeBbuErrorCondition } - DESCRIPTION - "Battery Backup Unit Error." - - --#TYPE "Battery Backup Unit Error (6101)" - --#SUMMARY "Battery Backup Unit Error: %d (Power Supply chassis %d, bay %d)" - --#ARGUMENTS { 4, 2, 3 } - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check error condition and the Integrated Management Log (IML) for additional information." - - ::= 6101 - - - cpqHeBbuErrorRepaired TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, - cpqHeBbuChassis, cpqHeBbuBay, cpqHeBbuErrorCondition } - DESCRIPTION - "Battery Backup Unit Error Repaired." - - --#TYPE "Battery Backup Unit Error Repaired(6102)" - --#SUMMARY "Battery Backup Unit Repaired: (Power Supply chassis %d, bay %d)" - --#ARGUMENTS { 2, 3 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY POWER - --#ACTION "No action." - - ::= 6102 - - cpqHeNoPowerSupplyDetected TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Power Supply or Power Backplane Detection Error." - - --#TYPE "Power Supply Error(6103)" - --#SUMMARY "No Power Supply or Power Backplane were Detected." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - --#ACTION "Ensure that system CPLD and, if applicable, chassis firmware is up to date." - - ::= 6103 - - - cpqHePowerProtectionFault TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "System Board Power Protection Fault." - - --#TYPE "Power Protection Fault(6104)" - --#SUMMARY "System Board Power Protection Fault Detected." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Check the Integrated Management Log (IML) for additional information." - ::= 6104 - --- End for rev 11.10. - - cpqHePowerFuseDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "A degraded power event has been detected and the server system board should be replaced." - - --#TYPE "Power Fuse Fault(6105)" - --#SUMMARY "A degraded power event has been detected and the server system board should be replaced." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY POWER - --#ACTION "Power down and remove the server from power to have the server system board replaced." - ::= 6105 - - cpqHeTPMSecureEraseFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Trusted Platform Module has failed the Secure Erase Operation." - - --#TYPE "Trusted Platform Module has failed the Secure Erase Operation(6106)" - --#SUMMARY "Trusted Platform Module has failed the Secure Erase Operation." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Update Trusted Platform Module firmware and retry the secure erase operation. If the issue persists, contact support." - ::= 6106 - - cpqHeSPISecureEraseFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "One-button secure erase of system firmware configuration data has failed" - - --#TYPE "One-button secure erase of system firmware configuration data has failed(6107)" - --#SUMMARY "One-button secure erase of system firmware configuration data has failed." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Retry One-button secure erase. Contact support if issue persists." - ::= 6107 - - cpqHePMMSecureEraseFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, - cpqHeNvdimmDimmNum, cpqHeNvdimmProcessorNum, cpqHeNvdimmSerialNumber } - DESCRIPTION - "Secure Erase of HPE Persistent Memory has failed." - - --#TYPE "Secure Erase of HPE Persistent Memory has failed(6108)" - --#SUMMARY "Secure Erase of HPE Persistent Memory has failed: ( Processor %d, DIMM %d, Serial Number %s )" - --#ARGUMENTS { 3, 2, 4 } - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Retry Secure Erase. Please contact support if issue persists." - ::= 6108 - - cpqHeNANDSecureEraseFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "Secure Erase of the management processor's embedded media device has Failed." - - --#TYPE "Secure Erase of the management processor's embedded media device has failed(6109)" - --#SUMMARY "Secure Erase of the management processor's embedded media device has failed" - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Retry Secure Erase. Please contact support if issue persists." - ::= 6109 - - cpqHeSedPassphrasefail TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "Device Encryption Error. Enabling or Disabling encryption/modifying passphrase failed." - - --#TYPE "Encryption logic fault or Wrong passphrase used(6110)" - --#SUMMARY "Failed to do selected Enable or Disable encryption/passphrase modification operation on processor number %d DIMM number %d." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Retry operation with correct passphrase. If issue persists contact support." - ::= 6110 - - cpqHeSedUnlockfail TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "Device Encryption Error - Three incorrect attempts were made to unlock Processor and DIMM. The device will be locked until the next power cycle." - - --#TYPE "Unlocking attempts exceeded threshold limit(6111)" - --#SUMMARY "Failed to unlock processor number %d DIMM number %d." - --#ARGUMENTS {2,3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Power cycle the server and retry" - ::= 6111 - - cpqHePMMHealthFailure TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "The HPE Persistent Memory Module has experienced an issue and is not longer operational or resilient." - - --#TYPE "An HPE Persistent Memory Module is reporting a non-healthy health status(6112)" - --#SUMMARY " The HPE Persistent Memory Module has experienced an issue and is not longer operational/resilient (Proc number %d Dimm number %d)." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Backup HPE Persistent Memory contents to other media to preserve data and replace the HPE Persistent Memory Module." - ::= 6112 - - cpqHePMMLessUsageRemainingAlert TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "HPE Persistent Memory Percentage Remaining Alert. The HPE Persistent Memory Module has less usage remaining. Future errors on this HPE Persistent Memory Module may result in loss of data" - - --#TYPE "The HPE Persistent Memory Module has less usage remaining(6113)" - --#SUMMARY "HPE Persistent Memory Percentage Remaining Alert - (Processor %d DIMM %d)." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Backup HPE Persistent Memory contents to other media to preserve data immediately and replace the HPE Persistent Memory Module." - ::= 6113 - - cpqHePMMConfigErr TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "One or more PMM Configuration errors occurred. - - Details of the PMM Configuration error messages can - be found in Integrated Management Log" - - --#TYPE "PMM configuration error(6114)" - --#SUMMARY "The indicated PMM has configuration error(s)(Processor number %d DIMM number %d)." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Review documentation for more information on supported configurations." - ::= 6114 - - cpqHePMMShutdownWarning TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "HPE Persistent Memory Health Warning. The HPE Persistent Memory Module reported an unsafe shutdown." - - --#TYPE "Unsafe shutdown of memory module (6115)" - --#SUMMARY "The HPE Persistent Memory Module reported an unsafe shutdown (Processor %d DIMM %d)." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Check Integrated Management Log (IML) for additional information. If the issue persists, check if the system firmware is latest, including the system programmable logic device and system ROM. Check power supply and replace if needed." - ::= 6115 - - cpqHeNvdimmCorrErrThreshold TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "Correctable Memory Error Threshold Exceeded" - - --#TYPE "Correctable Memory Error Threshold Exceeded(6116)" - --#SUMMARY "Correctable Memory Error Threshold Exceeded (DIMM %d)" - --#ARGUMENTS {3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Reboot system or re-seat the DIMM and update system firmware. If the issue persists, contact support." - ::= 6116 - - cpqHePMMBootStatusRegWarning TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHeNvdimmProcessorNum, cpqHeNvdimmDimmNum } - DESCRIPTION - "HPE Persistent Memory Error - The HPE Memory Module reported a failure on the previous boot" - - --#TYPE "Failure on previous boot (6117)" - --#SUMMARY "The HPE Memory Module reported a failure on the previous boot (Processor %d DIMM %d)." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Consult the Integrated Management Log (IML) for additional information. If the issue persists, confirm the system firmware is current, including the System Programmable Logic Device and system ROM. Check the power supply and replace if needed." - ::= 6117 -END diff --git a/mibs/orig/CPQHOST-MIB b/mibs/orig/CPQHOST-MIB deleted file mode 100644 index babd779..0000000 --- a/mibs/orig/CPQHOST-MIB +++ /dev/null @@ -1,2583 +0,0 @@ --- **************************************************************************** --- --- Host Operating System Information --- Management Information Base for SNMP Network Management --- --- --- Copyright 1993,2016 Hewlett Packard Enterprise Development, L.P. --- --- Hewlett Packard Enterprise Development LP shall not be liable for technical or --- editorial errors or omissions contained herein. The information in --- this document is provided "as is" without warranty of any kind and --- is subject to change without notice. The warranties for HP products --- are set forth in the express limited warranty statements --- accompanying such products. Nothing herein should be construed as --- constituting an additional warranty. --- --- Confidential computer software. Valid license from HP required for --- possession, use or copying. Consistent with FAR 12.211 and 12.212, --- Commercial Computer Software, Computer Software Documentation, and --- Technical Data for Commercial Items are licensed to the U.S. --- Government under vendor's standard commercial license. --- --- Refer to the READMIB.RDM file for more information about the --- organization of the information in the Compaq Enterprise. --- --- The Compaq Enterprise number is 232. --- The ASN.1 prefix to, and including the Compaq Enterprise is: --- 1.3.6.1.4.1.232 --- --- **************************************************************************** - - -CPQHOST-MIB DEFINITIONS ::= BEGIN - - IMPORTS - enterprises FROM RFC1155-SMI - IpAddress FROM RFC1155-SMI - DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212 - TRAP-TYPE FROM RFC-1215 - sysName FROM RFC1213-MIB; - - compaq OBJECT IDENTIFIER ::= { enterprises 232 } - cpqHostOs OBJECT IDENTIFIER ::= { compaq 11 } - cpqHoMibRev OBJECT IDENTIFIER ::= { cpqHostOs 1 } - cpqHoComponent OBJECT IDENTIFIER ::= { cpqHostOs 2 } - - cpqHoInterface OBJECT IDENTIFIER ::= { cpqHoComponent 1 } - cpqHoInfo OBJECT IDENTIFIER ::= { cpqHoComponent 2 } - cpqHoUtil OBJECT IDENTIFIER ::= { cpqHoComponent 3 } - cpqHoFileSys OBJECT IDENTIFIER ::= { cpqHoComponent 4 } --- The cpqHoIfPhysMap group has been deprecated. - cpqHoIfPhysMap OBJECT IDENTIFIER ::= { cpqHoComponent 5 } - cpqHoSWRunning OBJECT IDENTIFIER ::= { cpqHoComponent 6 } - cpqHoSwVer OBJECT IDENTIFIER ::= { cpqHoComponent 7 } - cpqHoGeneric OBJECT IDENTIFIER ::= { cpqHoComponent 8 } - cpqHoSwPerf OBJECT IDENTIFIER ::= { cpqHoComponent 9 } - cpqHoSystemStatus OBJECT IDENTIFIER ::= { cpqHoComponent 10 } - cpqHoTrapInfo OBJECT IDENTIFIER ::= { cpqHoComponent 11 } - cpqHoClients OBJECT IDENTIFIER ::= { cpqHoComponent 12 } - cpqHoMemory OBJECT IDENTIFIER ::= { cpqHoComponent 13 } - cpqHoFwVer OBJECT IDENTIFIER ::= { cpqHoComponent 14 } - cpqHoHWInfo OBJECT IDENTIFIER ::= { cpqHoComponent 15 } - cpqPwrThreshold OBJECT IDENTIFIER ::= { cpqHoComponent 16 } - - cpqHoOsCommon OBJECT IDENTIFIER ::= { cpqHoInterface 4 } - --- **************************************************************************** --- Host OS Information MIB Revision --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoMibRev Group (1.3.6.1.4.1.232.11.1) --- --- Implementation of the cpqHoMibRev group is mandatory for all agents --- supporting the Host OS MIB. --- --- A Management Agent conforming to this document will return a --- cpqHoMibRevMajor of one (1) and a cpqHoMibRevMinor of forty four (44). - --- --- **************************************************************************** - - cpqHoMibRevMajor OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Major Revision level of the MIB. - - 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." - ::= { cpqHoMibRev 1 } - - cpqHoMibRevMinor OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Minor Revision level of the MIB. - - A change in the minor revision level may represent some minor - additional support, no changes to any pre-existing information - has occurred." - ::= { cpqHoMibRev 2 } - - cpqHoMibCondition OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), -- default state - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall condition. - - This object represents the overall status of the server`s host - system represented by this MIB." - ::= { cpqHoMibRev 3 } - --- **************************************************************************** --- Host OS Common --- ============== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoInterface Group (1.3.6.1.4.1.232.11.2.1) --- cpqHoOsCommon Group (1.3.6.1.4.1.232.11.2.1.4) --- --- --- Implementation of the cpqHoOsCommon group is mandatory for all --- agents that support the Host OS MIB. --- --- **************************************************************************** - - cpqHoOsCommonPollFreq OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - 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 choose to fail any request to change - the poll frequency to a value that would severely impact system - performance." - ::= { cpqHoOsCommon 1 } - --- **************************************************************************** --- Host OS Common Module Table --- =========================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoInterface Group (1.3.6.1.4.1.232.11.2.1) --- cpqHoOsCommon Group (1.3.6.1.4.1.232.11.2.1.4) --- cpqHoOsCommonModuleTable (1.3.6.1.4.1.232.11.2.1.4.2) deprecated --- --- **************************************************************************** - - cpqHoOsCommonModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of software modules that provide an interface to the - device this MIB describes." - ::= { cpqHoOsCommon 2 } - - cpqHoOsCommonModuleEntry OBJECT-TYPE - SYNTAX CpqHoOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a software module that provides an interface - to the device this MIB describes." - INDEX { cpqHoOsCommonModuleIndex } - ::= { cpqHoOsCommonModuleTable 1 } - - CpqHoOsCommonModuleEntry ::= SEQUENCE { - cpqHoOsCommonModuleIndex INTEGER, - cpqHoOsCommonModuleName DisplayString, - cpqHoOsCommonModuleVersion DisplayString, - cpqHoOsCommonModuleDate OCTET STRING, - cpqHoOsCommonModulePurpose DisplayString - } - - cpqHoOsCommonModuleIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "A unique index for this module description." - ::= { cpqHoOsCommonModuleEntry 1 } - - cpqHoOsCommonModuleName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The module name." - ::= { cpqHoOsCommonModuleEntry 2 } - - cpqHoOsCommonModuleVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - 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 null (size 0) string if the agent - cannot provide the module version." - ::= { cpqHoOsCommonModuleEntry 3 } - - cpqHoOsCommonModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqHoOsCommonModuleEntry 4 } - - cpqHoOsCommonModulePurpose OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The purpose of the module described in this entry." - ::= { cpqHoOsCommonModuleEntry 5 } - --- **************************************************************************** --- Host OS Information Group --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoInfo Group (1.3.6.1.4.1.232.11.2.2) --- --- --- The cpqHoInfo group describes some general information about the --- host OS. --- --- Implementation of the cpqHoInfo group is mandatory for all --- agents supporting the Host OS MIB. --- --- **************************************************************************** - - - cpqHoName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the host operating system (OS)." - ::= { cpqHoInfo 1 } - - cpqHoVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of the host OS." - ::= { cpqHoInfo 2 } - - cpqHoDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A further description of the host OS." - ::= { cpqHoInfo 3 } - - cpqHoOsType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - netware(2), -- Novell NetWare - windowsnt(3), -- Microsoft Windows NT - sco-unix(4), -- SCO OpenServer - unixware(5), -- SCO UnixWare - os-2(6), -- IBM OS/2 - ms-dos(7), -- Microsoft DOS - dos-windows(8), -- Microsoft DOS + Microsoft Windows - windows95(9), -- Microsoft Windows 95 - windows98(10), -- Microsoft Windows 98 - open-vms(11), -- Open VMS - nsk(12), -- Non Stop Kernel - windowsCE(13), -- Microsoft Windows CE - linux(14), -- Linux - windows2000(15), -- Microsoft Windows 2000 - tru64UNIX(16), -- Tru64 UNIX - windows2003(17), -- Microsoft Windows Server 2003 - windows2003-x64(18), -- Microsoft Windows Server 2003 x64 Edition - solaris(19), -- Sun Solaris - windows2003-ia64(20), -- Microsoft Windows Server 2003 for Itanium-based Systems - windows2008(21), -- Microsoft Windows Server 2008 - windows2008-x64(22), -- Microsoft Windows Server 2008 x64 Edition - windows2008-ia64(23), -- Microsoft Windows Server 2008 for Itanium-based Systems - vmware-esx(24), -- VMware ESX Classic - vmware-esxi(25), -- VMware ESXi - windows2012(26), -- Microsoft Windows 2012 Server - windows7(27), -- Microsoft Windows 7 - windows7-x64(28), -- Microsoft Windows 7 64-bit - windows8(29), -- Microsoft Windows 8 - windows8-x64(30), -- Microsoft Windows 8 64-bit - windows81(31), -- Microsoft Windows 8.1 - windows81-x64(32), -- Microsoft Windows 8.1 64-bit - windowsxp(33), -- Microsoft Windows XP - windowsxp-x64(34), -- Microsoft Windows XP 64-Bit - windowsvista(35), -- Microsoft Windows Vista - windowsvista-x64(36), -- Microsoft Windows Vista 64-Bit - windows2008-r2(37), -- Microsoft Windows Server 2008 R2 - windows2012-r2(38), -- Microsoft Windows Server 2012 R2 - rhel(39), -- RedHat Enterprise Linux - rhel-64(40), -- RedHat Enterprise Linux 64-Bit - solaris-64(41), -- Solaris 64-Bit - sles(42), -- SUSE Linux Enterprise Server - sles-64(43), -- SUSE Linux Enterprise Server 64-Bit - ubuntu(44), -- Ubuntu - ubuntu-64(45), -- Ubuntu 64-Bit - debian(46), -- Debian - debian-64(47), -- Debian 64-Bit - linux-64-bit(48), -- Linux 64-Bit - other-64-bit(49), -- Other 64-Bit - centos-32bit(50), -- CentOS 32-bit - centos-64bit(51), -- CentOS 64-bit - oracle-linux32(52), -- Oracle Linux 32-bit - oracle-linux64(53), -- Oracle Linux 64-bit - apple-osx(54), -- Apple OS X - windows2016(55), -- Microsoft Windows Server 2016 - nanoserver(56), -- Nano Server - windows2019(57) -- Microsoft Windows Server 2019 - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Host Operating system enumeration." - ::= { cpqHoInfo 4 } - - cpqHoTelnet OBJECT-TYPE - SYNTAX INTEGER { - other(1), - available(2), - notavailable(3) -- default - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Telnet on socket 23 is available." --- --- This variable specifies the availability of telnet. Only socket 23 is --- checked for telnet services. --- - ::= { cpqHoInfo 5 } - - cpqHoSystemRole OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The system role. - - This is a settable free form text field intended to be assigned - by a remote console briefly describing the system`s function." - ::= { cpqHoInfo 6 } - - cpqHoSystemRoleDetail OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..512)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The system detailed description. - - This is a settable free form text field intended to be assigned - by a remote console describing the system function in detail." - ::= { cpqHoInfo 7 } - - cpqHoCrashDumpState OBJECT-TYPE - SYNTAX INTEGER { - completememorydump(1), - kernelmemorydump(2), - smallmemorydump(3), - none(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Crash dump state. - Value of `Unknown (-1)` is returned when crash dump state could - not be determined." - ::= { cpqHoInfo 8 } - - cpqHoCrashDumpCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- (Crash Dump settings unknown) or (Crash dump monitoring is disabled) - ok(2), -- (Crash dump settings OK) and (paging file size >= minimum) and (free disk space >= minimum) - degraded(3), -- (Crash dump settings none) or (paging file size < minimum) or (free disk space < minimum) - failed(4) -- N/A - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the Crash dump configuration." - ::= { cpqHoInfo 9 } - - cpqHoCrashDumpMonitoring OBJECT-TYPE - SYNTAX INTEGER { - enabled(1), -- Enable crash dump monitoring. - disabled(2) -- Disable crash dump monitoring. - } - ACCESS read-write - STATUS optional - DESCRIPTION - "Enable/disable crash dump monitoring. - If crash dump monitoring is enabled both crash dump TRAP`s - are generated and crash dump condition is updated. - If crash dump monitoring is disabled, no crash dump TRAP - is generated and the crash dump condition is set to - other" - ::= { cpqHoInfo 10 } - - cpqHoMaxLogicalCPUSupported OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "Maximum number of logical CPUs supported by Operating System." - ::= { cpqHoInfo 11 } - - cpqHoSystemName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Full computer name of the host" - ::= { cpqHoInfo 12 } - - cpqHosysDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The value that would be returned in the RFC-1213 - sysDescr MIB element. It should include the full - name and version identification of the system`s - hardware type, software operating-system, and - networking software. It is mandatory that this only - contain printable ASCII characters." - ::= { cpqHoInfo 13} - --- **************************************************************************** --- Host OS CPU Utilization Table --- ============================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoUtil Group (1.3.6.1.4.1.232.11.2.3) --- cpqHoCpuUtilTable (1.3.6.1.4.1.232.11.2.3.1) --- --- --- The cpqHoUtil group contains measures of system utilization. --- --- Implementation of the cpqHoUtil group is mandatory for all agents --- that support the Host OS MIB. --- --- **************************************************************************** - - - - cpqHoCpuUtilTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoCpuUtilEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of CPU utilization entries." - ::= { cpqHoUtil 1 } - - cpqHoCpuUtilEntry OBJECT-TYPE - SYNTAX CpqHoCpuUtilEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a CPU`s utilization." - INDEX { cpqHoCpuUtilUnitIndex } - ::= { cpqHoCpuUtilTable 1 } - - CpqHoCpuUtilEntry ::= SEQUENCE { - cpqHoCpuUtilUnitIndex INTEGER, - cpqHoCpuUtilMin INTEGER, - cpqHoCpuUtilFiveMin INTEGER, - cpqHoCpuUtilThirtyMin INTEGER, - cpqHoCpuUtilHour INTEGER, - cpqHoCpuUtilHwLocation DisplayString - } - - cpqHoCpuUtilUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This number uniquely specifies a processor unit. - - A processing unit may be a set of processing chips that are - on the same board or for other reasons work together as a unit. - The main processor unit (if such a concept is valid for this - machine) will always have the lowest (first) index." - ::= { cpqHoCpuUtilEntry 1 } - - cpqHoCpuUtilMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CPU utilization as a percentage of the theoretical - maximum during the last minute. A value of -1 indicates - that no CPU utilization information is available for this - processor." - ::= { cpqHoCpuUtilEntry 2 } - - cpqHoCpuUtilFiveMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CPU utilization as a percentage of the theoretical - maximum during the last five minutes. A value of -1 indicates - that no CPU utilization information is available for this - processor." - ::= { cpqHoCpuUtilEntry 3 } - - cpqHoCpuUtilThirtyMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CPU utilization as a percentage of the theoretical - maximum during the last thirty minutes. A value of -1 indicates - that no CPU utilization information is available for this - processor." - ::= { cpqHoCpuUtilEntry 4 } - - cpqHoCpuUtilHour OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CPU utilization as a percentage of the theoretical - maximum during the last hour. A value of -1 indicates - that no CPU utilization information is available for this - processor." - ::= { cpqHoCpuUtilEntry 5 } - - cpqHoCpuUtilHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the CPU. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqHoCpuUtilEntry 6 } - - --- **************************************************************************** --- Host OS File System Table --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoFileSys Group (1.3.6.1.4.1.232.11.2.4) --- cpqHoFileSysTable (1.3.6.1.4.1.232.11.2.4.1) --- --- The cpqHoFileSys group contains configuration and status information --- about the file system. --- --- **************************************************************************** - - - - cpqHoFileSysTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoFileSysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of file system descriptions." - ::= { cpqHoFileSys 1 } - - cpqHoFileSysEntry OBJECT-TYPE - SYNTAX CpqHoFileSysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A file system description." - INDEX { cpqHoFileSysIndex } - ::= { cpqHoFileSysTable 1 } - - CpqHoFileSysEntry ::= SEQUENCE { - cpqHoFileSysIndex INTEGER, - cpqHoFileSysDesc DisplayString, - cpqHoFileSysSpaceTotal INTEGER, - cpqHoFileSysSpaceUsed INTEGER, - cpqHoFileSysPercentSpaceUsed INTEGER, - cpqHoFileSysAllocUnitsTotal INTEGER, - cpqHoFileSysAllocUnitsUsed INTEGER, - cpqHoFileSysStatus INTEGER, - cpqHoFileSysShortDesc DisplayString - } - - cpqHoFileSysIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry." - ::= { cpqHoFileSysEntry 1 } - - cpqHoFileSysDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of the file system include the GUID." - ::= { cpqHoFileSysEntry 2 } - - cpqHoFileSysSpaceTotal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The file system size in megabytes. - - This item will be set to -1 if the agent is unable to determine - this information." - ::= { cpqHoFileSysEntry 3 } - - cpqHoFileSysSpaceUsed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The megabytes of file system space currently in use. - - This item will be set to -1 if the agent is unable to determine - this information." - ::= { cpqHoFileSysEntry 4 } - - - cpqHoFileSysPercentSpaceUsed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percent of file system space currently in use. - This item will be set to -1 if this information is not - available." - - ::= { cpqHoFileSysEntry 5 } - - cpqHoFileSysAllocUnitsTotal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of files (directory entries) that can be - stored on the file system if a limit exists other than - total space used. This item will be set to -1 if no such - limit exists." - ::= { cpqHoFileSysEntry 6 } - - cpqHoFileSysAllocUnitsUsed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of files (directory entries) on this file system. - This item will be set to -1 if the agent does not determine this - information." - ::= { cpqHoFileSysEntry 7 } - - cpqHoFileSysStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), -- default state - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Threshold Status. - - This object represent the status of the Filesystem threshold." - ::= { cpqHoFileSysEntry 8 } - - cpqHoFileSysShortDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of the file system." - ::= { cpqHoFileSysEntry 9 } - --- **************************************************************************** --- Host OS File System Table --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoFileSys Group (1.3.6.1.4.1.232.11.2.4) --- cpqHoFileSysCondition (1.3.6.1.4.1.232.11.2.4.2) --- --- The cpqHoFileSys group contains overall condition of Filesystem Threshold --- --- **************************************************************************** - cpqHoFileSysCondition OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), -- default state - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall condition of File System Threshold. - - This object represents the overall status of the server`s - File System Threshold." - ::= { cpqHoFileSys 2 } - --- **************************************************************************** --- Host OS Interface Physical Map Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoIfPhysMap Group (1.3.6.1.4.1.232.11.2.5) deprecated --- cpqHoIfPhysMapTable (1.3.6.1.4.1.232.11.2.5.1) deprecated --- --- --- The cpqHoIfPhysMap group contains information to map interface numbers --- in the MIB-II interface group to the physical interface cards that --- implement the interface. --- --- Implementation of the cpqHoIfPhysMap group is mandatory for all agents --- that support the Host OS MIB. --- --- **************************************************************************** - - cpqHoIfPhysMapTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoIfPhysMapEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of interface to physical hardware mappings." - ::= { cpqHoIfPhysMap 1 } - - cpqHoIfPhysMapEntry OBJECT-TYPE - SYNTAX CpqHoIfPhysMapEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A mapping of an interface table entry to physical hardware." - INDEX { cpqHoIfPhysMapIndex } - ::= { cpqHoIfPhysMapTable 1 } - - CpqHoIfPhysMapEntry ::= SEQUENCE { - cpqHoIfPhysMapIndex INTEGER, - cpqHoIfPhysMapSlot INTEGER, - cpqHoIfPhysMapIoBaseAddr INTEGER, - cpqHoIfPhysMapIrq INTEGER, - cpqHoIfPhysMapDma INTEGER, - cpqHoIfPhysMapMemBaseAddr INTEGER, - cpqHoIfPhysMapPort INTEGER, - cpqHoIfPhysMapDuplexState INTEGER, - cpqHoIfPhysMapCondition INTEGER - } - - cpqHoIfPhysMapIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "An index that uniquely specifies this entry. This value is - equal to the index of the entry in the MIB-II interface table - to which this entry corresponds." - ::= { cpqHoIfPhysMapEntry 1 } - - cpqHoIfPhysMapSlot OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of the slot containing the physical hardware that - implements this interface. The number zero (0) indicates an - embedded interface (on the system board) or an interface whose - slot is unknown. Values may be unknown if the physical - hardware has not been configured using the EISA Configuration - Utility." - ::= { cpqHoIfPhysMapEntry 2 } - - cpqHoIfPhysMapIoBaseAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The base I/O address of the physical hardware that implements - this interface." - ::= { cpqHoIfPhysMapEntry 3 } - - cpqHoIfPhysMapIrq OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of the IRQ (interrupt) used for this physical - hardware interface. The number zero (0) indicates that this - device does not use an IRQ or this information is unavailable." - ::= { cpqHoIfPhysMapEntry 4 } - - cpqHoIfPhysMapDma OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of the DMA channel used for this physical hardware - interface. The number -1 indicates that this device does not - use a DMA channel or this information is unavailable." - ::= { cpqHoIfPhysMapEntry 5 } - - cpqHoIfPhysMapMemBaseAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The base memory address used by this physical hardware - interface. The number zero (0) indicates that this device does - not use system memory or this information is unavailable." - ::= { cpqHoIfPhysMapEntry 6 } - - cpqHoIfPhysMapPort OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The port number of the interface for multi-port NICs. - A port number of -1 indicates that the port could not - be determined." - ::= { cpqHoIfPhysMapEntry 7 } - - cpqHoIfPhysMapDuplexState OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- default - half(2), - full(3) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "This variable describes the configured duplex state of the NIC." - - ::= { cpqHoIfPhysMapEntry 8 } - - cpqHoIfPhysMapCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), -- default - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The condition of this interface." - ::= { cpqHoIfPhysMapEntry 9 } - - cpqHoIfPhysMapOverallCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), -- default - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The overall condition of all interfaces." - ::= { cpqHoIfPhysMap 2 } - --- **************************************************************************** --- Host OS Software Running Table --- ============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoSWRunning Group (1.3.6.1.4.1.232.11.2.6) --- cpqHoSWRunningTable (1.3.6.1.4.1.232.11.2.6.1) --- cpqHoSwRunningTrapDesc (1.3.6.1.4.1.232.11.2.6.2) --- --- --- The cpqHoSWRunning group contains configuration and status information --- about the software running on the host OS. --- --- Implementation of the cpqHoSWRunning group is optional for agents --- that support the Host OS MIB. --- --- **************************************************************************** - - cpqHoSWRunningTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoSWRunningEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of descriptions of software running on the system." - ::= { cpqHoSWRunning 1 } - - cpqHoSWRunningEntry OBJECT-TYPE - SYNTAX CpqHoSWRunningEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a software program running on the system." - INDEX { cpqHoSWRunningIndex } - ::= { cpqHoSWRunningTable 1 } - - CpqHoSWRunningEntry ::= SEQUENCE { - cpqHoSWRunningIndex INTEGER, - cpqHoSWRunningName DisplayString, - cpqHoSWRunningDesc DisplayString, - cpqHoSWRunningVersion DisplayString, - cpqHoSWRunningDate OCTET STRING, - cpqHoSWRunningMonitor INTEGER, - cpqHoSWRunningState INTEGER, - cpqHoSWRunningCount INTEGER, - cpqHoSWRunningCountMin INTEGER, - cpqHoSWRunningCountMax INTEGER, - cpqHoSWRunningEventTime OCTET STRING, - cpqHoSWRunningStatus INTEGER, - cpqHoSWRunningConfigStatus INTEGER, - cpqHoSWRunningIdentifier DisplayString, - cpqHoSWRunningRedundancyMode INTEGER - } - - cpqHoSWRunningIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry." - ::= { cpqHoSWRunningEntry 1 } - - cpqHoSWRunningName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the software." - ::= { cpqHoSWRunningEntry 2 } - - cpqHoSWRunningDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of the software." - ::= { cpqHoSWRunningEntry 3 } - - cpqHoSWRunningVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of the software. - - This field will be a null (size 0) string if the agent cannot - provide the software version." - ::= { cpqHoSWRunningEntry 4 } - - cpqHoSWRunningDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The software 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 software date. The hour, minute, and second field will be - set to zero (0) if they are not relevant." - ::= { cpqHoSWRunningEntry 5 } - - cpqHoSWRunningMonitor OBJECT-TYPE - SYNTAX INTEGER - { - other(1), -- default - start(2), - stop(3), - startAndStop(4), - count(5), - startAndCount(6), - countAndStop(7), - startCountAndStop(8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user specified monitor option for a process." - ::= { cpqHoSWRunningEntry 6 } - - cpqHoSWRunningState OBJECT-TYPE - SYNTAX INTEGER - { - other(1), -- default - started(2), - stopped(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of monitored process." - ::= { cpqHoSWRunningEntry 7 } - - cpqHoSWRunningCount OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "For each process name, the number of instances of the process running on the system is - kept count of, in this variable." - ::= { cpqHoSWRunningEntry 8 } - - cpqHoSWRunningCountMin OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS optional - DESCRIPTION - "This is the lower threshold on cpqHoSWRunningCount to be set by the user." - ::= { cpqHoSWRunningEntry 9 } - - cpqHoSWRunningCountMax OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS optional - DESCRIPTION - "This is the upper threshold on cpqHoSWRunningCount to be set by the user." - ::= { cpqHoSWRunningEntry 10 } - - cpqHoSWRunningEventTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The system time at which the monitored event, as per cpqHoSWRunningMonitor, last occurred. - - 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) - - The hour, minute, and second field will be set to zero (0) if they are not relevant." - ::= { cpqHoSWRunningEntry 11 } - - cpqHoSWRunningStatus OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - normal(2), - warning(3), - minor(4), - major(5), - critical(6), - disabled(7) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The overall alarm state of the resources managed by the software, or the software itself." - ::= { cpqHoSWRunningEntry 12 } - - cpqHoSWRunningConfigStatus OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - starting(2), - initialized(3), - configured(4), - operational(5) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The configuration state of the software. The level of initialization the software has performed." - ::= { cpqHoSWRunningEntry 13 } - - cpqHoSWRunningIdentifier OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The unique identifier of the sofware. This identifier should be unique for all instances of the sofware running in the environment." - ::= { cpqHoSWRunningEntry 14 } - - cpqHoSWRunningRedundancyMode OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - master(2), - backup(3), - slave(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "When the software is running in a high availability mode, the failover mode of this instance of the software." - ::= { cpqHoSWRunningEntry 15 } - - cpqHoSwRunningTrapDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The error message for a process monitor event." - ::= { cpqHoSWRunning 2 } - - --- **************************************************************************** --- Config Software Version Instrumentation Group --- =============================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoSwVer Group (1.3.6.1.4.1.232.11.2.7) --- cpqHoSwVerTable (1.3.6.1.4.1.232.11.2.7.2) --- cpqHoSwVerAgentsVer (1.3.6.1.4.1.232.11.2.7.3) --- --- The cpqSwVer group describes the software version table. --- --- Implementation of the cpqSwVer group is mandatory for all --- agents that support the Host MIB. --- --- The read-write elements of this table should be saved from instance to --- instance of the agent. --- --- This table can be added to by writing to the cpqHoSwVerName (using the --- cpqHoSwVerNextIndex index) field with a new driver name. Writing to --- this field causes the creation of a new table row (and any data that can --- be obtained will be filled in, the remainder will be set to the defaults.) --- --- A row may be deleted by writing to the cpqHoSwVerName field with a null --- entry. --- **************************************************************************** - - cpqHoSwVerNextIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the next available entry in the cpqHoSwVer - table. If the maximum number of entries to the cpqHoSwVer - table has been reached, this index will contain -1." --- --- Writing to the cpqHoSwVerName variable using this index will cause a new --- entry in the table to be created. --- - ::= { cpqHoSwVer 1 } - - cpqHoSwVerTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoSwVerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of software item entries." - ::= { cpqHoSwVer 2 } - - cpqHoSwVerEntry OBJECT-TYPE - SYNTAX CpqHoSwVerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of software items that are on the machine." - INDEX { cpqHoSwVerIndex } - ::= { cpqHoSwVerTable 1 } - - CpqHoSwVerEntry ::= SEQUENCE { - cpqHoSwVerIndex INTEGER, - cpqHoSwVerStatus INTEGER, - cpqHoSwVerType INTEGER, - cpqHoSwVerName DisplayString, - cpqHoSwVerDescription DisplayString, - cpqHoSwVerDate OCTET STRING, - cpqHoSwVerLocation DisplayString, - cpqHoSwVerVersion DisplayString, - cpqHoSwVerVersionBinary DisplayString - } - - cpqHoSwVerIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in the - cpqHoSwVer table." - ::= { cpqHoSwVerEntry 1 } - - cpqHoSwVerStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- undefined (default) - loaded(2), -- and running - notloaded(3) -- found but not loaded - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status for the software item." --- --- Items of type 'other' are those items which the agent could --- not locate. --- - ::= { cpqHoSwVerEntry 2 } - - cpqHoSwVerType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - driver(2), -- (default) - agent(3), - sysutil(4), - application(5), - keyfile(6), - firmware(7) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Type of software item." - ::= { cpqHoSwVerEntry 3 } - - cpqHoSwVerName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of this software item." --- --- Writing to this entry with an index equal to cpqHoSwVerNextIndex --- causes a table row to be created, and all entries to be filled in. --- --- Writing to this entry with a NULL name deletes the current row. --- - ::= { cpqHoSwVerEntry 4 } - - cpqHoSwVerDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of this software item." --- --- A length of 0 indicates that the description of this item is --- not available. --- --- Writing to this entry can cause the entire row to be updated. --- - ::= { cpqHoSwVerEntry 5 } - - cpqHoSwVerDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the software item, if any. - - field octets contents range - ===== ====== ======= ===== - 1 1-2 year 0..65535 - 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) - - The year field is set with the most significant octet first. - - An entry of zero (0) means that there is no date associated with - this software item. Zero is the default." - ::= { cpqHoSwVerEntry 6 } - - cpqHoSwVerLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of this software item on the server." - ::= { cpqHoSwVerEntry 7 } - - cpqHoSwVerVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An string that specifies the version of this item." - ::= { cpqHoSwVerEntry 8 } - - cpqHoSwVerVersionBinary OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An string that specifies the version of this item based on - the binary version resource." - ::= { cpqHoSwVerEntry 9 } - --- --- New for release 7.10: cpqHoSwVerAgentsVer --- - cpqHoSwVerAgentsVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A string that specifies the version of the Insight - Management Agents running on the system." - ::= { cpqHoSwVer 3 } - - --- **************************************************************************** --- The cpqHoGeneric group holds only the generic trap --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoGeneric Group (1.3.6.1.4.1.232.11.2.8) --- --- Implementation of this group is optional. --- --- **************************************************************************** - cpqHoGenericData OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..254)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Data for the generic trap." --- --- This is the data variable that is sent with the generic trap below. --- --- Writing to this variable will cause the generic trap to be sent with --- the newly written data. --- - ::= { cpqHoGeneric 1 } - - cpqHoCriticalSoftwareUpdateData OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..512)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Data for the Critical Software Update trap." --- --- This is the data variable that is sent with the Critical Software --- update Notification Trap below. --- Writing to this variable will cause the Critical Software update Notification Trap --- to be sent with the newly written data. --- - ::= { cpqHoGeneric 2 } - --- **************************************************************************** --- Software Performance Group --- =========================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoSwPerf Group (1.3.6.1.4.1.232.11.2.9) --- --- Implementation of this group is optional. --- --- **************************************************************************** - cpqHoSwPerfAppErrorDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..254)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - " This string holds error information about the last application - error that occurred in the system. " - - ::= { cpqHoSwPerf 1 } - --- **************************************************************************** --- System Status Group --- =================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoSystemStatus Group (1.3.6.1.4.1.232.11.2.10) --- --- Implementation of this group is mandatory. --- --- **************************************************************************** - - cpqHoMibStatusArray OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (4..256)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The MIB Status Array is an array of MIB status structures. Each - structure is made up of 4 octets. The first octet is the MIB - presence. The second octet is MIB condition. The third octet is - MIB major revision. The fourth octet is MIB minor revision. These - blocks of 4 octets each are index by the mib identifier just after - the compaq enterprise (eg in 1.3.6.1.232.11 mib, the index is 11). - The 4 octets in the first block (block 0) are reserved for systems - management and serve as an aggregate of the other mibs. - - Array element 0 is the status for all MIBs in the Compaq - Enterprise. Array element n, where n > 0, is the status for the - nth MIB in the Compaq Enterprise (.1.3.6.1.4.1.232.n). - - Octet Element Field - ======== ======= ========= - 0 0 Status of any Compaq MIBs - 1 Condition of all Compaq MIBs - 2 System Flags (see below) - 3 Detailed type (see below) - 4 1 Status of Compaq MIB 1 - 5 Condition of Compaq MIB 1 - 6 Major Revision of Compaq MIB 1 - 7 Minor Revision of Compaq MIB 1 - 8 2 Status of Compaq MIB 2 - 9 Condition of Compaq MIB 2 - 10 Major Revision of Compaq MIB 2 - 11 Minor Revision of Compaq MIB 2 - . . - . - . - n*4 n Status of Compaq MIB n - (n*4)+1 Condition of Compaq MIB n - (n*4)+2 Major Revision of Compaq MIB n - (n*4)+3 Minor Revision of Compaq MIB n - - System Flags (octet 2) - Bit Meaning - ===== ========= - 0 Equals 1 if the device is not a server, see detailed type below - Equals 0 if the device is a server - 1 This system contains enabled remote console - functionality. - 2 This system is configured to be an Integration Server. - 3 Web Based Management is enabled. - 4-7 Reserved (reserved Bits should be zero) - - Detailed Type (octet 3) - Bits 0-4 Detailed Type, only used if bit 0 in octet 2 is 1. - Bits 5-7 Reserved for expansion. note, use these last in case we - need more then 32 types someday. - - Type Values for Bits 0-4 (maps to CIM7 types) - Unknown = 0 - Server = 1 (yes a duplicate of the server flag) - Desktop = 2 - Workstation = 3 - Portable = 4 - Router = 5 - Cluster = 6 - Printer = 7 - Switch = 8 (network switch) - Repeater = 9 - Remote Access Device = 10 - Other = 11 - Management Processor = 12 (rib, RILOE, iLo) - Rack = 13 - Enclosure = 14 - KVM Switch = 15 (IP enabled keyboard video mouse switch). - UPS = 16 - Power Distribution Unit = 17 - Environmental Monitor = 18 (eg CMC) - Power Distribution Rack = 19 (PDR) - Storage Device = 20 - - For all other blocks, they are defined as: - Status This is a collection of flags. Each bit has the - following meaning when it is on (1): - - Bit 2-7: RESERVED: Always 0 - Bit 1: MIB is from offline data (only applies - to global system status) - Bit 0: MIB is available - - NOTE: bit 7 is the most significant bit, bit 0 - is the least significant. - - Condition 0 - Not available - 1 - Other - 2 - OK - 3 - Degraded - 4 - Failed - - Major Revision 0..255, where 0 is not available - Minor Revision 0..255, where 0 is not available" - - - - ::= { cpqHoSystemStatus 1 } - - cpqHoConfigChangedDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date/time when the agents were last loaded. - - 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 date/time. The year field is set with the most significant - octet first." - ::= { cpqHoSystemStatus 2 } - - cpqHoGUID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (16..17)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The globally unique identifier of this physical server. - If the OS cannot determine a unique ID, it will default the - variable to contain all 0`s. The management station can then - perform a SET to this variable to provide the unique ID. - When the system is cellular, it will have its partition number - appended at the end." - ::= { cpqHoSystemStatus 3 } - - cpqHoCodeServer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This item indicates how many code server shares are currently - configured on the system. If the value of this attribute is - 0, this server has not been configured with code server shares." - ::= { cpqHoSystemStatus 4 } - - cpqHoWebMgmtPort OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This item indicates the port used by the Insight Web Agent. - If the port cannot be determined or the Web Management agent - is not enabled, this value will be -1." - ::= { cpqHoSystemStatus 5 } - - cpqHoGUIDCanonical OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (32..36)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The globally unique identifier in canonical format of this - physical server. If the OS cannot determine a unique ID, it will - default the variable to blank." - ::= { cpqHoSystemStatus 6 } - - cpqHoMibHealthStatusArray OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..256)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The MIB Health Status Array is an array of status values representing an - overall status in element 0 follwed by server and storage status values as follows: - - Octet Element Field - ======== ======= ========= - 0 0 Aggregated Status of array elements - 1 1 Status of element 1 - 2 2 Status of element 2 - . - . - . - n n Status of element n - - - Status 0 - Not available - 1 - Other - 2 - OK - 3 - Degraded - 4 - Failed - . - . - Mibs are assigned an array element as follows. New items are added at the end. - 0 - System Health Status (overall status as reported by who is reporting (agents or iLO)) - 1 - Total Aggregate (Includes IML Status) - 2 - Processors (TBD 232.1.2.2.4:cpqSeCpuCondition) - 3 - Memory (232.6.2.14.4:cpqHeResilientMemCondition) - 4 - Cooling (232.6.2.6.4:cpqHeThermalSystemFanStatus) - 5 - Sensors (232.6.2.6.3:cpqHeThermalTempStatus) - 6 - Power (232.6.2.9.1:cpqHeFltTolPwrSupplyCondition) - 7 - ProLiant Logs (232.6.2.11.2:cpqHeEventLogCondition) - 8 - ASR (232.6.2.5.17:cpqHeAsrCondition) - 9 - Drive Array (232.3.1.3:cpqDaMibCondition) - 10 - SCSI (232.5.1.3:cpqScsiMibCondition) - 11 - Storage Enclosures (232.8.1.3:cpqSsMibCondition) - 12 - IDE (232.14.1.3:cpqIdeMibCondition) - 13 - FC (232.16.1.3:cpqFcaMibCondition) - 14 - Networks (232.18.1.3:cpqNicMibCondition) - 15 - MP (232.9.1.3:cpqSm2MibCondition) - 16 - HW/BIOS (232.6.2.16.1:cpqHeHWBiosCondition) - 17 - Battery (232.6.2.17.1:cpqHeSysBackupBatteryCondition) - 18 - iSCSI (232.169.1.3:cpqiScsiMibCondition)" - - ::= { cpqHoSystemStatus 7 } - --- **************************************************************************** --- Trap Info Group --- ================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoTrapInfo Group (1.3.6.1.4.1.232.11.2.11) --- --- Implementation of this group is mandatory. --- --- **************************************************************************** - - cpqHoTrapFlags OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Trap Flags. - - - This is a collection of flags used during trap delivery. - Each bit has the following meaning: - - Bit 5-31: RESERVED: Always 0. - Bit 2-4: Trap Condition - 0 = Not used (for backward compatibility) - 1 = Condition unknown or N/A - 2 = Condition ok - 3 = Condition degraded - 4 = Condition failed - 5-7 = reserved - Bit 1: Client IP address type - 0 = static entry - 1 = DHCP entry - Bit 0: Agent Type - 0 = Server - 1 = Client - - NOTE: bit 31 is the most significant bit, bit 0 is the least - significant." - - ::= { cpqHoTrapInfo 1 } - - --- **************************************************************************** --- OS Client Table --- ==================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) ---- cpqHoClient Group (1.3.6.1.4.1.232.11.2.12) --- --- The cpqHoClient table contains entries describing identification, --- address, and status information about each unit that is using --- services provided by this unit. --- --- **************************************************************************** - - - - cpqHoClientLastModified OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date/time of the last modification to the client table. - - 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 all 0`s if there are no entries to the - client table. - - The year field will be set to 0xFFFF if the agent does not support - the client table. - - The year field is set with the most significant octet first." - ::= { cpqHoClients 1 } - - cpqHoClientDelete OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..15)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to the name of a client in the client table - will cause that row in the table to be deleted. Any other set - will fail. - - Note that the indices of the table will (most likely) be renumbered - following a deletion." - ::= { cpqHoClients 2 } - - - cpqHoClientTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoClientEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of client descriptions." - ::= { cpqHoClients 3 } - - cpqHoClientEntry OBJECT-TYPE - SYNTAX CpqHoClientEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A client description." - INDEX { cpqHoClientIndex } - ::= { cpqHoClientTable 1 } - - CpqHoClientEntry ::= SEQUENCE { - cpqHoClientIndex INTEGER, - cpqHoClientName DisplayString, - cpqHoClientIpxAddress OCTET STRING, - cpqHoClientIpAddress IpAddress, - cpqHoClientCommunity DisplayString, - cpqHoClientID OCTET STRING - } - - cpqHoClientIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry." - ::= { cpqHoClientEntry 1 } - - cpqHoClientName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..15)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Win95 machine name of this client." - --- Note that Win95 limits the machine name to a maximum of 15 characters. - - ::= { cpqHoClientEntry 2 } - - cpqHoClientIpxAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (20)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IPX address for this client, all octets should be set to - 0xff if this machine does not support IPX. - - The format is NetAddr:NodeNumber and sent in MSB order: - - 1111111111 - 01234567:890123456789" - --- Note, this item is still in definition and probably will change. - - ::= { cpqHoClientEntry 3 } - - cpqHoClientIpAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP address for this client, all octets should be set to - 0xff if this machine does not support IP. The order will be - in network byte order (ie MSB first.)" - - ::= { cpqHoClientEntry 4 } - - cpqHoClientCommunity OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..48)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A community name that can be used to query the client with SNMP. - This community name should have, but is not required to have, - the greatest possible access to client information." - ::= { cpqHoClientEntry 5 } - - cpqHoClientID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unique identifier of this client." - ::= { cpqHoClientEntry 6 } - --- **************************************************************************** --- OS Memory Group --- =============== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) ---- cpqHoMemory Group (1.3.6.1.4.1.232.11.2.13) --- --- The cpqHoMemory group contains entries describing memory --- as seen by the OS. --- --- **************************************************************************** - - cpqHoPhysicalMemorySize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total amount of physical memory as seen by the OS (in megabytes). - - A -1 will be returned if this value could not be determined." - ::= { cpqHoMemory 1 } - - cpqHoPhysicalMemoryFree OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of free physical memory (in megabytes). - - A -1 will be returned if this value could not be determined." - ::= { cpqHoMemory 2 } - - cpqHoPagingMemorySize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total virtual memory available from the OS (in megabytes). - - A -1 will be returned if this value could not be determined." - ::= { cpqHoMemory 3 } - - cpqHoPagingMemoryFree OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Available paging memory (in megabytes). - - A -1 will be returned if this value could not be determined." - ::= { cpqHoMemory 4 } - - cpqHoBootPagingFileSize OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The paging file size of the boot volume in the format xxxMB or - xxxGB, where xxx is the paging file size in that unit shown right - after it. - - NULL value will be returned if this value could not be determined." - ::= { cpqHoMemory 5 } - - cpqHoBootPagingFileMinimumSize OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Minimum paging file size of the boot volume required to save the - memory dump in the event of a system crash. The format is xxxMB or - xxxGB, where xxx is the minimum paging file size in that unit shown - right after it." - ::= { cpqHoMemory 6 } - - cpqHoBootPagingFileVolumeFreeSpace OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10)) - ACCESS read-only - STATUS optional - DESCRIPTION - "Free space of the boot volume required to save the memory dump in the - event of a system crash. The format is xxxMB or xxxGB, where xxx is - the minimum paging file size in that unit shown right after it." - ::= { cpqHoMemory 7 } - --- **************************************************************************** --- Firmware Version Instrumentation Group --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoFwVer Group (1.3.6.1.4.1.232.11.2.14) --- cpqHoFwVerTable (1.3.6.1.4.1.232.11.2.14.1) --- --- The cpqHoFwVer group describes the firmware version table. --- --- Implementation of the cpqHoFwVer group is mandatory for all --- agents that support the Host MIB. --- --- **************************************************************************** - - cpqHoFwVerTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqHoFwVerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of firmware item entries." - ::= { cpqHoFwVer 1 } - - cpqHoFwVerEntry OBJECT-TYPE - SYNTAX CpqHoFwVerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of firmware items that are on the machine." - INDEX { cpqHoFwVerIndex } - ::= { cpqHoFwVerTable 1 } - - CpqHoFwVerEntry ::= SEQUENCE { - cpqHoFwVerIndex INTEGER, - cpqHoFwVerCategory INTEGER, - cpqHoFwVerDeviceType INTEGER, - cpqHoFwVerDisplayName DisplayString, - cpqHoFwVerVersion DisplayString, - cpqHoFwVerLocation DisplayString, - cpqHoFwVerXmlString DisplayString, - cpqHoFwVerKeyString DisplayString, - cpqHoFwVerUpdateMethod INTEGER - } - - cpqHoFwVerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Index. - - The firmware version index uniquely identifies an entry in the - cpqHoFwVer table." - ::= { cpqHoFwVerEntry 1 } - - cpqHoFwVerCategory OBJECT-TYPE - SYNTAX INTEGER { - other(1), - storage(2), - nic(3), - rib(4), - system(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Category." - ::= { cpqHoFwVerEntry 2 } - - cpqHoFwVerDeviceType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - internalArrayController(2), - fibreArrayController(3), - scsiController(4), - fibreChannelTapeController(5), - modularDataRouter(6), - ideCdRomDrive(7), - ideDiskDrive(8), - scsiCdRom-ScsiAttached(9), - scsiDiskDrive-ScsiAttached(10), - scsiTapeDrive-ScsiAttached(11), - scsiTapeLibrary-ScsiAttached(12), - scsiDiskDrive-ArrayAttached(13), - scsiTapeDrive-ArrayAttached(14), - scsiTapeLibrary-ArrayAttached(15), - scsiDiskDrive-FibreAttached(16), - scsiTapeDrive-FibreAttached(17), - scsiTapeLibrary-FibreAttached(18), - scsiEnclosureBackplaneRom-ScsiAttached(19), - scsiEnclosureBackplaneRom-ArrayAttached(20), - scsiEnclosureBackplaneRom-FibreAttached(21), - scsiEnclosureBackplaneRom-ra4x00(22), - systemRom(23), - networkInterfaceController(24), - remoteInsightBoard(25), - sasDiskDrive-SasAttached(26), - sataDiskDrive-SataAttached(27), - usbController(28), - sasControllerAdapter(29), - sataControllerAdapter(30), - systemDevice(31), - fibreChannelHba(32), - convergedNetworkAdapter(33), - ideController(34) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Device Type." - ::= { cpqHoFwVerEntry 3 } - - cpqHoFwVerDisplayName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Device Display Name. - - This is the display name of the device containing the firmware." - ::= { cpqHoFwVerEntry 4 } - - cpqHoFwVerVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..31)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version. - - This is the version of the device firmware." - ::= { cpqHoFwVerEntry 5 } - - cpqHoFwVerLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Device Location. - - This is a printable string that specifies the location of the - device that contains the firmware." - ::= { cpqHoFwVerEntry 6 } - - cpqHoFwVerXmlString OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Xml String. - - This is an XML string that specifies the location of the device - that contains the firmware. - This will be NULL string (size 0) if this information could not - be provided." - ::= { cpqHoFwVerEntry 7 } - - cpqHoFwVerKeyString OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version Key String. - - This field is differentiate devices of the same type." - ::= { cpqHoFwVerEntry 8 } - - - cpqHoFwVerUpdateMethod OBJECT-TYPE - SYNTAX INTEGER { - other(1), - noUpdate(2), - softwareflash(3), - replacePhysicalRom(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Firmware Version update method." - ::= { cpqHoFwVerEntry 9 } - - --- **************************************************************************** --- Hardware Information Group --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOs Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqHoHWInfo Group (1.3.6.1.4.1.232.11.2.15) --- cpqHoHWInfoPlatform (1.3.6.1.4.1.232.11.2.15.1) --- --- The cpqHoHWInfo group describes some hw information necessary to other agents. --- --- Implementation of the cpqHoHWInfo group is optional for --- agents that support the Host MIB. --- --- **************************************************************************** - cpqHoHWInfoPlatform OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - cellular(2), - foundation(3), - virtualMachine(4), - serverBlade(5) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "Hardware platform type. - - This object represents the platform type of the server`s host - system represented by this MIB." - ::= { cpqHoHWInfo 1 } - --- **************************************************************************** --- The cpqPwrThreshold group holds data for the --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqHostOS Group (1.3.6.1.4.1.232.11) --- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) --- cpqPwrThreshold Group (1.3.6.1.4.1.232.11.2.16) --- --- Implementation of this group is mandatory. --- --- **************************************************************************** - cpqPwrWarnType OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..254)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Type of power reading on which the warning is based." - - ::= { cpqPwrThreshold 1 } - - cpqPwrWarnThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The threshold the power usage must exceed (in Watts)." - - ::= { cpqPwrThreshold 2 } - - cpqPwrWarnDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Duration that power usage must be exceeded before warning (in minutes)." - - ::= { cpqPwrThreshold 3 } - - cpqSerialNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..254)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Serial number of the server." - - ::= { cpqPwrThreshold 4 } - - cpqServerUUID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..254)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Server UUID" - - ::= { cpqPwrThreshold 5 } - - --- **************************************************************************** --- Host MIB Trap Definitions --- ========================= --- --- The SNMP trap messages must not be bigger than 484 octets (bytes). --- --- Trap support in an SNMP agent implementation is optional. An SNMP --- agent implementation may support all, some, or none of the traps. --- If traps are supported, The user should be provided with the option of --- disabling traps. --- --- Implementation of cpqHoGenericTrap is a mandatory part of the Generic --- group. --- --- ************************************************************************** - - cpqHoGenericTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqHoGenericData } - DESCRIPTION - -- This trap is a generic trap, and left undefined. - "Generic trap." - - --#TYPE "Generic trap (11001)" - --#SUMMARY "%s" - --#ARGUMENTS {0} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - - ::= 11001 - - cpqHoAppErrorTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqHoSwPerfAppErrorDesc } - DESCRIPTION - "An application has generated an exception. Specific - error information is contained in the variable - cpqHoSwPerfAppErrorDesc." - - --#TYPE "Application Error Trap (11002)" - --#SUMMARY "%s" - --#ARGUMENTS {0} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - - ::= 11002 - - - cpqHo2GenericTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoGenericData } - DESCRIPTION - -- This trap is a generic trap, and left undefined. - "Generic trap." - - --#TYPE "Generic trap (11003)" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY INFORMATIONAL - --#HWSTATUS_CATEGORY NONE - - ::= 11003 - - cpqHo2AppErrorTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoSwPerfAppErrorDesc } - DESCRIPTION - "An application has generated an exception. Specific - error information is contained in the variable - cpqHoSwPerfAppErrorDesc." - - --#TYPE "Application Error Trap (11004)" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 11004 - - cpqHo2NicStatusOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot } - DESCRIPTION - "This trap will be sent any time the status of a NIC changes to - the OK condition." - - --#TYPE "Status Trap (11005)" - --#SUMMARY "NIC Status is OK for slot %s." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - ::= 11005 - - cpqHo2NicStatusFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot } - DESCRIPTION - "This trap will be sent any time the status of a NIC changes to - the Failed condition." - - --#TYPE "Status Trap (11006)" - --#SUMMARY "NIC Status is Failed for slot %s." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - ::= 11006 - - cpqHo2NicSwitchoverOccurred TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, cpqHoIfPhysMapSlot } - DESCRIPTION - "This trap will be sent any time the configured redundant NIC - becomes the active NIC." - - --#TYPE "Status Trap (11007)" - --#SUMMARY "NIC switchover to slot %s from slot %s." - --#ARGUMENTS {2, 3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - ::= 11007 - - - cpqHo2NicStatusOk2 TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, - cpqHoIfPhysMapPort } - DESCRIPTION - "This trap will be sent any time the status of a NIC changes to - the OK condition." - - --#TYPE "Status Trap (11008)" - --#SUMMARY "NIC status is ok for slot %s, port %s." - --#ARGUMENTS {2, 3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NETWORK - - ::= 11008 - - cpqHo2NicStatusFailed2 TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, - cpqHoIfPhysMapPort } - DESCRIPTION - "This trap will be sent any time the status of a NIC changes to - the Failed condition." - - --#TYPE "Status Trap (11009)" - --#SUMMARY "NIC status is failed for slot %s, port %s." - --#ARGUMENTS {2, 3} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NETWORK - --#ACTION "Check the network cables. Replace the failed NIC." - - ::= 11009 - - cpqHo2NicSwitchoverOccurred2 TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, - cpqHoIfPhysMapPort, cpqHoIfPhysMapSlot, - cpqHoIfPhysMapPort } - DESCRIPTION - "This trap will be sent any time the configured redundant NIC - becomes the active NIC." - - --#TYPE "Status Trap (11010)" - --#SUMMARY "NIC switchover to slot %s, port %s from slot %s, port %s." - --#ARGUMENTS {2, 3, 4, 5} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NETWORK - --#ACTION "Examine the network connections and check for a NIC failure." - ::= 11010 - - cpqHoProcessEventTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoSwRunningTrapDesc } - DESCRIPTION - "A monitored process has either started or stopped running." - - --#TYPE "Process Monitor Event Trap (11011)" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 11011 - - cpqHoProcessCountWarning TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoSWRunningName, cpqHoSWRunningCount, - cpqHoSWRunningCountMin, cpqHoSWRunningCountMax, - cpqHoSWRunningEventTime } - DESCRIPTION - "A monitored process count has violated the thresholds set on cpqHoSWRunningCount" - - --#TYPE "Process Count Event Trap (11012)" - --#SUMMARY "Process %s has count %s which violates the thresholds %s to %s." - --#ARGUMENTS {2, 3, 4, 5} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 11012 - - cpqHoProcessCountNormal TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoSWRunningName, cpqHoSWRunningCount, - cpqHoSWRunningCountMin, cpqHoSWRunningCountMax, - cpqHoSWRunningEventTime } - DESCRIPTION - "A monitored process count has returned back to normal." - - --#TYPE "Process Monitor Event Trap (11013)" - --#SUMMARY "Process %s has count %s which respects the thresholds %s to %s." - --#ARGUMENTS {2, 3, 4, 5} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - - ::= 11013 - - cpqHoCriticalSoftwareUpdateTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoCriticalSoftwareUpdateData } - DESCRIPTION - "This trap is a send to the user to notify him of a Critical Software Update." - - --#TYPE "Critical Software update Notification Trap (11014)" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY NONE - --#ACTION "Install the required software updates." - - ::= 11014 - - cpqHoCrashDumpNotEnabledTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoCrashDumpState } - DESCRIPTION - "This trap is sent to the user to notify him that the Crash Dump is not enabled. - This trap is not sent if cpqHoCrashDumpMonitoring is disabled." - - --#TYPE "Crash Dump not enabled Notification Trap (11015)" - --#SUMMARY "Crash dump is not enabled." - --#ARGUMENTS {} - --#SEVERITY WARNING - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 11015 - - - cpqHoBootPagingFileTooSmallTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoCrashDumpState, cpqHoBootPagingFileSize, cpqHoBootPagingFileMinimumSize } - DESCRIPTION - "This trap is sent when the paging file size of the boot volume or the target volume of the memory dump file is too small to hold a crash dump. - This trap is not sent if cpqHoCrashDumpMonitoring is disabled." - - --#TYPE "Boot Paging File Or Memory Dump Target Volume Too Small Notification Trap (11016)" - --#SUMMARY "The paging file size of the boot volume (%s) or the target volume of the memory dump file is not large enough to hold a crash dump in the event of a system crash (%s)." - --#ARGUMENTS {3, 4} - --#SEVERITY WARNING - --#TIMEINDEX 99 - - ::= 11016 - - cpqHoSWRunningStatusChangeTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoSWRunningName, cpqHoSWRunningDesc,cpqHoSwRunningTrapDesc, cpqHoSWRunningVersion,cpqHoSWRunningStatus, cpqHoSWRunningConfigStatus, cpqHoSWRunningIdentifier, cpqHoSWRunningRedundancyMode } - DESCRIPTION - "This trap notifies the user that the running software has changed status, configuration status, or redundancy mode." - - --#TYPE "Software status change Notification Trap (11017)" - --#SUMMARY "Software status change for %s, description = %s, id = %s" - --#ARGUMENTS {2, 4, 8} - --#SEVERITY WARNING - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 11017 - - cpqHo2PowerThresholdTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqPwrWarnType, cpqPwrWarnThreshold, cpqPwrWarnDuration, cpqSerialNum, cpqServerUUID } - DESCRIPTION - -- This trap notifies user of a power threshold breach. - "Power threshold exceeded." - - --#TYPE "Power Threshold Exceeded (11018)" - --#SUMMARY "Power threshold has been exceeded (Warning Type: %s, Threshold: %d watts, Duration: %d minutes)" - --#ARGUMENTS {2, 3, 4} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY POWER - - ::= 11018 - - cpqHoBootPagingFileOrFreeSpaceTooSmallTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoCrashDumpState, cpqHoBootPagingFileSize, cpqHoBootPagingFileVolumeFreeSpace, cpqHoBootPagingFileMinimumSize } - DESCRIPTION - "This trap is sent when the paging file size of the boot volume or the free space of memory dump target volume is too small to hold a crash dump." - --#TYPE "Boot Paging File Or Memory Dump Target Volume Too Small Notification Trap (11016)" - --#SUMMARY "The paging file size of the boot volume (%s) or the free space of the memory dump target volume (%s) is not large enough to hold a crash dump in the event of a system crash (%s)." - --#ARGUMENTS {3, 4, 5} - --#SEVERITY WARNING - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 11019 - - cpqHoMibHealthStatusArrayChangeTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqHoMibHealthStatusArray } - DESCRIPTION - "A change in the cpqHoMibHealthStatusArray has occurred." - --#TYPE "Health Status Array Change occurred (11020)" - --#SUMMARY "A change in the health status of the server has occurred, the status is now %s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR - - ::= 11020 - - - END - diff --git a/mibs/orig/CPQIDA-MIB b/mibs/orig/CPQIDA-MIB deleted file mode 100644 index c7906aa..0000000 --- a/mibs/orig/CPQIDA-MIB +++ /dev/null @@ -1,11238 +0,0 @@ --- **************************************************************************** --- --- Intelligent Drive Array --- Management Information Base for SNMP Network Management --- --- --- Copyright 1992, 2017 Hewlett-Packard Enterprise Development, L.P. --- Hewlett-Packard Enterprise Company shall not be liable for technical or --- editorial errors or omissions contained herein. The information in --- this document is provided "as is" without warranty of any kind and --- is subject to change without notice. The warranties for HP products --- are set forth in the express limited warranty statements --- accompanying such products. Nothing herein should be construed as --- constituting an additional warranty. --- --- Confidential computer software. Valid license from HP required for --- possession, use or copying. Consistent with FAR 12.211 and 12.212, --- Commercial Computer Software, Computer Software Documentation, and --- Technical Data for Commercial Items are licensed to the U.S. --- Government under vendor's standard commercial license. --- --- Refer to the READMIB.RDM file for more information about the --- organization of the information in the Compaq Enterprise. --- --- The Compaq Enterprise number is 232. --- The ASN.1 prefix to, and including the Compaq Enterprise is: --- 1.3.6.1.4.1.232 --- --- **************************************************************************** - -CPQIDA-MIB DEFINITIONS ::= BEGIN - - IMPORTS - compaq FROM CPQHOST-MIB --- enterprises FROM RFC1155-SMI - Counter FROM RFC1155-SMI - Gauge FROM RFC1155-SMI - DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212 - TRAP-TYPE FROM RFC-1215 - sysName FROM RFC1213-MIB - cpqHoTrapFlags FROM CPQHOST-MIB; - --- compaq OBJECT IDENTIFIER ::= { enterprises 232 } - - cpqDriveArray OBJECT IDENTIFIER ::= { compaq 3 } - cpqDaMibRev OBJECT IDENTIFIER ::= { cpqDriveArray 1 } - cpqDaComponent OBJECT IDENTIFIER ::= { cpqDriveArray 2 } - cpqDaTrap OBJECT IDENTIFIER ::= { cpqDriveArray 3 } - - cpqDaInterface OBJECT IDENTIFIER ::= { cpqDaComponent 1 } - cpqDaCntlr OBJECT IDENTIFIER ::= { cpqDaComponent 2 } - cpqDaLogDrv OBJECT IDENTIFIER ::= { cpqDaComponent 3 } - cpqDaSpareDrv OBJECT IDENTIFIER ::= { cpqDaComponent 4 } - cpqDaPhyDrv OBJECT IDENTIFIER ::= { cpqDaComponent 5 } - cpqDaPhyDrvThr OBJECT IDENTIFIER ::= { cpqDaComponent 6 } - cpqDaCntlrPerf OBJECT IDENTIFIER ::= { cpqDaComponent 7 } - cpqDaLogDrvPerf OBJECT IDENTIFIER ::= { cpqDaComponent 8 } - cpqDaTapeDrv OBJECT IDENTIFIER ::= { cpqDaComponent 9 } - cpqDaTapeCounters OBJECT IDENTIFIER ::= { cpqDaComponent 10 } - cpqDaTapeLibrary OBJECT IDENTIFIER ::= { cpqDaComponent 11 } - - cpqDaOsNetWare3x OBJECT IDENTIFIER ::= { cpqDaInterface 1 } - cpqDaOsCommon OBJECT IDENTIFIER ::= { cpqDaInterface 4 } - --- **************************************************************************** --- Drive Array MIB Revision --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaMibRev Group (1.3.6.1.4.1.232.3.1) --- --- An SNMP agent conforming to this document will return a --- cpqDaMibRevMajor of one (1) and a cpqDaMibRevMinor of --- ninety (90). --- --- Implementation of the cpqDaMibRev group is mandatory for all agents --- supporting the Drive Array MIB. --- --- **************************************************************************** - - cpqDaMibRevMajor 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." - ::= { cpqDaMibRev 1 } - - cpqDaMibRevMinor 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." - ::= { cpqDaMibRev 2 } - - cpqDaMibCondition 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." - ::= { cpqDaMibRev 3 } - --- **************************************************************************** --- Drive Array NetWare Driver Information --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaInterface Group (1.3.6.1.4.1.232.3.2.1) --- cpqDaOsNetWare3x Group (1.3.6.1.4.1.232.3.2.1.1) --- --- The osNetWare3x group describes the Drive Array NetWare OS --- interface. This information describes the driver module and its --- status. --- --- Implementation of the cpqDaOsNetWare3x group is mandatory for all --- agents that support the Drive Array MIB in a NetWare 3x host --- operating environment. --- --- **************************************************************************** - - cpqDaNw3xDriverName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Controller Driver Interface Name. - - This is the name of the device driver for the Array - Controllers." - ::= { cpqDaOsNetWare3x 1 } - - cpqDaNw3xDriverVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Controller Driver Interface Version. - - This is the version number of the device driver for - the Array Controllers." - ::= { cpqDaOsNetWare3x 2 } - - cpqDaNw3xPollType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - polled(2), - demand(3) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Controller Driver Interface Poll Type. - - The Insight Agent collects information from the - device driver in two ways: - - Polled (2) - Indicates that the information is periodically requested and - stored by the server based agent and is available when - requested. - - Demand (3) - Indicates that the information is collected at the time of - the request." - ::= { cpqDaOsNetWare3x 3 } - - cpqDaNw3xPollTime OBJECT-TYPE - SYNTAX INTEGER (1..300) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Controller Driver Interface Poll Time. - - If the Poll Type is Polled, this value shows how frequently, - in seconds, the instrument agent requests Information from - the device driver. - - For example, if the Poll Type is Polled and the Poll Time - is two, the instrument agent will poll the device driver - every two seconds. - - To change the Poll Time for NetWare, unload and then - reload the instrument agent using the following commands: - - UNLOAD CPQDSKSA - LOAD CPQDSKSA [/Un] - - The parameter /U specifies the frequency of updates in seconds. - The variable n represents the number of seconds that the NLM - should wait before collecting new data. The minimum value is - one second. The maximum value is 300 seconds (five minutes)." - ::= { cpqDaOsNetWare3x 4 } - --- **************************************************************************** --- Drive Array NetWare Driver Statistics --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaInterface Group (1.3.6.1.4.1.232.3.2.1) --- cpqDaOsNetWare3x Group (1.3.6.1.4.1.232.3.2.1.1) --- cpqDaNw3xDriverStatTable (1.3.6.1.4.1.232.3.2.1.1.5) (deprecated) --- --- **************************************************************************** - - cpqDaNw3xDriverStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaNw3xDriverStatEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Array Controller Driver Statistics Table. - - This is a table of logical drive statistics which are gathered - by the device driver." - ::= { cpqDaOsNetWare3x 5 } - - cpqDaNw3xDriverStatEntry OBJECT-TYPE - SYNTAX CpqDaNw3xDriverStatEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Array Controller Driver Statistics Table Entry. - - One entry in the driver statistics table. Each entry - represents a logical drive for which the statistics are kept." - INDEX { cpqDaNw3xCntlrIndex, cpqDaNw3xLogDrvIndex } - ::= { cpqDaNw3xDriverStatTable 1 } - - CpqDaNw3xDriverStatEntry ::= SEQUENCE - { - cpqDaNw3xCntlrIndex INTEGER, - cpqDaNw3xLogDrvIndex INTEGER, - cpqDaNw3xTotalReads Counter, - cpqDaNw3xTotalWrites Counter, - cpqDaNw3xCorrReads Counter, - cpqDaNw3xCorrWrites Counter, - cpqDaNw3xFatalReads Counter, - cpqDaNw3xFatalWrites Counter - } - - cpqDaNw3xCntlrIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Controller Index. - - This maps the logical drives into their respective controllers. - This controller index matches the controller group entries." - ::= { cpqDaNw3xDriverStatEntry 1 } - - cpqDaNw3xLogDrvIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Index. - - This is the logical drive number which keeps track of multiple - instances of logical drives which are on the same controller. - For each controller index value, the logical drive index starts - at 1 and increments for each logical drive." - ::= { cpqDaNw3xDriverStatEntry 2 } - - cpqDaNw3xTotalReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Total Reads. - - This shows the total number of reads performed by the IDA device - driver to this logical drive. This number is reset each time the - device driver is loaded for this logical drive." - ::= { cpqDaNw3xDriverStatEntry 3 } - - cpqDaNw3xTotalWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Total Writes. - - This shows the total number of writes performed by the IDA device - driver to this logical drive. This number is reset each time the - device driver is loaded for this logical drive." - ::= { cpqDaNw3xDriverStatEntry 4 } - - cpqDaNw3xCorrReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Corrected Reads. - - This is the total number of read commands sent to the specified - logical drive which had to be corrected by fault tolerance. This - number is reset each time the device driver is loaded for this - logical drive. - - If the number of corrected reads is higher than normal for a - particular system, check the physical drive screen for abnormal - activity. There may be a problem with a drive. If you suspect - that a problem exists, schedule server down time to run - diagnostics on the monitored system." - ::= { cpqDaNw3xDriverStatEntry 5 } - - cpqDaNw3xCorrWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Corrected Writes. - - This is the total number of write commands sent to the specified - logical drive which had to be corrected by fault tolerance. This - number is reset each time the device driver is loaded for this - logical drive. - - If the number of corrected writes is higher than normal for a - particular system, check the physical drive screen for abnormal - activity. There may be a problem with a drive. If you suspect - that a problem exists, schedule server down time to run - diagnostics on the monitored system." - ::= { cpqDaNw3xDriverStatEntry 6 } - - cpqDaNw3xFatalReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Fatal Reads. - - This is the total number of read commands sent to the specified - logical drive which failed. This number is reset each time the - device driver is loaded for this logical drive. - - The drive array was unable to correct these reads. Check the - drive status to see if any of the drives have failed. If a - drive has failed you will need to replace the drive." - ::= { cpqDaNw3xDriverStatEntry 7 } - - cpqDaNw3xFatalWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Fatal Writes. - - This is the total number of write commands sent to the specified - logical drive which failed. This number is reset each time the - device driver is loaded for this logical drive. - - The drive array was unable to correct these writes. Check the - drive status to see if any of the drives have failed. If a - drive has failed you will need to replace the drive." - ::= { cpqDaNw3xDriverStatEntry 8 } - --- **************************************************************************** --- Drive Array NetWare Volume Map --- ============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaInterface Group (1.3.6.1.4.1.232.3.2.1) --- cpqDaOsNetWare3x Group (1.3.6.1.4.1.232.3.2.1.1) --- cpqDaNw3xVolMapTable (1.3.6.1.4.1.232.3.2.1.1.6) --- --- **************************************************************************** - - cpqDaNw3xVolMapTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaNw3xVolMapEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Volume Map Table. - - This is a table of NetWare volumes which map into the - logical drives" - ::= { cpqDaOsNetWare3x 6 } - - cpqDaNw3xVolMapEntry OBJECT-TYPE - SYNTAX CpqDaNw3xVolMapEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Volume Map Table Entry. - - One entry in the volume map table. Each entry represents - a logical drive for which the volume map is kept." - INDEX { cpqDaNw3xVolCntlrIndex, cpqDaNw3xVolLogDrvIndex } - ::= { cpqDaNw3xVolMapTable 1 } - - CpqDaNw3xVolMapEntry ::= SEQUENCE - { - cpqDaNw3xVolCntlrIndex INTEGER, - cpqDaNw3xVolLogDrvIndex INTEGER, - cpqDaNw3xVolMap OCTET STRING - } - - cpqDaNw3xVolCntlrIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Controller Index. - - This maps the logical drives into their respective controllers. - This controller index matches the controller group entries." - ::= { cpqDaNw3xVolMapEntry 1 } - - cpqDaNw3xVolLogDrvIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Array Logical Drive Index. - - This is the logical drive number which keeps track of multiple - instances of logical drives which are on the same controller. - For each controller index value, the logical drive index starts - at 1 and increments for each logical drive." - ::= { cpqDaNw3xVolMapEntry 2 } - - cpqDaNw3xVolMap OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "NetWare Volume Map. - - This is a data structure containing the volume mappings for this - logical drive. There are 8 entries in a volume mapping. Each - entry has the following format. An entry can be null indicating - no mapping exists. - - BYTE Name[16] - BYTE Segment" - ::= { cpqDaNw3xVolMapEntry 3 } - --- **************************************************************************** --- Drive Array Common Group --- ======================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaInterface Group (1.3.6.1.4.1.232.3.2.1) --- cpqDaOsCommon Group (1.3.6.1.4.1.232.3.2.1.4) --- --- The cpqDaOsCommon group describes the interface to the Drive Array --- components. This information describes the interface modules --- and general OS interface architectural information. --- --- Implementation of the cpqDaOsCommon group is mandatory for all --- agents that support the Drive Array MIB. --- --- **************************************************************************** - - cpqDaOsCommonPollFreq OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - 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." - ::= { cpqDaOsCommon 1 } - --- **************************************************************************** --- Drive Array Common Module --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaInterface Group (1.3.6.1.4.1.232.3.2.1) --- cpqDaOsCommon Group (1.3.6.1.4.1.232.3.2.1.4) --- cpqDaOsCommonModuleTable (1.3.6.1.4.1.232.3.2.1.4.2) deprecated --- --- **************************************************************************** - - cpqDaOsCommonModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of software modules that provide an interface to the - device this MIB describes." - ::= { cpqDaOsCommon 2 } - - cpqDaOsCommonModuleEntry OBJECT-TYPE - SYNTAX CpqDaOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a software module that provides an interface - to the device this MIB describes." - INDEX { cpqDaOsCommonModuleIndex } - ::= { cpqDaOsCommonModuleTable 1 } - - CpqDaOsCommonModuleEntry ::= SEQUENCE { - cpqDaOsCommonModuleIndex INTEGER, - cpqDaOsCommonModuleName DisplayString, - cpqDaOsCommonModuleVersion DisplayString, - cpqDaOsCommonModuleDate OCTET STRING, - cpqDaOsCommonModulePurpose DisplayString - } - - cpqDaOsCommonModuleIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "A unique index for this module description." - ::= { cpqDaOsCommonModuleEntry 1 } - - cpqDaOsCommonModuleName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The module name." - ::= { cpqDaOsCommonModuleEntry 2 } - - cpqDaOsCommonModuleVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqDaOsCommonModuleEntry 3 } - - cpqDaOsCommonModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS deprecated - 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 octect first." - ::= { cpqDaOsCommonModuleEntry 4 } - - cpqDaOsCommonModulePurpose OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The purpose of the module described in this entry." - ::= { cpqDaOsCommonModuleEntry 5 } - --- **************************************************************************** --- End of cpqDaOsCommonModuleTable --- **************************************************************************** - - - cpqDaOsCommonCollectionReset OBJECT-TYPE - SYNTAX INTEGER { - other(1), - resetSupported(2), - resetNotSupported(3), - doReset(4) - } - ACCESS read-write - STATUS optional - DESCRIPTION - "Drive Array MIB Collection Reset. - - This variable is used to force the collection agent for this - MIB to scan the associated hardware for configuration changes. - - The following values are defined: - - other(1) - The agent is unable to determine if collection reset is - supported. Any attempts to write to this variable will be - ignored. - - resetSupported(2) - The agent supports collection reset. A value of doReset(4) - may be written to force a collection reset. - - resetNotSupported(3) - The agent does not support collection reset. Any attempts to - write to this variable will be ignored. - - doReset(4) - This is a write only value used to cause a collection reset. - Writing this value is only allowed when a read of this variable - returns resetSupported(2)." - ::= { cpqDaOsCommon 3 } - - --- **************************************************************************** --- Drive Array Controller Group --- ============================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaCntlr Group (1.3.6.1.4.1.232.3.2.2) --- cpqDaCntlrTable (1.3.6.1.4.1.232.3.2.2.1) --- --- The Cntlr group contains the configuration and statistical --- information of the Drive Array controllers, controller cache module --- daughter boards and Smart cables. --- --- Implementation of the cpqDaCntlr group is mandatory for all agents --- that support the Drive Array MIB. --- --- **************************************************************************** - - cpqDaCntlrTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaCntlrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Array Controller Table." - ::= { cpqDaCntlr 1 } - - cpqDaCntlrEntry OBJECT-TYPE - SYNTAX CpqDaCntlrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Array Controller Entry." - INDEX { cpqDaCntlrIndex } - ::= { cpqDaCntlrTable 1 } - - CpqDaCntlrEntry ::= SEQUENCE - { - cpqDaCntlrIndex INTEGER, - cpqDaCntlrModel INTEGER, - cpqDaCntlrFWRev DisplayString, - cpqDaCntlrStndIntr INTEGER, - cpqDaCntlrSlot INTEGER, - cpqDaCntlrCondition INTEGER, - cpqDaCntlrProductRev DisplayString, - cpqDaCntlrPartnerSlot INTEGER, - cpqDaCntlrCurrentRole INTEGER, - cpqDaCntlrBoardStatus INTEGER, - cpqDaCntlrPartnerBoardStatus INTEGER, - cpqDaCntlrBoardCondition INTEGER, - cpqDaCntlrPartnerBoardCondition INTEGER, - cpqDaCntlrDriveOwnership INTEGER, - cpqDaCntlrSerialNumber DisplayString, - cpqDaCntlrRedundancyType INTEGER, - cpqDaCntlrRedundancyError INTEGER, - cpqDaCntlrAccessModuleStatus INTEGER, - cpqDaCntlrDaughterBoardType INTEGER, - cpqDaCntlrHwLocation DisplayString, - cpqDaCntlrNumberOfBuses INTEGER, - cpqDaCntlrBlinkTime Counter, - cpqDaCntlrRebuildPriority INTEGER, - cpqDaCntlrExpandPriority INTEGER, - cpqDaCntlrNumberOfInternalPorts INTEGER, - cpqDaCntlrNumberOfExternalPorts INTEGER, - cpqDaCntlrDriveWriteCacheState INTEGER, - cpqDaCntlrPartnerSerialNumber DisplayString, - cpqDaCntlrOptionRomRev DisplayString, - cpqDaCntlrHbaFWRev DisplayString, - cpqDaCntlrHBAModeOptionRomRev DisplayString, - cpqDaCntlrCurrentTemp INTEGER, - cpqDaCntlrLastLockupCode INTEGER, - cpqDaCntlrEncryptionStatus INTEGER, - cpqDaCntlrASICEncptSelfTestStatus INTEGER, - cpqDaCntlrEncryptCspNvramStatus INTEGER, - cpqDaCntlrEncryptCryptoOfficerPwdSetStatus INTEGER, - cpqDaCntlrEncryptCntlrPwdSetStatus INTEGER, - cpqDaCntlrEncryptCntlrPwdAvailStatus INTEGER, - cpqDaCntlrUnencryptedLogDrvCreationPolicy INTEGER, - cpqDaCntlrEncryptedLogDrvCreationPolicy INTEGER, - cpqDaCntlrEncryptFWLockStatus INTEGER, - cpqDaCntlrOperatingMode INTEGER - } - - cpqDaCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Index. - - This value is a logical number whose meaning is OS dependent. - Each physical controller has one unique controller number - associated with it." - ::= { cpqDaCntlrEntry 1 } - - cpqDaCntlrModel OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ida(2), - idaExpansion(3), - ida-2(4), - smart(5), - smart-2e(6), - smart-2p(7), - smart-2sl(8), - smart-3100es(9), - smart-3200(10), - smart-2dh(11), - smart-221(12), - sa-4250es(13), - sa-4200(14), - sa-integrated(15), - sa-431(16), - sa-5300(17), - raidLc2(18), - sa-5i(19), - sa-532(20), - sa-5312(21), - sa-641(22), - sa-642(23), - sa-6400(24), - sa-6400em(25), - sa-6i(26), - sa-generic(27), - sa-p600(29), - sa-p400(30), - sa-e200(31), - sa-e200i(32), - sa-p400i(33), - sa-p800(34), - sa-e500(35), - sa-p700m(36), - sa-p212(37), - sa-p410(38), - sa-p410i(39), - sa-p411(40), - sa-b110i(41), - sa-p712m(42), - sa-p711m(43), - sa-p812(44), - sw-1210m(45), - sa-p220i(46), - sa-p222(47), - sa-p420(48), - sa-p420i(49), - sa-p421(50), - sa-b320i(51), - sa-p822(52), - sa-p721m(53), - sa-b120i(54), - hps-1224(55), - hps-1228(56), - hps-1228m(57), - sa-p822se(58), - hps-1224e(59), - hps-1228e(60), - hps-1228em(61), - sa-p230i(62), - sa-p430i(63), - sa-p430(64), - sa-p431(65), - sa-p731m(66), - sa-p830i(67), - sa-p830(68), - sa-p831(69), - sa-p530(70), - sa-p531(71), - sa-p244br(72), - sa-p246br(73), - sa-p440(74), - sa-p440ar(75), - sa-p441(76), - sa-p741m(77), - sa-p840(78), - sa-p841(79), - sh-h240ar(80), - sh-h244br(81), - sh-h240(82), - sh-h241(83), - sa-b140i(84), - sh-generic(85), - sa-p240nr(86), - sh-h240nr(87), - sa-p840ar(88), - sa-p542d(89), - s100i(90), - e208i-p(91), - e208i-a(92), - e208i-c(93), - e208e-p(94), - p204i-b(95), - p204i-c(96), - p408i-p(97), - p408i-a(98), - p408e-p(99), - p408i-c(100), - p408e-m(101), - p416ie-m(102), - p816i-a(103), - p408i-sb(104) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Model. - - The type of controller card. The valid types are: - - Other (1) - You may need to upgrade your driver software and\or instrument - agent(s). You have a drive array controller in the system - that the instrument agent does not recognize. - - IDA (2) - Compaq 32-Bit Intelligent Drive Array Controller. - The physical drives are located inside the system. - - IDA Expansion (3) - Compaq 32-Bit Intelligent Drive Array Expansion Controller. - The physical drives are located in the Array Expansion System - that is connected to the system by a cable. - - IDA - 2 (4) - Compaq Intelligent Drive Array Controller-2 (IDA-2). - The physical drives are located inside the system. - - SMART (5) - Compaq SMART Array Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - SMART - 2/E (6) - Compaq SMART-2/E Array Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - SMART - 2/P (7) - Compaq SMART-2/P Array Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - SMART - 2SL (8) - Compaq SMART-2SL Array Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - Smart - 3100ES (9) - Compaq Smart Array 3100ES Controller. The physical drives are - located inside the system. - - Smart - 3200 (10) - Compaq Smart Array 3200 Controller. The physical drives can - be located inside the system or outside the system in a - ProLiant Storage System that is connected to the system by a - cable. - - SMART - 2DH (11) - Compaq SMART-2DH Array Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - Smart - 221 (12) - Compaq Smart Array 221 Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - Smart Array 4250ES (13) - Compaq Smart Array 4250ES Controller. The physical drives are - located inside the system. - - Smart Array 4200 (14) - Compaq Smart Array 4200 Controller. The physical drives can - be located inside the system or outside the system in a - ProLiant Storage System that is connected to the system by a - cable. - - Integrated Smart Array (15) - Compaq Integrated Smart Array Controller. The physical drives - can be located inside the system or outside the system in a - ProLiant Storage System that is connected to the system by a - cable. - - Smart Array 431 (16) - Compaq Smart Array 431 Controller. The physical drives can be - located inside the system or outside the system in a ProLiant - Storage System that is connected to the system by a cable. - - Smart Array 5300 (17) - HP Smart Array 5300 Controller. - - RAID LC2 Controller (18) - Compaq RAID LC2 Controller. - - Smart Array 5i (19) - HP Smart Array 5i Controller. - - Smart Array 532 (20) - Compaq Smart Array 532 Controller. - - Smart Array 5312 (21) - Compaq Smart Array 5312 Controller. - - Smart Array 641 (22) - HP Smart Array 641 Controller. - - Smart Array 642 (23) - HP Smart Array 642 Controller. - - Smart Array 6400 (24) - HP Smart Array 6400 Controller. - - Smart Array 6400 EM (25) - HP Smart Array 6400 EM Controller. - - Smart Array 6i (26) - HP Smart Array 6i Controller. - - Generic Array (27) - Array Controller. - - Reserved (28) - - Smart Array P600 (29) - HP Smart Array P600 Controller. - - Smart Array P400 (30) - HP Smart Array P400 Controller. - - Smart Array E200 (31) - HP Smart Array E200 Controller. - - Smart Array E200i (32) - HP Smart Array E200i Controller. - - Smart Array P400i (33) - HP Smart Array P400i Controller. - - Smart Array P800 (34) - HP Smart Array P800 Controller. - - Smart Array E500 (35) - HP Smart Array E500 Controller. - - Smart Array P700m (36) - HP Smart Array P700m Controller. - - Smart Array P212 (37) - HP Smart Array P212 Controller. - - Smart Array P410 (38) - HP Smart Array P410 Controller. - - Smart Array P410i (39) - HP Smart Array P410i Controller. - - Smart Array P411 (40) - HP Smart Array P411 Controller. - - Smart Array B110i SATA RAID (41) - HP Smart Array B110i SATA RAID Controller. - - Smart Array P712m (42) - HP Smart Array P712m Controller. - - Smart Array P711m (43) - HP Smart Array P711m Controller. - - Smart Array P812 (44) - HP Smart Array P812 Controller. - - StorageWorks 1210m (45) - HP StorageWorks 1210m Scalable Storage Controller. - - Smart Array P220i (46) - HP Smart Array P220i Controller. - - Smart Array P222 (47) - HP Smart Array P222 Controller. - - Smart Array P420 (48) - HP Smart Array P420 Controller. - - Smart Array P420i (49) - HP Smart Array P420i Controller. - - Smart Array P421 (50) - HP Smart Array P421 Controller. - - Smart Array B320i (51) - HP Dynamic Smart Array B320i Controller. - - Smart Array P822 (52) - HP Smart Array P822 Controller. - - Smart Array P721m (53) - HP Smart Array P721m Controller. - - Smart Array B120i (54) - HP Dynamic Smart Array B120i Controller. - - HP Storage p1224 (55) - HP Storage p1224 Array Controller. - - HP Storage p1228 (56) - HP Storage p1228 Array Controller. - - HP Storage p1228m (57) - HP Storage p1228m Array Controller. - - Smart Array P822se (58) - HP Smart Array P822se Controller. - - HP Storage p1224e (59) - HP Storage p1224e Array Controller. - - HP Storage p1228e (60) - HP Storage p1228e Array Controller. - - HP Storage p1228em (61) - HP Storage p1228em Array Controller. - - Smart Array P230i (62) - HP Smart Array P230i Controller. - - Smart Array P430i (63) - HP Smart Array P430i Controller. - - Smart Array P430 (64) - HP Smart Array P430 Controller. - - Smart Array P431 (65) - HP Smart Array P431 Controller. - - Smart Array P731m (66) - HP Smart Array P731m Controller. - - Smart Array P830i (67) - HP Smart Array P830i Controller. - - Smart Array P830 (68) - HP Smart Array P830 Controller. - - Smart Array P831 (69) - HP Smart Array P831 Controller. - - Smart Array P530 (70) - HP Smart Array P530 Controller. - - Smart Array P531 (71) - HP Smart Array P531 Controller. - - Smart Array P244br (72) - HP Smart Array P244br Controller. - - Smart Array P246br (73) - HP Smart Array P246br Controller. - - Smart Array P440 (74) - HP Smart Array P440 Controller. - - Smart Array P440ar (75) - HP Smart Array P440ar Controller. - - Smart Array P441 (76) - HP Smart Array P441 Controller. - - Smart Array P741m (77) - HP Smart Array P741m Controller. - - Smart Array P840 (78) - HP Smart Array P840 Controller. - - Smart Array P841 (79) - HP Smart Array P841 Controller. - - Smart HBA H240ar (80) - HP Smart HBA H240ar. - - Smart HBA H244br (81) - HP Smart HBA H244br. - - Smart HBA H240 (82) - HP Smart HBA H240. - - Smart HBA H241 (83) - HP Smart HBA H241. - - Smart Array B140i (84) - HP Dynamic Smart Array B140i Controller. - - Generic HBA (85) - Smart HBA. - - Smart Array P240nr (86) - HPE Smart Array P240nr Controller. - - Smart HBA H240nr (87) - HPE Smart HBA H240nr Controller. - - Smart Array P840ar (88) - HP Smart Array P840ar Controller. - - Smart Array P542D (89) - HPE Smart Array P542D Controller. - - Smart Array S100i (90) - HPE Smart Array S100i SR Gen10 Controller. - - Smart Array E208i-p (91) - HPE Smart Array E208i-p SR Gen10 Controller. - - Smart Array E208i-a (92) - HPE Smart Array E208i-a SR Gen10 Controller. - - Smart Array E208i-c (93) - HPE Smart Array E208i-c SR Gen10 Controller. - - Smart Array E208e-p (94) - HPE Smart Array E208e-p SR Gen10 Controller. - - Smart Array P204i-b (95) - HPE Smart Array P204i-b SR Gen10 Controller. - - Smart Array P204i-c (96) - HPE Smart Array P204i-c SR Gen10 Controller. - - Smart Array P408i-p (97) - HPE Smart Array P408i-p SR Gen10 Controller. - - Smart Array P408i-a (98) - HPE Smart Array P408i-a SR Gen10 Controller. - - Smart Array P408e-p (99) - HPE Smart Array P408e-p SR Gen10 Controller. - - Smart Array P408i-c (100) - HPE Smart Array P408i-c SR Gen10 Controller. - - Smart Array P408e-m (101) - HPE Smart Array P408e-m SR Gen10 Controller. - - Smart Array P416ie-m (102) - HPE Smart Array P416ie-m SR Gen10 Controller. - - Smart Array P816i-a (103) - HPE Smart Array P816i-a SR Gen10 Controller. - - Smart Array P408i-sb (104) - HPE Smart Array P408i-sb SR Gen10 Controller." - ::= { cpqDaCntlrEntry 2 } - - cpqDaCntlrFWRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Firmware Revision. - - The firmware revision of the drive array controller. This - value can be used to help identify a particular revision - of the controller. For B-Series controllers this value is the - RAID Stack Revision that is running and this value may change when - upgrading or downgrading the operating system device driver." - ::= { cpqDaCntlrEntry 3 } - - cpqDaCntlrStndIntr OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - primary(2), - secondary(3), - disabled(4), - unavailable(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Standard Interface. - - The Standard Interface is how DOS communicates with a drive. - The following values are valid for Standard Interface: - - Other (1) - The device driver may not be loaded for this controller. - The instrument agent could not read the information from the - device. Please load the device driver. - - Primary (2) - The Standard Interface is using the primary address for - communication. DOS can access this drive and use this drive - as the primary boot device if it has been configured for this - purpose. - - Secondary (3) - The Standard Interface is using the secondary address for - communication. DOS can access these drives, but cannot boot - from them. - - Disabled (4) - The Standard Interface is not enabled for communication. - DOS will not be able to access these drives. - - Unavailable (5) - This controller does not support a Standard Interface. - DOS cannot access these drives." - ::= { cpqDaCntlrEntry 4 } - - cpqDaCntlrSlot OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Slot. - - This identifies the physical slot where the array controller - resides in the system. For example, if this value is three, - the array controller is located in slot three of your computer." - ::= { cpqDaCntlrEntry 5 } - - cpqDaCntlrCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the device. This value represents the overall - condition of this controller, and any associated logical drives, - physical drives, and cache modules." - ::= { cpqDaCntlrEntry 6 } - - cpqDaCntlrProductRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..1)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Product Revision. - - The Product Revision of the drive array controller. This value - can be used to further identify a particular revision of the - controller model. This will be one character ASCII value that - is zero terminated. If the controller model or the firmware - does not support the product revision, the agents will return - a NULL string." - ::= { cpqDaCntlrEntry 7 } - - cpqDaCntlrPartnerSlot OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Partner Slot. - - For duplexed array controllers, this is the slot number of the - partner controller. For non-duplexed controllers and partner - controllers that reside in a separate host system, the value should - be -1." - ::= { cpqDaCntlrEntry 8 } - - cpqDaCntlrCurrentRole OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notDuplexed(2), - active(3), - backup(4), - asymActiveActive(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Current Role. - - For duplexed array controllers, this is the controllers current - role. The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - role of the controller. You may need to upgrade the instrument - agent. - - notDuplexed (2) - This array controller is not duplexed. - - active (3) - This duplexed array controller is the active controller. - - backup (4) - This duplexed array controller is the backup controller. - - asymActiveActive (5) - This array controller is part of an asymmetrical active-active set of controllers." - ::= { cpqDaCntlrEntry 9 } - - cpqDaCntlrBoardStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - generalFailure(3), - cableProblem(4), - poweredOff(5), - cacheModuleMissing(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Board Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - status of the controller. You may need to upgrade the instrument - agent. - - ok (2) - The array controller is operating properly. - - generalFailure (3) - The array controller is failed. After the system is rebooted, - check the variable cpqDaCntlrLastLockupCode for the controller`s - last lockup code. - - cableProblem (4) - The array controller has a cable problem. Please check - all cable connections to this controller. - - poweredOff (5) - The array controller is powered off. Please replace the - controller and restore power to the slot. - - cacheModuleMissing (6) - The array controller is operating without a cache module which - is an unsupported configuration. Please install a cache module - to the controller." - ::= { cpqDaCntlrEntry 10 } - - cpqDaCntlrPartnerBoardStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - generalFailure(3), - cableProblem(4), - poweredOff(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Partner Board Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - status of the controller. You may need to upgrade the instrument - agent. - - ok (2) - The partner array controller is operating properly. - - generalFailure (3) - The partner array controller is failed. - - cableProblem (4) - The partner array controller has a cable problem. Please check - all cable connections to this controller. - - poweredOff (5) - The array controller is powered off. Please replace the - controller and restore power to the slot." - ::= { cpqDaCntlrEntry 11 } - - cpqDaCntlrBoardCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the device. This value represents the - condition of the controller and any associated cache - modules." - ::= { cpqDaCntlrEntry 12 } - - cpqDaCntlrPartnerBoardCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the device. This value represents the - condition of the controller and any associated cache - modules." - ::= { cpqDaCntlrEntry 13 } - - cpqDaCntlrDriveOwnership OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - owner(2), - notOwner(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Drive Ownership. - - For duplexed controllers, indicates to which controller slot - the shared devices are associated. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - status of the controller. You may need to upgrade the instrument - agent. - - owner (2) - All the logical, physical and spare drives are associated - with this controller. - - notOwner (3) - The logical, physical and spare drives are not associated - with this controller." - ::= { cpqDaCntlrEntry 14 } - - cpqDaCntlrSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Serial Number. - - The serial number of the array controller. This field will - be a null (size 0) string if the controller does not support - serial number." - ::= { cpqDaCntlrEntry 15 } - - cpqDaCntlrRedundancyType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notRedundant(2), - driverDuplexing(3), - fwActiveStandby(4), - fwPrimarySecondary(5), - fwActiveActive(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Redundancy Type. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - redundancy type of the controller. You may need to upgrade - the instrument agent. - - notRedundant (2) - The array controller is not in a redundant configuration. - - driverDuplexing (3) - The array controller is using a controller duplexing algorithm - implemented exclusively in the operating system driver. - - fwActiveStandby (4) - The array controller is using an active/standby algorithm - implemented in the controller firmware and the operating system - driver. - - fwPrimarySecondary (5) - The array controller is using a primary/secondary algorithm - implemented in the controller firmware and the operating system - driver. - - fwActiveActive (6) - The array controller is using an active/active algorithm - implemented in the controller firmware." - ::= { cpqDaCntlrEntry 16 } - - cpqDaCntlrRedundancyError OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - noFailure(2), - noRedundantController(3), - differentHardware(4), - noLink(5), - differentFirmware(6), - differentCache(7), - otherCacheFailure(8), - noDrives(9), - otherNoDrives(10), - unsupportedDrives(11), - expandInProgress(12) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Redundancy Error. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - redundancy error of the controller. You may need to upgrade - the instrument agent. - - noFailure (2) - No failures have been detected. - - noRedundantController (3) - No redundant controller is installed. - - differentHardware (4) - The other controller indicates a different hardware model. - - noLink (5) - An inter-controller link to the other controller could not be - established. - - differentFirmware (6) - The other controller indicates a different firmware version. - - differentCache (7) - The other controller indicates a different cache size. - - otherCacheFailure (8) - The other controller indicates a cache failure. - - noDrives (9) - This controller cannot see any attached drives, but the other - controller can. - - otherNoDrives (10) - This controller can see the attached drives, but the other - controller cannot. - - unsupportedDrives (11) - One or more attached drives has been determined to be incapable - of properly supporting redundant controller operation. - - expandInProgress (12) - Expand operation in progress. Redundant operation not - supported until expand operation is complete." - ::= { cpqDaCntlrEntry 17 } - - cpqDaCntlrAccessModuleStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - notPresent(3), - badSignature(4), - badChecksum(5), - fullyFunctional(6), - upgradeFirmware(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller RAID ADG Enabler Module Status. - - The following values are valid: - - other (1) - Indicates that the agent does not recognize the RAID ADG - Enabler Module status. You may need to upgrade the agent. - - notSupported (2) - Indicates that the RAID ADG Enabler Module is not supported on - this type of controller. - - notPresent (3) - Indicates that the RAID ADG Enabler Module is not present or - is not accessible. - - badSignature (4) - Indicates that the RAID ADG Enabler Module is present, but has - an incorrect signature. - - badChecksum (5) - Indicates that the RAID ADG Enabler Module is present, but the - checksum failed. - - fullyFunctional (6) - Indicates that the RAID ADG Enabler Module is present and - fully functional. - - upgradeFirmware (7) - Indicates that the RAID ADG Enabler Module is present, but a - firmware upgrade is required to make it fully functional." - ::= { cpqDaCntlrEntry 18 } - - cpqDaCntlrDaughterBoardType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - notPresent(3), - scsiBoardPresent(4), - fibreBoardPresent(5), - arrayExpansionModulePresent(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Daughter Board Type. - - The following values are valid: - - other (1) - Indicates that the agent does not recognize the daughter - board type. You may need to upgrade the agent. - - notSupported (2) - Indicates that the daughter board type field is not supported - on this type of controller. - - notPresent (3) - Indicates that no daughter board is present. - - scsiBoardPresent (4) - Indicates that the SCSI daughter board is present. - - fibreBoardPresent (5) - Indicates that the Fibre daughter board is present. - - arrayExpansionModulePresent (6) - Indicates that an array Expansion Module is present." - ::= { cpqDaCntlrEntry 19 } - - cpqDaCntlrHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the hardware location of the controller. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqDaCntlrEntry 20 } - - cpqDaCntlrNumberOfBuses OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Number of Buses. - - This value is the number of SCSI buses on the controller." - ::= { cpqDaCntlrEntry 21 } - - cpqDaCntlrBlinkTime OBJECT-TYPE - SYNTAX Counter - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Controller Physical Drive Blink Time Count. - - The controller blink time variable allows the drive tray LEDs - of all physical drives attached to this controller to blink. - This value indicates the amount of time, in tenths of a second, - that the physical drive LEDs will continue to blink. A value - of zero indicates the drive LEDs are not blinking. If the - value cannot be determined or no drive on this controller is in - a hot plug tray, 4,294,967,295 is returned. - - To blink the drive LEDs on all physical drives attached to this - controller, set this value to the time to blink in tenths of - seconds. - - To stop the drive LEDs from blinking, set this value to 0." - ::= { cpqDaCntlrEntry 22 } - - cpqDaCntlrRebuildPriority OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - low(2), - medium(3), - high(4), - mediumHigh(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Rebuild Priority. - - This is the controller`s rebuild priority. The following values - are valid: - - other (1) - Indicates that the instrument agent does not recognize the - rebuild priority of the controller. You may need to upgrade - the instrument agent. - - low (2) - The rebuild priority is low. - - medium (3) - The rebuild priority is medium. - - high (4) - The rebuild priority is high. - - mediumHigh(5) - The rebuild priority is mediumHigh." - ::= { cpqDaCntlrEntry 23 } - - - cpqDaCntlrExpandPriority OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - low(2), - medium(3), - high(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Expand Priority. - - This is the controller`s expand priority. The following values - are valid: - - other (1) - Indicates that the instrument agent does not recognize the - expand priority of the controller. You may need to upgrade - the instrument agent. - - low (2) - The expand priority is low. - - medium (3) - The expand priority is medium. - - high (4) - The expand priority is high." - ::= { cpqDaCntlrEntry 24 } - - cpqDaCntlrNumberOfInternalPorts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Number of Internal Ports. - - This value is the number of internal connectors on the - controller." - ::= { cpqDaCntlrEntry 25 } - - - cpqDaCntlrNumberOfExternalPorts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Number of External Ports. - - This value is the number of external connectors on the - controller." - ::= { cpqDaCntlrEntry 26 } - - cpqDaCntlrDriveWriteCacheState OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Drive Write Cache State. - - This is the controller`s drive write cache setting. The - following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - disabled (2) - The controller will disable drive write cache for all drives. - - enabled (3) - The controller will enable drive write cache for all drives." - ::= { cpqDaCntlrEntry 27 } - - cpqDaCntlrPartnerSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Partner Serial Number. - - The serial number of the partner array controller. This field will - be a null (size 0) string if the partner controller does not support - serial number or in the absence of a partner controller." - ::= { cpqDaCntlrEntry 28 } - - cpqDaCntlrOptionRomRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Option ROM Revision. - - The option ROM revision of the chipset or HBA being used by the - B-Series controller. If the controller does not support the - option ROM revision, the agents will return a NULL string." - ::= { cpqDaCntlrEntry 29 } - - cpqDaCntlrHbaFWRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..17)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller HBA Firmware Revision. - - The firmware revision of the chipset or HBA being used by the - B-Series controller. If the controller does not support the - HBA firmware revision, the agents will return a NULL string." - ::= { cpqDaCntlrEntry 30 } - - cpqDaCntlrHBAModeOptionRomRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..17)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller HBA Mode Option Rom Revision. - - The revision of option ROM that would run on this chipset or HBA (being - used by the B-Series controller), if it were to run in HBA mode. If - the controller does not support HBA mode option ROM revision, the - agents will return a NULL string." - ::= { cpqDaCntlrEntry 31 } - - cpqDaCntlrCurrentTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Current Temperature. - - This is the temperature of the array controller in degrees Celsius. - The field will contain -1 if the controller temperature - cannot be calculated or if the controller does not support reporting - temperature." - ::= { cpqDaCntlrEntry 32 } - - cpqDaCntlrLastLockupCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Last Lockup Code. - - The lockup code of the array controller if a lockup occurred prior - to the last controller reset. This value will be nonzero if the - controller supports last lockup code and has a last lockup code - to report." - ::= { cpqDaCntlrEntry 33 } - - cpqDaCntlrEncryptionStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notEnabled(2), - enabledLocalKeyMode(3), - enabledRemoteKeyManagerMode(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encryption Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - notEnabled (2) - Indicates that controller encryption is not enabled. Check other - controller encryption values for further details. - - enabledLocalKeyMode (3) - Array controller encryption is enabled and is configured to operate - in local key mode. - - enabledRemoteKeyManagerMode (4) - Array controller encryption is enabled and is configured to operate - in remote key manager mode." - ::= { cpqDaCntlrEntry 34 } - - cpqDaCntlrASICEncptSelfTestStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - selfTestsPass(2), - selfTestsFailed(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller ASIC Encryption Self Test Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - selfTestsPass(2) - Indicates that ASIC encryption self tests for this array controller - have passed. - - selfTestsFailed (3) - Indicates that ASIC encryption self tests for this array controller - have failed. The array controller is not encrypted." - ::= { cpqDaCntlrEntry 35 } - - cpqDaCntlrEncryptCspNvramStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - detectionFailed(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encryption Critical Security Parameter NVRAM Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - ok(2) - Indicates that the array controller has successfully detected - CSP NVRAM. - - detectionFailed (3) - Indicates that the array controller has failed to detect CSP NVRAM. - The controller is not encrypted." - ::= { cpqDaCntlrEntry 36 } - - cpqDaCntlrEncryptCryptoOfficerPwdSetStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - false(2), - true(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encryption Crypto Officer Password Set Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - false(2) - Indicates that the array controller`s Crypto Officer password - has not been set. - - true(3) - Indicates that the array controller`s Crypto Officer password - has been set." - ::= { cpqDaCntlrEntry 37 } - - cpqDaCntlrEncryptCntlrPwdSetStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - false(2), - true(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encryption Controller Password Set Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - false(2) - Indicates that the controller password has not been set. - - true(3) - Indicates that the controller password has been set." - ::= { cpqDaCntlrEntry 38 } - - cpqDaCntlrEncryptCntlrPwdAvailStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - passwordMissing(2), - passwordActive(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encryption Controller Password Availability Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - passwordMissing (2) - Indicates that the array controller password is missing. One or - more encrypted drives are currently locked and inaccessible. - - passwordActive (3) - Indicates that the array controller password is active and in use." - ::= { cpqDaCntlrEntry 39 } - - cpqDaCntlrUnencryptedLogDrvCreationPolicy OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - false(2), - true(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Unencrypted Logical Drive Creation Policy. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - false (2) - Unencrypted logical drive creation is not allowed. Check - Smart Array controller documentation for further information. - - true(3) - Unencrypted logical drive creation is allowed." - ::= { cpqDaCntlrEntry 40 } - - cpqDaCntlrEncryptedLogDrvCreationPolicy OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - false(2), - true(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encrypted Logical Drive Creation Policy. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - false (2) - Encrypted logical drive creation is not allowed. Check - Smart Array controller documentation for further information. - - true(3) - Encrypted logical drive creation is allowed." - ::= { cpqDaCntlrEntry 41 } - - cpqDaCntlrEncryptFWLockStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - false(2), - true(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Encryption Firmware Lock Status. - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - false(2) - Indicates that the array controller1`s firmware is not locked. - - true(3) - Indicates that the array controller1`s firmware has been locked." - ::= { cpqDaCntlrEntry 42 } - - cpqDaCntlrOperatingMode OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - smartArrayMode(2), - smartHbaMode(3), - mixedMode (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Operating Mode. - - The array controller`s current operating mode. The - following values are valid: - - The following values are valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - smartArrayMode(2) - Indicates that the controller is operating as a traditional - Smart Array controller with RAID controller behavior. - - smartHbaMode(3) - Indicates that the controller is operating as an HBA and does not - allow RAID configurations. - - mixedMode(4) - Indicates that the controller is operating in Mixed mode." - ::= { cpqDaCntlrEntry 43 } - - --- **************************************************************************** --- Drive Array Cache Module Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaCntlr Group (1.3.6.1.4.1.232.3.2.2) --- cpqDaAccelTable (1.3.6.1.4.1.232.3.2.2.2) --- --- **************************************************************************** - - cpqDaAccelTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaAccelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Cache Module Board Table. Note that for some controller models, a - cache module board that physically attaches to the controller or - chipset may not be an available option. For these configurations, the - Instrument Agent will continue to populate variables that are related - to read caching operations." - ::= { cpqDaCntlr 2 } - - cpqDaAccelEntry OBJECT-TYPE - SYNTAX CpqDaAccelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Cache Module Board Entry." - INDEX { cpqDaAccelCntlrIndex } - ::= { cpqDaAccelTable 1 } - - CpqDaAccelEntry ::= SEQUENCE - { - cpqDaAccelCntlrIndex INTEGER, - cpqDaAccelStatus INTEGER, - cpqDaAccelMemory INTEGER, - cpqDaAccelBadData INTEGER, - cpqDaAccelErrCode INTEGER, - cpqDaAccelBattery INTEGER, - cpqDaAccelReadErrs Counter, - cpqDaAccelWriteErrs Counter, - cpqDaAccelCondition INTEGER, - cpqDaAccelReadMemory INTEGER, - cpqDaAccelSerialNumber DisplayString, - cpqDaAccelTotalMemory INTEGER, - cpqDaAccelReadCachePercent Gauge, - cpqDaAccelWriteCachePercent Gauge, - cpqDaAccelFailedBatteries OCTET STRING, - cpqDaAccelBackupPowerSource INTEGER, - cpqDaAccelBoardCurrentTemp INTEGER, - cpqDaAccelCapacitorCurrentTemp INTEGER, - cpqDaAccelMemoryDataWidth INTEGER, - cpqDaAccelMemoryTransferRate INTEGER - } - - cpqDaAccelCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Controller Index. - - This value is a logical number whose meaning is OS dependent. - The value has a direct mapping to the controller table index - such that controller `i` has cache module table entry `i`." - ::= { cpqDaAccelEntry 1 } - - cpqDaAccelStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - invalid(2), - enabled(3), - tmpDisabled(4), - permDisabled(5), - cacheModFlashMemNotAttached(6), - cacheModDegradedFailsafeSpeed(7), - cacheModCriticalFailure(8), - cacheReadCacheNotMapped(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module/Operations Status. - - This describes the status of the cache module and/or cache operations. - - Note that for some controller models, a cache module board that - physically attaches to the controller or chipset may not be an - available option. For these configurations, the Instrument Agent - will continue to populate variables that are related to read caching - operations. - - The status can be: - - Other (1) - Indicates that the instrument agent does not recognize the - status of the cache module. You may need to upgrade - the instrument agent. - - Invalid (2) - Indicates that a cache module board has not been - installed in this system or is present but not configured. - - Enabled (3) - Indicates that cache operations are currently configured - and enabled for at least one logical drive. - - Temporarily Disabled (4) - Indicates that cache operations have been temporarily - disabled. View the cache module board error code object - to determine why the write cache operations have been - temporarily disabled. - - Permanently Disabled (5) - Indicates that cache operations have been permanently - disabled. View the cache module board error code object - to determine why the write cache operations have been disabled. - - Cache Module Flash Memory Not Attached (6) - Indicates that the flash memory component of the flash backed - cache module is not attached. This status will be set when the flash - memory is not attached and the Supercap is attached. This value is - only used on flash backed cache modules that support removable flash - memory. - - Cache Module Degraded Failsafe Speed (7) - Indicates that the cache module board is currently degraded and - operating at a failsafe speed. View variables - cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to - obtain the cache module board`s current memory data width and - memory transfer rate. - - Cache Module Critical Failure (8) - Indicates that the cache module board has encountered a critical - failure. The controller is currently operating in Zero Memory Raid - mode. - - Read Cache Could Not Be Mapped (9) - Indicates that the read cache memory in a split cache configuration - could not be mapped by the operating system and as a result is not - available. This status may be caused by virtual space limitations in - certain operating systems and is only applicable to B-Series - controllers." - ::= { cpqDaAccelEntry 2 } - - cpqDaAccelMemory OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Write Cache Memory. - - This shows the amount of memory allocated for the write cache in - kilobytes. Because data is kept in duplicate (mirrored), the - actual amount of usable memory is half the amount shown." - ::= { cpqDaAccelEntry 3 } - - cpqDaAccelBadData OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - none(2), - possible(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Bad Data. - - The following values are valid: - - None (2) - Indicates that no data loss occurred. The battery packs were - properly charged when the system was initialized. - - Possible (3) - Indicates that at power up, the battery packs were not - sufficiently charged. Because the batteries did not retain - sufficient charge when the system resumed power, the board - has not retained any data that may have been stored. - If no data was on the board, no data was lost. Several things - may have caused this condition: - - * If the system was without power for eight days, and the - battery packs were on (battery packs only activate if - system looses power unexpectedly), any data that may have - been stored in the cache was lost. - - * There may be a problem with the battery pack. - See the Battery Status for more information. - - * This status will also appear if the Cache Module - board is replaced with a new board that has discharged - batteries. No data has been lost in this case, and posted - writes will automatically be enabled when the batteries - reach full charge." - ::= { cpqDaAccelEntry 4 } - - cpqDaAccelErrCode OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - invalid(2), - badConfig(3), - lowBattery(4), - disableCmd(5), - noResources(6), - notConnected(7), - badMirrorData(8), - readErr(9), - writeErr(10), - configCmd(11), - expandInProgress(12), - snapshotInProgress(13), - redundantLowBattery(14), - redundantSizeMismatch(15), - redundantCacheFailure(16), - excessiveEccErrors(17), - adgEnablerMissing(18), - postEccErrors(19), - batteryHotRemoved(20), - capacitorChargeLow(21), - notEnoughBatteries(22), - cacheModuleNotSupported(23), - batteryNotSupported(24), - noCapacitorAttached(25), - capBasedBackupFailed(26), - capBasedRestoreFailed(27), - capBasedModuleHWFailure(28), - capacitorFailedToCharge(29), - capacitorBasedHWMemBeingErased(30), - incompatibleCacheModule(31), - fbcmChargerCircuitFailure(32), - cbPowerSourceCableError(33) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Error Code. - - Use this to determine the status of the write cache operations. - - The status can be: - - Other (1) - Indicates that the instrument agent does not recognize the - error code. You may need to update your software. - - Invalid (2) - Indicates that write cache operations are currently - configured and enabled for at least one logical drive. - No write cache errors have occurred. - - Bad Configuration (3) - Indicates that write cache operations are temporarily - disabled. The Cache Module board was configured - for a different controller. This error could be caused - if boards were switched from one system to another. - Rerun the configuration utility and ensure that the board - has been properly configured for this system. - Note: If data from another system was stored on the board, - running configuration utility will cause the data to be lost. - - Low Battery Power (4) - Indicates that write cache operations are temporarily - disabled due to insufficient battery power. Please view - the Battery Status object instance for more information. - - Disable Command Issued (5) - Indicates that write cache operations are temporarily - disabled. The device driver issues this command when - the server is taken down. This condition should not - exist when the system regains power. - - No Resources Available (6) - Indicates that write cache operations are temporarily - disabled. The controller does not have sufficient - resources to perform write cache operations. - For example, when a replaced drive is being rebuilt, - there will not be sufficient resources. Once the - operation that requires the resources has completed, - this condition will clear and write cache operations - will resume. - - Board Not Connected (7) - Indicates that write cache operations are temporarily - disabled. The Cache Module board has been - configured but is not currently attached to the - controller. Check the alignment of the board and - connections. - - Bad Mirror Data (8) - Indicates that write cache operations have been - permanently disabled. The Cache Module board stores - mirrored copies of all data. If data exists on the - board when the system is first powered up, the board - performs a data compare test between the mirrored copies. - If the data does not match, an error has occurred. - Data may have been lost. Your board may need servicing. - - Read Failure (9) - Indicates that write cache operations have been permanently - disabled. The Cache Module board stores mirror copies - of all data. While reading the data from the board, memory - parity errors have occurred. Both copies were corrupted and - cannot be retrieved. Data has been lost, and you should - service the board. - - Write Failure (10) - Indicates that write cache operations have been permanently - disabled. This error occurs when an unsuccessful attempt was - made to write data to the Cache Module board. Data could - not be written to write cache memory in duplicate due to the - detection of parity errors. This error does not indicate data - loss. You should service the Cache Module board. - - Config Command (11) - Indicates that write cache operations have been permanently - disabled. The configuration of the logical drives has changed. - You need to reconfigure the Cache Module board. - - Expand in Progress (12) - Indicates that cache operations are temporarily disabled - due to an expand of a logical drive. When the expand - operation completes, the cache module will be enabled. - - Snapshot In Progress (13) - Indicates that cache operations are temporarily disabled - due to a snapshot operation that is queued up or in progress. - When the snapshot operation completes, the cache module will - be enabled. - - Redundant Low Battery (14) - Indicates that cache operations are temporarily disabled. - The redundant controller has insufficient cache battery power. - - Redundant Size Mismatch (15) - Indicates that cache operations are temporarily disabled. - The cache sizes on the redundant controllers do not match. - - Redundant Cache Failure (16) - Indicates that cache operations are temporarily disabled. - The cache on the redundant controller has failed. - - Excessive ECC Errors (17) - Indicates that write cache operations have been permanently - disabled. The number of cache lines experiencing excessive - ECC errors has reached a preset limit. - - RAID ADG Enabler Module Missing (18) - Indicates that write cache operations have been temperarily - disabled. A RAID ADG logical drive is configured but the - RAID ADG Enabler Module is broken or missing. - - Power On Self Test (Post) ECC Errors (19) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled due to a large number - of ECC errors detected while testing the cache during Power - On Self Test (Post). - - Backup Power Source Hot Removed (20) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because a backup power - source has been hot removed. - - Flash Backed Cache Module Capacitor Charge Low (21) - Indicates that write cache operations are temporarily - disabled due to insufficient capacitor power. - - Not Enough Batteries (22) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because there are not - enough batteries attached to the controller to ensure write - cache will be held without power for the advertised length - of time. - - Cache Module Not Supported By Firmware (23) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the current - cache module is not supported by the currently running firmware. - - Battery Not Supported (24) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because one or more - attached batteries are not supported by the currently running - firmware. - - No Capacitor Attached (25) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because there are no - capacitors attached to the flash backed cache module. - - Flash Backed Cache Module Backup Failed (26) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the flash - backed cache module backup operation has failed. - - Flash Backed Cache Module Restore Failed (27) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the flash - backed cache module restore operation has failed. - - Flash Backed Cache Module Hardware Failure (28) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the flash - backed cache module has encountered a hardware failure. - - Capacitor Failed To Charge (29) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the flash - backed cache module capacitor has failed to charge. - - Flash Backed Cache Module Memory Being Erased (30) - Indicates that write cache operations have been temporarily - disabled. The cache has been disabled because the flash - backed cache module is erasing its flash memory. - - Incompatible Cache Module (31) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because an incompatible - cache module is being used. - - Flash Backed Cache Module Charger Circuit Failure (32) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the charger circuit - on the flash backed cache module has failed. - - Centralized Backup Power Source Cable Error (33) - Indicates that write cache operations have been permanently - disabled. The cache has been disabled because the controller - detected a cable error to the centralized backup power source." - ::= { cpqDaAccelEntry 5 } - - cpqDaAccelBattery OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - recharging(3), - failed(4), - degraded(5), - notPresent(6), - capacitorFailed(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Backup Power Status. - - This monitors the status of each backup power source on the board. - The backup power source can only recharge when the system has - power applied. The type of backup power source used is indicated - by cpqDaAccelBackupPowerSource. - - The following values are valid: - - Other (1) - Indicates that the instrument agent does not recognize - backup power status. You may need to update your software. - - Ok (2) - The backup power source is fully charged. - - Recharging (3) - The array controller has one or more cache module backup power - sources that are recharging. Cache module operations such as - Battery/Flash Backed Write Cache, Expansion, Extension and Migration - are temporarily suspended until the backup power source is fully - charged. Cache module operations will automatically resume - when charging is complete. - - Failed (4) - The battery pack is below the sufficient voltage level and - has not recharged in 36 hours. Your Cache Module board - needs to be serviced. - - Degraded (5) - The battery is still operating, however, one of the batteries - in the pack has failed to recharge properly. Your Cache - Module board should be serviced as soon as possible. - - NotPresent (6) - A backup power source is not present on the cache module board. - Some controllers do not have backup power sources. - - Capacitor Failed (7) - The flash backed cache module capacitor is below the sufficient - voltage level and has not recharged in 10 minutes. Your Cache - Module board needs to be serviced." - ::= { cpqDaAccelEntry 6 } - - cpqDaAccelReadErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Read Errors. - - This shows the total number of read memory parity errors that - were detected while reading from the Cache Module board. - The mirrored copy of data on the board can be accessed to - obtain correct data if a memory parity errors occurs. - - Memory parity errors occur when the system detects that - information has not been transferred correctly. A parity bit - is included for each byte of information stored in memory. - When the microprocessor reads or writes data, the system - counts the value of the bits in each byte. If a total does - not match the system`s expectations, a parity error has - occurred. A bad memory chip, memory corruption, or lack of - refresh may cause memory parity errors." - ::= { cpqDaAccelEntry 7 } - - cpqDaAccelWriteErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Write Errors. - - This shows the total number of write memory parity errors that - were detected while writing to the Cache Module board. - - Write parity errors occur when the system detects that - information has not been transferred to the Cache - Module board correctly. A parity bit is included for - each byte of information stored in memory. When the - microprocessor reads or writes data, the system counts the - value of the bits in each byte. If the total does not match - the system`s expectations, a parity error has occurred." - ::= { cpqDaAccelEntry 8 } - - cpqDaAccelCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the device. This value represents the overall - condition of this cache module." - ::= { cpqDaAccelEntry 9 } - - cpqDaAccelReadMemory OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Read Cache Memory. - - This shows the amount of memory allocated for the read cache in - kilobytes. Because data is kept in duplicate (mirrored), the - actual amount of usable memory is half the amount shown. - - Read cache is not available on IDA, IDA-2, IDA Expansion System, - or SMART controllers. Entries for these controllers will return - 0 for this value." - ::= { cpqDaAccelEntry 10 } - - cpqDaAccelSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Serial Number. - - The serial number of the Cache Module. This field will - be a null (size 0) string if the cache module does not support - serial number." - ::= { cpqDaAccelEntry 11 } - - cpqDaAccelTotalMemory OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total Cache Memory. - - This value is the total amount of cache module memory in - kilobytes, including both battery-backed and non-battery-backed - memory." - ::= { cpqDaAccelEntry 12 } - - cpqDaAccelReadCachePercent OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Read Cache Percent. - - This shows the percent of cache memory allocated for read ahead - caching. If the data cannot be determined or is not applicable, - the value is set to 4,294,967,295." - ::= { cpqDaAccelEntry 13 } - - cpqDaAccelWriteCachePercent OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Write Cache Percent. - - This shows the percent of cache memory allocated for posted - write caching. If the data cannot be determined or is not - applicable, the value is set to 4,294,967,295." - ::= { cpqDaAccelEntry 14 } - - cpqDaAccelFailedBatteries OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Failed Batteries. - - This lists the location of cache module failed batteries. - Each octet present contains the position number of a failed - battery. An octet string of length zero indicates that there - are no failed batteries or that the controller does not have - the ability to identify individual failed batteries." - ::= { cpqDaAccelEntry 15 } - - cpqDaAccelBackupPowerSource OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - battery(2), - capacitor(3), - smartbattery(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Backup Power Source. - - This describes the backup power source being used by the Cache - Module board. - - The status can be: - - Other (1) - Indicates that the instrument agent does not recognize the backup - power source used by the Cache Module board. You may need - to upgrade the instrument agent. - - Battery (2) - Indicates that a battery is the backup power source for the Cache - Module board. - - Capacitor (3) - Indicates that a capacitor is the backup power source for the - Cache Module board. - - smartbattery (4) - Indicates that a smart battery backup power source for the - Cache Module board." - ::= { cpqDaAccelEntry 16 } - - cpqDaAccelBoardCurrentTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Board Current Temperature. - - This is the temperature of the cache module board in degrees - Celsius. The field will contain -1 if the cache module - board temperature cannot be calculated or if the controller does not - support reporting cache module board temperature." - ::= { cpqDaAccelEntry 17 } - - cpqDaAccelCapacitorCurrentTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Module Capacitor Current Temperature. - - This is the temperature of the Super-Cap in degrees Celsius. - The field will contain -1 if the Super-Cap temperature - cannot be calculated or if the controller does not support reporting - Super-Cap temperature." - ::= { cpqDaAccelEntry 18 } - - cpqDaAccelMemoryDataWidth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Memory Data Width. - - This is the memory data width (in bits), for the attached cache - module. The field will contain -1 if the memory data width cannot - be calculated or if the controller does not support reporting memory - data width." - ::= { cpqDaAccelEntry 19 } - - cpqDaAccelMemoryTransferRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cache Memory Transfer Rate. - - This is the memory transfer rate in megatransfers per second (MT/s), - for the attached cache module . The field will contain -1 if the - memory transfer rate cannot be calculated or if the controller does - not support reporting memory transfer rate." - ::= { cpqDaAccelEntry 20 } - - --- **************************************************************************** --- Drive Array Managed Cable Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaCntlr Group (1.3.6.1.4.1.232.3.2.2) --- cpqDaManagedCableTable (1.3.6.1.4.1.232.3.2.2.3) --- --- **************************************************************************** - - cpqDaManagedCableTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaManagedCableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Managed Cable Table." - ::= { cpqDaCntlr 3 } - - cpqDaManagedCableEntry OBJECT-TYPE - SYNTAX CpqDaManagedCableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Managed Cable Entry." - INDEX { cpqDaManagedCableCntlrIndex } - ::= { cpqDaManagedCableTable 1 } - - CpqDaManagedCableEntry ::= SEQUENCE - { - cpqDaManagedCableIndex INTEGER, - cpqDaManagedCableCntlrIndex INTEGER, - cpqDaManagedCableHostConnector DisplayString, - cpqDaManagedCableStatus INTEGER, - cpqDaManagedCableFaultCode INTEGER, - cpqDaManagedCableVendorRevision DisplayString, - cpqDaManagedCableVendorSerialNumber DisplayString, - cpqDaManagedCableVendorPartNumber DisplayString, - cpqDaManagedCableLength INTEGER - } - - cpqDaManagedCableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Index. - - This index identifies a controller and managed cable association. - This index uniquely identifies a single managed cable connected to a - controller." - ::= { cpqDaManagedCableEntry 1 } - - cpqDaManagedCableCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Controller Index. - - This value maps the managed cables into their respective controllers. - This value is a logical number whose meaning is OS dependent. The - value has a direct mapping to the controller table index such that - controller `i` has managed cable controller index `i`." - ::= { cpqDaManagedCableEntry 2 } - - cpqDaManagedCableHostConnector OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Host Connector. - - This is the port connector to which the managed cable is attached. - If the host connector cannot be determined, the agent will return a - NULL string." - ::= { cpqDaManagedCableEntry 3 } - - cpqDaManagedCableStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - nonFatalFault(3), - fatalFault(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Status. - - The following values are defined: - - Other (1) - Indicates that the instrument agent can not determine the - managed cable status. - - Ok (2) - Indicates the cable is functioning properly. - - Non Fatal Fault (3) - Indicates the cable has reported a non fatal fault. See - cpqDaManagedCableFaultCode for more information. - - Fatal Fault (4) - Indicates the cable has reported a fatal fault. See - cpqDaManagedCableFaultCode for more information." - ::= { cpqDaManagedCableEntry 4 } - - cpqDaManagedCableFaultCode OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - none(2), - linkFault(3), - noComWithCableMgmtInterface(4), - cannotConfigureCable(5) - - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Fault Code. - - The following values are defined: - - Other (1) - Indicates that the instrument agent can not determine the - managed cable fault code. - - None (2) - Indicates that no cable fault codes have been reported. - - Link Fault (3) - Indicates that the cable is reporting a non fatal link fault. - - No Communication With Cable`s Management Interface (4) - Indicates that Smart Array firmware could not communicate with the - cable`s management interface. - - Cannot Configure Cable (5) - Indicates that Smart Array firmware could not configure the cable - and has disabled it." - ::= { cpqDaManagedCableEntry 5 } - - cpqDaManagedCableVendorRevision OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Vendor Revision. - - Indicates the vendor revision of the managed cable. If the managed - cable does not support vendor revision, the instrument agent will - return a NULL string." - ::= { cpqDaManagedCableEntry 6 } - - cpqDaManagedCableVendorSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Vendor Serial Number. - - Indicates the vendor serial number of the managed cable. If the - managed cable does not support vendor serial number, the instrument - agent will return a NULL string." - ::= { cpqDaManagedCableEntry 7 } - - cpqDaManagedCableVendorPartNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Vendor Part Number. - - Indicates the vendor part number of the managed cable. If the managed - cable does not support vendor part number, the instrument agent - will return a NULL string." - ::= { cpqDaManagedCableEntry 8 } - - cpqDaManagedCableLength OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Managed Cable Length. - - Indicates the length of the managed cable in meters. This field will - contain -1 if the cable length cannot be determined or if the managed - cable does not support reporting cable length." - ::= { cpqDaManagedCableEntry 9 } - - --- **************************************************************************** --- Drive Array Logical Drive Table --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaLogDrv Group (1.3.6.1.4.1.232.3.2.3) --- cpqDaLogDrvTable (1.3.6.1.4.1.232.3.2.3.1) --- --- The cpqDaLogDrv group contains configuration and statistical --- information about the logical drives associated with drive array --- controllers. --- --- Implementation of the cpqDaLogDrv group is mandatory for all agents --- that support the Drive Array MIB. --- --- **************************************************************************** - - - cpqDaLogDrvTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaLogDrvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Table. - - A table of logical drive entries." - ::= { cpqDaLogDrv 1 } - - cpqDaLogDrvEntry OBJECT-TYPE - SYNTAX CpqDaLogDrvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Entry. - - A logical drive entry." - INDEX { cpqDaLogDrvCntlrIndex, cpqDaLogDrvIndex } - ::= { cpqDaLogDrvTable 1 } - - CpqDaLogDrvEntry ::= SEQUENCE - { - cpqDaLogDrvCntlrIndex INTEGER, - cpqDaLogDrvIndex INTEGER, - cpqDaLogDrvFaultTol INTEGER, - cpqDaLogDrvStatus INTEGER, - cpqDaLogDrvAutoRel INTEGER, - cpqDaLogDrvRebuildBlks Counter, - cpqDaLogDrvHasAccel INTEGER, - cpqDaLogDrvAvailSpares OCTET STRING, - cpqDaLogDrvSize INTEGER, - cpqDaLogDrvPhyDrvIDs OCTET STRING, - cpqDaLogDrvCondition INTEGER, - cpqDaLogDrvPercentRebuild Gauge, - cpqDaLogDrvStripeSize INTEGER, - cpqDaLogDrvOsName DisplayString, - cpqDaLogDrvBlinkTime Counter, - cpqDaLogDrvSpareReplaceMap OCTET STRING, - cpqDaLogDrvRebuildingPhyDrv INTEGER, - cpqDaLogDrvMultipathAccess INTEGER, - cpqDaLogDrvNmbrOfParityGroups INTEGER, - cpqDaLogDrvSplitMirrorBackupLogDrv INTEGER, - cpqDaLogDrvCacheVolAccelAssocType INTEGER, - cpqDaLogDrvCacheVolIndex INTEGER, - cpqDaLogDrvRPIPercentComplete Gauge, - cpqDaLogDrvSSDSmartPathStatus INTEGER, - cpqDaLogDrvEncryptionStatus INTEGER - } - - cpqDaLogDrvCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Controller Index. - - This maps the logical drives into their respective controllers. - Controller index `i` under the controller group owns the - associated drives in the logical drive group which use that - index." - ::= { cpqDaLogDrvEntry 1 } - - cpqDaLogDrvIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Index. - - This logical drive number keeps track of multiple instances of - logical drives which are on the same controller. For each - controller index value, the logical drive index starts at 1 and - increments for each logical drive." - ::= { cpqDaLogDrvEntry 2 } - - cpqDaLogDrvFaultTol OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - none(2), - mirroring(3), - dataGuard(4), - distribDataGuard(5), - advancedDataGuard(7), - raid50 (8), - raid60 (9), - raid1Adm (10), - raid10Adm (11), - raid10 (12) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Fault Tolerance. - - This shows the fault tolerance mode of the logical drive. - The following values are valid for the Logical Drive Fault - Tolerance: - - None (2) - Fault tolerance is not enabled. If a physical drive reports - an error, the data cannot be recovered by the drive array - controller. - - Mirroring - RAID 1/RAID 1+0 (3) - For each physical drive, there is a second physical drive - containing identical data. If a drive fails, the data can be - retrieved from the mirror drive. - - Data Guard - RAID 4 (4) - One of the physical drives is used as a data guard drive and - contains the exclusive OR of the data on the remaining drives. - If a failure is detected, the drive array controller rebuilds - the data using the data guard information plus information - from the other drives. - - Distributed Data Guard - RAID 5 (5) - Distributed Data Guarding, sometimes referred to as RAID 5, - is similar to Data Guarding, but instead of storing the parity - information on one drive, the information is distributed across - all of the drives. If a failure is detected, the drive array - controller rebuilds the data using the data guard information - from all the drives. - - Advanced Data Guarding - RAID 6 (7) - Advanced Data Guarding (RAID ADG) is the fault tolerance method - that provides the highest level of data protection. It - `stripes` data and parity across all the physical drives in the - configuration to ensure the uninterrupted availability of - uncorrupted data. This fault-tolerance method is similar to - distributed data guard (RAID 5) in that parity data is - distributed across all drives in the array, except in RAID ADG - the capacity of multiple drives is used to store parity data. - Assuming the capacity of 2 drives is used for parity data, - this allows continued operation despite simultaneous failure of - any 2 drives in the array, whereas RAID 4 and RAID 5 can only - sustain failure of a single drive. - - RAID 50 (8) - Distributed data guarding (RAID 5) with multiple parity groups. - - RAID 60 (9) - Advanced data guarding (RAID 6) with multiple parity groups. - - RAID 1 ADM (10) - Advanced Data Mirroring - - For each physical drive, there are two or more physical drives - containing identical data. If a drive fails, the data can be - retrieved from any of the mirrored drives. - - RAID 10 ADM (11) - Advanced Data Mirroring with Striping - - For each physical drive, there are two or more physical drives - containing identical data in addition to data being striped across - multiple drives. If a drive fails, the data can be retrieved from - any of the mirrored drives. - - RAID 1+0 (12) - Combination of multiple mirrored drives (RAID 1) with - data stripe (RAID 0) in a single array." - ::= { cpqDaLogDrvEntry 3 } - - cpqDaLogDrvStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - failed(3), - unconfigured(4), - recovering(5), - readyForRebuild(6), - rebuilding(7), - wrongDrive(8), - badConnect(9), - overheating(10), - shutdown(11), - expanding(12), - notAvailable(13), - queuedForExpansion(14), - multipathAccessDegraded(15), - erasing(16), - predictiveSpareRebuildReady(17), - rapidParityInitInProgress(18), - rapidParityInitPending(19), - noAccessEncryptedNoCntlrKey(20), - unencryptedToEncryptedInProgress(21), - newLogDrvKeyRekeyInProgress(22), - noAccessEncryptedCntlrEncryptnNotEnbld(23), - unencryptedToEncryptedNotStarted(24), - newLogDrvKeyRekeyRequestReceived(25) - - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Status. - - The logical drive can be in one of the following states: - - Ok (2) - Indicates that the logical drive is in normal operation mode. - - Failed (3) - Indicates that more physical drives have failed than the - fault tolerance mode of the logical drive can handle without - data loss. - - Unconfigured (4) - Indicates that the logical drive is not configured. - - Recovering (5) - Indicates that the logical drive is using Interim Recovery Mode. - In Interim Recovery Mode, at least one physical drive has - failed, but the logical drive`s fault tolerance mode lets the - drive continue to operate with no data loss. - - Ready Rebuild (6) - Indicates that the logical drive is ready for Automatic Data - Recovery. The physical drive that failed has been replaced, - but the logical drive is still operating in Interim Recovery - Mode. - - Rebuilding (7) - Indicates that the logical drive is currently doing Automatic - Data Recovery. During Automatic Data Recovery, fault tolerance - algorithms restore data to the replacement drive. - - Wrong Drive (8) - Indicates that the wrong physical drive was replaced after a - physical drive failure. - - Bad Connect (9) - Indicates that a physical drive is not responding. - - Overheating (10) - Indicates that the drive array enclosure that contains the - logical drive is overheating. The drive array is still - functioning, but should be shutdown. - - Shutdown (11) - Indicates that the drive array enclosure that contains the - logical drive has overheated. The logical drive is no longer - functioning. - - Expanding (12) - Indicates that the logical drive is currently undergoing a - transformation (expansion, shrinkage or movement). During - transformation, fault tolerance algorithms redistribute logical - drive data according to the transformation operation selected. - - Not Available (13) - Indicates that the logical drive is currently unavailable. - If a logical drive is expanding and the new configuration - frees additional disk space, this free space can be - configured into another logical volume. If this is done, - the new volume will be set to not available. - - Queued For Expansion (14) - Indicates that the logical drive is ready for transformation - (expansion, shrinkage or movement). The logical drive is in the - queue for transformation. - - Multi-path Access Degraded (15) - Indicates that previously all disk drives of this logical - drive had more than one I/O path to the controller, but now - one or few of them have only one I/O path. - - Erasing (16) - Indicates that the logical drive is currently being erased. - - Predictive Spare Rebuild Ready (17) - Indicates that the logical drive is ready to perform a predictive - spare rebuild. The logical drive is in the queue for rebuild. - - Rapid Parity Initialization In Progress (18) - Indicates that the logical drive is currently undergoing rapid - parity initialization (RPI). The logical drive is unavailable to the - operating system during RPI and will be made available once RPI - has completed. - - Rapid Parity Initialization Pending (19) - Indicates that the logical drive is currently pending rapid - parity initialization and will be unavailable. - - No Access - Encrypted - Missing Key (20) - Indicates that the logical drive is currently encrypted and cannot - be accessed because the array controller has not yet received the - encryption key from iLO nor was it found in the controller`s CSP - NVRAM. - - Unencrypted to Encrypted Transformation in Progress (21) - Indicates that the logical drive is currently being transformed from - unencrypted to encrypted and the volume is online. Data will be - written unencrypted if the write is directed to an LBA range on the - logical drive that has not yet been migrated. - - New Logical Drive Key Rekey in Progress (22) - Indicates that the logical drive is currently encrypted and all data - is currently being rekeyed with a new logical drive key using the - background capacity expansion transformation task. The logical drive - is online. - - No Access - Encrypted with Controller Encryption Not Enabled (23) - Indicates that the logical drive is currently encrypted and cannot - be accessed because the array controller does not have encryption - enabled. - - Unencrypted To Encrypted Transformation Not Started (24) - Indicates that the logical drive has received a request to transform - from unencrypted to encrypted but this process has not yet started. - The unencrypted logical drive is currently online. - - New Logical Drive Key Rekey Request Received (25) - Indicates that the logical drive is encrypted and has received - a request to rekey all data with a new logical drive encryption key. - The logical drive is online." - ::= { cpqDaLogDrvEntry 4 } - - cpqDaLogDrvAutoRel OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Array Controller Logical Drive Auto-Reliability Delay. - - This value indicates how many seconds the logical drive will wait - with no requests before beginning Auto-Reliability monitoring. - For example, the default value is five, so the logical drive will - begin Auto-Reliability monitoring if it receives no requests for - five seconds. If the value is zero, the logical drive will not - perform Auto-Reliability monitoring. Auto-Reliability only - operates if the logical drive is configured in one of the fault - tolerance modes. - - If the logical drive receives a request while performing - Auto-Reliability monitoring, the drive will stop monitoring to - process the request. Once it has satisfied all incoming requests, - the drive will wait for the Auto-Reliability delay to expire - before returning to Auto-Reliability monitoring. - - Auto-Reliability monitoring is a process to insure the highest - level of data reliability. In this process each disk is scanned - to verify that all of the sectors in the drive array are - readable. If the Auto-Reliability monitoring process detects - any bad sectors on the drives, it automatically remaps these - bad sectors where possible." - ::= { cpqDaLogDrvEntry 5 } - - cpqDaLogDrvRebuildBlks OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Logical Drive Rebuild Blocks Remaining. - - After a failed physical drive has been replaced, the physical - drive must have its data rebuilt. This value shows how many - blocks of data still need to be rebuilt. When the value - reaches zero, the rebuilding process is complete. The drive - array continues to operate in interim recovery mode while a - drive is rebuilding. - - When a logical volume is Expanding, the drive must redistribute - the logical volume data across the physical drives. This value - shows how many blocks of data still need to be redistributed. - When the value reaches zero, the expand process is complete. - The drive array continues to operate normally while the drive - is expanding. - - This value is only valid if the Logical Drive Status is - rebuilding (7) or expanding (12)." - ::= { cpqDaLogDrvEntry 6 } - - cpqDaLogDrvHasAccel OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - unavailable(2), - enabled(3), - disabled(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Has Cache Module Board. - - This indicates whether the logical drive has a Cache Module - board configured and enabled. The following values are valid: - - Other (1) - Indicates that the instrument agent does not recognize the - Cache Module board. You may need to upgrade your software. - - Unavailable (2) - Indicates that there is no Cache Module board configured - for this logical drive. - - Enabled (3) - Indicates that the Cache Module board is configured and - enabled for this logical drive. - - Disabled (4) - Indicates that the Cache Module board is configured but - not enabled for this logical drive." - ::= { cpqDaLogDrvEntry 7 } - - cpqDaLogDrvAvailSpares OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Drive Array Logical Drive Available Spares. - - This indicates if this logical drive has one or more spares - designated for it that are not currently in use by another drive. - Each octet present will be a physical drive ID that is an - available spare for this logical drive. These are the same ID`s - which can be used as indices into the physical drive table. - An octet string of length zero indicates that there are no - available spares for this logical drive. For array controllers - that support a larger number of drives, the Drive Array Logical - Drive Available Spare Extended Attachment Table should be used." - ::= { cpqDaLogDrvEntry 8 } - - cpqDaLogDrvSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Size. - - This is the size of the logical drive in megabytes. This value - is calculated using the value 1,048,576 (2^20) as a megabyte. - Drive manufacturers sometimes use the number 1,000,000 as a - megabyte when giving drive capacities so this value may - differ from the advertised size of a drive." - ::= { cpqDaLogDrvEntry 9 } - - cpqDaLogDrvPhyDrvIDs OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Drive Array Logical Drive Physical Drive IDs. - - This lists the physical drive IDs which are associated with this - logical drive. These are the same IDs which can be used as - indices into the physical drive table. Each byte of the string - is an index. For array controllers that support a larger number - of drives, the Drive Array Logical Drive Extended Physical - Drive Attachment Table should be used to determine drive - associations." - ::= { cpqDaLogDrvEntry 10 } - - cpqDaLogDrvCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Logical Drive condition. - - This value represents the overall condition of this logical drive and - any associated physical drives." - ::= { cpqDaLogDrvEntry 11 } - - cpqDaLogDrvPercentRebuild OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Percent Rebuild. - - After a failed physical drive has been replaced, the physical - drive must have its data rebuilt. This value is the percent - complete of the rebuild. When the value reaches 100, the - rebuilding process is complete. The drive array continues to - operate in interim recovery mode while a drive is rebuilding. - - When a logical volume is Expanding, the drive must redistribute - the logical volume data across the physical drives. This value - shows how many blocks of data still need to be redistributed. - When the value reaches one hundred (100), the expand process - is complete. The array continues to operate normally while - the drive is expanding. - - When a logical drive`s encryption state is transforming from - unencrypted to encrypted or when the logical drive is being rekeyed - with a new key, this value is the percent complete of the operation. - When the value reaches 100, the transformation or rekey process is - complete. - - This value is only valid if the logical drive status is - rebuilding (7), expanding (12), unencryptedToEncryptedInProgress(22) - and newLogDrvKeyRekeyInProgress(23). - - If the value cannot be determined or a rebuild is not active, - the value is set to 4,294,967,295." - ::= { cpqDaLogDrvEntry 12 } - - cpqDaLogDrvStripeSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Stripe Size. - - This is the size of a logical drive stripe in kilobytes." - ::= { cpqDaLogDrvEntry 13 } - - cpqDaLogDrvOsName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive OS Name. - - The OS name for this array logical drive. This field will be - a null (size 0) string if the agent does not support OS name." - ::= { cpqDaLogDrvEntry 14 } - - cpqDaLogDrvBlinkTime OBJECT-TYPE - SYNTAX Counter - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Logical Drive Physical Drive Blink Time Count. - - The logical drive blink time variable allows the drive tray LEDs - of all physical drives in a logical drive to blink. This value - indicates the amount of time, in tenths of a second, that the - physical drive LEDs will continue to blink. A value of zero - indicates the drive LEDs are not blinking. If the value cannot - be determined or no drive in this logical drive is in a hot - plug tray, 4,294,967,295 is returned. - - To blink the drive LEDs on all physical drives in this logical - drive (including any configured spare drives), set this value - to the time to blink in tenths of seconds. - - To stop the drive LEDs from blinking, set this value to 0." - ::= { cpqDaLogDrvEntry 15 } - - cpqDaLogDrvSpareReplaceMap OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..256)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Logical Drive Spare To Replacement Drive Map. - - This data structure contains the spare to physical drive - replacement map. The format is: - - octet contents - ===== ======== - 1 Spare drive physical drive index - 2 Replaced drive physical drive index - - These 2 octets are repeated for each replaced drive. For n - replaced drives, the string is 2 * n octets long. An octet - string of length zero indicates that there are no replaced - drives currently in use. For array controllers that support - larger number of drives, the Drive Array Logical Drive - Spare Replacement Extended Attachment Table should be used." - ::= { cpqDaLogDrvEntry 16 } - - cpqDaLogDrvRebuildingPhyDrv OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Physical Drive Rebuilding Index. - - This is the physical drive index of the physical drive that is - currently rebuilding. If the value cannot be determined or is - not applicable, the value is set to -1." - ::= { cpqDaLogDrvEntry 17 } - - cpqDaLogDrvMultipathAccess OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - notConfigured(3), - pathRedundant(4), - noRedundantPath(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Multi-path Access. - - This indicates whether all the physical disks including spares - of this logical drive have been configured to have and currently - still have more than one I/O path to the controller. The - following values are valid: - - Other (1) - Indicates that the instrument agent can not determine if this - logical drive has multi-path access. - - Not Supported (2) - Indicates that multi-path access to this logical drive is not - supported. - - Not Configured (3) - Indicates that this logical drive is not configured to have - multi-path access. - - Path Redundant (4) - Indicates that all disks of this logical drive currently have - more than one I/O path to the controller. - - No Redundant Path (5) - Indicates that all disks of this logical drive previously had - more than one I/O path to the controller, but now one or few - of them have no redundant I/O path." - ::= { cpqDaLogDrvEntry 18 } - - cpqDaLogDrvNmbrOfParityGroups OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Number Of Parity Groups. - - Indicates the number of parity groups (i.e. RAID 4/5/6 subvolumes), - that are being striped across." - ::= { cpqDaLogDrvEntry 19 } - - cpqDaLogDrvSplitMirrorBackupLogDrv OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - isNotBackupLogicalDrive(2), - isBackupLogicalDrive(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Split Mirror Backup Logical Drive. - - Indicates if this logical drive is a backup logical drive - belonging to a split mirror. - - The following values are defined: - - other(1) - The instrument agent is unable to determine if this logical drive - is a backup logical drive. You may need to upgrade the instrument - agent. - - isNotBackupLogicalDrive(2) - The logical drive is not a backup logical drive. - - isBackupLogicalDrive(3) - The logical drive is a backup logical drive." - ::= { cpqDaLogDrvEntry 20 } - - cpqDaLogDrvCacheVolAccelAssocType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - nonMember(2), - logicalDriveMember(3), - cacheVolumeMember(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Cache Volume Accelerator Association Type. - - Indicates the way in which this logical drive is associated with a - cache volume accelerator group. - - The following values are defined: - - Other(1) - The instrument agent is unable to determine if this logical drive - is part of a cache volume accelerator group. Logical drive cache - volume acceleration may not be enabled on this controller or you - may need to upgrade the instrument agent. - - Non Member (2) - Indicates that this logical drive is not a member of a cache volume - accelerator group. - - Logical Drive Member(3) - This logical drive is using a cache volume. - - Cache Volume Member(4) - This logical drive is being utilized as a cache volume." - ::= { cpqDaLogDrvEntry 21 } - - cpqDaLogDrvCacheVolIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Cache Volume Index. - - The logical drive index of the cache volume used by this logical - drive. The value of this index is the same as the logical drive index - used in the cache volume accelerator table. If the value cannot be - determined or is not applicable, the value is set to -1." - ::= { cpqDaLogDrvEntry 22 } - - cpqDaLogDrvRPIPercentComplete OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Rapid Parity Initialization Percent Complete. - - When a fault tolerant logical volume is created, parity data for - the volume must be initialized. This value is the percent complete - of the rapid parity initialization (RPI) process. When the value - reaches 100, the RPI process is complete and the logical drive is - made available to the operating system. - - If the value cannot be determined or rapid parity initialization - is not active, the value is set to 4,294,967,295." - ::= { cpqDaLogDrvEntry 23 } - - cpqDaLogDrvSSDSmartPathStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - updateDriver(2), - ssdSmartPathDisabled(3), - ssdSmartPathEnabled(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive SSD Smart Path Status. - - Indicates the logical drive SSD Smart Path status. An SSD Smart Path - for a logical drive can be utilized only when both the Smart - Array firmware and Smart Array controller driver support such a path. - - The following values are defined: - - Other (1) - Indicates that the instrument agent can not determine the - logical drive`s SSD Smart Path status. - - Update Driver (2) - Indicates that an updated Smart Array controller driver is needed - in order for the SSD Smart Path to be supported for this logical - drive. - - SSD Smart Path Disabled(3) - Indicates that an SSD Smart Path for this logical drive is - disabled. Check Smart Array controller documentation. - - SSD Smart Path Enabled(4) - Indicates that an SSD Smart path for this logical drive is - enabled. The Smart Array controller driver is able to use an - SSD Smart Path for this logical drive." - ::= { cpqDaLogDrvEntry 24 } - - cpqDaLogDrvEncryptionStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - encrypted(2), - notEncrypted(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Logical Drive Encryption Status. - - Indicates the logical drive encryption status. - - The following values are defined: - - Other (1) - Indicates that the instrument agent can not determine the - logical drive`s encyption status. - - Encrypted (2) - Indicates that data-at-rest encryption is enabled for this logical - drive. - - Not Encrypted(3) - Indicates that data-at-rest encryption is not enabled for this - logical drive." - ::= { cpqDaLogDrvEntry 25 } - - --- **************************************************************************** --- Drive Array Logical Drive Physical Drive Extended Attachment Table --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaLogDrv Group (1.3.6.1.4.1.232.3.2.3) --- cpqDaLogDrvPhyDrvExtAttachTable (1.3.6.1.4.1.232.3.2.3.2) --- --- **************************************************************************** - - cpqDaLogDrvPhyDrvExtAttachTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaLogDrvPhyDrvExtAttachEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Physical Drive Extended Attachment - Table. - - A table of logical drives and their associated physical drives." - ::= { cpqDaLogDrv 2 } - - cpqDaLogDrvPhyDrvExtAttachEntry OBJECT-TYPE - SYNTAX CpqDaLogDrvPhyDrvExtAttachEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Extended Physical Drive Attachment - Entry." - - INDEX { cpqDaLogDrvPhyDrvAttachExtIndex } - ::= { cpqDaLogDrvPhyDrvExtAttachTable 1 } - - CpqDaLogDrvPhyDrvExtAttachEntry ::= SEQUENCE - { - cpqDaLogDrvPhyDrvAttachExtIndex INTEGER, - cpqDaLogDrvCntlrExtended INTEGER, - cpqDaLogDrvLogDrvExtended INTEGER, - cpqDaLogDrvPhyDrvExtended INTEGER - } - - cpqDaLogDrvPhyDrvAttachExtIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Extended Attach Index. - - This index identifies a controller, logical drive and - physical drive connection. This index uniquely identifies - a connection for each attached hard drive." - ::= { cpqDaLogDrvPhyDrvExtAttachEntry 1 } - - cpqDaLogDrvCntlrExtended OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Controller Extended. - - This maps the logical drives into their respective controllers. This - value is a logical number whose meaning is OS dependent. The value - has a direct mapping to the controller table index such that - controller `i` has logical drive controller extended table entry - `i`." - ::= { cpqDaLogDrvPhyDrvExtAttachEntry 2 } - - cpqDaLogDrvLogDrvExtended OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Extended. - - This logical drive number keeps track of multiple instances of - logical drives which are on the same controller. For each - controller value, the logical drive value starts at 1 and - increments for each logical drive." - ::= { cpqDaLogDrvPhyDrvExtAttachEntry 3 } - - cpqDaLogDrvPhyDrvExtended OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Physical Drive Extended. - - This value is used for selecting the physical drive number in - the table entry. This number keeps track of multiple instances of - physical drives which are on the same controller." - ::= { cpqDaLogDrvPhyDrvExtAttachEntry 4 } - - --- **************************************************************************** --- Drive Array Logical Drive Spare Replacement Extended Attachment Table --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaLogDrv Group (1.3.6.1.4.1.232.3.2.3) --- cpqDaLogDrvSprRplcExtAttachTable (1.3.6.1.4.1.232.3.2.3.3) --- --- **************************************************************************** - - cpqDaLogDrvSprRplcExtAttachTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaLogDrvSprRplcExtAttachEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replacement Extended Attachment - Table. - - A table of logical drives, physical drives and their replacement - drives. If spare drives are not used, this table will not be - populated." - ::= { cpqDaLogDrv 3 } - - cpqDaLogDrvSprRplcExtAttachEntry OBJECT-TYPE - SYNTAX CpqDaLogDrvSprRplcExtAttachEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replacement Extended Attachment - Entry." - - INDEX { cpqDaLogDrvSprRplcAttachExtIndex } - ::= { cpqDaLogDrvSprRplcExtAttachTable 1 } - - CpqDaLogDrvSprRplcExtAttachEntry ::= SEQUENCE - { - cpqDaLogDrvSprRplcAttachExtIndex INTEGER, - cpqDaLogDrvSprRplcCntlrExtended INTEGER, - cpqDaLogDrvSprRplcLogDrvExtended INTEGER, - cpqDaLogDrvSprRplcReplacedPhysDrvExtended INTEGER, - cpqDaLogDrvSprRplcSparePhysDrvExtended INTEGER - } - - cpqDaLogDrvSprRplcAttachExtIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replacment Extended Attach Index. - - This index uniquely identifies a controller, logical drive, physical drive - and replacement drive connection." - ::= { cpqDaLogDrvSprRplcExtAttachEntry 1 } - - cpqDaLogDrvSprRplcCntlrExtended OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replacement Controller Extended. - - This value maps the spare replacement drives into their respective - controllers. This value is a logical number whose meaning is OS - dependent. The value has a direct mapping to the controller table - index such that controller `i` has spare replacement controller - extended table entry `i`." - ::= { cpqDaLogDrvSprRplcExtAttachEntry 2 } - - cpqDaLogDrvSprRplcLogDrvExtended OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replace Logical Drive Extended. - - This logical drive number keeps track of multiple instances of - logical drives which are on the same controller. For each - controller value, the logical drive value starts at 1 and - increments for each logical drive." - ::= { cpqDaLogDrvSprRplcExtAttachEntry 3 } - - cpqDaLogDrvSprRplcReplacedPhysDrvExtended OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replace Replaced Physical - Drive Extended. - - This is the replaced drive physical drive number." - ::= { cpqDaLogDrvSprRplcExtAttachEntry 4 } - - cpqDaLogDrvSprRplcSparePhysDrvExtended OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Spare Replace Spare Physical - Drive Extended. - - This is the replacement spare physical drive number." - ::= { cpqDaLogDrvSprRplcExtAttachEntry 5 } - - --- **************************************************************************** --- Drive Array Logical Drive Available Spare Extended Attachment Table --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaLogDrv Group (1.3.6.1.4.1.232.3.2.3) --- cpqDaLogDrvAvalSprExtAttachTable (1.3.6.1.4.1.232.3.2.3.4) --- --- **************************************************************************** - - cpqDaLogDrvAvalSprExtAttachTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaLogDrvAvalSprExtAttachEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Available Spare Extended Attachment - Table. - - A table of logical drives and their available spare drives. This - table indicates when a logical drive has one or more spare drives - designated for it. This table will not be populated when available - spares are not being used." - ::= { cpqDaLogDrv 4 } - - cpqDaLogDrvAvalSprExtAttachEntry OBJECT-TYPE - SYNTAX CpqDaLogDrvAvalSprExtAttachEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Available Spare Extended Attachment - Entry." - - INDEX { cpqDaLogDrvAvailSprAttachExtIndex } - ::= { cpqDaLogDrvAvalSprExtAttachTable 1 } - - CpqDaLogDrvAvalSprExtAttachEntry ::= SEQUENCE - { - cpqDaLogDrvAvailSprAttachExtIndex INTEGER, - cpqDaLogDrvAvailSprCntlrExtended INTEGER, - cpqDaLogDrvAvailSprLogDrvExtended INTEGER, - cpqDaLogDrvAvailSprAvailableSpareExtended INTEGER - } - - cpqDaLogDrvAvailSprAttachExtIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Available Spare Extended Attach Index. - - This index uniquely identifies a controller, logical drive and available - spare drive connection." - ::= { cpqDaLogDrvAvalSprExtAttachEntry 1 } - - cpqDaLogDrvAvailSprCntlrExtended OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Available Spare Controller Extended. - - This value maps the available spare drives into their respective - controllers This value is a logical number whose meaning is OS - dependent. The value has a direct mapping to the controller table - index such that controller `i` has available spare controller - extended table entry `i`." - ::= { cpqDaLogDrvAvalSprExtAttachEntry 2 } - - cpqDaLogDrvAvailSprLogDrvExtended OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Available Spare Logical Drive Extended. - - This logical drive number keeps track of multiple instances of - logical drives which are on the same controller. For each - controller value, the logical drive value starts at 1 and - increments for each logical drive." - ::= { cpqDaLogDrvAvalSprExtAttachEntry 3 } - - cpqDaLogDrvAvailSprAvailableSpareExtended OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Available Spare Available Spare Extended. - - This is the available spare drive number assigned to one or more - logical drives." - ::= { cpqDaLogDrvAvalSprExtAttachEntry 4 } - - --- **************************************************************************** --- Drive Array Logical Drive Cache Volume Accelerator Table --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaLogDrv Group (1.3.6.1.4.1.232.3.2.3) --- cpqDaLogDrvCacheVolumeAccelTable (1.3.6.1.4.1.232.3.2.3.5) --- --- **************************************************************************** - - cpqDaLogDrvCacheVolumeAccelTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaLogDrvCacheVolumeAccelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Table. - - The cpqDaLogDrvCacheVolumeAccelTable table contains configuration - and statistical information about cache volumes. This table will not - be populated when logical drive cache volumes are not being used." - ::= { cpqDaLogDrv 5 } - - cpqDaLogDrvCacheVolumeAccelEntry OBJECT-TYPE - SYNTAX CpqDaLogDrvCacheVolumeAccelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Entry. - - A cache volume entry." - INDEX { cpqDaLogDrvCacheVolAccelCntlrIndex, cpqDaLogDrvCacheVolAccelLogDrvIndex } - ::= { cpqDaLogDrvCacheVolumeAccelTable 1 } - - CpqDaLogDrvCacheVolumeAccelEntry ::= SEQUENCE - { - cpqDaLogDrvCacheVolAccelCntlrIndex INTEGER, - cpqDaLogDrvCacheVolAccelLogDrvIndex INTEGER, - cpqDaLogDrvCacheVolAccelCachingAlgorithm INTEGER, - cpqDaLogDrvCacheVolAccelCacheState INTEGER, - cpqDaLogDrvCacheVolAccelWritePolicy INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadHitsH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadHits INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoadH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoad INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissLoadingH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissLoading INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissSkipH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissSkip INTEGER, - cpqDaLogDrvCacheVolAccelReadCacheHitRate Gauge, - cpqDaLogDrvCacheVolAccelNoOfWriteHitsH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteHits INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoadH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoad INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoadingH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoading INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkipH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkip INTEGER, - cpqDaLogDrvCacheVolAccelWriteCacheHitRate Gauge, - cpqDaLogDrvCacheVolAccelLoadFailures INTEGER, - cpqDaLogDrvCacheVolAccelCacheLineSize INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissLockedH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissLocked INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissLockedH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissLocked INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissTotalH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfReadMissTotal INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissTotalH INTEGER, - cpqDaLogDrvCacheVolAccelNoOfWriteMissTotal INTEGER - } - - cpqDaLogDrvCacheVolAccelCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Controller Index. - - This index maps the cache volume back to the controller to which - it is attached. The value of this index is the same as the index - used under in the controller table." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 1 } - - cpqDaLogDrvCacheVolAccelLogDrvIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Logical Drive - Index. - - The logical drive index for this cache volume. The value of this - index is the same as the logical drive index used in the logical - drive table." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 2 } - - cpqDaLogDrvCacheVolAccelCachingAlgorithm OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - multiSegment(2), - singleSegment(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Caching Algorithm. - - The caching algorithm currently in use for the cache volume. - - The following values are defined: - - Other(1) - The instrument agent is unable to determine the caching algorithm - for this cache volume. You may need to upgrade the instrument agent. - - Multi Segment(2) - Multiple tiers to track cached and potentially cacheable data. The - multi-segment cache takes into account frequency, spatial locality - and temporal locality of data accesses. The replacement policy is - conservative making the algorithm ideal for workloads that have a - mixture of cacheable and non-cacheable data with hot spots that - remain hot for some time. - - Single Segment (3) - A single tier tracks cached data. The single-segment cache takes - into account spatial and temporal locality of data accesses. The - replacement policy is very aggressive resulting in the algorithm - being ideal for workloads that have very few non-cacheable data accesses - and hotspots that move frequently." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 3 } - - cpqDaLogDrvCacheVolAccelCacheState OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - cacheVolOffline(4), - logDriveOffline(5), - neverConfigured(6), - flushing(7), - configuring(8), - cacheConfigurationFailed(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Cache State. - - The current cache state of the cache volume. - - The following values are defined: - - Other(1) - The instrument agent is unable to determine the cache state - of this cache volume. You may need to upgrade the instrument agent. - - Ok (2) - Indicates that the cache volume is in normal operation mode and is - fully functional. - - Degraded (3) - Indicates that this cache volume is currently degraded with limited - functionality. - - Cache Volume Offline(4) - Indicates that the cache volume member is currently offline. - - Logical Drive Offline(5) - Indicates that the logical drive member is currently offline. - - Never Configured(6) - Indicates that the cache volume was never configured. - - Flushing(7) - Indicates that cache data is currently flushing from DDR cache. - - Configuring(8) - Indicates that cache is currently configuring. - - Cache Configuration Failed(9) - Indicates that cache configuration has failed." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 4 } - - cpqDaLogDrvCacheVolAccelWritePolicy OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - readOnly(2), - writeThrough(3), - writeBackSafe(4), - writeBackUnsafe(5), - writeThroughNoLoad(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Write Policy. - - The write policy that the cache volume has been configured to use. - - The following values are defined: - - Other(1) - The instrument agent is unable to determine the write policy - of this cache volume. You may need to upgrade the instrument agent. - - Read Only (2) - Indicates that this cache volume is currently using a read only - policy. - - Write Through(3) - Indicates that this cache volume is currently using a write through - policy. - - Write Back Safe(4) - Indicates that this cache volume is currently using a write back - safe policy. Writing is being executed to a cache volume that - utilizes a redundant RAID level. If the cache volume`s redundancy - becomes degraded, the cache volume will utilize the write - through write policy until redunancy is restored. - - Write Back Unsafe(5) - Indicates that this cache volume is currently using a write back - unsafe policy. Writing is being executed to a cache volume that - is not utilizing a redundant RAID level. - - Write Through No Load(6) - Indicates that this cache volume is currently using a write through - no load policy. The cache volume will process write requests but - will only write if the line is already loaded." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 5 } - - cpqDaLogDrvCacheVolAccelNoOfReadHitsH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Hits (high). - - cpqDaLogDrvCacheVolAccelNoOfReadHitsH and - cpqDaLogDrvCacheVolAccelNoOfReadHits together show the number of read - cache hits for this cache volume. If the value cannot be determined - or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 6 } - - cpqDaLogDrvCacheVolAccelNoOfReadHits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Hits (low). - - cpqDaLogDrvCacheVolAccelNoOfReadHits and - cpqDaLogDrvCacheVolAccelNoOfReadHitsH together show the number of read - cache hits for this cache volume. If the value cannot be determined - or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 7 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoadH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Do Load (high). - - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoadH and - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoad together show the number of - times a read cache request for this cache volume was missed and - prompted a load of data from the primary storage to the drive cache. - If the value cannot be determined or is not applicable, it is set - to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 8 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Do Load (low). - - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoad and - cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoadH together show the number - of times a read cache request for this cache volume was missed and - prompted a load of data from the primary storage to the drive cache. - If the value cannot be determined or is not applicable, it is set - to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 9 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissLoadingH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Loading (high). - - cpqDaLogDrvCacheVolAccelNoOfReadMissLoadingH and - cpqDaLogDrvCacheVolAccelNoOfReadMissLoading together show the number - of times a read cache request for this cache volume was not serviced - right away because the data was loading. If the value cannot be - determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 10 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissLoading OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Loading (low). - - cpqDaLogDrvCacheVolAccelNoOfReadMissLoading and - cpqDaLogDrvCacheVolAccelNoOfReadMissLoadingH together show the number - of times a read cache request for this cache volume was not serviced - right away because the data was loading. If the value cannot be - determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 11 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissSkipH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Skip (high). - - cpqDaLogDrvCacheVolAccelNoOfReadMissSkipH and - cpqDaLogDrvCacheVolAccelNoOfReadMissSkip together show the number of - times a read cache request for this cache volume was serviced by - primary storage and not the cache volume, exluding those that - triggered loads or where a load was already taking place. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 12 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissSkip OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Skip (low). - - cpqDaLogDrvCacheVolAccelNoOfReadMissSkip and - cpqDaLogDrvCacheVolAccelNoOfReadMissSkipH together show the number of - times a read cache request for this cache volume was serviced by - primary storage and not the cache volume, exluding those that - triggered loads or where a load was already taking place. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 13 } - - cpqDaLogDrvCacheVolAccelReadCacheHitRate OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Read Cache - Hit Rate. - - The rate (percentage) that the read cache for this cache volume is - being utilized. If the value cannot be determined or read cache hit - rate is not supported for this cache volume, it is set - to 4,294,967,295." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 14 } - - cpqDaLogDrvCacheVolAccelNoOfWriteHitsH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Hits (high). - - cpqDaLogDrvCacheVolAccelNoOfWriteHitsH and - cpqDaLogDrvCacheVolAccelNoOfWriteHits together show the number of - write cache hits for this cache volume. If the value cannot be - determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 15 } - - cpqDaLogDrvCacheVolAccelNoOfWriteHits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Hits (low). - - cpqDaLogDrvCacheVolAccelNoOfWriteHits and - cpqDaLogDrvCacheVolAccelNoOfWriteHitsH together show the number of - write cache hits for this cache volume. If the value cannot be - determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 16 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoadH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Do Load (high). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoadH and - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoad show the number of times a - write cache request for this cache volume was missed and prompted a - load of data from the primary storage to the drive cache. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 17 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Do Load (low). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoad and - cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoadH show the number of times a - write cache request for this cache volume was missed and prompted a - load of data from the primary storage to the drive cache. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 18 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoadingH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Loading (high). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoadingH and - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoading show the number of times - a write cache request for this cache volume was not serviced right - away because the data was loading. If the value cannot be determined - or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 19 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoading OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Loading (low). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoading and - cpqDaLogDrvCacheVolAccelNoOfWriteMissLoadingH show the number of times - a write cache request for this cache volume was not serviced right - away because the data was loading. If the value cannot be determined - or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 20 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkipH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Skip (high). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkipH and - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkip together show the number of - times a write cache request for this cache volume was serviced by - primary storage and not the cache volume, exluding those that - triggered loads or where a load was already taking place. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 21 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkip OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Skip (low). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkip and - cpqDaLogDrvCacheVolAccelNoOfWriteMissSkipH together show the number of - times a write cache request for this cache volume was serviced by - primary storage and not the cache volume, exluding those that - triggered loads or where a load was already taking place. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 22 } - - cpqDaLogDrvCacheVolAccelWriteCacheHitRate OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Write Cache - Hit Rate. - - The rate (percentage) that the write cache for this cache volume is - being utilized. If the value cannot be determined or write cache hit - rate is not supported for this cache volume, it is set - to 4,294,967,295." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 23 } - - cpqDaLogDrvCacheVolAccelLoadFailures OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Load Failures. - - The number of times data failed to load onto this cache volume due - to an error. If the value cannot be determined or is not applicable, - it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 24 } - - cpqDaLogDrvCacheVolAccelCacheLineSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Cache Line Size. - - cpqDaLogDrvCacheVolAccelCacheLineSize is the cache line size in - number of blocks. If the value cannot be determined or is not - applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 25 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissLockedH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Locked (high). - - cpqDaLogDrvCacheVolAccelNoOfReadMissLockedH and - cpqDaLogDrvCacheVolAccelNoOfReadMissLocked together show the number of - times a read cache request for this cache volume was missed due to the - primary LUN being written to. If the value cannot be determined or is - not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 26 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissLocked OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Locked (low). - - cpqDaLogDrvCacheVolAccelNoOfReadMissLocked and - cpqDaLogDrvCacheVolAccelNoOfReadMissLockedH together show the number - of times a read cache request for this cache volume was missed due to - the primary LUN being written to. If the value cannot be determined or - is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 27 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLockedH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Locked (high). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLockedH and - cpqDaLogDrvCacheVolAccelNoOfWriteMissLocked together show the number - of times a write cache request for this cache volume was missed due to - the primary LUN being written to. If the value cannot be determined or - is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 28 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLocked OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Locked (low). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissLocked and - cpqDaLogDrvCacheVolAccelNoOfWriteMissLockedH together show the number - of times a write cache request for this cache volume was missed due to - the primary LUN being written to. If the value cannot be determined or - is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 29 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissTotalH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Total (high). - - cpqDaLogDrvCacheVolAccelNoOfReadMissTotalH and - cpqDaLogDrvCacheVolAccelNoOfReadMissTotal together show the total - number of read cache misses for this cache volume. If the value cannot - be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 30 } - - cpqDaLogDrvCacheVolAccelNoOfReadMissTotal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Read - Cache Misses - Total (low). - - cpqDaLogDrvCacheVolAccelNoOfReadMissTotal and - cpqDaLogDrvCacheVolAccelNoOfReadMissTotalH together show the total - number of read cache misses for this cache volume. If the value cannot - be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 31 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissTotalH OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Total (high). - - cpqDaLogDrvCacheVolAccelNoOfWriteMissTotalH and - cpqDaLogDrvCacheVolAccelNoOfWriteMissTotal together show the total - number of write cache misses for this cache volume. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 32 } - - cpqDaLogDrvCacheVolAccelNoOfWriteMissTotal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Cache Volume Accelerator Number Of Write - Cache Misses - Total (low). - - cpqDaLogDrvCacheVolAccelNoOfReadMissTotal and - cpqDaLogDrvCacheVolAccelNoOfReadMissTotalH together show the total - number of write cache misses for this cache volume. If the value - cannot be determined or is not applicable, it is set to -1." - ::= { cpqDaLogDrvCacheVolumeAccelEntry 33 } - - --- **************************************************************************** --- Drive Array Spare Drive Table --- ============================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaSpareDrv Group (1.3.6.1.4.1.232.3.2.4) --- cpqDaSpareTable (1.3.6.1.4.1.232.3.2.4.1) --- --- The cpqDaSpareDrv group contains configuration and statistical --- information about the spare drives associated with drive array --- controllers. --- --- Implementation of the cpqDaSpareDrv group is mandatory for all --- agents that support the Drive Array MIB that have a spare --- configured. --- --- **************************************************************************** - - - cpqDaSpareTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaSpareEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Spare Table. - - A table of spare entries." - ::= { cpqDaSpareDrv 1 } - - cpqDaSpareEntry OBJECT-TYPE - SYNTAX CpqDaSpareEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Spare Entry. - - An entry in the spare table." - INDEX { cpqDaSpareCntlrIndex, cpqDaSparePhyDrvIndex } - ::= { cpqDaSpareTable 1 } - - CpqDaSpareEntry ::= SEQUENCE - { - cpqDaSpareCntlrIndex INTEGER, - cpqDaSparePhyDrvIndex INTEGER, - cpqDaSpareStatus INTEGER, - cpqDaSpareReplacedDrv INTEGER, - cpqDaSpareRebuildBlks Counter, - cpqDaSpareCondition INTEGER, - cpqDaSpareBusNumber INTEGER, - cpqDaSpareBay INTEGER, - cpqDaSpareReplacedDrvBusNumber INTEGER, - cpqDaSpareReplacedDrvBay INTEGER, - cpqDaSparePercentRebuild Gauge, - cpqDaSpareLocationString DisplayString - } - - cpqDaSpareCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Spare Controller Index. - - This index maps the spare drive back to the controller to which - it is attached. The value of this index is the same as the one - used under the controller group." - ::= { cpqDaSpareEntry 1 } - - cpqDaSparePhyDrvIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Spare Physical Drive Index. - - This index maps the spare to the physical drive it represents. - The value of this index is the same as the one used with the - physical drive table." - ::= { cpqDaSpareEntry 2 } - - cpqDaSpareStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - invalid(2), - failed(3), - inactive(4), - building(5), - active(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Status. - - This shows the status of the on-line spare drive. - - The following values are valid for the spare status: - - Failed (3) - The on-line spare has failed and is no longer available for use. - - Inactive (4) - The monitored system has an on-line spare configured, but is - not currently in use. - - Building (5) - A physical drive has failed. Automatic Data Recovery - is in progress to recover data to the on-line spare. - - Active (6) - A physical drive has failed. Automatic Data Recovery is - complete. The system is using the on-line spare as a - replacement for the failed drive." - ::= { cpqDaSpareEntry 3 } - - cpqDaSpareReplacedDrv OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Replaced Drive. - - If the spare status is active(6) or building(5), then this - has the physical drive number of the replaced drive. Otherwise - a value of -1 will be returned." - ::= { cpqDaSpareEntry 4 } - - cpqDaSpareRebuildBlks OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Drive Array Spare Number Of Rebuild Blocks Left. - - If the spare status is building(5), then this is the number of - blocks left to rebuild before completion. - - The data contained on the failed physical drive must be - reconstructed from the fault tolerance data and copied to the - spare so that the spare can function in place of the failed drive. - - When the number reaches zero (0), the building process is - complete and the spare has replaced the physical drive." - ::= { cpqDaSpareEntry 5 } - - cpqDaSpareCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Spare Drive condition. - - This value represents the overall condition of this spare drive - and any associated physical drives." - ::= { cpqDaSpareEntry 6 } - - cpqDaSpareBusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Drive SCSI Bus Number. - - The bus number indicates to which SCSI bus this spare drive - is attached. The first instance is one and increments for - each SCSI bus on a controller. A value of -1 will be - returned if the spare drive is attached to a controller - that does not support multiple SCSI busses. This is not - supported by the IDA, IDA Expansion, or IDA-2 controllers." - ::= { cpqDaSpareEntry 7 } - - cpqDaSpareBay OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Drive Bay Location. - - This value matches the bay location where the physical drive has - been installed. For a SCSI drive, this is the SCSI ID of the - drive." - ::= { cpqDaSpareEntry 8 } - - cpqDaSpareReplacedDrvBusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Replaced Drive Bus Number. - - If the spare status is active(6) or building(5), then this - has the physical drive bus number of the replaced drive. - If the value cannot be determined or is not applicable, the - value is set to -1." - ::= { cpqDaSpareEntry 9 } - - cpqDaSpareReplacedDrvBay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Replaced Drive Bay. - - If the spare status is active(6) or building(5), then this - has the physical drive bay number of the replaced drive. - If the value cannot be determined or is not applicable, the - value is set to -1." - ::= { cpqDaSpareEntry 10 } - - cpqDaSparePercentRebuild OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Spare Percent Rebuild. - - If the spare status is building(5), then this is percent - complete of of the rebuild. - - The data contained on the failed physical drive must be - reconstructed from the fault tolerance data and copied to the - spare so that the spare can function in place of the failed drive. - - When the number reaches one hundred (100), the building process - is complete and the spare has replaced the physical drive. - - If the value cannot be determined or a rebuild is not active, - the value is set to 4,294,967,295." - ::= { cpqDaSpareEntry 11 } - - cpqDaSpareLocationString OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spare Drive Location String. - - This string describes the location of the drive in relation to - the controller. If the location string cannot be determined, - the agent will return a NULL string." - ::= { cpqDaSpareEntry 12 } - - --- **************************************************************************** --- Drive Array Physical Drive Group --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaPhyDrv Group (1.3.6.1.4.1.232.3.2.5) --- cpqDaPhyDrvTable (1.3.6.1.4.1.232.3.2.5.1) --- --- The cpqDaPhyDrv group contains configuration and statistical --- information about the physical drives associated with drive array --- controllers. --- --- Implementation of the cpqDaPhyDrv group is mandatory for all agents --- that support the Drive Array MIB. --- --- **************************************************************************** - - - cpqDaPhyDrvTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaPhyDrvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Table. - - A table of physical drive entries." - ::= { cpqDaPhyDrv 1 } - - cpqDaPhyDrvEntry OBJECT-TYPE - SYNTAX CpqDaPhyDrvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Entry. - - A physical drive entry." - INDEX { cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvIndex } - ::= { cpqDaPhyDrvTable 1 } - - CpqDaPhyDrvEntry ::= SEQUENCE - { - cpqDaPhyDrvCntlrIndex INTEGER, - cpqDaPhyDrvIndex INTEGER, - cpqDaPhyDrvModel DisplayString, - cpqDaPhyDrvFWRev DisplayString, - cpqDaPhyDrvBay INTEGER, - cpqDaPhyDrvStatus INTEGER, - cpqDaPhyDrvFactReallocs INTEGER, - cpqDaPhyDrvUsedReallocs Counter, - cpqDaPhyDrvRefHours Counter, - cpqDaPhyDrvHReads Counter, - cpqDaPhyDrvReads Counter, - cpqDaPhyDrvHWrites Counter, - cpqDaPhyDrvWrites Counter, - cpqDaPhyDrvHSeeks Counter, - cpqDaPhyDrvSeeks Counter, - cpqDaPhyDrvHardReadErrs Counter, - cpqDaPhyDrvRecvReadErrs Counter, - cpqDaPhyDrvHardWriteErrs Counter, - cpqDaPhyDrvRecvWriteErrs Counter, - cpqDaPhyDrvHSeekErrs Counter, - cpqDaPhyDrvSeekErrs Counter, - cpqDaPhyDrvSpinupTime INTEGER, - cpqDaPhyDrvFunctTest1 Gauge, - cpqDaPhyDrvFunctTest2 Gauge, - cpqDaPhyDrvFunctTest3 Gauge, - cpqDaPhyDrvDrqTimeouts Counter, - cpqDaPhyDrvOtherTimeouts Counter, - cpqDaPhyDrvSpinupRetries Counter, - cpqDaPhyDrvBadRecvReads Counter, - cpqDaPhyDrvBadRecvWrites Counter, - cpqDaPhyDrvFormatErrs Counter, - cpqDaPhyDrvPostErrs Counter, - cpqDaPhyDrvNotReadyErrs Counter, - cpqDaPhyDrvReallocAborts Counter, - cpqDaPhyDrvThreshPassed INTEGER, - cpqDaPhyDrvHasMonInfo INTEGER, - cpqDaPhyDrvCondition INTEGER, - cpqDaPhyDrvHotPlugs Counter, - cpqDaPhyDrvMediaErrs Counter, - cpqDaPhyDrvHardwareErrs Counter, - cpqDaPhyDrvAbortedCmds Counter, - cpqDaPhyDrvSpinUpErrs Counter, - cpqDaPhyDrvBadTargetErrs Counter, - cpqDaPhyDrvLocation INTEGER, - cpqDaPhyDrvSize INTEGER, - cpqDaPhyDrvBusFaults Counter, - cpqDaPhyDrvIrqDeglitches Counter, - cpqDaPhyDrvHotPlug INTEGER, - cpqDaPhyDrvPlacement INTEGER, - cpqDaPhyDrvBusNumber INTEGER, - cpqDaPhyDrvSerialNum DisplayString, - cpqDaPhyDrvPreFailMonitoring INTEGER, - cpqDaPhyDrvCurrentWidth INTEGER, - cpqDaPhyDrvCurrentSpeed INTEGER, - cpqDaPhyDrvFailureCode INTEGER, - cpqDaPhyDrvBlinkTime Counter, - cpqDaPhyDrvSmartStatus INTEGER, - cpqDaPhyDrvConfigurationStatus INTEGER, - cpqDaPhyDrvRotationalSpeed INTEGER, - cpqDaPhyDrvType INTEGER, - cpqDaPhyDrvSataVersion INTEGER, - cpqDaPhyDrvHostConnector DisplayString, - cpqDaPhyDrvBoxOnConnector INTEGER, - cpqDaPhyDrvLocationString DisplayString, - cpqDaPhyDrvNegotiatedLinkRate INTEGER, - cpqDaPhyDrvNcqSupport INTEGER, - cpqDaPhyDrvPhyCount INTEGER, - cpqDaPhyDrvMultipathAccess INTEGER, - cpqDaPhyDrvMediaType INTEGER, - cpqDaPhyDrvCurrentTemperature INTEGER, - cpqDaPhyDrvTemperatureThreshold INTEGER, - cpqDaPhyDrvMaximumTemperature INTEGER, - cpqDaPhyDrvSSDWearStatus INTEGER, - cpqDaPhyDrvPowerOnHours Counter, - cpqDaPhyDrvSSDPercntEndrnceUsed Gauge, - cpqDaPhyDrvSSDEstTimeRemainingHours Counter, - cpqDaPhyDrvAuthenticationStatus INTEGER, - cpqDaPhyDrvSmartCarrierAppFWRev INTEGER, - cpqDaPhyDrvSmartCarrierBootldrFWRev INTEGER, - cpqDaPhyDrvEncryptionStatus INTEGER - } - - cpqDaPhyDrvCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Controller Index. - - This index maps the physical drive back to the controller to - which it is attached. The value of this index is the same as - the one used under the controller group." - ::= { cpqDaPhyDrvEntry 1 } - - cpqDaPhyDrvIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Index. - - This index is used for selecting the physical drive table entry. - This number, along with the cpqDaPhyDrvCntlrIndex uniquely - identify a specific physical drive." - ::= { cpqDaPhyDrvEntry 2 } - - cpqDaPhyDrvModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Model. - - This is a text description of the physical drive. The text that - appears depends upon who manufactured the drive and the drive - type. - - If a drive fails, note the model to identify the type of drive - necessary for replacement. - - If a model number is not present, you may not have properly - initialized the drive array to which the physical drive is - attached for monitoring." - ::= { cpqDaPhyDrvEntry 3 } - - cpqDaPhyDrvFWRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Firmware Revision. - - This shows the physical drive revision number. - - If the firmware revision is not present, you have not properly - initialized the drive array." - ::= { cpqDaPhyDrvEntry 4 } - - cpqDaPhyDrvBay OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Bay Location. - - This value matches the bay location where the physical drive has - been installed. For a SCSI drive, this is the SCSI ID of the - drive. For a SAS or SATA drive, this is the bay number on the - enclosure." - ::= { cpqDaPhyDrvEntry 5 } - - cpqDaPhyDrvStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - failed(3), - predictiveFailure(4), - erasing(5), - eraseDone(6), - eraseQueued(7), - ssdWearOut(8), - notAuthenticated(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Status. - - This shows the status of the physical drive. - - The following values are valid for the physical drive status: - - - Other (1) - Indicates that the instrument agent does not recognize - the drive. You may need to upgrade your instrument agent - and/or driver software. - - Ok (2) - Indicates the drive is functioning properly. - - Failed (3) - Indicates that the drive is no longer operating and - should be replaced. - - Predictive Failure(4) - Indicates that the drive has a predictive failure error and - should be replaced. - - Erasing(5) - Indicates that the drive is being erased. - - Erase Done(6) - Indicates that the drive has been erased and is now in an - offline state. - - Erase Queued(7) - Indicates that an erase operation is currently queued for - the drive. - - SSD Wear Out(8) - Indicates that a solid state drive is approaching the maximum - usage limit for writes (wear out) and should be replaced as soon - as possible. - - Not Authenticated(9) - Indicates the physical drive could not be authenticated as a genuine - HP hard drive. The array controller will no longer control the drive - LEDs. Please replace the hard drive with a genuine HP hard drive." - - - ::= { cpqDaPhyDrvEntry 6 } - - cpqDaPhyDrvFactReallocs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This shows the number of spare sectors available for - remapping at the time the physical drive was shipped. - The physical drive will use these spare sectors for remapping - bad sectors that exist on the drive. Not all drives support - factory reallocation." - ::= { cpqDaPhyDrvEntry 7 } - - cpqDaPhyDrvUsedReallocs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Used Reallocated Sectors. - - This shows the number of sectors of the reallocation area that - have been used by the physical drive. - - To see how many sectors were originally available for use in the - reallocation area, refer to the factory reallocation information - if it exists. Not all drives support factory reallocation. - - Because of the nature of magnetic disks, certain sectors on a - drive may have media defects. The reallocation area is part of - the disk drive that the drive manufacturer sets aside to - compensate for these defects. The drive array controller writes - information addressed from these unusable sectors to available - sectors in the reallocation area. If too many sectors have - been reallocated, there may be a problem with the drive. - - If you suspect a problem, schedule server down time to run - diagnostics to verify that a problem exists." - ::= { cpqDaPhyDrvEntry 8 } - - cpqDaPhyDrvRefHours OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reference Time in hours. - - This shows the total number of hours that a physical drive has - been in operation since the drive was stamped. The drive will have - either been stamped when it left the factory or when you ran - diagnostics on your new drive. You can use the reference - time to calculate rates for other physical drive events." - ::= { cpqDaPhyDrvEntry 9 } - - cpqDaPhyDrvHReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sectors Read (high). - - The phyDrvHReads and the phyDrvReads together shows the total - number of sectors read from the physical disk drive during the - reference time (phyDrvRefHours). - - The actual number of sectors read equals the phyDrvHReads - times 2^32 plus the phyDrvReads. - - This information may be useful for determining rates. - For instance, if you wanted to calculate the average number - of reads per hour of operation, divide this number by the - reference hours." - ::= { cpqDaPhyDrvEntry 10 } - - cpqDaPhyDrvReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sectors Read (low). - - The phyDrvHReads and the phyDrvReads together shows - the total number of sectors read from the physical disk drive - during the reference time (phyDrvRefHours). - - The actual number of sectors read equals the phyDrvHReads - times 2^32 plus the phyDrvReads. - - This information may be useful for determining rates. - For instance, if you wanted to calculate the average number - of reads per hour of operation, divide this number by the - reference hours." - ::= { cpqDaPhyDrvEntry 11 } - - cpqDaPhyDrvHWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sectors Written (high). - - The phyDrvHWrites and the phyDrvWrites together shows the - total number of sectors written to the physical disk drive - during the reference hours (phyDrvRefHours). - - The actual number of sectors written equals the phyDrvHWrites - times 2^32 plus the phyDrvWrites. - - This information may be useful for determining rates. - For instance, if you wanted to calculate the average number - of writes per hour of operation, divide this number by the - reference hours. " - ::= { cpqDaPhyDrvEntry 12 } - - cpqDaPhyDrvWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sectors Written (low). - - The phyDrvHWrites and the phyDrvWrites together - shows the total number of sectors written to the physical - disk drive during the reference hours (phyDrvRefHours). - - The actual number of sectors written equals the phyDrvHWrites - times 2^32 plus the phyDrvWrites. - - This information may be useful for determining rates. - For instance, if you wanted to calculate the average number of - writes per hour of operation, divide this number by the reference - hours. " - ::= { cpqDaPhyDrvEntry 13 } - - cpqDaPhyDrvHSeeks OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total Seeks (high). - - The phyDrvHSeeks and the phyDrvSeeks together shows the total - number of seek operations performed by the physical disk drive - during the reference hours (phyDrvRefHours). - - The actual number of seeks equals the phyDrvHSeeks times - 2^32 plus the phyDrvWriteSeeks." - ::= { cpqDaPhyDrvEntry 14 } - - cpqDaPhyDrvSeeks OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total Seeks (low). - - The phyDrvHSeeks and the phyDrvSeeks together shows the total - number of seek operations performed by the physical disk drive - during the reference hours (phyDrvRefHours). - - The actual number of seeks equals the phyDrvHSeeks times - 2^32 plus the phyDrvWriteSeeks." - ::= { cpqDaPhyDrvEntry 15 } - - cpqDaPhyDrvHardReadErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Hard Read Errors. - - This shows the number of read errors that have occurred on a - drive that could not be recovered by a physical drive`s Error - Correction Code (ECC) algorithm or through retries during the - reference time (phyDrvRefTime). Over time, a disk drive may - produce these errors. If you receive these errors, a problem - may exist with your drive. - - The value increases every time the physical drive detects another - error. - - The severity of these errors depends on whether the monitored - system is running in a fault tolerant mode. With fault tolerance, - the controller can remap data to eliminate the problems caused by - these errors. In either case, if you see an increase in these - errors, schedule server down time to run diagnostics to verify - that a problem exists." - ::= { cpqDaPhyDrvEntry 16 } - - cpqDaPhyDrvRecvReadErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovered Read Errors. - - This shows the number of read errors corrected through physical - drive retries during the reference time (phyDrvRefTime). - - Over time, all disk drives produce these errors. If you notice a - rapid increase in the value for Recovered Read Errors (or Hard - Read Errors), a problem may exist with the drive. The value - increases every time the physical drive detects and corrects - another error. - - Expect more Recovered Read Errors than Hard Read Errors. If you - suspect that a problem may exist with the drive, schedule server - down time to run diagnostics." - ::= { cpqDaPhyDrvEntry 17 } - - cpqDaPhyDrvHardWriteErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Hard Write Errors. - - This shows the number of write errors that could not be recovered - by a physical drive during the reference time (phyDrvRefTime). - - Over time a disk drive may detect these errors. If you notice an - increase in the value shown for Hard Write Errors or Recovered - Write Errors, a problem may exist with the drive. The value - increases every time the physical drive detects another error. - On average, these errors should occur less frequently than - read errors. If you see an increase in these errors, schedule - server down time to run diagnostics to verify that a problem - exists." - ::= { cpqDaPhyDrvEntry 18 } - - cpqDaPhyDrvRecvWriteErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovered Write Errors. - - This shows the number of write errors corrected through physical - drive retries or recovered by a physical drive during the - reference time (phyDrvRefTime). - - Over time a disk drive may produce these errors. - - If you notice an increase in the value shown for Hard Write - Errors or Recovered Write Errors, a problem may exist with - the drive. - - The value increases every time the physical drive detects and - corrects an error. Only an unusually rapid increase in these - errors indicates a problem. - - On average, these errors should occur less frequently than hard - read errors. If you suspect that a problem may exist with the - drive, schedule server down time to run diagnostics." - ::= { cpqDaPhyDrvEntry 19 } - - cpqDaPhyDrvHSeekErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Seek Errors (High). - - The phyDrvHSeekErrs and the phyDrvSeekErrs together shows the - total number of times that the physical disk drive detected a - seek error during the reference hours (phyDrvRefHours). - - The actual number of seek errors equals the phyDrvHSeekErrs times - 2^32 plus the phyDrvWriteSeekErrs. - - Over time, a disk drive usually produces these errors. If you - notice a rapid increase in the value shown for Seek Errors, - this physical drive may be failing. - - The value increases every time the physical drive produces - another error. Only an unusually rapid increase in these errors - indicates a problem. If you suspect that a problem exists, - schedule server down time to run diagnostics." - ::= { cpqDaPhyDrvEntry 20 } - - cpqDaPhyDrvSeekErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Seek Errors (low). - The phyDrvHSeekErrs and the phyDrvSeekErrs together shows the - total number of times that the physical disk drive detected a - seek error during the reference hours (phyDrvRefHours). - - The actual number of seek errors equals the phyDrvHSeekErrs times - 2^32 plus the phyDrvWriteSeekErrs. - - Over time, a disk drive usually produces these errors. If you - notice a rapid increase in the value shown for Seek Errors, - this physical drive may be failing. - - The value increases every time the physical drive produces another - error. Only an unusually rapid increase in these errors indicates - a problem. If you suspect that a problem exists, schedule server - down time to run diagnostics." - ::= { cpqDaPhyDrvEntry 21 } - - cpqDaPhyDrvSpinupTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spin up Time in tenths of seconds. - - This is the time it takes for a physical drive to spin up to full - speed. - - Disks require time to gain momentum and reach operating speed. As - cars are tested to go from 0 mph to 60 mph in x number of seconds, - drive manufacturers have preset expectations for the time it takes - the drive to spin to full speed. Drives that do not meet these - expectations may have problems. - - The value may be zero (0) under one of the following conditions: - - * If you are monitoring a physical drive that is part of the - monitored system`s internal drive array storage, and you use a - warm boot to reset the monitored system. During a warm boot, - the drives continue to spin. - - * If you are monitoring a physical drive in an ProLiant Storage - System and you reset the monitored system but not the - ProLiant Storage System." - ::= { cpqDaPhyDrvEntry 22 } - - cpqDaPhyDrvFunctTest1 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Functional Test 1. - - This provides information about a series of tests that indicate - how well a physical drive works. These tests compare the way the - physical drive currently operates when performing various tasks - with the way it worked when it was new. - - A percent value is displayed that represents how the drive works - currently when compared to how the drive worked when new. New - drives operate at the 100 percent level. By default, if the - current value is less than or equal to 80 percent, a problem may - exist. - - If you suspect a problem, schedule server down time to run - diagnostics to verify that a problem exists. - - If the value cannot be determined, it is set to 4,294,967,295." - ::= { cpqDaPhyDrvEntry 23 } - - cpqDaPhyDrvFunctTest2 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Functional Test 2. - - This provides information about a series of tests that indicate - how well a physical drive works. These tests compare the way the - physical drive currently operates when performing various tasks - with the way it worked when it was new. - - A percent value is displayed that represents how the drive works - currently when compared to how the drive worked when new. New - drives operate at the 100 percent level. By default, if the - current value is less than or equal to 80 percent, a problem may - exist. - - If you suspect a problem, schedule server down time to run - diagnostics to verify that a problem exists. - - If the value cannot be determined, it is set to 4,294,967,295." - ::= { cpqDaPhyDrvEntry 24 } - - cpqDaPhyDrvFunctTest3 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Functional Test 3. - - This provides information about a series of tests that indicate - how well a physical drive works. These tests compare the way the - physical drive currently operates when performing various tasks - with the way it worked when it was new. - - A percent value is displayed that represents how the drive works - currently when compared to how the drive worked when new. New - drives operate at the 100 percent level. By default, if the - current value is less than or equal to 80 percent, a problem may - exist. - - If you suspect a problem, schedule server down time to run - diagnostics to verify that a problem exists. - - If the value cannot be determined, it is set to 4,294,967,295." - ::= { cpqDaPhyDrvEntry 25 } - - cpqDaPhyDrvDrqTimeouts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "DRQ Timeouts. - - The number of times that a physical drive continued to request - data, but did not get a command completion during the reference - time (phyDrvRefTime). This value increases every time a DRQ - timeout occurs for the physical drive. - - A defective drive or cable may cause DRQ timeouts to occur. - If you see an increase in these errors, complete the following - steps for the monitored system: - - 1. Check the cables connecting the drive to ensure that - they are intact. - - 2. If the cables are properly connected, schedule server down - time to run diagnostics to verify that a problem exists. - - If the value is not supported, it is set to 4,294,967,295." - ::= { cpqDaPhyDrvEntry 26 } - - cpqDaPhyDrvOtherTimeouts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Other Timeouts. - - The number of times that a physical drive did not respond with an - interrupt within a controller-defined period of time after a - command had been issued during the reference time (phyDrvRefTime). - This does not include DRQ timeouts. - - If you suspect a problem, complete the following steps for the - monitored system: - - 1. Check the cables connecting the drive to ensure that they - are intact. - - 2. If the cables are properly connected, schedule server down - time to run diagnostics to verify that a problem - exists." - ::= { cpqDaPhyDrvEntry 27 } - - cpqDaPhyDrvSpinupRetries OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spin up Retries. - - The number of times that a physical drive had to retry to spin up - before successfully achieving operating speed during the reference - time (phyDrvRefTime). This value represents the spin-up retries - that occurred since the last time you turned on the monitored - system. - - If you suspect a problem, schedule server down time to run - diagnostics verify that a problem exists." - ::= { cpqDaPhyDrvEntry 28 } - - cpqDaPhyDrvBadRecvReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovery Failed (Bad) Read Error. - - The number of times a read error occurred while performing - Automatic Data Recovery from this physical drive to another - drive during the reference time (phyDrvRefTime). - - If a read error occurs, Automatic Data Recovery stops. - These errors indicate that the physical drive has failed. - If you suspect a problem, schedule server down time to run - diagnostics to verify that a problem exists." - ::= { cpqDaPhyDrvEntry 29 } - - cpqDaPhyDrvBadRecvWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovery Failed (Bad) Write Error. - - The number of times a write error occurred while performing - Automatic Data Recovery from another drive to this physical - drive during the reference time (phyDrvRefTime). - - If a write error occurs, Automatic Data Recovery stops. - These errors indicate that the physical drive has failed. - If you suspect a problem, schedule server down time to run - diagnostics to verify that a problem exists." - ::= { cpqDaPhyDrvEntry 30 } - - cpqDaPhyDrvFormatErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Format Error. - - The number of times a format operation failed when the controller - attempted to remap a bad sector during the reference time - (phyDrvRefTime). Zero indicates that no format errors have - occurred. The value increases each time a format error occurs. - A failed format operation may cause the controller to mark a - drive failed. - - If you suspect a problem, schedule server down time to run - diagnostics verify a problem exists." - ::= { cpqDaPhyDrvEntry 31 } - - cpqDaPhyDrvPostErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Power On Self Test (Post) Error. - - The number of times that a physical drive failed its self test - during the reference time (phyDrvRefTime). - - The physical drive does a self test each time power is applied - to the system. - - If the value is not supported, it is set to 4,294,967,295." - ::= { cpqDaPhyDrvEntry 32 } - - cpqDaPhyDrvNotReadyErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Not Ready Errors. - - The number of times the physical drive failed after the spin up - command was issued during the reference time (phyDrvRefTime). - When the spin up command was issued, the drive failed to reach - its ready state. If the current value is zero, the drive has - not failed. If the current value is greater than zero, at - least one failure occurred. - - This error could be caused because the physical drive has failed - to spin. - - If you suspect a problem: - - 1. Check the cables connecting the drive to ensure that they - are intact. - - 2. If the cables are properly connected, schedule server down - time to run diagnostics to verify that a problem exists." - ::= { cpqDaPhyDrvEntry 33 } - - cpqDaPhyDrvReallocAborts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Reallocation Aborts. - - The number of times the physical drive has failed due to an error - that occurred when the controller was trying to reallocate a bad - sector during the reference time (phyDrvRefTime). Zero (0) - indicates that no Reallocation Abort errors have occurred. - The value increases each time a Reallocation Abort error occurs. - - Because of the nature of magnetic disks, certain sectors on a - drive may have media defects. The reallocation area is part of - the disk drive that is set aside to compensate for these defects. - The array controller writes information addressed from unusable - sectors to available sectors in the reallocation area. - - If you suspect a problem, schedule server down time to run - diagnostics verify a problem exists." - ::= { cpqDaPhyDrvEntry 34 } - - cpqDaPhyDrvThreshPassed OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Factory Threshold Passed (Exceeded). - - When the drive is shipped, certain thresholds have been set to - monitor performance of the drives. For example, a threshold - might be set for Spin up Time. If the time that it takes the - drive to spin up exceeds the factory threshold, there may be - a problem with one of the drives. - - If you suspect a problem, schedule server down time to run - diagnostics. - - Note: These thresholds may be under warranty under certain - conditions." - ::= { cpqDaPhyDrvEntry 35 } - - cpqDaPhyDrvHasMonInfo OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Has Monitor Information. - - All of the physical disk table fields except for the physical - disk status (phyDrvStatus) and the bay location - (phyDrvBayLocation) are invalid unless this field has a value - of true(2)." - ::= { cpqDaPhyDrvEntry 36 } - - cpqDaPhyDrvCondition OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The condition of the device. - This value represents the overall condition of this physical - drive." - ::= { cpqDaPhyDrvEntry 37 } - - cpqDaPhyDrvHotPlugs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Hot Plug Count. - - This value indicates the number of times this physical drive - was hot-plugged (removed) from a ProLiant Storage System. - This is not supported by the IDA, IDA Expansion, or IDA-2 - controllers." - ::= { cpqDaPhyDrvEntry 38 } - - cpqDaPhyDrvMediaErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Media Failure Count. - - This value indicates the number of times this physical drive - was failed due to unrecoverable media errors. This is not - supported by the IDA, IDA Expansion, or IDA-2 controllers." - ::= { cpqDaPhyDrvEntry 39 } - - cpqDaPhyDrvHardwareErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Hardware Error Count. - - This value indicates the number of times this physical drive - returned a bad hardware status. The drive may be failed if - retries do not work. This is not supported by the IDA, - IDA Expansion, or IDA-2 controllers." - ::= { cpqDaPhyDrvEntry 40 } - - cpqDaPhyDrvAbortedCmds OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Aborted Command Failures. - - This value indicates the number of times this physical drive - was failed due to aborted commands that could not be retried - successfully. This is not supported by the IDA, IDA Expansion, - or IDA-2 controllers." - ::= { cpqDaPhyDrvEntry 41 } - - cpqDaPhyDrvSpinUpErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Spin-Up Failure Count. - - This value indicates the number of times this physical drive - was failed due to a failure of a spin-up command. This is not - supported by the IDA, IDA Expansion, or IDA-2 controllers." - ::= { cpqDaPhyDrvEntry 42 } - - cpqDaPhyDrvBadTargetErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Bad Target Count. - - This value indicates the number of times this physical drive - performed some action that did not conform to the SCSI-2 bus - protocol. These actions will cause the SCSI bus to be reset. - This is not supported by the IDA, IDA Expansion, or IDA-2 - controllers." - ::= { cpqDaPhyDrvEntry 43 } - - cpqDaPhyDrvLocation OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - internal(2), - external(3), - proLiant(4) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Drive Physical Location. - - This is the physical location of where the drive is located. - The following values are defined: - - other(1) - The location of the drive is not known. - - internal(2) - The drive is located inside of the computer system box. - - external(3) - The drive is located outside of the computer system box. - - proLiant(4) - The drive is located outside of the computer system box - in a ProLiant Storage System." - - ::= { cpqDaPhyDrvEntry 44 } - - cpqDaPhyDrvSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Size in MB. - - This is the size of the physical drive in megabytes. This value - is calculated using the value 1,048,576 (2^20) as a megabyte. - Drive manufacturers sometimes use the number 1,000,000 as a - megabyte when giving drive capacities so this value may differ - from the advertised size of a drive. This field is only - applicable for controllers which support SCSI drives, and - therefore is not supported by the IDA or IDA-2 controllers. - The field will contain 0xFFFFFFFF if the drive capacity cannot - be calculated or if the controller does not support SCSI drives." - ::= { cpqDaPhyDrvEntry 45 } - - cpqDaPhyDrvBusFaults OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Bus Fault Count. - - This value indicates the number of times that a bus fault was - detected for the drive by the controller. This is not supported - by the IDA, IDA Expansion, or IDA-2 controllers." - ::= { cpqDaPhyDrvEntry 46 } - - cpqDaPhyDrvIrqDeglitches OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive IRQ Deglitch Count. - - This is not supported by the IDA, IDA Expansion, or IDA-2 - controllers." - ::= { cpqDaPhyDrvEntry 47 } - - cpqDaPhyDrvHotPlug OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - hotPlug(2), - nonHotPlug(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Hot Plug Support Status. - - The following values are defined: - - other(1) - The Insight Agent is unable to determine if this drive - supports hot plug replacement. - - hotPlug(2) - The drive supports hot plug replacement. - - nonhotPlug(3) - The drive does not support hot plug replacement." - ::= { cpqDaPhyDrvEntry 48 } - - cpqDaPhyDrvPlacement OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - internal(2), - external(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Placement. - - The following values are defined: - - other(1) - The agent is unable to determine if the drive is internal or - external to the system chassis. - - internal(2) - The drive is located in the system chassis. - - external(3) - The drive is located outside the system chassis in an - expansion box." - ::= { cpqDaPhyDrvEntry 49 } - - cpqDaPhyDrvBusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive SCSI Bus Number. - - The bus number indicates to which SCSI bus this physical - drive is attached. The first instance is one and increments - for each SCSI bus on a controller. A value of -1 will be - returned if the physical drive is attached to a controller - that does not support multiple SCSI busses. This is not - supported by the IDA, IDA Expansion, or IDA-2 controllers. - For SAS and SATA drives, the bus number corresponds to the - enclosure where the drive resides." - ::= { cpqDaPhyDrvEntry 50 } - - cpqDaPhyDrvSerialNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Serial Number. - - This is the serial number assigned to the physical drive. - This value is based upon the serial number as returned by the - SCSI inquiry command but may have been modified due to space - limitations. This can be used for identification purposes." - ::= { cpqDaPhyDrvEntry 51 } - - - cpqDaPhyDrvPreFailMonitoring OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notAvailable(2), - available(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Predictive Failure Monitoring. - - The following values are defined: - - other(1) - The agent is unable to determine if the drive supports - predictive failure monitoring. - - notAvailable(2) - This drive does not support predictive failure monitoring. - - available(3) - This drive supports predictive failure monitoring." - ::= { cpqDaPhyDrvEntry 52 } - - cpqDaPhyDrvCurrentWidth OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - narrow(2), - wide16(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Current Width. - - The following values are defined: - - other(1) - The agent is unable to determine the current negotiated data - transfer width for this drive. - - narrow(2) - The negotiated data transfer width for this drive is narrow - (8 data bits). - - wide16(3) - The negotiated data transfer width for this drive is wide - (16 data bits)." - ::= { cpqDaPhyDrvEntry 53 } - - cpqDaPhyDrvCurrentSpeed OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - asynchronous(2), - fast(3), - ultra(4), - ultra2(5), - ultra3(6), - ultra320(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Current Data Transfer Speed. - - The following values are defined: - - other(1) - The agent is unable to determine the current negotiated data - transfer speed for this drive. - - asynchronous(2) - The negotiated data transfer speed for this drive is - asynchronous. - - fast(3) - The negotiated data transfer speed for this drive is 10 million - transfers per second). - - ultra(4) - The negotiated data transfer speed for this drive is 20 million - transfers per second. - - ultra2(5) - The negotiated data transfer speed for this drive is 40 million - transfers per second. - - ultra3(6) - The negotiated data transfer speed for this drive is 80 million - transfers per second. - - ultra320(7) - The negotiated data transfer speed for this drive is 160 - million transfers per second." - ::= { cpqDaPhyDrvEntry 54 } - - cpqDaPhyDrvFailureCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Failure Code. - - This value is the drive failure reason code returned by the - array firmware. It is valid only when the drive is failed. - If the drive is not failed, 0 is returned." - ::= { cpqDaPhyDrvEntry 55 } - - cpqDaPhyDrvBlinkTime OBJECT-TYPE - SYNTAX Counter - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Physical Drive Blink Time Count. - - This value indicates the amount of time, in tenths of a second, - that the physical drive LEDs will continue to blink. A value of - zero indicates the drive LEDs are not blinking. If the value - cannot be determined or the drive is not in a hot plug tray, - 4,294,967,295 is returned. - - To blink the drive LEDs, set this value to the time to blink in - tenths of seconds. - - To stop the drive LEDs from blinking, set this value to 0." - ::= { cpqDaPhyDrvEntry 56 } - - cpqDaPhyDrvSmartStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - replaceDrive(3), - replaceDriveSSDWearOut(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive S.M.A.R.T Status. - - The following values are defined: - - other(1) - The agent is unable to determine if the status of S.M.A.R.T - predictive failure monitoring for this drive. - - ok(2) - Indicates the drive is functioning properly. - - replaceDrive(3) - Indicates that the drive has a S.M.A.R.T predictive failure - error and should be replaced. - - replaceDriveSSDWearOut(4) - Indicates that the solid state drive has a S.M.A.R.T wear - error and is approaching the maximum usage limit for writes - (wear out). The solid state drive should be replaced as soon as - possible." - ::= { cpqDaPhyDrvEntry 57 } - - cpqDaPhyDrvConfigurationStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - configured(2), - notConfigured(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Configuration Status. - - The following values are defined: - - other(1) - The agent is unable to determine the configuration status of - this physical drive. - - configured(2) - Indicates the drive is configured to be part of a logical - drive as either a member drive or a spare drive. - - notConfigured(3) - Indicates the drive is not configured to be part of a logical - drive as either a member drive or a spare drive." - ::= { cpqDaPhyDrvEntry 58 } - - cpqDaPhyDrvRotationalSpeed OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - rpm7200(2), - rpm10K(3), - rpm15K(4), - rpmSsd(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Rotational Speed. - - The following values are defined: - - other(1) - The agent is unable to determine the rotational speed for - this drive. - - rpm7200(2) - The rotational speed for this drive is 7200 rpm. - - rpm10K(3) - The rotational speed for this drive is 10000 rpm. - - rpm15K(4) - The rotational speed for this drive is 15000 rpm. - - rpmSsd(5) - The drive is made of solid state electronics and does not - have a rotational speed." - ::= { cpqDaPhyDrvEntry 59 } - - cpqDaPhyDrvType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - parallelScsi(2), - sata(3), - sas(4), - nvme(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Type. - - The following values are defined: - - other(1) - The agent is unable to determine the type for this drive. - - parallelScsi(2) - The drive type is parallel SCSI. - - sata(3) - The drive type is Serial ATA. - - sas(4) - The drive type is Serial Attached SCSI. - - nvme(5) - The drive type is Non-Volatile Memory Express." - ::= { cpqDaPhyDrvEntry 60 } - - cpqDaPhyDrvSataVersion OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - sataOne(2), - sataTwo(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive SATA Version. - - The following values are defined: - - other(1) - The agent is unable to determine the SATA version for this - drive or it is not a SATA drive. - - sataOne(2) - The drive is SATA version one. - - sataTwo(3) - The drive is SATA version two." - ::= { cpqDaPhyDrvEntry 61 } - - - cpqDaPhyDrvHostConnector OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Host Connector. - - This is the host connector to which the drive is ultimately - attached. If the host connector cannot be determined, the agent - will return a NULL string." - ::= { cpqDaPhyDrvEntry 62 } - - cpqDaPhyDrvBoxOnConnector OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Box on Connector. - - The box on connector indicates to which box instance this - physical drive belongs. The instances start at one and increment for - each box attached to a connector. A value of -1 is returned for drives - that do not support cpqDaPhyDrvBoxOnConnector." - ::= { cpqDaPhyDrvEntry 63 } - - cpqDaPhyDrvLocationString OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Location String. - - This string describes the location of the drive in relation to - the controller. If the location string cannot be determined, - the agent will return a NULL string." - ::= { cpqDaPhyDrvEntry 64 } - - cpqDaPhyDrvNegotiatedLinkRate OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - rate-1-5(2), - rate-3-0(3), - rate-6-0(4), - rate-12-0(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Negotiated Link Rate. - - The following values are defined: - - other(1) - The agent is unable to determine the negotiated link rate - this drive or it is not a SAS or SATA drive. - - rate-1-5(2) - The negotiated link rate for this drive is 1.5 Gigabits per - second. - - rate-3-0(3) - The negotiated link rate for this drive is 3.0 Gigabits per - second. - - rate-6-0(4) - The negotiated link rate for this drive is 6.0 Gigabits per - second. - - rate-12-0(5) - The negotiated link rate for this drive is 12.0 Gigabits per - second." - ::= { cpqDaPhyDrvEntry 65 } - - cpqDaPhyDrvNcqSupport OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - noControllerSupport(2), - noDriveSupport(3), - ncqDisabled(4), - ncqEnabled(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Native Command Queueing. - - The following values are defined: - - other(1) - The agent is unable to determine the NCQ configuration for - this drive or it is not a SATA drive. - - noControllerSupport(2) - The array controller does not support NCQ. - - noDriveSupport(3) - The array controller does support NCQ, but the drive does not. - - ncqDisabled(4) - The array controller and drive support NCQ, but it is disabled. - - ncqEnabled(5) - The array controller and drive support NCQ and it is enabled." - ::= { cpqDaPhyDrvEntry 66 } - - cpqDaPhyDrvPhyCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive PHY Count. - - This value indicates how many PHYs exist on SAS/SATA disk. For - parallel SCSI disks, this value is set to -1." - ::= { cpqDaPhyDrvEntry 67 } - - cpqDaPhyDrvMultipathAccess OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - notConfigured(3), - pathRedundant(4), - noRedundantPath(5), - driveFailed(6) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Multi-path Access Status. - - This indicates if this physical drive has been configured to have - and currently still has more than one I/O path to the controller. - The following values are valid: - - Other (1) - Indicates that the instrument agent can not determine if this - physical drive has multi-path access. - - Not Supported (2) - Indicates that multi-path access to this physical drive is not - supported. - - Not Configured (3) - Indicates that the physical drive is not configured to have - multi-path access. - - Path Redundant (4) - Indicates that the physical drive currently has more than one - I/O path to the controller. - - No Redundant Path (5) - Indicates that the physical drive previously had more than one - I/O path to the controller, but now has no redundant I/O path. - - Drive Failed (6) - Indicates that the physical drive has failed." - ::= { cpqDaPhyDrvEntry 68 } - - cpqDaPhyDrvMediaType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - rotatingPlatters(2), - solidState(3), - smr(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Media Type. - - The following values are defined: - - other(1) - The instrument agent is unable to determine the media type of physical drive. - - - rotatingPlatters(2) - The physical drive media is composed of rotating platters. - - solidState(3) - The physical drive media is composed of solid state electronics. - - smr(4) - The physical drive media is composed of Shingled Magnetic Recording." - ::= { cpqDaPhyDrvEntry 69 } - - cpqDaPhyDrvCurrentTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Current Temperature. - - This is the temperature of the physical drive in degrees Celsius. - The field will contain -1 if the drive temperature cannot be - calculated or if the controller does not support reporting drive - temperature." - ::= { cpqDaPhyDrvEntry 70 } - - cpqDaPhyDrvTemperatureThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Temperature Threshold. - - This is the temperature in degrees Celsius at which the drive says it is - overheated. The field will contain -1 if the drive temperature - threshold cannot be calculated or if the controller does not support - reporting drive temperature threshold." - ::= { cpqDaPhyDrvEntry 71 } - - cpqDaPhyDrvMaximumTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Maximum Temperature. - - This is the maximum temperature in degrees Celsius that the drive has - reached. The field will contain -1 if the maximum drive - temperature cannot be calculated or if the controller does not support - reporting maximum drive temperature." - ::= { cpqDaPhyDrvEntry 72 } - - cpqDaPhyDrvSSDWearStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - fiftySixDayThreshold(3), - fivePercentThreshold(4), - twoPercentThreshold(5), - ssdWearOut(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Solid State Disk Wear Status. - - This shows the wear status of the solid state physical drive. - - The following values are valid for the physical drive solid state - wear status: - - - Other (1) - The instrument agent is unable to determine the solid state disk - wear status of the physical drive. This value would be used for non - SSD drives or SSD drives that do not support wear reporting. - - Ok (2) - Indicates the solid state disk is not in any imminent danger - of wear out. - - Fifty Six Day Threshold Passed (3) - Indicates that based upon the current workload, the solid state - disk will reach the maximum usage limit for writes (wear out) - within fifty-six days. You should modify your write workload or - begin preparing to replace your SSD drive. - - Five Percent Threshold Passed (4) - Indicates that the solid state disk has passed the five percent - threshold and is at or below five percent of reaching the maximum - usage limit for writes (wear out). You should begin to prepare - to replace your SSD drive. - - Two Percent Threshold Passed (5) - Indicates that the solid state disk has passed the two percent - threshold and is at or below two percent of reaching the maximum - usage limit for writes (wear out). You should begin to prepare - to replace your SSD drive. - - SSD Wear Out(6) - Indicates that a solid state drive is approaching the maximum - usage limit for writes (wear out) and should be replaced as soon - as possible." - ::= { cpqDaPhyDrvEntry 73 } - - cpqDaPhyDrvPowerOnHours OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Power On Hours. - - This is the total number of hours that the physical disk - has been powered on. This value will be 4,294,967,295 if the disk - power on hours cannot be determined or is not supported." - ::= { cpqDaPhyDrvEntry 74 } - - cpqDaPhyDrvSSDPercntEndrnceUsed OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Solid State Percent Endurance Used. - - This value specifies the hundredths of the percentage of solid state - disk life used. The value of this field is allowed to exceed 100%. - - As an example, if the value reported is 50, this would indicate .50 - percent endurance used. - - This value will be 4,294,967,295 if the percent endurance used cannot - be determined or is not supported." - ::= { cpqDaPhyDrvEntry 75 } - - cpqDaPhyDrvSSDEstTimeRemainingHours OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Solid State Estimated Time Remaining In - Hours. - - This is the estimated total number of hours that the solid state - physical disk has remaining. This value will be 4,294,967,295 if the - solid state disk estimated time remaining in hours cannot be - determined or is not supported." - ::= { cpqDaPhyDrvEntry 76 } - - cpqDaPhyDrvAuthenticationStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - authenticationFailed(3), - authenticationPassed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Authentication Status. - - The following values are defined: - - Other (1) - Indicates that the instrument agent can not determine the - physical drive`s authentication status. - - Not Supported (2) - Indicates that authentication for this physical drive is not - supported. - - Authentication Failed(3) - The physical drive could not be authenticated as a genuine HP hard drive. - The array controller will no longer control the drive LEDs. Please replace - the hard drive with a genuine HP hard drive. - - Authentication Passed(4) - The physical drive has passed all authentication tests and has been validated - to be a genuine HP hard drive." - ::= { cpqDaPhyDrvEntry 77 } - - cpqDaPhyDrvSmartCarrierAppFWRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Smart Carrier Application Firmware Revision. - - This displays the physical drive smart carrier application - firmware revision number. - - This value will be nonzero if the physical drive supports - authentication and cpqDaPhyDrvAuthenticationStatus has a value of - authenticationPassed(4)." - ::= { cpqDaPhyDrvEntry 78 } - - cpqDaPhyDrvSmartCarrierBootldrFWRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Smart Carrier Bootloader Firmware Revision. - - This displays the physical drive smart carrier bootloader - firmware revision number. - - This value will be nonzero if the physical drive supports - authentication and cpqDaPhyDrvAuthenticationStatus has a value of - authenticationPassed(4)." - ::= { cpqDaPhyDrvEntry 79 } - - cpqDaPhyDrvEncryptionStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - encrypted(2), - notEncrypted(3) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Encryption Status. - - The physical drive`s encryption status. The following values are - valid: - - other (1) - Indicates that the instrument agent does not recognize the - value. You may need to upgrade the instrument agent. - - Encrypted (2) - Indicates this drive is online and a member of a logical drive that - is encrypted. - - Not Encrypted (3) - Indicates this drive is not a member of a logical drive that - is encrypted." - ::= { cpqDaPhyDrvEntry 80 } - - --- **************************************************************************** --- Drive Array Physical Drive Error Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaPhyDrv Group (1.3.6.1.4.1.232.3.2.5) --- cpqDaPhyDrvErrTable (1.3.6.1.4.1.232.3.2.5.2) --- --- **************************************************************************** - - cpqDaPhyDrvErrTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaPhyDrvErrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Error Log Table. - - A table of physical drive entries. The Error Log Table is not - supported by the IDA, IDA Expansion, or IDA-2 controllers." - ::= { cpqDaPhyDrv 2 } - - cpqDaPhyDrvErrEntry OBJECT-TYPE - SYNTAX CpqDaPhyDrvErrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Entry." - INDEX { cpqDaPhyDrvErrCntlrIndex, cpqDaPhyDrvErrIDIndex, - cpqDaPhyDrvErrIndex } - ::= { cpqDaPhyDrvErrTable 1 } - - CpqDaPhyDrvErrEntry ::= SEQUENCE - { - cpqDaPhyDrvErrCntlrIndex INTEGER, - cpqDaPhyDrvErrIDIndex INTEGER, - cpqDaPhyDrvErrIndex INTEGER, - cpqDaPhyDrvErrType INTEGER, - cpqDaPhyDrvScsiOp INTEGER, - cpqDaPhyDrvScsiStatus INTEGER, - cpqDaPhyDrvCamStatus INTEGER, - cpqDaPhyDrvSenseKey INTEGER, - cpqDaPhyDrvQualifier INTEGER, - cpqDaPhyDrvSenseCode INTEGER, - cpqDaPhyDrvBlockValid INTEGER, - cpqDaPhyDrvBlock INTEGER, - cpqDaPhyDrvTime INTEGER, - cpqDaPhyDrvUserDesc DisplayString, - cpqDaPhyDrvErrDesc INTEGER - } - - cpqDaPhyDrvErrCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Error Log Controller Index. - - This index maps the physical drive back to the controller to - which it is attached. The value of this index is the same as - the one used under the controller group." - ::= { cpqDaPhyDrvErrEntry 1 } - - cpqDaPhyDrvErrIDIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Error Log Index. - - This index is used for selecting the physical drive table entry. - This number, along with the cpqDaPhyDrvErrCntlrIndex uniquely - identify a specific physical drive." - ::= { cpqDaPhyDrvErrEntry 2 } - - cpqDaPhyDrvErrIndex OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Error Log Index. - - This index is used for selecting the physical drive table entry. - This number, along with the cpqDaPhyDrvErrCntlrIndex uniquely - identify a specific physical drive." - ::= { cpqDaPhyDrvErrEntry 3 } - - cpqDaPhyDrvErrType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - noError(2), - scsiError(3), - camError(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Error Type. - - The type of error in the error log. The valid types are: - - Other (1) - Indicates that the instrument agent does not recognize the - type of error in the error log. - - No Error (2) - Indicates that this error log entry does not have an error. - - SCSI Error (3) - Indicates that this error log entry is a SCSI Error. - - CAM Error (4) - Indicates that this error log entry is a CAM error." - ::= { cpqDaPhyDrvErrEntry 4 } - - cpqDaPhyDrvScsiOp OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log SCSI Operation. - - This is the SCSI Command Operation Code byte associated with the - error log entry. For further specifications consult a SCSI-2 - logical specification or other SCSI reference." - ::= { cpqDaPhyDrvErrEntry 5 } - - cpqDaPhyDrvScsiStatus OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log SCSI Status. - - This is the SCSI Status Code byte associated with the error log - entry. For further specifications consult a SCSI-2 logical - specification or other SCSI reference." - ::= { cpqDaPhyDrvErrEntry 6 } - - cpqDaPhyDrvCamStatus OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log CAM Status. - - This is the SCSI CAM Status byte associated with the error log - entry. For further specifications consult a SCSI-2 logical - specification or other SCSI reference." - ::= { cpqDaPhyDrvErrEntry 7 } - - cpqDaPhyDrvSenseKey OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Sense Key. - - This is the SCSI Sense Key byte associated with the error log - entry. For further specifications consult a SCSI-2 logical - specification or other SCSI reference." - ::= { cpqDaPhyDrvErrEntry 8 } - - cpqDaPhyDrvQualifier OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Qualifier. - - This is the SCSI Additional Sense Code Qualifier byte (as returned - by the Request Sense command) associated with the error log entry. - For further specifications consult a SCSI-2 logical specification - or other SCSI reference." - ::= { cpqDaPhyDrvErrEntry 9 } - - cpqDaPhyDrvSenseCode OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Sense Code. - - This is the SCSI Sense Code associated with the error log entry. - For further specifications consult a SCSI-2 logical specification - or other SCSI reference." - ::= { cpqDaPhyDrvErrEntry 10 } - - cpqDaPhyDrvBlockValid OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Block Address Is Valid. - - The valid values are: - - False (1) - Indicates that the Block Address object (cpqDaPhyDrvBlock) - is not a valid address. - - True (2) - Indicates that the Block Address object (cpqDaPhyDrvBlock) - is a valid address." - ::= { cpqDaPhyDrvErrEntry 11 } - - cpqDaPhyDrvBlock OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Block Address. - - This is the SCSI Block Address (as returned by the Request Sense - Command) associated with the error log entry. For further - specifications consult a SCSI-2 logical specification or other - SCSI reference." - ::= { cpqDaPhyDrvErrEntry 12 } - - cpqDaPhyDrvTime OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Error Log Reference Time. - - This gives a relative time stamp as to when the error log entry - occurred. The Reference Time shows the number of hours that a - physical drive has been spinning since the drive was initialized - for monitor and performance." - ::= { cpqDaPhyDrvErrEntry 13 } - - cpqDaPhyDrvUserDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Physical Drive Error Log User Description. - - This is a string built by the agent which contains the Reference - Time (cpqDaPhyDrvTime) and a brief description of the disk error - associated with the particular error log entry. This field is - being deprecated, and future management station applications - should be aware that this field may not contain ASCII - string data." - ::= { cpqDaPhyDrvErrEntry 14 } - - cpqDaPhyDrvErrDesc OBJECT-TYPE - SYNTAX INTEGER { - driveFailure(1), - commFailure(2), - driveIOError(3), - scsiCommError(4), - compaqUpgradeRequired(5), - driveWriteProtected(6), - invalidRequest(7), - scsiMessageError(8), - controllerFailure(9), - internExternConflict(10), - internalDriveFailure(11), - scsiErrorOutOfRange(12), - camErrorOutOfRange(13), - errorTypeOutOfRange(14) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index used to display an error associated with a physical drive. - - This number refers to an entry in a list of error strings - enumerating the possible physical drive errors associated with - a particular physical disk drive. - - The valid values are: - - DriveFailure (1) - The Management Station should display the following string: - `Drive Failure`. - - CommFailure(2) - The Management Station should display the following string: - `Communication Failure`. - - DriveIOError(3) - The Management Station should display the following string: - `Drive I/O Error`. - - SCSICommError(4) - The Management Station should display the following string: - `SCSI Communication Error`. - - UpgradeRequired(5) - The Management Station should display the following string: - `Configuration Utility or OS upgrade required`. - - DriveWriteProtected(6) - The Management Station should display the following string: - `Drive Write Protected - Check Drive Jumpers`. - - InvalidRequest(7) - The Management Station should display the following string: - `Invalid Request`. - - SCSIMessageError(8) - The Management Station should display the following string: - `SCSI Message Error`. - - ControllerFailure(9) - The Management Station should display the following string: - `Controller Failure`. - - InternalExternalConflict(10) - The Management Station should display the following string: - `Internal/External Conflict on Port 1`. - - InternalDriveFailure(11) - The Management Station should display the following string: - `Internal Drive Failure`. - - SCSIErrorOutOfRange(12) - The Management Station should display the following string: - `SCSI Error, Sense Code = %xh` where %x is the value of the - cpqDaPhyDrvSenseCode object. This index will only be provided - if the specified object exceeds the valid range. - - CAMErrorOutOfRange(13) - The Management Station should display the following string: - `CAM Error, CAM status =%xh` where %x is the value of the - cpqDaPhyDrvCamStatus object. This index will only be provided - if the specified object exceeds the valid range. - - ErrorTypeOutOfRange(14) - The Management Station should display the following string: - `Error type =%xh` where %x is the value of the - cpqDaPhyDrvErrType object. This index will only be provided - if the specified object exceeds the valid range. " - ::= { cpqDaPhyDrvErrEntry 15 } - - --- **************************************************************************** --- Drive Array Physical Drive Path Table --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaPhyDrv Group (1.3.6.1.4.1.232.3.2.5) --- cpqDaPhyDrvPathTable (1.3.6.1.4.1.232.3.2.5.3) --- --- **************************************************************************** - - cpqDaPhyDrvPathTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaPhyDrvPathEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Access Path Table. - - A table of access path entries supporting physical drive multi-path - cabling configuration." - ::= { cpqDaPhyDrv 3 } - - cpqDaPhyDrvPathEntry OBJECT-TYPE - SYNTAX CpqDaPhyDrvPathEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Access Path Entry." - INDEX { cpqDaPhyDrvPathCntlrIndex, cpqDaPhyDrvPathDrvIndex, - cpqDaPhyDrvPathIndex } - ::= { cpqDaPhyDrvPathTable 1 } - - CpqDaPhyDrvPathEntry ::= SEQUENCE - { - cpqDaPhyDrvPathCntlrIndex INTEGER, - cpqDaPhyDrvPathDrvIndex INTEGER, - cpqDaPhyDrvPathIndex INTEGER, - cpqDaPhyDrvPathStatus INTEGER, - cpqDaPhyDrvPathCurrentRole INTEGER, - cpqDaPhyDrvPathHostConnector DisplayString, - cpqDaPhyDrvPathBoxOnConnector INTEGER, - cpqDaPhyDrvPathLocationString DisplayString - } - - cpqDaPhyDrvPathCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Access Path Controller Index. - - This index maps the physical drive access path back to the - controller to which it is attached. The value of this index - is the same as the one used under the controller group." - ::= { cpqDaPhyDrvPathEntry 1 } - - cpqDaPhyDrvPathDrvIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Access Path Drive Index. - - This index maps the access path to a physical drive." - ::= { cpqDaPhyDrvPathEntry 2 } - - cpqDaPhyDrvPathIndex OBJECT-TYPE - SYNTAX INTEGER (0..3) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Access Path Index. - - This path index keeps track of multiple instances of access - paths from a controller to a physical drive. This number, - along with the cpqDaPhyDrvPathCntlrIndex and - cpqDaPhyDrvPathDrvIndex uniquely identify a specific physical - drive access path." - ::= { cpqDaPhyDrvPathEntry 3 } - - cpqDaPhyDrvPathStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - linkDown(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Access Path Status. - - This shows the status of the physical drive access path. The - following values are valid: - - Other (1) - Indicates that the instrument agent can not determine the - status of this access path. - - OK (2) - Indicates the access path is functioning properly. - - Link Down (3) - Indicates that the controller can no longer access the - physical drive through this path." - ::= { cpqDaPhyDrvPathEntry 4 } - - cpqDaPhyDrvPathCurrentRole OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - active(2), - alternate(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Access Path Current Role. - - This shows the current role of physical drive access path. - The following values are valid: - - Other (1) - Indicates that the instrument agent does not recognize the - role of this access path. - - Active (2) - Indicates that this path is currently the default active - I/O path to access the physical drive from the controller. - - Alternate (3) - Indicates that this path is currently the alternate I/O - path to access the physical drive from the controller." - ::= { cpqDaPhyDrvPathEntry 5 } - - cpqDaPhyDrvPathHostConnector OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Access Path Host Connector. - - This is the host connector to which the access path is ultimately - attached. If the host connector cannot be determined, the agent - will return a NULL string." - ::= { cpqDaPhyDrvPathEntry 6 } - - cpqDaPhyDrvPathBoxOnConnector OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Access Path Box on Connector. - - The box on connector indicates to which box instance this - physical drive access path belongs." - ::= { cpqDaPhyDrvPathEntry 7 } - - cpqDaPhyDrvPathLocationString OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Access Path Location String. - - This string describes the physical drive access path in relation - to the controller. If the location string cannot be determined, - the agent will return a NULL string." - ::= { cpqDaPhyDrvPathEntry 8 } - - --- **************************************************************************** --- Drive Array Physical Drive Threshold Table --- ========================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaPhyDrvThr Group (1.3.6.1.4.1.232.3.2.6) --- cpqDaPhyDrvThrTable (1.3.6.1.4.1.232.3.2.6.1) --- --- **************************************************************************** - - cpqDaPhyDrvThrTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaPhyDrvThrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Threshold Table. - - A table of physical drive threshold entries." - ::= { cpqDaPhyDrvThr 1 } - - cpqDaPhyDrvThrEntry OBJECT-TYPE - SYNTAX CpqDaPhyDrvThrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Threshold Entry. - - A physical drive threshold entry." - INDEX { cpqDaPhyDrvThrCntlrIndex, cpqDaPhyDrvThrIndex } - ::= { cpqDaPhyDrvThrTable 1 } - - CpqDaPhyDrvThrEntry ::= SEQUENCE - { - cpqDaPhyDrvThrCntlrIndex INTEGER, - cpqDaPhyDrvThrIndex INTEGER, - cpqDaPhyDrvThrUsedReallocs INTEGER, - cpqDaPhyDrvThrRefHours INTEGER, - cpqDaPhyDrvThrHardReadErrs INTEGER, - cpqDaPhyDrvThrRecvReadErrs INTEGER, - cpqDaPhyDrvThrHardWriteErrs INTEGER, - cpqDaPhyDrvThrRecvWriteErrs INTEGER, - cpqDaPhyDrvThrHSeekErrs INTEGER, - cpqDaPhyDrvThrSeekErrs INTEGER, - cpqDaPhyDrvThrSpinupTime INTEGER, - cpqDaPhyDrvThrFunctTest1 INTEGER, - cpqDaPhyDrvThrFunctTest2 INTEGER, - cpqDaPhyDrvThrFunctTest3 INTEGER, - cpqDaPhyDrvThrDrqTimeouts INTEGER, - cpqDaPhyDrvThrOtherTimeouts INTEGER, - cpqDaPhyDrvThrSpinupRetries INTEGER, - cpqDaPhyDrvThrBadRecvReads INTEGER, - cpqDaPhyDrvThrBadRecvWrites INTEGER, - cpqDaPhyDrvThrFormatErrs INTEGER, - cpqDaPhyDrvThrPostErrs INTEGER, - cpqDaPhyDrvThrNotReadyErrs INTEGER, - cpqDaPhyDrvThrReallocAborts INTEGER, - cpqDaPhyDrvThrHotPlugs INTEGER, - cpqDaPhyDrvThrMediaErrs INTEGER, - cpqDaPhyDrvThrHardwareErrs INTEGER, - cpqDaPhyDrvThrAbortedCmds INTEGER, - cpqDaPhyDrvThrSpinUpErrs INTEGER, - cpqDaPhyDrvThrBadTargetErrs INTEGER, - cpqDaPhyDrvThrViUsedReallocs INTEGER, - cpqDaPhyDrvThrViSpinupTime INTEGER, - cpqDaPhyDrvThrViFunctTest1 INTEGER, - cpqDaPhyDrvThrViFunctTest2 INTEGER, - cpqDaPhyDrvThrViFunctTest3 INTEGER, - cpqDaPhyDrvThrBusFaults INTEGER, - cpqDaPhyDrvThrIrqDeglitches INTEGER - } - - cpqDaPhyDrvThrCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Threshold Controller Index. - - This index maps the physical drive thresholds back to the - controller to which it is attached. The value of this - index is the same as the one used under the controller group." - ::= { cpqDaPhyDrvThrEntry 1 } - - cpqDaPhyDrvThrIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Physical Drive Threshold Index. - - This index maps the thresholds to a physical drive. The value - of this index is the same as the one used with the physical - drive table." - ::= { cpqDaPhyDrvThrEntry 2 } - - cpqDaPhyDrvThrUsedReallocs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Used Reallocated Sectors Maximum Threshold. - - This shows the maximum threshold of the reallocation area that - has been used by the physical drive. - - This threshold is associated with the cpqDaPhyDrvUsedReallocs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 3 } - - cpqDaPhyDrvThrRefHours OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reference Time Maximum Threshold in hours. - - This shows the maximum threshold in hours that a physical drive - has been spinning since the drive was stamped. - - This threshold is associated with the cpqDaPhyDrvRefHours - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 4 } - - cpqDaPhyDrvThrHardReadErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Hard Read Errors Maximum Threshold. - - This shows the maximum threshold of read errors on a drive that - could not be recovered by a physical drive`s Error Correction - Code (ECC) algorithm or through retries during the reference - time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvHardReadErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 5 } - - cpqDaPhyDrvThrRecvReadErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovered Read Errors Maximum Threshold. - - This shows the maximum threshold of read errors corrected through - physical drive retries during the reference time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvRecvReadErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 6 } - - cpqDaPhyDrvThrHardWriteErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Hard Write Errors Maximum Threshold. - - This shows the maximum threshold of write errors that could not - be recovered by a physical drive during the reference time - (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvHardWriteErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 7 } - - cpqDaPhyDrvThrRecvWriteErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovered Write Errors Maximum Threshold. - - This shows the maximum threshold of write errors corrected through - physical drive retries or recovered by a physical drive during the - reference time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvRecvWriteErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 8 } - - cpqDaPhyDrvThrHSeekErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Seek Errors Maximum Threshold (high). - - The cpqDaphyDrvThrHSeekErrs and the cpqDaphyDrvThrSeekErrs - together show the maximum threshold of total number of - times that the physical disk drive detected a seek error - during the reference hours (phyDrvRefHours). - - This threshold is associated with the cpqDaPhyDrvHSeekErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 9 } - - cpqDaPhyDrvThrSeekErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Seek Errors Maximum Threshold (low). - - The cpqDaphyDrvThrHSeekErrs and the cpqDaphyDrvThrSeekErrs - together show the maximum threshold of total number of times - that the physical disk drive detected a seek error during - the reference hours (phyDrvRefHours). - - This threshold is associated with the cpqDaPhyDrvSeekErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 10 } - - cpqDaPhyDrvThrSpinupTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spin up Time Maximum Threshold in tenths of seconds. - - This shows the maximum of time it takes for a physical drive to - spin up to full speed. - - This threshold is associated with the cpqDaPhyDrvSpinupTime - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 11 } - - cpqDaPhyDrvThrFunctTest1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Functional Test 1 Minimum Threshold. - - This provides the minimum threshold for information about a series - of tests that indicate how well a physical drive works. These - tests compare the way the physical drive currently operate - when performing various tasks with the way it worked when it - was new. - - This threshold is associated with the cpqDaPhyDrvFunctTest1 - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 12 } - - cpqDaPhyDrvThrFunctTest2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Functional Test 2 Minimum Threshold. - - This provides the minimum threshold for information about a - series of tests that indicate how well a physical drive works. - These tests compare the way the physical drive currently - operates when performing various tasks with the way it worked - when it was new. - - This threshold is associated with the cpqDaPhyDrvFunctTest2 - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 13 } - - cpqDaPhyDrvThrFunctTest3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Functional Test 3 Minimum Threshold. - - This provides the minimum threshold for information about a - series of tests that indicate how well a physical drive works. - These tests compare the way the physical drive currently operates - when performing various tasks with the way it worked when it was - new. - - This threshold is associated with the cpqDaPhyDrvFunctTest3 - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 14 } - - cpqDaPhyDrvThrDrqTimeouts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "DRQ Timeouts Maximum Threshold. - - This shows the maximum threshold of the number of times that a - physical drive continued to request data, but did not get a - command completion during the reference time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvDrqTimeouts - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 15 } - - cpqDaPhyDrvThrOtherTimeouts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Other Timeouts Maximum Threshold. - - This shows the maximum threshold of the number of times that a - physical drive did not respond with an interrupt within a - controller-defined period of time after a command had been - issued during the reference time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvOtherTimeouts - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 16 } - - cpqDaPhyDrvThrSpinupRetries OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spin up Retries Maximum Threshold. - - This shows the maximum threshold of the number of times that a - physical drive had to retry to spin up before successfully - achieving operating speed during the reference time - (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvSpinupRetries - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 17 } - - cpqDaPhyDrvThrBadRecvReads OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovery Failed (Bad) Read Error Maximum Threshold. - - This shows the maximum threshold of the number of times a read - error occurred while performing Automatic Data Recovery from - this physical drive to another drive during the reference time - (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvBadRecvReads - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 18 } - - cpqDaPhyDrvThrBadRecvWrites OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Recovery Failed (Bad) Write Error Maximum Threshold. - - This shows the maximum threshold of the number of times a write - error occurred while performing Automatic Data Recovery from - another drive to this physical drive during the reference time - (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvBadRecvWrites - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 19 } - - cpqDaPhyDrvThrFormatErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Format Error Maximum Threshold. - - This shows the maximum threshold of the number of times a format - operation failed when the controller attempted to remap a bad - sector during the reference time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvFormatErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 20 } - - cpqDaPhyDrvThrPostErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Power On Self Test (Post) Error Maximum Threshold. - - This shows the maximum threshold of the number of times that a - physical drive failed its self test during the reference time - (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvPostErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 21 } - - cpqDaPhyDrvThrNotReadyErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Not Ready Errors Maximum Threshold. - - This shows the maximum threshold of the number of times the - physical drive failed after the spin up command was issued - during the reference time (phyDrvRefTime). When the spin up - command was issued, the drive failed to reach its ready - state. - - This threshold is associated with the cpqDaPhyDrvNotReadyErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 22 } - - cpqDaPhyDrvThrReallocAborts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Reallocation Aborts Maximum Threshold. - - This shows the maximum threshold of the number of times the - physical drive has failed due to an error that occurred when - the controller was trying to reallocate a bad sector during - the reference time (phyDrvRefTime). - - This threshold is associated with the cpqDaPhyDrvReallocAborts - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 23 } - - cpqDaPhyDrvThrHotPlugs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Hot Plug Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can be hot-plugged (removed) from a ProLiant - Storage System. - - This threshold is associated with the cpqDaPhyDrvHotPlugs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 24 } - - cpqDaPhyDrvThrMediaErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Media Failure Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can be failed due to unrecoverable media errors. - - This threshold is associated with the cpqDaPhyDrvMediaErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 25 } - - cpqDaPhyDrvThrHardwareErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Hardware Error Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can return a bad hardware status. The drive may - be failed if retries do not work. This is not supported by the - IDA, IDA Expansion, or IDA-2 controllers. - - This threshold is associated with the cpqDaPhyDrvHardwareErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 26 } - - cpqDaPhyDrvThrAbortedCmds OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Aborted Command Failures Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can be failed due to aborted commands that could - not be retried successfully. This is not supported by the IDA, - IDA Expansion, or IDA-2 controllers. - - This threshold is associated with the cpqDaPhyDrvAbortedCmds - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 27 } - - cpqDaPhyDrvThrSpinUpErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Spin-Up Failure Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive was failed due to a failure of a spin-up command. - This is not supported by the IDA, IDA Expansion, or IDA-2 - controllers. - - This threshold is associated with the cpqDaPhyDrvSpinUpErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 28 } - - cpqDaPhyDrvThrBadTargetErrs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Bad Target Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can perform some action that did not conform to - the SCSI-2 bus protocol. These actions will cause the SCSI bus - to be reset. This is not supported by the IDA, IDA Expansion, - or IDA-2 controllers. - - This threshold is associated with the cpqDaPhyDrvBadTargetErrs - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 29 } - - cpqDaPhyDrvThrViUsedReallocs OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2), - unknown(4294967295) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Used Reallocated Sectors Threshold Has Been Violated. - - This is used to indicate whether the number of used sectors of - the reallocation area for a physical drive has ever exceeded - the maximum allowable threshold. - - The valid values are: - - false (1) - Indicates that the Used Reallocated Sectors object - (cpqDaPhyDrvUsedReallocs) value has not exceeded - the maximum threshold (cpqDaPhyDrvThrUsedReallocs). - - true (2) - Indicates that the Used Reallocated Sectors object - (cpqDaPhyDrvUsedReallocs) value has exceeded - the maximum threshold (cpqDaPhyDrvThrUsedReallocs). - - unknown (4294967295) - The agent is unable to determine if the drive has a - threshold violation." - ::= { cpqDaPhyDrvThrEntry 30 } - - cpqDaPhyDrvThrViSpinupTime OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2), - unknown(4294967295) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Spin up Time in tenths of seconds Threshold Has Been Violated. - - This is used to indicate whether the time it took for a physical - drive to spin up to full speed has ever exceeded the maximum - allowable threshold. - - The valid values are: - - false (1) - Indicates that the Spin up Time object (cpqDaPhyDrvSpinupTime) - value has not exceeded the maximum threshold - (cpqDaPhyDrvThrSpinupTime). - - true (2) - Indicates that the Spin up Time object (cpqDaPhyDrvSpinupTime) - value has exceeded the maximum threshold - (cpqDaPhyDrvThrSpinupTime). - - unknown (4294967295) - The agent is unable to determine if the drive has a - threshold violation." - ::= { cpqDaPhyDrvThrEntry 31 } - - cpqDaPhyDrvThrViFunctTest1 OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2), - unknown(4294967295) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Functional Test 1 Threshold Has Been Violated. - - This is used to indicate whether the percentage value returned - from Functional Test 1 has every dropped below the allowable - threshold for that test. - - The valid values are: - - false (1) - Indicates that the Functional Test 1 object - (cpqDaPhyDrvFunctTest1) value has not fallen below the - minimum threshold (cpqDaPhyDrvThrFunctTest1). - - true (2) - Indicates that the Functional Test 1 object - (cpqDaPhyDrvFunctTest1) value has fallen below - the minimum threshold (cpqDaPhyDrvThrFunctTest1). - - unknown (4294967295) - The agent is unable to determine if the drive has a - threshold violation." - ::= { cpqDaPhyDrvThrEntry 32 } - - cpqDaPhyDrvThrViFunctTest2 OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2), - unknown(4294967295) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Functional Test 2 Threshold Has Been Violated. - - This is used to indicate whether the percentage value returned - from Functional Test 2 has every dropped below the allowable - threshold for that test. - - The valid values are: - - false (1) - Indicates that the Functional Test 2 object - (cpqDaPhyDrvFunctTest2) value has not fallen below - the minimum threshold (cpqDaPhyDrvThrFunctTest2). - - true (2) - Indicates that the Functional Test 2 object - (cpqDaPhyDrvFunctTest2) value has fallen below - the minimum threshold (cpqDaPhyDrvThrFunctTest2). - - unknown (4294967295) - The agent is unable to determine if the drive has a - threshold violation." - ::= { cpqDaPhyDrvThrEntry 33 } - - cpqDaPhyDrvThrViFunctTest3 OBJECT-TYPE - SYNTAX INTEGER - { - false(1), - true(2), - unknown(4294967295) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Functional Test 3 Threshold Has Been Violated. - - This is used to indicate whether the percentage value returned - from Functional Test 3 has every dropped below the allowable - threshold for that test. - - The valid values are: - - false (1) - Indicates that the Functional Test 3 object - (cpqDaPhyDrvFunctTest3) value has not fallen below - the minimum threshold (cpqDaPhyDrvThrFunctTest3). - - true (2) - Indicates that the Functional Test 3 object - (cpqDaPhyDrvFunctTest3) value has fallen below - the minimum threshold (cpqDaPhyDrvThrFunctTest3). - - unknown (4294967295) - The agent is unable to determine if the drive has a - threshold violation." - ::= { cpqDaPhyDrvThrEntry 34 } - - cpqDaPhyDrvThrBusFaults OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive Bus Fault Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can return a bus fault status. The drive may - be failed if retries do not work. This is not supported by the - IDA, IDA Expansion, or IDA-2 controllers. - - This threshold is associated with the cpqDaPhyDrvBusFaults - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 35 } - - cpqDaPhyDrvThrIrqDeglitches OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical Drive IRQ Deglitch Count Maximum Threshold. - - This shows the maximum threshold of the number of times this - physical drive can return a IRQ deglitch status. The drive may - be failed if retries do not work. This is not supported by the - IDA, IDA Expansion, or IDA-2 controllers. - - This threshold is associated with the cpqDaPhyDrvIrqDeglitches - object in the Physical Drive Table." - ::= { cpqDaPhyDrvThrEntry 36 } - --- **************************************************************************** --- Drive Array Controller Performance Monitoring Table --- =================================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaCntlrPerf Group (1.3.6.1.4.1.232.3.2.7) --- cpqDaCntlrPerfTable (1.3.6.1.4.1.232.3.2.7.1) --- --- The cpqDaCntlrPerf group contains performance monitoring --- information for the SMART-2 Drive Array controllers. --- --- Implementation of the cpqDaCntlrPerfTable group is mandatory for --- all agents that support the Drive Array MIB. --- --- **************************************************************************** - - - cpqDaCntlrPerfTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaCntlrPerfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Controller Performance Monitor Table. - - A table of controller entries supporting the performance monitor - information." - ::= { cpqDaCntlrPerf 1 } - - cpqDaCntlrPerfEntry OBJECT-TYPE - SYNTAX CpqDaCntlrPerfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Controller Performance Monitor Entry. - - A performance monitor entry." - INDEX { cpqDaCntlrPerfCntlrIndex, cpqDaCntlrPerfInstance } - ::= { cpqDaCntlrPerfTable 1 } - - CpqDaCntlrPerfEntry ::= SEQUENCE -{ - cpqDaCntlrPerfCntlrIndex INTEGER, - cpqDaCntlrPerfInstance INTEGER, - cpqDaCntlrPerfSampleInterval INTEGER, - cpqDaCntlrPerfVersion INTEGER, - cpqDaCntlrPerfCpuPercentBusy INTEGER, - cpqDaCntlrPerfCommandCount INTEGER, - cpqDaCntlrPerfAvgLatency INTEGER -} - - cpqDaCntlrPerfCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Controller Performance Monitor Controller Index. - - This maps the performance monitor information into their - respective controllers which support performance data." - ::= { cpqDaCntlrPerfEntry 1 } - - cpqDaCntlrPerfInstance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Controller Performance Monitor Instance Index. - - This maps the performance monitor information for a specific - controller and sample interval to controllers which support - performance data." - ::= { cpqDaCntlrPerfEntry 2 } - - cpqDaCntlrPerfSampleInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Performance Monitor Sample Interval. - - This value indicates the length of the performance interval - for this controller and all logical volumes associated with - this controller. This value is reported in seconds." - ::= { cpqDaCntlrPerfEntry 3 } - - cpqDaCntlrPerfVersion OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Performance Monitor Version. - - This value specifies the version of the performance monitor - interface." - ::= { cpqDaCntlrPerfEntry 4 } - - cpqDaCntlrPerfCpuPercentBusy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Performance Monitor Cpu Percent Busy. - - This value specifies the total CPU percent busy as a number - from 0 to 100 inclusive. If the value cannot be determined - or is not applicable, the value is set to -1." - ::= { cpqDaCntlrPerfEntry 5 } - - cpqDaCntlrPerfCommandCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Performance Monitor Command Count. - - This value shows the total number of read and write commands - processed in this sample. This value is expressed in read and - write commands per second." - ::= { cpqDaCntlrPerfEntry 6 } - - cpqDaCntlrPerfAvgLatency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Controller Performance Monitor Average - Command Latency. - - This value shows the average command latency for this sample - in 1/100,000 second units." - ::= { cpqDaCntlrPerfEntry 7 } - --- **************************************************************************** --- Drive Array Logical Drive Performance Monitoring Table --- ====================================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaLogDrvPerf Group (1.3.6.1.4.1.232.3.2.8) --- cpqDaLogDrvPerfTable (1.3.6.1.4.1.232.3.2.8.1) --- --- The cpqDaLogDrvPerf group contains performance monitoring --- information for the SMART-2 Drive Array logical drives. --- --- Implementation of the cpqDaLogDrvPerfTable group is mandatory for --- all agents that support the Drive Array MIB. --- --- **************************************************************************** - - - cpqDaLogDrvPerfTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaLogDrvPerfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Performance Monitor Table. - - A table of logical drive entries supporting the performance - monitor information." - ::= { cpqDaLogDrvPerf 1 } - - cpqDaLogDrvPerfEntry OBJECT-TYPE - SYNTAX CpqDaLogDrvPerfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Performance Monitor Entry. - - A performance monitor entry." - INDEX { cpqDaLogDrvPerfCntlrIndex, cpqDaLogDrvPerfIndex, - cpqDaLogDrvPerfInstance } - ::= { cpqDaLogDrvPerfTable 1 } - - CpqDaLogDrvPerfEntry ::= SEQUENCE -{ - cpqDaLogDrvPerfCntlrIndex INTEGER, - cpqDaLogDrvPerfIndex INTEGER, - cpqDaLogDrvPerfInstance INTEGER, - cpqDaLogDrvPerfSampleInterval INTEGER, - cpqDaLogDrvPerfAvgQueueDepth INTEGER, - cpqDaLogDrvPerfReads INTEGER, - cpqDaLogDrvPerfWrites INTEGER, - cpqDaLogDrvPerfTotalIO INTEGER, - cpqDaLogDrvPerfCacheHits INTEGER, - cpqDaLogDrvPerfCacheMisses INTEGER, - cpqDaLogDrvPerfReadAheadSectors INTEGER, - cpqDaLogDrvPerfSectorsRead INTEGER, - cpqDaLogDrvPerfSectorsWritten INTEGER -} - - cpqDaLogDrvPerfCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Performance Monitor Controller Index. - - This maps the performance monitor information into their - respective controllers which support performance data." - ::= { cpqDaLogDrvPerfEntry 1 } - - cpqDaLogDrvPerfIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Performance Monitor Drive Index. - - This maps the performance monitor information into their - respective logical drives which support performance data." - ::= { cpqDaLogDrvPerfEntry 2 } - - cpqDaLogDrvPerfInstance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Logical Drive Performance Monitor Instance Index. - - This maps the performance monitor information for a specific - controller, logical drive and sample interval to controllers - which support performance data." - ::= { cpqDaLogDrvPerfEntry 3 } - - cpqDaLogDrvPerfSampleInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Sample Interval. - - This value indicates the length of the performance interval - for this controller and all logical volumes associated with - this controller. This value is reported in seconds." - ::= { cpqDaLogDrvPerfEntry 4 } - - cpqDaLogDrvPerfAvgQueueDepth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Average Queue Depth. - - This value indicates the average command queue depth of the - logical volume." - ::= { cpqDaLogDrvPerfEntry 5 } - - cpqDaLogDrvPerfReads OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Reads. - - This value is the count of read requests for the logical volume - expressed in reads per second." - ::= { cpqDaLogDrvPerfEntry 6 } - - cpqDaLogDrvPerfWrites OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Writes. - - This value is the count of write requests for the logical volume - expressed in writes per second." - ::= { cpqDaLogDrvPerfEntry 7 } - - cpqDaLogDrvPerfTotalIO OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Total I/O. - - This value shows the total number of read and write requests - for the logical volume expressed in reads and writes per second." - ::= { cpqDaLogDrvPerfEntry 8 } - - cpqDaLogDrvPerfCacheHits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Cache Hits. - - This value shows the total number of read cache hits for the - logical volume. This value is expressed in cache hits per - second." - ::= { cpqDaLogDrvPerfEntry 9 } - - cpqDaLogDrvPerfCacheMisses OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Cache Misses. - - This value shows the total number of read cache misses for the - logical volume. This value is expressed in cache misses per - second." - ::= { cpqDaLogDrvPerfEntry 10 } - - cpqDaLogDrvPerfReadAheadSectors OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Read Ahead Sectors. - - This value shows the total number read ahead sectors pre-fetched - for the logical volume for this interval. This value is expressed - in sectors per second." - ::= { cpqDaLogDrvPerfEntry 11 } - - cpqDaLogDrvPerfSectorsRead OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Sectors Read. - - This value shows the number of sectors read for the logical - volume for this interval. This value is expressed in sectors - per second." - ::= { cpqDaLogDrvPerfEntry 12 } - - cpqDaLogDrvPerfSectorsWritten OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Array Logical Drive Performance Monitor Sectors Written. - - This value shows the number of sectors written for the logical - volume for this interval. This value is expressed in sectors - per second." - ::= { cpqDaLogDrvPerfEntry 13 } - - --- **************************************************************************** --- Drive Array Tape Drive Group --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaTapeDrv Group (1.3.6.1.4.1.232.3.2.9) --- cpqDaTapeDrvTable (1.3.6.1.4.1.232.3.2.9.1) --- --- The cpqDaTapeDrv group contains configuration and statistical --- information about the tape drives associated with drive array --- controllers. --- --- Implementation of the cpqDaTapeDrv group is mandatory for all agents --- that support the Drive Array MIB. --- --- **************************************************************************** - - - cpqDaTapeDrvTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaTapeDrvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Table. - - A table of tape drive entries." - ::= { cpqDaTapeDrv 1 } - - cpqDaTapeDrvEntry OBJECT-TYPE - SYNTAX CpqDaTapeDrvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Entry. - - A tape drive entry." - INDEX { cpqDaTapeDrvCntlrIndex, cpqDaTapeDrvBusIndex, - cpqDaTapeDrvScsiIdIndex, cpqDaTapeDrvLunIndex } - ::= { cpqDaTapeDrvTable 1 } - - CpqDaTapeDrvEntry ::= SEQUENCE - { - cpqDaTapeDrvCntlrIndex INTEGER, - cpqDaTapeDrvBusIndex INTEGER, - cpqDaTapeDrvScsiIdIndex INTEGER, - cpqDaTapeDrvLunIndex INTEGER, - cpqDaTapeDrvName DisplayString, - cpqDaTapeDrvSerialNumber DisplayString, - cpqDaTapeDrvFwRev DisplayString, - cpqDaTapeDrvStatus INTEGER, - cpqDaTapeDrvCondition INTEGER, - cpqDaTapeDrvFwSubtype INTEGER, - cpqDaTapeDrvType INTEGER, - cpqDaTapeDrvCleanReq INTEGER, - cpqDaTapeDrvCleanTapeRepl INTEGER, - cpqDaTapeDrvCleanTapeCount INTEGER, - cpqDaTapeDrvLibraryDrive INTEGER, - cpqDaTapeDrvMagSize INTEGER, - cpqDaTapeDrvHotPlug INTEGER, - cpqDaTapeDrvPlacement INTEGER, - cpqDaTapeDrvCurrentWidth INTEGER, - cpqDaTapeDrvCurrentSpeed INTEGER, - cpqDaTapeDrvProtocol INTEGER, - cpqDaTapeDrvNegotiatedLinkRate INTEGER - } - - cpqDaTapeDrvCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Controller Index. - - This index maps the tape drive back to the controller to which - it is attached. The value of this index is the same as the one - used under the controller group." - ::= { cpqDaTapeDrvEntry 1 } - - cpqDaTapeDrvBusIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive SCSI Bus Index. - - This is the controller SCSI bus to which the tape drive is - attached." - ::= { cpqDaTapeDrvEntry 2 } - - cpqDaTapeDrvScsiIdIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive SCSI Index. - - This is the SCSI Target Id of the tape drive." - ::= { cpqDaTapeDrvEntry 3 } - - cpqDaTapeDrvLunIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Logical Unit Number Index. - - This is the logical unit number of the tape drive." - ::= { cpqDaTapeDrvEntry 4 } - - cpqDaTapeDrvName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Model Name. - - This is the model name of the tape drive. It can be used for - identification purposes." - ::= { cpqDaTapeDrvEntry 5 } - - cpqDaTapeDrvSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Serial Number. - - This is the unit serial number for the tape drive. It can be - used for identification purposes." - ::= { cpqDaTapeDrvEntry 6 } - - cpqDaTapeDrvFwRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Firmware Revision. - - This is firmware revision level of the tape drive. It can be - used for identification purposes." - ::= { cpqDaTapeDrvEntry 7 } - - cpqDaTapeDrvStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4), - offline(5), - missingWasOk(6), - missingWasOffline(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Status. - - The tape drive can be in one of the following states: - - other(1) - The tape drive is in a state other than one of those listed - below. - - ok(2) - Indicates that the tape drive is in normal operation mode. - No user action is necessary. - - degraded(3) - Indicates that the tape drive has degraded in some manner. - - failed(4) - Indicates that the tape drive has failed and can no longer - return data. The tape drive may need to be replaced. - - offline(5) - Indicates that the Agents can no longer communicate with the - tape drive. This could be caused by a cabling problem or the - tape drive may be powered off. - - missingWasOk(6) - Indicates that a tape drive had a status of OK and is no - longer present. The drive has been removed. - - missingWasOffline(7) - Indicates that a tape drive had a status of OFFLINE and is no - longer present. The drive has been removed." - ::= { cpqDaTapeDrvEntry 8 } - - cpqDaTapeDrvCondition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Condition. - - This value represents the overall condition of the tape drive." - - ::= { cpqDaTapeDrvEntry 9 } - - cpqDaTapeDrvFwSubtype OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Firmware Subtype. - - This is used to differentiate the firmware versions - which have the same tape drive type (as specified by - cpqDaTapeDrvType). Tape drives will contain a value - of 1 for this variable when they first ship, and this value - will be incremented if future versions are shipped which - are not firmware compatible with the predecessor. If the - tape drive does not support this capability, a value of 0 - will be returned." - ::= { cpqDaTapeDrvEntry 10 } - - cpqDaTapeDrvType OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - cpqDat4-16(2), - cpqDatAuto(3), - cpqDat2-8(4), - cpqDlt10-20(5), - cpqDlt20-40(6), - cpqDlt15-30(7), - cpqDlt35-70(8), - cpqDat4-8(9), - cpqSlr4-8(10), - cpqDat12-24(11), - cpqDatAuto12-24(12), - cpqAit35(14), - cpqAit50(15), - cpqDat20-40(16), - cpqDlt40-80(17), - cpqDatAuto20-40(18) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Type. - - This is the drives model, and can be used for identification - purposes. The following values are defined: - - other(1) - The management agent does not recognize this model. - You may need to upgrade your software. - - cpqDat4-16(2) - Compaq 4/8-Gigabyte TurboDAT Drive. - - cpqDatAuto(3) - Compaq TurboDAT Autoloader. - - cpqDat2-8(4) - Compaq 2/8-Gigabyte TurboDAT Drive. - - cpqDlt10-20(5) - Compaq 10/20-GB DLT Drive. - - cpqDlt20-40(6) - Compaq 20/40-GB DLT Drive. - - cpqDlt15-30(7) - Compaq 15/30-GB DLT Drive. - - cpqDlt35-70(8) - Compaq 35/70-GB DLT Drive. - - cpqDat4-8(9) - Compaq 4/8-GB DAT Drive. - - cpqSlr4-8(10) - Compaq 4/8-GB SLR Drive. - - cpqDat12-24(11) - Compaq 12/24-GB DAT Drive. - - cpqDatAuto12-24(12) - Compaq 12/24-GB DAT Autoloader. - - cpqAit35(14) - Compaq AIT 35GB Drive. - - cpqAit50(15) - Compaq AIT 50GB Drive. - - cpqDat20-40(16) - Compaq 20/40GB DAT Drive. - - cpqDlt40-80(17) - Compaq 40/80GB DLT Drive. - - cpqDatAuto20-40(18) - Compaq 20/40GB DAT Autoloader." - ::= { cpqDaTapeDrvEntry 11 } - - cpqDaTapeDrvCleanReq OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - true(2), - false(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Cleaning Required. - - This is an indication of whether the tape drive heads - require a cleaning session to occur. If this variable - indicates a need to clean the tape heads, then a cleaning - tape will need to be inserted and run through a cleaning - cycle. - - This variable can be in one of the following states: - - other(1) - The tape drive does not support monitoring of the cleaning - required status. - - true(2) - The tape drive requires a cleaning tape session in order - to clean the heads. - - false(3) - The tape drive does not require any cleaning tape session." - ::= { cpqDaTapeDrvEntry 12 } - - cpqDaTapeDrvCleanTapeRepl OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - true(2), - false(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Cleaning Tape Replacement. - - This variable is only applicable to autoloader tape drives. - This variable indicates whether the cleaning tape which is - inserted in an autoloader needs to be replaced because its - cleaning capability is exhausted (it is at end of tape). - - This variable can be in one of the following states: - - other(1) - The tape drive does not support monitoring of the cleaning - tape replacement status. - - true(2) - The autoloader tape drive requires a new cleaning tape to - be inserted. - - false(3) - The tape drive does not require a new cleaning tape." - ::= { cpqDaTapeDrvEntry 13 } - - cpqDaTapeDrvCleanTapeCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Cleaning Tape Count. - - This variable is a count from a tape drive of the number of - cleanings done by the tape cleaner last in the drive." - ::= { cpqDaTapeDrvEntry 14 } - - cpqDaTapeDrvLibraryDrive OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - true(2), - false(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Library Drive. - - This variable indicates whether or not the tape drive is part - of a tape library. It can be in one of the following states: - - other(1) - Indicates that the instrument agent cannot determine if the - tape drive is part of a tape library. - - true(2) - The tape drive is part of a tape library. - - false(3) - The tape drive is not part of a tape library." - ::= { cpqDaTapeDrvEntry 15 } - - cpqDaTapeDrvMagSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Tape Physical Drive Magazine Size. - - This variable indicates the number of tape slots available in - the tape autoloader magazine cartridge that is currently loaded - into the tape drive. - - For non-autoloader devices, this value will be -1." - ::= { cpqDaTapeDrvEntry 16 } - - cpqDaTapeDrvHotPlug OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - hotPlug(2), - nonHotPlug(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Hot Plug Support Status. - - The following values are defined: - - other(1) - The agent is unable to determine if this drive - supports hot plug replacement. - - hotPlug(2) - The drive supports hot plug replacement. - - nonhotPlug(3) - The drive does not support hot plug replacement." - ::= { cpqDaTapeDrvEntry 17 } - - cpqDaTapeDrvPlacement OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - internal(2), - external(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Placement. - - The following values are defined: - - other(1) - The agent is unable to determine if the tape drive is - internal or external to the system chassis. - - internal(2) - The tape drive is located in an internal Proliant system - chassis. - - external(3) - The tape drive is located in an external Proliant storage - system." - ::= { cpqDaTapeDrvEntry 18 } - - - cpqDaTapeDrvCurrentWidth OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - narrow(2), - wide16(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Current Width. - - The following values are defined: - - other(1) - The agent is unable to determine the current negotiated data - transfer width for this drive. - - narrow(2) - The negotiated data transfer width for this drive is narrow - (8 data bits). - - wide16(3) - The negotiated data transfer width for this drive is wide - (16 data bits)." - ::= { cpqDaTapeDrvEntry 19 } - - cpqDaTapeDrvCurrentSpeed OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - asynchronous(2), - fast(3), - ultra(4), - ultra2(5), - ultra3(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Current Data Transfer Speed. - - The following values are defined: - - other(1) - The agent is unable to determine the current negotiated data - transfer speed for this drive. - - asynchronous(2) - The negotiated data transfer speed for this drive is - asynchronous. - - fast(3) - The negotiated data transfer speed for this drive is 10 million - transfers per second). - - ultra(4) - The negotiated data transfer speed for this drive is 20 million - transfers per second. - - ultra2(5) - The negotiated data transfer speed for this drive is 40 million - transfers per second. - - ultra3(6) - The negotiated data transfer speed for this drive is 80 million - transfers per second." - ::= { cpqDaTapeDrvEntry 20 } - - cpqDaTapeDrvProtocol OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - parallelScsi(2), - sata(3), - sas(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Protocol. - - The following values are defined: - - other(1) - The agent is unable to determine the protocol for this drive. - - parallelScsi(2) - The drive protocol is parallel SCSI. - - sata(3) - The drive protocol is Serial ATA. - - sas(4) - The drive protocol is Serial Attached SCSI." - ::= { cpqDaTapeDrvEntry 21 } - - cpqDaTapeDrvNegotiatedLinkRate OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - rate-1-5(2), - rate-3-0(3), - rate-6-0(4), - rate-12-0(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Drive Negotiated Link Rate. - - The following values are defined: - - other(1) - The agent is unable to determine the negotiated link rate - this drive. - - rate-1-5(2) - The negotiated link rate for this drive is 1.5 Gigabits per - second. - - rate-3-0(3) - The negotiated link rate for this drive is 3.0 Gigabits per - second. - - rate-6-0(4) - The negotiated link rate for this drive is 6.0 Gigabits per - second. - - rate-12-0(5) - The negotiated link rate for this drive is 12.0 Gigabits per - second." - ::= { cpqDaTapeDrvEntry 22 } - - --- **************************************************************************** --- Drive Array Tape Counters Group --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaTapeCounters Group (1.3.6.1.4.1.232.3.2.10) --- cpqDaTapeCountersTable (1.3.6.1.4.1.232.3.2.10.1) --- --- The cpqDaTapeCounters group contains the statistical information of --- Drive Array Tape Drives. --- --- Implementation of the cpqDaTapeCounters group is mandatory for all --- agents that support the Drive Array MIB. --- --- **************************************************************************** - - cpqDaTapeCountersTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaTapeCountersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Tape Counters Table." - ::= { cpqDaTapeCounters 1 } - - cpqDaTapeCountersEntry OBJECT-TYPE - SYNTAX CpqDaTapeCountersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Tape Counters Entry." - INDEX { cpqDaTapeCountersCntlrIndex, cpqDaTapeCountersBusIndex, - cpqDaTapeCountersScsiIdIndex, cpqDaTapeCountersLunIndex } - ::= { cpqDaTapeCountersTable 1 } - - CpqDaTapeCountersEntry ::= SEQUENCE - { - cpqDaTapeCountersCntlrIndex INTEGER, - cpqDaTapeCountersBusIndex INTEGER, - cpqDaTapeCountersScsiIdIndex INTEGER, - cpqDaTapeCountersLunIndex INTEGER, - cpqDaTapeCountersReWrites Counter, - cpqDaTapeCountersReReads Counter, - cpqDaTapeCountersTotalErrors Counter, - cpqDaTapeCountersTotalUncorrectable Counter, - cpqDaTapeCountersTotalBytes Counter - } - - cpqDaTapeCountersCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Counters Controller Index. - - This index maps the tape drive back to the controller to which - it is attached. The value of this index is the same as the one - used under the controller group." - ::= { cpqDaTapeCountersEntry 1 } - - cpqDaTapeCountersBusIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Counters Scsi Bus Index. - - This is the controller SCSI bus to which the tape drive is - attached." - ::= { cpqDaTapeCountersEntry 2 } - - cpqDaTapeCountersScsiIdIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Counters SCSI Index. - - This is the SCSI Target Id of the tape drive." - ::= { cpqDaTapeCountersEntry 3 } - - cpqDaTapeCountersLunIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Counters Logical Unit Number Index. - - This is the logical unit number of the tape drive." - ::= { cpqDaTapeCountersEntry 4 } - - cpqDaTapeCountersReWrites OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Tape Device Re-write count. - - This is the number of times blocks had to be re-written to the - device. This value is maintained since the Tape Hardware Interface - driver was loaded. - - Re-write errors may occasionally occur. If this value should rise - dramatically, you may need to clean the device. If you continue - to have re-writes, you may have a problem. Some common causes - include radio frequency interference (RFI) on the bus cables, - bad or missing terminating resisters on the drives or having more - than one device with the same SCSI ID. Insure the bus cable is - free of obstructions and that the devices on the bus are properly - configured." - ::= { cpqDaTapeCountersEntry 5 } - - cpqDaTapeCountersReReads OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Tape Device Re-read count. - - This is the number of times blocks had to be re-read from the - device. This value is maintained since the Tape Hardware Interface - driver was loaded. - - Re-read errors may occasionally occur. If this value should rise - dramatically, you may need to clean the device. If you continue - to have re-reads, you may have a problem. Some common causes - include radio frequency interference (RFI) on the bus cables, - bad or missing terminating resisters on the drives or having more - than one device with the same SCSI ID. Insure the bus cable is - free of obstructions and that the devices on the bus are properly - configured." - ::= { cpqDaTapeCountersEntry 6 } - - cpqDaTapeCountersTotalErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Tape Device Total Errors. - - This is the total number of read/write errors encountered. - This value is maintained since the Tape Hardware Interface - driver was loaded. - - Errors may occasionally occur. If this value should rise - dramatically, you may need to clean the device. If you continue - to have errors, you may have a problem. Some common causes include - radio frequency interference (RFI) on the bus cables, bad or - missing terminating resisters on the drives or having more than - one device with the same SCSI ID. Insure the bus cable is free - of obstructions and that the devices on the bus are properly - configured." - ::= { cpqDaTapeCountersEntry 7 } - - cpqDaTapeCountersTotalUncorrectable OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Tape Device Total Uncorrectable Errors. - - This is the total number of read and write errors which could not - be corrected. This value is maintained since the Tape Hardware - Interface driver was loaded. - - Errors may occasionally occur. If this value should rise - dramatically, you may need to clean the device. If you continue - to have errors, you may have a problem. Some common causes include - radio frequency interference (RFI) on the bus cables, bad or - missing terminating resisters on the drives or having more than - one device with the same SCSI ID. Insure the bus cable is free - of obstructions and that the devices on the bus are properly - configured." - ::= { cpqDaTapeCountersEntry 8 } - - cpqDaTapeCountersTotalBytes OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Tape Device Total Bytes. - - This is the number total number of bytes read/written to the tape - currently installed in the device. This value is reset whenever - a new tape is inserted into the device." - ::= { cpqDaTapeCountersEntry 9 } - - --- **************************************************************************** --- Drive Array Tape Library Group --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaComponent Group (1.3.6.1.4.1.232.3.2) --- cpqDaTapeLibrary Group (1.3.6.1.4.1.232.3.2.11) --- cpqDaTapeLibraryTable (1.3.6.1.4.1.232.3.2.11.1) --- --- The tape library group contains the configuration and statistical --- information of the Drive Array Tape Library. --- --- Implementation of the cpqDaTapeLibrary group is mandatory for all --- agents that support the Drive Array MIB. --- --- **************************************************************************** - - cpqDaTapeLibraryTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaTapeLibraryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Table." - ::= { cpqDaTapeLibrary 1 } - - cpqDaTapeLibraryEntry OBJECT-TYPE - SYNTAX CpqDaTapeLibraryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Entry." - INDEX { cpqDaTapeLibraryCntlrIndex, cpqDaTapeLibraryScsiBus, - cpqDaTapeLibraryScsiTarget, cpqDaTapeLibraryScsiLun } - ::= { cpqDaTapeLibraryTable 1 } - - CpqDaTapeLibraryEntry ::= SEQUENCE - { - cpqDaTapeLibraryCntlrIndex INTEGER, - cpqDaTapeLibraryScsiBus INTEGER, - cpqDaTapeLibraryScsiTarget INTEGER, - cpqDaTapeLibraryScsiLun INTEGER, - cpqDaTapeLibrarySerialNumber DisplayString, - cpqDaTapeLibraryModel DisplayString, - cpqDaTapeLibraryFWRev DisplayString, - cpqDaTapeLibraryStatus INTEGER, - cpqDaTapeLibraryDoorStatus INTEGER, - cpqDaTapeLibraryCondition INTEGER, - cpqDaTapeLibraryOverallCondition INTEGER, - cpqDaTapeLibraryLastError INTEGER, - cpqDaTapeLibraryStatHours Counter, - cpqDaTapeLibraryStatMoves Counter, - cpqDaTapeLibraryDriveList OCTET STRING, - cpqDaTapeLibraryCurrentWidth INTEGER, - cpqDaTapeLibraryCurrentSpeed INTEGER, - cpqDaTapeLibraryDriveList2 OCTET STRING, - cpqDaTapeLibraryProtocol INTEGER, - cpqDaTapeLibraryNegotiatedLinkRate INTEGER - } - - cpqDaTapeLibraryCntlrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Controller Index. - - This index maps the tape library back to the controller to which - it is attached. The value of this index is the same as the one - used under the controller group." - ::= { cpqDaTapeLibraryEntry 1 } - - cpqDaTapeLibraryScsiBus OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Scsi Bus. - - The bus index indicates to which SCSI bus instance on a - controller this table entry belongs. The instances start - at one and increment for each SCSI bus on a controller." - ::= { cpqDaTapeLibraryEntry 2 } - - cpqDaTapeLibraryScsiTarget OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Scsi Target. - - The target index indicates to which SCSI ID on a controller - SCSI bus this table entry belongs." - ::= { cpqDaTapeLibraryEntry 3 } - - cpqDaTapeLibraryScsiLun OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Scsi Lun. - - The Lun index indicates to which logical unit on a SCSI ID on a - controller SCSI bus this table entry belongs." - ::= { cpqDaTapeLibraryEntry 4 } - - cpqDaTapeLibrarySerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Serial Number. - - This is the unit serial number for the tape library. It can be - used for identification purposes." - ::= { cpqDaTapeLibraryEntry 5 } - - cpqDaTapeLibraryModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Model. - - This is the model name of the tape library. It can be used for - identification purposes." - ::= { cpqDaTapeLibraryEntry 6 } - - cpqDaTapeLibraryFWRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Serial Number. - - This is firmware revision level of the tape library. It can be - used for identification purposes." - ::= { cpqDaTapeLibraryEntry 7 } - - cpqDaTapeLibraryStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - degraded(3), - failed(4), - offline(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Status. - - The library can be in one of the following states: - - other(1) - The library is in a state other than one of those listed - below. - - ok(2) - Indicates that the library is in normal operation mode. - No user action is necessary. - - degraded(3) - Indicates that the library has degraded in some manner. - - failed(4) - Indicates that the library has failed and can no longer - return data. The library may need to be replaced. - - offline(5) - Indicates that the Insight Agents can no longer communicate with - the library. This could be caused by a cabling problem or the - library may be powered off." - ::= { cpqDaTapeLibraryEntry 8 } - - cpqDaTapeLibraryDoorStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - closed(3), - open(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Door Status. - - The door can be in one of the following states: - - other(1) - The door is in a state other than one of those listed - below. - - notSupported(2) - The door status is not supported by the device. - - closed(3) - The door is closed. - - open(4) - The door is open." - ::= { cpqDaTapeLibraryEntry 9 } - - cpqDaTapeLibraryCondition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Condition. - - This value represents the overall condition of the tape - library." - - ::= { cpqDaTapeLibraryEntry 10 } - - cpqDaTapeLibraryOverallCondition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Overall Condition. - - This value represents the overall condition of the tape library - and any associated tape drives." - - ::= { cpqDaTapeLibraryEntry 11 } - - cpqDaTapeLibraryLastError OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Drive Array Tape Library Last Error. - - This is the last error returned by the tape library." - ::= { cpqDaTapeLibraryEntry 12 } - - cpqDaTapeLibraryStatHours OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Stat Hours. - - This is the number of hours of operation for the library." - ::= { cpqDaTapeLibraryEntry 13 } - - cpqDaTapeLibraryStatMoves OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Stat Moves. - - This is the number of tape moves for the library loader arm." - ::= { cpqDaTapeLibraryEntry 14 } - - cpqDaTapeLibraryDriveList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..60)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Drive Array Tape Library Tape Drive List. - - This is a data structure containing the list of tape drive ids - that are present in this library. The format is: - - field octets contents - ===== ====== ======== - 1 1 Tape controller slot index - 2 2 Tape drive SCSI bus - 3 3 Tape drive SCSI target - 4 4 Tape drive SCSI logical unit number - - These 4 octets are repeated for each drive in the library. For n - tape drives in a library, the string is 4 * n octets long." - ::= { cpqDaTapeLibraryEntry 15 } - - cpqDaTapeLibraryCurrentWidth OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - narrow(2), - wide16(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Current Width. - - The following values are defined: - - other(1) - The agent is unable to determine the current negotiated data - transfer width for this library. - - narrow(2) - The negotiated data transfer width for this library is narrow - (8 data bits). - - wide16(3) - The negotiated data transfer width for this library is wide - (16 data bits)." - ::= { cpqDaTapeLibraryEntry 16 } - - cpqDaTapeLibraryCurrentSpeed OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - asynchronous(2), - fast(3), - ultra(4), - ultra2(5), - ultra3(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Current Data Transfer Speed. - - The following values are defined: - - other(1) - The agent is unable to determine the current negotiated data - transfer speed for this library. - - asynchronous(2) - The negotiated data transfer speed for this library is - asynchronous. - - fast(3) - The negotiated data transfer speed for this library is 10 - million transfers per second). - - ultra(4) - The negotiated data transfer speed for this library is 20 - million transfers per second. - - ultra2(5) - The negotiated data transfer speed for this library is 40 - million transfers per second. - - ultra3(6) - The negotiated data transfer speed for this library is 80 - million transfers per second." - ::= { cpqDaTapeLibraryEntry 17 } - - cpqDaTapeLibraryDriveList2 OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Tape Drive List 2. - - This is a data structure containing the list of tape drive ids - that are present in this library. The format is: - - field octets contents - ===== ====== ======== - 1 1-4 Tape controller index - 2 5 Tape drive SCSI bus - 3 6 Tape drive SCSI target - 4 7 Tape drive SCSI logical unit number - - These 7 octets are repeated for each drive in the library. For n - tape drives in a library, the string is 7 * n octets long." - ::= { cpqDaTapeLibraryEntry 18 } - - cpqDaTapeLibraryProtocol OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - parallelScsi(2), - sata(3), - sas(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Protocol. - - The following values are defined: - - other(1) - The agent is unable to determine the protocol for this library. - - parallelScsi(2) - The library protocol is parallel SCSI. - - sata(3) - The library protocol is Serial ATA. - - sas(4) - The library protocol is Serial Attached SCSI." - ::= { cpqDaTapeLibraryEntry 19 } - - cpqDaTapeLibraryNegotiatedLinkRate OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - rate-1-5(2), - rate-3-0(3), - rate-6-0(4), - rate-12-0(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drive Array Tape Library Negotiated Link Rate. - - The following values are defined: - - other(1) - The agent is unable to determine the negotiated link rate - for this library. - - rate-1-5(2) - The negotiated link rate for this library is 1.5 Gigabits per - second. - - rate-3-0(3) - The negotiated link rate for this library is 3.0 Gigabits per - second. - rate-6-0(4) - The negotiated link rate for this library is 6.0 Gigabits per - second. - rate-12-0(5) - The negotiated link rate for this library is 12.0 Gigabits per - second." - ::= { cpqDaTapeLibraryEntry 20 } - - --- **************************************************************************** --- Drive Array Trap Group --- ====================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaTrap Group (1.3.6.1.4.1.232.3.3) (deprecated) --- --- The trap group maintains information about the number of traps issued --- from the driveArray enterprise. The trap group also maintains a --- table of the last several traps issued. This table is intended to --- give a management application some recent status information --- immediately upon accessing the agent. --- --- Implementation of the cpqDaTrap group is optional for agents that --- support the Drive Array MIB. --- --- **************************************************************************** - - cpqDaTrapPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of trap packets issued by the drive array - enterprise since the instrument agent was loaded." - ::= { cpqDaTrap 1 } - - cpqDaTrapLogMaxSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The maximum number of entries that will currently be kept in - the trap log. If the maximum size has been reached and a new - trap occurs the oldest trap will be removed." - ::= { cpqDaTrap 2 } - --- **************************************************************************** --- Drive Array Trap Log Group --- ========================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqDriveArray Group (1.3.6.1.4.1.232.3) --- cpqDaTrap Group (1.3.6.1.4.1.232.3.3) --- cpqDaTrapLogTable (1.3.6.1.4.1.232.3.3.3) (deprecated) --- --- **************************************************************************** - - - cpqDaTrapLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqDaTrapLogEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "An ordered list of trap log entries (conceptually a queue). - - The trap log entries will be kept in the order in which they - were generated with the most recent trap at index 1 and the - oldest trap entry at index trapLogMaxSize. If the maximum - number size has been reached and a new trap occurs the oldest - trap will be removed when the new trap is added so the - trapMaxLogSize is not exceeded." - ::= { cpqDaTrap 3 } - - cpqDaTrapLogEntry OBJECT-TYPE - SYNTAX CpqDaTrapLogEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a trap event." - INDEX { cpqDaTrapLogIndex } - ::= { cpqDaTrapLogTable 1 } - - CpqDaTrapLogEntry ::= SEQUENCE { - cpqDaTrapLogIndex INTEGER, - cpqDaTrapType INTEGER, - cpqDaTrapTime OCTET STRING - } - - cpqDaTrapLogIndex OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "This value uniquely identifies this trapLogEntry at this time. - - The most recent trap will have an index of 1 and the oldest - trap will have an index of trapLogMaxSize. Because of the - queue-like nature of the trapLog this particular trap - event`s index will change as new traps are issued." - ::= { cpqDaTrapLogEntry 1 } - - cpqDaTrapType OBJECT-TYPE - SYNTAX INTEGER { - cpqDaLogDrvStatusChange(1), - cpqDaSpareStatusChange(2), - cpqDaPhyDrvStatusChange(3), - cpqDaPhyDrvThreshExceededTrap(4), - cpqDaAccelStatusChange(5), - cpqDaAccelBadDataTrap(6), - cpqDaAccelBatteryFailed(7), - cpqDa2LogDrvStatusChange(3001), - cpqDa2SpareStatusChange(3002), - cpqDa2PhyDrvStatusChange(3003), - cpqDa2PhyDrvThreshExceededTrap(3004), - cpqDa2AccelStatusChange(3005), - cpqDa2AccelBadDataTrap(3006), - cpqDa2AccelBatteryFailed(3007) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The type of the trap event that this entry describes. - - This number refers to an entry in a list of traps enumerating - the possible traps the Drive Array agent may issue." - ::= { cpqDaTrapLogEntry 2 } - - cpqDaTrapTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (6)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The time of the trap event that this entry describes. - - The time is given in year (first octet), month, day of month, - hour, minute, second (last octet) order. Each octet gives - the value in BCD." - ::= { cpqDaTrapLogEntry 3 } - --- ************************************************************************** --- Drive Array Trap Definitions --- ============================ --- --- Trap support in an Insight Agent implementation is optional. An Insight --- Agent implementation may support all, some, or none of the traps. --- --- ************************************************************************** - - cpqDaLogDrvStatusChange TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaLogDrvStatus } - DESCRIPTION - "Logical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array logical drive. The variable - cpqDaLogDrvStatus indicates the current logical drive status." - - --#TYPE "Logical Drive Status Change (1)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {0} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 1 - - cpqDaSpareStatusChange TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaSpareStatus, cpqDaSpareBusNumber } - DESCRIPTION - "Spare Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array spare drive. The variable - cpqDaSpareStatus indicates the current spare drive status. The - variable cpqDaSpareBusNumber indicates the SCSI bus number - associated with this drive." - - --#TYPE "Spare Drive Status Change (2)" - --#SUMMARY "Status is now %d for a spare on bus %d." - --#ARGUMENTS {0,1} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 2 - - cpqDaPhyDrvStatusChange TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaPhyDrvStatus, cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - The variable cpqDaPhyDrvBusNumber indicates the SCSI bus number - associated with this drive." - - --#TYPE "Physical Drive Status Change (3)" - --#SUMMARY "Status is now %d for a physical drive on bus %d." - --#ARGUMENTS {0,1} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3 - - cpqDaPhyDrvThreshPassedTrap TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaPhyDrvThreshPassed, cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Threshold Passed. - - This trap signifies that the agent has detected a factory - threshold associated with one of the physical drive objects on - a drive array has been exceeded. The variable - cpqDaPhyDrvBusNumber indicates the SCSI bus number associated - with the drive." - - --#TYPE "Physical Drive Threshold Passed (4)" - --#SUMMARY "Factory threshold passed for a physical on bus %d." - --#ARGUMENTS {1} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 4 - - cpqDaAccelStatusChange TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaAccelStatus } - DESCRIPTION - "Accelerator Board Status Change. - - This trap signifies that the agent has detected a change in the - cpqDaAccelStatus of an array accelerator write cache. The - current status is represented by the variable cpqDaAccelStatus." - - --#TYPE "Accelerator Board Status Change (5)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {0} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 5 - - cpqDaAccelBadDataTrap TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaAccelBadData } - DESCRIPTION - "Accelerator Board Bad Data. - - This trap signifies that the agent has detected an array - accelerator cache board that has lost battery power. If data - was being stored in the accelerator memory when the server lost - power, that data has been lost." - - --#TYPE "Accelerator Board Bad Data (6)" - --#SUMMARY "Accelerator lost battery power. Data Loss possible." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 6 - - cpqDaAccelBatteryFailed TRAP-TYPE - ENTERPRISE cpqDriveArray - VARIABLES { cpqDaAccelBattery } - DESCRIPTION - "Accelerator Board Battery Failed. - - This trap signifies that the agent has detected a battery - failure associated with the array accelerator cache board. - The current battery status is indicated by the - cpqDaAccelBattery variable." - - --#TYPE "Accelerator Board Battery Failed (7)" - --#SUMMARY "Battery failed. Status (%d)." - --#ARGUMENTS {0} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 7 - - cpqDa2LogDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaLogDrvStatus } - DESCRIPTION - "Logical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array logical drive. The variable - cpqDaLogDrvStatus indicates the current logical drive status." - - --#TYPE "Logical Drive Status Change (3001)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {0} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3001 - - cpqDa2SpareStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaSpareStatus, cpqDaSpareBusNumber } - DESCRIPTION - "Spare Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array spare drive. The variable - cpqDaSpareStatus indicates the current spare drive status. - The variable cpqDaSpareBusNumber indicates the SCSI bus number - associated with this drive." - - --#TYPE "Spare Drive Status Change (3002)" - --#SUMMARY "Spare Status is now %d on bus %d." - --#ARGUMENTS {0,1} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3002 - - cpqDa2PhyDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaPhyDrvStatus, cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - The variable cpqDaPhyDrvBusNumber indicates the SCSI bus number - associated with this drive." - - --#TYPE "Physical Drive Status Change (3003)" - --#SUMMARY "Status is now %d for a physical drive on bus %d." - --#ARGUMENTS {0,1} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3003 - - cpqDa2PhyDrvThreshPassedTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaPhyDrvThreshPassed, cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Threshold Passed. - - This trap signifies that the agent has detected a factory - threshold associated with one of the physical drive objects on - a drive array has been exceeded. The variable - cpqDaPhyDrvBusNumber indicates the SCSI bus number associated - with the drive." - - --#TYPE "Physical Drive Threshold Passed (3004)" - --#SUMMARY "Factory threshold passed for a physical on bus %d." - --#ARGUMENTS {1} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3004 - - cpqDa2AccelStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaAccelStatus } - DESCRIPTION - "Accelerator Board Status Change. - - This trap signifies that the Insight Agent has detected a - change in the cpqDaAccelStatus of array accelerator cache. - The current status is represented by the variable - cpqDaAccelStatus." - - --#TYPE "Accelerator Board Status Change (3005)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {0} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3005 - - cpqDa2AccelBadDataTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaAccelBadData } - DESCRIPTION - "Accelerator Board Bad Data. - - This trap signifies that the agent has detected an array - accelerator cache board that has lost battery power. If data - was being stored in the accelerator memory when the server lost - power, that data has been lost." - - --#TYPE "Accelerator Board Bad Data (3006)" - --#SUMMARY "Accelerator lost battery power. Data Loss possible." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3006 - - cpqDa2AccelBatteryFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { cpqDaAccelBattery } - DESCRIPTION - "Accelerator Board Battery Failed. - - This trap signifies that the agent has detected a battery - failure associated with the array accelerator cache board. The - current battery status is indicated by the cpqDaAccelBattery - variable." - - --#TYPE "Accelerator Board Battery Failed (3007)" - --#SUMMARY "Battery status is %d." - --#ARGUMENTS {0} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3007 - - - - cpqDa3LogDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaLogDrvStatus } - DESCRIPTION - "Logical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array logical drive. The variable - cpqDaLogDrvStatus indicates the current logical drive status." - - --#TYPE "Logical Drive Status Change (3008)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3008 - - cpqDa3SpareStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaSpareStatus, - cpqDaSpareBusNumber } - DESCRIPTION - "Spare Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array spare drive. The variable - cpqDaSpareStatus indicates the current spare drive status. The - variable cpqDaSpareBusNumber indicates the SCSI bus number - associated with this drive." - - --#TYPE "Spare Drive Status Change (3009)" - --#SUMMARY "Spare Status is now %d on bus %d." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3009 - - cpqDa3PhyDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvStatus, - cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - The variable cpqDaPhyDrvBusNumber indicates the SCSI bus number - associated with this drive." - - --#TYPE "Physical Drive Status Change (3010)" - --#SUMMARY "Status is now %d for a physical drive on bus %d." - --#ARGUMENTS {2,3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3010 - - cpqDa3PhyDrvThreshPassedTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvThreshPassed, - cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Threshold Passed. - - This trap signifies that the agent has detected a factory - threshold associated with one of the physical drive objects on - a drive array has been exceeded. The variable - cpqDaPhyDrvBusNumber indicates the SCSI bus number associated - with the drive." - - --#TYPE "Physical Drive Threshold Passed (3011)" - --#SUMMARY "Factory threshold passed for a physical on bus %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3011 - - cpqDa3AccelStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaAccelStatus } - DESCRIPTION - "Accelerator Board Status Change. - - This trap signifies that the agent has detected a change in the - cpqDaAccelStatus of an array accelerator cache board. The - current status is represented by the variable cpqDaAccelStatus." - - --#TYPE "Accelerator Board Status Change (3012)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3012 - - cpqDa3AccelBadDataTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaAccelBadData } - DESCRIPTION - "Accelerator Board Bad Data. - - This trap signifies that the agent has detected an array - accelerator cache board that has lost battery power. If data - was being stored in the accelerator memory when the server lost - power, that data has been lost." - - --#TYPE "Accelerator Board Bad Data (3013)" - --#SUMMARY "Accelerator lost battery power. Data Loss possible." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3013 - - cpqDa3AccelBatteryFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaAccelBattery } - DESCRIPTION - "Accelerator Board Battery Failed. - - This trap signifies that the agent has detected a battery - failure associated with the array accelerator cache board. The - current battery status is indicated by the cpqDaAccelBattery - variable." - - --#TYPE "Accelerator Board Battery Failed (3014)" - --#SUMMARY "Battery status is %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3014 - - cpqDaCntlrStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrSlot, cpqDaCntlrBoardStatus } - DESCRIPTION - "Controller Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array controller. The variable - cpqDaCntlrBoardStatus indicates the current controller status. - - User Action: If the board status is generalFailure(3), the - you may need to replace the controller. If the board status - is cableProblem(4), check the cable connections between the - controller and the storage system." - - --#TYPE "Controller Status Change (3015)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3015 - - cpqDaCntlrActive TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrSlot, cpqDaCntlrPartnerSlot } - DESCRIPTION - "Controller Active. - - This trap signifies that the agent has detected that a backup - array controller in a duplexed pair has switched over to the - active role. The variable cpqDaCntlrSlot indicates the - active controller slot and cpqDaCntlrPartnerSlot indicates the - backup. - - User Action: Check the partner controller for problems. - If this was the result of a user initiated switch over, - no action is required." - - --#TYPE "Duplex Controller Active (3016)" - --#SUMMARY "Controller in slot %d is now active." - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - - ::= 3016 - - cpqDa4SpareStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaSpareStatus, - cpqDaSpareCntlrIndex, cpqDaSpareBusNumber, - cpqDaSpareBay } - DESCRIPTION - "Spare Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array spare drive. The variable - cpqDaSpareStatus indicates the current spare drive status. - - User Action: If the spare drive status is failed, replace - the drive." - - --#TYPE "Spare Drive Status Change (3017)" - --#SUMMARY "Spare Status is now %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3017 - - cpqDa4PhyDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvStatus, - cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvBusNumber, - cpqDaPhyDrvBay } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - - User Action: If the physical drive failed or predicting - failure, replace the drive." - - --#TYPE "Physical Drive Status Change (3018)" - --#SUMMARY "Physical Drive Status is now %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3018 - - cpqDa4PhyDrvThreshPassedTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvCntlrIndex, - cpqDaPhyDrvBusNumber, cpqDaPhyDrvBay} - DESCRIPTION - "Physical Drive Threshold Passed. - - This trap signifies that the agent has detected a factory - threshold associated with one of the physical drive objects on - a drive array has been exceeded. - - User Action: If the physical drive is predicting failure, - replace the drive." - - --#TYPE "Physical Drive Threshold Passed (3019)" - --#SUMMARY "Factory threshold passed for a physical drive." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3019 - - cpqDaTapeLibraryStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeLibraryCntlrIndex, - cpqDaTapeLibraryScsiBus, cpqDaTapeLibraryScsiTarget, - cpqDaTapeLibraryScsiLun, cpqDaTapeLibraryStatus} - DESCRIPTION - "Tape Library Status Change. - - This trap signifies that the agent has detected a change in - the status of a tape library. The variable - cpqDaTapeLibraryStatus indicates the current tape library - status. The variable cpqDaTapeLibraryScsiTarget indicates - the SCSI ID of the tape library. - - User Action: If the tape library is failed, check the tape - library front panel." - - - --#TYPE "Tape Library Status Change (3020)" - --#SUMMARY "Status is now %d for the tape library." - --#ARGUMENTS {6} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3020 - - cpqDaTapeLibraryDoorStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeLibraryCntlrIndex, - cpqDaTapeLibraryScsiBus, cpqDaTapeLibraryScsiTarget, - cpqDaTapeLibraryScsiLun, cpqDaTapeLibraryDoorStatus} - DESCRIPTION - "Tape Library Door Status Change. - - This trap signifies that the agent has detected a change in - the door status of a tape library. The variable - cpqDaTapeLibraryDoorStatus indicates the current tape library - door status. The variable cpqDaTapeLibraryScsiTarget indicates - the the SCSI ID of the tape library. - - User Action: If the tape library door is open, close the tape - library door." - - - --#TYPE "Tape Library Door Status Change (3021)" - --#SUMMARY "The door is %d for tape library." - --#ARGUMENTS {6} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3021 - - cpqDaTapeDriveStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeDrvCntlrIndex, - cpqDaTapeDrvBusIndex, cpqDaTapeDrvScsiIdIndex, - cpqDaTapeDrvLunIndex, cpqDaTapeDrvStatus} - DESCRIPTION - "Tape Drive Status Change. - - This trap signifies that the agent has detected a change in - the status of a tape drive. The variable cpqDaTapeDrvStatus - indicates the current tape status. The variable - cpqDaTapeDrvScsiIdIndex indicates the the SCSI ID of the tape - drive. - - User Action: If the tape is failed, check the tape and - all SCSI connections." - - - --#TYPE "Tape Drive Status Change (3022)" - --#SUMMARY "Status is now %d for a tape drive." - --#ARGUMENTS {6} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3022 - - cpqDaTapeDriveCleaningRequired TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeDrvCntlrIndex, - cpqDaTapeDrvBusIndex, cpqDaTapeDrvScsiIdIndex, - cpqDaTapeDrvLunIndex} - DESCRIPTION - "Tape Drive Cleaning Required trap. - - The agent has detected a tape drive that needs to have a - cleaning tape inserted and run. This will cause the tape - drive heads to be cleaned." - - --#TYPE "Tape Drive Cleaning Required (3023)" - --#SUMMARY "Cleaning is needed for the tape drive." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - - ::= 3023 - - cpqDaTapeDriveCleanTapeReplace TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeDrvCntlrIndex, - cpqDaTapeDrvBusIndex, cpqDaTapeDrvScsiIdIndex, - cpqDaTapeDrvLunIndex} - DESCRIPTION - "Tape Drive Cleaning Tape Needs Replacing. - - The agent has detected that an autoloader tape unit has a - cleaning tape that has been fully used and therefore needs to - be replaced with a new cleaning tape." - - --#TYPE "Tape Drive Cleaning Tape Needs Replacing (3024)" - --#SUMMARY "Cleaning tape needs replacing" - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - - ::= 3024 - - cpqDa5AccelStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrSlot, - cpqDaCntlrModel, cpqDaAccelSerialNumber, - cpqDaAccelTotalMemory, cpqDaAccelStatus, - cpqDaAccelErrCode } - DESCRIPTION - "Accelerator Board Status Change. - - This trap signifies that the agent has detected a change in - the status of an array accelerator cache board. The current - status is represented by the variable cpqDaAccelStatus. - - User Action: If the accelerator board status is permDisabled(5), - you may need to replace the accelerator board." - - --#TYPE "Accelerator Board Status Change (3025)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {6} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3025 - - cpqDa5AccelBadDataTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrSlot, - cpqDaCntlrModel, cpqDaAccelSerialNumber, - cpqDaAccelTotalMemory } - DESCRIPTION - "Accelerator Board Bad Data. - - This trap signifies that the agent has detected an array - accelerator cache board that has lost battery power. If - data was being stored in the accelerator cache memory when the - server lost power, that data has been lost. - - User Action: Verify that no data has been lost." - - --#TYPE "Accelerator Board Bad Data (3026)" - --#SUMMARY "Accelerator lost battery power. Data Loss possible." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3026 - - cpqDa5AccelBatteryFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrSlot, - cpqDaCntlrModel, cpqDaAccelSerialNumber, - cpqDaAccelTotalMemory } - DESCRIPTION - "Accelerator Board Battery Failed. - - This trap signifies that the agent has detected a battery - failure associated with the array accelerator cache board. - - User Action: Replace the Accelerator Cache Board." - - --#TYPE "Accelerator Board Battery Failed (3027)" - --#SUMMARY "Battery status is failed." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3027 - - cpqDa5CntlrStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrSlot, - cpqDaCntlrBoardStatus, cpqDaCntlrModel, - cpqDaCntlrSerialNumber, cpqDaCntlrFWRev, - cpqDaAccelTotalMemory } - DESCRIPTION - "Controller Status Change. - - This trap signifies that the agent has detected a change in - the status of a drive array controller. The variable - cpqDaCntlrBoardStatus indicates the current controller status. - - User Action: If the board status is generalFailure(3), you - may need to replace the controller. If the board status is - cableProblem(4), check the cable connections between the - controller and the storage system." - - --#TYPE "Controller Status Change (3028)" - --#SUMMARY "Status is now %d." - --#ARGUMENTS {3} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3028 - - cpqDa5PhyDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvStatus, - cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvBusNumber, - cpqDaPhyDrvBay, cpqDaPhyDrvModel, cpqDaPhyDrvFWRev, - cpqDaPhyDrvSerialNum, cpqDaPhyDrvFailureCode } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - - User Action: If the physical drive status is failed(3) or - predictiveFailure(4), replace the drive." - - --#TYPE "Physical Drive Status Change (3029)" - --#SUMMARY "Physical Drive Status is now %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3029 - - cpqDa5PhyDrvThreshPassedTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvCntlrIndex, - cpqDaPhyDrvBusNumber, cpqDaPhyDrvBay, cpqDaPhyDrvModel, - cpqDaPhyDrvFWRev, cpqDaPhyDrvSerialNum } - DESCRIPTION - "Physical Drive Threshold Passed. - - This trap signifies that the agent has detected a factory - threshold associated with one of the physical drive objects - on a drive array has been exceeded. - - User Action: Replace the physical drive." - - --#TYPE "Physical Drive Threshold Passed (3030)" - --#SUMMARY "Factory threshold passed for a physical drive." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3030 - - cpqDa2TapeLibraryStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeLibraryCntlrIndex, - cpqDaTapeLibraryScsiBus, cpqDaTapeLibraryScsiTarget, - cpqDaTapeLibraryScsiLun, cpqDaTapeLibraryModel, - cpqDaTapeLibraryFWRev, cpqDaTapeLibrarySerialNumber, - cpqDaTapeLibraryStatus} - DESCRIPTION - "Tape Library Status Change. - - This trap signifies that the agent has detected a change in - the status of a tape library. The variable - cpqDaTapeLibraryStatus indicates the current tape library - status. The variable cpqDaTapeLibraryScsiTarget indicates - the SCSI ID of the tape library. - - User Action: If the tape library is failed, check the tape - library front panel." - - - --#TYPE "Tape Library Status Change (3031)" - --#SUMMARY "Status is now %d for the tape library." - --#ARGUMENTS {9} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3031 - - cpqDa2TapeDriveStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaTapeDrvCntlrIndex, - cpqDaTapeDrvBusIndex, cpqDaTapeDrvScsiIdIndex, - cpqDaTapeDrvLunIndex, cpqDaTapeDrvName, - cpqDaTapeDrvFwRev, cpqDaTapeDrvSerialNumber, - cpqDaTapeDrvStatus} - DESCRIPTION - "Tape Drive Status Change. - - This trap signifies that the agent has detected a change in - the status of a tape drive. The variable cpqDaTapeDrvStatus - indicates the current tape status. The variable - cpqDaTapeDrvScsiIdIndex indicates the the SCSI ID of the tape - drive. - - User Action: If the tape is failed, check the tape and - all SCSI connections." - - - --#TYPE "Tape Drive Status Change (3032)" - --#SUMMARY "Status is now %d for a tape drive." - --#ARGUMENTS {9} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3032 - - cpqDa6CntlrStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaCntlrIndex, cpqDaCntlrBoardStatus, cpqDaCntlrModel, - cpqDaCntlrSerialNumber, cpqDaCntlrFWRev, - cpqDaAccelTotalMemory } - DESCRIPTION - "Controller Status Change. - - This trap signifies that the agent has detected a change in - the status of a drive array controller. The variable - cpqDaCntlrBoardStatus indicates the current controller status. - - User Action: If cpqDaCntlrBoardStatus is `generalFailure(3)`, you - may need to reboot the server or replace the controller. - After the system is rebooted, check the variable - cpqDaCntlrLastLockupCode for last lockup code of the controller. - If cpqDaCntlrBoardStatus is `cableProblem(4)`, check the cable - connections between the controller and the storage system. If - cpqDaCntlrBoardStatus is `cacheModuleMissing(6)`, the array - controller is operating in an unsupported configuration and - requires that a cache module be attached to the controller." - - --#TYPE "Controller Status Change (3033)" - --#SUMMARY "Controller status is now %d for controller located in %s." - --#ARGUMENTS {4, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the controller status is 'generalFailure(3)', you may need to reboot the server or replace the controller." - - ::= 3033 - - cpqDa6LogDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaLogDrvCntlrIndex, cpqDaLogDrvIndex, - cpqDaLogDrvStatus } - DESCRIPTION - "Logical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array logical drive. The variable - cpqDaLogDrvStatus indicates the current logical drive status." - - --#TYPE "Logical Drive Status Change (3034)" - --#SUMMARY "Logical drive status is now %d for drive %d on controller located in %s." - --#ARGUMENTS {5, 4, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the logical drive status is 'recovering(5)', at least one drive has failed but no data has been lost. If the logical drive status is 'failed(3)', data loss has occurred. Replace the failed physical drive(s)." - - ::= 3034 - - cpqDa6SpareStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaSpareCntlrIndex, cpqDaSparePhyDrvIndex, - cpqDaSpareStatus, cpqDaSpareBusNumber, cpqDaSpareBay } - DESCRIPTION - "Spare Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array spare drive. The variable - cpqDaSpareStatus indicates the current spare drive status. - - User Action: If the spare drive status is failed, replace - the drive." - - --#TYPE "Spare Drive Status Change (3035)" - --#SUMMARY "Spare Status is now %d." - --#ARGUMENTS {5} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3035 - - cpqDa6PhyDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvIndex, - cpqDaPhyDrvBusNumber, cpqDaPhyDrvBay, cpqDaPhyDrvModel, - cpqDaPhyDrvFWRev, cpqDaPhyDrvSerialNum, - cpqDaPhyDrvFailureCode, cpqDaPhyDrvStatus } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - - User Action: If the physical drive status is failed(3) or - predictiveFailure(4), replace the drive." - - --#TYPE "Physical Drive Status Change (3036)" - --#SUMMARY "Physical Drive Status is now %d." - --#ARGUMENTS {11} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - - ::= 3036 - - cpqDa6PhyDrvThreshPassedTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvIndex, - cpqDaPhyDrvBusNumber, cpqDaPhyDrvBay, cpqDaPhyDrvModel, - cpqDaPhyDrvFWRev, cpqDaPhyDrvSerialNum } - DESCRIPTION - "Physical Drive Threshold Passed. - - This trap signifies that the agent has detected a factory - threshold associated with one of the physical drive objects - on a drive array has been exceeded. - - User Action: Replace the physical drive." - - --#TYPE "Physical Drive Threshold Passed (3037)" - --#SUMMARY "Factory threshold passed for a physical drive (Bay: %d, Bus: %d, Controller: %s)." - --#ARGUMENTS {6, 5, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Replace the physical drive." - - ::= 3037 - - cpqDa6AccelStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaCntlrModel, cpqDaAccelCntlrIndex, - cpqDaAccelSerialNumber, cpqDaAccelTotalMemory, - cpqDaAccelStatus, cpqDaAccelErrCode } - DESCRIPTION - "Cache Module Board Status Change. - - This trap signifies that the agent has detected a change in - the status of a cache module board. The current - status is represented by the variable cpqDaAccelStatus. - - User Action: Do one or more of the following - Allow 2 hours to complete charge / Install energy pack / Verify energy pack cable and controller backup power cable are well seated / Match energy pack to number of loads / Update firmware / Replace energy pack" - - --#TYPE "Accelerator Board Status Change (3038)" - --#SUMMARY "Cache module board status is now %d for board located in %s." - --#ARGUMENTS {7, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Do one or more of the following - Allow 2 hours to complete charge / Install energy pack / Verify energy pack cable and controller backup power cable are well seated / Match energy pack to number of loads / Update firmware / Replace energy pack" - - ::= 3038 - - cpqDa6AccelBadDataTrap TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaCntlrModel, cpqDaAccelCntlrIndex, - cpqDaAccelSerialNumber, cpqDaAccelTotalMemory } - DESCRIPTION - "Cache Module Board Bad Data. - - This trap signifies that the agent has detected a cache - module board that has lost backup power. If - data was being stored in the cache module memory when the - server lost power, that data has been lost. The backup power - source is indicated by cpqDaAccelBackupPowerSource. - - User Action: Verify that no data has been lost." - - --#TYPE "Accelerator Board Bad Data (3039)" - --#SUMMARY "Cache module board lost backup power: data loss possible (Controller Location: %s)." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Verify that no data has been lost." - - ::= 3039 - - cpqDa6AccelBatteryFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaCntlrModel, cpqDaAccelCntlrIndex, - cpqDaAccelSerialNumber, cpqDaAccelTotalMemory } - DESCRIPTION - "Cache Module Board Backup Power Source Failed. - - This trap signifies that the agent has detected a backup - power source failure associated with the cache module - board. The backup power source is indicated by - cpqDaAccelBackupPowerSource. - - User Action: Replace the Backup Power Source." - - --#TYPE "Accelerator Board Battery Failed (3040)" - --#SUMMARY "Cache module board backup power source status is failed for controller located in %s." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Replace the backup power source." - - ::= 3040 - - cpqDa6TapeLibraryStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaTapeLibraryCntlrIndex, cpqDaTapeLibraryScsiBus, - cpqDaTapeLibraryScsiTarget, cpqDaTapeLibraryScsiLun, - cpqDaTapeLibraryModel, cpqDaTapeLibraryFWRev, - cpqDaTapeLibrarySerialNumber, cpqDaTapeLibraryStatus } - DESCRIPTION - "Tape Library Status Change. - - This trap signifies that the agent has detected a change in - the status of a tape library. The variable - cpqDaTapeLibraryStatus indicates the current tape library - status. The variable cpqDaTapeLibraryScsiTarget indicates - the SCSI ID of the tape library. - - User Action: If cpqDaTapeLibraryStatus is `failed(4)`, check the - tape library front panel." - - - --#TYPE "Tape Library Status Change (3041)" - --#SUMMARY "Tape library status is now %d (SCSI ID: %d, Bus: %d, Controller: %s)." - --#ARGUMENTS {10, 5, 4, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the tape library status is 'failed(4)', check the tape library front panel." - - ::= 3041 - - cpqDa6TapeLibraryDoorStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaTapeLibraryCntlrIndex, cpqDaTapeLibraryScsiBus, - cpqDaTapeLibraryScsiTarget, cpqDaTapeLibraryScsiLun, - cpqDaTapeLibraryModel, cpqDaTapeLibraryFWRev, - cpqDaTapeLibrarySerialNumber, - cpqDaTapeLibraryDoorStatus } - DESCRIPTION - "Tape Library Door Status Change. - - This trap signifies that the agent has detected a change in - the door status of a tape library. The variable - cpqDaTapeLibraryDoorStatus indicates the current tape library - door status. The variable cpqDaTapeLibraryScsiTarget indicates - the the SCSI ID of the tape library. - - User Action: If cpqDaTapeLibraryDoorStatus is `open(4)`, close the - tape library door." - - - --#TYPE "Tape Library Door Status Change (3042)" - --#SUMMARY "Tape library door status is now %d (SCSI ID: %d, Bus: %d, Controller: %s)." - --#ARGUMENTS {10, 5, 4, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the tape library door status is 'open(4)', close the door." - - ::= 3042 - - cpqDa6TapeDriveStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaTapeDrvCntlrIndex, cpqDaTapeDrvBusIndex, - cpqDaTapeDrvScsiIdIndex, cpqDaTapeDrvLunIndex, - cpqDaTapeDrvName, cpqDaTapeDrvFwRev, - cpqDaTapeDrvSerialNumber, cpqDaTapeDrvStatus } - DESCRIPTION - "Tape Drive Status Change. - - This trap signifies that the agent has detected a change in - the status of a tape drive. The variable cpqDaTapeDrvStatus - indicates the current tape status. The variable - cpqDaTapeDrvScsiIdIndex indicates the the SCSI ID of the tape - drive. - - User Action: If cpqDaTapeDrvStatus is `failed(4)`, check the tape - and all SCSI connections." - - - --#TYPE "Tape Drive Status Change (3043)" - --#SUMMARY "Tape drive status is now %d (Drive: %d, Bus: %d, Controller: %s)." - --#ARGUMENTS {10, 5, 4, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the tape drive status is 'failed(4)', check the tape and all SCSI connections." - - ::= 3043 - - cpqDa6TapeDriveCleaningRequired TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaTapeDrvCntlrIndex, cpqDaTapeDrvBusIndex, - cpqDaTapeDrvScsiIdIndex, cpqDaTapeDrvLunIndex, - cpqDaTapeDrvName, cpqDaTapeDrvFwRev, - cpqDaTapeDrvSerialNumber } - DESCRIPTION - "Tape Drive Cleaning Required trap. - - The agent has detected a tape drive that needs to have a - cleaning tape inserted and run. This will cause the tape - drive heads to be cleaned." - - --#TYPE "Tape Drive Cleaning Required (3044)" - --#SUMMARY "Cleaning is needed for the tape drive (Drive: %d, Bus: %d, Controller: %s)." - --#ARGUMENTS {5, 4, 2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Insert and run a cleaning tape in the tape drive." - - ::= 3044 - - cpqDa6TapeDriveCleanTapeReplace TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaTapeDrvCntlrIndex, cpqDaTapeDrvBusIndex, - cpqDaTapeDrvScsiIdIndex, cpqDaTapeDrvLunIndex, - cpqDaTapeDrvName, cpqDaTapeDrvFwRev, - cpqDaTapeDrvSerialNumber } - DESCRIPTION - "Tape Drive Cleaning Tape Needs Replacing. - - The agent has detected that an autoloader tape unit has a - cleaning tape that has been fully used and therefore needs to - be replaced with a new cleaning tape." - - --#TYPE "Tape Drive Cleaning Tape Needs Replacing (3045)" - --#SUMMARY "Cleaning tape needs replacing (Drive: %d, Bus: %d, Controller: %s)." - --#ARGUMENTS {5, 4, 2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Replace the cleaning tape." - - ::= 3045 - - cpqDa7PhyDrvStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvIndex, - cpqDaPhyDrvLocationString, cpqDaPhyDrvType, - cpqDaPhyDrvModel, cpqDaPhyDrvFWRev, cpqDaPhyDrvSerialNum, - cpqDaPhyDrvFailureCode, cpqDaPhyDrvStatus, - cpqDaPhyDrvBusNumber } - DESCRIPTION - "Physical Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array physical drive. The variable - cpaDaPhyDrvStatus indicates the current physical drive status. - - User Action: If cpaDaPhyDrvStatus is `failed(3)`, - `predictiveFailure(4)`, `ssdWearOut(8)`, or `notAuthenticated(9)`, - replace the drive." - - --#TYPE "Physical Drive Status Change (3046)" - --#SUMMARY "Physical drive status is now %d for drive at location %s connected to controller in %s." - --#ARGUMENTS {11, 5, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the physical drive status is 'failed(3)', 'predictiveFailure(4)', 'ssdWearOut(8)', or 'notAuthenticated(9)', replace the drive." - - ::= 3046 - - cpqDa7SpareStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaSpareCntlrIndex, cpqDaSparePhyDrvIndex, - cpqDaSpareStatus, cpqDaSpareLocationString, - cpqDaSpareBusNumber } - DESCRIPTION - "Spare Drive Status Change. - - This trap signifies that the agent has detected a change in the - status of a drive array spare drive. The variable - cpqDaSpareStatus indicates the current spare drive status. - - User Action: If cpqDaSpareStatus is `failed(3)`, replace the - drive." - - --#TYPE "Spare Drive Status Change (3047)" - --#SUMMARY "Spare status is now %d for drive at location %s connected to controller in %s." - --#ARGUMENTS {5, 6, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the spare drive status is 'failed(3)', replace the drive." - - ::= 3047 - - cpqDaCntlrPartnerStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaCntlrIndex, cpqDaCntlrModel, - cpqDaCntlrSerialNumber, cpqDaCntlrPartnerSerialNumber, - cpqDaCntlrPartnerBoardStatus} - - DESCRIPTION - "Partner Controller Status Change. - - This trap signifies that the agent has detected a change in - the status of a drive array partner controller. The variable - cpqDaCntlrPartnerBoardStatus indicates the current partner - controller status. The variable cpqDaCntlrSerialNumber indicates - the controller serial number and cpqDaCntlrPartnerSerialNumber - indicates the partner controller serial number. - - User Action: Check the partner controller for problems. If lost - communication with the partner controller is the result of a user - initiated action, no remedial action is required." - - --#TYPE "Partner Controller Status Change (3048)" - --#SUMMARY "Partner controller status is now %d for controller located in %s." - --#ARGUMENTS {7, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Check the partner controller for problems. If communication with the partner controller was lost as the result of a user initiated action, then no remedial action is required." - - ::= 3048 - - cpqDaPhyDrvSSDWearStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaCntlrHwLocation, - cpqDaPhyDrvCntlrIndex, cpqDaPhyDrvIndex, - cpqDaPhyDrvLocationString, cpqDaPhyDrvType, - cpqDaPhyDrvModel, cpqDaPhyDrvFWRev, cpqDaPhyDrvSerialNum, - cpqDaPhyDrvSSDWearStatus} - DESCRIPTION - "Solid State Disk Wear Status Change. - - This trap signifies that the agent has detected a change in the - SSD wear status of a drive array physical drive. The variable - cpqDaPhyDrvSSDWearStatus indicates the current SSD wear status. - - User Action: If cpqDaPhyDrvSSDWearStatus is `ssdWearOut(6)`, replace - the drive." - - --#TYPE "Solid State Disk Wear Status Change (3049)" - --#SUMMARY "Solid state disk wear status is now %d for drive at location %s connected to controller in %s." - --#ARGUMENTS {10, 5, 2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the SSD wear status is 'ssdWearOut(6)', replace the drive." - - ::= 3049 - - - - cpqDaSmartArraySecureEraseFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqDaPhyDrvCntlrIndex, - cpqDaPhyDrvIndex, cpqDaPhyDrvBay, cpqDaPhyDrvSerialNum } - DESCRIPTION - "Secure Erase of Smart Array has failed." - - --#TYPE "Secure Erase of Smart Array has failed(3903)" - --#SUMMARY "Secure Erase of Smart Array has failed : ( Controller Index %d, Drive Index %d, Drive Bay %d, Serial Number %s )" - --#ARGUMENTS { 2, 3, 4, 5 } - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Retry Secure Erase. Please contact HPE Support if issue persists." - - ::= 3903 -END diff --git a/mibs/orig/CPQSINFO-MIB b/mibs/orig/CPQSINFO-MIB deleted file mode 100644 index 30612fe..0000000 --- a/mibs/orig/CPQSINFO-MIB +++ /dev/null @@ -1,4132 +0,0 @@ --- **************************************************************************** --- --- System Information --- Management Information Base for SNMP Network Management --- --- --- Copyright 1992,2017 Hewlett Packard Enterprise Development LP. --- --- Hewlett-Packard Enterprise Development LP shall not be liable for technical or --- editorial errors or omissions contained herein. The information in --- this document is provided "as is" without warranty of any kind and --- is subject to change without notice. The warranties for HP products --- are set forth in the express limited warranty statements --- accompanying such products. Nothing herein should be construed as --- constituting an additional warranty. --- --- Confidential computer software. Valid license from HP required for --- possession, use or copying. Consistent with FAR 12.211 and 12.212, --- Commercial Computer Software, Computer Software Documentation, and --- Technical Data for Commercial Items are licensed to the U.S. --- Government under vendor's standard commercial license. --- --- Refer to the READMIB.RDM file for more information about the --- organization of the information in the Compaq Enterprise. --- --- The Compaq Enterprise number is 232. --- The ASN.1 prefix to, and including the Compaq Enterprise is: --- 1.3.6.1.4.1.232 --- --- **************************************************************************** - -CPQSINFO-MIB DEFINITIONS ::= BEGIN - - IMPORTS - compaq FROM CPQHOST-MIB - DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212 - sysName FROM RFC1213-MIB - cpqHoTrapFlags FROM CPQHOST-MIB - TRAP-TYPE FROM RFC-1215; - - --- compaq OBJECT IDENTIFIER ::= { enterprises 232 } - cpqSystemInfo OBJECT IDENTIFIER ::= { compaq 2 } - cpqSiMibRev OBJECT IDENTIFIER ::= { cpqSystemInfo 1 } - cpqSiComponent OBJECT IDENTIFIER ::= { cpqSystemInfo 2 } - - cpqSiInterface OBJECT IDENTIFIER ::= { cpqSiComponent 1 } - cpqSiAsset OBJECT IDENTIFIER ::= { cpqSiComponent 2 } - cpqSiSecurity OBJECT IDENTIFIER ::= { cpqSiComponent 3 } - cpqSiSystemBoard OBJECT IDENTIFIER ::= { cpqSiComponent 4 } - cpqSiBoardRev OBJECT IDENTIFIER ::= { cpqSiComponent 5 } - cpqSiRackServer OBJECT IDENTIFIER ::= { cpqSiComponent 6 } - cpqSiVideo OBJECT IDENTIFIER ::= { cpqSiComponent 7 } - cpqSiMonitor OBJECT IDENTIFIER ::= { cpqSiComponent 8 } - cpqSiHotPlugSlot OBJECT IDENTIFIER ::= { cpqSiComponent 9 } - cpqSiSystemBattery OBJECT IDENTIFIER ::= { cpqSiComponent 10 } - cpqSiDockingStation OBJECT IDENTIFIER ::= { cpqSiComponent 11 } - cpqSiFru OBJECT IDENTIFIER ::= { cpqSiComponent 12 } - cpqSiRackEnclosure OBJECT IDENTIFIER ::= { cpqSiComponent 13 } - cpqSiServerBlade OBJECT IDENTIFIER ::= { cpqSiComponent 14 } - cpqSiRack OBJECT IDENTIFIER ::= { cpqSiComponent 15 } - cpqSiMP OBJECT IDENTIFIER ::= { cpqSiComponent 16 } - - cpqSiOsCommon OBJECT IDENTIFIER ::= { cpqSiInterface 4 } - --- **************************************************************************** --- System Information MIB Revision --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiMibRev Group (1.3.6.1.4.1.232.2.1) --- --- Implementation of the MibRev group is mandatory for all Insight Agents --- supporting the System Information MIB. --- --- An Agent conforming to this document will return a --- cpqSiMibRevMajor of one (1) and a cpqSiMibRevMinor of forty (40). --- --- --- **************************************************************************** - - cpqSiMibRevMajor OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The major revision level of the MIB. - - 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." - ::= { cpqSiMibRev 1 } - - cpqSiMibRevMinor OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minor revision level of the MIB. - - A change in the minor revision level may represent some minor - additional support, no changes to any pre-existing information - has occurred." - ::= { cpqSiMibRev 2 } - - cpqSiMibCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), -- default - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall condition. - - This object represents the overall status of the server - information represented by this MIB." - ::= { cpqSiMibRev 3 } - --- **************************************************************************** --- System Information Common --- ========================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiInterface Group (1.3.6.1.4.1.232.2.2.1) --- cpqSiOsCommon Group (1.3.6.1.4.1.232.2.2.1.4) --- --- --- Implementation of the cpqSiOsCommon group is mandatory for all --- Insight Agents that support the System Information MIB. --- --- **************************************************************************** - - cpqSiOsCommonPollFreq OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - 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." - ::= { cpqSiOsCommon 1 } - - --- **************************************************************************** --- System Information Common Module Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiInterface Group (1.3.6.1.4.1.232.2.2.1) --- cpqSiOsCommon Group (1.3.6.1.4.1.232.2.2.1.4) --- cpqSiOsCommonModuleTable (1.3.6.1.4.1.232.2.2.1.4.2) deprecated --- --- **************************************************************************** - - cpqSiOsCommonModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of software modules that provide an interface to the - device this MIB describes." - ::= { cpqSiOsCommon 2 } - - cpqSiOsCommonModuleEntry OBJECT-TYPE - SYNTAX CpqSiOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a software module that provides an interface - to the device this MIB describes." - INDEX { cpqSiOsCommonModuleIndex } - ::= { cpqSiOsCommonModuleTable 1 } - - CpqSiOsCommonModuleEntry ::= SEQUENCE { - cpqSiOsCommonModuleIndex INTEGER, - cpqSiOsCommonModuleName DisplayString, - cpqSiOsCommonModuleVersion DisplayString, - cpqSiOsCommonModuleDate OCTET STRING, - cpqSiOsCommonModulePurpose DisplayString - } - - cpqSiOsCommonModuleIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "A unique index for this module description." - ::= { cpqSiOsCommonModuleEntry 1 } - - cpqSiOsCommonModuleName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The module name." - ::= { cpqSiOsCommonModuleEntry 2 } - - cpqSiOsCommonModuleVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqSiOsCommonModuleEntry 3 } - - cpqSiOsCommonModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqSiOsCommonModuleEntry 4 } - - cpqSiOsCommonModulePurpose OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The purpose of the module described in this entry." - ::= { cpqSiOsCommonModuleEntry 5 } - --- **************************************************************************** --- System Information Asset Group --- ============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiAsset Group (1.3.6.1.4.1.232.2.2.2) --- --- The cpqSiAsset group contains the serial numbers of any hardware --- that supports asset management. --- --- Implementation of the cpqSiAsset group is mandatory for all Insight --- Agents that support the System Information MIB. --- --- **************************************************************************** - - cpqSiSysSerialNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the physical system unit. - - The string will be empty if the system does not report the - serial number function." - ::= { cpqSiAsset 1 } - - cpqSiFormFactor OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - portable(2), - laptop(3), - desktop(4), - tower(5), - mini-tower(6), - rack-mount(7), - nultiboard-chasis(8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The form factor of the system. Setting this variable to - unknown will fail." - ::= { cpqSiAsset 2 } - - cpqSiAssetTag OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The customer changeable identifier that is set to the system - serial number at the time of manufacture. - - The string will be empty if the system does not report this - function." - ::= { cpqSiAsset 3 } - - cpqSiOwnershipTag OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a customer changeable identifier that will be - displayed by ROM at POST. This is an 80 byte standard - ASCII character string and is Administrator Password - protected. - - An example could be: - Property of Hewlett-Packard Company - - The string should be NULL terminated. This item will be - empty if the system does not report this function." - ::= { cpqSiAsset 4 } - - cpqSiSysServiceNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The service number of the system unit. - - The string will be empty if the system does not report the - system service number." - ::= { cpqSiAsset 5 } - - cpqSiSysProductId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The product id string of the system unit. - - The string will be empty if the system does not report the - product id." - ::= { cpqSiAsset 6 } - - cpqSiAssetTagMaxLength OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - " Maximum allowed size in bytes of the asset tag." - - ::= { cpqSiAsset 7 } - --- **************************************************************************** --- Virtual System Information Table --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiAsset Group (1.3.6.1.4.1.232.2.2.2) --- cpqSiVirtualSystemTable (1.3.6.1.4.1.232.2.2.2.8) --- cpqSiVirtualSystemEntry (1.3.6.1.4.1.232.2.2.2.8.1) --- --- **************************************************************************** - - cpqSiVirtualSystemTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiVirtualSystemEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A table of virtual system information entries." - ::= { cpqSiAsset 8 } - - cpqSiVirtualSystemEntry OBJECT-TYPE - SYNTAX CpqSiVirtualSystemEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A virtual system information table entry." - INDEX { cpqSiVirtualSystemIndex } - ::= { cpqSiVirtualSystemTable 1 } - - CpqSiVirtualSystemEntry ::= SEQUENCE { - cpqSiVirtualSystemIndex INTEGER, - cpqSiVirtualSystemSerialNumber DisplayString, - cpqSiVirtualSystemUUID DisplayString - } - - cpqSiVirtualSystemIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS optional - DESCRIPTION - "The unique index of the virtual system information entry." - ::= { cpqSiVirtualSystemEntry 1 } - - cpqSiVirtualSystemSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The HP Virtual Serial Number for the computer system package. The Virtual - Serial Number is the system serial number exposed to the operating - system when running in an HP Virtual Connect environment. The Virtual - Serial Number presented here will correspond to the Virtual UUID at the - same index location." - ::= { cpqSiVirtualSystemEntry 2 } - - cpqSiVirtualSystemUUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The HP Virtual UUID for the computer system package. The Virtual - UUID is the UUID number exposed to the operating system when running - in an HP Virtual Connect environment. The Virtual UUID presented - here will correspond to the Virtual serial number at the same index - location." - ::= { cpqSiVirtualSystemEntry 3 } - - --- **************************************************************************** --- System Information Security Group --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSecurity Group (1.3.6.1.4.1.232.2.2.3) --- --- The Security group describes how the security features on your --- computer are currently configured. --- --- Implementation of the security group is mandatory for all agents that --- support the System Information MIB. --- --- **************************************************************************** - - cpqSiPowerOnPassword OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the power on password feature." - ::= { cpqSiSecurity 1 } - - cpqSiNetServerMode OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the network server mode feature." - ::= { cpqSiSecurity 2 } - - cpqSiQuickLockPassword OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the quicklock password feature." - ::= { cpqSiSecurity 3 } - - cpqSiQuickBlank OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the quick blank screen feature." - ::= { cpqSiSecurity 4 } - - cpqSiDisketteBootControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the diskette boot control feature." - ::= { cpqSiSecurity 5 } - - cpqSiSerialPortAControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the primary serial port - interface embedded in the system board." - ::= { cpqSiSecurity 6 } - - cpqSiSerialPortBControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the secondary serial port - interface embedded in the system board." - ::= { cpqSiSecurity 7 } - - cpqSiParallelPortControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the parallel port interface - embedded in the system board." - ::= { cpqSiSecurity 8 } - - cpqSiFloppyDiskControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the floppy diskette - interface embedded in the system board." - ::= { cpqSiSecurity 9 } - - cpqSiFixedDiskControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the fixed disk interface - embedded in the system board." - ::= { cpqSiSecurity 10 } - - cpqSiHoodRemovedTime OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last detection of hood removed by Smart Hood Sensor." - - ::= { cpqSiSecurity 11 } - - cpqSiHoodSensorConfiguration OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - notifyUser(3), - adminPasswordProtected(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the current configuration of the Smart Cover - sensor. - - The following values are currently defined: - - other(1) - Smart Cover sensor is not supported on this system or cannot - be determined by the Insight Agent. You may need to upgrade - your software. - - disabled(2) - Smart Cover sensor will not detect a hood removal and - cpqSiHoodRemovedTime will not be updated. - - notifyUser(3) - Smart Cover sensor will detect a hood removal and will display - a message at POST for the user. - - adminPasswordProtected(4) - Smart Cover sensor will detect a hood removal and will display - a message at POST for the user to enter the Admin Password. - The system will not boot until proper password is entered." - ::= { cpqSiSecurity 12 } - - - cpqSiSmartCoverLockStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unlocked(2), - locked(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the current status of the Smart Cover - Lock. The following values are currently defined: - - other(1) - Smart Cover Lock is not supported on this system or cannot - be determined by the Insight Agent. You may need to upgrade - your software. - - unlocked(2) - Smart Cover Lock is not locked. The status will be set to - unlocked due to one of the following: - 1. The system hood is removed, or - 2. There is no administrator password set, or - 3. The administrator manually sets status to unlock. - - locked(3) - Smart Cover Lock is locked. The administrator password is - required to unlock the hood." - ::= { cpqSiSecurity 13 } - - cpqSiUSBPortControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3), - legacydisabled(4), - externalportdisabled(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the Universal - Serial Bus interface(s) embedded in the system - board. - - other(1) - If Status could not be determined. - - disabled(2) - USB interface is disable. - - enabled(3) - USB interface is enable. - - legacydisabled(4) - Legacy USB interface is disabled. - - externalportdisabled(5) - External USB Ports are disabled." - ::= { cpqSiSecurity 14 } - - cpqSiVirtualSerialPortControl OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the access control for the virtual serial port interface - embedded in the system board." - ::= { cpqSiSecurity 15 } - - cpqSiChassisHoodStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - not-installed(2), - hood-ok(3), - hood-removed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the chassis intrusion alert hardware and the hood presence. - - unknown (1) - Unable to determine the system intrusion alert hardware presence. - not-installed(2) - System intrusion alert hardware is not installed. - hood-ok (3) - System intrusion alert hardware is installed and the hood cover is seated properly. - hood-removed (4) - System intrusion alert hardware is installed but the hood cover is removed." - - ::= { cpqSiSecurity 16 } - - --- **************************************************************************** --- System Information System Board Group --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) --- --- The cpqSiSystemBoard group describe features of your computer --- system board. --- --- Implementation of the cpqSiSystemBoard group is mandatory for all agents --- that support the System Information MIB. --- --- **************************************************************************** - - cpqSiProductId OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The machine product ID. - - This value indicates the product type of the system board - in this system. The value 127 will be given if the machine ID - cannot be determined. A value of 127 will also be used for the - special case of a machine containing neither EISA nor ISA slots." - ::= { cpqSiSystemBoard 1 } - - cpqSiProductName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The machine product name. - - The name of the machine used in this system." - ::= { cpqSiSystemBoard 2 } - - cpqSiAuxiliaryInput OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the auxiliary input (pointing) device." - ::= { cpqSiSystemBoard 4 } - --- **************************************************************************** --- System Information Memory Module Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) --- cpqSiMemModuleTable (1.3.6.1.4.1.232.2.2.4.5) --- cpqSiMemModuleEntry (1.3.6.1.4.1.232.2.2.4.5.1) --- --- **************************************************************************** --- Deprecated this table in 8.20 time frame please use the --- cpqHeResMem2ModuleTable tables to get value - - cpqSiMemModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiMemModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of memory module descriptions." - ::= { cpqSiSystemBoard 5 } - - cpqSiMemModuleEntry OBJECT-TYPE - SYNTAX CpqSiMemModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A memory module description." - INDEX { cpqSiMemBoardIndex , cpqSiMemModuleIndex } - ::= { cpqSiMemModuleTable 1 } - - CpqSiMemModuleEntry ::= SEQUENCE { - cpqSiMemBoardIndex INTEGER, - cpqSiMemModuleIndex INTEGER, - cpqSiMemModuleSize INTEGER, - cpqSiMemModuleType INTEGER, - cpqSiMemModuleSpeed INTEGER, -- deprecated - cpqSiMemModuleTechnology INTEGER, - cpqSiMemModuleManufacturer DisplayString, - cpqSiMemModulePartNo DisplayString, - cpqSiMemModuleDate OCTET STRING, - cpqSiMemModuleSerialNo DisplayString, - cpqSiMemModuleECCStatus INTEGER, - cpqSiMemModuleHwLocation DisplayString, - cpqSiMemModuleFrequency INTEGER, - cpqSiMemModuleCellTablePtr INTEGER, - cpqSiMemModuleCellStatus INTEGER, - cpqSiMemModulePartNoMfgr DisplayString, - cpqSiMemModuleSerialNoMfgr DisplayString - } - - cpqSiMemBoardIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot in which the memory board or cartridge is installed. - - A value of 0 indicates memory installed directly on the - system board." - ::= { cpqSiMemModuleEntry 1 } - - cpqSiMemModuleIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module number." - ::= { cpqSiMemModuleEntry 2 } - - cpqSiMemModuleSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Module memory size in kilobytes. A kilobyte of memory is - defined as 1024 bytes. - - A size of 0 indicates the module is not present." - ::= { cpqSiMemModuleEntry 3 } - - cpqSiMemModuleType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - board(2), - cpqSingleWidthModule(3), - cpqDoubleWidthModule(4), - simm(5), - pcmcia(6), - compaq-specific(7), - dimm(8), - smallOutlineDimm(9), - rimm(10), - srimm(11), - fb-dimm(12) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Type of memory module installed. The value other(1) will be - given if the type is not known. The value board(2) will be - given if the memory module is permanently mounted (not modular) - on a system board or memory expansion board." - ::= { cpqSiMemModuleEntry 4 } - - cpqSiMemModuleSpeed OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Module memory speed in nanoseconds. The value zero (0) will - be given if the module speed cannot be determined." - ::= { cpqSiMemModuleEntry 5 } - - cpqSiMemModuleTechnology OBJECT-TYPE - SYNTAX INTEGER { - other(1), - fastPageMode(2), - edoPageMode(3), - burstEdoPageMode(4), - synchronous(5), - rdram(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Technology type of memory module installed. The value other(1) - will be given if the technology is not known." - ::= { cpqSiMemModuleEntry 6 } - - cpqSiMemModuleManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module`s manufacturer name. - - This field will be a null (size 0) string if the manufacturer - name is not available." - ::= { cpqSiMemModuleEntry 7 } - - cpqSiMemModulePartNo OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module`s manufacturer part number. - - This field will be a null (size 0) string if the manufacturer - part number is not available." - ::= { cpqSiMemModuleEntry 8 } - - cpqSiMemModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module date of manufacture. - - 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 date of manufacture - is not available. The hour, minute, and second fields will - always be set to 0." - ::= { cpqSiMemModuleEntry 9 } - - cpqSiMemModuleSerialNo OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The memory module`s serial number. - - This field will be a null (size 0) string if the serial number - is not available." - ::= { cpqSiMemModuleEntry 10 } - - cpqSiMemModuleECCStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - degradedModuleIndexUnknown(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the correctable memory - errors for this memory module. - - The following status values are supported: - - other(1): - ECC is not supported on this memory module. - - ok(2): - The correctable error count is below threshold. - - degraded(3): - The correctable error count has exceeded threshold. - - degradedModuleIndexUnknown(4): - The correctable error count has exceeded threshold. - The module index not available." - ::= { cpqSiMemModuleEntry 11 } - - cpqSiMemModuleHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the memory module. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSiMemModuleEntry 12 } - - - cpqSiMemModuleFrequency OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory module frequency in MHz. The value zero (0) will - be given if the module frequency cannot be determined." - ::= { cpqSiMemModuleEntry 13 } - - cpqSiMemModuleCellTablePtr OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS optional - DESCRIPTION - "Index for the cell in cpqSeCellTable where the memory board is - installed." - ::= { cpqSiMemModuleEntry 14 } - - cpqSiMemModuleCellStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - deconfigured(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This provides the current status for this memory module. - - The following status values are supported: - - other(1): - The memory module status is not available - - ok(2): - The memory module is active - - deconfigured(3): - The memory module is not ready" - ::= { cpqSiMemModuleEntry 15 } - - - cpqSiMemModulePartNoMfgr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The memory module`s manufacturer`s part number. - - This field will be a null (size 0) string if the manufacturer - part number is not available." - ::= { cpqSiMemModuleEntry 16 } - - cpqSiMemModuleSerialNoMfgr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The memory module`s manufacturer`s serial number. - - This field will be a null (size 0) string if the manufacturer - serial number is not available." - ::= { cpqSiMemModuleEntry 17 } - --- **************************************************************************** --- System Information System Board Group --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) --- --- --- **************************************************************************** - - cpqSiSystemId OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The System ID. - - This value indicates the system ID of the system board - in this system. This ID replaces the product ID used in - older machines (cpqSiProductId). A value of 7Eh for the - cpqSiProductId indicates that the cpqSiSystemId should be - used to identify the system. A value of zero (0) - indicates that the system ID function is not supported on this - machine. In this case, the cpqSiProductId should be used to - identify the system." - ::= { cpqSiSystemBoard 6 } - - cpqSiSystemCpuId OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The System ID : CPU Component. - - This value indicates the CPU type of the system board - in this system. A value of zero (0) indicates that the CPU - type cannot be determined." - ::= { cpqSiSystemBoard 7 } - - cpqSiFlashRomSupport OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - supported(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if this system supports flash upgradable - system ROM." - ::= { cpqSiSystemBoard 8 } - - cpqSiQuickTestRomDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the date of the current quick test ROM - image. - - 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 quick test ROM is not - present. 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." - ::= { cpqSiSystemBoard 9 } - - cpqSiReboot OBJECT-TYPE - SYNTAX INTEGER { - notAvailable(1), - available(2), - defaultOnlyAvailable(3), - rebootToCpqUtils(2693), - rebootToDefault(8115), - autoShutdown(9037) - } - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This object may contain the following values: - notAvailable(1) - the system does not support the reboot functionality. - Setting this object to notAvailable(1) has no effect. - - available(2) - the system supports the both reboot to functionalities. - Setting this object to available(2) has no effect. - - defaultOnlyAvailable(3) - the system supports the only the default reboot functionality. - Setting this object to available(3) has no effect. - - rebootToCpqUtils(2693) - the system will reboot to the System Utilities if - the reboot functionality is available. If possible, - the agent will attempt to gracefully shutdown the - operating system before performing the reboot. - If this functionality is unavailable on this system - then all sets will have no effect. - - rebootToDefault(8115) - the system will reboot and allow the default boot - process to occur if the reboot functionality is - available. If possible, the agent will attempt to - gracefully shutdown the operating system before - performing the reboot. If this functionality is - unavailable on this system then all sets will have - no effect. - - autoShutdown(9037) - If possible, the agent will attempt to gracefully - shutdown the operating system. The agent will not - preform a reboot. - - " - - ::= { cpqSiSystemBoard 10 } - - --- **************************************************************************** --- System Information Processor Microcode Patch Table --- ================================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) --- cpqSiProcMicroPatchTable (1.3.6.1.4.1.232.2.2.4.11) --- cpqSiProcMicroPatchEntry (1.3.6.1.4.1.232.2.2.4.11.1) --- --- **************************************************************************** - - cpqSiProcMicroPatchTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiProcMicroPatchEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This table lists the set of processor microcode patches that - the system ROM contains. During post, the ROM will apply the - appropriate patches to the CPU microcode. Scan this table to - ensure that a patch is being applied to a processor." - ::= { cpqSiSystemBoard 11 } - - cpqSiProcMicroPatchEntry OBJECT-TYPE - SYNTAX CpqSiProcMicroPatchEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry describing one microcode patch contained in the system - ROM." - INDEX { cpqSiProcMicroPatchIndex } - ::= { cpqSiProcMicroPatchTable 1 } - - CpqSiProcMicroPatchEntry ::= SEQUENCE { - cpqSiProcMicroPatchIndex INTEGER, - cpqSiProcMicroPatchId INTEGER, - cpqSiProcMicroPatchDate OCTET STRING, - cpqSiProcMicroPatchFamily OCTET STRING } - - cpqSiProcMicroPatchIndex OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index into the microcode patch table." - ::= { cpqSiProcMicroPatchEntry 1 } - - cpqSiProcMicroPatchId OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of this particular CPU microcode patch." - ::= { cpqSiProcMicroPatchEntry 2 } - - cpqSiProcMicroPatchDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the date of this CPU microcode patch. - - 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) - - NOTE: Year is stored in packed BCD. The most significant - part is in the second octet. For example: - 1995 would be stored as 0x95 0x19. - - 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." - ::= { cpqSiProcMicroPatchEntry 3 } - - cpqSiProcMicroPatchFamily OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (3)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The valid family/model/step of the processor that this CPU - microcode patch applies to. - - field octets contents range - ===== ====== ======= ===== - 1 1 CPU Step 0..255 - 2 2 CPU Model 0..255 - 3 3 CPU Family 0..255 " - ::= { cpqSiProcMicroPatchEntry 4 } - - --- **************************************************************************** --- System Information System Board Group --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) --- --- --- **************************************************************************** - - cpqSiPowerMgmtStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of power management." - ::= { cpqSiSystemBoard 12 } - - - cpqSiRebootFlags OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Reboot Flags. - - This is a collection of flags used to indicate the re-boot - options available. This integer is a bitmap, with each bit - indicating the availability of an option. If the bit is set - to 1, the option is available; otherwise it is not. Multiple - options are allowed. - - NOTE: bit 31 is the most significant bit, bit 0 is the least - significant. - - - Status This is a collection of flags. Each bit has the - following meaning when it is on (1): - - Bit 31: Execute Set - Bit 30-6: RESERVED - Bit 5: Boot to ROM Based Setup - Bit 4: RESERVED - Bit 3: Boot to OS - Bit 2: Boot to Utils - Bit 1: Warm Boot - Bit 0: Cold Boot" - - - - ::= { cpqSiSystemBoard 13 } - - cpqSiMemErrorIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Placeholder for memory module number for ECC traps. - Represents the number of the memory module for which an ECC status - change has occurred. Set to 65535 if module number not available." - ::= { cpqSiSystemBoard 14 } - - cpqSiMemECCCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current condition of the correctable memory - errors for the entire memory. - - The following status values are supported: - - other(1) : - ECC is not supported. - - ok(2) : - The correctable error count is below threshold. - - degraded(3) : - The correctable error count has exceeded threshold." - - ::= { cpqSiSystemBoard 15 } - - cpqSiMemConfigChangeData OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..383)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Text string for the memory configuration change trap." - ::= { cpqSiSystemBoard 16 } - - cpqSiServerSystemId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A Server System ID. - - This value is used to uniquely identify systems via a unique - ID on systems that do not support the EISA bus." - ::= { cpqSiSystemBoard 17 } - - cpqSiPowerScheme OBJECT-TYPE - SYNTAX INTEGER { - unsupported(1), - other(2), - power-saver(3), - balanced(4), - high-performance(5), - user-defined(6) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The current active power plan or power scheme of the system." - ::= { cpqSiSystemBoard 18 } - - cpqSiPowerSchemeName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The name of current active power plan or power scheme of the - system. When cpqSiPowerScheme has a value of user-defined(6), the - user defined name can be populated here." - ::= { cpqSiSystemBoard 19 } - - cpqSiCurrentPerformanceStatePointer OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "Pointer to cpqSiPerfStateIndex in cpqSiPerfStateTable to indicate the current performance state of the system." - ::= { cpqSiSystemBoard 20 } - - cpqSiMinPerformanceState OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "The slowest performance state by the selected power state policy." - ::= { cpqSiSystemBoard 21 } - - cpqSiMaxPerformanceState OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "The fastest performance state supported by the selected power state policy." - ::= { cpqSiSystemBoard 22 } - --- **************************************************************************** --- Performance State Table --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) --- cpqSiPerfStateTable (1.3.6.1.4.1.232.2.2.4.23) --- cpqSiPerfStateEntry (1.3.6.1.4.1.232.2.2.4.23.1) --- --- **************************************************************************** - - cpqSiPerfStateTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiPerfStateEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A table of supported performance states of the system." - ::= { cpqSiSystemBoard 23 } - - cpqSiPerfStateEntry OBJECT-TYPE - SYNTAX CpqSiPerfStateEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "An entry describing a supported performance state of the system." - INDEX { cpqSiPerfStateIndex } - ::= { cpqSiPerfStateTable 1 } - - CpqSiPerfStateEntry ::= SEQUENCE { - cpqSiPerfStateIndex INTEGER, - cpqSiPerfState INTEGER, - cpqSiPerfStateCpuFrequency INTEGER, - cpqSiPerfStateCpuPower INTEGER - } - - cpqSiPerfStateIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "Index into the performance state table. cpqSiCurrentPerformanceStatePointer should point to one of these values." - ::= { cpqSiPerfStateEntry 1 } - - cpqSiPerfState OBJECT-TYPE - SYNTAX INTEGER (0.. 65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "Performance state number. A unique number assigned to a performance state instance." - ::= { cpqSiPerfStateEntry 2 } - - cpqSiPerfStateCpuFrequency OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS optional - DESCRIPTION - "The processor frequency in megahertz for this performance state instance." - ::= { cpqSiPerfStateEntry 3 } - - cpqSiPerfStateCpuPower OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS optional - DESCRIPTION - "The processor power setting in milliwatts for this performance state instance." - ::= { cpqSiPerfStateEntry 4 } - - cpqSiTPMmodule OBJECT-TYPE - SYNTAX INTEGER { - other(1), - absent(2), - presentEnabled (3), - presentDisabled (4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This field will be populated if TPM module is present in the system board. - other(1) - No record of TPM exist. - absent(2) - TPM module is not present in the system. - presentEnabled(3) - TPM module is present in the system and currently enabled. - presentDisabled(4) - TPM module is present in the system and currently not enabled." - ::= { cpqSiSystemBoard 24 } - - cpqSiTrustedModuleType OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS optional - DESCRIPTION - "Bits[3:0] = Trusted Module Type: - 1h = Not Specified - 2h = TPM 1.2 - 3h = TPM 2.0 - 4h = TM 1.0 - 5h - 0Fh = Reserved." - - ::= { cpqSiSystemBoard 25 } - - cpqSiSystemTelemetryMetric OBJECT-TYPE - SYNTAX INTEGER { - cpuUtilization(1), - memoryBusUtilization(2), - ioBusUtilization(3), - cpuInterconnectUtilization(4), - jitterCount(5), - cpu0PowerUtilization(6), - cpu1PowerUtilization(7), - cpu2PowerUtilization(8), - cpu3PowerUtilization(9), - cpu0AverageFrequency(10), - cpu1AverageFrequency(11), - cpu2AverageFrequency(12), - cpu3AverageFrequency(13) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This field specifies the system telemetry metric type. - CPU Utilization(1) - Overall CPU utilization of the system. - Memory Bus Utilization(2) - Memory Bus utilization of the system. - I/O Bus Utilization(3) - I/O Bus utilization of the system. - CPU Interconnect Utilization(4) - CPU Interconnect utilization of the system. - Jitter Count(5) - Jitter count of the system. - CPU0 Power Utilization(6) - CPU0 Power utilization of the system. - CPU1 Power Utilization(7) - CPU1 Power utilization of the system. - CPU2 Power Utilization(8) - CPU2 Power utilization of the system. - CPU3 Power Utilization(9) - CPU3 Power utilization of the system. - CPU0 Average Frequency(10) - CPU0 Average frequency of the system. - CPU1 Average Frequency(11) - CPU1 Average frequency of the system. - CPU2 Average Frequency(12) - CPU2 Average frequency of the system. - CPU3 Average Frequency(13) - CPU3 Average frequency of the system." - - ::= { cpqSiSystemBoard 26 } - - cpqSiSystemTelemetryThresholdStatus OBJECT-TYPE - SYNTAX INTEGER { - aboveUpperThreshold(1), - belowLowerThreshold(2) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This field corresponds to the threshold(upper/lower) breach condition of the metric. - Above Upper Threshold(1) - The value has exceeded upper threshold. - Below Lower Threshold(2) - The value is below lower threshold." - - ::= { cpqSiSystemBoard 27 } - --- **************************************************************************** --- System Information Board Revision Group --- ======================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) --- --- The cpqSiBoardRev group describes the board revision information. --- --- Implementation of the cpqSiBoardRev group is mandatory for all --- agents that support the System Information MIB in a system that --- supports the board revision feature. --- --- **************************************************************************** - - cpqSiCurRevDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current board revision configuration date in MM/DD/YY - format. This is the date that the EISA Configuration Utility - was used to define the current configuration. This value will - contain `N/A` if this system does not support this feature." - ::= { cpqSiBoardRev 1 } - - cpqSiPrevRevDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The previous board revision configuration date in MM/DD/YY - format. This is the date that the EISA Configuration Utility - was used to define the previous configuration. This value will - contain `N/A` if this system does not support this feature." - ::= { cpqSiBoardRev 2 } - --- **************************************************************************** --- System Information Board Revision Table --- ======================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) --- cpqSiBoardRevTable (1.3.6.1.4.1.232.2.2.5.3) --- --- **************************************************************************** - - cpqSiBoardRevTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiBoardRevEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of board revision descriptions." - ::= { cpqSiBoardRev 3 } - - cpqSiBoardRevEntry OBJECT-TYPE - SYNTAX CpqSiBoardRevEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A board revision description." - INDEX { cpqSiBoardRevSlotIndex, cpqSiBoardRevIndex } - ::= { cpqSiBoardRevTable 1 } - - CpqSiBoardRevEntry ::= SEQUENCE { - cpqSiBoardRevSlotIndex INTEGER, - cpqSiBoardRevIndex INTEGER, - cpqSiBoardRevId DisplayString, - cpqSiBoardRevCur DisplayString, - cpqSiBoardRevPrev DisplayString, - cpqSiBoardRevHwLocation DisplayString - } - - cpqSiBoardRevSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot in which the board described in this entry resides. - Zero (0) indicates the system board." - ::= { cpqSiBoardRevEntry 1 } - - cpqSiBoardRevIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely specifies which board in a specific slot - is described in this entry. Zero (0) indicates the main board - in this slot. Any other number indicates a daughter board or a - component of the main board." - ::= { cpqSiBoardRevEntry 2 } - - cpqSiBoardRevId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of the board type. The defined types are: - - Type - ============== - System Board - Processor n (n = the processor number) - Memory n (n = the memory board number) - Slot n (n = the slot the board occupies) - - Other types may be defined at a later date." - ::= { cpqSiBoardRevEntry 3 } - - cpqSiBoardRevCur OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current revision for the board described in this entry. - This value will be N/A if there is no current revision - information." - ::= { cpqSiBoardRevEntry 4 } - - cpqSiBoardRevPrev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision for the board described in this entry prior to the - current configuration. This value will be N/A if there is no - previous revision information." - ::= { cpqSiBoardRevEntry 5 } - - cpqSiBoardRevHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the board. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSiBoardRevEntry 6 } - --- **************************************************************************** --- System Information Firmware Revision Table --- ========================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) --- cpqSiFirmwareRevTable (1.3.6.1.4.1.232.2.2.5.4) --- --- **************************************************************************** - - cpqSiFirmwareRevTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiFirmwareRevEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of firmware revision descriptions." - ::= { cpqSiBoardRev 4 } - - cpqSiFirmwareRevEntry OBJECT-TYPE - SYNTAX CpqSiFirmwareRevEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A firmware revision description." - INDEX { cpqSiFirmwareRevIndex } - ::= { cpqSiFirmwareRevTable 1 } - - CpqSiFirmwareRevEntry ::= SEQUENCE { - cpqSiFirmwareRevIndex INTEGER, - cpqSiFirmwareRevDesc DisplayString, - cpqSiFirmwareRevString DisplayString, - cpqSiFirmwareRevCellTablePtr INTEGER, - cpqSiFirmwareLocation DisplayString, - cpqSiFirmwareStatus INTEGER - } - - cpqSiFirmwareRevIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Locally-unique index for this entry." - ::= { cpqSiFirmwareRevEntry 1 } - - cpqSiFirmwareRevDesc OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description, e.g. SRM console, ARC console, System BIOS, etc." - ::= { cpqSiFirmwareRevEntry 2 } - - cpqSiFirmwareRevString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Version number, possibly of the form Vx.y or Vx.y-z." - ::= { cpqSiFirmwareRevEntry 3 } - - cpqSiFirmwareRevCellTablePtr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "Index for the cell in cpqSeCellTable where this firmware is located" - ::= { cpqSiFirmwareRevEntry 4 } - - cpqSiFirmwareLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "Description of which board the firmware is located in." - ::= { cpqSiFirmwareRevEntry 5 } - - cpqSiFirmwareStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - active(2), - inactive(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The current status for this firmware." - ::= { cpqSiFirmwareRevEntry 6 } - --- **************************************************************************** --- System Information Firmware Configuration Table --- =============================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) --- cpqSiFirmwareCfgTable (1.3.6.1.4.1.232.2.2.5.5) --- --- **************************************************************************** - - cpqSiFirmwareCfgTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiFirmwareCfgEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of soft switches and symbols maintained by the - firmware. May be operating system and/or option-specific - and will certainly be system-specific. This list is - intended to be easily extensible and support arbitrary - datatypes. It includes such switches as powerup options, - default dump device, etc. - Note - the string comparison for svrFwSymbolName is case - insensitive." - ::= { cpqSiBoardRev 5 } - - cpqSiFirmwareCfgEntry OBJECT-TYPE - SYNTAX CpqSiFirmwareCfgEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Each entry represents one variable or symbol maintained by - or stored by some instance of firmware in the system." - INDEX { cpqSiFirmwareCfgName } - ::= { cpqSiFirmwareCfgTable 1 } - - CpqSiFirmwareCfgEntry ::= SEQUENCE { - cpqSiFirmwareCfgName DisplayString, - cpqSiFirmwareCfgValue DisplayString - } - - cpqSiFirmwareCfgName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware configuration symbol name as visible from the - console." - ::= { cpqSiFirmwareCfgEntry 1 } - - cpqSiFirmwareCfgValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware configuration symbol value. Null if none - or unknown." - ::= { cpqSiFirmwareCfgEntry 2 } - - --- **************************************************************************** --- System Information Ups Shutdown Group --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiRackServer Group (1.3.6.1.4.1.232.2.2.6) --- --- The cpqSiRackServer group describes this system's role in a rack --- family. --- --- Implementation of the cpqSiRackServer group is mandatory for all --- agents that support the System Information MIB in a system that --- supports Rack Server features. --- --- **************************************************************************** - - cpqSiRackServerShutdownRole OBJECT-TYPE - SYNTAX INTEGER { - other(1), - master(2), - slave(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This entry describes this system`s role in a rack-mounted - uninterruptible power supply family. The master both - communicates with the UPS and derives its power from the - UPS. The slave derives its power from the UPS, but does - not communicate with it." - ::= { cpqSiRackServer 1 } - - cpqSiRackServerMasterName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..48)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This entry describes the name of the master server in a - rack-mounted uninterruptible power supply family. A slave - system would communicate with this server to derive UPS - status." - ::= { cpqSiRackServer 2 } - - --- **************************************************************************** --- System Information Video Group --- ============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiVideo Group (1.3.6.1.4.1.232.2.2.7) --- --- The Video group describes the manageable video displays that are --- attached to the system. --- --- Implementation of the video group is mandatory for all agents that --- support the System Information MIB when a manageable video display --- is in the system. --- --- **************************************************************************** - - cpqSiVideoEdidRaw OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (128)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The raw value returned from the video EDID function." - ::= { cpqSiVideo 1 } - - cpqSiVideoDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The manufacturer and model description of the video display." - ::= { cpqSiVideo 2 } - - cpqSiVideoSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The serial number of the video display." - ::= { cpqSiVideo 3 } - - cpqSiVideoManufactureDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The date of manufacture of the video display in the following - format: - - 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 date. The date information that is given resolves to a year - and week, so the hour, minute, and second field will be set to 0, - the month and day fields will give the monday of the week of - manufacture." - ::= { cpqSiVideo 4 } - - cpqSiVideoHeight OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The maximum image height of the video display in centimeters" - ::= { cpqSiVideo 5 } - - cpqSiVideoWidth OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The maximum image width of the video display in centimeters" - ::= { cpqSiVideo 6 } - - - cpqSiVideoMaxHorPixel OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of horizontal pixels in the highest resolution video - mode supported." - ::= { cpqSiVideo 7 } - - - cpqSiVideoMaxVertPixel OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of vertical pixels in the highest resolution video - mode supported." - ::= { cpqSiVideo 8 } - - - cpqSiVideoMaxRefreshRate OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The video refresh rate in Hz of the highest resolution video - mode supported." - ::= { cpqSiVideo 9 } - --- **************************************************************************** --- System Information Monitor Group --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiMonitor Group (1.3.6.1.4.1.232.2.2.8) --- --- The Monitor group describes all manageable video displays --- that are attached to the system. --- --- Implementation of the monitor group is mandatory for all agents that --- support the Compaq System Information MIB when a manageable --- video display is in the system. --- --- **************************************************************************** - - cpqSiMonitorOverallCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the system`s - monitor(s). - - The following conditions are supported: - - other(1) - The monitor does not support fault reporting or condition is - unknown. - - ok(2) - The monitor is operating OK. - - degraded(3) - The monitor has detected a fault. The monitor is still useable - but action should be taken to return the monitor to ok. - - failed(4) - The monitor has detected a fault. The monitor will not - be useable. Action should be taken to replace the monitor." - ::= { cpqSiMonitor 1 } - - --- **************************************************************************** --- System Information Monitor Group --- ================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiMonitor Group (1.3.6.1.4.1.232.2.2.8) --- cpqSiMonitorTable (1.3.6.1.4.1.232.2.2.8.2) --- cpqSiMonitorEntry (1.3.6.1.4.1.232.2.2.8.2.1) --- --- The Monitor Table describes all manageable video displays --- that are attached to the system. --- --- **************************************************************************** - - cpqSiMonitorTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiMonitorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of all video monitor descriptions connected to this - system." - ::= { cpqSiMonitor 2 } - - cpqSiMonitorEntry OBJECT-TYPE - SYNTAX CpqSiMonitorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A video monitor description." - INDEX { cpqSiMonitorIndex } - ::= { cpqSiMonitorTable 1 } - - CpqSiMonitorEntry ::= SEQUENCE { - cpqSiMonitorIndex INTEGER, - cpqSiMonitorEdidRaw OCTET STRING, - cpqSiMonitorDesc DisplayString, - cpqSiMonitorSerialNumber DisplayString, - cpqSiMonitorManufactureDate OCTET STRING, - cpqSiMonitorHeight INTEGER, - cpqSiMonitorWidth INTEGER, - cpqSiMonitorMaxHorPixel INTEGER, - cpqSiMonitorMaxVertPixel INTEGER, - cpqSiMonitorMaxRefreshRate INTEGER, - cpqSiMonitorManufacturer DisplayString, - cpqSiMonitorThermalCondition INTEGER, - cpqSiMonitorOperationalCondition INTEGER, - cpqSiMonitorStatus INTEGER - } - - cpqSiMonitorIndex OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique index for each video display connected to the system." - - ::= { cpqSiMonitorEntry 1 } - - cpqSiMonitorEdidRaw OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (128)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The raw value returned from the video EDID function." - ::= { cpqSiMonitorEntry 2 } - - cpqSiMonitorDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacturer and model description of the video display." - ::= { cpqSiMonitorEntry 3 } - - cpqSiMonitorSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the video display." - ::= { cpqSiMonitorEntry 4 } - - cpqSiMonitorManufactureDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of manufacture of the video display in the following - format: - - 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 date. The date information that is given resolves to a year - and week, so the hour, minute, and second field will be set to 0, - the month and day fields will give the monday of the week of - manufacture." - ::= { cpqSiMonitorEntry 5 } - - cpqSiMonitorHeight OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum image height of the video display in centimeters" - ::= { cpqSiMonitorEntry 6} - - cpqSiMonitorWidth OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum image width of the video display in centimeters" - ::= { cpqSiMonitorEntry 7 } - - - cpqSiMonitorMaxHorPixel OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of horizontal pixels in the highest resolution video - mode supported." - ::= { cpqSiMonitorEntry 8 } - - cpqSiMonitorMaxVertPixel OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of vertical pixels in the highest resolution video mode - supported." - ::= { cpqSiMonitorEntry 9 } - - cpqSiMonitorMaxRefreshRate OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The video refresh rate in Hz of the highest resolution video mode - supported." - ::= { cpqSiMonitorEntry 10 } - - cpqSiMonitorManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacturer of the video display." - ::= { cpqSiMonitorEntry 11 } - - cpqSiMonitorThermalCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the condition of the monitor`s internal temperature. - - This value will be one of the following: - - other(1) - Monitor thermal fault reporting is not supported by this monitor - or the Insight Agent does not recognize the status. You may - need to upgrade your software. - - ok(2) - The internal temperature is within normal limits. - - degraded(3) - The internal temperature is outside normal operating range." - ::= { cpqSiMonitorEntry 12 } - - cpqSiMonitorOperationalCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the condition of the monitor`s operational features. - - This condition value will be one of the following: - - other(1) - Monitor operational fault reporting is not supported by this - monitor or the Insight Agent does not recognize the status. - You may need to upgrade your software. - - ok(2) - The monitor is operating within normal limits. - - degraded(3) - The monitor is not functioning within normal operating limits. - At least one of the operational features has become degraded. - - failed(4) - The monitor is not functioning within normal operating limits. - At least one of the operational features has failed causing the - monitor to not be usable. The monitor should be replaced." - ::= { cpqSiMonitorEntry 13 } - - cpqSiMonitorStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - ok(3), - thermalDegraded(4), - operationalFailure(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the status of the monitor`s fault reporting features. - - This status value will be one of the following: - - other(1) - Monitor fault reporting is not supported by this monitor or the - Insight Agent does not recognize the status. You may need to - upgrade your software. - - unknown(2) - The monitor status is unknown because the monitor is - either in power saving mode or it has been turned off. - - ok(3) - The monitor is operating within normal limits. - - thermalDegraded(4) - The monitor`s internal temperature is not functioning within - normal operating limits. - - operationalFailure(5) - The monitor is not functioning within normal operating limits. - At least one of the operational features has failed. - The monitor should be replaced." - - ::= { cpqSiMonitorEntry 14 } - - --- **************************************************************************** --- System Information Hot Plug Slot Group --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiHotPlugSlot Group (1.3.6.1.4.1.232.2.2.9) --- --- The cpqSiHotPlugSlot group describes the System Information Hot Plug --- slot information. --- --- Implementation of the cpqSiHotPlugSlot group is mandatory for all --- agents that support the System Information MIB. --- --- **************************************************************************** - - cpqSiHotPlugSlotSupported OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notSupported(2), - supported(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies if this system supports the Hot - Pluggable Slot feature." - ::= { cpqSiHotPlugSlot 1 } - - cpqSiHotPlugSlotCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the Hot Plug - Slot feature. - - The Hot Plug condition is set as follows: - - other(1) - When Hot Plug Slots are not supported or condition is unknown. - - ok(2) - If there are no hot plug slots with a condition of degraded - or failed. - - degraded(3) - If there are degraded slot entries but none failed. - - failed(4) - If there are failed slot entries." - ::= { cpqSiHotPlugSlot 2 } - - cpqSiHotPlugSlotChangeCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value will be incremented each time a hot plug event - occurs resulting in a change in the hot plug slot table." - ::= { cpqSiHotPlugSlot 3 } - - --- **************************************************************************** --- System Information Hot Plug Slot Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiHotPlugSlot Group (1.3.6.1.4.1.232.2.2.9) --- cpqSiHotPlugSlotTable (1.3.6.1.4.1.232.2.2.9.4) --- --- The cpqSiHotPlugSlot group describes the manageable Hot Plug --- Slots in the system. This table will be missing if the system does --- not support hot plug slots. --- --- **************************************************************************** - - cpqSiHotPlugSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiHotPlugSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Hot Plug Slot information entries." - ::= { cpqSiHotPlugSlot 4 } - - cpqSiHotPlugSlotEntry OBJECT-TYPE - SYNTAX CpqSiHotPlugSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a Hot Plug Slot." - INDEX { cpqSiHotPlugSlotChassis, cpqSiHotPlugSlotIndex } - ::= { cpqSiHotPlugSlotTable 1 } - - CpqSiHotPlugSlotEntry ::= SEQUENCE { - cpqSiHotPlugSlotChassis INTEGER, - cpqSiHotPlugSlotIndex INTEGER, - cpqSiHotPlugSlotBoardPresent INTEGER, - cpqSiHotPlugSlotPowerState INTEGER, - cpqSiHotPlugSlotBoardCondition INTEGER, - cpqSiHotPlugSlotErrorStatus INTEGER, - cpqSiHotPlugSlotHwLocation DisplayString - } - - cpqSiHotPlugSlotChassis OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Chassis where this hot plug slot resides." - ::= { cpqSiHotPlugSlotEntry 1 } - - cpqSiHotPlugSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slot within the chassis for this hot plug slot." - ::= { cpqSiHotPlugSlotEntry 2 } - - cpqSiHotPlugSlotBoardPresent OBJECT-TYPE - SYNTAX INTEGER { - other(1), - present(2), - absent(3), - presentButSuspended(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates whether a board is present(2) in or - absent(3) from the slot. A value of other(1) indicates - the information could not be obtained." - ::= { cpqSiHotPlugSlotEntry 3 } - - cpqSiHotPlugSlotPowerState OBJECT-TYPE - SYNTAX INTEGER { - other(1), - powerOn(2), - powerOff(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value is set to powerOn(2) when power is being supplied - to the slot and powerOff(3) when power is not being supplied. - A value of other(1) indicates the information could not be - obtained." - ::= { cpqSiHotPlugSlotEntry 4 } - - cpqSiHotPlugSlotBoardCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the condition of the hot plug slot. - - The hot plug condition is set as follows: - - other(1) - When the condition could not be determined. - - ok(2) - The slot is powered up and operating normally. - - degraded(3) - If the board in the slot is not fully functioning. - - failed(4) - If the slot is failed for any reason. See the status code - for more information on the failure." - ::= { cpqSiHotPlugSlotEntry 5 } - - cpqSiHotPlugSlotErrorStatus OBJECT-TYPE - SYNTAX INTEGER { - noError(1), - generalError(2), - wrongRevision(3), - wrongBoard(4), - cannotConfig(5), - powerFault(6), - unexpectedPowerLoss(7), - wrongSpeed(8), - functionalFailure(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the status of the hot plug slot. - - The hot plug slot status is set as follows: - - noError(1) - The slot is operating normally. - - generalError(2) - A general error occurred. - - wrongRevision(3) - The revision of the replacement adapter was different from - the original adapter. - - wrongBoard(4) - The model of the replacement adapter was different from the - original adapter. - - cannotConfig(5) - The adapter could not be configured. - - powerFault(6) - A power fault occurred for the slot. - - unexpectedPowerLoss(7) - Power was unexpectedly lost from the slot. - - wrongSpeed(8) - The adapter cannot be run at the current bus speed. - - functionlFailure(9) - The adapter is not functioning correctly. This may - be caused by a cabling problem." - ::= { cpqSiHotPlugSlotEntry 6 } - - cpqSiHotPlugSlotHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the hot plug slot. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSiHotPlugSlotEntry 7 } - --- **************************************************************************** --- System Information System Battery Group --- ======================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBattery Group (1.3.6.1.4.1.232.2.2.10) --- --- The cpqSiSystemBattery group describes information about the system --- (portable) batteries that are used to power your system. These --- are the rechargeable batteries. --- --- --- Implementation of the cpqSiBattery group is mandatory for all --- agents that support the System Information MIB. --- --- **************************************************************************** - - - cpqSiSystemBatteryOverallCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of all of the - system batteries. - - The following conditions are supported: - - other(1) - The system does not use system batteries or the battery - condition is unknown. - - ok(2) - All System Batteries are operating OK. - - degraded(3) - One or more of the System Batteries has degraded. The - degraded battery will continue to function but should be - replaced. - - failed(4) - One of more of the System Batteries has failed. The failed - battery is no longer usable. Action should be taken to replace - the battery." - ::= { cpqSiSystemBattery 1 } - - --- **************************************************************************** --- System Information System Battery Group --- ======================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiSystemBattery Group (1.3.6.1.4.1.232.2.2.10) --- cpqSiSystemBatteryTable (1.3.6.1.4.1.232.2.2.10.2) --- cpqSiSystemBatteryEntry (1.3.6.1.4.1.232.2.2.10.2.1) --- --- The System Battery Table describes asset, physical, and status --- information about the portable batteries powering your system. --- --- **************************************************************************** - - cpqSiSysBatteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiSysBatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of System Batteries." - ::= { cpqSiSystemBattery 2 } - - cpqSiSysBatteryEntry OBJECT-TYPE - SYNTAX CpqSiSysBatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A system battery description." - INDEX { cpqSiSysBatteryIndex } - ::= { cpqSiSysBatteryTable 1 } - - CpqSiSysBatteryEntry ::= SEQUENCE { - cpqSiSysBatteryIndex INTEGER, - cpqSiSysBatteryModel DisplayString, - cpqSiSysBatterySerialNum DisplayString, - cpqSiSysBatteryAssetTag DisplayString, - cpqSiSysBatteryManufacturer DisplayString, - cpqSiSysBatteryDate OCTET STRING, - cpqSiSysBatterySmartVersion DisplayString, - cpqSiSysBatteryCondition INTEGER, - cpqSiSysBatteryStatus INTEGER, - cpqSiSysBatteryChemistry INTEGER, - cpqSiSysBatteryRemainingCap INTEGER, - cpqSiSysBatteryFirmwareRevision INTEGER, - cpqSiSysBatteryHardwareRevision INTEGER, - cpqSiSysBatteryFullCap INTEGER, - cpqSiSysBatteryDesignCap INTEGER, - cpqSiSysBatteryHwLocation DisplayString - } - - cpqSiSysBatteryIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique index for this battery entry." - ::= { cpqSiSysBatteryEntry 1 } - - - cpqSiSysBatteryModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model name for this battery." - ::= { cpqSiSysBatteryEntry 2 } - - cpqSiSysBatterySerialNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number for this battery." - ::= { cpqSiSysBatteryEntry 3 } - - cpqSiSysBatteryAssetTag OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the customer changeable battery identifier that is set - to this system battery`s serial number at the time of - manufacture. - - The string will be empty if the battery does support - this function." - ::= { cpqSiSysBatteryEntry 4 } - - cpqSiSysBatteryManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery`s manufacturer`s name. - - The string will be empty if the battery does support - this function." - ::= { cpqSiSysBatteryEntry 5 } - - - cpqSiSysBatteryDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery`s manufacture 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. - - The string will be empty if the battery does support - this function." - ::= { cpqSiSysBatteryEntry 6 } - - cpqSiSysBatterySmartVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Smart Battery Data Specification version number supported by this - battery. - - The string will be empty if the system battery does support - this function." - ::= { cpqSiSysBatteryEntry 7 } - - cpqSiSysBatteryCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current condition of this system battery. - - The following status values are supported: - - other(1) - The battery does not support condition monitoring or - the Insight Agent cannot determine condition. - - ok(2) - The battery is operating normally. No user action is - required. - - degraded(3) - The battery is degraded. The battery is still usable - but should be replaced. - - failed(4) - The battery has failed. The battery is no longer - usable and should be replaced soon." - ::= { cpqSiSysBatteryEntry 8 } - - cpqSiSysBatteryStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - capacityDegraded(3), - chargeFault(4), - batteryFailure(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This provides the current status of the battery. - - The following status values are supported: - - other(1): - This battery does not support status reporting. - - ok(2): - The battery is operating ok. - - User Action: No action required. - - capacityDegraded(3): - Significant battery degradation has occurred. - The battery can no longer be fully recharged. - - User Action: - If using multiple batteries, run the Power - Conservation Utility to identify the battery - location. Contact your System Administrator or - Authorized Reseller to order a replacement - battery. - - chargeFault(4): - One or more batteries are not functioning properly. - - User Action: - Make sure all batteries are operating in the - recommended temperature range. Check for foreign - objects in the battery slots. Remove and reinsert all - batteries to resume normal battery operation. - Contact your System Administrator or Authorized - Reseller if you are still experiencing problems. - - batteryFailure(5): - The battery has failed and must be replaced. - - User Action: - Contact your System Administrator or Authorized - Reseller to order a replacement battery. Recycle your - old battery. For proper disposal information, refer - to the documentation that came with your computer." - - ::= { cpqSiSysBatteryEntry 9 } - - cpqSiSysBatteryChemistry OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - lead-Acid(3), - nickel-Cadmium(4), - nickel-Metal-Hydride(5), - lithium-Ion(6), - zinc-Air(7), - lithium-Polymer(8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The chemistry of the battery." - - ::= { cpqSiSysBatteryEntry 10 } - - cpqSiSysBatteryRemainingCap OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a percentage of the battery`s remaining capacity - from its design capacity. - - If this attribute is not supported, 65535 is returned." - ::= { cpqSiSysBatteryEntry 11 } - - cpqSiSysBatteryFirmwareRevision OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the revision level of the firmware on the battery. - - If this attribute is not supported, 255 is returned." - ::= { cpqSiSysBatteryEntry 12 } - - cpqSiSysBatteryHardwareRevision OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the revision level of the hardware on the battery. - - If this attribute is not supported, 255 is returned." - ::= { cpqSiSysBatteryEntry 13 } - - cpqSiSysBatteryFullCap OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the mWatt-Hours of the battery`s Full capacity on - the current charge. - - If this attribute is not supported, 65535 is returned." - ::= { cpqSiSysBatteryEntry 14 } - - cpqSiSysBatteryDesignCap OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the mWatt-Hours of the battery`s design capacity as - specified by the manufacturer. - - If this attribute is not supported, 65535 is returned." - ::= { cpqSiSysBatteryEntry 15 } - - cpqSiSysBatteryHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the battery. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSiSysBatteryEntry 16 } - - --- **************************************************************************** --- System Information Docking Station Group --- ======================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiDockingStation Group (1.3.6.1.4.1.232.2.2.11) --- --- The cpqsiDockingStation group describes the asset information --- about portable docking stations. --- --- --- Implementation of the cpqSiDockingStation group is mandatory for all --- agents that support the System Information MIB. --- --- **************************************************************************** - - cpqSiDockingStationStatus OBJECT-TYPE - SYNTAX INTEGER { - notSupported(1), - docked(2), - undocked(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the connection of the computer - system to a docking station. - - The following connection states are supported: - - notSupported(1) - This system does not interface to a docking station. - - docked(2) - This system is connected to a docking station. - - undocked(3) - This system is not connect to a docking station." - ::= { cpqSiDockingStation 1} - - cpqSiDockingStationSerialNum OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the docking station. - - The string will be empty if the docking station does not support a - serial or the system does not interface to a docking station." - ::= { cpqSiDockingStation 2 } - - cpqSiDockingStationModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model name of the docking station. - - The string will be empty if the docking station does not report the - model name or the system does not interface to a docking station." - ::= { cpqSiDockingStation 3 } - - cpqSiDockingStationAssetTag OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a customer changeable identifier that is set to the docking - station serial number at the time of manufacture. - - The string will be empty if the docking station does not report an - asset tag or the system does not interface to a docking station." - ::= { cpqSiDockingStation 4} - --- **************************************************************************** --- System Information FRU Group --- ============================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiFru Group (1.3.6.1.4.1.232.2.2.12) --- --- The cpqsiFru group describes the Field Replaceable Units in the --- server system. --- --- --- Implementation of the cpqSiFru group is mandatory for all --- Server Agents that support the System Information MIB. --- --- **************************************************************************** - - cpqSiFruTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiFruEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of Field Replaceable Units of system, providing - inventory and asset control information. This table is - referenced from logical hardware descriptions elsewhere in - the MIB." - ::= { cpqSiFru 1 } - - cpqSiFruEntry OBJECT-TYPE - SYNTAX CpqSiFruEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Each entry represents a Field Replaceable Unit (FRU) of hardware." - INDEX { cpqSiFruIndex } - ::= { cpqSiFruTable 1 } - - CpqSiFruEntry ::= - SEQUENCE { - cpqSiFruIndex INTEGER, - cpqSiFruType INTEGER, - cpqSiFruDescr DisplayString, - cpqSiFruVendor DisplayString, - cpqSiFruPartNumber DisplayString, - cpqSiFruRevision DisplayString, - cpqSiFruFirmwareRevision DisplayString, - cpqSiFruSerialNumber DisplayString, - cpqSiFruAssetNo DisplayString, - cpqSiFruClass INTEGER, - cpqSiFruSlotNumber DisplayString, - cpqSiFruSubAssemblyNumber INTEGER, - cpqSiFruAssemblyNumber INTEGER, - cpqSiFruChassisNumber INTEGER, - cpqSiFruPositionNumber INTEGER, - cpqSiFruCabinetIDNumber INTEGER, - cpqSiFruSiteLocation INTEGER, - cpqSiFruDiagStatus INTEGER, - cpqSiFruExtendedDiagStatus INTEGER, - cpqSiFruCellTablePtr INTEGER, - cpqSiFruIOCTablePtr INTEGER, - cpqSiFruFileId DisplayString, - cpqSiFruScanRev DisplayString - } - - cpqSiFruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A locally-unique index value." - ::= { cpqSiFruEntry 1 } - - cpqSiFruType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1) , - other(2) , - motherBoard(3) , - processor(4) , - memoryCard(5) , - memoryModule(6) , - peripheralDevice(7) , - systemBusBridge(8) , - powerSupply(9) , - chassis(10) , - fan(11) , - ioCard(12) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "General category of the type of FRU that this is." - ::= { cpqSiFruEntry 2 } - - cpqSiFruDescr OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "More detailed description of FRU type, if known." - ::= { cpqSiFruEntry 3 } - - cpqSiFruVendor OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Manufacturer name or ID." - ::= { cpqSiFruEntry 4 } - - cpqSiFruPartNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number by which this unit is orderable." - ::= { cpqSiFruEntry 5 } - - cpqSiFruRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Version number of this unit. If artwork level is available, it will - appear as `Artwork: XXX` following FRU version portion." - ::= { cpqSiFruEntry 6 } - - cpqSiFruFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision of the firmware, if any. Otherwise null." - ::= { cpqSiFruEntry 7 } - - cpqSiFruSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of this unit`s instance." - ::= { cpqSiFruEntry 8 } - - cpqSiFruAssetNo OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The asset number for this unit. This string may be limited." - ::= { cpqSiFruEntry 9 } - - cpqSiFruClass OBJECT-TYPE - SYNTAX INTEGER { - unknown(1) , - other(2) , - currentBoardInSlot(3) , - priorBoardInSlot(4) , - parentBoard(5) , - priorParentBoard(6) , - priorParentSystem(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Represents the status category of the unit." - ::= { cpqSiFruEntry 10 } - - cpqSiFruSlotNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Physical slot number of FRU." - ::= { cpqSiFruEntry 11 } - - cpqSiFruSubAssemblyNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Subassembly containing this FRU. From FRU V5.0." - ::= { cpqSiFruEntry 12 } - - cpqSiFruAssemblyNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Assembly containing this FRU. From FRU V5.0." - ::= { cpqSiFruEntry 13 } - - cpqSiFruChassisNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Chassis containing this FRU. From FRU V5.0." - ::= { cpqSiFruEntry 14 } - - cpqSiFruPositionNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Position in Chassis to help locate FRU. From FRU V5.0." - ::= { cpqSiFruEntry 15 } - - cpqSiFruCabinetIDNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cabinet number containing this FRU. From FRU V5.0." - ::= { cpqSiFruEntry 16 } - - cpqSiFruSiteLocation OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Site code for system containing this FRU. From FRU V5.0." - ::= { cpqSiFruEntry 17 } - - cpqSiFruDiagStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4), - disabled(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Use system status values to describe current state of the - FRU." - ::= { cpqSiFruEntry 18 } - - cpqSiFruExtendedDiagStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Diagnostic Status value returned by Device Specific - diagnostics. Usually through a diagnostic status register - on the device. See product manual for bit descriptions." - ::= { cpqSiFruEntry 19 } - - cpqSiFruCellTablePtr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "Index for the cell in cpqSeCellTable where this FRU is physically located." - ::= { cpqSiFruEntry 20 } - - cpqSiFruIOCTablePtr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "Index for the I/O Chassis in cpqSeIOCTablePtr where this FRU is physically located" - ::= { cpqSiFruEntry 21 } - - cpqSiFruFileId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents the FRU file identifier" - ::= { cpqSiFruEntry 22 } - - cpqSiFruScanRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents FRU scan revision" - ::= { cpqSiFruEntry 23 } - --- **************************************************************************** --- System Information Rack and Enclosure Group --- =========================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiRackEnclosure Group (1.3.6.1.4.1.232.2.2.13) --- --- The cpqSiRackEnclosure group indicates the availability of rack and/or --- enclosure based systems. --- --- **************************************************************************** - - cpqSiRackEnclosureMgrTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSiRackEnclosureMgrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of possible rack and/or enclosure based systems." - ::= { cpqSiRackEnclosure 1 } - - cpqSiRackEnclosureMgrEntry OBJECT-TYPE - SYNTAX CpqSiRackEnclosureMgrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A entry for a rack and/or enclosure based system." - INDEX { cpqSiRackEnclosureMgrIndex } - ::= { cpqSiRackEnclosureMgrTable 1 } - - CpqSiRackEnclosureMgrEntry ::= - SEQUENCE { - cpqSiRackEnclosureMgrIndex INTEGER, - cpqSiRackEnclosureMgrType INTEGER, - cpqSiRackEnclosureMgrIpAddr DisplayString, - cpqSiRackEnclosureMgrWebLink DisplayString, - cpqSiRackEnclosureMgrCondition INTEGER, - cpqSiRackEnclosureMgrSerialNumber DisplayString, - cpqSiRackEnclosureMgrModel DisplayString, - cpqSiRackEnclosureMgrName DisplayString, - cpqSiRackEnclosureMgrFwRev DisplayString, - cpqSiRackEnclosureMgrProductID DisplayString, - cpqSiRackEnclosureMgrUUID DisplayString, - cpqSiRackEnclosureMgrMatrix INTEGER, - cpqSiRackEnclosureMgrMatrixID DisplayString - } - - cpqSiRackEnclosureMgrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A locally-unique index value." - ::= { cpqSiRackEnclosureMgrEntry 1 } - - cpqSiRackEnclosureMgrType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - noEnclosureManagement(2), - enclosureManagement(3), - onboardAdminManagement(4), - multiboardchassis(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the type of enclosure management. - - other(1) - When the type not be determined. - - noEnclosureManagement(2) - The server is part of a rack/enclosure managed system, but there - is no dedicated enclosure manager. - - enclosureManagement(3) - The server is part of a rack/enclosure managed system with a - dedicated enclosure manager. - - onboardAdminManagement(4) - The server is part of a rack/enclosure managed system with a - onboard Administrator. - - multiboardchassis(5) - The server is part of a nultiple board chassis. " - ::= { cpqSiRackEnclosureMgrEntry 2 } - - cpqSiRackEnclosureMgrIpAddr OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP address of the rack enclosure manager. - - The string will be empty if the enclosure does not report the - information or it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 3 } - - cpqSiRackEnclosureMgrWebLink OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The web link to the enclosure managers web based management - information for the enclosure. - - The string will be empty if the enclosure does not report the - information or it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 4 } - - cpqSiRackEnclosureMgrCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall condition of the Enclosure. For more detailed - status information, follow the cpqSiEnclosureMgrWebLink through - the Web Management Agent interface. - - other(1) - This is the default condition for systems when - cpqSiRackEnclosureMgrType has a value of - noEnclosureManagement(2). - - When cpqSiRackEnclosureMgrType has a value of - enclosureManagement(3), this indicates the status of the - enclosure manager could not be determined. - - ok(2) - The enclosure manager is in an ok state. Follow the - cpqSiRackEnclosureMgrWebLink link in the Web Management Agents - to manage the enclosure. - - degraded(3) - The enclosure manager is in a degraded state. Follow the - cpqSiRackEnclosureMgrWebLink link in the Web Management Agents - to manage the enclosure. - - failed(4) - The enclosure manager is in a failed state. Follow the - cpqSiRackEnclosureMgrWebLink link in the Web Management Agents - to manage the enclosure." - ::= { cpqSiRackEnclosureMgrEntry 5 } - - cpqSiRackEnclosureMgrSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the enclosure. - - The string will be empty if the enclosure does not report the - information or it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 6 } - - cpqSiRackEnclosureMgrModel OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The model name of the enclosure. - The string will be empty if it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 7 } - - cpqSiRackEnclosureMgrName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The name of the enclosure. This name logically groups together the - Blade servers installed in the same enclosure and it is shared - with the other servers in the enclosure. - The string will be empty if it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 8 } - - cpqSiRackEnclosureMgrFwRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The Firmware revision of the Enclosure Manager/Onboard Administrator. - The string will be empty if it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 9 } - - cpqSiRackEnclosureMgrProductID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The Enclosure product identifier. The string will be empty - if it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 10 } - - cpqSiRackEnclosureMgrUUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The Enclosure unique identifier. The string will be empty - if it could not be determined." - ::= { cpqSiRackEnclosureMgrEntry 11 } - - cpqSiRackEnclosureMgrMatrix OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " Value 0 not configured in a BladeSystem Matrix environment. - 1 configured in a BladeSystem Matrix environment." - ::= { cpqSiRackEnclosureMgrEntry 12 } - - cpqSiRackEnclosureMgrMatrixID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - " Value BladeSystem Matrix vX.Y.Z Where - X major version. - Y minor version. - Z update version. - Is only valid if cpqSiRackEnclosureMgrMatrix value is a 1. - By default is NULL" - ::= { cpqSiRackEnclosureMgrEntry 13 } - --- **************************************************************************** --- System Information Server Blade Group --- =========================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiServerBlade Group (1.3.6.1.4.1.232.2.2.14) --- --- The cpqsiServerBlade group describes the server Blade system. --- --- **************************************************************************** - - cpqSiServerBladeEnclosureBayNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This value specifies the enclosure bay number occupied by the blade. - In case of a blade occupying multiple bays, this will be the lowest - enclosure bay number of all the bay numbers occupied by this balde" - ::= { cpqSiServerBlade 1 } - - cpqSiServerBladeHeight OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - halfHeightBlade(2), - fullHeightBlade(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "Blade height is the Blade length. - - unknown(1) - This indicates it could not be determined. - - halfHeightBlade(2) - This indicates a half-height server Blade. - - fullHeightBlade(3) - This indicates a full-height server Blade." - - ::= { cpqSiServerBlade 2 } - - cpqSiServerBladeWidth OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - singleWide(2), - doubleWide(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "Width of the Blade in terms of Enclosure Bays. This pertain to the - Blade side that connects to the enclosure backplane." - ::= { cpqSiServerBlade 3 } - --- **************************************************************************** --- System Information Rack Group --- =========================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiRack Group (1.3.6.1.4.1.232.2.2.15) --- --- The cpqSiRack group describes the rack details. --- --- **************************************************************************** - - cpqSiRackName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The rack name. This name is used to logically group together - enclosures in a rack and it is shared with other enclosures - in the rack. - The string will be empty if it could not be determined." - ::= { cpqSiRack 1 } - - cpqSiRackUUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The rack unique identifier. The string will be empty - if it could be determined." - ::= { cpqSiRack 2 } - --- **************************************************************************** --- System Information MP Group --- ============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqSystemInfo Group (1.3.6.1.4.1.232.2) --- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) --- cpqSiMP Group (1.3.6.1.4.1.232.2.2.16) --- --- The cpqSiMP group contains information about the Management Processor. --- --- **************************************************************************** - - cpqSiMPHostName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The host name of the Management Processor. - The string will be empty if it could not be determined." - ::= { cpqSiMP 1 } - - cpqSiMPHealthStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The health status of the Management Processor." - ::= { cpqSiMP 2 } - - --- **************************************************************************** - --- System Info MIB Trap Definitions --- ================================ --- --- The SNMP trap messages must not be bigger than 484 octets (bytes). --- --- Trap support in an SNMP agent implementation is optional. An SNMP --- agent implementation may support all, some, or none of the traps. --- If traps are supported, The user should be provided with the option of --- disabling traps. --- ************************************************************************** - - cpqSiHoodRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "System hood is removed. - The hood status has been detected as removed. The - system`s hood is not in a properly installed state. This - situation may result in improper cooling of the system due - to air flow changes caused by the missing hood." - --#TYPE "System hood is removed (2001)" - --#SUMMARY "Hood is removed from unit." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - --#ACTION "Ensure that the server chassis hood is intentionally missing and the server is secure. Replace the cover, ensuring it is properly installed. Verify the system is in working order." - - ::= 2001 - - cpqSiMonitorConditionOK TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiMonitorIndex } - DESCRIPTION - "Fault reporting features have returned to within their normal - operating range for the monitor indicated by cpqSiMonitorIndex. - The monitor`s condition has been set to OK. - - User Action: None." - - --#TYPE "Monitor Condition OK (2002)" - --#SUMMARY "The monitor's condition has been set to OK." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - ::= 2002 - - - cpqSiMonitorConditionDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiMonitorIndex } - DESCRIPTION - "A fault reporting feature has exceeded normal limits for - the monitor indicated by the cpqSiMonitorIndex. The monitor`s - condition is degraded due to the internal temperature exceeding - normal operating limits. The monitor is still useable, but - action should be taken to return the condition to OK. - - User Action: Physically check for obstructions to air flow around - the monitor. Check the thermostat in the room that the system - occupies. Allow the monitor to cool by turning off the monitor - for 5 minutes then turn the monitor back on. After the monitor - cools, another alarm indicating an improving condition, such as - Monitor OK, will be issued." - - --#TYPE "Monitor Condition Degraded (2003)" - --#SUMMARY "The monitor's condition has been set to degraded." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - - ::= 2003 - - cpqSiMonitorConditionFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiMonitorIndex } - DESCRIPTION - "A fault reporting feature has exceeded normal limits in the - monitor indicated by the cpqSiMonitorIndex. The monitor`s - condition has been set to failed due to an operational feature - exceeding normal operating limits. The monitor will not be - useable and should be replaced. - - User Action: Make a note of the monitor model number and serial - number. Replace the monitor. - - Refer to the appropriate Maintenance and Service Guide for - detailed information on a component replacement." - - --#TYPE "Monitor Condition Failed (2004)" - --#SUMMARY "The monitor's condition has been set to failed." - --#ARGUMENTS {} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY NONE - --#ACTION "Replace the failed monitor." - - ::= 2004 - - cpqSiCorrMemErrStatusDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiMemErrorIndex } - DESCRIPTION - "Correctable memory error count has exceeded the threshold for the - memory module indicated by the `cpqSiMemErrorIndex` variable. - The appropriate cpqSiMemModuleECCStatus has been set to degraded. - - User Action: For Desktops, the System Administrator should run - the F10 Diagnostics on this system and select RAM LONG TEST. If - it is determined that a module needs replacing, schedule - maintenance for the system and replace the failed memory module. - - Refer to the appropriate Maintenance and Service Guide for detailed - information on a component replacement." - - --#TYPE "Excessive Correctable Memory Errors (2005)" - --#SUMMARY "The memory module %d ECC status has been set to degraded." - --#ARGUMENTS {3} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY MEMORY - --#ACTION "Schedule maintenance for the system and replace the failing memory module." - - ::= 2005 - - cpqSiCorrMemErrStatusOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiMemErrorIndex } - DESCRIPTION - "Correctable memory error count is now below the threshold for the - memory module indicated by the `cpqSiMemErrorIndex` variable. The - appropriate cpqSiMemModuleECCStatus has been set to ok. - - User Action: None." - - --#TYPE "Correctable Memory Errors Count OK (2006)" - --#SUMMARY "The memory module %d ECC status has been set to ok." - --#ARGUMENTS {3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MEMORY - - ::= 2006 - - cpqSiMemConfigChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiMemConfigChangeData } - DESCRIPTION - "A memory configuration change has occurred. CpqSiMemConfigChangeData - will indicate which memory modules slots have changed. - - User Action: You may want to verify a valid reason for a memory - configuration to have occurred. If system issuing the alert is - a Desktop running NT, the memory configuration change information - is also logged in the NT System Log." - - --#TYPE "Memory modules have changed (2007)" - --#SUMMARY "The system's memory configuration has changed." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY MEMORY - ::= 2007 - - cpqSiHotPlugSlotBoardRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiHotPlugSlotChassis, - cpqSiHotPlugSlotIndex } - DESCRIPTION - "Hot Plug Slot Board Removed. - - A Hot Plug Slot Board has been removed from the specified - chassis and slot. - - User Action: None." - - --#TYPE "Hot Plug Slot Board Removed (2008)" - --#SUMMARY "Hot plug slot board removed from chassis %d, slot %d." - --#ARGUMENTS {2, 3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - --#LIFECYCLE - - ::= 2008 - - cpqSiHotPlugSlotBoardInserted TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiHotPlugSlotChassis, - cpqSiHotPlugSlotIndex } - DESCRIPTION - "Hot Plug Slot Board Inserted. - - A Hot Plug Slot Board has been inserted into the specified - chassis and slot. - - User Action: None." - - --#TYPE "Hot Plug Slot Board Inserted (2009)" - --#SUMMARY "Hot plug slot board inserted into chassis %d, slot %d." - --#ARGUMENTS {2, 3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - --#LIFECYCLE - - ::= 2009 - - cpqSiHotPlugSlotPowerUpFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiHotPlugSlotChassis, - cpqSiHotPlugSlotIndex, cpqSiHotPlugSlotErrorStatus } - DESCRIPTION - "Hot Plug Slot Board Failed Power-Up. - - A Hot Plug Slot Board has failed to power-up in the specified - chassis and slot. - - User Action: Insure the board and all cables are installed - correctly and the board type and revision are the same as - the replaced board." - - --#TYPE "Hot Plug Slot Board Failed (2010)" - --#SUMMARY "Hot plug slot board failed in chassis %d, slot %d, error %d." - --#ARGUMENTS {2, 3, 4} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE FAILED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY NONE - --#ACTION "Ensure the board and all cables are installed correctly and that the board type and revision are the same as the replaced board." - - ::= 2010 - - cpqSiSysBatteryFailure TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiSysBatteryIndex, - cpqSiSysBatterySerialNum } - DESCRIPTION - "The battery indicated by cpqSiSysBatteryIndex has failed - and must be replaced. - - User Action: Contact your System Administrator or - Authorized Reseller to order a replacement battery. - Recycle your old battery. For proper disposal information, - refer to the documentation that came with your computer." - - --#TYPE "Battery Failure (2011)" - --#SUMMARY "Battery %d has failed." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - --#ACTION "Replace the failed battery." - - ::= 2011 - - cpqSiSysBatteryChargingDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiSysBatteryIndex, - cpqSiSysBatterySerialNum } - DESCRIPTION - "Significant battery degradation has occurred with battery - indicated by cpqSiSysBatteryIndex. The battery can - no longer be fully recharged. - - User Action: If using multiple batteries, run - the Power Conservation Utility to identify the - battery location. Contact your System Administrator - or Authorized Reseller to order a replacement - battery." - - --#TYPE "Battery Charging Degradation (2012)" - --#SUMMARY "Battery %d has degraded charging capacity." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - --#ACTION "Replace the failing battery." - ::= 2012 - - - cpqSiSysBatteryCalibrationError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiSysBatteryIndex, - cpqSiSysBatterySerialNum } - DESCRIPTION - "Calibration is needed with battery - indicated by cpqSiSysBatteryIndex. The battery can - not correctly indicate capacity. - - User Action: Run the Power Conservation Utility. Contact - your System Administrator or Authorized Reseller to - order a replacement battery." - - --#TYPE "Battery Calibration Error (2013)" - --#SUMMARY "Battery %d has calibration error." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - --#ACTION "Replace the failing battery." - ::= 2013 - - - - cpqSiIntrusionInstalled TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "System intrusion alert hardware is installed." - - --#TYPE "System intrusion hardware installed (2014)" - --#SUMMARY "System intrusion hardware installed." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - ::= 2014 - - - cpqSiIntrusionRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "System intrusion alert hardware is removed." - - --#TYPE "System intrusion hardware removed (2015)" - --#SUMMARY "System intrusion hardware removed." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - --#ACTION " There is no action required if the removal of the hardware is expected. If the hardware has not intentionally been removed, please verify cable connection." - ::= 2015 - - cpqSiHoodReplaced TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "System hood has been replaced." - - --#TYPE "System hood is replaced (2016)" - --#SUMMARY "Hood is replaced." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - --#ACTION " Ensure that the server chassis hood is intentionally replaced, and the server is secure." - - ::= 2016 - - cpqSiHoodRemovedOnPowerOff TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags } - DESCRIPTION - "BIOS detected a system hood removal when server power was off." - --#TYPE "System hood has been removed when power was off (2017)" - --#SUMMARY "Hood is removed from the unit when server power was off." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY NONE - --#ACTION "Ensure that the server chassis hood was intentionally removed and that the server is secure." - - ::= 2017 - - cpqSiSysTelemetryThresholdAlert TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSiSystemTelemetryMetric, cpqSiSystemTelemetryThresholdStatus} - DESCRIPTION - "The system telemetry metric value has either exceeded upper threshold or is below lower threshold." - --#TYPE "System telemetry threshold alert(2018)" - --#SUMMARY "System telemetry metric %d is %d." - --#ARGUMENTS {2,3} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY INFORMATIONAL - --#HWSTATUS_CATEGORY NONE - --#ACTION "Please check the current configured server workload." - - ::= 2018 - -END diff --git a/mibs/orig/CPQSTDEQ-MIB b/mibs/orig/CPQSTDEQ-MIB deleted file mode 100644 index 37b876d..0000000 --- a/mibs/orig/CPQSTDEQ-MIB +++ /dev/null @@ -1,5926 +0,0 @@ --- **************************************************************************** --- --- Standard PC equipment configuration --- Management Information Base for SNMP Network Management --- --- --- (C) Copyright 1992-2018 Hewlett Packard Enterprise Development L.P. --- --- Hewlett Packard Enterprise Development LP shall not be liable for technical or --- editorial errors or omissions contained herein. The information in --- this document is provided "as is" without warranty of any kind and --- is subject to change without notice. The warranties for HPE products --- are set forth in the express limited warranty statements --- accompanying such products. Nothing herein should be construed as --- constituting an additional warranty. --- --- Confidential computer software. Valid license from HPE required for --- possession, use or copying. Consistent with FAR 12.211 and 12.212, --- Commercial Computer Software, Computer Software Documentation, and --- Technical Data for Commercial Items are licensed to the U.S. --- Government under vendor's standard commercial license. --- --- Refer to the READMIB.RDM file for more information about the --- organization of the information in the Compaq Enterprise. --- --- The Compaq Enterprise number is 232. --- The ASN.1 prefix to, and including the Compaq Enterprise is: --- 1.3.6.1.4.1.232 --- --- **************************************************************************** - -CPQSTDEQ-MIB DEFINITIONS ::= BEGIN - - IMPORTS - compaq FROM CPQHOST-MIB - Counter FROM RFC1155-SMI - Gauge FROM RFC1155-SMI --- Gauge32 FROM SNMPv2-SMI --- enterprises FROM RFC1155-SMI - DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212 - TRAP-TYPE FROM RFC-1215 - sysName FROM RFC1213-MIB - cpqHoTrapFlags FROM CPQHOST-MIB; - - --- compaq OBJECT IDENTIFIER ::= { enterprises 232 } - cpqStdEquipment OBJECT IDENTIFIER ::= { compaq 1 } - cpqSeMibRev OBJECT IDENTIFIER ::= { cpqStdEquipment 1 } - cpqSeComponent OBJECT IDENTIFIER ::= { cpqStdEquipment 2 } - - cpqSeInterface OBJECT IDENTIFIER ::= { cpqSeComponent 1 } - cpqSeProcessor OBJECT IDENTIFIER ::= { cpqSeComponent 2 } - cpqSeMemory OBJECT IDENTIFIER ::= { cpqSeComponent 3 } - cpqSeIsaCmos OBJECT IDENTIFIER ::= { cpqSeComponent 4 } - cpqSeEisaNvram OBJECT IDENTIFIER ::= { cpqSeComponent 5 } - cpqSeRom OBJECT IDENTIFIER ::= { cpqSeComponent 6 } - cpqSeKeyboard OBJECT IDENTIFIER ::= { cpqSeComponent 7 } - cpqSeVideo OBJECT IDENTIFIER ::= { cpqSeComponent 8 } - cpqSeSerialPort OBJECT IDENTIFIER ::= { cpqSeComponent 9 } - cpqSeParallelPort OBJECT IDENTIFIER ::= { cpqSeComponent 10 } - cpqSeFloppyDisk OBJECT IDENTIFIER ::= { cpqSeComponent 11 } - cpqSeFixedDisk OBJECT IDENTIFIER ::= { cpqSeComponent 12 } - cpqSePci OBJECT IDENTIFIER ::= { cpqSeComponent 13 } - cpqSePCCard OBJECT IDENTIFIER ::= { cpqSeComponent 14 } - cpqSeUSBPort OBJECT IDENTIFIER ::= { cpqSeComponent 15 } - cpqSeCell OBJECT IDENTIFIER ::= { cpqSeComponent 16 } - cpqSeIOC OBJECT IDENTIFIER ::= { cpqSeComponent 17 } - cpqSePartition OBJECT IDENTIFIER ::= { cpqSeComponent 18 } - cpqSeCabinet OBJECT IDENTIFIER ::= { cpqSeComponent 19 } - cpqSeComplex OBJECT IDENTIFIER ::= { cpqSeComponent 20 } - cpqSeLED OBJECT IDENTIFIER ::= { cpqSeComponent 21 } - cpqSeUSBDevice OBJECT IDENTIFIER ::= { cpqSeComponent 22 } - cpqSePCIeDisk OBJECT IDENTIFIER ::= { cpqSeComponent 23 } - - cpqSeOsCommon OBJECT IDENTIFIER ::= { cpqSeInterface 4 } - - TruthValue ::= INTEGER { - false(1), - true(2) - } - --- **************************************************************************** --- Standard Equipment MIB Revision --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeMibRev Group (1.3.6.1.4.1.232.1.1) --- --- Implementation of the cpqSeMibRev group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- An Insight Agent conforming to this document will return a --- cpqSeMibRevMajor of one (1) and a cpqSeMibRevMinor of thirty-one (33). --- --- **************************************************************************** - - cpqSeMibRevMajor OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Major Revision level of the MIB. - - 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." - ::= { cpqSeMibRev 1 } - - cpqSeMibRevMinor OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Minor Revision level of the MIB. - - A change in the minor revision level may represent some minor - additional support, no changes to any pre-existing information - has occurred." - ::= { cpqSeMibRev 2 } - - cpqSeMibCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall condition. - - This object represents the overall status of the server - represented by this MIB." - ::= { cpqSeMibRev 3 } - --- **************************************************************************** --- Standard Equipment OS Common Group --- ================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeInterface Group (1.3.6.1.4.1.232.1.2.1) --- cpqSeOsCommon Group (1.3.6.1.4.1.232.1.2.1.4) --- --- Implementation of the cpqSeOsCommon group is mandatory for all --- agents that support the Standard Equipment MIB. --- --- **************************************************************************** - - cpqSeOsCommonPollFreq OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - 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." - ::= { cpqSeOsCommon 1 } - --- **************************************************************************** --- Standard Equipment OS Common Module Table --- ========================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeInterface Group (1.3.6.1.4.1.232.1.2.1) --- cpqSeOsCommon Group (1.3.6.1.4.1.232.1.2.1.4) --- cpqSeOsCommonModuleTable (1.3.6.1.4.1.232.1.2.1.4.2) deprecated --- --- *************************************************************************** - - cpqSeOsCommonModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of software modules that provide an interface to the - device this MIB describes." - ::= { cpqSeOsCommon 2 } - - cpqSeOsCommonModuleEntry OBJECT-TYPE - SYNTAX CpqSeOsCommonModuleEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A description of a software module that provides an interface - to the device this MIB describes." - INDEX { cpqSeOsCommonModuleIndex } - ::= { cpqSeOsCommonModuleTable 1 } - - CpqSeOsCommonModuleEntry ::= SEQUENCE { - cpqSeOsCommonModuleIndex INTEGER, - cpqSeOsCommonModuleName DisplayString, - cpqSeOsCommonModuleVersion DisplayString, - cpqSeOsCommonModuleDate OCTET STRING, - cpqSeOsCommonModulePurpose DisplayString - } - - cpqSeOsCommonModuleIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "A unique index for this module description." - ::= { cpqSeOsCommonModuleEntry 1 } - - cpqSeOsCommonModuleName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The module name." - ::= { cpqSeOsCommonModuleEntry 2 } - - cpqSeOsCommonModuleVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqSeOsCommonModuleEntry 3 } - - cpqSeOsCommonModuleDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (7)) - ACCESS read-only - STATUS deprecated - 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." - ::= { cpqSeOsCommonModuleEntry 4 } - - cpqSeOsCommonModulePurpose OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The purpose of the module described in this entry." - ::= { cpqSeOsCommonModuleEntry 5 } - --- **************************************************************************** --- Standard Equipment Processor Group --- ================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeProcessor Group (1.3.6.1.4.1.232.1.2.2) --- cpqSeCpuTable (1.3.6.1.4.1.232.1.2.2.1) --- cpqSeFpuTable (1.3.6.1.4.1.232.1.2.2.2) --- --- The cpqSeProcessor group describes the CPUs (central processor --- units) and FPUs (floating point coprocessor units) in the system. --- --- A CPU is a chip that performs general purpose processing. A CPU may --- be used with or without an FPU. --- --- A FPU is a chip that performs special purpose processing, an FPU is --- used by a CPU to handle special computations. A FPU is always used --- with a CPU. --- --- The cpqSeProcessor group contains two tables, the cpqSeCpu table --- and the cpqSeFpu table. The cpqSeCpu table has an entry for --- each CPU in the system. The cpqSeFpu table has an entry for each --- FPU in the system. The two tables are indexed in a way that enables --- an application to determine the relationship between CPUs and FPUs. --- Each CPU and FPU entry provides identification, description, and --- speed information. --- --- --- **************************************************************************** - - - - cpqSeCpuTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeCpuEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of the CPUs (processors) in the system. - - The main processor (if such a concept is valid for this machine) - should be the first entry in the table." - ::= { cpqSeProcessor 1 } - - cpqSeCpuEntry OBJECT-TYPE - SYNTAX CpqSeCpuEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a CPU (processor) in the system." - INDEX { cpqSeCpuUnitIndex } - ::= { cpqSeCpuTable 1 } - - CpqSeCpuEntry ::= SEQUENCE { - cpqSeCpuUnitIndex INTEGER, - cpqSeCpuSlot INTEGER, - cpqSeCpuName DisplayString, - cpqSeCpuSpeed INTEGER, - cpqSeCpuStep INTEGER, - cpqSeCpuStatus INTEGER, - cpqSeCpuExtSpeed INTEGER, - cpqSeCpuDesigner INTEGER, - cpqSeCpuSocketNumber INTEGER, - cpqSeCpuThreshPassed INTEGER, - cpqSeCpuHwLocation DisplayString, - cpqSeCpuCellTablePtr INTEGER, - cpqSeCpuPowerpodStatus INTEGER, - cpqSeCpuArchitectureRevision DisplayString, - cpqSeCpuCore INTEGER, - cpqSeCPUSerialNumber DisplayString, - cpqSeCPUPartNumber DisplayString, - cpqSeCPUSerialNumberMfgr DisplayString, - cpqSeCPUPartNumberMfgr DisplayString, - cpqSeCPUCoreIndex INTEGER, - cpqSeCPUMaxSpeed INTEGER, - cpqSeCPUCoreThreadIndex INTEGER, - cpqSeCPUChipGenerationName DisplayString, - cpqSeCPUMultiThreadStatus INTEGER, - cpqSeCPUCoreMaxThreads INTEGER, - cpqSeCpuLowPowerStatus INTEGER, - cpqSeCpuPrimary INTEGER, - cpqSeCpuCoreSteppingText DisplayString, - cpqSeCpuCurrentPerformanceState INTEGER, - cpqSeCpuMinPerformanceState INTEGER, - cpqSeCpuMaxPerformanceState INTEGER - } - - cpqSeCpuUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a number that uniquely specifies a processor unit. - A processing unit may be a set of processing chips that are - on the same board or for other reasons work together as a unit. - The main processor unit (if such a concept is valid for this - machine) will always have the lowest (first) index." - ::= { cpqSeCpuEntry 1 } - - cpqSeCpuSlot OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value represents this processor`s slot. - If the slot cannot be determined the value of zero (0) will be - returned." - ::= { cpqSeCpuEntry 2 } - - cpqSeCpuName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of this processor. - For example: - 80386" - ::= { cpqSeCpuEntry 3 } - - cpqSeCpuSpeed OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current internal speed of this processor in megahertz. - This changes as per the processor performance state - Zero will be returned if this value is not available." - ::= { cpqSeCpuEntry 4 } - - cpqSeCpuStep OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This step of the processor. - This will be zero (0) if the step cannot be determined." - ::= { cpqSeCpuEntry 5 } - - cpqSeCpuStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4), - disabled(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the processor. - - The following values are valid for CPU status: - - Unknown (1) - The status of the CPU could not be determined. - - OK (2) - The CPU is functioning normally. - - Degraded (3) - The CPU is in a pre-failure warrantee state. - - Failed (4) - The CPU is in a failed state. - - Disabled (5) - The CPU has been disabled during power-on-self-test." - - ::= { cpqSeCpuEntry 6 } - - cpqSeCpuExtSpeed OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the external frequency in megahertz of the processor bus. - Zero will be returned if this value is not available." - ::= { cpqSeCpuEntry 7 } - - cpqSeCpuDesigner OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - intel(2), - amd(3), - cyrix(4), - ti(5), - nexgen(6), - compaq(7), - samsung(8), - mitsubishi(9), - mips(10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This attribute specifies the manufacturer which designs - this CPU." - ::= { cpqSeCpuEntry 8 } - - cpqSeCpuSocketNumber OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical socket number of the CPU chip. This number - helps to identify CPUs on processor boards that contain - multiple CPU chips. In most cases the CPU Socket number - should be specified on the board silkscreen or in product - documentation." - ::= { cpqSeCpuEntry 9 } - - cpqSeCpuThreshPassed OBJECT-TYPE - SYNTAX INTEGER - { - unsupported(1), - false(2), - true(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "CPU threshold passed (Exceeded). When this attribute is set - to true, it identifies a pre-failure error condition. Processors - like the Intel Pentium Pro have the capability built into them - to correct internal error conditions. Excessive corrected internal - errors can predict future hard processor failures. Agent - instrumentation will set this attribute to true if an internal - processor error threshold is passed. It is recommended that the - user replace the CPU in this case. If the processor does not - support monitoring internal corrected errors, this value will - be set to unsupported. " - ::= { cpqSeCpuEntry 10 } - - cpqSeCpuHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the CPU. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeCpuEntry 11 } - - cpqSeCpuCellTablePtr OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the index for the cell in cpqSeCellTable where this CPU is physically located." - ::= { cpqSeCpuEntry 12 } - - cpqSeCpuPowerpodStatus OBJECT-TYPE - SYNTAX INTEGER - { - notfailed(1), - failed(2) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the status of CPU power pod. Potential values in the future could be present/not present." - ::= { cpqSeCpuEntry 13 } - - cpqSeCpuArchitectureRevision OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the CPU architecture revision." - ::= { cpqSeCpuEntry 14 } - - cpqSeCpuCore OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The number of cores in this CPU module. Zero will be returned if can not be determined." - ::= { cpqSeCpuEntry 15 } - - cpqSeCPUSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The OEM serial number of the CPU." - ::= { cpqSeCpuEntry 16 } - - cpqSeCPUPartNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The OEM part number of the CPU." - ::= { cpqSeCpuEntry 17 } - - cpqSeCPUSerialNumberMfgr OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The manufacturer serial number of the CPU." - ::= { cpqSeCpuEntry 18 } - - cpqSeCPUPartNumberMfgr OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The manufacturer part number of the CPU." - ::= { cpqSeCpuEntry 19 } - - cpqSeCPUCoreIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is a number that uniquely identifies a core in a CPU unit." - ::= { cpqSeCpuEntry 20 } - - cpqSeCPUMaxSpeed OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the maximum internal speed in megahertz this processor can support. - Zero will be returned if this value is not available." - ::= { cpqSeCpuEntry 21 } - - cpqSeCPUCoreThreadIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is an unique number to identify the running threads in a CPU core." - ::= { cpqSeCpuEntry 22 } - - cpqSeCPUChipGenerationName OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "CPU chip generation name e.g. Hondo, Montecito, Madison, Opteron." - ::= { cpqSeCpuEntry 23 } - - cpqSeCPUMultiThreadStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - enabled(2), - disabled(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This OID identifies whether the CPU threading is enabled or not." - ::= { cpqSeCpuEntry 24 } - - cpqSeCPUCoreMaxThreads OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "This OID indicates the maximum number of threads that a cpu core is capable of." - ::= { cpqSeCpuEntry 25 } - - cpqSeCpuLowPowerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - lowpowered (2), - normalpowered (3), - highpowered (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Servers like Itanium has capability to lower power supply - to CPU if it is idle for specified period of time. Proliant - servers can set to high/low/Dynamic mode of power through - ILO. - - The following values are valid for CPU Low Powered state: - - Unknown (1) - The Low Powered status could not be determined. - - Low Powered (2) - The CPU is Low Power state. - - Normal Powered (3) - The CPU is normal Power state. - - High Powered (4) - The CPU is High Power state." - - ::= { cpqSeCpuEntry 26 } - - cpqSeCpuPrimary OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - false(2), - true (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "On SMP systems one of the CPU is set to Primary and the - other CPUs as secondary. A value of true is set if the - CPU is primary. - - The following values are valid for CPU availability status: - - Unknown (1) - The CPU Primary/Secondary could not be determined. - - false (2) - The CPU is not primary CPU. - - True (3) - The CUR is primary CPU." - - ::= { cpqSeCpuEntry 27 } - - cpqSeCpuCoreSteppingText OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS optional - DESCRIPTION - "The processor stepping version string. A NULL string - indicates that the stepping could not be determined." - ::= { cpqSeCpuEntry 28 } - - cpqSeCpuCurrentPerformanceState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This OID returns the current performance state of this processor. - Processor performance states are denoted as Pn states. The value - of n is cpqSeCpuPerformanceState. The higher the value n is, the - lower the performance state is being used. Value 0 describes the - highest performance state, in which the processor uses its maximum - performance capability and may consume maximum power. - The performance state number should not exceed 16 on Itanium servers. - (-1) will be returned if this value is not available." - ::= { cpqSeCpuEntry 29 } - - cpqSeCpuMinPerformanceState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This OID returns the minimum performance state set for this processor. - (-1) will be returned if this value is not available." - ::= { cpqSeCpuEntry 30 } - - cpqSeCpuMaxPerformanceState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This OID returns the maximum performance state set for this processor. - (-1) will be returned if this value is not available." - ::= { cpqSeCpuEntry 31 } - - --- **************************************************************************** --- The FPU Table --- **************************************************************************** - - cpqSeFpuTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeFpuEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of the FPUs (floating point coprocessors) in the system." - ::= { cpqSeProcessor 2 } - - cpqSeFpuEntry OBJECT-TYPE - SYNTAX CpqSeFpuEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a FPU in the system. - - The fpuUnitIndex of any entry in this table will equal the - cpuUnitIndex of the corresponding CPU in the cpqSeCpu table." - INDEX { cpqSeFpuUnitIndex , cpqSeFpuChipIndex } - ::= { cpqSeFpuTable 1 } - - CpqSeFpuEntry ::= SEQUENCE { - cpqSeFpuUnitIndex INTEGER, - cpqSeFpuChipIndex INTEGER, - cpqSeFpuSlot INTEGER, - cpqSeFpuName DisplayString, - cpqSeFpuSpeed INTEGER, - cpqSeFpuType INTEGER, - cpqSeFpuHwLocation DisplayString - } - - cpqSeFpuUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a number that uniquely specifies a processor unit. - - A processing unit may be a set of processing chips that are - on the same board or for other reasons work together as a unit. - The main processor unit (if there is one) will always have the - lowest (first) index. This field can be used to associate - CPUs with their corresponding FPUs." - ::= { cpqSeFpuEntry 1 } - - cpqSeFpuChipIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a number that uniquely specifies the FPU chip. - - This field is used to distinguish between multiple FPUs that are - part of the same processor unit. For example, If a processor - board contained a Intel 80386 processor with both a Intel 80387 - and a Weitek 3167, both the 80387 and the 3167 would have the - same fpuUnitIndex (which would match the 80386`s cpuUnitIndex) - but the 80387 and the 3167 would have different fpuChipIndex - field values." - ::= { cpqSeFpuEntry 2 } - - cpqSeFpuSlot OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the FPU`s slot. - - If the slot cannot be determined the value of zero (0) will - be returned." - ::= { cpqSeFpuEntry 3 } - - cpqSeFpuName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the name of the FPU. - - For example: - 80387 - Weitek 3167" - ::= { cpqSeFpuEntry 4 } - - cpqSeFpuSpeed OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is speed in megahertz of the FPU. - - Zero will be returned if this value is not available." - ::= { cpqSeFpuEntry 5 } - - cpqSeFpuType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - embedded(2), - external(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the FPU this entry is describing - is embedded in the CPU or external to the CPU chip." - ::= { cpqSeFpuEntry 6 } - - cpqSeFpuHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the FPU. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeFpuEntry 7 } - --- **************************************************************************** --- Standard Equipment CPU Cache Table --- ================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeProcessor Group (1.3.6.1.4.1.232.1.2.2) --- cpqSeCpuCacheTable (1.3.6.1.4.1.232.1.2.2.3) --- --- **************************************************************************** - - cpqSeCpuCacheTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeCpuCacheEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of the CPU caches in the system." - ::= { cpqSeProcessor 3 } - - cpqSeCpuCacheEntry OBJECT-TYPE - SYNTAX CpqSeCpuCacheEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a CPU Caches in the system." - INDEX { cpqSeCpuCacheUnitIndex, cpqSeCpuCacheLevelIndex } - ::= { cpqSeCpuCacheTable 1 } - - CpqSeCpuCacheEntry ::= SEQUENCE { - cpqSeCpuCacheUnitIndex INTEGER, - cpqSeCpuCacheLevelIndex INTEGER, - cpqSeCpuCacheSize INTEGER, - cpqSeCpuCacheSpeed INTEGER, - cpqSeCpuCacheStatus INTEGER, - cpqSeCpuCacheWritePolicy INTEGER, - cpqSeCpuCacheHwLocation DisplayString, - cpqSeCpuCacheCpuSlot INTEGER, - cpqSeCpuCacheCpuCoreIndex INTEGER - } - - cpqSeCpuCacheUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a number that uniquely specifies a processor unit. - - A processing unit may be a set of processing chips that are - on the same board or for other reasons work together as a unit. - The main processor unit (if such a concept is valid for this - machine) will always have the lowest (first) index." - ::= { cpqSeCpuCacheEntry 1 } - - cpqSeCpuCacheLevelIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the processor cache level. - - The lower the processor cache level, the closer the cache is to - the processor." - ::= { cpqSeCpuCacheEntry 2 } - - cpqSeCpuCacheSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the cache in kilobytes." - ::= { cpqSeCpuCacheEntry 3 } - - cpqSeCpuCacheSpeed OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is speed in cache memory in nanoseconds (ns). A value of - zero (0) means that the cache speed is unknown or unobtainable." - ::= { cpqSeCpuCacheEntry 4 } - - cpqSeCpuCacheStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the cache unit. If the cache is optional and not - installed, unknown(1) will be returned." - ::= { cpqSeCpuCacheEntry 5 } - - cpqSeCpuCacheWritePolicy OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - write-back(2), - write-through(3), - variesWithMemoryAddress(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Specifies write policy of this cache entry." - ::= { cpqSeCpuCacheEntry 6 } - - cpqSeCpuCacheHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the CPU cache. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeCpuCacheEntry 7 } - - cpqSeCpuCacheCpuSlot OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the CPU Slot associated with this CPU cache." - ::= { cpqSeCpuCacheEntry 8 } - - cpqSeCpuCacheCpuCoreIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is a unique number that identifies the core in the CPU - slot to which this cache is associated. If the cache is not - associated with any core on a multi-core CPU, the value should be -1." - ::= { cpqSeCpuCacheEntry 9 } - --- **************************************************************************** --- Standard Equipment CPU Condition --- ================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeProcessor Group (1.3.6.1.4.1.232.1.2.2) --- cpqSeCpuCondition (1.3.6.1.4.1.232.1.2.2.4) --- --- **************************************************************************** - cpqSeCpuCondition OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value specifies the overall condition of the - processor sub-system." - ::= { cpqSeProcessor 4 } - --- **************************************************************************** --- Standard Equipment Memory Group --- =============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeMemory Group (1.3.6.1.4.1.232.1.2.3) --- --- The cpqSeMemory group provides the base memory in the system and the --- total memory in the system. --- --- Implementation of the cpqSeMemory group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - cpqSeBaseMem OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of base memory in kilobytes. - - A kilobyte is 1024 bytes." - ::= { cpqSeMemory 1 } - - cpqSeTotalMem OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total amount of memory in kilobytes. - - A kilobyte is 1024 bytes." - ::= { cpqSeMemory 2 } - - cpqSeTotalMemMB OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total amount of memory in megabytes. - - A megabyte is 1024 kilobytes." - ::= { cpqSeMemory 3 } - --- **************************************************************************** --- Standard Equipment ISA CMOS Group --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeIsaCmos Group (1.3.6.1.4.1.232.1.2.4) --- --- --- The ISA CMOS group provides an image of the ISA CMOS real time clock, --- security, and configuration in a raw form. This group is provided for --- completeness, most of the important information stored in ISA CMOS can --- also be found elsewhere in the MIB. --- --- Implementation of the ISA CMOS group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - - cpqSeIsaCmosRaw OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The contents of the ISA CMOS." - ::= { cpqSeIsaCmos 1 } - --- **************************************************************************** --- Standard Equipment EISA NVRAM Slot Table --- ======================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- --- --- The EISA NVRAM group provides a set of tables that detail the --- configuration information stored in an EISA bus architecture system. --- The EISA slot table contains entries providing information about each --- slot that currently contains a configured card. --- The EISA function table contains entries providing information about --- each function performed by a configured card. Each card may have --- one or more defined functions. --- The rest of the tables: the EISA memory table, the EISA Interrupt --- table, the EISA DMA table, and the EISA port table, detail the --- resources used by each function of each configured card. --- --- Implementation of the eisaNvram group is optional. --- The eisaNvram group should be included on any system with an EISA bus --- architecture. --- --- **************************************************************************** - - cpqSeEisaSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA slot information entries." - ::= { cpqSeEisaNvram 1 } - - cpqSeEisaSlotEntry OBJECT-TYPE - SYNTAX CpqSeEisaSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA slot." - INDEX { cpqSeEisaSlotIndex } - ::= { cpqSeEisaSlotTable 1 } - - CpqSeEisaSlotEntry ::= SEQUENCE { - cpqSeEisaSlotIndex INTEGER, - cpqSeEisaSlotRaw OCTET STRING, - cpqSeEisaSlotBoardId DisplayString, - cpqSeEisaSlotBoardName DisplayString, - cpqSeEisaSlotCfRev DisplayString, - cpqSeEisaSlotType INTEGER - } - - cpqSeEisaSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number for this entry describes." - ::= { cpqSeEisaSlotEntry 1 } - - cpqSeEisaSlotRaw OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (12)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot data for the board in this slot. - - This octet string contains the following EISA slot information: - - The first octet will be zero (0) if this slot contains a - properly configured board. Any other value indicates that the - EISA configuration information for this board is invalid or an - error occurred when trying to retrieve the information. - - The second octet contains several bit flags about the product ID - and slot type. - - Bit 7: 0 = No duplicate ID - 1 = Duplicate IDs - - Bit 6: 0 = Product ID readable - 1 = Product ID not readable - - Bit 5,4: 00 = Expansion slot - 01 = Embedded device - 10 = Virtual device - 11 = Reserved - - Bit 3..0: This nibble indicates which CFG file is loaded - when duplicate file names are present. - 0000 = No duplicate ID - 0001 = First duplicate ID - 0010 = Second duplicate ID - 0011 = Third duplicate ID - . - . - . - 1111 = Fifteenth duplicate ID - - NOTE: Bit 7 is the most significant bit, bit 0 is the least - significant. - - The third octet contains the major revision level of the - configuration utility. - - The fourth octet contains the minor revision level of the - configuration utility. - - The fifth octet contains the most significant byte of the - configuration file checksum. - - The sixth octet contains the least significant byte of the - configuration file checksum. - - The seventh octet contains the number of device functions defined - for the board in this slot. - - The eighth octet contains the combined function information. - This is a set of flags. Each bit has the following meaning when - set (1): - Bit 7: reserved (0) - Bit 6: slot has one or more free form data entries - Bit 5: slot has one or more port initialization entries. - Bit 4: slot has one or more port range entries. - Bit 3: slot has one or more DMA entries. - Bit 2: slot has one or more interrupt (IRQ) entries. - Bit 1: slot has one or more memory entries. - Bit 0: slot has one or more function type definitions. - - NOTE: bit 7 is the most significant bit, bit 0 is the least - significant. - - The ninth, tenth, eleventh, and twelfth octets contain the four - byte compressed EISA ID. - - For more information about the meaning of this information - consult the EISA Technical Reference Guide." - ::= { cpqSeEisaSlotEntry 2 } - - cpqSeEisaSlotBoardId OBJECT-TYPE - SYNTAX DisplayString (SIZE (7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A seven character board ID. - - The first three characters are the manufacturers ID followed by - three character product ID followed by a one character revision - level." - ::= { cpqSeEisaSlotEntry 3 } - - cpqSeEisaSlotBoardName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The product name (or other suitable description) of this board. - - This field may be empty if no descriptive information is known - about the board." - ::= { cpqSeEisaSlotEntry 4 } - - cpqSeEisaSlotCfRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision level of the EISA configuration utility that was - used to configure the system. - - This should be the same version information displayed by the EISA - configuration utility." - ::= { cpqSeEisaSlotEntry 5 } - - cpqSeEisaSlotType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - isa8Bit(2), - isa16Bit(3), - eisa32Bit(4), - eisaBusMaster32Bit(5), - other(6), - reserved(7), - reserved2(8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of slot described by this entry." - ::= { cpqSeEisaSlotEntry 6 } - - --- **************************************************************************** --- Standard Equipment EISA NVRAM Function Table --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- --- **************************************************************************** - - cpqSeEisaFunctTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaFunctEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list EISA function information entries." - ::= { cpqSeEisaNvram 2 } - - cpqSeEisaFunctEntry OBJECT-TYPE - SYNTAX CpqSeEisaFunctEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function." - INDEX { cpqSeEisaFunctSlotIndex , cpqSeEisaFunctIndex } - ::= { cpqSeEisaFunctTable 1 } - - CpqSeEisaFunctEntry ::= SEQUENCE { - cpqSeEisaFunctSlotIndex INTEGER, - cpqSeEisaFunctIndex INTEGER, - cpqSeEisaFunctStatus INTEGER, - cpqSeEisaFunctType DisplayString, - cpqSeEisaFunctCfgRev DisplayString, - cpqSeEisaFunctSels OCTET STRING, - cpqSeEisaFunctInfo INTEGER - } - - cpqSeEisaFunctSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot of the board that registered this function" - ::= { cpqSeEisaFunctEntry 1 } - - cpqSeEisaFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the function this entry describes." - ::= { cpqSeEisaFunctEntry 2 } - - cpqSeEisaFunctStatus OBJECT-TYPE - SYNTAX INTEGER { - disabled(2), - enabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the function described by this entry." - ::= { cpqSeEisaFunctEntry 3 } - - cpqSeEisaFunctType OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of the function. - - The type may be followed by one or more subtype description - fields. Some currently defined types are: - - Type Meaning - ============== ================================================== - COM Communication device - COM,ASY ISA compatible 8250 based serial port - COM,ASY,FIFO ISA compatible 16550 based serial port (with fifo) - COM,SYN ISA compatible SDLC port - CPU Microprocessor - CPU,8086 8086 compatible microprocessor - CPU,80286 80286 compatible microprocessor - CPU,80386SX 80386SX compatible microprocessor - CPU,80386 80386 compatible microprocessor - CPU,80486 80486 compatible microprocessor - JOY ISA compatible joystick adapter - KEY Keyboard - KEY,nnn,KBD=xx Standard keyboard with nnn keys for country xx - MEM Memory board - MFC Multifunction board - MSD Mass storage device - MSD,DSKCTL ISA compatible fixed disk controller - MSD,FPYCTL ISA compatible floppy disk controller - MSD,TAPCTL Primary tape controller - NET Network board - NPX Numeric coprocessor - NPX,287 Intel 287 numeric coprocessor - NPX,387 Intel 387 numeric coprocessor - NPX,387SX Intel 387SX numeric coprocessor - NPX,W1167 Weitek 1167 numeric coprocessor - NPX,W3167 Weitek 3167 numeric coprocessor - OSE Operating system/environment - OTH Other - PAR ISA compatible parallel port - PAR,BID Bidirectional parallel port - PTR Pointing device - PTR,8042 8042 pointing device (mouse) interface - SYS System board - VID Video board - VID,MDA ISA compatible monochrome adapter - VID,MDA,MGA Hercules monochrome adapter - VID,CGA CGA, no write sync during retrace required - VID,CGA,RTR CGA, write sync during retrace required - VID,EGA ISA compatible EGA adapter - VID,VGA ISA compatible VGA adapter - - This list is not intended to be complete. Other types may be - found in this field. This list describes some of the more - common types found, other types should be similarly recognizable - to someone sufficiently knowledgeable about computer hardware." - ::= { cpqSeEisaFunctEntry 4 } - - cpqSeEisaFunctCfgRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The revision of the EISA configuration .OVL file used to - configure this board." - ::= { cpqSeEisaFunctEntry 5 } - - cpqSeEisaFunctSels OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..26)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selections that were chosen with the EISA CONFIGURATION - UTILITY to create this function." - ::= { cpqSeEisaFunctEntry 6 } - - cpqSeEisaFunctInfo OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA function information block. - - This is a set of flags indicating the resources that are - configured in this EISA function. Each bit has the following - meaning when it is set (1): - - Bit 7: Function is disabled - Bit 6: This function contains free-form information. - Bit 5: This function contains port initialization entries. - Bit 4: This function contains port range entries. - Bit 3: This function contains DMA entries. - Bit 2: This function contains interrupt (IRQ) entries. - Bit 1: This function contains memory entries. - Bit 0: This function contains function type definitions. - - NOTE: bit 7 is the most significant bit, bit 0 is the least - significant." - ::= { cpqSeEisaFunctEntry 7 } - --- **************************************************************************** --- Standard Equipment EISA Memory Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) --- --- **************************************************************************** - - cpqSeEisaMemTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaMemEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA function memory configuration entries." - ::= { cpqSeEisaNvram 3 } - - cpqSeEisaMemEntry OBJECT-TYPE - SYNTAX CpqSeEisaMemEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function memory configuration." - INDEX { cpqSeEisaMemSlotIndex , cpqSeEisaMemFunctIndex , - cpqSeEisaMemAllocIndex } - ::= { cpqSeEisaMemTable 1 } - - CpqSeEisaMemEntry ::= SEQUENCE { - cpqSeEisaMemSlotIndex INTEGER, - cpqSeEisaMemFunctIndex INTEGER, - cpqSeEisaMemAllocIndex INTEGER, - cpqSeEisaMemStartAddr INTEGER, - cpqSeEisaMemSize INTEGER, - cpqSeEisaMemShare INTEGER, - cpqSeEisaMemType INTEGER, - cpqSeEisaMemCache INTEGER, - cpqSeEisaMemAccess INTEGER, - cpqSeEisaMemDecode INTEGER, - cpqSeEisaMemDataSize INTEGER - } - - cpqSeEisaMemSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number of the board that registered the memory - configuration this entry describes." - ::= { cpqSeEisaMemEntry 1 } - - cpqSeEisaMemFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The function in which this memory configuration was registered." - ::= { cpqSeEisaMemEntry 2 } - - cpqSeEisaMemAllocIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index for this memory allocation entry in the EISA function - block." - ::= { cpqSeEisaMemEntry 3 } - - cpqSeEisaMemStartAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The starting address of the memory configuration." - ::= { cpqSeEisaMemEntry 4 } - - cpqSeEisaMemSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size in bytes of the memory configuration." - ::= { cpqSeEisaMemEntry 5 } - - cpqSeEisaMemShare OBJECT-TYPE - SYNTAX INTEGER { - nonshareable(1), - shareable(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the memory is shareable." - ::= { cpqSeEisaMemEntry 6 } - - cpqSeEisaMemType OBJECT-TYPE - SYNTAX INTEGER { - systemBaseOrExtended(1), - expanded(2), - virtual(3), - other(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of memory." - ::= { cpqSeEisaMemEntry 7 } - - cpqSeEisaMemCache OBJECT-TYPE - SYNTAX INTEGER { - notCached(1), - writeThroughCached(2), - writeBackCached(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the memory is cached." - ::= { cpqSeEisaMemEntry 8 } - - cpqSeEisaMemAccess OBJECT-TYPE - SYNTAX INTEGER { - readOnly(1), - readWrite(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of access permitted for this memory." - ::= { cpqSeEisaMemEntry 9 } - - cpqSeEisaMemDecode OBJECT-TYPE - SYNTAX INTEGER (0..65536) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The memory decode size (the number of address lines supported)." - ::= { cpqSeEisaMemEntry 10 } - - cpqSeEisaMemDataSize OBJECT-TYPE - SYNTAX INTEGER (0..65536) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The data access size for the memory in bits." - ::= { cpqSeEisaMemEntry 11 } - --- **************************************************************************** --- Standard Equipment EISA Interrupt Table --- ======================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) --- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) --- --- **************************************************************************** - - cpqSeEisaIntTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaIntEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA function interrupt configuration entries." - ::= { cpqSeEisaNvram 4 } - - cpqSeEisaIntEntry OBJECT-TYPE - SYNTAX CpqSeEisaIntEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function interrupt configuration." - INDEX { cpqSeEisaIntSlotIndex , cpqSeEisaIntFunctIndex , - cpqSeEisaIntAllocIndex } - ::= { cpqSeEisaIntTable 1 } - - CpqSeEisaIntEntry ::= SEQUENCE { - cpqSeEisaIntSlotIndex INTEGER, - cpqSeEisaIntFunctIndex INTEGER, - cpqSeEisaIntAllocIndex INTEGER, - cpqSeEisaIntNum INTEGER, - cpqSeEisaIntShare INTEGER, - cpqSeEisaIntTrigger INTEGER - } - - cpqSeEisaIntSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number of the board that registered the interrupt - configuration this entry describes." - ::= { cpqSeEisaIntEntry 1 } - - cpqSeEisaIntFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The function in which this interrupt configuration was - registered." - ::= { cpqSeEisaIntEntry 2 } - - cpqSeEisaIntAllocIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index for this interrupt allocation entry in the EISA - function block." - ::= { cpqSeEisaIntEntry 3 } - - cpqSeEisaIntNum OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The interrupt described in this entry." - ::= { cpqSeEisaIntEntry 4 } - - cpqSeEisaIntShare OBJECT-TYPE - SYNTAX INTEGER { - nonshareable(1), - shareable(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the interrupt is shareable." - ::= { cpqSeEisaIntEntry 5 } - - cpqSeEisaIntTrigger OBJECT-TYPE - SYNTAX INTEGER { - edge(1), - level(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the interrupt is edge or level - triggered." - ::= { cpqSeEisaIntEntry 6 } - --- **************************************************************************** --- Standard Equipment EISA DMA Table --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) --- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) --- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) --- --- **************************************************************************** - - cpqSeEisaDmaTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaDmaEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA function DMA configuration entries." - ::= { cpqSeEisaNvram 5 } - - cpqSeEisaDmaEntry OBJECT-TYPE - SYNTAX CpqSeEisaDmaEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function DMA configuration." - INDEX { cpqSeEisaDmaSlotIndex , cpqSeEisaDmaFunctIndex , - cpqSeEisaDmaAllocIndex } - ::= { cpqSeEisaDmaTable 1 } - - CpqSeEisaDmaEntry ::= SEQUENCE { - cpqSeEisaDmaSlotIndex INTEGER, - cpqSeEisaDmaFunctIndex INTEGER, - cpqSeEisaDmaAllocIndex INTEGER, - cpqSeEisaDmaChannel INTEGER, - cpqSeEisaDmaShare INTEGER, - cpqSeEisaDmaTiming INTEGER, - cpqSeEisaDmaXfer INTEGER, - cpqSeEisaDmaXferCount INTEGER - } - - cpqSeEisaDmaSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number of the board that registered the DMA - configuration this entry describes." - ::= { cpqSeEisaDmaEntry 1 } - - cpqSeEisaDmaFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The function in which this DMA configuration was registered." - ::= { cpqSeEisaDmaEntry 2 } - - cpqSeEisaDmaAllocIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index for this DMA channel allocation entry in the EISA - function block." - ::= { cpqSeEisaDmaEntry 3 } - - cpqSeEisaDmaChannel OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The DMA channel described in this entry." - ::= { cpqSeEisaDmaEntry 4 } - - cpqSeEisaDmaShare OBJECT-TYPE - SYNTAX INTEGER { - nonshareable(1), - shareable(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the DMA channel is shareable." - ::= { cpqSeEisaDmaEntry 5 } - - cpqSeEisaDmaTiming OBJECT-TYPE - SYNTAX INTEGER { - isaTiming(1), - typeA(2), - typeB(3), - burstTypeC(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the timing (transfer rate) associated with - this configuration of the DMA channel." - ::= { cpqSeEisaDmaEntry 6 } - - cpqSeEisaDmaXfer OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the transfer size in bits used over this - DMA channel." - ::= { cpqSeEisaDmaEntry 7 } - - cpqSeEisaDmaXferCount OBJECT-TYPE - SYNTAX INTEGER { - byte(1), - word(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the addressing scheme for the DMA channel." - ::= { cpqSeEisaDmaEntry 8 } - - --- **************************************************************************** --- Standard Equipment EISA Port Table --- ================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) --- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) --- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) --- cpqSeEisaPortTable (1.3.6.1.4.1.232.1.2.5.6) --- --- **************************************************************************** - - cpqSeEisaPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA function port I/O configuration entries." - ::= { cpqSeEisaNvram 6 } - - cpqSeEisaPortEntry OBJECT-TYPE - SYNTAX CpqSeEisaPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function port I/O configuration." - INDEX { cpqSeEisaPortSlotIndex , cpqSeEisaPortFunctIndex , - cpqSeEisaPortAllocIndex } - ::= { cpqSeEisaPortTable 1 } - - CpqSeEisaPortEntry ::= SEQUENCE { - cpqSeEisaPortSlotIndex INTEGER, - cpqSeEisaPortFunctIndex INTEGER, - cpqSeEisaPortAllocIndex INTEGER, - cpqSeEisaPortAddr INTEGER, - cpqSeEisaPortShare INTEGER, - cpqSeEisaPortSize INTEGER - } - - cpqSeEisaPortSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number of the board that registered the I/O port - configuration this entry describes." - ::= { cpqSeEisaPortEntry 1 } - - cpqSeEisaPortFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The function in which this port I/O configuration was - registered." - ::= { cpqSeEisaPortEntry 2 } - - cpqSeEisaPortAllocIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index for this I/O port range allocation entry in the EISA - function block." - ::= { cpqSeEisaPortEntry 3 } - - cpqSeEisaPortAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The I/O port address being described in this entry." - ::= { cpqSeEisaPortEntry 4 } - - cpqSeEisaPortShare OBJECT-TYPE - SYNTAX INTEGER { - nonshareable(1), - shareable(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates if the port is shareable." - ::= { cpqSeEisaPortEntry 5 } - - cpqSeEisaPortSize OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of sequential ports starting at the - eisaPortAddrIndex that are be configured." - ::= { cpqSeEisaPortEntry 6 } - --- **************************************************************************** --- Standard Equipment EISA Free Form Table --- ======================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) --- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) --- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) --- cpqSeEisaPortTable (1.3.6.1.4.1.232.1.2.5.6) --- cpqSeEisaFreeFormTable (1.3.6.1.4.1.232.1.2.5.7) --- --- **************************************************************************** - - cpqSeEisaFreeFormTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaFreeFormEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA function free form entries." - ::= { cpqSeEisaNvram 7 } - - cpqSeEisaFreeFormEntry OBJECT-TYPE - SYNTAX CpqSeEisaFreeFormEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function free form." - INDEX { cpqSeEisaFreeFormSlotIndex , - cpqSeEisaFreeFormFunctIndex } - ::= { cpqSeEisaFreeFormTable 1 } - - CpqSeEisaFreeFormEntry ::= SEQUENCE { - cpqSeEisaFreeFormSlotIndex INTEGER, - cpqSeEisaFreeFormFunctIndex INTEGER, - cpqSeEisaFreeFormValue OCTET STRING - } - - cpqSeEisaFreeFormSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number of the board that registered the free form - information this entry describes." - ::= { cpqSeEisaFreeFormEntry 1 } - - cpqSeEisaFreeFormFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The function in which this free form was registered." - ::= { cpqSeEisaFreeFormEntry 2 } - - cpqSeEisaFreeFormValue OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..205)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The free form value." - ::= { cpqSeEisaFreeFormEntry 3 } - --- **************************************************************************** --- Standard Equipment EISA Function Port Initialization Table --- ========================================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) --- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) --- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) --- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) --- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) --- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) --- cpqSeEisaPortTable (1.3.6.1.4.1.232.1.2.5.6) --- cpqSeEisaFreeFormTable (1.3.6.1.4.1.232.1.2.5.7) --- cpqSeEisaInitTable (1.3.6.1.4.1.232.1.2.5.8) --- --- **************************************************************************** - - cpqSeEisaInitTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeEisaInitEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of EISA function port initialization entries." - ::= { cpqSeEisaNvram 8 } - - cpqSeEisaInitEntry OBJECT-TYPE - SYNTAX CpqSeEisaInitEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of an EISA function port initialization." - INDEX { cpqSeEisaInitSlotIndex , cpqSeEisaInitFunctIndex , - cpqSeEisaInitAllocIndex } - ::= { cpqSeEisaInitTable 1 } - - CpqSeEisaInitEntry ::= SEQUENCE { - cpqSeEisaInitSlotIndex INTEGER, - cpqSeEisaInitFunctIndex INTEGER, - cpqSeEisaInitAllocIndex INTEGER, - cpqSeEisaInitUseMask INTEGER, - cpqSeEisaInitAccess INTEGER, - cpqSeEisaInitAddr INTEGER, - cpqSeEisaInitValue INTEGER, - cpqSeEisaInitMask INTEGER - } - - cpqSeEisaInitSlotIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EISA slot number of the board that registered the port - initialization this entry describes." - ::= { cpqSeEisaInitEntry 1 } - - cpqSeEisaInitFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The function in which this port initialization was registered." - ::= { cpqSeEisaInitEntry 2 } - - cpqSeEisaInitAllocIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index for this port initialization entry in the EISA - function block." - ::= { cpqSeEisaInitEntry 3 } - - cpqSeEisaInitUseMask OBJECT-TYPE - SYNTAX INTEGER { - useValueOnly(1), - useValueAndMask(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates if a mask will be used when performing - initialization." - ::= { cpqSeEisaInitEntry 4 } - - cpqSeEisaInitAccess OBJECT-TYPE - SYNTAX INTEGER { - other(1), - eightBitAddress(2), - sixteenBitAddress(3), - thirtyTwoBitAddress(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the number of bits this entry initializes." - ::= { cpqSeEisaInitEntry 5 } - - cpqSeEisaInitAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the port address this entry initializes." - ::= { cpqSeEisaInitEntry 6 } - - cpqSeEisaInitValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This indicates the value to which this port is initialized." - ::= { cpqSeEisaInitEntry 7 } - - cpqSeEisaInitMask OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the mask to use when performing - initialization." - ::= { cpqSeEisaInitEntry 8 } - - --- **************************************************************************** --- Standard Equipment ROM Description Table --- ======================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeRom Group (1.3.6.1.4.1.232.1.2.6) --- cpqSeSysRomVer (1.3.6.1.4.1.232.1.2.6.1) --- cpqSeOptRomTable (1.3.6.1.4.1.232.1.2.6.2) --- --- The ROM group contains a description of the system ROM and a table --- providing option ROM information. The option ROM table contains --- entries specifying the starting address and size of the each option --- ROM in the system. --- --- Implementation of the ROM group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - - cpqSeSysRomVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System ROM version information." - ::= { cpqSeRom 1 } - - - cpqSeOptRomTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeOptRomEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of option ROM descriptions." - ::= { cpqSeRom 2 } - - cpqSeOptRomEntry OBJECT-TYPE - SYNTAX CpqSeOptRomEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An option ROM description." - INDEX { cpqSeOptRomAddrIndex } - ::= { cpqSeOptRomTable 1 } - - CpqSeOptRomEntry ::= SEQUENCE { - cpqSeOptRomAddrIndex INTEGER, - cpqSeOptRomSize INTEGER - } - - cpqSeOptRomAddrIndex OBJECT-TYPE - SYNTAX INTEGER (0..4294967295) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The starting address of the option ROM. - - This value indicates the number of bytes from the start of - physical memory to the beginning of this option ROM." - ::= { cpqSeOptRomEntry 1 } - - cpqSeOptRomSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size in bytes of the option ROM." - ::= { cpqSeOptRomEntry 2 } - - cpqSeBiosRomDataRaw OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (256)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The BIOS ROM data area. This may be the current contents or - a copy of the BIOS ROM data area from when the Insight Agent was - initialized." - ::= { cpqSeRom 3 } - - cpqSeRedundantSysRomVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System ROM version information for the redundant ROM - image. This will be left blank if the system does not - support a redundant ROM." - ::= { cpqSeRom 4 } - - cpqSeSmbiosVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "SMBIOS version information." - ::= { cpqSeRom 5 } - - cpqSeMPFwVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The version of Management Processor Firmware." - ::= { cpqSeRom 6 } - - cpqSeBMCFwVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The version of the manageability firmware." - ::= { cpqSeRom 7 } - - cpqSeHPVMFwVer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The version of the virtual machine firmware." - ::= { cpqSeRom 8 } - --- **************************************************************************** --- Standard Equipment Keyboard Group --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeKeyboard Group (1.3.6.1.4.1.232.1.2.7) --- --- The keyboard group describes the keyboard attached to the system. --- --- Implementation of the Keyboard group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - cpqSeKeyboardDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of the keyboard." - ::= { cpqSeKeyboard 1 } - --- **************************************************************************** --- Standard Equipment Video Group --- ============================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeVideo Group (1.3.6.1.4.1.232.1.2.8) --- --- The video group describes the video adapter and display. --- --- Implementation of the video group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - cpqSeVideoDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of the video system in the computer. This may - include the manufacturer, board name, modes supported, etc.." - ::= { cpqSeVideo 1 } - --- **************************************************************************** --- Standard Equipment Serial Port Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeSerialPort Group (1.3.6.1.4.1.232.1.2.9) --- cpqSeSerialPortTable (1.3.6.1.4.1.232.1.2.9.1) --- --- The serial port group describes the serial ports in the system. --- --- Implementation of the Serial Port group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- --- **************************************************************************** - - cpqSeSerialPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeSerialPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of serial port descriptions." - ::= { cpqSeSerialPort 1 } - - cpqSeSerialPortEntry OBJECT-TYPE - SYNTAX CpqSeSerialPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a serial port." - INDEX { cpqSeSerialPortIndex } - ::= { cpqSeSerialPortTable 1 } - - CpqSeSerialPortEntry ::= SEQUENCE { - cpqSeSerialPortIndex INTEGER, - cpqSeSerialPortAddr INTEGER, - cpqSeSerialPortDesc DisplayString, - cpqSeSerialPortHwLocation DisplayString - } - - cpqSeSerialPortIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry." - ::= { cpqSeSerialPortEntry 1 } - - cpqSeSerialPortAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The I/O port address used by this serial port." - ::= { cpqSeSerialPortEntry 2 } - - cpqSeSerialPortDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of further information known about the serial - port. This may be an empty string if no further information is - known." - ::= { cpqSeSerialPortEntry 3 } - - cpqSeSerialPortHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the serial port. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeSerialPortEntry 4 } - --- **************************************************************************** --- Standard Equipment Parallel Port Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeParallel Group (1.3.6.1.4.1.232.1.2.10) --- cpqSeParallelPortTable (1.3.6.1.4.1.232.1.2.10.1) --- --- --- The parallel port group describes the parallel ports in the system. --- --- Implementation of the Parallel Port group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- --- **************************************************************************** - - - cpqSeParallelPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeParallelPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of parallel port descriptions." - ::= { cpqSeParallelPort 1 } - - cpqSeParallelPortEntry OBJECT-TYPE - SYNTAX CpqSeParallelPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a parallel port." - INDEX { cpqSeParallelPortIndex } - ::= { cpqSeParallelPortTable 1 } - - CpqSeParallelPortEntry ::= SEQUENCE { - cpqSeParallelPortIndex INTEGER, - cpqSeParallelPortAddr INTEGER, - cpqSeParallelPortDesc DisplayString, - cpqSeParrallelPortHwLocation DisplayString - } - - cpqSeParallelPortIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry." - ::= { cpqSeParallelPortEntry 1 } - - cpqSeParallelPortAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The I/O port address used by this parallel port." - ::= { cpqSeParallelPortEntry 2 } - - cpqSeParallelPortDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of further information known about the - parallel port. This may be an empty string if no further - information is known." - ::= { cpqSeParallelPortEntry 3 } - - cpqSeParrallelPortHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the parallel port. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeParallelPortEntry 4 } - --- **************************************************************************** --- Standard Equipment Floppy Disk Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeFloppyDisk Group (1.3.6.1.4.1.232.1.2.11) --- cpqSeFloppyDiskTable (1.3.6.1.4.1.232.1.2.11.1) --- --- The floppy disk group describes the floppy disk drives in the system. --- --- Implementation of the Floppy Disk group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - cpqSeFloppyDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeFloppyDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of floppy drive descriptions." - ::= { cpqSeFloppyDisk 1 } - - cpqSeFloppyDiskEntry OBJECT-TYPE - SYNTAX CpqSeFloppyDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A floppy drive description." - INDEX { cpqSeFloppyDiskIndex } - ::= { cpqSeFloppyDiskTable 1 } - - CpqSeFloppyDiskEntry ::= SEQUENCE { - cpqSeFloppyDiskIndex INTEGER, - cpqSeFloppyDiskType INTEGER, - cpqSeFloppyDiskHwLocation DisplayString - } - - cpqSeFloppyDiskIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry. If possible, this - field will map directly to the drive letter (0 for A:, 1 for B:)." - ::= { cpqSeFloppyDiskEntry 1 } - - cpqSeFloppyDiskType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - drive360k(2), - drive1200k(3), - drive720k(4), - drive1440k(5), - drive120mb(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type (capacity) of the floppy drive. The following values - are valid: - - other (1) This floppy drive could not be identified. - drive360k (2) This is a 360 kilobyte, 5.25 inch floppy drive. - drive1200k (3) This is a 1.2 megabyte, 5.25 inch floppy drive. - drive720k (4) This is a 720 kilobyte, 3.5 inch floppy drive. - drive1440k (5) This is a 1.44 megabyte, 3.5 inch floppy drive. - drive120mb(6) This is a 120 megabyte, 3.5 inch floptical - drive." - ::= { cpqSeFloppyDiskEntry 2 } - - cpqSeFloppyDiskHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the floppy disk. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeFloppyDiskEntry 3 } - --- **************************************************************************** --- Standard Equipment Fixed Disk Table --- =================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeFixedDisk Group (1.3.6.1.4.1.232.1.2.12) --- cpqSeFixedDiskTable (1.3.6.1.4.1.232.1.2.12.1) --- --- The fixed disk group describes the fixed disk drives in the system --- that are accessible through a ST506 compatible interface. --- --- Implementation of the Fixed Disk group is mandatory for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - - cpqSeFixedDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeFixedDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of ST-506 interface accessible fixed disk descriptions." - ::= { cpqSeFixedDisk 1 } - - cpqSeFixedDiskEntry OBJECT-TYPE - SYNTAX CpqSeFixedDiskEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A fixed disk description." - INDEX { cpqSeFixedDiskIndex } - ::= { cpqSeFixedDiskTable 1 } - - CpqSeFixedDiskEntry ::= SEQUENCE { - cpqSeFixedDiskIndex INTEGER, - cpqSeFixedDiskType INTEGER, - cpqSeFixedDiskCyls INTEGER, - cpqSeFixedDiskHeads INTEGER, - cpqSeFixedDiskSectors INTEGER, - cpqSeFixedDiskCapacity INTEGER, - cpqSeFixedDiskHwLocation DisplayString - } - - cpqSeFixedDiskIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry. Each possible - index value indicates a specific drive as shown in the table - below: - - fixedDiskIndex IDE/ESDI Controller Drive Unit - ============= =================== ========== - 0 Primary 1 - 1 Primary 2 - 2 Secondary 1 - 3 Secondary 2 - - Any other index value would be implementation specific." - ::= { cpqSeFixedDiskEntry 1 } - - cpqSeFixedDiskType OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The drive type." - ::= { cpqSeFixedDiskEntry 2 } - - cpqSeFixedDiskCyls OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of cylinders on the drive." - ::= { cpqSeFixedDiskEntry 3 } - - cpqSeFixedDiskHeads OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of heads on the drive." - ::= { cpqSeFixedDiskEntry 4 } - - cpqSeFixedDiskSectors OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of sectors per track on the drive." - ::= { cpqSeFixedDiskEntry 5 } - - cpqSeFixedDiskCapacity OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The capacity of the drive in megabytes." - ::= { cpqSeFixedDiskEntry 6 } - - cpqSeFixedDiskHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the fixed disk. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeFixedDiskEntry 7 } - --- **************************************************************************** --- Standard Equipment PCI Group --- ============================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) --- --- --- The PCI group provides a set of tables and variables that detail the --- configuration information about the PCI bus architecture. The --- Peripheral Component Interconnect (PCI) local bus is a 32 or 64-bit --- high performance bus intended to be used to interconnect highly --- integrated peripheral controller components, peripheral add-in boards, --- and processor/memory sub-systems. --- --- Implementation of the cpqSePci group is optional. --- Support for the cpqSePci group is MANDATORY for all systems that --- contain a PCI bus. --- **************************************************************************** - - - --- **************************************************************************** --- Standard Equipment PCI Slot Table --- ================================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) --- cpqSePciSlotTable (1.3.6.1.4.1.232.1.2.13.1) --- --- **************************************************************************** - - cpqSePciSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSePciSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of PCI slot information entries." - ::= { cpqSePci 1} - - cpqSePciSlotEntry OBJECT-TYPE - SYNTAX CpqSePciSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a PCI slot." - INDEX { cpqSePciSlotBusNumberIndex , cpqSePciSlotDeviceNumberIndex} - ::= { cpqSePciSlotTable 1 } - - CpqSePciSlotEntry ::= SEQUENCE { - cpqSePciSlotBusNumberIndex INTEGER, - cpqSePciSlotDeviceNumberIndex INTEGER, - cpqSePciPhysSlot INTEGER, - cpqSePciSlotSubSystemID OCTET STRING, - cpqSePciSlotBoardName DisplayString, - cpqSePciSlotWidth INTEGER, - cpqSePciSlotSpeed INTEGER, - cpqSePciSlotExtendedInfo INTEGER, - cpqSePciSlotType INTEGER, - cpqSePciSlotCurrentMode INTEGER, - cpqSePciMaxSlotSpeed INTEGER, - cpqSePciXMaxSlotSpeed INTEGER, - cpqSePciCurrentSlotSpeed INTEGER, - cpqSePciHwLocation DisplayString, - cpqSePciSlotIOCTablePtr INTEGER, - cpqSePciSlotHeaderType INTEGER, - cpqSePciIsSlot0Embedded INTEGER, - cpqSePcieSlotMaxLinkSpeed INTEGER, - cpqSePcieSlotMaxLinkWidth INTEGER - } - - cpqSePciSlotBusNumberIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely identifies this device on its PCI bus. - Values greater than 255 are considered dummy bus numbers for empty PCI slots. - For systems supporting multiple PCI segments, the segment will be encoded into the high order - word of this value (Bit16 to Bit31). If PCI segment is not supported, the high order word will be 0." - ::= { cpqSePciSlotEntry 1 } - - cpqSePciSlotDeviceNumberIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A number that uniquely identifies this device on its PCI bus." - ::= { cpqSePciSlotEntry 2 } - - cpqSePciPhysSlot OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical PCI slot number of this device. Embedded devices - will return 0 for this variable." - ::= { cpqSePciSlotEntry 3 } - - cpqSePciSlotSubSystemID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..7)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Uniquely identifies the board configured in this slot. A zero - length ID indicates the Subsystem ID is not supported and the - (Device ID/Vendor ID) should be used for identification purposes. - An ID of all 0xFFh indicates an empty slot." - ::= { cpqSePciSlotEntry 4 } - - cpqSePciSlotBoardName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The product name (or other suitable description) of this PCI - board. This field may be empty if no descriptive information - is known about the board." - ::= { cpqSePciSlotEntry 5 } - - cpqSePciSlotWidth OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - thirtyTwoBit(3), - sixtyFourBit(4), - oneTwentyEightBit(5), - x1(6), - x2(7), - x4(8), - x8(9), - x12(10), - x16(11), - x32(12) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum data width supported by this PCI slot." - ::= { cpqSePciSlotEntry 6 } - - cpqSePciSlotSpeed OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - thirtyThreeMHz(3), - sixtySixMHz(4) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The maximum speed supported by this PCI slot." - ::= { cpqSePciSlotEntry 7 } - - cpqSePciSlotExtendedInfo OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The PCI Extended Slot Information. - - This is a set of flags indicating extended features for the - PCI slot. Each bit has the following meaning when it is - set (1): - - Bit 0: Extended SCSI PCI Slot - Bit 1: PCI-X capable - Bits 2-31: reserved (set to 0) - - NOTE: bit 31 is the most significant bit, bit 0 is the least - significant." - ::= { cpqSePciSlotEntry 8 } - - cpqSePciSlotType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - pci(3), - pci66(4), - pcix(5), - pciexpress(6), - U2(7), - M2(8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of PCI the slot. - - This indicates the capability of the slot, not the currently - operating mode." - ::= { cpqSePciSlotEntry 9 } - - cpqSePciSlotCurrentMode OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - pci(3), - pci66(4), - pcix(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current operating mode of PCI/PCI-X slot. - - This indicates the current operating mode of the device in the - slot. If the slot is empty, this value would be unknown." - ::= { cpqSePciSlotEntry 10 } - - cpqSePciMaxSlotSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum speed in megahertz supported by this PCI slot. If - the slot also supports PCI-X, this value indicates the maximum - speed of the slot when a non-PCI-X adapter is used. - - An entry of 0 indicates the speed is unknown." - ::= { cpqSePciSlotEntry 11 } - - cpqSePciXMaxSlotSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum speed in megahertz supported by this PCI-X slot. - - An entry of 0 indicates the speed is unknown. An entry - of -1 indicates the slot does not support PCI-X." - ::= { cpqSePciSlotEntry 12 } - - cpqSePciCurrentSlotSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current speed in megahertz of the adapter in this PCI - or PCI-X slot. - - An entry of 0 indicates the speed is could not be determined or - the slot is empty." - ::= { cpqSePciSlotEntry 13 } - - cpqSePciHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the Peripheral Component - Interconnect (PCI) bus. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSePciSlotEntry 14 } - - cpqSePciSlotIOCTablePtr OBJECT-TYPE - SYNTAX INTEGER(0..19) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index for the I/O Chassis in cpqSePCISlotIOCTablePtr where this PCI slot is physically located." - ::= { cpqSePciSlotEntry 15 } - - cpqSePciSlotHeaderType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This represents header type byte of a PCI device" - ::= { cpqSePciSlotEntry 16 } - - cpqSePciIsSlot0Embedded OBJECT-TYPE - SYNTAX INTEGER { - true(1), - false(2) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This OID indicates whether PCI slot 0 is embedded in the machine or not." - ::= { cpqSePciSlotEntry 17 } - - cpqSePcieSlotMaxLinkSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the maximum link speed for the PCIe slot. An entry of 0 indicates - the maximum link speed could not be determined or the slot is not PCIe. - The unit is Mb/s." - ::= { cpqSePciSlotEntry 18 } - - cpqSePcieSlotMaxLinkWidth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the maximum link for the PCIe slot. Value N means N lanes. - An entry of 0 indicates the maximum link width could not be determined - or the slot is not PCIe." - ::= { cpqSePciSlotEntry 19 } - --- **************************************************************************** --- Standard Equipment PCI Function Table --- ===================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) --- cpqSePciFunctTable (1.3.6.1.4.1.232.1.2.13.2) --- --- **************************************************************************** - - cpqSePciFunctTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSePciFunctEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of PCI function information entries." - ::= { cpqSePci 2} - - cpqSePciFunctEntry OBJECT-TYPE - SYNTAX CpqSePciFunctEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of the functions in each PCI slot." - INDEX { cpqSePciFunctBusNumberIndex, cpqSePciFunctDeviceNumberIndex, - cpqSePciFunctIndex } - ::= { cpqSePciFunctTable 1 } - - CpqSePciFunctEntry ::= SEQUENCE { - cpqSePciFunctBusNumberIndex INTEGER, - cpqSePciFunctDeviceNumberIndex INTEGER, - cpqSePciFunctIndex INTEGER, - cpqSePciFunctClassCode OCTET STRING, - cpqSePciFunctClassDescription DisplayString, - cpqSePciFunctDeviceID INTEGER, - cpqSePciFunctVendorID INTEGER, - cpqSePciFunctRevID INTEGER, - cpqSePciFunctIntLine INTEGER, - cpqSePciFunctDevStatus INTEGER, - cpqSePciFunctHwLocation DisplayString, - cpqSePcieFunctNegotiatedLinkSpeed INTEGER, - cpqSePcieFunctNegotiatedLinkWidth INTEGER, - cpqSePcieFunctMaxLinkSpeed INTEGER, - cpqSePcieFunctMaxLinkWidth INTEGER - } - - cpqSePciFunctBusNumberIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The PCI bus number for this device function. - For systems supporting multiple PCI segments, the segment will be encoded into the high order - word of this value (Bit16 to Bit31). If PCI segment is not supported, the high order word will be 0." - ::= { cpqSePciFunctEntry 1 } - - cpqSePciFunctDeviceNumberIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The device index for this function." - ::= { cpqSePciFunctEntry 2 } - - cpqSePciFunctIndex OBJECT-TYPE - SYNTAX INTEGER (0..7) - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The unique index that specifies this function." - ::= { cpqSePciFunctEntry 3 } - - - cpqSePciFunctClassCode OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..3)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The class code register as defined in the PCI Local - Bus Specification in the following format: - Octet Register - ----- -------- - 1 Programming Interface - 2 Sub-class code - 3 Base class code" - ::= { cpqSePciFunctEntry 4 } - - cpqSePciFunctClassDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text string which describes the PCI Base Class and - Sub Class to which this device belongs. This field - may empty if no descriptive information is known about - this function`s class." - ::= { cpqSePciFunctEntry 5 } - - cpqSePciFunctDeviceID OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable identifies this particular device. This - identifier is allocated by the component manufacturer." - ::= { cpqSePciFunctEntry 6 } - - cpqSePciFunctVendorID OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable identifies the component manufacturer. Valid - identifiers are assigned by the PCI SIG." - ::= { cpqSePciFunctEntry 7 } - - cpqSePciFunctRevID OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable is a vendor defined extension to the device ID and - specifies a device specific revision identifier." - ::= { cpqSePciFunctEntry 8} - - cpqSePciFunctIntLine OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable specifies which input of the system interrupt - controller(s) the device`s interrupt pin is connected to. - A value of 0ffh means unknown or no connection." - ::= { cpqSePciFunctEntry 9} - - cpqSePciFunctDevStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - enabled(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the device described by this function. - Some PCI devices, such as embedded devices, have the - potential of being present but disabled. " - ::= { cpqSePciFunctEntry 10 } - - cpqSePciFunctHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the Peripheral Component - Interconnect (PCI) bus. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSePciFunctEntry 11 } - - cpqSePcieFunctNegotiatedLinkSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the negotiated link speed for the PCIe link of the PCI device. - An entry of 0 indicates the negotiated link speed could not be determined - or the device is not PCIe. The unit is Mb/s." - ::= { cpqSePciFunctEntry 12 } - - cpqSePcieFunctNegotiatedLinkWidth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the negotiated link width for the PCIe link of the device. - Value N means N lanes. An entry of 0 indicates the negotiated link width - could not be determined or the device is not PCIe." - ::= { cpqSePciFunctEntry 13 } - - cpqSePcieFunctMaxLinkSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the maximum link speed for the PCIe device. An entry of 0 indicates - the maximum link speed could not be determined or the device is not PCIe. - The unit is Mb/s." - ::= { cpqSePciFunctEntry 14 } - - cpqSePcieFunctMaxLinkWidth OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the maximum link width for the PCIe device. Value N means N lanes. - An entry of 0 indicates the maximum link width could not be determined - or the device is not PCIe." - ::= { cpqSePciFunctEntry 15 } - --- **************************************************************************** --- Standard Equipment PCI Base Memory Table --- ============================================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) --- cpqSePciMemoryTable (1.3.6.1.4.1.232.1.2.13.3) --- --- **************************************************************************** - cpqSePciMemoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSePciMemoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of PCI base memory entries" - ::= { cpqSePci 3} - - cpqSePciMemoryEntry OBJECT-TYPE - SYNTAX CpqSePciMemoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of the base memory usage in each function" - INDEX { cpqSePciMemoryBusNumberIndex, cpqSePciMemoryDeviceNumberIndex, - cpqSePciMemoryFunctionIndex, cpqSePciMemoryIndex } - ::= { cpqSePciMemoryTable 1 } - - CpqSePciMemoryEntry ::= SEQUENCE { - cpqSePciMemoryBusNumberIndex INTEGER, - cpqSePciMemoryDeviceNumberIndex INTEGER, - cpqSePciMemoryFunctionIndex INTEGER, - cpqSePciMemoryIndex INTEGER, - cpqSePciMemoryBaseAddr INTEGER, - cpqSePciMemoryType INTEGER, - cpqSePciMemorySize INTEGER, - cpqSePciMemoryHwLocation DisplayString - } - - cpqSePciMemoryBusNumberIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The PCI bus number for this memory entry. - For systems supporting multiple PCI segments, the segment will be encoded into the high order - word of this value (Bit16 to Bit31). If PCI segment is not supported, the high order word will be 0." - ::= { cpqSePciMemoryEntry 1 } - - cpqSePciMemoryDeviceNumberIndex OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The device index for this memory entry" - ::= { cpqSePciMemoryEntry 2 } - - cpqSePciMemoryFunctionIndex OBJECT-TYPE - SYNTAX INTEGER (0..7) - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The unique index that specifies the function associated - with this memory entry." - ::= { cpqSePciMemoryEntry 3 } - - cpqSePciMemoryIndex OBJECT-TYPE - SYNTAX INTEGER (0..6) - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The unique index that specifies this memory entry. " - ::= { cpqSePciMemoryEntry 4 } - - cpqSePciMemoryBaseAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Base address of this memory usage entry." - ::= { cpqSePciMemoryEntry 5 } - - cpqSePciMemoryType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - io(2), - memory-mapped(3), - exp-rom(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of memory this entry describes. This variable - is used to determine if this memory entry maps into - memory, expansion rom or I/O space." - ::= { cpqSePciMemoryEntry 6 } - - cpqSePciMemorySize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable specifies how much address space this function - requires. A value of 0 will be returned if the agent cannot - obtain this information." - ::= { cpqSePciMemoryEntry 7 } - - cpqSePciMemoryHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the Peripheral Component - Interconnect (PCI) bus. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSePciMemoryEntry 8 } - - cpqSePciSegmentMode OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - single-segment(2), - multi-segment(3), - auto-segment(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The PCI segment mode of the system, if supported." - ::= { cpqSePci 4 } - cpqSePciePhySlot OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical PCIe slot number of this device." - ::= { cpqSePci 5 } --- **************************************************************************** --- Standard Equipment PC Card Group --- ======================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePCCard Group (1.3.6.1.4.1.232.1.2.14) --- cpqSePCCardSlotTable (1.3.6.1.4.1.232.1.2.14.1) --- --- The PC Card Group provides a set of tables and variables that detail the --- configuration information about the PC Card slot architecture. The PC --- Card Slots are connected via a dedicated bridge off the PCI local bus --- which allows 16-bit and/or 32-bit expansion slots. --- --- Implementation of the cpqSePCCard group is optional for desktop and --- server platforms but mandatory for portables. --- **************************************************************************** - - cpqSePCCardSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSePCCardSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of PC Card slot information entries." - ::= { cpqSePCCard 1} - - cpqSePCCardSlotEntry OBJECT-TYPE - SYNTAX CpqSePCCardSlotEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A PC Card slot description table entry. - A table entry is defined for each PC Card Slot in the - current system configuration." - INDEX { cpqSePCCardSlotIndex} - ::= { cpqSePCCardSlotTable 1 } - - CpqSePCCardSlotEntry ::= SEQUENCE { - cpqSePCCardSlotIndex INTEGER, - cpqSePCCardCondition INTEGER, - cpqSePCCardPhysLocation DisplayString, - cpqSePCCardSlotType INTEGER, - cpqSePCCardSlotWidth INTEGER, - cpqSePCCardSlotThermalCapacity INTEGER, - cpqSePCCardSlotThermalSensor INTEGER, - cpqSePCCardSlotPowerState INTEGER, - cpqSePCCardStatus INTEGER, - cpqSePCCardDeviceInfo DisplayString, - cpqSePCCardProductInfo DisplayString, - cpqSePCCardSerialNumber DisplayString, - cpqSePCCardAssetTag DisplayString - } - - cpqSePCCardSlotIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the logical PC Card slot number for this PC Card Slot. - In addition, the slot number serves as the index into the - PC Card data table. Typical index ranges will be either 1 to - 4 (for 4 slots) or 1 to 2 (for 2 slots). (Un)Docking may - cause the supported index range to change dynamically." - ::= { cpqSePCCardSlotEntry 1 } - - cpqSePCCardCondition OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the overall condition of the PC Card. - The supported values are defined as follows: - - unknown(1) - The current condition is unknown for the PC Card or PC Card Slot. - - ok(2) - PC Card operations are normal. - No user action required. - - degraded (3) - PC Card operations have degraded. - Consult the cpqSePCCardStatus field for recommended actions. - - failed (4) - PC Card operations have failed. - Consult the cpqSePCCardStatus field for recommended actions." - ::= { cpqSePCCardSlotEntry 2 } - - - cpqSePCCardPhysLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..40)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the user level PC Card Slot location description. - Text strings supported are: - - System Unit Top Slot, - - System Unit Bottom Slot, - - Docking Station Top Slot, - - Docking Station Bottom Slot." - ::= { cpqSePCCardSlotEntry 3 } - - cpqSePCCardSlotType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the PC Card Slot capabilities. - This is a bit mapped value defined by DMI Mobile Supplement for the System Slots Group, - Slot Type. Bits of interest for PC Card support are: - Bit 6 - PCMCIA slot (if set), - Bit 13 - 16 bit PC Card capable (if set), - Bit 14 - CardBus PC Card capable (if set), - Bit 15 - ZV Port capable (if set), - Bit 16 - Modem Ring Resume capable (if set), - All other bits should be zero (reset) for PC Card slots." - ::= { cpqSePCCardSlotEntry 4 } - - cpqSePCCardSlotWidth OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - width8bit(3), - width16bit(4), - width32bit(5), - width64bit(6), - width128bit(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the maximum bus width for this PC Card Slot. - The supported values are defined as follows: - - Other (1) - Value is not in defined list. - - Unknown (2) - Actual value is not known. - - width 8 bit (3) - Bus is 8 bits wide. - - width 16 bit (4) - Bus is 16 bits wide. - - width 32 bit (5) - Bus is 32 bits wide. - - width 64 bit (6) - Bus is 64 bits wide. - - width 128 bit (7) - Bus is 128 bits wide." - ::= { cpqSePCCardSlotEntry 5 } - - - cpqSePCCardSlotThermalCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the maximum thermal dissipation capacity (milliwatts) - for this PC Card Slot. A value of zero indicates the thermal - capacity is unknown. A non-zero value indicates the thermal - capacity in milliwatts." - ::= { cpqSePCCardSlotEntry 6 } - - cpqSePCCardSlotThermalSensor OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the Thermal Sensor ID that monitors this PC Card Slot. - A value of zero indicates that a sensor is not present or - unknown for this slot. A non-zero value indicates the sensor - ID as defined by the platform firmware." - ::= { cpqSePCCardSlotEntry 7 } - - cpqSePCCardSlotPowerState OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - on(2), - off(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the current power state (On/Off) for this PC Card Slot. - The supported values are defined as follows: - - unknown (1) - Current power state is unknown. - - on (2) - Power is currently on. - - off (3) - Power is currently off." - ::= { cpqSePCCardSlotEntry 8 } - - cpqSePCCardStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - thermalDegraded(3), - thermalFailure(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the operating status for the card in this PC Card Slot. - The supported values are defined as follows: - - unknown (1) - The current status is not known for the PC Card or - PC Card Slot. - - ok (2) - PC Card operations are normal. - No user action required. - - thermalDegraded (3) - PC Card operations have degraded due to unsafe thermal - conditions. - Recommended Actions include: - Discontinue the use of the PC Card as soon as - possible. If a Modem or LAN card then close - all communication applications/links. If a - Memory, ATA, or SCSI device then close all - open/related files. Remove PC Card from slot - after use is discontinued, if possible. - - thermalFailure (4) - PC Card operations have failed due to unsafe thermal - conditions. The PC Card will automatically be powered - off to protect itself and the system. - Recommended Actions include: - Discontinue the use of the PC Card immediately. - If a Modem or LAN card then close all communication applications/links. - If a Memory, ATA, or SCSI device then close all open/related files. - Remove PC Card from slot after use is discontinued, if possible." - ::= { cpqSePCCardSlotEntry 9 } - - cpqSePCCardDeviceInfo OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the PC Card Manufacturer / Device information for - the card in this PC Card Slot. The returned string data is - read from the PC Card`s onboard Card Information Structure - (CIS)." - ::= { cpqSePCCardSlotEntry 10 } - - cpqSePCCardProductInfo OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the PC Card Model / Part Number information for - the card in this PC Card Slot. The returned string data - is read from the PC Card`s onboard Card Information - Structure (CIS)." - ::= { cpqSePCCardSlotEntry 11 } - - cpqSePCCardSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the PC Card Serial Number information for the - card in this PC Card Slot. The returned string data is - read from the PC Card`s onboard Card Information Structure - (CIS)." - ::= { cpqSePCCardSlotEntry 12 } - - cpqSePCCardAssetTag OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the PC Card Asset Tag information for the card in - this PC Card Slot. The returned string data is read from - the PC Card`s onboard Card Information Structure (CIS)." - ::= { cpqSePCCardSlotEntry 13 } - --- **************************************************************************** --- Standard Equipment USB Port Table --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeUSBPort Group (1.3.6.1.4.1.232.1.2.15) --- cpqSeUSBPortTable (1.3.6.1.4.1.232.1.2.15.1) --- --- The cpqSeUSBPort group lists the physical USB ports in the system. --- --- Implementation of the cpqSeUSBPort group is optional. --- Support for the cpqSeUSBPort group is MANDATORY for all systems that --- contain a USB bus. --- --- **************************************************************************** - - cpqSeUSBPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeUSBPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of USB built-in port descriptions containing one entry - for each physical USB connector shipped on the system. - Add-in USB ports are not reflected in this table." - ::= { cpqSeUSBPort 1 } - - cpqSeUSBPortEntry OBJECT-TYPE - SYNTAX CpqSeUSBPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A description of a USB port." - INDEX { cpqSeUSBPortIndex } - ::= { cpqSeUSBPortTable 1 } - - CpqSeUSBPortEntry ::= SEQUENCE { - cpqSeUSBPortIndex INTEGER, - cpqSeUSBPortType INTEGER, - cpqSeUSBPortHwLocation DisplayString, - cpqSeUSBPortStatus INTEGER, - cpqSeUSBPortDeviceName DisplayString, - cpqSeUSBPortDeviceCapacity INTEGER, - cpqSeUSBPortDeviceManufacturer DisplayString, - cpqSeUSBPortDeviceModel DisplayString, - cpqSeUSBPortDeviceFWVersion DisplayString, - cpqSeUSBPortDeviceSerialNumber DisplayString, - cpqSeUSBPortDevicePartNumber DisplayString, - cpqSeUSBPortDeviceCount INTEGER, - cpqSeUSBPortDeviceReadErrorCount OCTET STRING, - cpqSeUSBPortDeviceWriteErrorCount OCTET STRING, - cpqSeUSBPortDeviceReadThreshold OCTET STRING, - cpqSeUSBPortDeviceWriteThreshold OCTET STRING, - cpqSeUSBPortDeviceStatus INTEGER, - cpqSeUSBPortDeviceFeature INTEGER, - cpqSeUSBPortDeviceFailedSlot INTEGER, - cpqSeUSBPortDeviceLastSlotWithError INTEGER, - cpqSeUSBPortDeviceFaultTolerance INTEGER, - cpqSeUSBPortDevicePresent OCTET STRING - } - - cpqSeUSBPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely specifies this entry." - ::= { cpqSeUSBPortEntry 1 } - - - cpqSeUSBPortType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - usbPort(2), - sdPort(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port type. - The supported values are defined as follows: - - other (1) - USB/SD port data is not available. - - usbPort (2) - The port is a USB Port. - - usbPort (3) - The port is a SD Port." - ::= { cpqSeUSBPortEntry 2 } - - cpqSeUSBPortHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location, on complex - multi SBB hardware only, for the USB port. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSeUSBPortEntry 3 } - - cpqSeUSBPortStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - notPopulated(2), - populated(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port status. - The supported values are defined as follows: - - other (1) - USB/SD port is not available. - - notPopulated (2) - The port is a USB/SD Port is not populated. - - populated (3) - The port is a USB/SD Port is populated." - ::= { cpqSeUSBPortEntry 4 } - - cpqSeUSBPortDeviceName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the USB/SD port device name. - A NULL string indicates that the device name could not - be determined or is irrelevant." - ::= { cpqSeUSBPortEntry 5 } - - cpqSeUSBPortDeviceCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The capacity of the USB/SD device in megabytes. - Value 0 indicates the device capacity could not - be determined." - ::= { cpqSeUSBPortEntry 6 } - - cpqSeUSBPortDeviceManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the USB/SD port device Manufacturer/Vendor name. - A NULL string indicates that the Manufacturer/Vendor name could not - be determined or is irrelevant." - ::= { cpqSeUSBPortEntry 7 } - - cpqSeUSBPortDeviceModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the USB/SD port device Model name. - A NULL string indicates that the Model name could not - be determined or is irrelevant." - ::= { cpqSeUSBPortEntry 8 } - - cpqSeUSBPortDeviceFWVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "USB/SD Device Firmware Version. - A NULL string indicates that the USB/SD Device Firmware Version could not - be determined or is irrelevant." - ::= { cpqSeUSBPortEntry 9 } - - cpqSeUSBPortDeviceSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "USB/SD device Serial Number. - A NULL string indicates that the Serial Number could not - be determined or is irrelevant." - ::= { cpqSeUSBPortEntry 10 } - - cpqSeUSBPortDevicePartNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the USB/SD device hardware part number." - ::= { cpqSeUSBPortEntry 11 } - - cpqSeUSBPortDeviceCount OBJECT-TYPE - SYNTAX INTEGER (0..2) - ACCESS read-only - STATUS optional - DESCRIPTION - "The number of flash media devices - attached to this USB port." - ::= { cpqSeUSBPortEntry 12 } - - cpqSeUSBPortDeviceReadErrorCount OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS optional - DESCRIPTION - "An array of octets corresponding to the number of - Read Errors on each flash media device - attached to this USB Port." - ::= { cpqSeUSBPortEntry 13 } - - cpqSeUSBPortDeviceWriteErrorCount OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS optional - DESCRIPTION - "An array of octets corresponding to the number of - Write Errors on each flash media device - attached to this USB Port." - ::= { cpqSeUSBPortEntry 14 } - - cpqSeUSBPortDeviceReadThreshold OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS optional - DESCRIPTION - "An array of octets corresponding to the - Read Threshold on each flash media device - attached to this USB Port." - ::= { cpqSeUSBPortEntry 15 } - - cpqSeUSBPortDeviceWriteThreshold OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS optional - DESCRIPTION - "An array of octets corresponding to the - Write Threshold on each flash media device - attached to this USB Port." - ::= { cpqSeUSBPortEntry 16 } - - cpqSeUSBPortDeviceStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The USB/SD Device status. - The supported values are defined as follows: - - other (1) - USB/SD device status is unknown. - - ok (2) - The USB/SD device status is OK. For the HP Dual MicroSD EM - USB Kit, both SD cards are OK and in redundant config. - - degraded (3) - The USB/SD device status is degraded. For the HP Dual - MicroSD EM, one of the SD cards has failed and redundancy - is lost. - - failed (4) - The USB/SD device status is failed. For the HP Dual - MicroSD EM, both SD cards have failed." - - ::= { cpqSeUSBPortEntry 17 } - - cpqSeUSBPortDeviceFeature OBJECT-TYPE - SYNTAX INTEGER { - -- none(0), - redundancy-capable(1), - standard(2) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The USB/SD Device advanced features. - The supported values are defined as follows: - - none (0) -- deprecated in 10.20 - USB/SD device is a standard device with no advanced features. - - redundancy-capable (1) - The USB/SD device is Redundancy-capable. - - standard (2) - USB/SD device is a standard device with no advanced features." - - ::= { cpqSeUSBPortEntry 18 } - - cpqSeUSBPortDeviceFailedSlot OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Identifies the slot location of the flash media device attached to this port - that failed and needs to be replaced on redundancy-capable devices. - A value of -1 indicates that there is no failed flash media device - attached to this port or the location could not be determined." - ::= { cpqSeUSBPortEntry 19 } - - cpqSeUSBPortDeviceLastSlotWithError OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Identifies the slot location of the flash media device attached to this port - that was the last one with a read or write error detected on redundancy-capable devices. - A value of -1 indicates that none of the flash media devices attached to this port - have any read or write error or the location could not be determined." - ::= { cpqSeUSBPortEntry 20 } - - cpqSeUSBPortDeviceFaultTolerance OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - none(2), - mirroring(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "USB/SD Device Fault Tolerance for the HP Dual MicroSD EM USB Kit. - - This shows the fault tolerance mode of the HP Dual MicroSD EM USB Kit. - The following values are valid for Fault Tolerance: - - None (2) - Fault tolerance is not enabled. If read or write errors occur on the - primary SD card or if it fails, the data cannot be recovered. - - Mirroring - RAID 1 (3) - Both SD cards contain identical data. If read or write errors occur - on one SD card or if it fails, the data can be retrieved from the mirror SD card." - ::= { cpqSeUSBPortEntry 21 } - - cpqSeUSBPortDevicePresent OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2)) - ACCESS read-only - STATUS optional - DESCRIPTION - "An array of octets corresponding to a value indicating the physical - presence of the flash media device. - A value of zero (0) indicates the flash media for the specified - slot is absent. A value of one (1) indicates the flash media - for the specified slot is present. " - ::= { cpqSeUSBPortEntry 22 } - - --- **************************************************************************** --- Standard Equipment Cell Table --- ============================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeCell (1.3.6.1.4.1.232.1.2.16) --- --- A cell is equivalent to a single board computer. --- --- --- **************************************************************************** - - cpqSeCellTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeCellEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A list of cells in the partition." - ::= { cpqSeCell 1 } - - cpqSeCellEntry OBJECT-TYPE - SYNTAX CpqSeCellEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A description of a cell in the system." - INDEX { cpqSeCellUnitIndex } - ::= { cpqSeCellTable 1 } - - CpqSeCellEntry ::= SEQUENCE { - cpqSeCellUnitIndex INTEGER, - cpqSeCellCabinetNumber INTEGER, - cpqSeCellCellNumber INTEGER, - cpqSeCellIOCTablePtr INTEGER, - cpqSeCellPDHCFirmwareRevision DisplayString, - cpqSeCellSysFwVersion DisplayString, - cpqSeCellBootInhibited TruthValue, - cpqSeCellToScanBusConnectionStatus INTEGER, - cpqSeCellHasCoreIO TruthValue, - cpqSeCellBoardSpeed INTEGER, - cpqSeCellPresent TruthValue, - cpqSeCellHasPower TruthValue, - cpqSeCellReadyForReconfig TruthValue, - cpqSeCellTotalMemory INTEGER, - cpqSeCellLEDState INTEGER, - cpqSeCellState INTEGER, - cpqSeCellCLMRequestPercentage INTEGER, - cpqSeCellCLMRequestSize INTEGER, - cpqSeCellCLMAllocatedSize INTEGER, - cpqSeCellInterleaveAllocatedSize INTEGER, - cpqSeCellHasInterleaveMem INTEGER, - cpqSeCellSerialNumber DisplayString, - cpqSeCellCLMCondition INTEGER - } - - cpqSeCellUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..15) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is a number that uniquely specifies the cell." - ::= { cpqSeCellEntry 1 } - - cpqSeCellCabinetNumber OBJECT-TYPE - SYNTAX INTEGER (0..1) - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents the cabinet that the cell belongs to." - ::= { cpqSeCellEntry 2 } - - cpqSeCellCellNumber OBJECT-TYPE - SYNTAX INTEGER (0..7) - ACCESS read-only - STATUS optional - DESCRIPTION - "This value is cell/slot number that is unique across the cabinet." - ::= { cpqSeCellEntry 3 } - - cpqSeCellIOCTablePtr OBJECT-TYPE - SYNTAX INTEGER (0..19) - ACCESS read-only - STATUS optional - DESCRIPTION - "Table index for the I/O chassis which is connected to this cell." - ::= { cpqSeCellEntry 4 } - - cpqSeCellPDHCFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "HP SAL Revision" - ::= { cpqSeCellEntry 5 } - - cpqSeCellSysFwVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the revision of system firmware on the cell board" - ::= { cpqSeCellEntry 6 } - - cpqSeCellBootInhibited OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value indicates whether the cell is active." - ::= { cpqSeCellEntry 7 } - - cpqSeCellToScanBusConnectionStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This bitmap represents the state of cell to scan - bus connection/RIO cable state. - - if bit 6 is set to 1, Cable port swapped. - if bit 5 is set to 1, Cable ID mismatched. - if bit 4 is set to 1, Output Cable parity error. - if bit 3 is set to 1, Output Cable detached. - if bit 2 is set to 1, Input Cable parity error. - if bit 1 is set to 1, Input Cable detached. - if bit 0 is set to 1, Connection valid." - ::= { cpqSeCellEntry 8 } - - cpqSeCellHasCoreIO OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value indicates whether the cell has core I/O attached to it." - ::= { cpqSeCellEntry 9 } - - cpqSeCellBoardSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents the speed of the cell board/FSB ratio" - ::= { cpqSeCellEntry 10 } - - cpqSeCellPresent OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents whether there is a cell in the slot" - ::= { cpqSeCellEntry 11 } - - cpqSeCellHasPower OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents whether the cell has power" - ::= { cpqSeCellEntry 12 } - - cpqSeCellReadyForReconfig OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents whether the cell is ready for reconfiguration" - ::= { cpqSeCellEntry 13 } - - cpqSeCellTotalMemory OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents total memory in the cell" - ::= { cpqSeCellEntry 14 } - - cpqSeCellLEDState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "This value represents state of the cell LED. - This is a bit-mapped value defined as follows. - Bit 31..30 = 00, LED 3 is Off - = 01, LED 3 is On - = 10, LED 3 is Blinking - = 11, For LED 3 future use - - Bit 29..27 = 000, LED 3 is Red - = 001, LED 3 is Yellow - = 010, LED 3 is Green - = 011, LED 3 is Blue - = 100, For LED 3 future use - = 101, For LED 3 future use - = 110, For LED 3 future use - = 111, For LED 3 future use - - Bit 26..24 = 000, LED 3 indicates Power - = 001, LED 3 indicates Run - = 010, LED 3 indicates Attention - = 011, LED 3 indicates Fault - = 100, For LED 3 future use - = 101, For LED 3 future use - = 110, For LED 3 future use - = 111, For LED 3 future use - - Bit 23..22 = 00, LED 2 is Off - = 01, LED 2 is On - = 10, LED 2 is Blinking - = 11, For LED 2 future use - - Bit 21..19 = 000, LED 2 is Red - = 001, LED 2 is Yellow - = 010, LED 2 is Green - = 011, LED 2 is Blue - = 100, For LED 2 future use - = 101, For LED 2 future use - = 110, For LED 2 future use - = 111, For LED 2 future use - - Bit 18..16 = 000, LED 2 indicates Power - = 001, LED 2 indicates Run - = 010, LED 2 indicates Attention - = 011, LED 2 indicates Fault - = 100, For LED 2 future use - = 101, For LED 2 future use - = 110, For LED 2 future use - = 111, For LED 2 future use - - Bit 15..14 = 00, LED 1 is Off - = 01, LED 1 is On - = 10, LED 1 is Blinking - = 11, For LED 1 future use - - Bit 13..11 = 000, LED 1 is Red - = 001, LED 1 is Yellow - = 010, LED 1 is Green - = 011, LED 1 is Blue - = 100, For LED 1 future use - = 101, For LED 1 future use - = 110, For LED 1 future use - = 111, For LED 1 future use - - Bit 10..8 = 000, LED 1 indicates Power - = 001, LED 1 indicates Run - = 010, LED 1 indicates Attention - = 011, LED 1 indicates Fault - = 100, For LED 1 future use - = 101, For LED 1 future use - = 110, For LED 1 future use - = 111, For LED 1 future use - - Bit 7..6 = 00, LED 0 is Off - = 01, LED 0 is On - = 10, LED 0 is Blinking - = 11, For LED 0 future use - - Bit 5..3 = 000, LED 0 is Red - = 001, LED 0 is Yellow - = 010, LED 0 is Green - = 011, LED 0 is Blue - = 100, For LED 0 future use - = 101, For LED 0 future use - = 110, For LED 0 future use - = 111, For LED 0 future use - - Bit 2..0 = 000, LED 0 indicates Power - = 001, LED 0 indicates Run - = 010, LED 0 indicates Attention - = 011, LED 0 indicates Fault - = 100, For LED 0 future use - = 101, For LED 0 future use - = 110, For LED 0 future use - = 111, For LED 0 future use " - ::= { cpqSeCellEntry 15 } - - cpqSeCellState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "This value represents state of the cell" - ::= { cpqSeCellEntry 16 } - - cpqSeCellCLMRequestPercentage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The requested percentage of CLM memory to be configured in the cell." - ::= { cpqSeCellEntry 17 } - - cpqSeCellCLMRequestSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of requested CLM memory in the cell in kilobytes." - ::= { cpqSeCellEntry 18 } - - cpqSeCellCLMAllocatedSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of allocated CLM memory in the cell in kilobytes." - ::= { cpqSeCellEntry 19 } - - cpqSeCellInterleaveAllocatedSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of allocated interleaved memory in the cell - in kilobytes." - ::= { cpqSeCellEntry 20 } - - cpqSeCellHasInterleaveMem OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "When set indicates that there is an interleaved memory - configured in the cell." - ::= { cpqSeCellEntry 21 } - - cpqSeCellSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the cell board serial number." - ::= { cpqSeCellEntry 22 } - - cpqSeCellCLMCondition OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The CLM (Cell Local Memory) settings condition of this cell." - ::= { cpqSeCellEntry 23 } - - --- **************************************************************************** --- Standard Equipment I/O Chassis Table --- ================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeIOCTable (1.3.6.1.4.1.232.1.2.17) --- --- An I/O chassis contains PCI devices on the system --- --- --- **************************************************************************** - - cpqSeIOCTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeIOCEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A list of I/O chassis in the partition." - ::= { cpqSeIOC 1 } - - cpqSeIOCEntry OBJECT-TYPE - SYNTAX CpqSeIOCEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A description of an I/O chassis in the system." - INDEX { cpqSeIOCUnitIndex } - ::= { cpqSeIOCTable 1 } - - CpqSeIOCEntry ::= SEQUENCE { - cpqSeIOCUnitIndex INTEGER, - cpqSeIOCCabinetNumber INTEGER, - cpqSeIOCBayNumber INTEGER, - cpqSeIOCIOCNumber INTEGER, - cpqSeIOCPowerState INTEGER, - cpqSeIOCLEDState INTEGER - } - - cpqSeIOCUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..19) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is a number that uniquely specifies the I/O chassis." - ::= { cpqSeIOCEntry 1 } - - cpqSeIOCCabinetNumber OBJECT-TYPE - SYNTAX INTEGER (0..255) - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents the cabinet that the I/O chassis belongs to. - The default value is 255 if the cabinet number can not be obtained." - ::= { cpqSeIOCEntry 2 } - - cpqSeIOCBayNumber OBJECT-TYPE - SYNTAX INTEGER (0..2) - ACCESS read-only - STATUS optional - DESCRIPTION - "This value indicates the bay in the cabinet where the I/O chassis resides." - ::= { cpqSeIOCEntry 3 } - - cpqSeIOCIOCNumber OBJECT-TYPE - SYNTAX INTEGER (0..1) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the I/O chassis number that is unique across the bay." - ::= { cpqSeIOCEntry 4 } - - cpqSeIOCPowerState OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - powered-off(2), - powered-on(3) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "This value indicates I/O chassis power state." - ::= { cpqSeIOCEntry 5 } - - cpqSeIOCLEDState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "This value represents the state of a IO Chassis LED. - This is a bit-mapped value defined as follows. - Bit 31..30 = 00, LED 3 is Off - = 01, LED 3 is On - = 10, LED 3 is Blinking - = 11, For LED 3 future use - - Bit 29..27 = 000, LED 3 is Red - = 001, LED 3 is Yellow - = 010, LED 3 is Green - = 011, LED 3 is Blue - = 100, For LED 3 future use - = 101, For LED 3 future use - = 110, For LED 3 future use - = 111, For LED 3 future use - - Bit 26..24 = 000, LED 3 indicates Power - = 001, LED 3 indicates Run - = 010, LED 3 indicates Attention - = 011, LED 3 indicates Fault - = 100, For LED 3 future use - = 101, For LED 3 future use - = 110, For LED 3 future use - = 111, For LED 3 future use - - Bit 23..22 = 00, LED 2 is Off - = 01, LED 2 is On - = 10, LED 2 is Blinking - = 11, For LED 2 future use - - Bit 21..19 = 000, LED 2 is Red - = 001, LED 2 is Yellow - = 010, LED 2 is Green - = 011, LED 2 is Blue - = 100, For LED 2 future use - = 101, For LED 2 future use - = 110, For LED 2 future use - = 111, For LED 2 future use - - Bit 18..16 = 000, LED 2 indicates Power - = 001, LED 2 indicates Run - = 010, LED 2 indicates Attention - = 011, LED 2 indicates Fault - = 100, For LED 2 future use - = 101, For LED 2 future use - = 110, For LED 2 future use - = 111, For LED 2 future use - - Bit 15..14 = 00, LED 1 is Off - = 01, LED 1 is On - = 10, LED 1 is Blinking - = 11, For LED 1 future use - - Bit 13..11 = 000, LED 1 is Red - = 001, LED 1 is Yellow - = 010, LED 1 is Green - = 011, LED 1 is Blue - = 100, For LED 1 future use - = 101, For LED 1 future use - = 110, For LED 1 future use - = 111, For LED 1 future use - - Bit 10..8 = 000, LED 1 indicates Power - = 001, LED 1 indicates Run - = 010, LED 1 indicates Attention - = 011, LED 1 indicates Fault - = 100, For LED 1 future use - = 101, For LED 1 future use - = 110, For LED 1 future use - = 111, For LED 1 future use - - Bit 7..6 = 00, LED 0 is Off - = 01, LED 0 is On - = 10, LED 0 is Blinking - = 11, For LED 0 future use - - Bit 5..3 = 000, LED 0 is Red - = 001, LED 0 is Yellow - = 010, LED 0 is Green - = 011, LED 0 is Blue - = 100, For LED 0 future use - = 101, For LED 0 future use - = 110, For LED 0 future use - = 111, For LED 0 future use - - Bit 2..0 = 000, LED 0 indicates Power - = 001, LED 0 indicates Run - = 010, LED 0 indicates Attention - = 011, LED 0 indicates Fault - = 100, For LED 0 future use - = 101, For LED 0 future use - = 110, For LED 0 future use - = 111, For LED 0 future use " - ::= { cpqSeIOCEntry 6 } - --- **************************************************************************** --- Standard Equipment Partition Structure --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePartition (1.3.6.1.4.1.232.1.2.18) --- --- A partition can have many cells spread across cabinets. --- --- --- **************************************************************************** - - cpqSePartitionTotalCPU OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the number of logical CPUs in the partition. Zero will be returned - if the value can not be determined." - ::= { cpqSePartition 1 } - - cpqSePartitionAvailableCellSlots OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the number of available cell slots in the partition. - Zero will be returned if the value can not be determined." - ::= { cpqSePartition 2 } - - cpqSePartitionInstalledCells OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the number of installed cells in the partition. Zero - will be returned if the value can not be determined." - ::= { cpqSePartition 3 } - - cpqSePartitionPoweredOnCells OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This denotes the number of powered on cells in the partition. - Zero will be returned if the value can not be determined." - ::= { cpqSePartition 4 } - - cpqSePartitionReadyForReconfigCells OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents the cells that are ready for reconfiguration. - Zero will be returned if the value can not be determined." - ::= { cpqSePartition 5 } - - cpqSePartitionMemInterleavingType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents memory interleaving type for the partition. - Zero will be returned if the value can not be determined." - ::= { cpqSePartition 6} - - cpqSePartitionName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents the partition name." - ::= { cpqSePartition 7} - - cpqSePartitionCoreCell OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The cell slot number of the partition`s core cell." - ::= { cpqSePartition 8} - - cpqSePartitionCoreCellCabinet OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The cabinet number of the partition`s core cell." - ::= { cpqSePartition 9} - - cpqSePartitionCLMRequestPercentage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The requested percentage of CLM memory to be configured in the - partition." - ::= { cpqSePartition 10} - - cpqSePartitionCLMRequestSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of requested CLM memory in the partition in kilobytes." - ::= { cpqSePartition 11} - - cpqSePartitionCLMAllocatedSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of allocated CLM memory in the partition in - kilobytes." - ::= { cpqSePartition 12} - - cpqSePartitionInterleaveAllocatedSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of allocated interleaved memory in the partition - in kilobytes." - ::= { cpqSePartition 13} - - cpqSePartitionHasInterleaveMem OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "When set, it indicates that there is an interleaved memory - configured in the partition." - ::= { cpqSePartition 14} - - cpqSePartitionNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents the logical partition number of the current - partition in the complex." - ::= { cpqSePartition 15} - --- **************************************************************************** --- Standard Equipment Cabinet Table --- ============================= --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeCabinetTable (1.3.6.1.4.1.232.1.2.19) --- --- A cabinet contains many cells and/or I/O chassis --- --- --- **************************************************************************** - - cpqSeCabinetTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeCabinetEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A list of cabinets that contain cells in the partition." - ::= { cpqSeCabinet 1 } - - cpqSeCabinetEntry OBJECT-TYPE - SYNTAX CpqSeCabinetEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A description of a cabinet in the system." - INDEX { cpqSeCabinetUnitIndex } - ::= { cpqSeCabinetTable 1 } - - CpqSeCabinetEntry ::= SEQUENCE { - cpqSeCabinetUnitIndex INTEGER, - cpqSeCabinetCPULED TruthValue, - cpqSeCabinetIOXLED TruthValue, - cpqSeCabinetTypeNum INTEGER, - cpqSeCabinetLED INTEGER - } - - cpqSeCabinetUnitIndex OBJECT-TYPE - SYNTAX INTEGER (0..3) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is a number that uniquely specifies the cabinet." - ::= { cpqSeCabinetEntry 1 } - - cpqSeCabinetCPULED OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents the on/off state of compute cabinet LED." - ::= { cpqSeCabinetEntry 2 } - - cpqSeCabinetIOXLED OBJECT-TYPE - SYNTAX TruthValue - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents the on/off state of IOX cabinet LED." - ::= { cpqSeCabinetEntry 3 } - - cpqSeCabinetTypeNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This value represents type and number of a compute or IOX cabinet. - Bit 31..16 = 0x0000, type of cabinet is Thin Boy - Bit 31..16 = 0x0001, type of cabinet is Fat Boy - Bit 31..16 = 0x0002, type of cabinet is Dome Lite - Bit 31..16 = 0x0003, type of cabinet is Key Stone - Bit 31..16 = 0x0004, type of cabinet is Matter Horn - Bit 31..16 = 0x0080, type of cabinet is IOX - Bit 15..0, represents the compute cabinet number." - ::= { cpqSeCabinetEntry 4 } - - cpqSeCabinetLED OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "This value represents the state of a cabinet LED. - This is a bit-mapped value defined as follows. - Bit 31..30 = 00, LED 3 is Off - = 01, LED 3 is On - = 10, LED 3 is Blinking - = 11, For LED 3 future use - - Bit 29..27 = 000, LED 3 is Red - = 001, LED 3 is Yellow - = 010, LED 3 is Green - = 011, LED 3 is Blue - = 100, For LED 3 future use - = 101, For LED 3 future use - = 110, For LED 3 future use - = 111, For LED 3 future use - - Bit 26..24 = 000, LED 3 indicates Power - = 001, LED 3 indicates Run - = 010, LED 3 indicates Attention - = 011, LED 3 indicates Fault - = 100, For LED 3 future use - = 101, For LED 3 future use - = 110, For LED 3 future use - = 111, For LED 3 future use - - Bit 23..22 = 00, LED 2 is Off - = 01, LED 2 is On - = 10, LED 2 is Blinking - = 11, For LED 2 future use - - Bit 21..19 = 000, LED 2 is Red - = 001, LED 2 is Yellow - = 010, LED 2 is Green - = 011, LED 2 is Blue - = 100, For LED 2 future use - = 101, For LED 2 future use - = 110, For LED 2 future use - = 111, For LED 2 future use - - Bit 18..16 = 000, LED 2 indicates Power - = 001, LED 2 indicates Run - = 010, LED 2 indicates Attention - = 011, LED 2 indicates Fault - = 100, For LED 2 future use - = 101, For LED 2 future use - = 110, For LED 2 future use - = 111, For LED 2 future use - - Bit 15..14 = 00, LED 1 is Off - = 01, LED 1 is On - = 10, LED 1 is Blinking - = 11, For LED 1 future use - - Bit 13..11 = 000, LED 1 is Red - = 001, LED 1 is Yellow - = 010, LED 1 is Green - = 011, LED 1 is Blue - = 100, For LED 1 future use - = 101, For LED 1 future use - = 110, For LED 1 future use - = 111, For LED 1 future use - - Bit 10..8 = 000, LED 1 indicates Power - = 001, LED 1 indicates Run - = 010, LED 1 indicates Attention - = 011, LED 1 indicates Fault - = 100, For LED 1 future use - = 101, For LED 1 future use - = 110, For LED 1 future use - = 111, For LED 1 future use - - Bit 7..6 = 00, LED 0 is Off - = 01, LED 0 is On - = 10, LED 0 is Blinking - = 11, For LED 0 future use - - Bit 5..3 = 000, LED 0 is Red - = 001, LED 0 is Yellow - = 010, LED 0 is Green - = 011, LED 0 is Blue - = 100, For LED 0 future use - = 101, For LED 0 future use - = 110, For LED 0 future use - = 111, For LED 0 future use - - Bit 2..0 = 000, LED 0 indicates Power - = 001, LED 0 indicates Run - = 010, LED 0 indicates Attention - = 011, LED 0 indicates Fault - = 100, For LED 0 future use - = 101, For LED 0 future use - = 110, For LED 0 future use - = 111, For LED 0 future use " - ::= { cpqSeCabinetEntry 5 } - --- **************************************************************************** --- Standard Equipment Complex Structure --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeComplex (1.3.6.1.4.1.232.1.2.20) --- cpqSeComplexCellSlotStatusTable (1.3.6.1.4.1.232.1.2.20.7) --- --- --- A complex can have at most 4 cabinets --- --- --- **************************************************************************** - - cpqSeComplexUUID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the complex UUID." - ::= { cpqSeComplex 1 } - - cpqSeComplexTotalCabinet OBJECT-TYPE - SYNTAX INTEGER (0..4) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the total number of cabinets in the complex. - Zero will be returned if the value can not be determined." - ::= { cpqSeComplex 2 } - - cpqSeComplexComputeCabinet OBJECT-TYPE - SYNTAX INTEGER (0..2) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is the number of compute cabinets in the complex." - ::= { cpqSeComplex 3 } - - cpqSeComplexIOXCabinet OBJECT-TYPE - SYNTAX INTEGER (0..1) - ACCESS read-only - STATUS optional - DESCRIPTION - "This denotes the number of IOX cabinets in the complex." - ::= { cpqSeComplex 4 } - - cpqSeComplexName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "This represents the complex name." - ::= { cpqSeComplex 5 } - - cpqSeComplexLockedProperty OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "Bit 31 - Indicates that there is a locked IPMI property when set. - Bit 7:0 - Contains the property number currently locked." - ::= { cpqSeComplex 6 } - - cpqSeComplexCellSlotStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeComplexCellSlotStatusEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A table of cell slot status in a complex." - ::= { cpqSeComplex 7 } - - cpqSeComplexCellSlotStatusEntry OBJECT-TYPE - SYNTAX CpqSeComplexCellSlotStatusEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A cell slot status description." - INDEX { cpqSeComplexCellSlotStatusIndex } - ::= { cpqSeComplexCellSlotStatusTable 1 } - - CpqSeComplexCellSlotStatusEntry ::= SEQUENCE { - cpqSeComplexCellSlotStatusIndex INTEGER, - cpqSeComplexCellSlotStatusCabinetNo INTEGER, - cpqSeComplexCellSlotStatusSlotNo INTEGER, - cpqSeComplexCellSlotStatus INTEGER, - cpqSeComplexCellSlotPartitionNo INTEGER, - cpqSeComplexCellSlotPartitionName DisplayString - } - - cpqSeComplexCellSlotStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The table index of cell slot status in a complex. - - This value is a unique index for a row in the table of complex - cell slot status." - ::= { cpqSeComplexCellSlotStatusEntry 1 } - - cpqSeComplexCellSlotStatusCabinetNo OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The cabinet number of this cell slot." - ::= { cpqSeComplexCellSlotStatusEntry 2 } - - cpqSeComplexCellSlotStatusSlotNo OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The number of this cell slot." - ::= { cpqSeComplexCellSlotStatusEntry 3 } - - cpqSeComplexCellSlotStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - active(2), - inactive(3), - assigned-powered-off(4), - free-powered-on(5), - free-powered-off(6), - empty(7) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The status of this cell slot." - ::= { cpqSeComplexCellSlotStatusEntry 4 } - - cpqSeComplexCellSlotPartitionNo OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The partition number this cell is assigned." - ::= { cpqSeComplexCellSlotStatusEntry 5 } - - cpqSeComplexCellSlotPartitionName OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The partition this cell belongs to." - ::= { cpqSeComplexCellSlotStatusEntry 6 } - --- **************************************************************************** --- Standard Equipment LED Table --- ============================ --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeLED (1.3.6.1.4.1.232.1.2.21) --- --- This is a generic table of LEDs in the system --- --- **************************************************************************** - - cpqSeLEDTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSeLEDEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A list of LEDs in the system." - ::= { cpqSeLED 1 } - - cpqSeLEDEntry OBJECT-TYPE - SYNTAX CpqSeLEDEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "An entry of an LED in the system." - INDEX { cpqSeLEDIndex } - ::= { cpqSeLEDTable 1 } - - CpqSeLEDEntry ::= SEQUENCE { - cpqSeLEDIndex INTEGER, - cpqSeLEDState INTEGER, - cpqSeLEDStateDuration INTEGER, - cpqSeLEDLocationType INTEGER, - cpqSeLEDDescription DisplayString, - cpqSeLEDHardwareLocation DisplayString - } - - cpqSeLEDIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "This is a number that uniquely identifies the LED." - ::= { cpqSeLEDEntry 1 } - - cpqSeLEDState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "This value represents the state of an LED. - Bit 31..24 = ON-duration time in unit of 0.1 sec - Bit 23..16 = OFF-duration time in unit of 0.1 sec - Bit 15..8 = 0, LED state is OFF - = 1, LED state is ON - = 2, LED state is BLINKING - Bit 7..0 = 0, invalid color value - = 1, LED color is Brown - = 2, LED color is Red - = 3, LED color is Orange - = 4, LED color is Yellow - = 5, LED color is Green - = 6, LED color is Blue - = 7, LED color is Violet - = 8, LED color is Gray - = 9, LED color is White " - ::= { cpqSeLEDEntry 2 } - - cpqSeLEDStateDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS optional - DESCRIPTION - "This is the duration of an LED state in seconds. " - ::= { cpqSeLEDEntry 3 } - - cpqSeLEDLocationType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "This value indicates whether an LED is internal or external. - 0 = External - 1 = Internal " - ::= { cpqSeLEDEntry 4 } - - cpqSeLEDDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "Description of the LED entry." - ::= { cpqSeLEDEntry 5 } - - cpqSeLEDHardwareLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "Description of the location of an LED entry." - ::= { cpqSeLEDEntry 6 } - --- Below table has been deprecated in 870 release and merged with cpqSeUSBPortEntry --- **************************************************************************** --- Standard Equipment USB Device Group --- ==================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSeUSBDevice Group (1.3.6.1.4.1.232.1.2.22) --- --- The cpqSeUSBDevice group lists the USB Devices in the system. --- --- Implementation of the cpqSeUSBDevice group is optional. --- Support for the cpqSeUSBDevice group is MANDATORY for all systems that --- contain a USB bus. --- --- **************************************************************************** - - cpqSeUSBDeviceType OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "Attached USB device type." - ::= { cpqSeUSBDevice 1 } - - cpqSeUSBDeviceName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "Attached USB device name." - ::= { cpqSeUSBDevice 2 } - - --- **************************************************************************** --- Standard Equipment PCIe Disk Table --- ====================================== --- --- The compaq enterprise (1.3.6.1.4.1.232) --- cpqStdEquipment Group (1.3.6.1.4.1.232.1) --- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) --- cpqSePCIeDisk Group (1.3.6.1.4.1.232.1.2.23) --- cpqSePCIeDiskTable (1.3.6.1.4.1.232.1.2.23.1) --- --- The PCIe disk group describes the drives directly attached to a PCIe --- controller in the system. --- --- Implementation of the PCIe Disk group is optional for all agents --- supporting the Standard Equipment MIB. --- --- **************************************************************************** - cpqSePCIeDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpqSePCIeDiskEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A table of PCIe disk descriptions." - ::= { cpqSePCIeDisk 1 } - - cpqSePCIeDiskEntry OBJECT-TYPE - SYNTAX CpqSePCIeDiskEntry - ACCESS not-accessible - STATUS optional - DESCRIPTION - "A PCIe disk table entry." - INDEX { cpqSePCIeDiskPCIBusIndex, cpqSePCIeDiskPCIDeviceIndex, - cpqSePCIeDiskPCIFunctionIndex } - ::= { cpqSePCIeDiskTable 1 } - - CpqSePCIeDiskEntry ::= SEQUENCE { - cpqSePCIeDiskPCIBusIndex INTEGER, - cpqSePCIeDiskPCIDeviceIndex INTEGER, - cpqSePCIeDiskPCIFunctionIndex INTEGER, - cpqSePCIeDiskModel DisplayString, - cpqSePCIeDiskFwRev DisplayString, - cpqSePCIeDiskSerialNumber DisplayString, - cpqSePCIeDiskCapacityMB Gauge, - cpqSePCIeDiskCondition INTEGER, - cpqSePCIeDiskCurrentTemperature INTEGER, - cpqSePCIeDiskThresholdTemperature INTEGER, - cpqSePCIeDiskHwLocation DisplayString, - cpqSePCIeDiskOsName DisplayString, - cpqSePCIeDiskWearStatus INTEGER, - cpqSePCIeDiskPowerOnHours Counter, - cpqSePCIeDiskPercntEndrnceUsed Gauge - } - - cpqSePCIeDiskPCIBusIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "The PCI bus number for this disk`s controller." - ::= { cpqSePCIeDiskEntry 1 } - - cpqSePCIeDiskPCIDeviceIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "The PCI device number for this disk`s controller." - ::= { cpqSePCIeDiskEntry 2 } - - cpqSePCIeDiskPCIFunctionIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS optional - DESCRIPTION - "The PCI function number for this disk`s controller." - ::= { cpqSePCIeDiskEntry 3 } - - cpqSePCIeDiskModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the disk model. - A NULL string indicates that the disk model could not - be determined or is irrelevant." - ::= { cpqSePCIeDiskEntry 4 } - - cpqSePCIeDiskFwRev OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The firmware version of the disk." - ::= { cpqSePCIeDiskEntry 5 } - - cpqSePCIeDiskSerialNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "The serial number of the disk." - ::= { cpqSePCIeDiskEntry 6 } - - cpqSePCIeDiskCapacityMB OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS optional - DESCRIPTION - "The size of the disk in MB (Megabytes)." - ::= { cpqSePCIeDiskEntry 7 } - - cpqSePCIeDiskCondition OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The condition of the disk." - ::= { cpqSePCIeDiskEntry 8 } - - cpqSePCIeDiskCurrentTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The current temperature of the disk in degrees Celsius." - ::= { cpqSePCIeDiskEntry 9 } - - cpqSePCIeDiskThresholdTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS optional - DESCRIPTION - "The upper critical threshold temperature of the disk in - degrees Celsius." - ::= { cpqSePCIeDiskEntry 10 } - - cpqSePCIeDiskHwLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "A text description of the hardware location of the disk itself. - A NULL string indicates that the hardware location could not - be determined or is irrelevant." - ::= { cpqSePCIeDiskEntry 11 } - - cpqSePCIeDiskOsName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS optional - DESCRIPTION - "PCIe Physical Drive OS Name. - The OS name for this PCIe physical drive. This field will be - a null (size 0) string if the agent does not support OS name." - ::= { cpqSePCIeDiskEntry 12 } - - cpqSePCIeDiskWearStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - ok(2), - fiftySixDayThreshold(3), - fivePercentThreshold(4), - twoPercentThreshold(5), - ssdWearOut(6) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "Wear Status of a PCIe Disk. - This shows the wear status of the solid state PCIe physical drive. - The following values are valid for the physical drive solid state - wear status: - Other (1) - The instrument agent is unable to determine the physical drive's - solid state disk wear status. This value would be used for non - SSD drives or SSD drives that do not support wear reporting. - Ok (2) - Indicates the solid state disk is not in any imminent danger - of wear out. - - Fifty Six Day Threshold Passed (3) - Indicates that based upon the current workload, the solid state - disk will reach the maximum usage limit for writes (wear out) - within fifty-six days. You should modify your write workload or - begin preparing to replace your SSD drive. - - Five Percent Threshold Passed (4) - Indicates that the solid state disk has passed the five percent - threshold and is at or below five percent of reaching the maximum - usage limit for writes (wear out). You should begin to prepare - to replace your SSD drive. - - Two Percent Threshold Passed (5) - Indicates that the solid state disk has passed the two percent - threshold and is at or below two percent of reaching the maximum - usage limit for writes (wear out). You should begin to prepare - to replace your SSD drive. - - SSD Wear Out(6) - Indicates that a solid state drive is approaching the maximum - usage limit for writes (wear out) and should be replaced as soon - as possible." - ::= { cpqSePCIeDiskEntry 13 } - - cpqSePCIeDiskPowerOnHours OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS optional - DESCRIPTION - "PCIe Disk Power On Hours. - This is the total number of hours that the PCIe disk - has been powered on. This value will be 4,294,967,295 if the disk - power on hours cannot be determined or is not supported." - ::= { cpqSePCIeDiskEntry 14 } - - cpqSePCIeDiskPercntEndrnceUsed OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS optional - DESCRIPTION - "PCIe Drive Percent Endurance Used. - This value specifies the hundredths of the percentage disk life used. - The value of this field is allowed to exceed 100%. - As an example, if the value reported is 50, this would indicate .50 - percent endurance used. - This value will be 4,294,967,295 if the percent endurance used cannot - be determined or is not supported." - ::= { cpqSePCIeDiskEntry 15 } - - cpqSePCIeDiskTableCondition OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - degraded(3), - failed(4) - } - ACCESS read-only - STATUS optional - DESCRIPTION - "The overall condition of PCIe Disk table." - ::= { cpqSePCIeDisk 2 } - - cpqSePCIeEraseFailureType OBJECT-TYPE - SYNTAX INTEGER { - secureEraseFailed(1), - secureEraseNotSupported(2), - noEraseSupported(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value specifies the secure erase status of PCIe(NVMe) disk. - secureEraseNotSupported(2) - Secure erase is not supported so proceeding with Basic Erase" - ::= { cpqSePCIeDisk 3 } - --- **************************************************************************** --- Standard Equipment MIB Trap Definitions --- ======================================= --- --- The SNMP trap messages must not be bigger than 484 octets (bytes). --- --- Trap support in an SNMP agent implementation is optional. An SNMP --- agent implementation may support all, some, or none of the traps. --- If traps are supported, The user should be provided with the option of --- disabling traps. --- ************************************************************************** --- Deprecated in 7.20 trap 1005 is the replacement - cpqSeCpuThresholdPassed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuSlot, cpqSeCpuSocketNumber} - DESCRIPTION - "This trap is sent when an internal CPU error threshold has been - passed on a particular CPU causing it to go degraded. This trap - will be sent when cpqSeCpuThreshPassed transitions from false to - true." - - --#TYPE "CPU error threshold passed (1001)" - --#SUMMARY "CPU internal corrected errors have passed a set threshold." - --#ARGUMENTS {} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY PROCESSORS - - ::= 1001 - - cpqSePCCardThermalDegraded TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardDeviceInfo, - cpqSePCCardProductInfo, cpqSePCCardSlotIndex } - DESCRIPTION - "This trap is sent when the PC Card Slot Thermal Sensor threshold has been - exceeded for safe operations thereby causing degraded operations. This trap - will be sent when cpqSePCCardStatus transitions from Normal (1) to Thermal - Degraded (2). - The manufacturer and product information strings as well as the slot number - for the degraded PC Card is provided as parameters for this trap." - --#TYPE "PC Card Thermal Degraded Status (1002)" - --#SUMMARY "Safe PC card %d thermal operating conditions exceeded." - --#ARGUMENTS {4} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY THERMAL - ::= 1002 - - - cpqSePCCardThermalFailure TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardDeviceInfo, - cpqSePCCardProductInfo, cpqSePCCardSlotIndex } - DESCRIPTION - "This trap is sent when the PC Card Slot Thermal Sensor threshold has been - exceeded for degraded operations thereby causing failed operations. - This trap will be sent when cpqSePCCardStatus transitions from Thermal Degraded - (2) to Thermal Failure (3). - The manufacturer and product information strings as well as the slot number - for the failed PC Card is provided as parameters for this trap." - --#TYPE "PC Card Thermal Failure Status (1003)" - --#SUMMARY "Degraded PC card %d thermal operating conditions exceeded." - --#ARGUMENTS {4} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE NONOPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY THERMAL - ::= 1003 - - cpqSePCCardThermalSafe TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardSlotIndex } - DESCRIPTION - "This trap is sent when the PC Card Slot Thermal Sensor threshold has been - crossed which restored the thermal status to normal operations. This trap will be sent - when cpqSePCCardStatus transitions from Thermal Degraded (2) or Thermal Failure - (3) to Normal (1). - The number of the recovered PC Card slot is provided as a parameter for this trap." - --#TYPE "PC Card Thermal Safe Operations Status (1004)" - --#SUMMARY "Degraded/Failed PC card %d thermal conditions restored to safe operations." - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY THERMAL - ::= 1004 - --- Updated for 7.20 trap replaced 1001 - cpqSe2CpuThresholdPassed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuSlot, cpqSeCpuSocketNumber, - cpqSeCpuSpeed, cpqSeCpuExtSpeed, cpqSeCpuCacheSize} - DESCRIPTION - "This trap is sent when an internal CPU error threshold has been - passed on a particular CPU causing it to go degraded. This trap - will be sent when cpqSeCpuThreshPassed transitions from false to - true." - - --#TYPE "CPU error threshold passed (1005)" - --#SUMMARY "CPU internal corrected errors have passed a set threshold for processor in slot %d, socket %d." - --#ARGUMENTS {2, 3} - --#SEVERITY MINOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY PROCESSORS - - ::= 1005 - -cpqSeCpuStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuUnitIndex, - cpqSeCpuSlot, cpqSeCpuName, cpqSeCpuSpeed, - cpqSeCpuStep, cpqSeCpuStatus, - cpqSeCpuExtSpeed, cpqSeCpuSocketNumber, - cpqSeCpuHwLocation} - DESCRIPTION - "This trap is sent when CPU status changed. - - CPU can be brought down to Stop state and removed - from O.S Active set or Brought back to Running state - and made member of O.S Active set. - - User Action: None." - - --#TYPE "Processor Monitor Event Trap" - --#SUMMARY "The state of the processor in slot %d is %d." - --#ARGUMENTS {3, 7} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY PROCESSORS - - ::= 1006 - -cpqSeCpuPowerPodstatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuUnitIndex, - cpqSeCpuSlot, cpqSeCpuName, cpqSeCpuSpeed, - cpqSeCpuStep, cpqSeCpuPowerpodStatus, - cpqSeCpuExtSpeed, cpqSeCpuSocketNumber, - cpqSeCpuHwLocation} - DESCRIPTION - "This Trap is sent if CPU Power Pod status changes. - - User Action: None." - - --#TYPE "Processor Monitor Event Trap" - --#SUMMARY "Processor in slot %d power supply status is %d." - --#ARGUMENTS {3, 7} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY PROCESSORS - - ::= 1007 - - cpqSeUSBStorageDeviceAttached TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName } - DESCRIPTION - "This trap is sent when a USB storage device has been attached " - - --#TYPE "USB storage device attached (1008)" - --#SUMMARY "A USB storage device has been attached to the system." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - --#LIFECYCLE - - ::= 1008 - - cpqSeUSBStorageDeviceRemoved TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName } - DESCRIPTION - "This trap is sent when a attached USB storage device is removed " - - --#TYPE "USB storage device removed (1009)" - --#SUMMARY "A USB storage device has been removed from the system." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY NONE - --#LIFECYCLE - - ::= 1009 - - - cpqSeUSBStorageDeviceReadErrorOccurred TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName, - cpqSeUSBPortDeviceModel, cpqSeUSBPortDeviceFWVersion, - cpqSeUSBPortDeviceSerialNumber, cpqSeUSBPortDevicePartNumber, - cpqSeUSBPortDeviceReadErrorCount, cpqSeUSBPortDeviceReadThreshold, - cpqSeUSBPortDeviceLastSlotWithError } - DESCRIPTION - "This trap is sent when a read error occurred on the attached USB storage device " - - --#TYPE "USB storage device read error occurred (1010)" - --#SUMMARY "A read error occurred on the Flash Media in Slot %d of a USB storage device attached to the system." - --#ARGUMENTS {10} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - - ::= 1010 - - cpqSeUSBStorageDeviceWriteErrorOccurred TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName, - cpqSeUSBPortDeviceModel, cpqSeUSBPortDeviceFWVersion, - cpqSeUSBPortDeviceSerialNumber, cpqSeUSBPortDevicePartNumber, - cpqSeUSBPortDeviceWriteErrorCount, cpqSeUSBPortDeviceWriteThreshold, - cpqSeUSBPortDeviceLastSlotWithError } - DESCRIPTION - "This trap is sent when a write error occurred on the attached USB storage device " - - --#TYPE "USB storage device write error occurred (1011)" - --#SUMMARY "A write error occurred on the Flash Media in Slot %d of a USB storage device attached to the system." - --#ARGUMENTS {10} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - - ::= 1011 - - cpqSeUSBStorageDeviceRedundancyLost TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName, - cpqSeUSBPortDeviceModel, cpqSeUSBPortDeviceFWVersion, - cpqSeUSBPortDeviceSerialNumber, cpqSeUSBPortDevicePartNumber, - cpqSeUSBPortDeviceFailedSlot } - DESCRIPTION - "This trap is sent when redundancy is lost on the attached USB storage device. - - User Action: Replace the failed USB Storage Device." - - --#TYPE "USB storage device redundancy lost (1012)" - --#SUMMARY "Redundancy is lost on a USB storage device attached to the system. Flash Media in Slot %d has failed." - --#ARGUMENTS {8} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - - ::= 1012 - - cpqSeUSBStorageDeviceRedundancyRestored TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName, - cpqSeUSBPortDeviceModel, cpqSeUSBPortDeviceFWVersion, - cpqSeUSBPortDeviceSerialNumber, cpqSeUSBPortDevicePartNumber } - DESCRIPTION - "This trap is sent when redundancy is restored on the attached USB storage device. " - - --#TYPE "USB storage device redundancy restored (1013)" - --#SUMMARY "Redundancy is restored on a USB storage device attached to the system." - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY STORAGE - - ::= 1013 - - cpqSeUSBStorageDeviceSyncFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBPortIndex, cpqSeUSBPortDeviceName, - cpqSeUSBPortDeviceModel, cpqSeUSBPortDeviceFWVersion, - cpqSeUSBPortDeviceSerialNumber, cpqSeUSBPortDevicePartNumber } - DESCRIPTION - "This trap is sent when the sync operation to restore redundancy failed on the attached USB storage device. - - User Action: Replace the failed USB Storage Device." - - --#TYPE "USB storage device sync failed (1014)" - --#SUMMARY "Sync operation to restore redundancy failed on a USB storage device attached to the system." - --#ARGUMENTS {} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY STORAGE - - ::= 1014 - - cpqSePCIeDiskTemperatureFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCIeDiskPCIBusIndex, cpqSePCIeDiskPCIDeviceIndex, - cpqSePCIeDiskPCIFunctionIndex, cpqSePCIeDiskCurrentTemperature, - cpqSePCIeDiskThresholdTemperature, cpqSePCIeDiskHwLocation } - DESCRIPTION - "The temperature of the disk has crossed the upper critical threshold." - - --#TYPE "PCIe Disk Thermal Failure (1015)" - --#SUMMARY "The temperature of the PCIe disk at location %s has crossed the upper critical threshold." - --#ARGUMENTS {7} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Check the system for hardware failures and verify the environment is properly cooled." - - ::= 1015 - - cpqSePCIeDiskTemperatureOk TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCIeDiskPCIBusIndex, cpqSePCIeDiskPCIDeviceIndex, - cpqSePCIeDiskPCIFunctionIndex, cpqSePCIeDiskCurrentTemperature, - cpqSePCIeDiskThresholdTemperature, cpqSePCIeDiskHwLocation } - DESCRIPTION - "The temperature of the disk has been set to ok. - - The PCIe Disk`s temperature has returned to the normal operating range." - - --#TYPE "PCIe Disk Thermal Status OK (1016)" - --#SUMMARY "The temperature of the PCIe disk at location %s is normal." - --#ARGUMENTS {7} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY STORAGE - - ::= 1016 - - cpqSePCIeDiskConditionChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCIeDiskPCIBusIndex, cpqSePCIeDiskPCIDeviceIndex, - cpqSePCIeDiskPCIFunctionIndex, cpqSePCIeDiskCondition, cpqSePCIeDiskHwLocation } - DESCRIPTION - "PCIe Disk Status Change - - A change in condition of PCIe disk has been detected. The current PCIe disk condition is - indicated in the cpqSePCIeDiskCondition variable. - - User Action: If cpqSePCIeDiskCondition is `failed(4)`, replace the drive." - - --#TYPE "PCIe Disk Condition Change (1017)" - --#SUMMARY "The status of the PCIe disk at location %s is %d." - --#ARGUMENTS {6, 5} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If cpqSePCIeDiskCondition is 'failed(4)', replace the drive." - - ::= 1017 - - cpqSePCIeDiskWearStatusChange TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCIeDiskPCIBusIndex, cpqSePCIeDiskPCIDeviceIndex, - cpqSePCIeDiskPCIFunctionIndex, cpqSePCIeDiskWearStatus, cpqSePCIeDiskHwLocation } - DESCRIPTION - "PCIe Disk Wear Status Change. - - This trap signifies that the agent has detected a change in the PCIe Disk wear - status. The variable cpqSePCIeDiskWearStatus indicates the current wear status. - - User Action: If cpqSePCIeDiskWearStatus is `ssdWearOut(6)`, - replace the drive." - - --#TYPE "PCIe Disk Wear Status Change (1018)" - --#SUMMARY "The PCIe disk wear status for the disk at location %s is %d." - --#ARGUMENTS {6, 5} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#VARBINDSEVERITY 2 - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "If the PCIe disk wear status is 'ssdWearOut(6)', replace the drive." - - ::= 1018 - - cpqSePciDeviceAddedOrPoweredOn TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePciFunctBusNumberIndex, - cpqSePciFunctDeviceNumberIndex, cpqSePciFunctIndex } - DESCRIPTION - "This trap is sent when a PCI device has been added or powered on." - - --#TYPE "PCI Device added or powered on (1019)" - --#SUMMARY "A PCI device at Bus %d, Device %d, Function %d has been added to the system or powered on." - --#ARGUMENTS {2, 3, 4} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY STORAGE - - ::= 1019 - - cpqSePciDeviceRemovedOrPoweredOff TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePciFunctBusNumberIndex, - cpqSePciFunctDeviceNumberIndex, cpqSePciFunctIndex } - DESCRIPTION - "This trap is sent when a PCI device has been removed or powered off." - - --#TYPE "PCI Device removed or powered off (1020)" - --#SUMMARY "A PCI device at Bus %d, Device %d, Function %d has been removed from the system or powered off." - --#ARGUMENTS {2, 3, 4} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY OK - --#HWSTATUS_CATEGORY STORAGE - - ::= 1020 - - cpqSeNVMeSecureEraseFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCIeDiskPCIBusIndex, - cpqSePCIeDiskPCIDeviceIndex, cpqSePCIeDiskPCIFunctionIndex, - cpqSePCIeDiskSerialNumber, cpqSePCIeEraseFailureType } - - DESCRIPTION - "Secure Erase of NVMe drive has failed." - - --#TYPE "Secure Erase of NVMe drive has failed(1021)" - --#SUMMARY "Secure Erase of NVMe drive has failed : ( Bus %d, Device %d, Function %d, Serial Number %s, Failure Type %d )" - --#ARGUMENTS { 2, 3, 4, 5, 6 } - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERIRY CRITICAL - --#HWSTATUS_CATEGORY STORAGE - --#ACTION "Please refer the IML Troubleshooting guide or click on Learn More link for additional information and any necessary action to be taken." - ::= 1021 - - cpqSePcieTrainingFailed TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePciePhySlot } - - DESCRIPTION - "This trap is sent when a PCI Express slot failed to train." - - --#TYPE "PCI Express slot failed to train(1022)" - --#SUMMARY "PCI Express slot %d failed to train." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY NETWORK - --#ACTION "Reinstall the add-in card. If the issue persists, update the card firmware. If the issue still persists, contact support" - ::= 1022 - - cpqSePciResetFail TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardSlotIndex } - - DESCRIPTION - "System is unable to perform a reset on the PCI controller in slot." - - --#TYPE "Reset operation on PCI controller in slot failed(1023)" - --#SUMMARY "Reset operation on PCI controller in slot %d failed." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY NETWORK - --#ACTION "Reset the system and try again. If the issue persists, update the firmware of the device. If the issue still persists, contact support." - ::= 1023 - - cpqSeSecureBootAuthFail TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePciHwLocation } - DESCRIPTION - "Secure Boot Authentication Failure - The image failed authentication and was not executed." - - --#TYPE "Secure Boot Authentication failed (1024)" - --#SUMMARY "The image on %s failed authentication and was not executed." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY LOGS - --#ACTION "Update the image to known good trusted version. If current image is trusted, then update the Secure Boot allowed database (DB) with the certificate or image hash." - - ::= 1024 - - cpqSeSecureBootCertAuthFail TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSePciHwLocation } - DESCRIPTION - "Secure Boot Certificate Authentication Failure - The image was not authorized due to revoked certificate(s) and was not executed." - - --#TYPE "Secure Boot Certificate Authentication failed (1025)" - --#SUMMARY "The image on %s was not authorized due to revoked certificate(s) and was not executed." - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#TIMEINDEX 99 - --#STATE OPERATIONAL - --#SIMPLE_SEVERITY MAJOR - --#HWSTATUS_CATEGORY LOGS - --#ACTION "Update the image to a new version where the certificate used to sign the image and the image hash are not in the Secure Boot forbidden database (DBX)." - - ::= 1025 - - cpqSeCpuUncorrectableError TRAP-TYPE - ENTERPRISE compaq - VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuUnitIndex } - DESCRIPTION - "Uncorrectable processor error was detected." - - --#TYPE "Uncorrectable Processor Error (1026)" - --#SUMMARY "Uncorrectable error was detected on processor %d." - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#TIMEINDEX 99 - --#STATE DEGRADED - --#SIMPLE_SEVERITY CRITICAL - --#HWSTATUS_CATEGORY PROCESSORS - --#ACTION "Re-seat the processor and update to the latest firmware. If the issue persists contact support." - - ::= 1026 -END - diff --git a/mibs/orig/DELL-RAC-MIB b/mibs/orig/DELL-RAC-MIB deleted file mode 100644 index ef9e2bd..0000000 --- a/mibs/orig/DELL-RAC-MIB +++ /dev/null @@ -1,4023 +0,0 @@ --- --- Dell Remote Access Controller (RAC) Management Information Base --- Copyright (c) 2013 Dell Inc --- --- Last Changed Revision: 15 --- Last Changed Date: 2013-08-29 12:25:06 -0500 (Thu, 29 Aug 2013) --- Text Last Updated: 2013-08-29 12:25:06 -0500 (Thu, 29 Aug 2013) --- - -DELL-RAC-MIB DEFINITIONS ::= BEGIN - -IMPORTS - enterprises, TimeTicks - FROM RFC1155-SMI - OBJECT-TYPE - FROM RFC-1212 - TRAP-TYPE - FROM RFC-1215 - DisplayString - FROM RFC1213-MIB; - --- text convention ------------------------------------------------------------------------ - - ------------------------------------------------------------------------------- - -- This data type is used to model textual information taken - -- from the NVT ASCII character set. By convention, objects - -- with this syntax are declared as having - -- SIZE (0..1023) - ------------------------------------------------------------------------------- - DellString ::= DisplayString (SIZE (0..1023)) - - DellRacType ::= INTEGER - { - other(1), -- the DRAC type is not one of the following - unknown(2), -- the DRAC type is unknown - dracIII(3), -- Drac III - era(4), -- ERA - drac4(5), -- Drac 4 - drac5(6), -- Drac 5 - drac5MC(7), -- Drac 5/MC - cmc(8), -- CMC - idrac(9), -- iDRAC - vrtxCMC(18), -- VRTX CMC - fx2CMC(19) -- FX2 Family CMC - } - - DellStatus ::= INTEGER - { - other(1), -- the status of the object is not one of the following: - unknown(2), -- the status of the object is unknown - -- (not known or monitored) - ok(3), -- the status of the object is ok - nonCritical(4), -- the status of the object is warning, non-critical - critical(5), -- the status of the object is critical (failure) - nonRecoverable(6) -- the status of the object is non-recoverable (dead) - } - - ------------------------------------------------------------------------------- - -- DellPowerReading is a string representation of a floating point value, - -- having exactly 3 digits of precision, and a maximum of 31 characters. - -- - -- DellChassisPowerIndexRange defines the possible chassis power instances - -- in this MIB. - -- - -- DellCMCPSUIndexRange defines the possible CMC Power Supply Unit (PSU) - -- instances, per chassis power instance, in this MIB. - -- - -- DellCMCPSUCapable is an enumeration of PSU presence and/or monitoring - -- capabilities. - -- - -- DellTemperatureReading is an integer value, expressed in degrees Celsius. - ------------------------------------------------------------------------------- - DellPowerReading ::= DisplayString (SIZE (0..32)) - - DellCMCPowerIndexRange ::= INTEGER (1..1) - - DellCMCPSUIndexRange ::= INTEGER (1..6) - - DellCMCPSUCapable ::= INTEGER - { - absent(1), -- power supply is not present - none(2), -- no power monitoring abilities - basic(3) -- basic power monitoring abilities - } - - DellTemperatureReading ::= INTEGER - - ------------------------------------------------------------------------------- - -- DellTimestamp is defined in the displayable format: - -- - -- yyyymmddHHMMSS.uuuuuuDooo - -- - -- where yyyy is the year, mm is the month number, dd is the day of the month, - -- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the - -- number of microseconds, D is the UTC offset direction, and ooo is the - -- offset from UTC, in minutes. - -- - -- Note: D is a plus (+) sign if east of UTC, and a minus (-) if west of UTC. - -- - -- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT - -- would be represented as: 19940525133015.000000-300 - ------------------------------------------------------------------------------- - DellTimestamp ::= DisplayString (SIZE (26)) - - ------------------------------------------------------------------------------- - -- DellCMCServerIndexRange defines the possible chassis server instances - -- in this MIB. - -- - -- DellCMCServerCapable is an enumeration of server presence and/or monitoring - -- capabilities. - ------------------------------------------------------------------------------- - DellCMCServerIndexRange ::= INTEGER (1..32) - - DellCMCServerCapable ::= INTEGER - { - absent(1), -- server is not present - none(2), -- no server monitoring abilities - basic(3), -- basic server monitoring abilities - off(4) -- server is powered off - } - - --- MIB Objects and Tables -------------------------------------------------------- - - dell OBJECT IDENTIFIER ::= { enterprises 674 } - server3 OBJECT IDENTIFIER ::= { dell 10892 } - drsOutofBandGroup OBJECT IDENTIFIER ::= { server3 2 } - drsInformationGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 1 } - drsProductInfoGroup OBJECT IDENTIFIER ::= { drsInformationGroup 1 } - drsFirmwareGroup OBJECT IDENTIFIER ::= { drsInformationGroup 2 } - - drsStatusGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 2 } - - drsChassisStatusGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 3 } - drsStatusNowGroup OBJECT IDENTIFIER ::= { drsChassisStatusGroup 1 } - drsStatusPrevGroup OBJECT IDENTIFIER ::= { drsChassisStatusGroup 2 } - drsStatusChangeGroup OBJECT IDENTIFIER ::= { drsChassisStatusGroup 3 } - - drsChassisPowerGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 4 } - - DrsCMCPowerTableEntry ::= SEQUENCE - { - drsChassisIndex DellCMCPowerIndexRange, - drsPotentialPower DellPowerReading, - drsIdlePower DellPowerReading, - drsMaxPowerSpecification DellPowerReading, - drsPowerSurplus DellPowerReading, - drsKWhCumulative DellPowerReading, - drsKWhCumulativeTime DellTimestamp, - drsWattsPeakUsage DellPowerReading, - drsWattsPeakTime DellTimestamp, - drsWattsMinUsage DellPowerReading, - drsWattsMinTime DellTimestamp, - drsWattsResetTime DellTimestamp, - drsWattsReading DellPowerReading, - drsAmpsReading DellPowerReading - } - - DrsCMCPSUTableEntry ::= SEQUENCE - { - drsPSUChassisIndex DellCMCPowerIndexRange, - drsPSUIndex DellCMCPSUIndexRange, - drsPSULocation DellString, - drsPSUMonitoringCapable DellCMCPSUCapable, - drsPSUVoltsReading DellPowerReading, - drsPSUAmpsReading DellPowerReading, - drsPSUWattsReading DellPowerReading - } - - drsChassisServerGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 5 } - - DrsCMCServerTableEntry ::= SEQUENCE - { - drsServerIndex DellCMCServerIndexRange, - drsServerMonitoringCapable DellCMCServerCapable, - drsServerServiceTag DellString, - drsServerSlotName DellString, - drsServerSlotNumber DellString, - drsServerNodeID DellString - } - - drsCMCAlertGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 20 } - drsChassisAlertVariables OBJECT IDENTIFIER ::= { drsCMCAlertGroup 10 } - drsCMCAlert2Group OBJECT IDENTIFIER ::= { drsOutofBandGroup 21 } - drsChassisAlert2Variables OBJECT IDENTIFIER ::= { drsCMCAlert2Group 10 } - - drsAlertGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 5000 } - drsAlertVariables OBJECT IDENTIFIER ::= { drsAlertGroup 10 } - - --- Variables and Traps ------------------------------------------------------------------------ - - ------------------------------------------------------------------------------- - -- group: product information - ------------------------------------------------------------------------------- - - drsProductName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0001 This attribute defines the product name of a chassis management controller." - ::= { drsProductInfoGroup 1 } - - drsProductShortName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0002 This attribute defines the short product name of a chassis management controller. " - ::= { drsProductInfoGroup 2 } - - drsProductDescription OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0003 This attribute defines the product description of a chassis management controller. " - ::= { drsProductInfoGroup 3 } - - drsProductManufacturer OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0004 This attribute defines the product manufacturer of a chassis management controller. " - ::= { drsProductInfoGroup 4 } - - drsProductVersion OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0005 This attribute defines the product version of a chassis management controller. " - ::= { drsProductInfoGroup 5 } - - drsChassisServiceTag OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0007 This attribute defines the Service Tag of the chassis. " - ::= { drsProductInfoGroup 6 } - - drsProductURL OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0006 This attribute defines the out-of-band UI URL of a chassis management controller. " - ::= { drsProductInfoGroup 7 } - - drsProductChassisAssetTag OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0008 This attribute defines the Asset Tag of the chassis. " - ::= { drsProductInfoGroup 8 } - - drsProductChassisLocation OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0009 This attribute defines the location of the chassis. " - ::= { drsProductInfoGroup 9 } - - drsProductChassisName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0010 This attribute defines the name of the chassis. " - ::= { drsProductInfoGroup 10 } - - drsSystemServiceTag OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0011 This attribute defines the service tag of a system. " - ::= { drsProductInfoGroup 11 } - - drsProductSystemAssetTag OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0012 This attribute defines the asset tag of a system. " - ::= { drsProductInfoGroup 12 } - - drsProductSystemSlot OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0013 This attribute defines the slot number of a CMC. " - ::= { drsProductInfoGroup 13 } - - drsProductType OBJECT-TYPE - SYNTAX DellRacType - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0014 This attribute defines type of a remote access card " - ::= { drsProductInfoGroup 14 } - - drsProductChassisDataCenter OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0015 This attribute defines the Data Center locator of the chassis. " - ::= { drsProductInfoGroup 15 } - - drsProductChassisAisle OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0016 This attribute defines the Aisle locator of the chassis. " - ::= { drsProductInfoGroup 16 } - - drsProductChassisRack OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0017 This attribute defines the Rack locator of the chassis. " - ::= { drsProductInfoGroup 17 } - - drsProductChassisRackSlot OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0018 This attribute defines the Rack Slot locator of the chassis. " - ::= { drsProductInfoGroup 18 } - - drsProductChassisModel OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0019 This attribute defines the Model of the chassis." - ::= { drsProductInfoGroup 19 } - - drsProductChassisExpressServiceCode OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0020 This attribute defines the Express Service Code of the chassis." - ::= { drsProductInfoGroup 20 } - - drsProductChassisSystemID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0021 This attribute defines the System ID of the chassis." - ::= { drsProductInfoGroup 21 } - - drsProductChassisSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0001.0022 This attribute defines the size of the - chassis in rack units (U). A U is a standard unit of - measure for the height of a rack or rack-mountable component." - ::= { drsProductInfoGroup 22 } - - ------------------------------------------------------------------------------- - -- group: firmware - ------------------------------------------------------------------------------- - - drsFirmwareVersion OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0002.0001 This attribute defines the firmware version of chassis management controller 1." - ::= { drsFirmwareGroup 1 } - - drsiKVMFirmwareVersion OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0002.0002 This attribute defines the firmware version of the iKVM. " - ::= { drsFirmwareGroup 2 } - - drsFirmwareVersion2 OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0001.0002.0003 This attribute defines the firmware version of chassis management controller 2." - ::= { drsFirmwareGroup 3 } - - ------------------------------------------------------------------------------- - -- group: chassis status - ------------------------------------------------------------------------------- - - drsGlobalSystemStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0002.0001.0001 This attribute defines the overall chassis status - being monitored by the chassis management card." - ::= { drsStatusGroup 1 } - - drsGlobalCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0001 This attribute defines the overall chassis status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 1 } - - drsIOMCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0002 This attribute defines the IOM subsystem status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 2 } - - drsKVMCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0003 This attribute defines the iKVM subsystem health status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 3 } - - drsRedCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0004 This attribute defines the Redundancy status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 4 } - - drsPowerCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0005 This attribute defines the power subsystem health status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 5 } - - drsFanCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0006 This attribute defines the Fan subsystem health status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 6 } - - drsBladeCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0007 This attribute defines the Blade subsystem health status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 7 } - - drsTempCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0008 This attribute defines the Temp Sensor subsystem health status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 8 } - - drsCMCCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0009 This attribute defines the CMC health status - being monitored by the chassis management card." - ::= { drsStatusNowGroup 9 } - - drsChassisFrontPanelAmbientTemperature OBJECT-TYPE - SYNTAX DellTemperatureReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0010 This attribute defines the ambient temperature - reading (in degrees Celsius) for the chassis front panel controller." - ::= { drsStatusNowGroup 10 } - - drsCMCAmbientTemperature OBJECT-TYPE - SYNTAX DellTemperatureReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0011 This attribute defines the ambient temperature - reading (in degrees Celsius) for the chassis management card." - ::= { drsStatusNowGroup 11 } - - drsCMCProcessorTemperature OBJECT-TYPE - SYNTAX DellTemperatureReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0012 This attribute defines the temperature reading - (in degrees Celsius) for the chassis management card processor." - ::= { drsStatusNowGroup 12 } - - drsGlobalPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0001 This attribute defines the previous chassis status - recorded by the chassis management card." - ::= { drsStatusPrevGroup 1 } - - drsIOMPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0002 This attribute defines the previous IOM subsystem status - recorded by the chassis management card." - ::= { drsStatusPrevGroup 2 } - - drsKVMPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0003 This attribute defines the previous iKVM subsystem health status - recorded by the chassis management card." - ::= { drsStatusPrevGroup 3 } - - drsRedPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0004 This attribute defines the previous Redundancy status - recorded by the chassis management card." - ::= { drsStatusPrevGroup 4 } - - drsPowerPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0005 This attribute defines the previous power subsystem health status - recorded by the chassis management card." - ::= { drsStatusPrevGroup 5 } - - drsFanPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0006 This attribute defines the previous Fan health status - being monitored by the chassis management card." - ::= { drsStatusPrevGroup 6 } - - drsBladePrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0002.0007 This attribute defines the previous Blade subsystem health status - recorded by the chassis management card." - ::= { drsStatusPrevGroup 7 } - - drsTempPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0008 This attribute defines the Temp Sensor health status - being monitored by the chassis management card." - ::= { drsStatusPrevGroup 8 } - - drsCMCPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0001.0009 This attribute defines the CMC health status - being monitored by the chassis management card." - ::= { drsStatusPrevGroup 9 } - - drsGlobalChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0001 This attribute defines the timestamp of the most recent - global status change." - ::= { drsStatusChangeGroup 1 } - - drsIOMChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0002 This attribute defines the timestamp of the most recent - IOM status change." - ::= { drsStatusChangeGroup 2 } - - drsKVMChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0003 This attribute defines the timestamp of the most recent - iKVM status change." - ::= { drsStatusChangeGroup 3 } - - drsRedChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0004 This attribute defines the timestamp of the most recent - Redundancy status change." - ::= { drsStatusChangeGroup 4 } - - drsPowerChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0005 This attribute defines the timestamp of the most recent - power health status change." - ::= { drsStatusChangeGroup 5 } - - drsFanChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0006 This attribute defines the timestamp of the most recent - Fan health status change." - ::= { drsStatusChangeGroup 6 } - - drsBladeChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0007 This attribute defines the timestamp of the most recent - Blade health status change." - ::= { drsStatusChangeGroup 7 } - - drsTempChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0008 This attribute defines the timestamp of the most recent - Temp Sensor health status change." - ::= { drsStatusChangeGroup 8 } - - drsCMCChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0003.0003.0009 This attribute defines the timestamp of the most recent - CMC health status change." - ::= { drsStatusChangeGroup 9 } - - ------------------------------------------------------------------------------- - -- group: chassis power - ------------------------------------------------------------------------------- - - drsCMCPowerTable OBJECT-TYPE - SYNTAX SEQUENCE OF DrsCMCPowerTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "0004.0001 This object defines the CMC power table." - ::= { drsChassisPowerGroup 1 } - - drsCMCPowerTableEntry OBJECT-TYPE - SYNTAX DrsCMCPowerTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "0004.0001.0001 This object defines the CMC power table entry." - INDEX { drsChassisIndex } - ::= { drsCMCPowerTable 1 } - - drsCMCPSUTable OBJECT-TYPE - SYNTAX SEQUENCE OF DrsCMCPSUTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "0004.0002 This object defines the CMC PSU table." - ::= { drsChassisPowerGroup 2 } - - drsCMCPSUTableEntry OBJECT-TYPE - SYNTAX DrsCMCPSUTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "0004.0002.0001 This object defines the CMC PSU table entry." - INDEX { drsPSUChassisIndex, drsPSUIndex } - ::= { drsCMCPSUTable 1 } - - ------------------------------------------------------------------------------- - -- table: CMC power information - ------------------------------------------------------------------------------- - - drsChassisIndex OBJECT-TYPE - SYNTAX DellCMCPowerIndexRange - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0001 This attribute defines the index - (one-based) of the associated chassis." - ::= { drsCMCPowerTableEntry 1 } - - drsPotentialPower OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0002 This attribute defines the power (in Watts) required by - the chassis infrastructure, plus the sum of the maximum power requirements - for all currently powered-on servers." - ::= { drsCMCPowerTableEntry 2 } - - drsIdlePower OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0003 This attribute defines the power (in Watts) required by - the chassis infrastructure, plus the sum of the minimum power requirements - for all currently powered-on servers." - ::= { drsCMCPowerTableEntry 3 } - - drsMaxPowerSpecification OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0004 This attribute defines the power limit (in Watts) - at which server throttling will take place." - ::= { drsCMCPowerTableEntry 4 } - - - drsPowerSurplus OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0005 This attribute defines the power surplus (in Watts) - remaining above the drsPotentialPower reading." - ::= { drsCMCPowerTableEntry 5 } - - drsKWhCumulative OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0006 This attribute defines the cumulative chassis power - usage (in KWh) since last reset." - ::= { drsCMCPowerTableEntry 6 } - - drsKWhCumulativeTime OBJECT-TYPE - SYNTAX DellTimestamp - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0007 This attribute defines the timestamp of the most recent - chassis power accumulator reset." - ::= { drsCMCPowerTableEntry 7 } - - drsWattsPeakUsage OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0008 This attribute defines the chassis peak power - usage (in Watts) since last reset." - ::= { drsCMCPowerTableEntry 8 } - - drsWattsPeakTime OBJECT-TYPE - SYNTAX DellTimestamp - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0009 This attribute defines the timestamp of the most recent - chassis peak power usage." - ::= { drsCMCPowerTableEntry 9 } - - drsWattsMinUsage OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0010 This attribute defines the chassis mimimum power - usage (in Watts) since last reset." - ::= { drsCMCPowerTableEntry 10 } - - drsWattsMinTime OBJECT-TYPE - SYNTAX DellTimestamp - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0011 This attribute defines the timestamp of the most recent - chassis minimum power usage." - ::= { drsCMCPowerTableEntry 11 } - - drsWattsResetTime OBJECT-TYPE - SYNTAX DellTimestamp - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0012 This attribute defines the timestamp of the most recent - reset of the chassis min/peak Watts readings." - ::= { drsCMCPowerTableEntry 12 } - - drsWattsReading OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0013 This attribute defines the instantaneous chassis power - usage (in Watts)." - ::= { drsCMCPowerTableEntry 13 } - - drsAmpsReading OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0001.0001.0014 This attribute defines the instantaneous chassis current - usage (in Watts)." - ::= { drsCMCPowerTableEntry 14 } - - ------------------------------------------------------------------------------- - -- table: CMC PSU info - ------------------------------------------------------------------------------- - - drsPSUChassisIndex OBJECT-TYPE - SYNTAX DellCMCPowerIndexRange - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0001 This attribute defines the index - (one-based) of the associated chassis." - ::= { drsCMCPSUTableEntry 1 } - - drsPSUIndex OBJECT-TYPE - SYNTAX DellCMCPSUIndexRange - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0002 This attribute defines the index - (one-based) of the associated CMC PSU." - ::= { drsCMCPSUTableEntry 2 } - - drsPSULocation OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0003 This attribute defines the location - of the CMC PSU." - ::= { drsCMCPSUTableEntry 3 } - - drsPSUMonitoringCapable OBJECT-TYPE - SYNTAX DellCMCPSUCapable - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0004 This attribute defines the PSU Monitoring - capabilities, or the absence of a PSU in this location." - ::= { drsCMCPSUTableEntry 4 } - - drsPSUVoltsReading OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0005 This attribute defines the instantaneous - PSU Voltage reading." - ::= { drsCMCPSUTableEntry 5 } - - drsPSUAmpsReading OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0006 This attribute defines the instantaneous - PSU Current reading." - ::= { drsCMCPSUTableEntry 6 } - - drsPSUWattsReading OBJECT-TYPE - SYNTAX DellPowerReading - ACCESS read-only - STATUS mandatory - DESCRIPTION "0004.0002.0001.0007 This attribute defines the instantaneous - PSU Wattage reading." - ::= { drsCMCPSUTableEntry 7 } - - ------------------------------------------------------------------------------- - -- group: chassis servers - ------------------------------------------------------------------------------- - - drsCMCServerTable OBJECT-TYPE - SYNTAX SEQUENCE OF DrsCMCServerTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "0005.0001 This object defines the CMC server table." - ::= { drsChassisServerGroup 1 } - - drsCMCServerTableEntry OBJECT-TYPE - SYNTAX DrsCMCServerTableEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "0005.0001.0001 This object defines the CMC server table entry." - INDEX { drsServerIndex } - ::= { drsCMCServerTable 1 } - - ------------------------------------------------------------------------------- - -- table: CMC Server info - ------------------------------------------------------------------------------- - - drsServerIndex OBJECT-TYPE - SYNTAX DellCMCServerIndexRange - ACCESS read-only - STATUS mandatory - DESCRIPTION "0005.0001.0001.0001 This attribute defines the index - (one-based) of the associated CMC server." - ::= { drsCMCServerTableEntry 1 } - - drsServerMonitoringCapable OBJECT-TYPE - SYNTAX DellCMCServerCapable - ACCESS read-only - STATUS mandatory - DESCRIPTION "0005.0001.0001.0002 This attribute defines the server monitoring - capabilities, or the absence of a server in this location." - ::= { drsCMCServerTableEntry 2 } - - drsServerServiceTag OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0005.0001.0001.0003 This attribute defines the Service Tag - of the CMC server." - ::= { drsCMCServerTableEntry 3 } - - drsServerSlotName OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0005.0001.0001.0004 This attribute defines the Slot Name - of the CMC server." - ::= { drsCMCServerTableEntry 4 } - - drsServerSlotNumber OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0005.0001.0001.0005 This attribute defines the Chassis - Slot Number of the CMC server." - ::= { drsCMCServerTableEntry 5 } - - drsServerNodeID OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0005.0001.0001.0006 This attribute defines the Node ID - of the CMC server. The Node ID provides a unique identifier - for the server." - ::= { drsCMCServerTableEntry 6 } - - ------------------------------------------------------------------------------- - -- group: Chassis Alerts 1 - ------------------------------------------------------------------------------- - - drsCASubSystem OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0020.0010.0001 This attribute defines the Sub-System Name of the CMC Alert" - ::= { drsChassisAlertVariables 1 } - - drsCASSCurrStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0020.0010.0002 This attribute defines the Current Status of the Alerting - Sub-System" - ::= { drsChassisAlertVariables 2 } - - drsCASSPrevStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "0020.0010.0003 This attribute defines the Previous Status of the Alerting - Sub-System" - ::= { drsChassisAlertVariables 3 } - - drsCASSChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION "0020.0010.0004 This attribute defines the Timestamp of Most Recent Change of - the Alerting Sub-System" - ::= { drsChassisAlertVariables 4 } - - drsCAMessage OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "0020.0010.0005 This attribute defines the CSSD message of the CMC Alert" - ::= { drsChassisAlertVariables 5 } - - alertCMCTestTrap TRAP-TYPE - ENTERPRISE drsOutofBandGroup - DESCRIPTION "The CMC has generated a test trap" - --#TYPE "CMC Test Trap" - --#SUMMARY "CMC Test Trap" - --#SEVERITY INFORMATIONAL - --#CATEGORY Error Events - ::= 2000 - - alertCMCNormalTrap TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsProductChassisName, - drsProductChassisLocation, - drsGlobalCurrStatus, - drsCASubSystem, - drsCASSCurrStatus, - drsCASSPrevStatus, - drsCASSChangeTime, - drsCAMessage } - DESCRIPTION "The CMC reported a return-to-normal or informational event." - --#TYPE "CMC Return-to-Normal / Informational Trap" - --#SUMMARY "Return-to-Normal / Informational Trap from CMC in system %s in location %s, message: %s" - --#ARGUMENTS {0,1,7} - --#SEVERITY NORMAL - --#CATEGORY Error Events - ::= 2002 - - alertCMCWarningTrap TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsProductChassisName, - drsProductChassisLocation, - drsGlobalCurrStatus, - drsCASubSystem, - drsCASSCurrStatus, - drsCASSPrevStatus, - drsCASSChangeTime, - drsCAMessage } - DESCRIPTION "The CMC reported a warning event." - --#TYPE "CMC Warning Trap" - --#SUMMARY "Warning Trap from CMC in system %s in location %s, message: %s" - --#ARGUMENTS {0,1,7} - --#SEVERITY WARNING - --#CATEGORY Error Events - ::= 2003 - - alertCMCCriticalTrap TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsProductChassisName, - drsProductChassisLocation, - drsGlobalCurrStatus, - drsCASubSystem, - drsCASSCurrStatus, - drsCASSPrevStatus, - drsCASSChangeTime, - drsCAMessage } - DESCRIPTION "The CMC reported a critical event." - --#TYPE "CMC Critical Trap" - --#SUMMARY "Critical Trap from CMC in system %s in location %s, message: %s" - --#ARGUMENTS {0,1,7} - --#SEVERITY CRITICAL - --#CATEGORY Error Events - ::= 2004 - - alertCMCNonRecoverableTrap TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsProductChassisName, - drsProductChassisLocation, - drsGlobalCurrStatus, - drsCASubSystem, - drsCASSCurrStatus, - drsCASSPrevStatus, - drsCASSChangeTime, - drsCAMessage } - DESCRIPTION "The CMC reported a catastrophic event." - --#TYPE "CMC Non-Recoverable Trap" - --#SUMMARY "Non-Recoverable Trap from CMC in system %s in location %s, message: %s" - --#ARGUMENTS {0,1,7} - --#SEVERITY NON-RECOVERABLE - --#CATEGORY Error Events - ::= 2005 - - ------------------------------------------------------------------------------- - -- group: Chassis Alerts 2 - ------------------------------------------------------------------------------- - - drsCA2MessageID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Message ID of the alert." - ::= { drsChassisAlert2Variables 1 } - - drsCA2Message OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Message describing the alert." - ::= { drsChassisAlert2Variables 2 } - - drsCA2MessageArgs OBJECT-TYPE - SYNTAX DellString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Concatenated set of strings representing any message arguments - that were used to construct the alert message. Each message - argument string is enclosed in double quotes, and there is a - comma after the ending double quote of each message argument - string, except the last one. Any double quotes found within a - message argument string were preprocessed and changed to single - quotes." - ::= { drsChassisAlert2Variables 3 } - - drsCA2AlertStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION "Status of the alert." - ::= { drsChassisAlert2Variables 4 } - - drsCA2FQDD OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..512)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Fully qualified device descriptor of device causing the alert." - ::= { drsChassisAlert2Variables 5 } - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Amperage Probe Traps - -- - -- Category: System/1 - -- Subcategory: AMP/16 - ------------------------------------------------------------------------------ - - alert2AmperageProbeNormal TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Current sensor reading is within range." - --#TYPE "System: Amperage Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2179 - - alert2AmperageProbeWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Current sensor has detected a warning value." - --#TYPE "System: Amperage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2178 - - alert2AmperageProbeFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Current sensor has detected a failure value." - --#TYPE "System: Amperage Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2177 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Battery Traps - -- - -- Category: System/1 - -- Subcategory: BAT/22 - ------------------------------------------------------------------------------ - - alert2BatteryNormal TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Battery state has returned to normal; - or battery presence had been detected." - --#TYPE "System: Battery Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2227 - - alert2BatteryWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Battery is low." - --#TYPE "System: Battery Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2226 - - alert2BatteryFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Battery has failed or battery is absent." - --#TYPE "System: Battery Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2225 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Cable Traps - -- - -- Category: System/1 - -- Subcategory: CBL/43 - ------------------------------------------------------------------------------ - - alert2CableFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Cable failure." - --#TYPE "System: Cable Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2393 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: CMC Traps - -- - -- Category: System/1 - -- Subcategory: CMC/62 - ------------------------------------------------------------------------------ - - alert2CMCWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Chassis Management Controller detected a warning." - --#TYPE "System: CMC Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2546 - - alert2CMCFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Chassis Management Controller detected an error." - --#TYPE "System: CMC Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2545 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Fan Traps - -- - -- Category: System/1 - -- Subcategory: FAN/13 - ------------------------------------------------------------------------------ - - alert2FanInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Fan information." - --#TYPE "System: Fan Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2155 - - alert2FanWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Fan warning." - --#TYPE "System: Fan Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2154 - - alert2FanFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Fan failure." - --#TYPE "System: Fan Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2153 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Hardware Configuration Traps - -- - -- Category: System/1 - -- Subcategory: HWC/35 - ------------------------------------------------------------------------------ - - alert2HardwareConfigurationInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Hardware configuration information." - --#TYPE "System: Hardware Configuration Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2331 - - alert2HardwareConfigurationWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Hardware configuration warning." - --#TYPE "System: Hardware Configuration Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2330 - - alert2HardwareConfigurationFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Hardware configuration failure or critical event." - --#TYPE "System: Hardware Configuration Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2329 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: IO Virtualization Traps - -- - -- Category: System/1 - -- Subcategory: IOV/63 - ------------------------------------------------------------------------------ - - alert2IOVirtualizationInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "IO Virtualization information." - --#TYPE "System: IO Virtualization Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2555 - - alert2IOVirtualizationWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "IO Virtualization warning." - --#TYPE "System: IO Virtualization Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2554 - - alert2IOVirtualizationFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "IO Virtualization failure or critical event." - --#TYPE "System: IO Virtualization Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2553 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Link Status Traps - -- - -- Category: System/1 - -- Subcategory: LNK/25 - ------------------------------------------------------------------------------ - - alert2LinkStatusInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Link status information." - --#TYPE "System: Link Status Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2251 - - alert2LinkStatusWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Link status warning." - --#TYPE "System: Link Status Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2250 - - alert2LinkStatusFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Link status failure or critical event." - --#TYPE "System: Link Status Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2249 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: PCI Device Traps - -- - -- Category: System/1 - -- Subcategory: PCI/46 - ------------------------------------------------------------------------------ - - alert2PCIDeviceInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "PCI device information." - --#TYPE "System: PCI Device Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2419 - - alert2PCIDeviceWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "PCI device warning." - --#TYPE "System: PCI Device Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2418 - - alert2PCIDeviceFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "PCI device failure or critical event." - --#TYPE "System: PCI Device Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2417 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Power Supply Traps - -- - -- Category: System/1 - -- Subcategory: PSU/17 - ------------------------------------------------------------------------------ - - alert2PowerSupplyNormal TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power supply has returned to normal." - --#TYPE "System: Power Supply Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2187 - - alert2PowerSupplyWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power supply has detected a warning." - --#TYPE "System: Power Supply Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2186 - - alert2PowerSupplyFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power supply has detected a failure." - --#TYPE "System: Power Supply Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2185 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Power Supply Absent Traps - -- - -- Category: System/1 - -- Subcategory: PSUA/52 - ------------------------------------------------------------------------------ - - alert2PowerSupplyAbsent TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power supply is absent." - --#TYPE "System: Power Supply Absent" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2465 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Power Usage Traps - -- - -- Category: System/1 - -- Subcategory: PWR/28 - ------------------------------------------------------------------------------ - - alert2PowerUsageInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power usage information." - --#TYPE "System: Power Usage Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2275 - - alert2PowerUsageWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power usage warning." - --#TYPE "System: Power Usage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2274 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Redundancy Traps - -- - -- Category: System/1 - -- Subcategory: RDU/53 - ------------------------------------------------------------------------------ - - alert2RedundancyInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Redundancy information." - --#TYPE "System: Redundancy Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2475 - - alert2RedundancyDegraded TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Redundancy is degraded." - --#TYPE "System: Redundancy Degraded" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2474 - - alert2RedundancyLost TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Redundancy is lost." - --#TYPE "System: Redundancy Lost" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2473 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Security Event Traps - -- - -- Category: System/1 - -- Subcategory: SEC/42 - ------------------------------------------------------------------------------ - - alert2SecurityInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Security information." - --#TYPE "System: Security Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2387 - - alert2SecurityWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Security warning." - --#TYPE "System: Security Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2386 - - alert2SecurityFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Security failure or critical event." - --#TYPE "System: Security Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2385 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: System Event Log Traps - -- - -- Category: System/1 - -- Subcategory: SEL/41 - ------------------------------------------------------------------------------ - - alert2SystemEventLogInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "System Event Log information." - --#TYPE "System: System Event Log Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2379 - - alert2SystemEventLogWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "System Event Log warning." - --#TYPE "System: System Event Log Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2378 - - alert2SystemEventLogFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "System Event Log failure or critical event." - --#TYPE "System: System Event Log Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2377 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Software Configuration Traps - -- - -- Category: System/1 - -- Subcategory: SWC/36 - ------------------------------------------------------------------------------ - - alert2SoftwareConfigurationInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Software configuration information." - --#TYPE "System: Software Configuration Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2339 - - alert2SoftwareConfigurationWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Software configuration warning." - --#TYPE "System: Software Configuration Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2338 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Temperature Probe Traps - -- - -- Category: System/1 - -- Subcategory: TMP/14 - ------------------------------------------------------------------------------ - - alert2TemperatureProbeNormal TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Temperature sensor value is within range." - --#TYPE "System: Temperature Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2163 - - alert2TemperatureProbeWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Temperature sensor has detected a warning value." - --#TYPE "System: Temperature Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2162 - - alert2TemperatureProbeFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Temperature sensor has detected a failure value." - --#TYPE "System: Temperature Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2161 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: System: Voltage Probe Traps - -- - -- Category: System/1 - -- Subcategory: VLT/15 - ------------------------------------------------------------------------------ - - alert2VoltageProbeNormal TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Voltage sensor reading is within range." - --#TYPE "System: Voltage Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 2171 - - alert2VoltageProbeWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Voltage sensor has detected a warning value." - --#TYPE "System: Voltage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2170 - - alert2VoltageProbeFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Voltage sensor has detected a failure value." - --#TYPE "System: Voltage Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 2169 - - ------------------------------------------------------------------------------- - -- Chassis Alerts 2: Storage: Battery Traps - -- - -- Category: Storage/2 - -- Subcategory: BAT/22 - ------------------------------------------------------------------------------- - - alert2StorageBatteryInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Battery information." - --#TYPE "Storage: Battery Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4275 - - alert2StorageBatteryWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Battery warning." - --#TYPE "Storage: Battery Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4274 - - alert2StorageBatteryFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Battery failure." - --#TYPE "Storage: Battery Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4273 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Controller Traps - -- - -- Category: Storage/2 - -- Subcategory: CTL/29 - ------------------------------------------------------------------------------ - - alert2StorageControllerInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Controller information." - --#TYPE "Storage: Controller Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4331 - - alert2StorageControllerWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Controller warning." - --#TYPE "Storage: Controller Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4330 - - alert2StorageControllerFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Controller failure." - --#TYPE "Storage: Controller Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4329 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Enclosure Traps - -- - -- Category: Storage/2 - -- Subcategory: ENC/30 - ------------------------------------------------------------------------------ - - alert2StorageEnclosureInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Enclosure information." - --#TYPE "Storage: Enclosure Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4339 - - alert2StorageEnclosureWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Enclosure warning." - --#TYPE "Storage: Enclosure Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4338 - - alert2StorageEnclosureFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Enclosure failure." - --#TYPE "Storage: Enclosure Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4337 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Fan Traps - -- - -- Category: Storage/2 - -- Subcategory: FAN/13 - ------------------------------------------------------------------------------ - - alert2StorageFanInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Fan information." - --#TYPE "Storage: Fan Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4203 - - alert2StorageFanWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Fan warning." - --#TYPE "Storage: Fan Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4202 - - alert2StorageFanFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Fan failure." - --#TYPE "Storage: Fan Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4201 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Physical Disk Traps - -- - -- Category: Storage/2 - -- Subcategory: PDR/31 - ------------------------------------------------------------------------------ - - alert2StoragePhysicalDiskInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Physical disk information." - --#TYPE "Storage: Physical Disk Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4347 - - alert2StoragePhysicalDiskWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Physical disk warning." - --#TYPE "Storage: Physical Disk Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4346 - - alert2StoragePhysicalDiskFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Physical disk failure." - --#TYPE "Storage: Physical Disk Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4345 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Power Supply Traps - -- - -- Category: Storage/2 - -- Subcategory: PSU/17 - ------------------------------------------------------------------------------ - - alert2StoragePowerSupplyInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Power supply information." - --#TYPE "Storage: Power Supply Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4235 - - alert2StoragePowerSupplyWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Power supply warning." - --#TYPE "Storage: Power Supply Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4234 - - alert2StoragePowerSupplyFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Power supply failure." - --#TYPE "Storage: Power Supply Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4233 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Storage Management Status Traps - -- - -- Category: Storage/2 - -- Subcategory: STOR/10 - ------------------------------------------------------------------------------ - - alert2StorageManagementInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Management information. - There is no global status change associated with this trap." - --#TYPE "Storage: Storage Management Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4179 - - alert2StorageManagementWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Management has detected a device independent warning - condition. There is no global status change associated with this - trap." - --#TYPE "Storage: Storage Management Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4178 - - alert2StorageManagementFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Management has detected a device independent error condition. - There is no global status change associated with this trap." - --#TYPE "Storage: Storage Management Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4177 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Temperature Probe Traps - -- - -- Category: Storage/2 - -- Subcategory: TMP/14 - ------------------------------------------------------------------------------ - - alert2StorageTemperatureProbeInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Temperature probe information." - --#TYPE "Storage: Temperature Probe Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4211 - - alert2StorageTemperatureProbeWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Temperature probe warning." - --#TYPE "Storage: Temperature Probe Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4210 - - alert2StorageTemperatureProbeFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Temperature probe failure." - --#TYPE "Storage: Temperature Probe Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4209 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Storage: Virtual Disk Traps - -- - -- Category: Storage/2 - -- Subcategory: VDR/32 - ------------------------------------------------------------------------------ - - alert2StorageVirtualDiskInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Virtual disk information." - --#TYPE "Storage: Virtual Disk Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 4355 - - alert2StorageVirtualDiskWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Virtual disk warning." - --#TYPE "Storage: Virtual Disk Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 4354 - - alert2StorageVirtualDiskFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Storage Virtual disk failure." - --#TYPE "Storage: Virtual Disk Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS MANDATORY - ::= 4353 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: CMC Traps - -- - -- Category: Audit/4 - -- Subcategory: CMC/62 - ------------------------------------------------------------------------------ - - alert2CMCAuditInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Chassis Management Controller audit information." - --#TYPE "Audit: CMC Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 8691 - - alert2CMCAuditWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Chassis Management Controller audit warning." - --#TYPE "Audit: CMC Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8690 - - alert2CMCAuditFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Chassis Management Controller audit failure or critical event." - --#TYPE "Audit: CMC Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8689 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: IO Virtualization Traps - -- - -- Category: Audit/4 - -- Subcategory: IOV/63 - ------------------------------------------------------------------------------ - - alert2IOVirtualizationAuditWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "IO Virtualization audit warning." - --#TYPE "Audit: IO Virtualization Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8698 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: License Traps - -- - -- Category: Audit/4 - -- Subcategory: LIC/40 - ------------------------------------------------------------------------------ - - alert2LicenseInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "License information." - --#TYPE "Audit: License Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 8515 - - alert2LicenseWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "License warning." - --#TYPE "Audit: License Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8514 - - alert2LicenseFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "License failure." - --#TYPE "Audit: License Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8513 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: PCI Device Traps - -- - -- Category: Audit/4 - -- Subcategory: PCI/46 - ------------------------------------------------------------------------------ - - alert2PCIDeviceAuditWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "PCI device audit warning." - --#TYPE "Audit: PCI Device Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8562 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: Power Supply Traps - -- - -- Category: Audit/4 - -- Subcategory: PSU/17 - ------------------------------------------------------------------------------ - - alert2PowerSupplyAuditWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power Supply audit warning." - --#TYPE "Audit: Power Supply Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8330 - - alert2PowerSupplyAuditFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power Supply audit failure or critical event." - --#TYPE "Audit: Power Supply Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8329 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: Power Usage Traps - -- - -- Category: Audit/4 - -- Subcategory: PWR/28 - ------------------------------------------------------------------------------ - - alert2PowerUsageAuditWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power usage audit warning." - --#TYPE "Audit: Power Usage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8418 - - alert2PowerUsageAuditFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Power usage audit failure or critical event." - --#TYPE "Audit: Power Usage Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8417 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Audit: Software Change Traps - -- - -- Category: Audit/4 - -- Subcategory: SWU/21 - ------------------------------------------------------------------------------ - - alert2SoftwareChangeAuditFailure TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Software change audit failure or critical event." - --#TYPE "Audit: Software Change Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 8361 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Configuration: IO Virtualization Traps - -- - -- Category: Configuration/5 - -- Subcategory: IOV/63 - ------------------------------------------------------------------------------ - - alert2IOVConfigurationInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "IO Virtualization configuration information." - --#TYPE "Configuration: IO Virtualization Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 10747 - - alert2IOVConfigurationWarning TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "IO Virtualization configuration warning." - --#TYPE "Configuration: IO Virtualization Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= 10746 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Configuration: PCI Device Traps - -- - -- Category: Configuration/5 - -- Subcategory: PCI/46 - ------------------------------------------------------------------------------ - - alert2PCIDeviceConfigurationInformation TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "PCI device configuration information." - --#TYPE "Configuration: PCI Device Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," - --#SUMMARY "Chassis Location: %s, Global Status: %d" - --#ARGUMENTS {0, 1, 3, 4, 7, 5, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 10611 - - ------------------------------------------------------------------------------ - -- Chassis Alerts 2: Configuration: Test Traps - -- - -- Category: Configuration/5 - -- Subcategory: TST/19 - ------------------------------------------------------------------------------ - - alert2CMCTestTrap TRAP-TYPE - ENTERPRISE drsCMCAlert2Group - VARIABLES { drsCA2MessageID, - drsCA2Message, - drsCA2MessageArgs, - drsCA2AlertStatus, - drsCA2FQDD, - drsProductChassisName, - drsProductChassisLocation, - drsChassisServiceTag, - drsGlobalCurrStatus } - DESCRIPTION - "Test trap generated by CMC in response to a user request." - --#TYPE "Configuration: CMC Test Trap" - --#SEVERITY INFORMATIONAL - --#SUMMARY "%s" - --#ARGUMENTS {1} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= 10395 - - ------------------------------------------------------------------------------- - -- group: Legacy Alerts - ------------------------------------------------------------------------------- - - drsAlertSystem OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "5000.0010.0001 Name of the system generating the alert." - --DEFAULT get-function-async get_%n_async - --DEFAULT next-function-async std_next_async - ::= { drsAlertVariables 1 } - - drsAlertTableIndexOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "5000.0010.0002 0.0" - --DEFAULT get-function-async get_OID_null_async - --DEFAULT next-function-async std_next_async - ::= { drsAlertVariables 2 } - - drsAlertMessage OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "5000.0010.0003 Message describing the alert." - --DEFAULT get-function-async get_string_null_async - --DEFAULT next-function-async std_next_async - ::= { drsAlertVariables 3 } - - drsAlertCurrentStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "5000.0010.0004 Current status of object causing the alert." - --DEFAULT get-function-async get_dellstatus_unknow_async - --DEFAULT next-function-async std_next_async - ::= { drsAlertVariables 4 } - - drsAlertPreviousStatus OBJECT-TYPE - SYNTAX DellStatus - ACCESS read-only - STATUS mandatory - DESCRIPTION - "5000.0010.0005 Previous status of object causing the alert." - --DEFAULT get-function-async get_dellstatus_unknow_async - --DEFAULT next-function-async std_next_async - ::= { drsAlertVariables 5 } - - drsAlertData OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..1024)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "5000.0010.0006 Alert data." - --DEFAULT get-function-async get_string_null_async - --DEFAULT next-function-async std_next_async - ::= { drsAlertVariables 6 } - - alertDrscTestTrapEvent TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC generated a test trap event in response to a user request." - --#TYPE "Dell RAC Test TRAP Event" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#CATEGORY Status Events - ::= 1001 - - alertDrscAuthError TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC Authentication Failures during a time period have Exceeded a Threshold." - --#TYPE "Dell RAC Authentication Error" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#CATEGORY Error Events - ::= 1002 - - alertDrscLostESM TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC cannot communicate with the baseboard management controller (ESM)." - --#TYPE "Dell RAC Lost Communication with ESM" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#CATEGORY Error Events - ::= 1003 - - alertDrscFoundESM TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC is communicating normally with the baseboard management controller (ESM)." - --#TYPE "Dell RAC Communication with ESM is OK" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#CATEGORY Error Events - ::= 1004 - - alertDrscPowerOff TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected a System power state change to powered-off." - --#TYPE "Dell RAC Detected System Powered-Off" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#CATEGORY Error Events - ::= 1005 - - alertDrscPowerOn TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected a system power state change to powered-on." - --#TYPE "Dell RAC Detected System Powered-On" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#CATEGORY Error Events - ::= 1006 - - alertDrscWatchdogExpired TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected that the system watchdog has expired indicating a system hang." - --#TYPE "Dell RAC Detected Watchdog Expired" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#CATEGORY Error Events - ::= 1007 - - alertDrscBattLow TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC Battery charge is below 25% indicating that the battery may only be able to power the DRSC for 8-10 minutes." - --#TYPE "Dell RAC Battery Charge Low" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#CATEGORY Error Events - ::= 1008 - - alertDrscTempNormal TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC Temperature probe has retured to a normal value." - --#TYPE "Dell RAC Temperature Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#CATEGORY Error Events - ::= 1009 - - alertDrscTempWarning TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC Temperature probe has detected a Warning value." - --#TYPE "Dell RAC Temperature Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#CATEGORY Error Events - ::= 1010 - - alertDrscTempCritical TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC Temperature probe has detected a failure (or critical) value." - --#TYPE "Dell RAC Temperature Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#CATEGORY Error Events - ::= 1011 - - alertDrscVoltNormal TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC voltage has returned to a normal value." - --#TYPE "Dell RAC Voltage Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#CATEGORY Error Events - ::= 1012 - - alertDrscVoltWarning TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC voltage probe has detected a warning value." - --#TYPE "Dell RAC Battery Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MINOR - --#CATEGORY Error Events - ::= 1013 - - alertDrscVoltCritical TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC voltage probe has detected a failure (or critical) value." - --#TYPE "Dell RAC Voltage Failure" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#CATEGORY Error Events - ::= 1014 - - alertDrscSELWarning TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected a new event in the System Event Log with Severity: Warning." - --#TYPE "Dell RAC System Event Log Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#CATEGORY Error Events - ::= 1015 - - alertDrscSELCritical TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected a new event in the System Event Log with Severity: Critical." - --#TYPE "Dell RAC System Event Log Critical" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY CRITICAL - --#CATEGORY Error Events - ::= 1016 - - alertDrscSEL80percentFull TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected that the System Event Log is 80% full." - --#TYPE "Dell System Event Log 80% Full Warning" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#CATEGORY Status Events - ::= 1017 - - alertDrscSEL90percentFull TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected that the System Event Log is 90% full." - --#TYPE " Dell System Event Log 90% Full Warning " - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#CATEGORY Status Events - ::= 1018 - - alertDrscSEL100percentFull TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected that the System Event Log is 100% full." - --#TYPE " Dell System Event Log 100% Full Warning " - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY MAJOR - --#CATEGORY Status Events - ::= 1019 - - alertDrscSELNormal TRAP-TYPE - ENTERPRISE drsOutofBandGroup - VARIABLES { drsAlertSystem, - drsAlertTableIndexOID, - drsAlertMessage, - drsAlertCurrentStatus, - drsAlertPreviousStatus, - drsAlertData } - DESCRIPTION - "The RAC has detected a new event in the System Event Log with Severity: Normal." - --#TYPE "Dell RAC System Event Log Normal" - --#SUMMARY "%s" - --#ARGUMENTS {2} - --#SEVERITY INFORMATIONAL - --#CATEGORY Error Events - ::= 1020 -END - diff --git a/mibs/orig/EATON-EMP-MIB b/mibs/orig/EATON-EMP-MIB deleted file mode 100644 index 4024b19..0000000 --- a/mibs/orig/EATON-EMP-MIB +++ /dev/null @@ -1,271 +0,0 @@ -EATON-EMP-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32 - FROM SNMPv2-SMI - DisplayString - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP - FROM SNMPv2-CONF - xupsEnvironment - FROM EATON-OIDS; - -eatonEMPMIB MODULE-IDENTITY - LAST-UPDATED "200703120000Z" - ORGANIZATION "Eaton Corporation" - CONTACT-INFO - "Eaton Power Quality Technical Support (PQTS) group - www.eaton.com/powerxpert - Technical Resource Center phone numbers - United States: 1.800.843.9433 or 919.870.3028 - Canada: 1.800.461.9166 ext. 260 - All other countries: Call your local service representative." - DESCRIPTION - "The MIB module for Eaton Environment Monitoring Probes (EMP). - The elements of this MIB have been extracted from the - Eaton PowerMIB and placed in this separate MIB file for convenience. - - Copyright (C) Eaton Corporation (2007)." - - REVISION "200703120000Z" - DESCRIPTION - "Initial Version of eatonEMPMIB." - - ::= { xupsEnvironment 0 } - --- ::= { enterprises 534 8 1 } --- eatonEMPMIB { iso org(3) dod(6) internet(1) private(4) --- enterprises(1) eaton(534) xupsMIB(1) xupsEnvironment(6) (0) } - - --- --- EMP group --- --- The objects defined in this group are provided by the EMP. --- They are Temperature and Humidity readings and alarming limits, --- and the (two) contacts readings and setup information. --- These objects are considered "Remote" since the EMP is a --- separate probe from the Eaton device or gateway it is connected to. --- --- Notices/Traps: two different types of traps may be sent in response --- to EMP changes, depending upon the type of device the EMP is attached to. --- If connected to a UPS device, normally the PowerMIB traps are sent: --- xupstdRemoteTempBad --- xupstdRemoteHumidityBad --- xupstdContactActiveNotice --- xupstdContactInactiveNotice --- If connected to a Toolkit-enabled PowerXpert Gateway, Toolkit traps are sent: --- powerChainCriticalAlarm --- powerChainCautionaryAlarm --- powerChainAlarmAcknowledged --- powerChainAlarmCleared --- Both sets of traps are defined in their respective MIB files. - - -xupsEnvRemoteTemp OBJECT-TYPE - SYNTAX Integer32 (-100..200) - UNITS "degrees Centigrade" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The reading of an EMP's temperature sensor." - ::= { xupsEnvironment 5 } - -xupsEnvRemoteHumidity OBJECT-TYPE - SYNTAX Integer32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The reading of an EMP's humidity sensor." - ::= { xupsEnvironment 6 } - --- --- The Environmental Contact Sensing Table --- Contains the table for monitoring all contacts (digital --- inputs, normally 2 in an EMP). --- - -xupsEnvNumContacts OBJECT-TYPE - SYNTAX Integer32 (1..1024) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Contacts in the xupsContactSenseTable. - This object indicates the number of rows in the - xupsContactSenseTable." - ::= { xupsEnvironment 7 } - -xupsContactSenseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsContactsTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of Contact Sensing table entries. - The number of entries is given by the value of - xupsEnvNumContacts." - ::= { xupsEnvironment 8 } - -xupsContactsTableEntry OBJECT-TYPE - SYNTAX XupsContactsTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing information applicable - to a particular Contact input." - INDEX { xupsContactIndex } - ::= { xupsContactSenseTable 1 } - -XupsContactsTableEntry ::= SEQUENCE { - xupsContactIndex Integer32, - xupsContactType INTEGER, - xupsContactState INTEGER, - xupsContactDescr DisplayString - } - -xupsContactIndex OBJECT-TYPE - SYNTAX Integer32 (1..1024) - MAX-ACCESS read-only -- actually not-accessible - STATUS current - DESCRIPTION - "The Contact identifier; identical to the Contact Number. - This object is not-accessible to MIB browsers, but had to be changed to - read-only to satisfy SMIv2 syntax checkers if it is included in traps." - ::= { xupsContactsTableEntry 1 } - -xupsContactType OBJECT-TYPE - SYNTAX INTEGER { - normallyOpen(1), -- or Input Normally High - normallyClosed(2), -- or Input Normally Low - anyChange(3), -- No normal Open/Closed state - notUsed(4) -- Contact not in service or not alarming - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The normal state for this contact. The 'other' (not 'Normally') - state is the Active state for generating the xupstdContactActiveNotice - trap. If anyChange(3) is selected, then this trap is sent - any time the contact changes to either Open or Closed. - No traps are sent if the Contact is set to notUsed(4). - In many cases, the configuration for Contacts may be done by other - means, so this object may be read-only." - ::= { xupsContactsTableEntry 2 } - -xupsContactState OBJECT-TYPE - SYNTAX INTEGER { - open(1), - closed(2), - openWithNotice(3), - closedWithNotice(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of the Contact input; - the value is based on the open/closed input state - and the setting for xupsContactType. - When entering the openWithNotice(3) and closedWithNotice(4) - states, no entries added to the xupsAlarmTable, but - the xupstdContactActiveNotice trap is sent." - ::= { xupsContactsTableEntry 3 } - -xupsContactDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..63)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "A label identifying the Contact. This object should be - set by the administrator." - ::= { xupsContactsTableEntry 4 } - -xupsEnvRemoteTempLowerLimit OBJECT-TYPE - SYNTAX Integer32 (-100..200) - UNITS "degrees Centigrade" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Lower Limit of the EMP temperature; if xupsEnvRemoteTemp - falls below this value, the xupsRemoteTempBad alarm will occur." - ::= { xupsEnvironment 9 } - -xupsEnvRemoteTempUpperLimit OBJECT-TYPE - SYNTAX Integer32 (-100..200) - UNITS "degrees Centigrade" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Upper Limit of the EMP temperature; if xupsEnvRemoteTemp - rises above this value, the xupsRemoteTempBad alarm will occur. - This value should be greater than xupsEnvRemoteTempLowerLimit." - ::= { xupsEnvironment 10 } - -xupsEnvRemoteHumidityLowerLimit OBJECT-TYPE - SYNTAX Integer32 (0..100) - UNITS "percent" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Lower Limit of the EMP humidity reading; if xupsEnvRemoteHumidity - falls below this value, the xupsRemoteHumidityBad alarm will occur." - ::= { xupsEnvironment 11 } - -xupsEnvRemoteHumidityUpperLimit OBJECT-TYPE - SYNTAX Integer32 (0..100) - UNITS "percent" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Upper Limit of the EMP humidity reading; if xupsEnvRemoteHumidity - rises above this value, the xupsRemoteHumidityBad alarm will occur. - This value should be greater than xupsEnvRemoteHumidityLowerLimit." - ::= { xupsEnvironment 12 } - - --- --- Traps / Notifications for the EMP in the PowerMIB style --- The special EMP traps are not normally provided by Power Xpert Gateways (which use --- the PXG-style traps instead) but could be provided by PowerMIB implementations --- These are found in the PowerMIB: --- xupstdContactActiveNotice --- xupstdContactInactiveNotice --- xupstdRemoteTempBad --- xupstdRemoteHumidityBad - - --- --- Conformance-related definitions --- -eatonEMPConformance OBJECT IDENTIFIER ::= { eatonEMPMIB 2 } - -eatonEMPGroup OBJECT-GROUP - OBJECTS { xupsEnvRemoteTemp, xupsEnvRemoteHumidity, - xupsEnvRemoteTempLowerLimit, xupsEnvRemoteTempUpperLimit, - xupsEnvRemoteHumidityLowerLimit, xupsEnvRemoteHumidityUpperLimit } - STATUS current - DESCRIPTION - "The EMP scalar objects." - ::= { eatonEMPConformance 1 } - -eatonEMPTableGroup OBJECT-GROUP - OBJECTS { xupsEnvNumContacts, xupsContactIndex, xupsContactType, - xupsContactState, xupsContactDescr } - STATUS current - DESCRIPTION - "The EMP Contacts Table objects." - ::= { eatonEMPConformance 2 } - - -eatonEMPSimpleCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for a normal EMP." - MODULE -- this module - MANDATORY-GROUPS { eatonEMPGroup, eatonEMPTableGroup } - ::= { eatonEMPConformance 4 } - - - - - -END \ No newline at end of file diff --git a/mibs/orig/EATON-OIDS b/mibs/orig/EATON-OIDS deleted file mode 100644 index fd27c46..0000000 --- a/mibs/orig/EATON-OIDS +++ /dev/null @@ -1,193 +0,0 @@ -EATON-OIDS DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, enterprises FROM SNMPv2-SMI - Integer32 FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC; - -eaton MODULE-IDENTITY - LAST-UPDATED "201811130000Z" - ORGANIZATION "Eaton Corporation" - CONTACT-INFO - "Eaton Power Quality Technical Support (PQTS) group - www.eaton.com/powerxpert - Technical Resource Center phone numbers - United States: 1.800.843.9433 or 919.870.3028 - Canada: 1.800.461.9166 ext. 260 - All other countries: Call your local service representative." - DESCRIPTION - "Assigns major branches from the root of - Eaton's OID tree (534). - - Copyright (C) Exide Electronics 1992-98 - Copyright (C) Powerware Corporation 1999-2004 - Copyright (C) Eaton Corporation (2005-)." - - REVISION "201811130000Z" - DESCRIPTION - "Added assignments for eatonSensor MIB." - - REVISION "201402190000Z" - DESCRIPTION - "Added assignments for stsMIB." - - REVISION "201001240000Z" - DESCRIPTION - "Added assignments for eatonEpdu and eatonEpduMa." - - REVISION "200906180000Z" - DESCRIPTION - "Added assignments for powerCmnd and OSDCIIMIB." - - - REVISION "200708060000Z" - DESCRIPTION - "Added assignments for pcdMIB and pxmMIB. - Added common Textual Conventions for Integers." - - REVISION "200707050000Z" - DESCRIPTION - "Added assignment for eatonEpduMIB. - Cleaned up file for public consumption." - - REVISION "200610150000Z" - DESCRIPTION - "Added assignments for powerChain and pxgMIB." - - REVISION "200605250000Z" - DESCRIPTION - "Revised from the original assignments in XUPS-MIB.txt. - Note that enterprises.534. was originally assigned to Exide - Electronics before Powerware was acquired by Eaton." - - ::= { enterprises 534 } - --- EATON-OIDS { iso org(3) dod(6) internet(1) private(4) --- enterprises(1) eaton(534) } - - --- The Powerware "PowerMIB" for UPSs -xupsMIB OBJECT IDENTIFIER ::= {eaton 1} --- Define the Environment group here since it is used in the Eaton-EMP-MIB as well -xupsEnvironment OBJECT IDENTIFIER ::= {xupsMIB 6} - --- --- The root of the list of Object Identifiers that are used to --- distinguish Eaton's SNMP agents (for use in sysObjId): -xupsObjectId OBJECT IDENTIFIER ::= {eaton 2} - powerwareEthernetSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 1} - powerwareNetworkSnmpAdapterEther OBJECT IDENTIFIER ::= {xupsObjectId 2} - powerwareNetworkSnmpAdapterToken OBJECT IDENTIFIER ::= {xupsObjectId 3} - onlinetDaemon OBJECT IDENTIFIER ::= {xupsObjectId 4} - connectUPSAdapterEthernet OBJECT IDENTIFIER ::= {xupsObjectId 5} - powerwareNetworkDigitalIOEther OBJECT IDENTIFIER ::= {xupsObjectId 6} - connectUPSAdapterTokenRing OBJECT IDENTIFIER ::= {xupsObjectId 7} - simpleSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 8} - powerwareEliSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 9} - powerwareBasicEmbeddedEthernet OBJECT IDENTIFIER ::= {xupsObjectId 10} - eatonPowerChainGateway OBJECT IDENTIFIER ::= {xupsObjectId 11} - eatonPowerChainDevice OBJECT IDENTIFIER ::= {xupsObjectId 12} - eatonPowerXpertMeter OBJECT IDENTIFIER ::= {xupsObjectId 13} - - --- Digital IO MIB (deprecated) --- File XUPSIOV1.MIB -xupsIoMIB OBJECT IDENTIFIER ::= {eaton 3} - --- DataTrax Forseer and Powervision branch -powerVision OBJECT IDENTIFIER ::= {eaton 4} - --- orphaned: BEEP (Basic Embedded Ethernet Product) --- File XUPS-BASIC-MIB.txt ---xupsBasic OBJECT IDENTIFIER ::= {eaton 5} - --- A branch for Powerware Product MIBs -products OBJECT IDENTIFIER ::= {eaton 6} - -- Product assignments - - pduAgent OBJECT IDENTIFIER ::= {products 6} - -- pduAgent product assignments - -- File MIB_hdpdu.mib for HD PDU - hdpdu OBJECT IDENTIFIER ::= {pduAgent 2} - - -- MIB for Eaton PDU, first for 9315's 3-phase PDU - -- Defined in EATON-PDU-MIB.txt - eatonPdu OBJECT IDENTIFIER ::= {pduAgent 4} - - -- MIB for Eaton Powerware first-generation Managed ePDUs - -- Defined in EATON-EPDU-MA-MIB.txt - -- eatonEpduMa OBJECT IDENTIFIER ::= {pduAgent 6} - - -- MIB for Eaton Powerware ePDUs - -- Defined in EATON-EPDU-MIB.txt - -- eatonEpdu OBJECT IDENTIFIER ::= {pduAgent 7} - - sensorAgent OBJECT IDENTIFIER ::= {products 8} - -- sensorAgent product assignments - -- MIB for Eaton Sensors - -- Defined in EATON-SENSOR-MIB.txt - -- eatonSensor OBJECT IDENTIFIER ::= {sensorAgent 1} - - - dataCenter OBJECT IDENTIFIER ::= {products 7} - -- dataCenter product assignments - environmentalMonitor OBJECT IDENTIFIER ::= {dataCenter 1} - - --- A branch for Eaton IT Department -itProjects OBJECT IDENTIFIER ::= {eaton 7} - pki OBJECT IDENTIFIER ::= {itProjects 1} - --- A branch for PowerChain Product MIBs -powerChain OBJECT IDENTIFIER ::= {eaton 8} - -- Product assignments - - -- MIB to support Alarms and Events in PowerXpert toolkit-enabled - -- Devices, Gateways, PXMeters - -- Defined in file EATON-PXG-MIB.txt - -- pxgMIB OBJECT IDENTIFIER ::= {powerChain 1} - - -- MIB to support common measures in Power Chain Devices - -- Defined in file EATON-PCD-MIB.txt - -- pcdMIB OBJECT IDENTIFIER ::= {powerChain 2} - - -- MIB to support power measures in Power Meters - -- Defined in file EATON-PWR-MTR-MIB.txt - -- pxmMIB OBJECT IDENTIFIER ::= {powerChain 3} - --- A branch for powercomand commercial control Product MIBs -powerCmnd OBJECT IDENTIFIER ::= {eaton 9} - - -- Product assignments - -- MIB to support the OSDCII controller - -- Defined in file EATON-OSDCII-MIB.txt - -- osdcMIB OBJECT IDENTIFIER ::= {powerCmnd 1} - --- A branch for Eaton STS devices MIBs -sts OBJECT IDENTIFIER ::= {eaton 10} - - -- Product assignments - -- MIB to support the data in STS devices - -- Defined in file Eaton-STS.MIB - -- stsMIB OBJECT IDENTIFIER ::= {ats 1} - --- Define some common Textual Conventions --- PositiveInteger and NonNegativeInteger are borrowed from RFC1628 - PositiveInteger ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "This data type is a non-zero and non-negative value." - SYNTAX Integer32 (1..2147483647) - - NonNegativeInteger ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "This data type is a non-negative value." - SYNTAX Integer32 (0..2147483647) - - - - END - diff --git a/mibs/orig/ENTITY-MIB b/mibs/orig/ENTITY-MIB deleted file mode 100644 index e99ac17..0000000 --- a/mibs/orig/ENTITY-MIB +++ /dev/null @@ -1,1466 +0,0 @@ --- ***************************************************************** --- Entity MIB version 3 --- --- September 2005, Subra Hegde --- --- Copyright (c) 2005 by cisco Systems, Inc. --- All rights reserved. --- ***************************************************************** --- --- This mib was extracted from RFC 4133 --- - -ENTITY-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, mib-2, NOTIFICATION-TYPE, - Integer32 - FROM SNMPv2-SMI - TDomain, TAddress, TEXTUAL-CONVENTION, - AutonomousType, RowPointer, TimeStamp, TruthValue, - DateAndTime - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB; - -entityMIB MODULE-IDENTITY - LAST-UPDATED "200508100000Z" - ORGANIZATION "IETF ENTMIB Working Group" - CONTACT-INFO - " WG E-mail: entmib@ietf.org - Mailing list subscription info: - http://www.ietf.org/mailman/listinfo/entmib - - Andy Bierman - ietf@andybierman.com - - Keith McCloghrie - Cisco Systems Inc. - 170 West Tasman Drive - San Jose, CA 95134 - - - +1 408-526-5260 - kzm@cisco.com" - - DESCRIPTION - "The MIB module for representing multiple logical - entities supported by a single SNMP agent. - - Copyright (C) The Internet Society (2005). This - version of this MIB module is part of RFC 4133; see - the RFC itself for full legal notices." - - REVISION "200508100000Z" - DESCRIPTION - "Initial Version of Entity MIB (Version 3). - This revision obsoletes RFC 2737. - Additions: - - cpu(12) enumeration added to PhysicalClass TC - - DISPLAY-HINT clause to PhysicalIndex TC - - PhysicalIndexOrZero TC - - entPhysicalMfgDate object - - entPhysicalUris object - Changes: - - entPhysicalContainedIn SYNTAX changed from - INTEGER to PhysicalIndexOrZero - - This version published as RFC 4133." - - REVISION "199912070000Z" - DESCRIPTION - "Initial Version of Entity MIB (Version 2). - This revision obsoletes RFC 2037. - This version published as RFC 2737." - - REVISION "199610310000Z" - DESCRIPTION - "Initial version (version 1), published as - RFC 2037." - ::= { mib-2 47 } - -entityMIBObjects OBJECT IDENTIFIER ::= { entityMIB 1 } - --- MIB contains four groups -entityPhysical OBJECT IDENTIFIER ::= { entityMIBObjects 1 } -entityLogical OBJECT IDENTIFIER ::= { entityMIBObjects 2 } -entityMapping OBJECT IDENTIFIER ::= { entityMIBObjects 3 } -entityGeneral OBJECT IDENTIFIER ::= { entityMIBObjects 4 } - - --- Textual Conventions -PhysicalIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "An arbitrary value that uniquely identifies the physical - entity. The value should be a small, positive integer. - Index values for different physical entities are not - necessarily contiguous." - SYNTAX Integer32 (1..2147483647) - -PhysicalIndexOrZero ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "This textual convention is an extension of the - PhysicalIndex convention, which defines a greater than zero - value used to identify a physical entity. This extension - permits the additional value of zero. The semantics of the - value zero are object-specific and must, therefore, be - defined as part of the description of any object that uses - this syntax. Examples of the usage of this extension are - situations where none or all physical entities need to be - referenced." - SYNTAX Integer32 (0..2147483647) - -PhysicalClass ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An enumerated value which provides an indication of the - general hardware type of a particular physical entity. - There are no restrictions as to the number of - entPhysicalEntries of each entPhysicalClass, which must be - instantiated by an agent. - - The enumeration 'other' is applicable if the physical entity - class is known, but does not match any of the supported - values. - - The enumeration 'unknown' is applicable if the physical - entity class is unknown to the agent. - - The enumeration 'chassis' is applicable if the physical - entity class is an overall container for networking - equipment. Any class of physical entity, except a stack, - may be contained within a chassis; and a chassis may only - be contained within a stack. - - - The enumeration 'backplane' is applicable if the physical - entity class is some sort of device for aggregating and - forwarding networking traffic, such as a shared backplane in - a modular ethernet switch. Note that an agent may model a - backplane as a single physical entity, which is actually - implemented as multiple discrete physical components (within - a chassis or stack). - - The enumeration 'container' is applicable if the physical - entity class is capable of containing one or more removable - physical entities, possibly of different types. For - example, each (empty or full) slot in a chassis will be - modeled as a container. Note that all removable physical - entities should be modeled within a container entity, such - as field-replaceable modules, fans, or power supplies. Note - that all known containers should be modeled by the agent, - including empty containers. - - The enumeration 'powerSupply' is applicable if the physical - entity class is a power-supplying component. - - The enumeration 'fan' is applicable if the physical entity - class is a fan or other heat-reduction component. - - The enumeration 'sensor' is applicable if the physical - entity class is some sort of sensor, such as a temperature - sensor within a router chassis. - - The enumeration 'module' is applicable if the physical - entity class is some sort of self-contained sub-system. If - the enumeration 'module' is removable, then it should be - modeled within a container entity, otherwise it should be - modeled directly within another physical entity (e.g., a - chassis or another module). - - The enumeration 'port' is applicable if the physical entity - class is some sort of networking port, capable of receiving - and/or transmitting networking traffic. - - The enumeration 'stack' is applicable if the physical entity - class is some sort of super-container (possibly virtual), - intended to group together multiple chassis entities. A - stack may be realized by a 'virtual' cable, a real - interconnect cable, attached to multiple chassis, or may in - fact be comprised of multiple interconnect cables. A stack - should not be modeled within any other physical entities, - but a stack may be contained within another stack. Only - chassis entities should be contained within a stack. - - - The enumeration 'cpu' is applicable if the physical entity - class is some sort of central processing unit." - SYNTAX INTEGER { - other(1), - unknown(2), - chassis(3), - backplane(4), - container(5), -- e.g., chassis slot or daughter-card holder - powerSupply(6), - fan(7), - sensor(8), - module(9), -- e.g., plug-in card or daughter-card - port(10), - stack(11), -- e.g., stack of multiple chassis entities - cpu(12) - } - -SnmpEngineIdOrNone ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A specially formatted SnmpEngineID string for use with the - Entity MIB. - - If an instance of an object of SYNTAX SnmpEngineIdOrNone has - a non-zero length, then the object encoding and semantics - are defined by the SnmpEngineID textual convention (see STD - 62, RFC 3411 [RFC3411]). - - If an instance of an object of SYNTAX SnmpEngineIdOrNone - contains a zero-length string, then no appropriate - SnmpEngineID is associated with the logical entity (i.e., - SNMPv3 is not supported)." - SYNTAX OCTET STRING (SIZE(0..32)) -- empty string or SnmpEngineID - --- The Physical Entity Table -entPhysicalTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntPhysicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains one row per physical entity. There is - always at least one row for an 'overall' physical entity." - ::= { entityPhysical 1 } - -entPhysicalEntry OBJECT-TYPE - SYNTAX EntPhysicalEntry - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "Information about a particular physical entity. - - Each entry provides objects (entPhysicalDescr, - entPhysicalVendorType, and entPhysicalClass) to help an NMS - identify and characterize the entry, and objects - (entPhysicalContainedIn and entPhysicalParentRelPos) to help - an NMS relate the particular entry to other entries in this - table." - INDEX { entPhysicalIndex } - ::= { entPhysicalTable 1 } - -EntPhysicalEntry ::= SEQUENCE { - entPhysicalIndex PhysicalIndex, - entPhysicalDescr SnmpAdminString, - entPhysicalVendorType AutonomousType, - entPhysicalContainedIn PhysicalIndexOrZero, - entPhysicalClass PhysicalClass, - entPhysicalParentRelPos Integer32, - entPhysicalName SnmpAdminString, - entPhysicalHardwareRev SnmpAdminString, - entPhysicalFirmwareRev SnmpAdminString, - entPhysicalSoftwareRev SnmpAdminString, - entPhysicalSerialNum SnmpAdminString, - entPhysicalMfgName SnmpAdminString, - entPhysicalModelName SnmpAdminString, - entPhysicalAlias SnmpAdminString, - entPhysicalAssetID SnmpAdminString, - entPhysicalIsFRU TruthValue, - entPhysicalMfgDate DateAndTime, - entPhysicalUris OCTET STRING - -} - -entPhysicalIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index for this entry." - ::= { entPhysicalEntry 1 } - -entPhysicalDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "A textual description of physical entity. This object - should contain a string that identifies the manufacturer's - name for the physical entity, and should be set to a - distinct value for each version or model of the physical - entity." - ::= { entPhysicalEntry 2 } - -entPhysicalVendorType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the vendor-specific hardware type of the - physical entity. Note that this is different from the - definition of MIB-II's sysObjectID. - - An agent should set this object to an enterprise-specific - registration identifier value indicating the specific - equipment type in detail. The associated instance of - entPhysicalClass is used to indicate the general type of - hardware device. - - If no vendor-specific registration identifier exists for - this physical entity, or the value is unknown by this agent, - then the value { 0 0 } is returned." - ::= { entPhysicalEntry 3 } - -entPhysicalContainedIn OBJECT-TYPE - SYNTAX PhysicalIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of entPhysicalIndex for the physical entity which - 'contains' this physical entity. A value of zero indicates - this physical entity is not contained in any other physical - entity. Note that the set of 'containment' relationships - define a strict hierarchy; that is, recursion is not - allowed. - - In the event that a physical entity is contained by more - than one physical entity (e.g., double-wide modules), this - object should identify the containing entity with the lowest - value of entPhysicalIndex." - ::= { entPhysicalEntry 4 } - -entPhysicalClass OBJECT-TYPE - SYNTAX PhysicalClass - MAX-ACCESS read-only - - - STATUS current - DESCRIPTION - "An indication of the general hardware type of the physical - entity. - - An agent should set this object to the standard enumeration - value that most accurately indicates the general class of - the physical entity, or the primary class if there is more - than one entity. - - If no appropriate standard registration identifier exists - for this physical entity, then the value 'other(1)' is - returned. If the value is unknown by this agent, then the - value 'unknown(2)' is returned." - ::= { entPhysicalEntry 5 } - -entPhysicalParentRelPos OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the relative position of this 'child' - component among all its 'sibling' components. Sibling - components are defined as entPhysicalEntries that share the - same instance values of each of the entPhysicalContainedIn - and entPhysicalClass objects. - - An NMS can use this object to identify the relative ordering - for all sibling components of a particular parent - (identified by the entPhysicalContainedIn instance in each - sibling entry). - - If possible, this value should match any external labeling - of the physical component. For example, for a container - (e.g., card slot) labeled as 'slot #3', - entPhysicalParentRelPos should have the value '3'. Note - that the entPhysicalEntry for the module plugged in slot 3 - should have an entPhysicalParentRelPos value of '1'. - - If the physical position of this component does not match - any external numbering or clearly visible ordering, then - user documentation or other external reference material - should be used to determine the parent-relative position. - If this is not possible, then the agent should assign a - consistent (but possibly arbitrary) ordering to a given set - of 'sibling' components, perhaps based on internal - representation of the components. - - - If the agent cannot determine the parent-relative position - for some reason, or if the associated value of - entPhysicalContainedIn is '0', then the value '-1' is - returned. Otherwise, a non-negative integer is returned, - indicating the parent-relative position of this physical - entity. - - Parent-relative ordering normally starts from '1' and - continues to 'N', where 'N' represents the highest - positioned child entity. However, if the physical entities - (e.g., slots) are labeled from a starting position of zero, - then the first sibling should be associated with an - entPhysicalParentRelPos value of '0'. Note that this - ordering may be sparse or dense, depending on agent - implementation. - - The actual values returned are not globally meaningful, as - each 'parent' component may use different numbering - algorithms. The ordering is only meaningful among siblings - of the same parent component. - - The agent should retain parent-relative position values - across reboots, either through algorithmic assignment or use - of non-volatile storage." - ::= { entPhysicalEntry 6 } - -entPhysicalName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The textual name of the physical entity. The value of this - object should be the name of the component as assigned by - the local device and should be suitable for use in commands - entered at the device's `console'. This might be a text - name (e.g., `console') or a simple component number (e.g., - port or module number, such as `1'), depending on the - physical component naming syntax of the device. - - If there is no local name, or if this object is otherwise - not applicable, then this object contains a zero-length - string. - - Note that the value of entPhysicalName for two physical - entities will be the same in the event that the console - interface does not distinguish between them, e.g., slot-1 - and the card in slot-1." - ::= { entPhysicalEntry 7 } - - -entPhysicalHardwareRev OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific hardware revision string for the - physical entity. The preferred value is the hardware - revision identifier actually printed on the component itself - (if present). - - Note that if revision information is stored internally in a - non-printable (e.g., binary) format, then the agent must - convert such information to a printable format, in an - implementation-specific manner. - - If no specific hardware revision string is associated with - the physical component, or if this information is unknown to - the agent, then this object will contain a zero-length - string." - ::= { entPhysicalEntry 8 } - -entPhysicalFirmwareRev OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific firmware revision string for the - physical entity. - - Note that if revision information is stored internally in a - non-printable (e.g., binary) format, then the agent must - convert such information to a printable format, in an - implementation-specific manner. - - If no specific firmware programs are associated with the - physical component, or if this information is unknown to the - agent, then this object will contain a zero-length string." - ::= { entPhysicalEntry 9 } - -entPhysicalSoftwareRev OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific software revision string for the - physical entity. - - Note that if revision information is stored internally in a - - - non-printable (e.g., binary) format, then the agent must - convert such information to a printable format, in an - implementation-specific manner. - - If no specific software programs are associated with the - physical component, or if this information is unknown to the - agent, then this object will contain a zero-length string." - ::= { entPhysicalEntry 10 } - -entPhysicalSerialNum OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The vendor-specific serial number string for the physical - entity. The preferred value is the serial number string - actually printed on the component itself (if present). - - On the first instantiation of an physical entity, the value - of entPhysicalSerialNum associated with that entity is set - to the correct vendor-assigned serial number, if this - information is available to the agent. If a serial number - is unknown or non-existent, the entPhysicalSerialNum will be - set to a zero-length string instead. - - Note that implementations that can correctly identify the - serial numbers of all installed physical entities do not - need to provide write access to the entPhysicalSerialNum - object. Agents which cannot provide non-volatile storage - for the entPhysicalSerialNum strings are not required to - implement write access for this object. - - Not every physical component will have a serial number, or - even need one. Physical entities for which the associated - value of the entPhysicalIsFRU object is equal to 'false(2)' - (e.g., the repeater ports within a repeater module), do not - need their own unique serial number. An agent does not have - to provide write access for such entities, and may return a - zero-length string. - - If write access is implemented for an instance of - entPhysicalSerialNum, and a value is written into the - instance, the agent must retain the supplied value in the - entPhysicalSerialNum instance (associated with the same - physical entity) for as long as that entity remains - instantiated. This includes instantiations across all - re-initializations/reboots of the network management system, - including those resulting in a change of the physical - - - entity's entPhysicalIndex value." - ::= { entPhysicalEntry 11 } - -entPhysicalMfgName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the manufacturer of this physical component. - The preferred value is the manufacturer name string actually - printed on the component itself (if present). - - Note that comparisons between instances of the - entPhysicalModelName, entPhysicalFirmwareRev, - entPhysicalSoftwareRev, and the entPhysicalSerialNum - objects, are only meaningful amongst entPhysicalEntries with - the same value of entPhysicalMfgName. - - If the manufacturer name string associated with the physical - component is unknown to the agent, then this object will - contain a zero-length string." - ::= { entPhysicalEntry 12 } - -entPhysicalModelName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific model name identifier string associated - with this physical component. The preferred value is the - customer-visible part number, which may be printed on the - component itself. - - If the model name string associated with the physical - component is unknown to the agent, then this object will - contain a zero-length string." - ::= { entPhysicalEntry 13 } - -entPhysicalAlias OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is an 'alias' name for the physical entity, as - specified by a network manager, and provides a non-volatile - 'handle' for the physical entity. - - On the first instantiation of a physical entity, the value - - - of entPhysicalAlias associated with that entity is set to - the zero-length string. However, the agent may set the - value to a locally unique default value, instead of a - zero-length string. - - If write access is implemented for an instance of - entPhysicalAlias, and a value is written into the instance, - the agent must retain the supplied value in the - entPhysicalAlias instance (associated with the same physical - entity) for as long as that entity remains instantiated. - This includes instantiations across all - re-initializations/reboots of the network management system, - including those resulting in a change of the physical - entity's entPhysicalIndex value." - ::= { entPhysicalEntry 14 } - -entPhysicalAssetID OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is a user-assigned asset tracking identifier - (as specified by a network manager) for the physical entity, - and provides non-volatile storage of this information. - - On the first instantiation of a physical entity, the value - of entPhysicalAssetID associated with that entity is set to - the zero-length string. - - Not every physical component will have an asset tracking - identifier, or even need one. Physical entities for which - the associated value of the entPhysicalIsFRU object is equal - to 'false(2)' (e.g., the repeater ports within a repeater - module), do not need their own unique asset tracking - identifier. An agent does not have to provide write access - for such entities, and may instead return a zero-length - string. - - If write access is implemented for an instance of - entPhysicalAssetID, and a value is written into the - instance, the agent must retain the supplied value in the - entPhysicalAssetID instance (associated with the same - physical entity) for as long as that entity remains - instantiated. This includes instantiations across all - re-initializations/reboots of the network management system, - including those resulting in a change of the physical - entity's entPhysicalIndex value. - - - If no asset tracking information is associated with the - physical component, then this object will contain a - zero-length string." - ::= { entPhysicalEntry 15 } - -entPhysicalIsFRU OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates whether or not this physical entity - is considered a 'field replaceable unit' by the vendor. If - this object contains the value 'true(1)' then this - entPhysicalEntry identifies a field replaceable unit. For - all entPhysicalEntries that represent components - permanently contained within a field replaceable unit, the - value 'false(2)' should be returned for this object." - ::= { entPhysicalEntry 16 } - -entPhysicalMfgDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the date of manufacturing of the - managed entity. If the manufacturing date is unknown or not - supported, the object is not instantiated. The special - value '0000000000000000'H may also be returned in this - case." - ::= { entPhysicalEntry 17 } - -entPhysicalUris OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object contains additional identification information - about the physical entity. The object contains URIs and, - therefore, the syntax of this object must conform to RFC - 3986, section 2. - - Multiple URIs may be present and are separated by white - space characters. Leading and trailing white space - characters are ignored. - - If no additional identification information is known - about the physical entity or supported, the object is not - instantiated. A zero length octet string may also be - - - returned in this case." - REFERENCE - "RFC 3986, Uniform Resource Identifiers (URI): Generic - Syntax, section 2, August 1998." - - ::= { entPhysicalEntry 18 } - --- The Logical Entity Table -entLogicalTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntLogicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains one row per logical entity. For agents - that implement more than one naming scope, at least one - entry must exist. Agents which instantiate all MIB objects - within a single naming scope are not required to implement - this table." - ::= { entityLogical 1 } - -entLogicalEntry OBJECT-TYPE - SYNTAX EntLogicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a particular logical entity. Entities - may be managed by this agent or other SNMP agents (possibly) - in the same chassis." - INDEX { entLogicalIndex } - ::= { entLogicalTable 1 } - -EntLogicalEntry ::= SEQUENCE { - entLogicalIndex Integer32, - entLogicalDescr SnmpAdminString, - entLogicalType AutonomousType, - entLogicalCommunity OCTET STRING, - entLogicalTAddress TAddress, - entLogicalTDomain TDomain, - entLogicalContextEngineID SnmpEngineIdOrNone, - entLogicalContextName SnmpAdminString -} - -entLogicalIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - - - "The value of this object uniquely identifies the logical - entity. The value should be a small positive integer; index - values for different logical entities are not necessarily - contiguous." - ::= { entLogicalEntry 1 } - -entLogicalDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the logical entity. This object - should contain a string that identifies the manufacturer's - name for the logical entity, and should be set to a distinct - value for each version of the logical entity." - ::= { entLogicalEntry 2 } - -entLogicalType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the type of logical entity. This will - typically be the OBJECT IDENTIFIER name of the node in the - SMI's naming hierarchy which represents the major MIB - module, or the majority of the MIB modules, supported by the - logical entity. For example: - a logical entity of a regular host/router -> mib-2 - a logical entity of a 802.1d bridge -> dot1dBridge - a logical entity of a 802.3 repeater -> snmpDot3RptrMgmt - If an appropriate node in the SMI's naming hierarchy cannot - be identified, the value 'mib-2' should be used." - ::= { entLogicalEntry 3 } - -entLogicalCommunity OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "An SNMPv1 or SNMPv2C community-string, which can be used to - access detailed management information for this logical - entity. The agent should allow read access with this - community string (to an appropriate subset of all managed - objects) and may also return a community string based on the - privileges of the request used to read this object. Note - that an agent may return a community string with read-only - privileges, even if this object is accessed with a - read-write community string. However, the agent must take - - - care not to return a community string that allows more - privileges than the community string used to access this - object. - - A compliant SNMP agent may wish to conserve naming scopes by - representing multiple logical entities in a single 'default' - naming scope. This is possible when the logical entities, - represented by the same value of entLogicalCommunity, have - no object instances in common. For example, 'bridge1' and - 'repeater1' may be part of the main naming scope, but at - least one additional community string is needed to represent - 'bridge2' and 'repeater2'. - - Logical entities 'bridge1' and 'repeater1' would be - represented by sysOREntries associated with the 'default' - naming scope. - - For agents not accessible via SNMPv1 or SNMPv2C, the value - of this object is the empty string. This object may also - contain an empty string if a community string has not yet - been assigned by the agent, or if no community string with - suitable access rights can be returned for a particular SNMP - request. - - Note that this object is deprecated. Agents which implement - SNMPv3 access should use the entLogicalContextEngineID and - entLogicalContextName objects to identify the context - associated with each logical entity. SNMPv3 agents may - return a zero-length string for this object, or may continue - to return a community string (e.g., tri-lingual agent - support)." - ::= { entLogicalEntry 4 } - -entLogicalTAddress OBJECT-TYPE - SYNTAX TAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The transport service address by which the logical entity - receives network management traffic, formatted according to - the corresponding value of entLogicalTDomain. - - For snmpUDPDomain, a TAddress is 6 octets long: the initial - 4 octets contain the IP-address in network-byte order and - the last 2 contain the UDP port in network-byte order. - Consult 'Transport Mappings for the Simple Network - Management Protocol' (STD 62, RFC 3417 [RFC3417]) for - further information on snmpUDPDomain." - - - ::= { entLogicalEntry 5 } - -entLogicalTDomain OBJECT-TYPE - SYNTAX TDomain - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the kind of transport service by which the - logical entity receives network management traffic. - Possible values for this object are presently found in the - Transport Mappings for Simple Network Management Protocol' - (STD 62, RFC 3417 [RFC3417])." - ::= { entLogicalEntry 6 } - -entLogicalContextEngineID OBJECT-TYPE - SYNTAX SnmpEngineIdOrNone - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The authoritative contextEngineID that can be used to send - an SNMP message concerning information held by this logical - entity, to the address specified by the associated - 'entLogicalTAddress/entLogicalTDomain' pair. - - This object, together with the associated - entLogicalContextName object, defines the context associated - with a particular logical entity, and allows access to SNMP - engines identified by a contextEngineId and contextName - pair. - - If no value has been configured by the agent, a zero-length - string is returned, or the agent may choose not to - instantiate this object at all." - ::= { entLogicalEntry 7 } - -entLogicalContextName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The contextName that can be used to send an SNMP message - concerning information held by this logical entity, to the - address specified by the associated - 'entLogicalTAddress/entLogicalTDomain' pair. - - This object, together with the associated - entLogicalContextEngineID object, defines the context - associated with a particular logical entity, and allows - - - access to SNMP engines identified by a contextEngineId and - contextName pair. - - If no value has been configured by the agent, a zero-length - string is returned, or the agent may choose not to - instantiate this object at all." - ::= { entLogicalEntry 8 } - -entLPMappingTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntLPMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains zero or more rows of logical entity to - physical equipment associations. For each logical entity - known by this agent, there are zero or more mappings to the - physical resources, which are used to realize that logical - entity. - - An agent should limit the number and nature of entries in - this table such that only meaningful and non-redundant - information is returned. For example, in a system that - contains a single power supply, mappings between logical - entities and the power supply are not useful and should not - be included. - - Also, only the most appropriate physical component, which is - closest to the root of a particular containment tree, should - be identified in an entLPMapping entry. - - For example, suppose a bridge is realized on a particular - module, and all ports on that module are ports on this - bridge. A mapping between the bridge and the module would - be useful, but additional mappings between the bridge and - each of the ports on that module would be redundant (because - the entPhysicalContainedIn hierarchy can provide the same - information). On the other hand, if more than one bridge - were utilizing ports on this module, then mappings between - each bridge and the ports it used would be appropriate. - - Also, in the case of a single backplane repeater, a mapping - for the backplane to the single repeater entity is not - necessary." - ::= { entityMapping 1 } - -entLPMappingEntry OBJECT-TYPE - SYNTAX EntLPMappingEntry - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "Information about a particular logical entity to physical - equipment association. Note that the nature of the - association is not specifically identified in this entry. - It is expected that sufficient information exists in the - MIBs used to manage a particular logical entity to infer how - physical component information is utilized." - INDEX { entLogicalIndex, entLPPhysicalIndex } - ::= { entLPMappingTable 1 } - -EntLPMappingEntry ::= SEQUENCE { - entLPPhysicalIndex PhysicalIndex -} - -entLPPhysicalIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object identifies the index value of a - particular entPhysicalEntry associated with the indicated - entLogicalEntity." - ::= { entLPMappingEntry 1 } - --- logical entity/component to alias table -entAliasMappingTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntAliasMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains zero or more rows, representing - mappings of logical entity and physical component to - external MIB identifiers. Each physical port in the system - may be associated with a mapping to an external identifier, - which itself is associated with a particular logical - entity's naming scope. A 'wildcard' mechanism is provided - to indicate that an identifier is associated with more than - one logical entity." - ::= { entityMapping 2 } - -entAliasMappingEntry OBJECT-TYPE - SYNTAX EntAliasMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a particular physical equipment, logical - - - entity to external identifier binding. Each logical - entity/physical component pair may be associated with one - alias mapping. The logical entity index may also be used as - a 'wildcard' (refer to the entAliasLogicalIndexOrZero object - DESCRIPTION clause for details.) - - Note that only entPhysicalIndex values that represent - physical ports (i.e., associated entPhysicalClass value is - 'port(10)') are permitted to exist in this table." - INDEX { entPhysicalIndex, entAliasLogicalIndexOrZero } - ::= { entAliasMappingTable 1 } - -EntAliasMappingEntry ::= SEQUENCE { - entAliasLogicalIndexOrZero Integer32, - entAliasMappingIdentifier RowPointer -} - -entAliasLogicalIndexOrZero OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The value of this object identifies the logical entity - that defines the naming scope for the associated instance - of the 'entAliasMappingIdentifier' object. - - If this object has a non-zero value, then it identifies the - logical entity named by the same value of entLogicalIndex. - - If this object has a value of zero, then the mapping between - the physical component and the alias identifier for this - entAliasMapping entry is associated with all unspecified - logical entities. That is, a value of zero (the default - mapping) identifies any logical entity that does not have - an explicit entry in this table for a particular - entPhysicalIndex/entAliasMappingIdentifier pair. - - For example, to indicate that a particular interface (e.g., - physical component 33) is identified by the same value of - ifIndex for all logical entities, the following instance - might exist: - - entAliasMappingIdentifier.33.0 = ifIndex.5 - - In the event an entPhysicalEntry is associated differently - for some logical entities, additional entAliasMapping - entries may exist, e.g.: - - - entAliasMappingIdentifier.33.0 = ifIndex.6 - entAliasMappingIdentifier.33.4 = ifIndex.1 - entAliasMappingIdentifier.33.5 = ifIndex.1 - entAliasMappingIdentifier.33.10 = ifIndex.12 - - Note that entries with non-zero entAliasLogicalIndexOrZero - index values have precedence over zero-indexed entries. In - this example, all logical entities except 4, 5, and 10, - associate physical entity 33 with ifIndex.6." - ::= { entAliasMappingEntry 1 } - -entAliasMappingIdentifier OBJECT-TYPE - SYNTAX RowPointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object identifies a particular conceptual - row associated with the indicated entPhysicalIndex and - entLogicalIndex pair. - - Because only physical ports are modeled in this table, only - entries that represent interfaces or ports are allowed. If - an ifEntry exists on behalf of a particular physical port, - then this object should identify the associated 'ifEntry'. - For repeater ports, the appropriate row in the - 'rptrPortGroupTable' should be identified instead. - - For example, suppose a physical port was represented by - entPhysicalEntry.3, entLogicalEntry.15 existed for a - repeater, and entLogicalEntry.22 existed for a bridge. Then - there might be two related instances of - entAliasMappingIdentifier: - entAliasMappingIdentifier.3.15 == rptrPortGroupIndex.5.2 - entAliasMappingIdentifier.3.22 == ifIndex.17 - It is possible that other mappings (besides interfaces and - repeater ports) may be defined in the future, as required. - - Bridge ports are identified by examining the Bridge MIB and - appropriate ifEntries associated with each 'dot1dBasePort', - and are thus not represented in this table." - ::= { entAliasMappingEntry 2 } - --- physical mapping table -entPhysicalContainsTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntPhysicalContainsEntry - MAX-ACCESS not-accessible - STATUS current - - - DESCRIPTION - "A table that exposes the container/'containee' - relationships between physical entities. This table - provides all the information found by constructing the - virtual containment tree for a given entPhysicalTable, but - in a more direct format. - - In the event a physical entity is contained by more than one - other physical entity (e.g., double-wide modules), this - table should include these additional mappings, which cannot - be represented in the entPhysicalTable virtual containment - tree." - ::= { entityMapping 3 } - -entPhysicalContainsEntry OBJECT-TYPE - SYNTAX EntPhysicalContainsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A single container/'containee' relationship." - INDEX { entPhysicalIndex, entPhysicalChildIndex } - ::= { entPhysicalContainsTable 1 } - -EntPhysicalContainsEntry ::= SEQUENCE { - entPhysicalChildIndex PhysicalIndex -} - -entPhysicalChildIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of entPhysicalIndex for the contained physical - entity." - ::= { entPhysicalContainsEntry 1 } - --- last change time stamp for the whole MIB -entLastChangeTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time a conceptual row is - created, modified, or deleted in any of these tables: - - entPhysicalTable - - entLogicalTable - - entLPMappingTable - - entAliasMappingTable - - - - entPhysicalContainsTable - " - ::= { entityGeneral 1 } - --- Entity MIB Trap Definitions -entityMIBTraps OBJECT IDENTIFIER ::= { entityMIB 2 } -entityMIBTrapPrefix OBJECT IDENTIFIER ::= { entityMIBTraps 0 } - -entConfigChange NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "An entConfigChange notification is generated when the value - of entLastChangeTime changes. It can be utilized by an NMS - to trigger logical/physical entity table maintenance polls. - - An agent should not generate more than one entConfigChange - 'notification-event' in a given time interval (five seconds - is the suggested default). A 'notification-event' is the - transmission of a single trap or inform PDU to a list of - notification destinations. - - If additional configuration changes occur within the - throttling period, then notification-events for these - changes should be suppressed by the agent until the current - throttling period expires. At the end of a throttling - period, one notification-event should be generated if any - configuration changes occurred since the start of the - throttling period. In such a case, another throttling - period is started right away. - - An NMS should periodically check the value of - entLastChangeTime to detect any missed entConfigChange - notification-events, e.g., due to throttling or transmission - loss." - ::= { entityMIBTrapPrefix 1 } - --- conformance information -entityConformance OBJECT IDENTIFIER ::= { entityMIB 3 } - -entityCompliances OBJECT IDENTIFIER ::= { entityConformance 1 } -entityGroups OBJECT IDENTIFIER ::= { entityConformance 2 } - --- compliance statements -entityCompliance MODULE-COMPLIANCE - STATUS deprecated - - - DESCRIPTION - "The compliance statement for SNMP entities that implement - version 1 of the Entity MIB." - MODULE -- this module - MANDATORY-GROUPS { - entityPhysicalGroup, - entityLogicalGroup, - entityMappingGroup, - entityGeneralGroup, - entityNotificationsGroup - } - ::= { entityCompliances 1 } - -entity2Compliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for SNMP entities that implement - version 2 of the Entity MIB." - MODULE -- this module - MANDATORY-GROUPS { - entityPhysicalGroup, - entityPhysical2Group, - entityGeneralGroup, - entityNotificationsGroup - } - GROUP entityLogical2Group - DESCRIPTION - "Implementation of this group is not mandatory for agents - that model all MIB object instances within a single naming - scope." - - GROUP entityMappingGroup - DESCRIPTION - "Implementation of the entPhysicalContainsTable is mandatory - for all agents. Implementation of the entLPMappingTable and - entAliasMappingTables are not mandatory for agents that - model all MIB object instances within a single naming scope. - - Note that the entAliasMappingTable may be useful for all - agents; however, implementation of the entityLogicalGroup or - entityLogical2Group is required to support this table." - - OBJECT entPhysicalSerialNum - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot identify serial number information for physical - entities, and/or cannot provide non-volatile storage for - - - NMS-assigned serial numbers. - - Write access is not required for agents that can identify - serial number information for physical entities, but cannot - provide non-volatile storage for NMS-assigned serial - numbers. - - Write access is not required for physical entities for which - the associated value of the entPhysicalIsFRU object is equal - to 'false(2)'." - - OBJECT entPhysicalAlias - MIN-ACCESS read-only - DESCRIPTION - "Write access is required only if the associated - entPhysicalClass value is equal to 'chassis(3)'." - - OBJECT entPhysicalAssetID - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot provide non-volatile storage for NMS-assigned asset - identifiers. - - Write access is not required for physical entities for which - the associated value of the entPhysicalIsFRU object is equal - to 'false(2)'." - - OBJECT entPhysicalClass - SYNTAX INTEGER { - other(1), - unknown(2), - chassis(3), - backplane(4), - container(5), - powerSupply(6), - fan(7), - sensor(8), - module(9), - port(10), - stack(11) - } - DESCRIPTION - "Implementation of the 'cpu(12)' enumeration is not - required." - - ::= { entityCompliances 2 } - - -entity3Compliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for SNMP entities that implement - version 3 of the Entity MIB." - MODULE -- this module - MANDATORY-GROUPS { - entityPhysicalGroup, - entityPhysical2Group, - entityPhysical3Group, - entityGeneralGroup, - entityNotificationsGroup - } - GROUP entityLogical2Group - DESCRIPTION - "Implementation of this group is not mandatory for agents - that model all MIB object instances within a single naming - scope." - - GROUP entityMappingGroup - DESCRIPTION - "Implementation of the entPhysicalContainsTable is mandatory - for all agents. Implementation of the entLPMappingTable and - entAliasMappingTables are not mandatory for agents that - model all MIB object instances within a single naming scope. - - Note that the entAliasMappingTable may be useful for all - agents; however, implementation of the entityLogicalGroup or - entityLogical2Group is required to support this table." - - OBJECT entPhysicalSerialNum - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot identify serial number information for physical - entities, and/or cannot provide non-volatile storage for - NMS-assigned serial numbers. - - Write access is not required for agents that can identify - serial number information for physical entities, but cannot - provide non-volatile storage for NMS-assigned serial - numbers. - - Write access is not required for physical entities for - which the associated value of the entPhysicalIsFRU object - is equal to 'false(2)'." - - OBJECT entPhysicalAlias - - - MIN-ACCESS read-only - DESCRIPTION - "Write access is required only if the associated - entPhysicalClass value is equal to 'chassis(3)'." - - OBJECT entPhysicalAssetID - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot provide non-volatile storage for NMS-assigned asset - identifiers. - - Write access is not required for physical entities for which - the associated value of entPhysicalIsFRU is equal to - 'false(2)'." - ::= { entityCompliances 3 } - --- MIB groupings -entityPhysicalGroup OBJECT-GROUP - OBJECTS { - entPhysicalDescr, - entPhysicalVendorType, - entPhysicalContainedIn, - entPhysicalClass, - entPhysicalParentRelPos, - entPhysicalName - } - STATUS current - DESCRIPTION - "The collection of objects used to represent physical - system components, for which a single agent provides - management information." - ::= { entityGroups 1 } - -entityLogicalGroup OBJECT-GROUP - OBJECTS { - entLogicalDescr, - entLogicalType, - entLogicalCommunity, - entLogicalTAddress, - entLogicalTDomain - } - STATUS deprecated - DESCRIPTION - "The collection of objects used to represent the list of - logical entities, for which a single agent provides - management information." - - - ::= { entityGroups 2 } - -entityMappingGroup OBJECT-GROUP - OBJECTS { - entLPPhysicalIndex, - entAliasMappingIdentifier, - entPhysicalChildIndex - } - STATUS current - DESCRIPTION - "The collection of objects used to represent the - associations between multiple logical entities, physical - components, interfaces, and port identifiers, for which a - single agent provides management information." - ::= { entityGroups 3 } - -entityGeneralGroup OBJECT-GROUP - OBJECTS { - entLastChangeTime - } - STATUS current - DESCRIPTION - "The collection of objects used to represent general entity - information, for which a single agent provides management - information." - ::= { entityGroups 4 } - -entityNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { entConfigChange } - STATUS current - DESCRIPTION - "The collection of notifications used to indicate Entity MIB - data consistency and general status information." - ::= { entityGroups 5 } - -entityPhysical2Group OBJECT-GROUP - OBJECTS { - entPhysicalHardwareRev, - entPhysicalFirmwareRev, - entPhysicalSoftwareRev, - entPhysicalSerialNum, - entPhysicalMfgName, - entPhysicalModelName, - entPhysicalAlias, - entPhysicalAssetID, - entPhysicalIsFRU - } - STATUS current - - - DESCRIPTION - "The collection of objects used to represent physical - system components, for which a single agent provides - management information. This group augments the objects - contained in the entityPhysicalGroup." - ::= { entityGroups 6 } - -entityLogical2Group OBJECT-GROUP - OBJECTS { - entLogicalDescr, - entLogicalType, - entLogicalTAddress, - entLogicalTDomain, - entLogicalContextEngineID, - entLogicalContextName - } - STATUS current - DESCRIPTION - "The collection of objects used to represent the - list of logical entities, for which a single SNMP entity - provides management information." - ::= { entityGroups 7 } - -entityPhysical3Group OBJECT-GROUP - OBJECTS { - entPhysicalMfgDate, - entPhysicalUris - } - STATUS current - DESCRIPTION - "The collection of objects used to represent physical - system components, for which a single agent provides - management information. This group augments the objects - contained in the entityPhysicalGroup." - ::= { entityGroups 8 } - -END diff --git a/mibs/orig/ENTITY-SENSOR-MIB b/mibs/orig/ENTITY-SENSOR-MIB deleted file mode 100644 index 3d689e8..0000000 --- a/mibs/orig/ENTITY-SENSOR-MIB +++ /dev/null @@ -1,440 +0,0 @@ -ENTITY-SENSOR-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, - Integer32, Unsigned32, mib-2 - FROM SNMPv2-SMI - MODULE-COMPLIANCE, OBJECT-GROUP - FROM SNMPv2-CONF - TEXTUAL-CONVENTION, TimeStamp - FROM SNMPv2-TC - entPhysicalIndex, entityPhysicalGroup - FROM ENTITY-MIB - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB; - -entitySensorMIB MODULE-IDENTITY - LAST-UPDATED "200212160000Z" - ORGANIZATION "IETF Entity MIB Working Group" - CONTACT-INFO - " Andy Bierman - Cisco Systems, Inc. - Tel: +1 408-527-3711 - E-mail: abierman@cisco.com - Postal: 170 West Tasman Drive - San Jose, CA USA 95134 - - Dan Romascanu - Avaya Inc. - Tel: +972-3-645-8414 - Email: dromasca@avaya.com - Postal: Atidim technology Park, Bldg. #3 - Tel Aviv, Israel, 61131 - - K.C. Norseth - L-3 Communications - Tel: +1 801-594-2809 - Email: kenyon.c.norseth@L-3com.com - Postal: 640 N. 2200 West. - - Salt Lake City, Utah 84116-0850 - - Send comments to - Mailing list subscription info: - http://www.ietf.org/mailman/listinfo/entmib " - DESCRIPTION - "This module defines Entity MIB extensions for physical - sensors. - - Copyright (C) The Internet Society (2002). This version - of this MIB module is part of RFC 3433; see the RFC - itself for full legal notices." - - REVISION "200212160000Z" - DESCRIPTION - "Initial version of the Entity Sensor MIB module, published - as RFC 3433." - ::= { mib-2 99 } - -entitySensorObjects OBJECT IDENTIFIER - ::= { entitySensorMIB 1 } - --- entitySensorNotifications OBJECT IDENTIFIER --- ::= { entitySensorMIB 2 } -entitySensorConformance OBJECT IDENTIFIER - ::= { entitySensorMIB 3 } - --- --- Textual Conventions --- - -EntitySensorDataType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An object using this data type represents the Entity Sensor - measurement data type associated with a physical sensor - value. The actual data units are determined by examining an - object of this type together with the associated - EntitySensorDataScale object. - - An object of this type SHOULD be defined together with - objects of type EntitySensorDataScale and - EntitySensorPrecision. Together, associated objects of - these three types are used to identify the semantics of an - object of type EntitySensorValue. - - Valid values are: - - other(1): a measure other than those listed below - unknown(2): unknown measurement, or arbitrary, - relative numbers - voltsAC(3): electric potential - voltsDC(4): electric potential - amperes(5): electric current - watts(6): power - hertz(7): frequency - celsius(8): temperature - percentRH(9): percent relative humidity - rpm(10): shaft revolutions per minute - cmm(11),: cubic meters per minute (airflow) - truthvalue(12): value takes { true(1), false(2) } - " - SYNTAX INTEGER { - other(1), - unknown(2), - voltsAC(3), - voltsDC(4), - amperes(5), - watts(6), - hertz(7), - celsius(8), - percentRH(9), - rpm(10), - cmm(11), - truthvalue(12) - } - -EntitySensorDataScale ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An object using this data type represents a data scaling - factor, represented with an International System of Units - (SI) prefix. The actual data units are determined by - examining an object of this type together with the - associated EntitySensorDataType object. - - An object of this type SHOULD be defined together with - objects of type EntitySensorDataType and - EntitySensorPrecision. Together, associated objects of - these three types are used to identify the semantics of an - object of type EntitySensorValue." - REFERENCE - "The International System of Units (SI), - National Institute of Standards and Technology, - Spec. Publ. 330, August 1991." - SYNTAX INTEGER { - yocto(1), -- 10^-24 - zepto(2), -- 10^-21 - atto(3), -- 10^-18 - femto(4), -- 10^-15 - pico(5), -- 10^-12 - nano(6), -- 10^-9 - micro(7), -- 10^-6 - milli(8), -- 10^-3 - units(9), -- 10^0 - kilo(10), -- 10^3 - mega(11), -- 10^6 - giga(12), -- 10^9 - tera(13), -- 10^12 - exa(14), -- 10^15 - peta(15), -- 10^18 - zetta(16), -- 10^21 - yotta(17) -- 10^24 - } - -EntitySensorPrecision ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An object using this data type represents a sensor - precision range. - - An object of this type SHOULD be defined together with - objects of type EntitySensorDataType and - EntitySensorDataScale. Together, associated objects of - these three types are used to identify the semantics of an - object of type EntitySensorValue. - - If an object of this type contains a value in the range 1 to - 9, it represents the number of decimal places in the - fractional part of an associated EntitySensorValue fixed- - point number. - - If an object of this type contains a value in the range -8 - to -1, it represents the number of accurate digits in the - associated EntitySensorValue fixed-point number. - - The value zero indicates the associated EntitySensorValue - object is not a fixed-point number. - - Agent implementors must choose a value for the associated - EntitySensorPrecision object so that the precision and - - accuracy of the associated EntitySensorValue object is - correctly indicated. - - For example, a physical entity representing a temperature - sensor that can measure 0 degrees to 100 degrees C in 0.1 - degree increments, +/- 0.05 degrees, would have an - EntitySensorPrecision value of '1', an EntitySensorDataScale - value of 'units(9)', and an EntitySensorValue ranging from - '0' to '1000'. The EntitySensorValue would be interpreted - as 'degrees C * 10'." - SYNTAX Integer32 (-8..9) - -EntitySensorValue ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An object using this data type represents an Entity Sensor - value. - An object of this type SHOULD be defined together with - objects of type EntitySensorDataType, EntitySensorDataScale - and EntitySensorPrecision. Together, associated objects of - those three types are used to identify the semantics of an - object of this data type. - - The semantics of an object using this data type are - determined by the value of the associated - EntitySensorDataType object. - - If the associated EntitySensorDataType object is equal to - 'voltsAC(3)', 'voltsDC(4)', 'amperes(5)', 'watts(6), - 'hertz(7)', 'celsius(8)', or 'cmm(11)', then an object of - this type MUST contain a fixed point number ranging from - -999,999,999 to +999,999,999. The value -1000000000 - indicates an underflow error. The value +1000000000 - indicates an overflow error. The EntitySensorPrecision - indicates how many fractional digits are represented in the - associated EntitySensorValue object. - - If the associated EntitySensorDataType object is equal to - 'percentRH(9)', then an object of this type MUST contain a - number ranging from 0 to 100. - - If the associated EntitySensorDataType object is equal to - 'rpm(10)', then an object of this type MUST contain a number - ranging from -999,999,999 to +999,999,999. - - If the associated EntitySensorDataType object is equal to - 'truthvalue(12)', then an object of this type MUST contain - either the value 'true(1)' or the value 'false(2)'. - - If the associated EntitySensorDataType object is equal to - 'other(1)' or unknown(2)', then an object of this type MUST - contain a number ranging from -1000000000 to 1000000000." - SYNTAX Integer32 (-1000000000..1000000000) - -EntitySensorStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An object using this data type represents the operational - status of a physical sensor. - - The value 'ok(1)' indicates that the agent can obtain the - sensor value. - - The value 'unavailable(2)' indicates that the agent - presently cannot obtain the sensor value. - - The value 'nonoperational(3)' indicates that the agent - believes the sensor is broken. The sensor could have a hard - failure (disconnected wire), or a soft failure such as out- - of-range, jittery, or wildly fluctuating readings." - SYNTAX INTEGER { - ok(1), - unavailable(2), - nonoperational(3) - } - --- --- Entity Sensor Table --- - -entPhySensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntPhySensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains one row per physical sensor represented - by an associated row in the entPhysicalTable." - ::= { entitySensorObjects 1 } - -entPhySensorEntry OBJECT-TYPE - SYNTAX EntPhySensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a particular physical sensor. - - An entry in this table describes the present reading of a - sensor, the measurement units and scale, and sensor - operational status. - - Entries are created in this table by the agent. An entry - for each physical sensor SHOULD be created at the same time - as the associated entPhysicalEntry. An entry SHOULD be - destroyed if the associated entPhysicalEntry is destroyed." - INDEX { entPhysicalIndex } -- SPARSE-AUGMENTS - ::= { entPhySensorTable 1 } - -EntPhySensorEntry ::= SEQUENCE { - entPhySensorType EntitySensorDataType, - entPhySensorScale EntitySensorDataScale, - entPhySensorPrecision EntitySensorPrecision, - entPhySensorValue EntitySensorValue, - entPhySensorOperStatus EntitySensorStatus, - entPhySensorUnitsDisplay SnmpAdminString, - entPhySensorValueTimeStamp TimeStamp, - entPhySensorValueUpdateRate Unsigned32 -} - -entPhySensorType OBJECT-TYPE - SYNTAX EntitySensorDataType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of data returned by the associated - entPhySensorValue object. - - This object SHOULD be set by the agent during entry - creation, and the value SHOULD NOT change during operation." - ::= { entPhySensorEntry 1 } - -entPhySensorScale OBJECT-TYPE - SYNTAX EntitySensorDataScale - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The exponent to apply to values returned by the associated - entPhySensorValue object. - - This object SHOULD be set by the agent during entry - creation, and the value SHOULD NOT change during operation." - ::= { entPhySensorEntry 2 } - -entPhySensorPrecision OBJECT-TYPE - SYNTAX EntitySensorPrecision - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of decimal places of precision in fixed-point - sensor values returned by the associated entPhySensorValue - object. - - This object SHOULD be set to '0' when the associated - entPhySensorType value is not a fixed-point type: e.g., - 'percentRH(9)', 'rpm(10)', 'cmm(11)', or 'truthvalue(12)'. - - This object SHOULD be set by the agent during entry - creation, and the value SHOULD NOT change during operation." - ::= { entPhySensorEntry 3 } - -entPhySensorValue OBJECT-TYPE - SYNTAX EntitySensorValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The most recent measurement obtained by the agent for this - sensor. - - To correctly interpret the value of this object, the - associated entPhySensorType, entPhySensorScale, and - entPhySensorPrecision objects must also be examined." - ::= { entPhySensorEntry 4 } - -entPhySensorOperStatus OBJECT-TYPE - SYNTAX EntitySensorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor." - ::= { entPhySensorEntry 5 } - -entPhySensorUnitsDisplay OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the data units that should be used - in the display of entPhySensorValue." - ::= { entPhySensorEntry 6 } - -entPhySensorValueTimeStamp OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time the status and/or value - of this sensor was last obtained by the agent." - ::= { entPhySensorEntry 7 } - -entPhySensorValueUpdateRate OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the frequency that the agent updates the - associated entPhySensorValue object, representing in - milliseconds. - - The value zero indicates: - - - the sensor value is updated on demand (e.g., - when polled by the agent for a get-request), - - the sensor value is updated when the sensor - value changes (event-driven), - - the agent does not know the update rate. - " - ::= { entPhySensorEntry 8 } - --- --- Conformance Section --- - -entitySensorCompliances OBJECT IDENTIFIER - ::= { entitySensorConformance 1 } -entitySensorGroups OBJECT IDENTIFIER - ::= { entitySensorConformance 2 } - -entitySensorCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "Describes the requirements for conformance to the Entity - Sensor MIB module." - MODULE -- this module - MANDATORY-GROUPS { entitySensorValueGroup } - - MODULE ENTITY-MIB - MANDATORY-GROUPS { entityPhysicalGroup } - ::= { entitySensorCompliances 1 } - --- Object Groups - -entitySensorValueGroup OBJECT-GROUP - OBJECTS { - entPhySensorType, - entPhySensorScale, - entPhySensorPrecision, - entPhySensorValue, - entPhySensorOperStatus, - entPhySensorUnitsDisplay, - entPhySensorValueTimeStamp, - entPhySensorValueUpdateRate - } - STATUS current - DESCRIPTION - "A collection of objects representing physical entity sensor - information." - ::= { entitySensorGroups 1 } - -END diff --git a/mibs/orig/FCMGMT-MIB b/mibs/orig/FCMGMT-MIB deleted file mode 100644 index 3178781..0000000 --- a/mibs/orig/FCMGMT-MIB +++ /dev/null @@ -1,3340 +0,0 @@ -FCMGMT-MIB --- Last edit date: Aug 19th, 2001 - -DEFINITIONS ::= BEGIN - IMPORTS - IpAddress, TimeTicks, experimental - FROM RFC1155-SMI - OBJECT-TYPE - FROM RFC-1212 - DisplayString - FROM RFC1213-MIB - TRAP-TYPE - FROM RFC-1215; - ----------------------------------------------------------------------- - --Textual conventions for this MIB - - FcNameId ::= OCTET STRING (SIZE(8)) - - FcGlobalId ::= OCTET STRING (SIZE(16)) - - FcAddressId ::= OCTET STRING (SIZE(3)) - - FcEventSeverity ::= INTEGER { - unknown (1), - emergency (2), - alert (3), - critical (4), - error (5), - warning (6), - notify (7), - info (8), - debug (9), - mark (10) -- All messages logged - } - - FcUnitType ::= INTEGER { - unknown(1), - other(2), -- none of the following - hub(3), -- passive connectivity unit - -- supporting loop protocol. - switch(4), -- active connectivity unit - -- supporting multiple protocols. - gateway(5), -- unit that converts not only - -- the interface but also encapsulates - -- the frame into another protocol. The - -- assumption is that there is always - -- two gateways connected together. For - -- example, FC <-> ATM. - converter(6), -- unit that converts from one - -- interface to another. For - -- example, FC <-> SCSI. - hba(7), -- host bus adapter - proxy-agent(8), -- software proxy-agent - storage-device(9), -- disk,cd,tape,etc - host(10), -- host computer - storage-subsystem(11), -- raid, library, etc - module(12), -- subcomponent of a system - swdriver(13), -- software driver - storage-access-device(14), -- Provides storage management - -- and access for hetergeneous - -- hosts and heterogeneous devices. - wdm(15), -- waveform division mutiplexer - ups(16), -- uninterruptable power supply - nas(17) -- network attached storage (NFS/CIFS) - } - ----------------------------------------------------------------------- - fcmgmt OBJECT IDENTIFIER ::= { experimental 94 } - - -- groups in fcmgmt - - connSet OBJECT IDENTIFIER ::= { fcmgmt 1 } - trapReg OBJECT IDENTIFIER ::= { fcmgmt 2 } - statSet OBJECT IDENTIFIER ::= { fcmgmt 4 } - connUnitServiceSet OBJECT IDENTIFIER ::= { fcmgmt 5 } - connUnitServiceScalars OBJECT IDENTIFIER ::= { connUnitServiceSet 1 } - connUnitServiceTables OBJECT IDENTIFIER ::= { connUnitServiceSet 2 } - - revisionNumber OBJECT-TYPE - SYNTAX DisplayString (SIZE (4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the revision number for this MIB. The - format of the revision value is as follows - (0) = high order major revision number - (1) = low order major revision number - (2) = high order minor revision number - (3) = low order minor revision number - The value will be stored as an ASCII value. The - following is the current value of this object. - (0) = '0' - (1) = '4' - (2) = '0' - (3) = '0' - This defines a revision of 04.00 - " - ::= { fcmgmt 3 } - - -- the connectivity unit group - - -- Implementation of the group is mandatory for all systems. - - uNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of connectivity units present on this - system (represented by this agent). May be a count - of the boards in a chassis or the number of full boxes - in a rack." - DEFVAL { 1 } - ::= { connSet 1 } - - systemURL OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The top-level URL of the system. If it does not exist - the value is empty string. The URL format is - implementation dependant and can have keywords embedded - that are preceeded by a percent sign (eg, %USER). - The following are the defined keywords that will - be recognized and replaced with data during a launch. - USER - replace with username - PASSWORD - replace with password - GLOBALID - replace with globalid - SERIALNO - replace with serial number - A management application will read this object from the - MIB, provide values for any of the keywords listed above - that are present in the string, and then use the URL to - invoke or launch the program referenced. - If write is not supported, then return invalid. - This value will be retained across boots." - DEFVAL { "" } - ::= { connSet 2 } - - statusChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS obsolete - DESCRIPTION - "The sysuptime timestamp in centiseconds at which - the last status change occurred for any members of - the set." - ::= { connSet 3 } - - configurationChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS obsolete - DESCRIPTION - "The sysuptime timestamp in centiseconds at which - the last configuration change occurred for any - members of the set. This represents a union of change - information for connUnitConfigurationChangeTime." - ::= { connSet 4 } - - connUnitTableChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS obsolete - DESCRIPTION - "The sysuptime timestamp in centiseconds at which - the connUnitTable was updated (an entry was either - added or deleted." - ::= { connSet 5 } - - -- The Connectivity table contains general information on the - -- system's units. - connUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The connectivity table contains general information - on the system's units. This is the list of units under - a single SNMP agent. The number of entries is given by - the value of uNumber. It is 1 for stand-alone system." - ::= { connSet 6 } - - connUnitEntry OBJECT-TYPE - SYNTAX ConnUnitEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A connectivity unit entry containing objects for a - particular unit." - INDEX { connUnitId } - ::= { connUnitTable 1 } - - ConnUnitEntry ::= - SEQUENCE { - connUnitId - FcGlobalId, - connUnitGlobalId - FcGlobalId, - connUnitType - FcUnitType, - connUnitNumports - INTEGER, - connUnitState - INTEGER, - connUnitStatus - INTEGER, - connUnitProduct - DisplayString, - connUnitSn - DisplayString, - connUnitUpTime - TimeTicks, - connUnitUrl - DisplayString, - connUnitDomainId - OCTET STRING, - connUnitProxyMaster - INTEGER, - connUnitPrincipal - INTEGER, - connUnitNumSensors - INTEGER, - connUnitStatusChangeTime - TimeTicks, - connUnitConfigurationChangeTime - TimeTicks, - connUnitNumRevs - INTEGER, - connUnitNumZones - INTEGER, - connUnitModuleId - FcGlobalId, - connUnitName - DisplayString, - connUnitInfo - DisplayString, - connUnitControl - INTEGER, - connUnitContact - DisplayString, - connUnitLocation - DisplayString, - connUnitEventFilter - FcEventSeverity, - connUnitNumEvents - INTEGER, - connUnitMaxEvents - INTEGER, - connUnitEventCurrID - INTEGER, - connUnitFabricID - FcGlobalId, - connUnitNumLinks - INTEGER, - connUnitVendorId - DisplayString - } - - connUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unique identification for this connectivity unit - among those within this proxy domain. - The value MUST be unique within the proxy domain - because it is the index variable for connUnitTable. - The value assigned to a given conectivity unit - SHOULD be persistent across agent and unit resets. - It SHOULD be the same as connUnitGlobalId - if connUnitGlobalId is known and stable." - ::= { connUnitEntry 1 } - - connUnitGlobalId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An optional global-scope identifier for this connectivity unit. - It MUST be a WWN for this connectivity unit - or 16 octets of value zero. - WWN formats requiring fewer than 16 octets - MUST be extended to 16 octets with trailing zero octets, - Left justified, zero filled, - If a WWN is used for connUnitId, - the same WWN MUST be used for connUnitGlobalId. - When a non-zero value is provided, - it SHOULD be persistent across agent and unit resets. - It SHOULD be globally unique. - It SHOULD be one of these FC-PH/PH3 formats: - IEEE (NAA=1) - IEEE Extended (NAA=2) - IEEE Registered (NAA=5). - IEEE Registered extended (NAA=6). - - Use of the IEEE formats allows any IEEE-registered vendor - to assure global uniqueness independently. - The following are some references on IEEE WWN formats: - http://standards.ieee.org/regauth/oui/tutorials/fibreformat.html - http://standards.ieee.org/regauth/oui/tutorials/fibrecomp_id.html - - If one or more WWNs are associated with the connUnit - via other management methods, - one of them SHOULD be used for connUnitGlobalId. - If there is not a WWN assigned specifically to the connUnit, - there is some merit, though not a requirement, - to using a WWN assigned to (one of) - its permanently attached FC/LAN interface(s). - This can not risk uniqueness, though. - As a counterexample, if your - agent runs in a host and the host has an HBA, - it is quite possible that agent, host, and HBA - will all be distinct connUnits, so the host - and agent can not use the WWN of the HBA. - Another example: - If your hub has a built-in Ethernet port, it - might be reasonable for the hub to use its MAC - address (prefixed with the appropriate - NAA) as its connUnitId. But if the - Ethernet were a replaceable PCCard, the hub - should have an independent ID." - ::= { connUnitEntry 2 } - - connUnitType OBJECT-TYPE - SYNTAX FcUnitType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of this connectivity unit." - ::= { connUnitEntry 3 } - - - connUnitNumports OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of physical ports in the connectivity unit - (internal/embedded, external)." - ::= { connUnitEntry 4 } - - connUnitState OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - online(2), -- available for meaningful work - offline(3) -- unavailable for meaningful work, for - -- example in self-test mode, configuration, etc. - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This object reports the overall state of the - connectivity unit. The meaning of all values - is essentially self-explanatory. Any of these - values may occur with any of the ConnUnitStatus - values." - ::= { connUnitEntry 5 } - - connUnitStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - unused(2), -- cannot report status - ok(3), -- available for meaningful work - warning(4), -- something needs attention - failed(5) -- something has failed - } - ACCESS read-only - STATUS mandatory - - DESCRIPTION - "Overall status of the connectivity unit. The goal of this - object is to be the single poll point to check the status - of the connunit. If there is any other component that has - warning, then this should be set to warning, etc. Any of - these values may occur with any of the ConnUnitState - values." - ::= { connUnitEntry 6 } - - connUnitProduct OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connectivity unit vendor's product - model name." - ::= { connUnitEntry 7 } - - connUnitSn OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number for this connectivity unit." - ::= { connUnitEntry 8 } - - connUnitUpTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of centiseconds since the - last unit initialization." - ::= { connUnitEntry 9 } - - connUnitUrl OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "URL to launch a management application, - if applicable. Otherwise empty string. - In a standalone unit, this would be the - same as the top-level URL. This has the same - definition as systemURL for keywords. - If write is not supported, then return invalid. - This value will be retained across boots." - ::= { connUnitEntry 10 } - - connUnitDomainId OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(3)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "24 bit Fibre Channel address ID of this - connectivity unit, right justified with leading - zero's if required. This should be set to the - Fibre Channel address ID or if it is a switch - it would be set to the Domain Controller address. - If this value is not applicable, - return all bits set to 1." - ::= { connUnitEntry 11 } - - connUnitProxyMaster OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - no(2), - yes(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A value of 'yes' means this is the proxy master - unit for a set of managed units. For example, - this could be the only unit with a management - card in it for a set of units. A standalone unit - should return 'yes' for this object." - ::= { connUnitEntry 12 } - - connUnitPrincipal OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - no(2), - yes(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Whether this connectivity unit is the principal unit - within the group of fabric elements. If this value - is not applicable, return unknown." - ::= { connUnitEntry 13 } - - connUnitNumSensors OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of sensors in the connUnitSensorTable." - ::= { connUnitEntry 14 } - - connUnitStatusChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS obsolete - DESCRIPTION - "The sysuptime timestamp in centiseconds - at which the last status change occurred." - ::= { connUnitEntry 15 } - - connUnitConfigurationChangeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS obsolete - DESCRIPTION - "The sysuptime timestamp in centiseconds - at which the last configuration change - occurred." - ::= { connUnitEntry 16 } - - connUnitNumRevs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of revisions in the connUnitRevsTable." - DEFVAL { 1 } - ::= { connUnitEntry 17 } - - connUnitNumZones OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of zones defined in connUnitZoneTable." - ::= { connUnitEntry 18 } - - connUnitModuleId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a unique id, persistent between boots, - that can be used to group a set of connUnits - together into a module. The intended use would - be to create a connUnit with a connUnitType of - 'module' to represent a physical or logical - group of connectivity units. Then the value - of the group would be set to the value of - connUnitId for this 'container' connUnit. - connUnitModuleId should be zeros if this - connUnit is not part of a module." - ::= { connUnitEntry 19 } - - connUnitName OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..79)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A display string containing a name for this - connectivity unit. This object value should be - persistent between boots." - ::= { connUnitEntry 20 } - - connUnitInfo OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A display string containing information - about this connectivity unit. This object value - should be persistent between boots." - ::= { connUnitEntry 21 } - - connUnitControl OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - invalid(2), - resetConnUnitColdStart(3), - resetConnUnitWarmStart(4), - offlineConnUnit(5), - onlineConnUnit(6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object is used to control the addressed - connUnit. - - NOTE: 'Cold Start' and 'Warm Start' - are as defined in MIB II and are not meant - to be a factory reset. - - resetConnUnitColdStart: - the addressed unit performs - a 'Cold Start' reset. - - resetConnUnitWarmStart: - the addressed unit performs - a 'Warm Start' reset. - - offlineConnUnit: - the addressed unit puts itself into - an implementation dependant 'offline' state. - In general,if a unit is in an offline state, - it cannot be used to perform meaningful - Fibre Channel work. - - onlineConnUnit: - the addressed unit puts itself into an - implementation dependant 'online' state. - In general, if a unit is in an online state, - it is capable of performing meaningful - Fibre Channel work. - - NOTE: Each implementation may chose not to allow - any or all of these values on a SET. " - - ::= { connUnitEntry 22 } - - connUnitContact OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Contact information for this connectivity - unit. Persistent across boots." - ::= { connUnitEntry 23 } - - connUnitLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Location information for this connectivity - unit.Persistent across boots." - ::= { connUnitEntry 24 } - - connUnitEventFilter OBJECT-TYPE - SYNTAX FcEventSeverity - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This value defines the event severity - that will be logged by this connectivity unit. - All events of severity less than or equal to - connUnitEventFilter are logged in connUnitEventTable. - Persistent across boots." - ::= { connUnitEntry 25 } - - connUnitNumEvents OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of events currently in the - connUnitEventTable." - ::= { connUnitEntry 26 } - - connUnitMaxEvents OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Max number of events that can be defined - in connUnitEventTable." - ::= { connUnitEntry 27 } - - connUnitEventCurrID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The last used event id (connUnitEventIndex)." - ::= { connUnitEntry 28 } - - connUnitFabricID OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A globally unique value to identify the fabric that this - ConnUnit belongs to, otherwise empty string. This would - typically be equal to the connUnitGlobalID of the - primary switch in a Fibre Channel fabric." - ::= { connUnitEntry 29 } - - connUnitNumLinks OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of links in the link table." - ::= { connUnitEntry 30 } - - connUnitVendorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connectivity unit vendor's name." - ::= { connUnitEntry 31 } - ------------------------------------------------------------------- --- The Table of revisions for hardware and software elements. - - connUnitRevsTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitRevsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of the revisions supported by - connectivity units managed by this agent." - ::= { connSet 7 } - - connUnitRevsEntry OBJECT-TYPE - SYNTAX ConnUnitRevsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - INDEX { connUnitRevsUnitId, - connUnitRevsIndex } - ::= { connUnitRevsTable 1 } - - ConnUnitRevsEntry ::= - SEQUENCE { - connUnitRevsUnitId - FcGlobalId, - connUnitRevsIndex - INTEGER, - connUnitRevsRevId - DisplayString, - connUnitRevsDescription - DisplayString } - - connUnitRevsUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this revision table." - ::= { connUnitRevsEntry 1 } - - connUnitRevsIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value among all connUnitRevsEntrys - with the same value of connUnitRevsUnitId, - in the range between 1 and - connUnitNumRevs[connUnitRevsUnitId]." - ::= { connUnitRevsEntry 2 } - - connUnitRevsRevId OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A vendor-specific string identifying a - revision of a component of the connUnit - indexed by connUnitRevsUnitId." - ::= { connUnitRevsEntry 3 } - - connUnitRevsDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of a component to which the revision - corresponds." - ::= { connUnitRevsEntry 4 } - ------------------------------------------------------------------------ --- The Sensor table - - connUnitSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitSensorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of the sensors supported by each - connectivity unit managed by this agent." - ::= { connSet 8 } - - connUnitSensorEntry OBJECT-TYPE - SYNTAX ConnUnitSensorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Each entry contains the information for a - specific sensor." - INDEX { connUnitSensorUnitId, - connUnitSensorIndex } - ::= { connUnitSensorTable 1 } - - ConnUnitSensorEntry ::= - SEQUENCE { - connUnitSensorUnitId - FcGlobalId, - connUnitSensorIndex - INTEGER (1..2147483647), - connUnitSensorName - DisplayString, - connUnitSensorStatus - INTEGER, - connUnitSensorInfo - DisplayString, - connUnitSensorMessage - DisplayString, - connUnitSensorType - INTEGER, - connUnitSensorCharacteristic - INTEGER - } - - connUnitSensorUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this sensor table." - ::= { connUnitSensorEntry 1 } - - connUnitSensorIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value among all connUnitSensorEntrys - with the same value of connUnitSensorUnitId, - in the range between 1 and - connUnitNumSensor[connUnitSensorUnitId]." - ::= { connUnitSensorEntry 2} - - connUnitSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A textual identification of the sensor - intended primarily for operator use." - ::= { connUnitSensorEntry 3 } - - connUnitSensorStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - other(2), -- the sensor indicates other than ok, - -- warning or failure. - ok(3), -- the sensor indicates ok - warning(4), -- the sensor indicates a warning - failed(5) -- the sensor indicates failure - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status indicated by the sensor." - ::= { connUnitSensorEntry 4 } - - connUnitSensorInfo OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Miscellaneous static info about the sensor - such as its serial number." - ::= { connUnitSensorEntry 5 } - - connUnitSensorMessage OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This describes the status of the sensor - as a message. It may also provide more - resolution on the sensor indication, for - example 'Cover temperature 1503K, above - nominal operating range'" - ::= { connUnitSensorEntry 6 } - - connUnitSensorType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - other(2), - battery(3), - fan(4), - power-supply(5), - transmitter(6), - enclosure(7), - board(8), - receiver(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of component being monitored by this - sensor." - ::= { connUnitSensorEntry 7 } - - connUnitSensorCharacteristic OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - other(2), - temperature(3), - pressure(4), - emf(5), - currentValue(6), -- current is a keyword - airflow(7), - frequency(8), - power(9), - door(10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The characteristics being monitored by this - sensor." - ::= { connUnitSensorEntry 8 } - ------------------------------------------------------------------------ --- The port table - - connUnitPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Generic information on ports for a specific - connUnit." - ::= { connSet 10 } - - connUnitPortEntry OBJECT-TYPE - SYNTAX ConnUnitPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Each entry contains the information for - a specific port." - INDEX { connUnitPortUnitId, - connUnitPortIndex } - ::= { connUnitPortTable 1 } - - ConnUnitPortEntry ::= - SEQUENCE { - connUnitPortUnitId - FcGlobalId, - connUnitPortIndex - INTEGER, - connUnitPortType - INTEGER, - connUnitPortFCClassCap - OCTET STRING, - connUnitPortFCClassOp - OCTET STRING, - connUnitPortState - INTEGER, - connUnitPortStatus - INTEGER, - connUnitPortTransmitterType - INTEGER, - connUnitPortModuleType - INTEGER, - connUnitPortWwn - FcGlobalId, - connUnitPortFCId - FcAddressId, - connUnitPortSn - DisplayString, - connUnitPortRevision - DisplayString, - connUnitPortVendor - DisplayString, - connUnitPortSpeed - INTEGER, - connUnitPortControl - INTEGER, - connUnitPortName - DisplayString, - connUnitPortPhysicalNumber - INTEGER, - connUnitPortStatObject - OBJECT IDENTIFIER, - connUnitPortProtocolCap - OCTET STRING, - connUnitPortProtocolOp - OCTET STRING, - connUnitPortNodeWwn - FcNameId, - connUnitPortHWState - INTEGER - } - - connUnitPortUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this port." - ::= { connUnitPortEntry 1 } - - connUnitPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value among all connUnitPortEntrys - on this connectivity unit, between 1 and - connUnitNumPort[connUnitPortUnitId]." - ::= { connUnitPortEntry 2 } - - connUnitPortType OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - other (2), - not-present (3), - hub-port (4), - n-port (5), -- end port for fabric - nl-port (6), -- end port for loop - fl-port (7), -- public loop - f-port (8), -- fabric port - e-port (9), -- fabric expansion port - g-port (10), -- generic fabric port - domain-ctl (11), -- domain controller - hub-controller(12), - scsi (13), -- parallel SCSI port - escon (14), - lan (15), - wan (16), - ac (17), -- AC power line - dc (18), -- DC power line - ssa (19), -- serial storage architecture - wdm (20), -- optical wave division multiplex - ib (21), -- Infiniband - ipstore (22) -- IP storage - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port type." - ::= { connUnitPortEntry 3 } - - connUnitPortFCClassCap OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Bit mask that specifies the classes - of service capability of this port. If this is not - applicable, return all bits set to zero. - - The bits have - the following definition: - unknown - 0 - class-f - 1 - class-one - 2 - class-two - 4 - class-three - 8 - class-four - 16 - class-five - 32 - class-six - 64" - ::= { connUnitPortEntry 4 } - - connUnitPortFCClassOp OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Bit mask that specifies the classes - of service that are currently operational. - If this is not applicable, return all bits - set to zero. This object has the same - definition as connUnitPortFCClassCap" - ::= { connUnitPortEntry 5 } - - connUnitPortState OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - online(2), -- available for meaningful work - offline(3), -- not available for meaningful work - bypassed(4), -- no longer used (4/12/00) - diagnostics(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user selected state of the port hardware." - ::= { connUnitPortEntry 6 } - - connUnitPortStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - unused (2), -- device cannot report this status - ready (3), -- FCAL Loop or FCPH Link reset protocol - -- initialization has completed - warning (4), -- do not use (4/12/00) - failure (5), -- do not use (4/12/00) - notparticipating (6), -- loop notparticipating and does not - -- have a loop address - initializing (7), -- protocol is proceeding - bypass (8), -- do not use (4/12/00) - ols (9), -- FCP offline status - other (10) -- status not described above - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An overall protocol status for the - port. This value of connUnitPortState is not - online, then this is reported Unknown." - ::= { connUnitPortEntry 7 } - - connUnitPortTransmitterType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - other(2), - unused(3), - shortwave(4), - longwave(5), - copper(6), - scsi(7), - longwaveNoOFC(8), - shortwaveNoOFC(9), - longwaveLED(10), - ssa(11) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The technology of the port transceiver." - ::= { connUnitPortEntry 8 } - - connUnitPortModuleType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - other(2), - gbic(3), - embedded(4), -- fixed, ie, oneXnine - glm(5), - gbicSerialId(6), - gbicNoSerialId(7), - gbicNotInstalled(8), - smallFormFactor(9) -- this is generically a small form factor - -- connector. - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module type of the port connector." - ::= { connUnitPortEntry 9 } - - connUnitPortWwn OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The World Wide Name of the port - if applicable, otherwise all zeros." - ::= { connUnitPortEntry 10 } - - connUnitPortFCId OBJECT-TYPE - SYNTAX FcAddressId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the assigned Fibre Channel ID of - this port. This value is expected to be - a Big Endian value of 24 bits. If this is - loop, then it is the ALPA that is connected. - If this is an eport, then it will only - contain the domain ID left justified, zero - filled. If this port does not have a Fibre - Channel address, return all bits set to 1." - ::= { connUnitPortEntry 11 } - - connUnitPortSn OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the unit (e.g., for - a GBIC). If this is not applicable, return - empty string." - ::= { connUnitPortEntry 12 } - - connUnitPortRevision OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port revision (e.g., for a GBIC)." - ::= { connUnitPortEntry 13 } - - connUnitPortVendor OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port vendor (e.g., for a GBIC)." - ::= { connUnitPortEntry 14 } - - connUnitPortSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The speed of the port in kilobytes per - second." - ::= { connUnitPortEntry 15 } - - connUnitPortControl OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - invalid(2), - resetConnUnitPort(3), - bypassConnUnitPort(4), - unbypassConnUnitPort(5), - offlineConnUnitPort(6), - onlineConnUnitPort(7), - resetConnUnitPortCounters(8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object is used to control the addressed - connUnit's port. Valid commands are: - - resetConnUnitPort: If the addressed connUnit - allows this operation to be performed to this - port, the addressed port performs a - vendor-specific 'reset' operation. Examples of - these operations are: the Link Reset protocol, - the Loop Initialization protocol, or a - resynchronization occurring between the - transceiver in the addressed port to the - transceiver that the port is connected to. - - bypassConnUnitPort: If the addressed connUnit - allows this operation to be performed to this - port, the addressed port performs a - vendor-specific 'bypass' operation. Examples of - these operations are: - transitioning from online to offline, a - request(NON-PARTICIPATING) command to the - Loop Port state machine, or removal of the - port from an arbitrated loop by a hub. - - unbypassConnUnitPort: If the addressed connUnit - allows this operation to be performed to this - port, the addressed port performs a - vendor-specific 'unbypass' operation. Examples - of these operations are: - the Link Failure protocol, a - request(PARTICIPATING) command to the - Loop Port state machine, or addition of the - port to an arbitrated loop by a hub. - - offlineConnUnitPort: If the addressed connUnit - allows this operation to be performed to this - port, the addressed port performs a - vendor-specific 'offline' operation. Examples - of these operations are: - disabling a port's transceiver, the Link - Failure protocol, request(NON-PARTICIPATING) - command to the Loop Port state machine, or - removal of the port from an arbitrated loop - by a hub. - - onlineConnUnitPort: If the addressed connUnit - allows this operation to be performed to this - port, the addressed port performs a - vendor-specific 'online' operation. Examples - of these operations are: - enabling a port's transceiver, the Link - Failure protocol, request(PARTICIPATING) - command to the Loop Port state machine, or - addition of the port from an arbitrated loop - by a hub. - - resetConnUnitPortCounters: If the addressed connUnit - allows this operation to be performed to this - port, the addressed port statistics table counters - will be set to zero. - - NOTE: Each implementation may chose not to allow - any or all of these values on a SET. On a read, if - you do not support write, then return invalid. Otherwise - return the last control operation attempted." - - ::= { connUnitPortEntry 16 } - - connUnitPortName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A user-defined name for this port. This means that up to - DisplayString characters may be supported. If less than, - then the name will be truncated in the connunit." - ::= { connUnitPortEntry 17 } - - connUnitPortPhysicalNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the internal port number this - port is known by. In many implementations, - this should be the same as connUnitPortIndex. - Some implementations may have an internal port - representation not compatible with the rules - for table indeces. In that case, provide the - internal representation of this port in this - object. This value may also be used in the - connUnitLinkPortNumberX or connUnitLinkPortNumberY - objects of the connUnitLinkTable." - ::= { connUnitPortEntry 18 } - - connUnitPortStatObject OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "This contains the OID of the first object of the - table that contains the statistics for this particular - port. If this has a value of zero, then there are no - statistics available for this port. The port type - information will help identify the statistics objects - that will be found in the table." - ::= { connUnitPortEntry 19 } - - connUnitPortProtocolCap OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Bit mask that specifies the driver level - protocol capability of this port. If this is not - applicable, return all bits set to zero. - - The bits have - the following definition: - unknown - 0 - Loop - 1 - Fabric - 2 - SCSI - 4 - TCP/IP - 8 - VI - 16 - FICON - 32" - ::= { connUnitPortEntry 20 } - - connUnitPortProtocolOp OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (2)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Bit mask that specifies the driver level - protocol(s) that are currently operational. - If this is not applicable, return all bits - set to zero. This object has the same - definition as connUnitPortProtocolCap" - ::= { connUnitPortEntry 21 } - - connUnitPortNodeWwn OBJECT-TYPE - SYNTAX FcNameId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Node World Wide Name of the port - if applicable, otherwise all zeros. - This should have the same value for a - group of related ports. The container is - defined as the largest physical unit. - For example, all ports on HBAs on a host - will have the same Node WWN. All ports on - the same storage subsystem will have the - same Node WWN." - ::= { connUnitPortEntry 22 } - - connUnitPortHWState OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - failed (2), -- port failed diagnostics - bypassed (3), -- FCAL bypass, loop only - active (4), -- connected to a device - loopback (5), -- Port in ext loopback - txfault (6), -- Transmitter fault - noMedia (7), -- media not installed - linkDown (8) -- waiting for activity (rx sync) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware detected state of the port." - ::= { connUnitPortEntry 23 } - ------------------------------------------------------------------------ --- event group - - connUnitEventTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitEventEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of connectivity unit events. Errors, - warnings, and information should be reported - in this table." - ::= { connSet 11 } - - connUnitEventEntry OBJECT-TYPE - SYNTAX ConnUnitEventEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Each entry contains information on - a specific event for the given - connectivity unit." - INDEX { connUnitEventUnitId, connUnitEventIndex } - ::= { connUnitEventTable 1 } - - ConnUnitEventEntry ::= - SEQUENCE { - connUnitEventUnitId - FcGlobalId, - connUnitEventIndex - INTEGER (1..2147483647), - connUnitEventId - INTEGER, - connUnitREventTime - DisplayString, - connUnitSEventTime - TimeTicks, - connUnitEventSeverity - FcEventSeverity, - connUnitEventType - INTEGER, - connUnitEventObject - OBJECT IDENTIFIER, - connUnitEventDescr - DisplayString - } - - connUnitEventUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this event table." - ::= { connUnitEventEntry 1 } - - connUnitEventIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Each connectivity unit has its own event buffer. - As it wraps, it may write over previous events. - This object is an index into the buffer. - It is recommended that this table be read using - 'getNext's to retrieve the initial table. - The management application should read the - event table at periodic intervals and then - determine if any new entries were added by - comparing the last known index value with the - current highest index value. The management - application should then update its copy of - the event table. If the read interval - is too long, it is possible that there may - be events that may not be contained in the - agent's internal event buffer. - For example, an agent may read events 50-75. - At the next read interval, connUnitEventCurrID - is 189. If the management app tries to read - event index 76, and the agent's internal buffer - is 100 entries max, event index 76 will no longer - be available. - The index value is an incrementing integer starting - from one every time there is a table reset. - On table reset, all contents are emptied and - all indeces are set to zero. When an - event is added to the table, the event is - assigned the next higher integer value than - the last item entered into the table. If the - index value reaches its maximum value, the next - item entered will cause the index value to - roll over and start at one again." - ::= { connUnitEventEntry 2 } - - connUnitEventId OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS deprecated - DESCRIPTION - "The internal event Id. Incremented for each - event, ranging between 1 and connUnitMaxEvents. - Not used as table index to simplify - the agent implementation. When this - reaches the end of the range specified by - connUnitMaxEvents, the Id will roll over to start - at one. This value will be set back to one at - reset. The relationship of this value to the index - is that internal event id may represent a smaller - number than a 32 bit integer (eg max 100 entries) - and would only have a value range up to - connUnitMaxEvents." - ::= { connUnitEventEntry 3 } - - connUnitREventTime OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..15)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the real time when the event occurred. - It has the following format. - DDMMYYYY HHMMSS - DD=day number - MM=month number - YYYY=year number - HH=hour number - MM=minute number - SS=seconds number - If not applicable, return either a NULL string - or '00000000 000000'." - ::= { connUnitEventEntry 4 } - - connUnitSEventTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the sysuptime timestamp when the - event occurred." - ::= { connUnitEventEntry 5 } - - connUnitEventSeverity OBJECT-TYPE - SYNTAX FcEventSeverity - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The event severity level." - ::= { connUnitEventEntry 6 } - - connUnitEventType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - other(2), - status(3), - configuration(4), - topology(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of this event." - ::= { connUnitEventEntry 7 } - - connUnitEventObject OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is used with the connUnitEventType - to identify which object the event refers to. - Examples are connUnitPortStatus.connUnitId.connUnitPortIndex, - connUnitStatus.connUnitId, etc." - ::= { connUnitEventEntry 8 } - - connUnitEventDescr OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The description of the event." - ::= { connUnitEventEntry 9 } - ------------------------------------------------------------------- --- The link table --- is intended to organize and communicate --- any information the agent possesses --- which would assist a management application --- to discover the CONNECTIVITY UNITS in the --- framework and the TOPOLOGY of their interconnect. --- That is, the goal is to assist the management --- application not only to LIST the elements of the framework, --- but to MAP them. - --- With this goal, the agent SHOULD include --- as much as it possesses about any links --- from its own connectivity units to others, --- including links among its own units. - --- An agent SHOULD include partial information --- about links if it is not able to fully --- define them. --- For an entry to be considered to be valid, both the X (local) --- and the Y (remote) need to have one valid value. - --- If the agent is able to discover links --- which do not directly attach to members of its agency --- and its discovery algorithm gives some assurance --- the links are recently valid, it MAY include these links. - --- Link information entered by administrative action --- MAY be included even if not validated directly --- if the link has at least one endpoint in this agency, --- but SHOULD NOT be included otherwise. - --- A connectivity unit should fill the table in as best it can. --- One of the methods to fill this in would be to use the RNID --- ELS (reference ANSI T11.3 draft standard FC-FS). This --- allows one to query a port for the information needed for --- the link table. - --- This table is accessed either directly if the management --- software has an index value or via GetNexts. The value of --- the indexes are not required to be contiguous. Each entry --- created in this table will be assigned an index. This --- relationship is kept persistent until the entry is removed --- from the table or the system is reset. The total number of --- entries are defined by the size of the table - - connUnitLinkTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitLinkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of links know to this agent from this - connectivity unit to other connectivity units." - ::= { connSet 12 } - - connUnitLinkEntry OBJECT-TYPE - SYNTAX ConnUnitLinkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry describing a particular link to another." - INDEX { connUnitLinkUnitId, - connUnitLinkIndex } - ::= { connUnitLinkTable 1 } - - ConnUnitLinkEntry ::= - SEQUENCE { - connUnitLinkUnitId - FcGlobalId, - connUnitLinkIndex - INTEGER, - connUnitLinkNodeIdX - OCTET STRING, - connUnitLinkPortNumberX - INTEGER, - connUnitLinkPortWwnX - FcGlobalId, - connUnitLinkNodeIdY - OCTET STRING, - connUnitLinkPortNumberY - INTEGER, - connUnitLinkPortWwnY - FcGlobalId, - connUnitLinkAgentAddressY - OCTET STRING, - connUnitLinkAgentAddressTypeY - INTEGER, - connUnitLinkAgentPortY - INTEGER, - connUnitLinkUnitTypeY - FcUnitType, - connUnitLinkConnIdY - OCTET STRING, - connUnitLinkCurrIndex - INTEGER - } - - connUnitLinkUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this link table." - ::= { connUnitLinkEntry 1 } - - connUnitLinkIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This index is used to create a unique value - for each entry in the link table with the same - connUnitLinkUnitId. The value - can only be reused if it is not currently in - use and the value is the next candidate to - be used. This value wraps at the highest - value represented by the size of INTEGER. - This value is reset to zero when the system is - reset and the first value to be used is one." - ::= { connUnitLinkEntry 2 } - - connUnitLinkNodeIdX OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The node WWN of the unit at one end - of the link. If the node WWN is unknown - and the node is a connUnit in the responding - agent then the value of this object MUST BE - equal to its connUnitID." - ::= { connUnitLinkEntry 3 } - - connUnitLinkPortNumberX OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port number on the unit specified by - connUnitLinkNodeIdX if known, otherwise -1. - If the value is nonnegative then it will be - equal to connUnitPortPhysicalNumber." - ::= { connUnitLinkEntry 4 } - - connUnitLinkPortWwnX OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port WWN of the unit specified by - connUnitLinkNodeIdX if known, - otherwise 16 octets of binary 0" - ::= { connUnitLinkEntry 5 } - - connUnitLinkNodeIdY OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The node WWN of the unit at the other end - of the link. If the node WWN is unknown - and the node is a connUnit in the responding - SNMP agency then the value of this object - MUST BE equal to its connUnitID." - ::= { connUnitLinkEntry 6 } - - connUnitLinkPortNumberY OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port number on the unit specified by - connUnitLinkNodeIdY if known, otherwise -1. - If the value is nonnegative then it will be - equal to connUnitPortPhysicalNumber." - ::= { connUnitLinkEntry 7 } - - connUnitLinkPortWwnY OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The port WWN on the unit specified by - connUnitLinkNodeIdY if known, - otherwise 16 octets of binary 0" - ::= { connUnitLinkEntry 8 } - - connUnitLinkAgentAddressY OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The address of an FCMGMT MIB agent for the - node identified by connUnitLinkNodeIdY, - if known; otherwise 16 octets of binary 0" - ::= { connUnitLinkEntry 9 } - - connUnitLinkAgentAddressTypeY OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "If connUnitLinkAgentAddressY is nonzero, - it is a protocol address. - ConnUnitLinkAgentAddressTypeY is the - the 'address family number' assigned by IANA - to identify the address format. - (eg, 1 is Ipv4, 2 is Ipv6). If - connUnitLinkAgentAddressY is all zeros, then - this value is ignored." - ::= { connUnitLinkEntry 10 } - - connUnitLinkAgentPortY OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP port number for the agent. This is - provided in case the agent is at a non-standard - SNMP port." - ::= { connUnitLinkEntry 11 } - - connUnitLinkUnitTypeY OBJECT-TYPE - SYNTAX FcUnitType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Type of the FC connectivity unit as defined in - connUnitType." - ::= { connUnitLinkEntry 12 } - - connUnitLinkConnIdY OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(3)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the Fibre Channel ID of this port. - If the connectivity unit is a switch, this - is expected to be a Big Endian value of 24 - bits. If this is loop, then it is the ALPA - that is connected. If this is an eport, then - it will only contain the domain ID. If not - any of those, unknown or cascaded loop, - return all bits set to 1." - ::= { connUnitLinkEntry 13 } - - connUnitLinkCurrIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The last used link index." - ::= { connUnitLinkEntry 14 } - --- The Active Zone table is defined by --- read-only view of the active zone configuration. --- Based on the fabric zone server defined in the FC-GS-3 standard and --- the enhanced zone server proposed for FC-GS-4. --- Allows alias zone members (GS-4 feature) and includes an alias --- table. --- Zone table and Alias table are flat, double-indexed MIB tables. --- Database view of inactive zone sets is not provided. (Note: This --- could be added by adding a third index (connUnitZoneSetIndex) --- and an zone set active flag to the connUnitActiveZonesTable --- table.) --- Undefined, vendor-specific bytes have not been included for the bit --- mask objects connUnitZoneCapabilities and --- connUnitZoneEnforcementState. - - connUnitZoneTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitZoneEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - ::= { connSet 13 } - - connUnitZoneEntry OBJECT-TYPE - SYNTAX ConnUnitZoneEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - INDEX { connUnitZoneIndex, - connUnitZoneMemberIndex } - ::= { connUnitZoneTable 1 } - - ConnUnitZoneEntry ::= - SEQUENCE { - connUnitZoneIndex - INTEGER, - connUnitZoneMemberIndex - INTEGER, - connUnitZoneSetName - DisplayString, - connUnitZoneSetNumZones - INTEGER, - connUnitZoneName - DisplayString, - connUnitZoneCapabilities - OCTET STRING, - connUnitZoneEnforcementState - OCTET STRING, - connUnitZoneAttributeBlock - OCTET STRING, - connUnitZoneNumMembers - INTEGER, - connUnitZoneMemberIdType - INTEGER, - connUnitZoneMemberID - FcGlobalId } - - connUnitZoneIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique table index for each zone. - Valid values are between 1 and - connUnitZoneSetNumZones." - ::= { connUnitZoneEntry 1 } - - connUnitZoneMemberIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique table index for each zone - member. Valid values are between - 1 and connUnitZoneNumMembers." - ::= { connUnitZoneEntry 2 } - - connUnitZoneSetName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of the active zone set to - which the zone and zone member - belong." - ::= { connUnitZoneEntry 3 } - - connUnitZoneSetNumZones OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of zones in the active - zone set." - ::= { connUnitZoneEntry 4 } - - connUnitZoneName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of the zone." - ::= { connUnitZoneEntry 5 } - - connUnitZoneCapabilities OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "1-byte bit mask that specifies the - zoning capabilities supported by the - fabric. - Bit 7 - Soft zones supported. - Bit 6 - Hard zones supported. - Bits 5-0 - Reserved." - ::= { connUnitZoneEntry 6 } - - connUnitZoneEnforcementState OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "1-byte bit mask that specifies the - current enforcement of the Zone Set. - Bit 7 - Soft zone set enforced. - Bit 6 - Hard zone set enforced. - Bits 5-0 - Reserved." - ::= { connUnitZoneEntry 7 } - - connUnitZoneAttributeBlock OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A variable length structure that - contains extended zone attributes - defined in the FC-GS-4 enhanced - zone server. See FC-GS-4 draft - standard for details and format of - the structure. - Support of this object is optional." - ::= { connUnitZoneEntry 8 } - - connUnitZoneNumMembers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of zone members in the - zone: connUnitZoneName." - ::= { connUnitZoneEntry 9 } - - connUnitZoneMemberIdType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Type of zone member ID: - 1- Port WWN - 2- Domain & Port ID - 3- FC Address - 4- Node WWN - 5- Alias Name - 6-'FF'h - Vendor specified." - ::= { connUnitZoneEntry 10 } - - connUnitZoneMemberID OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "ID of the zone member based on - connUnitZoneMemberIdType." - ::= { connUnitZoneEntry 11 } - - --- Zone Alias Table - - connUnitZoningAliasTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitZoningAliasEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - ::= { connSet 14 } - - connUnitZoningAliasEntry OBJECT-TYPE - SYNTAX ConnUnitZoningAliasEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - INDEX { connUnitZoningAliasIndex, - connUnitZoningAliasMemberIndex } - ::= { connUnitZoningAliasTable 1 } - - ConnUnitZoningAliasEntry ::= - SEQUENCE { - connUnitZoningAliasIndex - INTEGER, - connUnitZoningAliasMemberIndex - INTEGER, - connUnitZoningAliasNumAliases - INTEGER, - connUnitZoningAliasName - DisplayString, - connUnitZoningAliasNumMembers - INTEGER, - connUnitZoningAliasMemberIdType - INTEGER, - connUnitZoningAliasMemberID - FcGlobalId } - - connUnitZoningAliasIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique table index for each alias. - Valid values are between 1 and - connUnitZoningAliasNumAliases." - ::= { connUnitZoningAliasEntry 1 } - - connUnitZoningAliasMemberIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique table index for each alias - member. Valid values are between 1 - and connUnitZoningAliasNumMembers." - ::= { connUnitZoningAliasEntry 2 } - - connUnitZoningAliasNumAliases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of aliases defined in this - table." - ::= { connUnitZoningAliasEntry 3 } - - connUnitZoningAliasName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alias name." - ::= { connUnitZoningAliasEntry 4 } - - connUnitZoningAliasNumMembers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of members in the alias: - connUnitZoningAliasName." - ::= { connUnitZoningAliasEntry 5 } - - connUnitZoningAliasMemberIdType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Type of alias member ID: - 1- Port WWN - 2- Domain & Port ID - 3- FC Address - Others: reserved." - ::= { connUnitZoningAliasEntry 6 } - - connUnitZoningAliasMemberID OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "ID of the alias member based on - connUnitZoningAliasMemberIdType." - ::= { connUnitZoningAliasEntry 7 } - - ------------------------------------------------------------------- --- The following four tables have been obsoleted. These were used to --- keep statistic information based on the type of port type. It was --- changed for all ports to use a common statistics table. - --- connUnitPortStatHubTable OBJECT-TYPE --- SYNTAX SEQUENCE OF ConnUnitPortStatHubEntry --- ACCESS not-accessible --- STATUS obsolete --- DESCRIPTION --- "A list of statistics for the hub port type." --- ::= { statSet 1 } - --- connUnitPortStatFabricTable OBJECT-TYPE --- SYNTAX SEQUENCE OF ConnUnitPortStatFabricEntry --- ACCESS not-accessible --- STATUS obsolete --- DESCRIPTION --- "A list of statistics for the fabric port types." --- ::= { statSet 2 } - --- connUnitPortStatSCSITable OBJECT-TYPE --- SYNTAX SEQUENCE OF ConnUnitPortStatSCSIEntry --- ACCESS not-accessible --- STATUS obsolete --- DESCRIPTION --- "A list of statistics for the SCSI port type." --- ::= { statSet 3 } - --- connUnitPortStatLANTable OBJECT-TYPE --- SYNTAX SEQUENCE OF ConnUnitPortStatLANEntry --- ACCESS not-accessible --- STATUS obsolete --- DESCRIPTION --- "A list of statistics for the LAN/WAN port type." --- ::= { statSet 4 } - --- There is one and only one statistics table for each --- individual port. For all objects in statistics table, if the object is not --- supported by the conn unit then the high order bit is set to 1 with all other --- bits set to zero. The high order bit is reserved to indicate if the object --- if supported or not. All objects start at a value of zero at hardware --- initialization and continue incrementing till end of 63 bits and then --- wrap to zero. - --- Port Statistics - - connUnitPortStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitPortStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of statistics for the fabric port types." - ::= { statSet 5 } - - connUnitPortStatEntry OBJECT-TYPE - SYNTAX ConnUnitPortStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry describing port statistics." - INDEX { connUnitPortStatUnitId, - connUnitPortStatIndex } - ::= { connUnitPortStatTable 1 } - - ConnUnitPortStatEntry ::= - SEQUENCE { - connUnitPortStatUnitId - FcGlobalId, - connUnitPortStatIndex - INTEGER, - connUnitPortStatCountError - OCTET STRING, - connUnitPortStatCountTxObjects - OCTET STRING, - connUnitPortStatCountRxObjects - OCTET STRING, - connUnitPortStatCountTxElements - OCTET STRING, - connUnitPortStatCountRxElements - OCTET STRING, - connUnitPortStatCountBBCreditZero - OCTET STRING, - connUnitPortStatCountInputBuffersFull - OCTET STRING, - connUnitPortStatCountFBSYFrames - OCTET STRING, - connUnitPortStatCountPBSYFrames - OCTET STRING, - connUnitPortStatCountFRJTFrames - OCTET STRING, - connUnitPortStatCountPRJTFrames - OCTET STRING, - connUnitPortStatCountClass1RxFrames - OCTET STRING, - connUnitPortStatCountClass1TxFrames - OCTET STRING, - connUnitPortStatCountClass1FBSYFrames - OCTET STRING, - connUnitPortStatCountClass1PBSYFrames - OCTET STRING, - connUnitPortStatCountClass1FRJTFrames - OCTET STRING, - connUnitPortStatCountClass1PRJTFrames - OCTET STRING, - connUnitPortStatCountClass2RxFrames - OCTET STRING, - connUnitPortStatCountClass2TxFrames - OCTET STRING, - connUnitPortStatCountClass2FBSYFrames - OCTET STRING, - connUnitPortStatCountClass2PBSYFrames - OCTET STRING, - connUnitPortStatCountClass2FRJTFrames - OCTET STRING, - connUnitPortStatCountClass2PRJTFrames - OCTET STRING, - connUnitPortStatCountClass3RxFrames - OCTET STRING, - connUnitPortStatCountClass3TxFrames - OCTET STRING, - connUnitPortStatCountClass3Discards - OCTET STRING, - connUnitPortStatCountRxMulticastObjects - OCTET STRING, - connUnitPortStatCountTxMulticastObjects - OCTET STRING, - connUnitPortStatCountRxBroadcastObjects - OCTET STRING, - connUnitPortStatCountTxBroadcastObjects - OCTET STRING, - connUnitPortStatCountRxLinkResets - OCTET STRING, - connUnitPortStatCountTxLinkResets - OCTET STRING, - connUnitPortStatCountNumberLinkResets - OCTET STRING, - connUnitPortStatCountRxOfflineSequences - OCTET STRING, - connUnitPortStatCountTxOfflineSequences - OCTET STRING, - connUnitPortStatCountNumberOfflineSequences - OCTET STRING, - connUnitPortStatCountLinkFailures - OCTET STRING, - connUnitPortStatCountInvalidCRC - OCTET STRING, - connUnitPortStatCountInvalidTxWords - OCTET STRING, - connUnitPortStatCountPrimitiveSequenceProtocolErrors - OCTET STRING, - connUnitPortStatCountLossofSignal - OCTET STRING, - connUnitPortStatCountLossofSynchronization - OCTET STRING, - connUnitPortStatCountInvalidOrderedSets - OCTET STRING, - connUnitPortStatCountFramesTooLong - OCTET STRING, - connUnitPortStatCountFramesTruncated - OCTET STRING, - connUnitPortStatCountAddressErrors - OCTET STRING, - connUnitPortStatCountDelimiterErrors - OCTET STRING, - connUnitPortStatCountEncodingDisparityErrors - OCTET STRING - } - - connUnitPortStatUnitId OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this port stat table." - ::= { connUnitPortStatEntry 1 } - - connUnitPortStatIndex OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value among all entries in this - table having the same connUnitPortStatUnitId, - between 1 and - connUnitNumPort[connUnitPortStatUnitId]." - ::= { connUnitPortStatEntry 2 } - - connUnitPortStatCountError OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A count of the errors that have occured - on this port." - ::= { connUnitPortStatEntry 3 } - - connUnitPortStatCountTxObjects OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of frames/packets/IOs/etc that have been transmitted - by this port. Note: A Fibre Channel frame starts with SOF and - ends with EOF. FC loop devices should not count frames passed - through. This value represents the sum total for all other Tx - objects." - ::= { connUnitPortStatEntry 4 } - - connUnitPortStatCountRxObjects OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of frames/packets/IOs/etc that have been received - by this port. Note: A Fibre Channel frame starts with SOF and - ends with EOF. FC loop devices should not count frames passed - through. This value represents the sum total for all other Rx - objects." - ::= { connUnitPortStatEntry 5 } - - connUnitPortStatCountTxElements OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets or bytes that have been transmitted - by this port. One second periodic polling of the port. This - value is saved and compared with the next polled value to - compute net throughput. Note, for Fibre Channel, ordered - sets are not included in the count." - ::= { connUnitPortStatEntry 6 } - - connUnitPortStatCountRxElements OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets or bytes that have been received. - by this port. One second periodic polling of the port. This - value is saved and compared with the next polled value to - compute net throughput. Note, for Fibre Channel, ordered - sets are not included in the count." - ::= { connUnitPortStatEntry 7 } - - connUnitPortStatCountBBCreditZero OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of transitions in/out of BBcredit zero state. - The other side is not providing any credit. Note, - this is a Fibre Channel stat only." - ::= { connUnitPortStatEntry 8 } - - connUnitPortStatCountInputBuffersFull OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of occurrences when all input buffers of a - port were full and outbound buffer-to-buffer credit - transitioned to zero. There is no credit to - provide to other side. Note, this is a Fibre Channel - stat only." - ::= { connUnitPortStatEntry 9 } - - connUnitPortStatCountFBSYFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FBSY was returned to this port as a - result of a frame that could not be delivered to the other - end of the link. This occurs if either the Fabric or the - destination port is temporarily busy. Port can only occur - on SOFc1 frames (the frames that establish a connection). - Note, this is a Fibre Channel only stat. This is the sum - of all classes. If you cannot keep the by class counters, - then keep the sum counters." - ::= { connUnitPortStatEntry 10 } - - connUnitPortStatCountPBSYFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that PBSY was returned to this port as a - result of a frame that could not be delivered to the other - end of the link. This occurs if the destination port is - temporarily busy. PBSY can only occur on SOFc1 frames - (the frames that establish a connection). Note, this is - a Fibre Channel only stat.This is the sum - of all classes. If you cannot keep the by class counters, - then keep the sum counters." - ::= { connUnitPortStatEntry 11 } - - connUnitPortStatCountFRJTFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FRJT was returned to this port as a - result of a Frame that was rejected by the fabric. Note, - This is the total for all classes and is a Fibre Channel - only stat." - ::= { connUnitPortStatEntry 12 } - - connUnitPortStatCountPRJTFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FRJT was returned to this port as a - result of a Frame that was rejected at the destination - N_Port. Note, This is the total for all classes and is - a Fibre Channel only stat." - ::= { connUnitPortStatEntry 13 } - - connUnitPortStatCountClass1RxFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 1 Frames received at this port. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 14 } - - connUnitPortStatCountClass1TxFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 1 Frames transmitted out this port. Note, - this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 15 } - - connUnitPortStatCountClass1FBSYFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FBSY was returned to this port as a - result of a Class 1 Frame that could not be delivered to the - other end of the link. This occurs if either the Fabric or the - destination port is temporarily busy. FBSY can only occur on - SOFc1 frames (the frames that establish a connection). Note, - this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 16 } - - connUnitPortStatCountClass1PBSYFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that PBSY was returned to this port as a result - of a Class 1 Frame that could not be delivered to the other end - of the link. This occurs if the destination N_Port is temporarily - busy. PBSY can only occur on SOFc1 frames (the frames that - establish a connection). Note, this is a Fibre Channel only - stat." - ::= { connUnitPortStatEntry 17 } - - connUnitPortStatCountClass1FRJTFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FRJT was returned to this port as a result - of a Class 1 Frame that was rejected by the fabric. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 18 } - - connUnitPortStatCountClass1PRJTFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FRJT was returned to this port as a result - of a Class 1 Frame that was rejected at the destination N_Port. - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 19 } - - connUnitPortStatCountClass2RxFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 2 Frames received at this port. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 20 } - - connUnitPortStatCountClass2TxFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 2 Frames transmitted out this port. Note, - this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 21 } - - connUnitPortStatCountClass2FBSYFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FBSY was returned to this port as a - result of a Class 2 Frame that could not be delivered to the - other end of the link. This occurs if either the Fabric or the - destination port is temporarily busy. FBSY can only occur on - SOFc1 frames (the frames that establish a connection). Note, - this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 22 } - - connUnitPortStatCountClass2PBSYFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that PBSY was returned to this port as a result - of a Class 2 Frame that could not be delivered to the other end - of the link. This occurs if the destination N_Port is temporarily - busy. PBSY can only occur on SOFc1 frames (the frames that - establish a connection). Note, this is a Fibre Channel only - stat." - ::= { connUnitPortStatEntry 23 } - - connUnitPortStatCountClass2FRJTFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FRJT was returned to this port as a result - of a Class 2 Frame that was rejected by the fabric. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 24 } - - connUnitPortStatCountClass2PRJTFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of times that FRJT was returned to this port as a result - of a Class 2 Frame that was rejected at the destination N_Port. - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 25 } - - connUnitPortStatCountClass3RxFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 3 Frames received at this port. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 26 } - - connUnitPortStatCountClass3TxFrames OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 3 Frames transmitted out this port. Note, - this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 27 } - - connUnitPortStatCountClass3Discards OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Class 3 Frames that were discarded upon reception - at this port. There is no FBSY or FRJT generated for Class 3 - Frames. They are simply discarded if they cannot be delivered. - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 28 } - - connUnitPortStatCountRxMulticastObjects OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Multicast Frames or Packets received at this port." - ::= { connUnitPortStatEntry 29 } - - connUnitPortStatCountTxMulticastObjects OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Multicast Frames or Packets transmitted out this port." - ::= { connUnitPortStatEntry 30 } - - connUnitPortStatCountRxBroadcastObjects OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Broadcast Frames or Packets received at this port." - ::= { connUnitPortStatEntry 31 } - - connUnitPortStatCountTxBroadcastObjects OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Broadcast Frames or Packets transmitted out this port. - On a Fibre Channel loop, count only OPNr frames generated." - ::= { connUnitPortStatEntry 32 } - - connUnitPortStatCountRxLinkResets OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Link resets. This is the number of LRs received. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 33 } - - connUnitPortStatCountTxLinkResets OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Link resets. This is the number LRs transmitted. Note, this - is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 34 } - - connUnitPortStatCountNumberLinkResets OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Link resets and LIPs detected at this port. - The number times the reset link protocol is initiated. - These are the count of the logical resets, a count of the - number of primatives. Note, this is a Fibre Channel only - stat." - ::= { connUnitPortStatEntry 35 } - - connUnitPortStatCountRxOfflineSequences OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Offline Primitive OLS received at this port. - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 36 } - - connUnitPortStatCountTxOfflineSequences OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Offline Primitive OLS transmitted by this port. - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 37 } - - connUnitPortStatCountNumberOfflineSequences OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of Offline Primitive sequence received at this port. - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 38 } - - connUnitPortStatCountLinkFailures OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of link failures. This count is part of the Link Error - Status Block (LESB). (FC-PH 29.8). Note, this is a Fibre - Channel only stat." - ::= { connUnitPortStatEntry 39 } - - connUnitPortStatCountInvalidCRC OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of frames received with invalid CRC. This count is - part of the Link Error Status Block (LESB). (FC-PH 29.8). Loop - ports should not count CRC errors passing through when - monitoring. Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 40 } - - connUnitPortStatCountInvalidTxWords OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of invalid transmission words received at this - port. This count is part of the Link Error Status Block (LESB). - (FC-PH 29.8). Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 41 } - - connUnitPortStatCountPrimitiveSequenceProtocolErrors OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of primitive sequence protocol errors detected at - this port. This count is part of the Link Error Status - Block (LESB). (FC-PH 29.8). Note, this is a Fibre Channel - only stat." - ::= { connUnitPortStatEntry 42 } - - connUnitPortStatCountLossofSignal OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of instances of signal loss detected at port. - This count is part of the Link Error Status Block (LESB). - (FC-PH 29.8). Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 43 } - - connUnitPortStatCountLossofSynchronization OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of instances of synchronization loss detected at port. - This count is part of the Link Error Status Block (LESB). - (FC-PH 29.8). Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 44 } - - connUnitPortStatCountInvalidOrderedSets OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of invalid ordered sets received at port. This count - is part of the Link Error Status Block (LESB). (FC-PH 29.8). - Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 45 } - - connUnitPortStatCountFramesTooLong OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of frames received at this port where the - frame length was greater than what was agreed to in - FLOGI/PLOGI. This could be caused by losing the end of - frame delimiter. Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 46 } - - connUnitPortStatCountFramesTruncated OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of frames received at this port where the - frame length was less than the minimum indicated by the - frame header - normally 24 bytes, but it could be more if the - DFCTL field indicates an optional header should have been - present. Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 47 } - - connUnitPortStatCountAddressErrors OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of frames received with unknown addressing. - e.x. unknown SID or DID. the SID or DID is not known to the - routing algorithm. Note. this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 48 } - - connUnitPortStatCountDelimiterErrors OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of invalid frame delimiters received at this - port. An example is a frame with a class 2 start and and a - class 3 at the end. Note, this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 49 } - - connUnitPortStatCountEncodingDisparityErrors OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Count of disparity errors received at this port. Note, - this is a Fibre Channel only stat." - ::= { connUnitPortStatEntry 50 } - ------------------------------------------------------------------- --- --- the Fibre Channel Simple Name Server table --- --- The Fibre Channel Simple Name Server table contains an entry for each device --- presently known to this connUnit. There will not be any version on this since --- FC-GS3 does not define a version today. --- --- This table is accessed either directly if the management --- software has an index value or via GetNexts. The value of --- the indexes are not required to be contiguous. --- The total number of entries are defined by the size of the table - - connUnitSnsMaxEntry OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current number of entries in the table." - ::= { connUnitServiceScalars 1 } - - connUnitSnsTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitSnsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This table contains an entry for each object registered with - this port in the switch." - ::= { connUnitServiceTables 1 } - - connUnitSnsEntry OBJECT-TYPE - SYNTAX ConnUnitSnsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Simple Name Server table for the port represented by - ConnUnitSnsPortIndex ." - INDEX { connUnitSnsId, connUnitSnsPortName, - connUnitSnsPortIdentifier } - ::= { connUnitSnsTable 1 } - - ConnUnitSnsEntry ::= - SEQUENCE { - connUnitSnsId - OCTET STRING, - connUnitSnsPortIndex - INTEGER, - connUnitSnsPortIdentifier - FcAddressId, - connUnitSnsPortName - FcNameId, - connUnitSnsNodeName - FcNameId, - connUnitSnsClassOfSvc - OCTET STRING, - connUnitSnsNodeIPAddress - OCTET STRING, - connUnitSnsProcAssoc - OCTET STRING, - connUnitSnsFC4Type - OCTET STRING, - connUnitSnsPortType - OCTET STRING, - connUnitSnsPortIPAddress - OCTET STRING, - connUnitSnsFabricPortName - FcNameId, - connUnitSnsHardAddress - FcGlobalId, - connUnitSnsSymbolicPortName - DisplayString, - connUnitSnsSymbolicNodeName - DisplayString - } - - connUnitSnsId OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity unit - that contains this Name Server table." - ::= { connUnitSnsEntry 1 } - - connUnitSnsPortIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical port number of this SNS table entry. - Each physical port has an SNS table with 1-n entries - indexed by ConnUnitSnsPortIdentifier (port address)" - ::= { connUnitSnsEntry 2 } - - connUnitSnsPortIdentifier OBJECT-TYPE - SYNTAX FcAddressId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Fibre Channel ID for this entry in the SNS table." - ::= { connUnitSnsEntry 3 } - - connUnitSnsPortName OBJECT-TYPE - SYNTAX FcNameId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Port WWN for this entry in the SNS table." - ::= { connUnitSnsEntry 4 } - - connUnitSnsNodeName OBJECT-TYPE - SYNTAX FcNameId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Node Name for this entry in the SNS table." - ::= { connUnitSnsEntry 5 } - - connUnitSnsClassOfSvc OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Classes of Service offered by this entry in the SNS table. - This is a bit mask where each bit that represents the class - of service is set to a value of one if the class is supported. - Class 1 is bit zero." - ::= { connUnitSnsEntry 6 } - - connUnitSnsNodeIPAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IPv6 formatted address of the Node for this entry in the SNS table." - ::= { connUnitSnsEntry 7 } - - connUnitSnsProcAssoc OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Process Associator for this entry in the SNS table." - ::= { connUnitSnsEntry 8 } - - connUnitSnsFC4Type OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The FC-4 Types supported by this entry in the SNS table." - ::= { connUnitSnsEntry 9 } - - connUnitSnsPortType OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Port Type of this entry in the SNS table." - ::= { connUnitSnsEntry 10 } - - connUnitSnsPortIPAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IPv6 formatted address of this entry in the SNS table." - ::= { connUnitSnsEntry 11 } - - connUnitSnsFabricPortName OBJECT-TYPE - SYNTAX FcNameId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Fabric Port name of this entry in the SNS table." - ::= { connUnitSnsEntry 12 } - - connUnitSnsHardAddress OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Hard ALPA of this entry in the SNS table." - ::= { connUnitSnsEntry 13 } - - connUnitSnsSymbolicPortName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Symbolic Port Name of this entry in the SNS table." - ::= { connUnitSnsEntry 14 } - - connUnitSnsSymbolicNodeName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Symbolic Node Name of this entry in the SNS table." - ::= { connUnitSnsEntry 15 } - --- Platform Table --- Design Objectives and Scope --- Simple, read-only view of platform registration entries. --- Platform registry is a service hosted by the connectivity unit, --- in a very similar manner as the SNS table. I.E., the platform --- table is contained by the connectivity unit. A platform can --- register it's attributes and platform nodes with the registry --- service. (See FC-GS-3 Configuration Server for details.) --- The platform table is a flat, double-indexed MIB table. --- To keep the table simple, only one platform management URL is exposed. --- If a platform registers more than one management URL, the first --- one is reported in this table. --- This table is based on the fabric configuration server --- defined in the FC-GS-3 standard and enhanced platform --- attributes proposed for FC-GS-4. --- Note that the information contained in this table may only --- contain the platforms that this connUnit can see or it may --- contain a fabric wide view of the platforms. - - connUnitPlatformMaxEntry OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of entries in the platform table." - ::= { connUnitServiceScalars 2 } - - connUnitPlatformTable OBJECT-TYPE - SYNTAX SEQUENCE OF ConnUnitPlatformEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - ::= { connUnitServiceTables 2 } - - connUnitPlatformEntry OBJECT-TYPE - SYNTAX ConnUnitPlatformEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "" - INDEX { connUnitPlatformIndex, - connUnitPlatformNodeIndex } - ::= { connUnitPlatformTable 1 } - - ConnUnitPlatformEntry ::= - SEQUENCE { - connUnitPlatformIndex - INTEGER, - connUnitPlatformNodeIndex - INTEGER, - connUnitPlatformUnitID - FcGlobalId, - connUnitPlatformName - OCTET STRING, - connUnitPlatformType - FcUnitType, - connUnitPlatformLabel - DisplayString, - connUnitPlatformDescription - DisplayString, - connUnitPlatformLocation - DisplayString, - connUnitPlatformManagementUrl - DisplayString, - connUnitPlatformNumNodes - INTEGER, - connUnitPlatformNodeName - FcGlobalId } - - connUnitPlatformIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique table index for each platform. - Valid values are between 1 and - connUnitPlatformsMaxEntry." - ::= { connUnitPlatformEntry 1 } - - connUnitPlatformNodeIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique table index for each platform - node. Valid values are between 1 and - connUnitPlatformsNumNodes." - ::= { connUnitPlatformEntry 2 } - - connUnitPlatformUnitID OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connUnitId of the connectivity - unit that contains this Platform table." - ::= { connUnitPlatformEntry 3 } - - connUnitPlatformName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The platform name. May be either a - readable string or a unique ID format - as specified in the FC-GS-4 draft - standard." - ::= { connUnitPlatformEntry 4 } - - connUnitPlatformType OBJECT-TYPE - SYNTAX FcUnitType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The platform type." - ::= { connUnitPlatformEntry 6 } - - - connUnitPlatformLabel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An administratively assigned symbolic - name for the platform. The Platform - Label shall only contain print-able - ASCII characters." - ::= { connUnitPlatformEntry 7 } - - connUnitPlatformDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A textual description of the platform. - This value should include the full name - and version identification of - the platform's hardware type and - software operating system. The - Platform Description shall only contain - printable ASCII characters." - ::= { connUnitPlatformEntry 8 } - - connUnitPlatformLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical location of the platform - (e.g., telephone closet, 3rd floor). The - Platform Location shall only - contain printable ASCII characters." - ::= { connUnitPlatformEntry 9 } - - connUnitPlatformManagementUrl OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Primary management URL for the - platform. If the platform registers - more than one URL, then this URL is - equal to the first in the list." - ::= { connUnitPlatformEntry 10 } - - connUnitPlatformNumNodes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of nodes contained in the - platform." - ::= { connUnitPlatformEntry 11 } - - - connUnitPlatformNodeName OBJECT-TYPE - SYNTAX FcGlobalId - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name (WWN - world wide name) - of the node contained by the platform." - ::= { connUnitPlatformEntry 12 } - - - --- SNMP trap registration group - - trapMaxClients OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of SNMP trap recipients - supported by the connectivity unit." - ::= { trapReg 1 } - - trapClientCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current number of rows in the trap table." - ::= { trapReg 2 } - - trapRegTable OBJECT-TYPE - SYNTAX SEQUENCE OF TrapRegEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table containing a row for each IP address/port - number that traps will be sent to." - ::= { trapReg 3 } - - trapRegEntry OBJECT-TYPE - SYNTAX TrapRegEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Ip/Port pair for a specific client." - INDEX { trapRegIpAddress, - trapRegPort } - ::= { trapRegTable 1 } - - TrapRegEntry ::= - SEQUENCE { - trapRegIpAddress - IpAddress, - trapRegPort - INTEGER (1..2147483647), - trapRegFilter - FcEventSeverity, - trapRegRowState - INTEGER - } - - trapRegIpAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Ip address of a client registered for - traps." - ::= { trapRegEntry 1 } - - trapRegPort OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UDP port to send traps to for this host. - Normally this would be the standard trap port - (162). This object is an index and must be - specified to create a row in this table." - ::= { trapRegEntry 2 } - - trapRegFilter OBJECT-TYPE - SYNTAX FcEventSeverity - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This value defines the trap severity - filter for this trap host. The connUnit will send - traps to this host that have a severity level - less than or equal to this value. - The default value of this object is 'warning'." - ::= { trapRegEntry 3} - - trapRegRowState OBJECT-TYPE - SYNTAX INTEGER { - rowDestroy(1), -- Remove row from table. - rowInactive(2), -- Row exists, but TRAPs disabled - rowActive(3) -- Row exists and is enabled for - -- sending traps - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Specifies the state of the row. - rowDestroy - READ: Can never happen. - WRITE: Remove this row from the table. - rowInactive - READ: Indicates that this row does exist, but - that traps are not enabled to be sent to the - target. - WRITE: If the row does not exist, and the agent - allows writes to the trap table, then a new - row is created. The values of the optional - columns will be set to default values. Traps are - not enabled to be sent to the target. If the row - already existed, then traps are disabled from being - sent to the target. - rowActive - READ: Indicates that this row exists, and that traps - are enabled to be sent to the target. - WRITE: If the row does not exist, and the agent - allows writes to the trap table, then a new row is - created. The values of the optional columns will be - set to default values. Traps are enabled to be sent - to the target. If the row already exists, then traps - are enabled to be sent to the target. - - A value of rowActive or rowInactive must be specified to - create a row in the table." - ::= { trapRegEntry 4} - - --- Related traps - - connUnitStatusChange TRAP-TYPE - ENTERPRISE fcmgmt - VARIABLES { connUnitStatus, connUnitState } - DESCRIPTION - "The overall status of the connectivity unit has - changed. - Recommended severity level (for filtering): alert" - ::= 1 - - -- connUnitAddedTrap , 2, no longer used - - connUnitDeletedTrap TRAP-TYPE - ENTERPRISE fcmgmt - VARIABLES { connUnitId } - DESCRIPTION - "A connUnit has been deleted from this agent. - Recommended severity level (for filtering): warning" - ::= 3 - - connUnitEventTrap TRAP-TYPE - ENTERPRISE fcmgmt - VARIABLES { connUnitEventId, - connUnitEventType, - connUnitEventObject, - connUnitEventDescr } - DESCRIPTION - "An event has been generated by the - connectivity unit. - Recommended severity level (for filtering): info" - ::= 4 - - connUnitSensorStatusChange TRAP-TYPE - ENTERPRISE fcmgmt - VARIABLES { connUnitSensorStatus } - DESCRIPTION - "The overall status of the connectivity unit has - changed. - Recommended severity level (for filtering): alert" - ::= 5 - - connUnitPortStatusChange TRAP-TYPE - ENTERPRISE fcmgmt - VARIABLES { connUnitPortStatus, connUnitPortState } - DESCRIPTION - "The overall status of the connectivity unit has - changed. - Recommended severity level (for filtering): alert" - ::= 6 - -END diff --git a/mibs/orig/FIBRE-CHANNEL-FE-MIB b/mibs/orig/FIBRE-CHANNEL-FE-MIB deleted file mode 100644 index dd4e725..0000000 --- a/mibs/orig/FIBRE-CHANNEL-FE-MIB +++ /dev/null @@ -1,1795 +0,0 @@ -FIBRE-CHANNEL-FE-MIB DEFINITIONS ::= BEGIN - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, - Unsigned32, Counter32, Gauge32, Integer32, mib-2 - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, TruthValue, TimeStamp - FROM SNMPv2-TC - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB -- rfc2571 - MODULE-COMPLIANCE, OBJECT-GROUP - FROM SNMPv2-CONF; - - fcFeMIB MODULE-IDENTITY - LAST-UPDATED "200005180000Z" - ORGANIZATION "IETF IPFC Working Group" - CONTACT-INFO "Kha Sin Teow - Brocade Communications Systems, - 1901 Guadalupe Parkway, - San Jose, CA 95131 - U.S.A - Tel: +1 408 487 8180 - Fax: +1 408 487 8190 - Email: khasin@Brocade.COM - - WG Mailing list:ipfc@standards.gadzoox.com - To Subscribe: ipfc-request@standards.gadzoox.com - In Body: subscribe" - - DESCRIPTION "The MIB module for Fibre Channel Fabric Element." - REVISION "200005180000Z" - DESCRIPTION "Initial revision, published as RFC 2837." - ::= { mib-2 75 } - - fcFeMIBObjects OBJECT IDENTIFIER ::= { fcFeMIB 1 } - - -- Note: - -- fcFeMIBConformance OBJECT IDENTIFIER ::= { fcFeMIB 2 } - -- see at the end of the module - - -- Groups under fcFeMIBObjects - - fcFeConfig OBJECT IDENTIFIER ::= { fcFeMIBObjects 1 } - fcFeStatus OBJECT IDENTIFIER ::= { fcFeMIBObjects 2 } - fcFeError OBJECT IDENTIFIER ::= { fcFeMIBObjects 3 } - fcFeAccounting OBJECT IDENTIFIER ::= { fcFeMIBObjects 4 } - fcFeCapabilities OBJECT IDENTIFIER ::= { fcFeMIBObjects 5 } - - -- Textual Conventions - MilliSeconds ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents time unit value in milliseconds." - SYNTAX Unsigned32 - - MicroSeconds ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents time unit value in microseconds." - SYNTAX Unsigned32 - - FcNameId ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the Worldwide Name associated with - a Fibre Channel (FC) entity." - SYNTAX OCTET STRING (SIZE (8)) - - FcAddressId ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents Fibre Channel Address ID, a 24-bit - value unique within the address space of a Fabric." - SYNTAX OCTET STRING (SIZE (3)) - - FcRxDataFieldSize ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the receive data field size of an - NxPort or FxPort." - SYNTAX Integer32 (128..2112) - - FcBbCredit ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the buffer-to-buffer credit of an - NxPort or FxPort." - SYNTAX Integer32 (0..32767) - - FcphVersion ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the version of FC-PH supported by an - NxPort or FxPort." - SYNTAX Integer32 (0..255) - - FcStackedConnMode ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents an enumerated value used to indicate - the Class 1 Stacked Connect Mode supported by - an NxPort or FxPort." - SYNTAX INTEGER { - none(1), - transparent(2), - lockedDown(3) - } - - FcCosCap ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the class of service capability of an - NxPort or FxPort." - SYNTAX BITS { classF(0), class1(1), class2(2), class3(3), - class4(4), class5(5), class6(6) } - - FcFeModuleCapacity ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the maximum number of modules within - a Fabric Element." - SYNTAX Unsigned32 - - FcFeFxPortCapacity ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the maximum number of FxPorts within - a module." - SYNTAX Unsigned32 - - FcFeModuleIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the module index within a conceptual table." - SYNTAX Unsigned32 - - FcFeFxPortIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the FxPort index within a conceptual table." - SYNTAX Unsigned32 - - FcFeNxPortIndex ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the NxPort index within a conceptual table." - SYNTAX Integer32 (1..126) - - FcBbCreditModel ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the BB_Credit model of an FxPort." - SYNTAX INTEGER { regular(1), alternate (2) } - - -- The Configuration group - - -- This group consists of scalar objects and tables. - -- It contains the configuration and service parameters - -- of the Fabric Element and the FxPorts. - -- The group represents a set of parameters associated with - -- the Fabric Element or an FxPort to support its NxPorts. - - fcFeFabricName OBJECT-TYPE - SYNTAX FcNameId - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Name_Identifier of the Fabric to which this Fabric - Element belongs." - ::= { fcFeConfig 1 } - - fcFeElementName OBJECT-TYPE - SYNTAX FcNameId - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Name_Identifier of the Fabric Element." - ::= { fcFeConfig 2 } - - fcFeModuleCapacity OBJECT-TYPE - SYNTAX FcFeModuleCapacity - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of modules in the Fabric Element, - regardless of their current state." - ::= { fcFeConfig 3 } - - -- The Module Table. - -- This table contains one entry for each module, - -- information of the modules. - - fcFeModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFeModuleEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each module in the - Fabric Element, information of the modules." - ::= { fcFeConfig 4 } - - fcFeModuleEntry OBJECT-TYPE - SYNTAX FcFeModuleEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing the configuration parameters of a - module." - INDEX { fcFeModuleIndex } - ::= { fcFeModuleTable 1 } - - - FcFeModuleEntry ::= - SEQUENCE { - fcFeModuleIndex - FcFeModuleIndex, - fcFeModuleDescr - SnmpAdminString, - fcFeModuleObjectID - OBJECT IDENTIFIER, - fcFeModuleOperStatus - INTEGER, - fcFeModuleLastChange - TimeStamp, - fcFeModuleFxPortCapacity - FcFeFxPortCapacity, - fcFeModuleName - FcNameId - } - - fcFeModuleIndex OBJECT-TYPE - SYNTAX FcFeModuleIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object identifies the module within the Fabric Element - for which this entry contains information. This value is - never greater than fcFeModuleCapacity." - ::= { fcFeModuleEntry 1 } - - fcFeModuleDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the module. This value should - include the full name and version identification of the - module." - ::= { fcFeModuleEntry 2 } - - fcFeModuleObjectID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor's authoritative identification of the module. - This value may be allocated within the SMI enterprises - subtree (1.3.6.1.4.1) and provides a straight-forward and - unambiguous means for determining what kind of module is - being managed. - - For example, this object could take the value - 1.3.6.1.4.1.99649.3.9 if vendor 'Neufe Inc.' was assigned - the subtree 1.3.6.1.4.1.99649, and had assigned the - identifier 1.3.6.1.4.1.99649.3.9 to its 'FeFiFo-16 - PlugInCard.'" - ::= { fcFeModuleEntry 3 } - - fcFeModuleOperStatus OBJECT-TYPE - SYNTAX INTEGER { - online (1), -- functional - offline (2), -- not available - testing (3), -- under testing - faulty (4) -- defective - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the operational status of the module: - online(1) the module is functioning properly; - offline(2) the module is not available; - testing(3) the module is under testing; and - faulty(4) the module is defective in some way." - ::= { fcFeModuleEntry 4 } - - fcFeModuleLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the value of sysUpTime when the module - entered its current operational status. A value of zero - indicates that the operational status of the module has not - changed since the agent last restarted." - ::= { fcFeModuleEntry 5 } - - fcFeModuleFxPortCapacity OBJECT-TYPE - SYNTAX FcFeFxPortCapacity - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of FxPort that can be contained within the - module. Within each module, the ports are uniquely numbered - in the range from 1 to fcFeModuleFxPortCapacity inclusive. - However, the numbers are not required to be contiguous." - ::= { fcFeModuleEntry 6 } - - fcFeModuleName OBJECT-TYPE - SYNTAX FcNameId - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Name_Identifier of the module." - ::= { fcFeModuleEntry 7 } - - -- the FxPort Configuration Table. - -- This table contains, one entry for each FxPort, - -- configuration parameters of the ports. - - fcFxPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort in the - Fabric Element, configuration and service parameters of the - FxPorts." - ::= { fcFeConfig 5 } - - fcFxPortEntry OBJECT-TYPE - SYNTAX FcFxPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing the configuration and service parameters - of a FxPort." - INDEX { fcFeModuleIndex, fcFxPortIndex } - ::= { fcFxPortTable 1 } - - - FcFxPortEntry ::= - SEQUENCE { - fcFxPortIndex - FcFeFxPortIndex, - fcFxPortName - FcNameId, - -- FxPort common service parameters - fcFxPortFcphVersionHigh - FcphVersion, - fcFxPortFcphVersionLow - FcphVersion, - fcFxPortBbCredit - FcBbCredit, - fcFxPortRxBufSize - FcRxDataFieldSize, - fcFxPortRatov - MilliSeconds, - fcFxPortEdtov - MilliSeconds, - -- FxPort class service parameters - fcFxPortCosSupported - FcCosCap, - fcFxPortIntermixSupported - TruthValue, - fcFxPortStackedConnMode - FcStackedConnMode, - fcFxPortClass2SeqDeliv - TruthValue, - fcFxPortClass3SeqDeliv - TruthValue, - -- other configuration parameters - fcFxPortHoldTime - MicroSeconds - } - - fcFxPortIndex OBJECT-TYPE - SYNTAX FcFeFxPortIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object identifies the FxPort within the module. This - number ranges from 1 to the value of fcFeModulePortCapacity - for the associated module. The value remains constant for - the identified FxPort until the module is re-initialized." - ::= { fcFxPortEntry 1 } - - fcFxPortName OBJECT-TYPE - SYNTAX FcNameId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The World_wide Name of this FxPort. Each FxPort has a - unique Port World_wide Name within the Fabric." - ::= { fcFxPortEntry 2 } - - -- FxPort common service parameters - - fcFxPortFcphVersionHigh OBJECT-TYPE - SYNTAX FcphVersion - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The highest or most recent version of FC-PH that the FxPort - is configured to support." - ::= { fcFxPortEntry 3 } - - fcFxPortFcphVersionLow OBJECT-TYPE - SYNTAX FcphVersion - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The lowest or earliest version of FC-PH that the FxPort is - configured to support." - ::= { fcFxPortEntry 4 } - - fcFxPortBbCredit OBJECT-TYPE - SYNTAX FcBbCredit - UNITS "buffers" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of receive buffers available for holding - Class 1 connect-request, Class 2 or 3 frames from the - attached NxPort. It is for buffer-to-buffer flow control - in the direction from the attached NxPort (if applicable) - to FxPort." - ::= { fcFxPortEntry 5 } - - fcFxPortRxBufSize OBJECT-TYPE - SYNTAX FcRxDataFieldSize - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The largest Data_Field Size (in octets) for an FT_1 frame - that can be received by the FxPort." - ::= { fcFxPortEntry 6 } - - fcFxPortRatov OBJECT-TYPE - SYNTAX MilliSeconds - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Resource_Allocation_Timeout Value configured for the - FxPort. This is used as the timeout value for determining - when to reuse an NxPort resource such as a - Recovery_Qualifier. It represents E_D_TOV (see next - object) plus twice the maximum time that a frame may be - delayed within the Fabric and still be delivered." - ::= { fcFxPortEntry 7 } - - fcFxPortEdtov OBJECT-TYPE - SYNTAX MilliSeconds - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The E_D_TOV value configured for the FxPort. The - Error_Detect_Timeout Value is used as the timeout value for - detecting an error condition." - ::= { fcFxPortEntry 8 } - - - -- FxPort class service parameters - - fcFxPortCosSupported OBJECT-TYPE - SYNTAX FcCosCap - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A value indicating the set of Classes of Service supported - by the FxPort." - ::= { fcFxPortEntry 9 } - - fcFxPortIntermixSupported OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether or not the FxPort supports an - Intermixed Dedicated Connection." - ::= { fcFxPortEntry 10 } - - fcFxPortStackedConnMode OBJECT-TYPE - SYNTAX FcStackedConnMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A value indicating the mode of Stacked Connect supported by - the FxPort." - ::= { fcFxPortEntry 11 } - - fcFxPortClass2SeqDeliv OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether or not Class 2 Sequential - Delivery is supported by the FxPort." - ::= { fcFxPortEntry 12 } - - fcFxPortClass3SeqDeliv OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether or not Class 3 Sequential - Delivery is supported by the FxPort." - ::= { fcFxPortEntry 13 } - - - -- other FxPort parameters - - fcFxPortHoldTime OBJECT-TYPE - SYNTAX MicroSeconds - UNITS "microseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum time (in microseconds) that the FxPort shall - hold a frame before discarding the frame if it is unable to - deliver the frame. The value 0 means that the FxPort does - not support this parameter." - ::= { fcFxPortEntry 14 } - - - -- the Status group - - -- This group consists of tables that contains operational - -- status and established service parameters for the Fabric - -- Element and the attached NxPorts. - - -- The FxPort Status table - -- This table contains, one entry for each FxPort, - -- the operational status and parameters of the FxPorts. - - fcFxPortStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort in the - Fabric Element, operational status and parameters of the - FxPorts." - ::= { fcFeStatus 1 } - - fcFxPortStatusEntry OBJECT-TYPE - SYNTAX FcFxPortStatusEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing operational status and parameters of a - FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortStatusTable 1 } - - - FcFxPortStatusEntry ::= - SEQUENCE { - fcFxPortID - FcAddressId, - fcFxPortBbCreditAvailable - Gauge32, - fcFxPortOperMode - INTEGER, - fcFxPortAdminMode - INTEGER - } - - fcFxPortID OBJECT-TYPE - SYNTAX FcAddressId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address identifier by which this FxPort is identified - within the Fabric. The FxPort may assign its address - identifier to its attached NxPort(s) during Fabric Login." - ::= { fcFxPortStatusEntry 1 } - - fcFxPortBbCreditAvailable OBJECT-TYPE - SYNTAX Gauge32 - UNITS "buffers" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of buffers currently available for receiving - frames from the attached port in the buffer-to-buffer flow - control. The value should be less than or equal to - fcFxPortBbCredit." - ::= { fcFxPortStatusEntry 2 } - - fcFxPortOperMode OBJECT-TYPE - SYNTAX INTEGER { unknown(1), fPort(2), flPort(3) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current operational mode of the FxPort." - ::= { fcFxPortStatusEntry 3 } - - fcFxPortAdminMode OBJECT-TYPE - SYNTAX INTEGER { fPort(2), flPort(3) } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The desired operational mode of the FxPort." - ::= { fcFxPortStatusEntry 4 } - - - -- the FxPort Physical Level table - -- This table contains, one entry for each FxPort in the - -- Fabric Element, the physical level status and parameters - -- of the FxPorts. - - fcFxPortPhysTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortPhysEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort in the - Fabric Element, physical level status and parameters of the - FxPorts." - ::= { fcFeStatus 2 } - - fcFxPortPhysEntry OBJECT-TYPE - SYNTAX FcFxPortPhysEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing physical level status and parameters of - a FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortPhysTable 1 } - - FcFxPortPhysEntry ::= - SEQUENCE { - fcFxPortPhysAdminStatus - INTEGER, - fcFxPortPhysOperStatus - INTEGER, - fcFxPortPhysLastChange - TimeStamp, - fcFxPortPhysRttov - MilliSeconds - } - - fcFxPortPhysAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - online (1), -- place port online - offline (2), -- take port offline - testing (3) -- initiate test procedures - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The desired state of the FxPort. A management station may - place the FxPort in a desired state by setting this object - accordingly. The testing(3) state indicates that no - operational frames can be passed. When a Fabric Element - initializes, all FxPorts start with fcFxPortPhysAdminStatus - in the offline(2) state. As the result of either explicit - management action or per configuration information - accessible by the Fabric Element, fcFxPortPhysAdminStatus - is then changed to either the online(1) or testing(3) - states, or remains in the offline state." - ::= { fcFxPortPhysEntry 1 } - - fcFxPortPhysOperStatus OBJECT-TYPE - SYNTAX INTEGER { - online (1), -- Login may proceed - offline (2), -- Login cannot proceed - testing (3), -- port is under test - linkFailure (4) -- failure after online/testing - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current operational status of the FxPort. The - testing(3) indicates that no operational frames can be - passed. If fcFxPortPhysAdminStatus is offline(2) then - fcFxPortPhysOperStatus should be offline(2). If - fcFxPortPhysAdminStatus is changed to online(1) then - fcFxPortPhysOperStatus should change to online(1) if the - FxPort is ready to accept Fabric Login request from the - attached NxPort; it should proceed and remain in the link- - failure(4) state if and only if there is a fault that - prevents it from going to the online(1) state." - ::= { fcFxPortPhysEntry 2 } - - fcFxPortPhysLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time the FxPort entered its - current operational status. A value of zero indicates that - the FxPort's operational status has not changed since the - agent last restarted." - ::= { fcFxPortPhysEntry 3 } - - fcFxPortPhysRttov OBJECT-TYPE - SYNTAX MilliSeconds - UNITS "milliseconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Receiver_Transmitter_Timeout value of the FxPort. This - is used by the receiver logic to detect Loss of - Synchronization." - ::= { fcFxPortPhysEntry 4 } - - -- The FxPort Fabric Login table - -- - -- This table contains, one entry for each FxPort in the - -- Fabric Element, the Service Parameters that have been - -- established from the most recent Fabric Login, - -- implicit or explicit. - - fcFxLoginTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxLoginEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each NxPort attached - to a particular FxPort in the Fabric Element, services - parameters established from the most recent Fabric Login, - explicit or implicit. Note that an FxPort may have one or - more NxPort attached to it." - ::= { fcFeStatus 3 } - - - fcFxLoginEntry OBJECT-TYPE - SYNTAX FcFxLoginEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing service parameters established from a - successful Fabric Login." - INDEX { fcFeModuleIndex, fcFxPortIndex, fcFxPortNxLoginIndex } - ::= { fcFxLoginTable 1 } - - FcFxLoginEntry ::= - SEQUENCE { - fcFxPortNxLoginIndex - FcFeNxPortIndex, - fcFxPortFcphVersionAgreed - FcphVersion, - fcFxPortNxPortBbCredit - FcBbCredit, - fcFxPortNxPortRxDataFieldSize - FcRxDataFieldSize, - fcFxPortCosSuppAgreed - FcCosCap, - fcFxPortIntermixSuppAgreed - TruthValue, - fcFxPortStackedConnModeAgreed - FcStackedConnMode, - fcFxPortClass2SeqDelivAgreed - TruthValue, - fcFxPortClass3SeqDelivAgreed - TruthValue, - -- - fcFxPortNxPortName - FcNameId, - fcFxPortConnectedNxPort - FcAddressId, - fcFxPortBbCreditModel - FcBbCreditModel - } - - fcFxPortNxLoginIndex OBJECT-TYPE - SYNTAX FcFeNxPortIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The object identifies the associated NxPort in the - attachment for which the entry contains information." - ::= { fcFxLoginEntry 1 } - - fcFxPortFcphVersionAgreed OBJECT-TYPE - SYNTAX FcphVersion - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The version of FC-PH that the FxPort has agreed to support - from the Fabric Login" - ::= { fcFxLoginEntry 2 } - - fcFxPortNxPortBbCredit OBJECT-TYPE - SYNTAX FcBbCredit - UNITS "buffers" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of buffers available for holding Class 1 - connect-request, Class 2 or Class 3 frames to be - transmitted to the attached NxPort. It is for buffer-to- - buffer flow control in the direction from FxPort to NxPort. - The buffer-to-buffer flow control mechanism is indicated in - the respective fcFxPortBbCreditModel." - ::= { fcFxLoginEntry 3 } - - fcFxPortNxPortRxDataFieldSize OBJECT-TYPE - SYNTAX FcRxDataFieldSize - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Receive Data Field Size of the attached NxPort. This - object specifies the largest Data Field Size for an FT_1 - frame that can be received by the NxPort." - ::= { fcFxLoginEntry 4 } - - fcFxPortCosSuppAgreed OBJECT-TYPE - SYNTAX FcCosCap - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A variable indicating that the attached NxPort has - requested the FxPort for the support of classes of services - and the FxPort has granted the request." - ::= { fcFxLoginEntry 5 } - - fcFxPortIntermixSuppAgreed OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A variable indicating that the attached NxPort has - requested the FxPort for the support of Intermix and the - FxPort has granted the request. This flag is only valid if - Class 1 service is supported." - ::= { fcFxLoginEntry 6 } - - fcFxPortStackedConnModeAgreed OBJECT-TYPE - SYNTAX FcStackedConnMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A variable indicating whether the FxPort has agreed to - support stacked connect from the Fabric Login. This is only - meaningful if Class 1 service has been agreed." - ::= { fcFxLoginEntry 7 } - - fcFxPortClass2SeqDelivAgreed OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A variable indicating whether the FxPort has agreed to - support Class 2 sequential delivery from the Fabric Login. - This is only meaningful if Class 2 service has been - agreed." - ::= { fcFxLoginEntry 8 } - - fcFxPortClass3SeqDelivAgreed OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether the FxPort has agreed to support - Class 3 sequential delivery from the Fabric Login. This is - only meaningful if Class 3 service has been agreed." - ::= { fcFxLoginEntry 9 } - - fcFxPortNxPortName OBJECT-TYPE - SYNTAX FcNameId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port name of the attached NxPort." - ::= { fcFxLoginEntry 10 } - - fcFxPortConnectedNxPort OBJECT-TYPE - SYNTAX FcAddressId - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address identifier of the destination NxPort with which - this FxPort is currently engaged in a either a Class 1 or - loop connection. If this FxPort is not engaged in a - connection, then the value of this object is '000000'H." - ::= { fcFxLoginEntry 11 } - - fcFxPortBbCreditModel OBJECT-TYPE - SYNTAX FcBbCreditModel - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object identifies the BB_Credit model used by the - FxPort." - ::= { fcFxLoginEntry 12 } - - - -- the Error group - -- This group consists of tables that contain information about - -- the various types of errors detected. The management station - -- may use the information in this group to determine the - -- quality of the link between the FxPort and its attached NxPort. - - -- the FxPort Error table - -- This table contains, one entry for each FxPort in the Fabric - -- Element, counters recording numbers of errors detected - -- since the management agent re-initialized. - -- The first 6 columnar objects after the port index corresponds - -- to the counters in the Link Error Status Block. - - fcFxPortErrorTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortErrorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort, counters - that record the numbers of errors detected." - ::= { fcFeError 1 } - - fcFxPortErrorEntry OBJECT-TYPE - SYNTAX FcFxPortErrorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing error counters of a FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortErrorTable 1 } - - - FcFxPortErrorEntry ::= - SEQUENCE { - fcFxPortLinkFailures - Counter32, - fcFxPortSyncLosses - Counter32, - fcFxPortSigLosses - Counter32, - fcFxPortPrimSeqProtoErrors - Counter32, - fcFxPortInvalidTxWords - Counter32, - fcFxPortInvalidCrcs - Counter32, - fcFxPortDelimiterErrors - Counter32, - fcFxPortAddressIdErrors - Counter32, - fcFxPortLinkResetIns - Counter32, - fcFxPortLinkResetOuts - Counter32, - fcFxPortOlsIns - Counter32, - fcFxPortOlsOuts - Counter32 - } - - fcFxPortLinkFailures OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of link failures detected by this FxPort." - ::= { fcFxPortErrorEntry 1 } - - fcFxPortSyncLosses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of loss of synchronization detected by the - FxPort." - ::= { fcFxPortErrorEntry 2 } - - fcFxPortSigLosses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of loss of signal detected by the FxPort." - ::= { fcFxPortErrorEntry 3 } - - fcFxPortPrimSeqProtoErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of primitive sequence protocol errors detected - by the FxPort." - ::= { fcFxPortErrorEntry 4 } - - fcFxPortInvalidTxWords OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of invalid transmission word detected by the - FxPort." - ::= { fcFxPortErrorEntry 5 } - - fcFxPortInvalidCrcs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of invalid CRC detected by this FxPort." - ::= { fcFxPortErrorEntry 6 } - - fcFxPortDelimiterErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Delimiter Errors detected by this FxPort." - ::= { fcFxPortErrorEntry 7 } - - fcFxPortAddressIdErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of address identifier errors detected by this - FxPort." - ::= { fcFxPortErrorEntry 8 } - - fcFxPortLinkResetIns OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Link Reset Protocol received by this FxPort - from the attached NxPort." - ::= { fcFxPortErrorEntry 9 } - - fcFxPortLinkResetOuts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Link Reset Protocol issued by this FxPort to - the attached NxPort." - ::= { fcFxPortErrorEntry 10 } - - fcFxPortOlsIns OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Offline Sequence received by this FxPort." - ::= { fcFxPortErrorEntry 11 } - - fcFxPortOlsOuts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Offline Sequence issued by this FxPort." - ::= { fcFxPortErrorEntry 12 } - - - - -- Accounting Groups: - -- (1) Class 1 Accounting Group, - -- (2) Class 2 Accounting Group, and - -- (3) Class 3 Accounting Group. - -- Each group consists of a table that contains accounting - -- information for the FxPorts in the Fabric Element. - - -- the Class 1 Accounting table - -- This table contains, one entry for each FxPort in the Fabric - -- Element, Counter32s for certain types of events occurred in the - -- the FxPorts since the the management agent has re-initialized. - - fcFxPortC1AccountingTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortC1AccountingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort in the - Fabric Element, Class 1 accounting information recorded - since the management agent has re-initialized." - ::= { fcFeAccounting 1 } - - fcFxPortC1AccountingEntry OBJECT-TYPE - SYNTAX FcFxPortC1AccountingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing Class 1 accounting information for each - FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortC1AccountingTable 1 } - - - FcFxPortC1AccountingEntry ::= - SEQUENCE { - fcFxPortC1InFrames - Counter32, - fcFxPortC1OutFrames - Counter32, - fcFxPortC1InOctets - Counter32, - fcFxPortC1OutOctets - Counter32, - fcFxPortC1Discards - Counter32, - fcFxPortC1FbsyFrames - Counter32, - fcFxPortC1FrjtFrames - Counter32, - fcFxPortC1InConnections - Counter32, - fcFxPortC1OutConnections - Counter32, - fcFxPortC1ConnTime - MilliSeconds - } - - fcFxPortC1InFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 frames (other than Class 1 connect- - request) received by this FxPort from its attached NxPort." - ::= { fcFxPortC1AccountingEntry 1 } - - fcFxPortC1OutFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 frames (other than Class 1 connect- - request) delivered through this FxPort to its attached - NxPort." - ::= { fcFxPortC1AccountingEntry 2 } - - fcFxPortC1InOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 frame octets, including the frame - delimiters, received by this FxPort from its attached - NxPort." - ::= { fcFxPortC1AccountingEntry 3 } - - fcFxPortC1OutOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 frame octets, including the frame - delimiters, delivered through this FxPort its attached - NxPort." - ::= { fcFxPortC1AccountingEntry 4 } - - fcFxPortC1Discards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 frames discarded by this FxPort." - ::= { fcFxPortC1AccountingEntry 5 } - - fcFxPortC1FbsyFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of F_BSY frames generated by this FxPort against - Class 1 connect-request." - ::= { fcFxPortC1AccountingEntry 6 } - - fcFxPortC1FrjtFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of F_RJT frames generated by this FxPort against - Class 1 connect-request." - ::= { fcFxPortC1AccountingEntry 7 } - - fcFxPortC1InConnections OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 connections successfully established - in which the attached NxPort is the source of the connect- - request." - ::= { fcFxPortC1AccountingEntry 8 } - - fcFxPortC1OutConnections OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 1 connections successfully established - in which the attached NxPort is the destination of the - connect-request." - ::= { fcFxPortC1AccountingEntry 9 } - - fcFxPortC1ConnTime OBJECT-TYPE - SYNTAX MilliSeconds - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The cumulative time that this FxPort has been engaged in - Class 1 connection. The amount of time is counted from - after a connect-request has been accepted until the - connection is disengaged, either by an EOFdt or Link - Reset." - ::= { fcFxPortC1AccountingEntry 10 } - - - -- the Class 2 Accounting table - -- This table contains, one entry for each FxPort in the Fabric - -- Element, Counter32s for certain types of events occurred in the - -- the FxPorts since the the management agent has re-initialized. - - - fcFxPortC2AccountingTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortC2AccountingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort in the - Fabric Element, Class 2 accounting information recorded - since the management agent has re-initialized." - ::= { fcFeAccounting 2 } - - fcFxPortC2AccountingEntry OBJECT-TYPE - SYNTAX FcFxPortC2AccountingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing Class 2 accounting information for each - FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortC2AccountingTable 1 } - - FcFxPortC2AccountingEntry ::= - SEQUENCE { - fcFxPortC2InFrames - Counter32, - fcFxPortC2OutFrames - Counter32, - fcFxPortC2InOctets - Counter32, - fcFxPortC2OutOctets - Counter32, - fcFxPortC2Discards - Counter32, - fcFxPortC2FbsyFrames - Counter32, - fcFxPortC2FrjtFrames - Counter32 - } - - fcFxPortC2InFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 2 frames received by this FxPort from - its attached NxPort." - ::= { fcFxPortC2AccountingEntry 1 } - - fcFxPortC2OutFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 2 frames delivered through this FxPort - to its attached NxPort." - ::= { fcFxPortC2AccountingEntry 2 } - - fcFxPortC2InOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 2 frame octets, including the frame - delimiters, received by this FxPort from its attached - NxPort." - ::= { fcFxPortC2AccountingEntry 3 } - - fcFxPortC2OutOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 2 frame octets, including the frame - delimiters, delivered through this FxPort to its attached - NxPort." - ::= { fcFxPortC2AccountingEntry 4 } - - fcFxPortC2Discards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 2 frames discarded by this FxPort." - ::= { fcFxPortC2AccountingEntry 5 } - - fcFxPortC2FbsyFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of F_BSY frames generated by this FxPort against - Class 2 frames." - ::= { fcFxPortC2AccountingEntry 6 } - - fcFxPortC2FrjtFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of F_RJT frames generated by this FxPort against - Class 2 frames." - ::= { fcFxPortC2AccountingEntry 7 } - - -- the Class 3 Accounting Group - -- This table contains, one entry for each FxPort in the Fabric - -- Element, Counter32s for certain types of events occurred in the - -- the FxPorts since the management agent has re-initialized. - - fcFxPortC3AccountingTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortC3AccountingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort in the - Fabric Element, Class 3 accounting information recorded - since the management agent has re-initialized." - ::= { fcFeAccounting 3 } - - fcFxPortC3AccountingEntry OBJECT-TYPE - SYNTAX FcFxPortC3AccountingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing Class 3 accounting information for each - FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortC3AccountingTable 1 } - - - FcFxPortC3AccountingEntry ::= - SEQUENCE { - fcFxPortC3InFrames - Counter32, - fcFxPortC3OutFrames - Counter32, - fcFxPortC3InOctets - Counter32, - fcFxPortC3OutOctets - Counter32, - fcFxPortC3Discards - Counter32 - } - - fcFxPortC3InFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 3 frames received by this FxPort from - its attached NxPort." - ::= { fcFxPortC3AccountingEntry 1 } - - fcFxPortC3OutFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 3 frames delivered through this FxPort - to its attached NxPort." - ::= { fcFxPortC3AccountingEntry 2 } - - fcFxPortC3InOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 3 frame octets, including the frame - delimiters, received by this FxPort from its attached - NxPort." - ::= { fcFxPortC3AccountingEntry 3 } - - fcFxPortC3OutOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 3 frame octets, including the frame - delimiters, delivered through this FxPort to its attached - NxPort." - ::= { fcFxPortC3AccountingEntry 4 } - - fcFxPortC3Discards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Class 3 frames discarded by this FxPort." - ::= { fcFxPortC3AccountingEntry 5 } - - - -- The Capability Group - consists of a table describing - -- information about what each FxPort is inherently capable - -- of operating or supporting. - -- A capability may be used, as expressed in its respective - -- object value in the Configuration group. - - fcFxPortCapTable OBJECT-TYPE - SYNTAX SEQUENCE OF FcFxPortCapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains, one entry for each FxPort, the - capabilities of the port within the Fabric Element." - ::= { fcFeCapabilities 1 } - - fcFxPortCapEntry OBJECT-TYPE - SYNTAX FcFxPortCapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing the Cap of a FxPort." - AUGMENTS { fcFxPortEntry } - ::= { fcFxPortCapTable 1 } - - - FcFxPortCapEntry ::= - SEQUENCE { - fcFxPortCapFcphVersionHigh - FcphVersion, - fcFxPortCapFcphVersionLow - FcphVersion, - fcFxPortCapBbCreditMax - FcBbCredit, - fcFxPortCapBbCreditMin - FcBbCredit, - fcFxPortCapRxDataFieldSizeMax - FcRxDataFieldSize, - fcFxPortCapRxDataFieldSizeMin - FcRxDataFieldSize, - fcFxPortCapCos - FcCosCap, - fcFxPortCapIntermix - TruthValue, - fcFxPortCapStackedConnMode - FcStackedConnMode, - fcFxPortCapClass2SeqDeliv - TruthValue, - fcFxPortCapClass3SeqDeliv - TruthValue, - fcFxPortCapHoldTimeMax - MicroSeconds, - fcFxPortCapHoldTimeMin - MicroSeconds - } - - fcFxPortCapFcphVersionHigh OBJECT-TYPE - SYNTAX FcphVersion - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The highest or most recent version of FC-PH that the FxPort - is capable of supporting." - ::= { fcFxPortCapEntry 1 } - - fcFxPortCapFcphVersionLow OBJECT-TYPE - SYNTAX FcphVersion - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The lowest or earliest version of FC-PH that the FxPort is - capable of supporting." - ::= { fcFxPortCapEntry 2 } - - fcFxPortCapBbCreditMax OBJECT-TYPE - SYNTAX FcBbCredit - UNITS "buffers" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of receive buffers available for holding - Class 1 connect-request, Class 2 or Class 3 frames from the - attached NxPort." - ::= { fcFxPortCapEntry 3 } - - fcFxPortCapBbCreditMin OBJECT-TYPE - SYNTAX FcBbCredit - UNITS "buffers" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum number of receive buffers available for holding - Class 1 connect-request, Class 2 or Class 3 frames from the - attached NxPort." - ::= { fcFxPortCapEntry 4 } - - fcFxPortCapRxDataFieldSizeMax OBJECT-TYPE - SYNTAX FcRxDataFieldSize - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum size in bytes of the Data Field in a frame that - the FxPort is capable of receiving from its attached - NxPort." - ::= { fcFxPortCapEntry 5 } - - fcFxPortCapRxDataFieldSizeMin OBJECT-TYPE - SYNTAX FcRxDataFieldSize - UNITS "bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum size in bytes of the Data Field in a frame that - the FxPort is capable of receiving from its attached - NxPort." - ::= { fcFxPortCapEntry 6 } - - fcFxPortCapCos OBJECT-TYPE - SYNTAX FcCosCap - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A value indicating the set of Classes of Service that the - FxPort is capable of supporting." - ::= { fcFxPortCapEntry 7 } - - fcFxPortCapIntermix OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether or not the FxPort is capable of - supporting the intermixing of Class 2 and Class 3 frames - during a Class 1 connection. This flag is only valid if the - port is capable of supporting Class 1 service." - ::= { fcFxPortCapEntry 8 } - - fcFxPortCapStackedConnMode OBJECT-TYPE - SYNTAX FcStackedConnMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A value indicating the mode of Stacked Connect request that - the FxPort is capable of supporting." - ::= { fcFxPortCapEntry 9 } - - fcFxPortCapClass2SeqDeliv OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether or not the FxPort is capable of - supporting Class 2 Sequential Delivery." - ::= { fcFxPortCapEntry 10 } - - fcFxPortCapClass3SeqDeliv OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether or not the FxPort is capable of - supporting Class 3 Sequential Delivery." - ::= { fcFxPortCapEntry 11 } - - fcFxPortCapHoldTimeMax OBJECT-TYPE - SYNTAX MicroSeconds - UNITS "microseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum holding time (in microseconds) that the FxPort - is capable of supporting." - ::= { fcFxPortCapEntry 12 } - - fcFxPortCapHoldTimeMin OBJECT-TYPE - SYNTAX MicroSeconds - UNITS "microseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum holding time (in microseconds) that the FxPort - is capable of supporting." - ::= { fcFxPortCapEntry 13 } - - -- conformance information - - fcFeMIBConformance OBJECT IDENTIFIER ::= { fcFeMIB 2 } - fcFeMIBCompliances OBJECT IDENTIFIER ::= { fcFeMIBConformance 1 } - fcFeMIBGroups OBJECT IDENTIFIER ::= { fcFeMIBConformance 2 } - - -- compliance statements - fcFeMIBMinimumCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The minimum compliance statement for SNMP entities - which implement the FIBRE-CHANNEL-FE-MIB." - MODULE -- this module - MANDATORY-GROUPS { fcFeConfigGroup, fcFeStatusGroup, - fcFeErrorGroup } - - OBJECT fcFeFabricName - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFeElementName - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFeModuleName - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortAdminMode - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortPhysAdminStatus - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortPhysRttov - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortBbCreditModel - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { fcFeMIBCompliances 1 } - - fcFeMIBFullCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The full compliance statement for SNMP entities - which implement the FIBRE-CHANNEL-FE-MIB." - MODULE -- this module - MANDATORY-GROUPS { fcFeConfigGroup, fcFeStatusGroup, - fcFeErrorGroup, fcFeCapabilitiesGroup } - - GROUP fcFeClass1AccountingGroup - DESCRIPTION - "This group is mandatory for all fibre channel fabric - elements which support class 1 frames." - - GROUP fcFeClass2AccountingGroup - DESCRIPTION - "This group is mandatory for all fibre channel fabric - elements which support class 2 frames." - - GROUP fcFeClass3AccountingGroup - DESCRIPTION - "This group is mandatory for all fibre channel fabric - elements which support class 3 frames." - - OBJECT fcFeFabricName - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFeElementName - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFeModuleName - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortAdminMode - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortPhysAdminStatus - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortPhysRttov - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT fcFxPortBbCreditModel - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - ::= { fcFeMIBCompliances 2 } - - -- units of conformance - fcFeConfigGroup OBJECT-GROUP - OBJECTS { fcFeFabricName, fcFeElementName, fcFeModuleCapacity, - fcFeModuleDescr, fcFeModuleObjectID, - fcFeModuleOperStatus, fcFeModuleLastChange, - fcFeModuleFxPortCapacity, fcFeModuleName, - fcFxPortName, fcFxPortFcphVersionHigh, - fcFxPortFcphVersionLow, fcFxPortBbCredit, - fcFxPortRxBufSize, fcFxPortRatov, fcFxPortEdtov, - fcFxPortCosSupported, fcFxPortIntermixSupported, - fcFxPortStackedConnMode, fcFxPortClass2SeqDeliv, - fcFxPortClass3SeqDeliv, fcFxPortHoldTime } - STATUS current - DESCRIPTION - "A collection of objects providing the configuration and service - parameters of the Fabric Element, the modules, and FxPorts." - ::= { fcFeMIBGroups 1 } - - fcFeStatusGroup OBJECT-GROUP - OBJECTS { fcFxPortID, fcFxPortBbCreditAvailable, - fcFxPortOperMode, fcFxPortAdminMode, - fcFxPortPhysAdminStatus, fcFxPortPhysOperStatus, - fcFxPortPhysLastChange, fcFxPortPhysRttov, - fcFxPortFcphVersionAgreed, fcFxPortNxPortBbCredit, - fcFxPortNxPortRxDataFieldSize, fcFxPortCosSuppAgreed, - fcFxPortIntermixSuppAgreed, - fcFxPortStackedConnModeAgreed, - fcFxPortClass2SeqDelivAgreed, - fcFxPortClass3SeqDelivAgreed, - fcFxPortNxPortName, fcFxPortConnectedNxPort, - fcFxPortBbCreditModel } - STATUS current - DESCRIPTION - "A collection of objects providing the operational status and - established service parameters for the Fabric Element and the - attached NxPorts." - ::= { fcFeMIBGroups 2 } - - fcFeErrorGroup OBJECT-GROUP - OBJECTS { fcFxPortLinkFailures, fcFxPortSyncLosses, - fcFxPortSigLosses, fcFxPortPrimSeqProtoErrors, - fcFxPortInvalidTxWords, fcFxPortInvalidCrcs, - fcFxPortDelimiterErrors, fcFxPortAddressIdErrors, - fcFxPortLinkResetIns, fcFxPortLinkResetOuts, - fcFxPortOlsIns, fcFxPortOlsOuts } - STATUS current - DESCRIPTION - "A collection of objects providing various error - statistics detected by the FxPorts." - ::= { fcFeMIBGroups 3 } - - fcFeClass1AccountingGroup OBJECT-GROUP - OBJECTS { fcFxPortC1InFrames, fcFxPortC1OutFrames, - fcFxPortC1InOctets, fcFxPortC1OutOctets, - fcFxPortC1Discards, fcFxPortC1FbsyFrames, - fcFxPortC1FrjtFrames, fcFxPortC1InConnections, - fcFxPortC1OutConnections, fcFxPortC1ConnTime - } - STATUS current - DESCRIPTION - "A collection of objects providing various class 1 - performance statistics detected by the FxPorts." - ::= { fcFeMIBGroups 4 } - - fcFeClass2AccountingGroup OBJECT-GROUP - OBJECTS { fcFxPortC2InFrames, fcFxPortC2OutFrames, - fcFxPortC2InOctets, fcFxPortC2OutOctets, - fcFxPortC2Discards, fcFxPortC2FbsyFrames, - fcFxPortC2FrjtFrames - } - STATUS current - DESCRIPTION - "A collection of objects providing various class 2 - performance statistics detected by the FxPorts." - ::= { fcFeMIBGroups 5 } - - fcFeClass3AccountingGroup OBJECT-GROUP - OBJECTS { fcFxPortC3InFrames, fcFxPortC3OutFrames, - fcFxPortC3InOctets, fcFxPortC3OutOctets, - fcFxPortC3Discards - } - STATUS current - DESCRIPTION - "A collection of objects providing various class 3 - performance statistics detected by the FxPorts." - ::= { fcFeMIBGroups 6 } - - fcFeCapabilitiesGroup OBJECT-GROUP - OBJECTS { fcFxPortCapFcphVersionHigh, fcFxPortCapFcphVersionLow, - fcFxPortCapBbCreditMax, fcFxPortCapBbCreditMin, - fcFxPortCapRxDataFieldSizeMax, - fcFxPortCapRxDataFieldSizeMin, - fcFxPortCapCos, fcFxPortCapIntermix, - fcFxPortCapStackedConnMode, fcFxPortCapClass2SeqDeliv, - fcFxPortCapClass3SeqDeliv, fcFxPortCapHoldTimeMax, - fcFxPortCapHoldTimeMin - } - STATUS current - DESCRIPTION - "A collection of objects providing the inherent - capability of each FxPort within the Fabric Element." - ::= { fcFeMIBGroups 7 } - - - END \ No newline at end of file diff --git a/mibs/orig/HCNUM-TC b/mibs/orig/HCNUM-TC deleted file mode 100644 index 83f78d7..0000000 --- a/mibs/orig/HCNUM-TC +++ /dev/null @@ -1,141 +0,0 @@ --- ***************************************************************** --- HCNUM-TC.my: Textual conventions for High Capacity Data Types --- --- December 2000 --- --- Copyright (c) 2000-2001 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - - HCNUM-TC DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, mib-2, Counter64 - FROM SNMPv2-SMI - TEXTUAL-CONVENTION - FROM SNMPv2-TC; - - hcnumTC MODULE-IDENTITY - LAST-UPDATED "200006080000Z" - - - - - - ORGANIZATION "IETF OPS Area" - CONTACT-INFO - " E-mail: mibs@ops.ietf.org - Subscribe: majordomo@psg.com - with msg body: subscribe mibs - - Andy Bierman - Cisco Systems Inc. - 170 West Tasman Drive - San Jose, CA 95134 USA - +1 408-527-3711 - abierman@cisco.com - - Keith McCloghrie - Cisco Systems Inc. - 170 West Tasman Drive - San Jose, CA 95134 USA - +1 408-526-5260 - kzm@cisco.com - - Randy Presuhn - BMC Software, Inc. - Office 1-3141 - 2141 North First Street - San Jose, California 95131 USA - +1 408 546-1006 - rpresuhn@bmc.com" - DESCRIPTION - "A MIB module containing textual conventions - for high capacity data types. This module - addresses an immediate need for data types not directly - supported in the SMIv2. This short-term solution - is meant to be deprecated as a long-term solution - is deployed." - REVISION "200006080000Z" - DESCRIPTION - "Initial Version of the High Capacity Numbers - MIB module, published as RFC 2856." - ::= { mib-2 78 } - - CounterBasedGauge64 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The CounterBasedGauge64 type represents a non-negative - integer, which may increase or decrease, but shall never - exceed a maximum value, nor fall below a minimum value. The - maximum value can not be greater than 2^64-1 - (18446744073709551615 decimal), and the minimum value can - - - - - - not be smaller than 0. The value of a CounterBasedGauge64 - has its maximum value whenever the information being modeled - is greater than or equal to its maximum value, and has its - minimum value whenever the information being modeled is - smaller than or equal to its minimum value. If the - information being modeled subsequently decreases below - (increases above) the maximum (minimum) value, the - CounterBasedGauge64 also decreases (increases). - - Note that this TC is not strictly supported in SMIv2, - because the 'always increasing' and 'counter wrap' semantics - associated with the Counter64 base type are not preserved. - It is possible that management applications which rely - solely upon the (Counter64) ASN.1 tag to determine object - semantics will mistakenly operate upon objects of this type - as they would for Counter64 objects. - - This textual convention represents a limited and short-term - solution, and may be deprecated as a long term solution is - defined and deployed to replace it." - SYNTAX Counter64 - - - ZeroBasedCounter64 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC describes an object which counts events with the - following semantics: objects of this type will be set to - zero(0) on creation and will thereafter count appropriate - events, wrapping back to zero(0) when the value 2^64 is - reached. - - Provided that an application discovers the new object within - the minimum time to wrap it can use the initial value as a - delta since it last polled the table of which this object is - part. It is important for a management station to be aware - of this minimum time and the actual time between polls, and - to discard data if the actual time is too long or there is - no defined minimum time. - - Typically this TC is used in tables where the INDEX space is - constantly changing and/or the TimeFilter mechanism is in - use. - - Note that this textual convention does not retain all the - semantics of the Counter64 base type. Specifically, a - Counter64 has an arbitrary initial value, but objects - defined with this TC are required to start at the value - - - - - - zero. This behavior is not likely to have any adverse - effects on management applications which are expecting - Counter64 semantics. - - This textual convention represents a limited and short-term - solution, and may be deprecated as a long term solution is - defined and deployed to replace it." - SYNTAX Counter64 - - END diff --git a/mibs/orig/HOST-RESOURCES-MIB b/mibs/orig/HOST-RESOURCES-MIB deleted file mode 100644 index 373b9b3..0000000 --- a/mibs/orig/HOST-RESOURCES-MIB +++ /dev/null @@ -1,1540 +0,0 @@ -HOST-RESOURCES-MIB DEFINITIONS ::= BEGIN - -IMPORTS -MODULE-IDENTITY, OBJECT-TYPE, mib-2, -Integer32, Counter32, Gauge32, TimeTicks FROM SNMPv2-SMI - -TEXTUAL-CONVENTION, DisplayString, -TruthValue, DateAndTime, AutonomousType FROM SNMPv2-TC - -MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF - -InterfaceIndexOrZero FROM IF-MIB; - -hostResourcesMibModule MODULE-IDENTITY - LAST-UPDATED "200003060000Z" -- 6 March 2000 - ORGANIZATION "IETF Host Resources MIB Working Group" - CONTACT-INFO - "Steve Waldbusser - Postal: Lucent Technologies, Inc. - 1213 Innsbruck Dr. - Sunnyvale, CA 94089 - USA - Phone: 650-318-1251 - Fax: 650-318-1633 - Email: waldbusser@lucent.com - - In addition, the Host Resources MIB mailing list is - dedicated to discussion of this MIB. To join the - mailing list, send a request message to - hostmib-request@andrew.cmu.edu. The mailing list - address is hostmib@andrew.cmu.edu." - DESCRIPTION - "This MIB is for use in managing host systems. The term - `host' is construed to mean any computer that communicates - with other similar computers attached to the internet and - that is directly used by one or more human beings. Although - this MIB does not necessarily apply to devices whose primary - function is communications services (e.g., terminal servers, - routers, bridges, monitoring equipment), such relevance is - not explicitly precluded. This MIB instruments attributes - common to all internet hosts including, for example, both - personal computers and systems that run variants of Unix." - - REVISION "200003060000Z" -- 6 March 2000 - DESCRIPTION - "Clarifications and bug fixes based on implementation - experience. This revision was also reformatted in the SMIv2 - format. The revisions made were: - - New RFC document standards: - Added Copyright notice, updated introduction to SNMP - Framework, updated references section, added reference to - RFC 2119, and added a meaningful Security Considerations - section. - - New IANA considerations section for registration of new types - - Conversion to new SMIv2 syntax for the following types and - macros: - Counter32, Integer32, Gauge32, MODULE-IDENTITY, - OBJECT-TYPE, TEXTUAL-CONVENTION, OBJECT-IDENTITY, - MODULE-COMPLIANCE, OBJECT-GROUP - - Used new Textual Conventions: - TruthValue, DateAndTime, AutonomousType, - InterfaceIndexOrZero - - Fixed typo in hrPrinterStatus. - - Added missing error bits to hrPrinterDetectedErrorState and - clarified confusion resulting from suggested mappings to - hrPrinterStatus. - - Clarified that size of objects of type - InternationalDisplayString is number of octets, not number - of encoded symbols. - - Clarified the use of the following objects based on - implementation experience: - hrSystemInitialLoadDevice, hrSystemInitialLoadParameters, - hrMemorySize, hrStorageSize, hrStorageAllocationFailures, - hrDeviceErrors, hrProcessorLoad, hrNetworkIfIndex, - hrDiskStorageCapacity, hrSWRunStatus, hrSWRunPerfCPU, - and hrSWInstalledDate. - - Clarified implementation technique for hrSWInstalledTable. - - Used new AUGMENTS clause for hrSWRunPerfTable. - - Added Internationalization Considerations section. - -This revision published as RFC2790." - - REVISION "9910202200Z" -- 20 October, 1999 - DESCRIPTION - "The original version of this MIB, published as - RFC1514." - ::= { hrMIBAdminInfo 1 } - -host OBJECT IDENTIFIER ::= { mib-2 25 } - -hrSystem OBJECT IDENTIFIER ::= { host 1 } -hrStorage OBJECT IDENTIFIER ::= { host 2 } -hrDevice OBJECT IDENTIFIER ::= { host 3 } -hrSWRun OBJECT IDENTIFIER ::= { host 4 } -hrSWRunPerf OBJECT IDENTIFIER ::= { host 5 } -hrSWInstalled OBJECT IDENTIFIER ::= { host 6 } -hrMIBAdminInfo OBJECT IDENTIFIER ::= { host 7 } - --- textual conventions - -KBytes ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Storage size, expressed in units of 1024 bytes." - SYNTAX Integer32 (0..2147483647) - -ProductID ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This textual convention is intended to identify the - - manufacturer, model, and version of a specific - hardware or software product. It is suggested that - these OBJECT IDENTIFIERs are allocated such that all - products from a particular manufacturer are registered - under a subtree distinct to that manufacturer. In - addition, all versions of a product should be - registered under a subtree distinct to that product. - With this strategy, a management station may uniquely - determine the manufacturer and/or model of a product - whose productID is unknown to the management station. - Objects of this type may be useful for inventory - purposes or for automatically detecting - incompatibilities or version mismatches between - various hardware and software components on a system. - - For example, the product ID for the ACME 4860 66MHz - clock doubled processor might be: - enterprises.acme.acmeProcessors.a4860DX2.MHz66 - - A software product might be registered as: - enterprises.acme.acmeOperatingSystems.acmeDOS.six(6).one(1) - " - SYNTAX OBJECT IDENTIFIER - --- unknownProduct will be used for any unknown ProductID --- unknownProduct OBJECT IDENTIFIER ::= { 0 0 } - -InternationalDisplayString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This data type is used to model textual information - in some character set. A network management station - should use a local algorithm to determine which - character set is in use and how it should be - displayed. Note that this character set may be - encoded with more than one octet per symbol, but will - most often be NVT ASCII. When a size clause is - specified for an object of this type, the size refers - to the length in octets, not the number of symbols." - SYNTAX OCTET STRING - --- The Host Resources System Group - -hrSystemUptime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of time since this host was last - initialized. Note that this is different from - sysUpTime in the SNMPv2-MIB [RFC1907] because - sysUpTime is the uptime of the network management - portion of the system." - ::= { hrSystem 1 } - -hrSystemDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The host's notion of the local date and time of day." - ::= { hrSystem 2 } - -hrSystemInitialLoadDevice OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The index of the hrDeviceEntry for the device from - which this host is configured to load its initial - operating system configuration (i.e., which operating - system code and/or boot parameters). - - Note that writing to this object just changes the - configuration that will be used the next time the - operating system is loaded and does not actually cause - the reload to occur." - ::= { hrSystem 3 } - -hrSystemInitialLoadParameters OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE (0..128)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object contains the parameters (e.g. a pathname - and parameter) supplied to the load device when - requesting the initial operating system configuration - from that device. - - Note that writing to this object just changes the - configuration that will be used the next time the - operating system is loaded and does not actually cause - the reload to occur." - ::= { hrSystem 4 } - -hrSystemNumUsers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of user sessions for which this host is - storing state information. A session is a collection - of processes requiring a single act of user - authentication and possibly subject to collective job - control." - ::= { hrSystem 5 } - -hrSystemProcesses OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of process contexts currently loaded or - running on this system." - ::= { hrSystem 6 } - -hrSystemMaxProcesses OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of process contexts this system - can support. If there is no fixed maximum, the value - should be zero. On systems that have a fixed maximum, - this object can help diagnose failures that occur when - this maximum is reached." - ::= { hrSystem 7 } - --- The Host Resources Storage Group - --- Registration point for storage types, for use with hrStorageType. --- These are defined in the HOST-RESOURCES-TYPES module. -hrStorageTypes OBJECT IDENTIFIER ::= { hrStorage 1 } - -hrMemorySize OBJECT-TYPE - SYNTAX KBytes - UNITS "KBytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of physical read-write main memory, - typically RAM, contained by the host." - ::= { hrStorage 2 } - -hrStorageTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrStorageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of logical storage areas on - the host. - - An entry shall be placed in the storage table for each - logical area of storage that is allocated and has - fixed resource limits. The amount of storage - represented in an entity is the amount actually usable - by the requesting entity, and excludes loss due to - formatting or file system reference information. - - These entries are associated with logical storage - areas, as might be seen by an application, rather than - physical storage entities which are typically seen by - an operating system. Storage such as tapes and - floppies without file systems on them are typically - not allocated in chunks by the operating system to - requesting applications, and therefore shouldn't - appear in this table. Examples of valid storage for - this table include disk partitions, file systems, ram - (for some architectures this is further segmented into - regular memory, extended memory, and so on), backing - store for virtual memory (`swap space'). - - This table is intended to be a useful diagnostic for - `out of memory' and `out of buffers' types of - failures. In addition, it can be a useful performance - monitoring tool for tracking memory, disk, or buffer - usage." - ::= { hrStorage 3 } - -hrStorageEntry OBJECT-TYPE - SYNTAX HrStorageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one logical storage area on - the host. As an example, an instance of the - hrStorageType object might be named hrStorageType.3" - INDEX { hrStorageIndex } - ::= { hrStorageTable 1 } - -HrStorageEntry ::= SEQUENCE { - hrStorageIndex Integer32, - hrStorageType AutonomousType, - hrStorageDescr DisplayString, - hrStorageAllocationUnits Integer32, - hrStorageSize Integer32, - hrStorageUsed Integer32, - hrStorageAllocationFailures Counter32 - } - -hrStorageIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value for each logical storage area - contained by the host." - ::= { hrStorageEntry 1 } - -hrStorageType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of storage represented by this entry." - ::= { hrStorageEntry 2 } - -hrStorageDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A description of the type and instance of the storage - described by this entry." - ::= { hrStorageEntry 3 } - -hrStorageAllocationUnits OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - UNITS "Bytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size, in bytes, of the data objects allocated - from this pool. If this entry is monitoring sectors, - blocks, buffers, or packets, for example, this number - will commonly be greater than one. Otherwise this - number will typically be one." - ::= { hrStorageEntry 4 } - -hrStorageSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The size of the storage represented by this entry, in - units of hrStorageAllocationUnits. This object is - writable to allow remote configuration of the size of - the storage area in those cases where such an - operation makes sense and is possible on the - underlying system. For example, the amount of main - memory allocated to a buffer pool might be modified or - the amount of disk space allocated to virtual memory - might be modified." - ::= { hrStorageEntry 5 } - -hrStorageUsed OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of the storage represented by this entry - that is allocated, in units of - hrStorageAllocationUnits." - ::= { hrStorageEntry 6 } - -hrStorageAllocationFailures OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of requests for storage represented by - this entry that could not be honored due to not enough - storage. It should be noted that as this object has a - SYNTAX of Counter32, that it does not have a defined - initial value. However, it is recommended that this - object be initialized to zero, even though management - stations must not depend on such an initialization." - ::= { hrStorageEntry 7 } - --- The Host Resources Device Group --- --- The device group is useful for identifying and diagnosing the --- devices on a system. The hrDeviceTable contains common --- information for any type of device. In addition, some devices --- have device-specific tables for more detailed information. More --- such tables may be defined in the future for other device types. - --- Registration point for device types, for use with hrDeviceType. - --- These are defined in the HOST-RESOURCES-TYPES module. -hrDeviceTypes OBJECT IDENTIFIER ::= { hrDevice 1 } - -hrDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrDeviceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of devices contained by the - host." - ::= { hrDevice 2 } - -hrDeviceEntry OBJECT-TYPE - SYNTAX HrDeviceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one device contained by the - host. As an example, an instance of the hrDeviceType - object might be named hrDeviceType.3" - INDEX { hrDeviceIndex } - ::= { hrDeviceTable 1 } - -HrDeviceEntry ::= SEQUENCE { - hrDeviceIndex Integer32, - hrDeviceType AutonomousType, - hrDeviceDescr DisplayString, - hrDeviceID ProductID, - hrDeviceStatus INTEGER, - hrDeviceErrors Counter32 - } - -hrDeviceIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value for each device contained by the host. - The value for each device must remain constant at - least from one re-initialization of the agent to the - next re-initialization." - ::= { hrDeviceEntry 1 } - -hrDeviceType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the type of device. - - If this value is - `hrDeviceProcessor { hrDeviceTypes 3 }' then an entry - exists in the hrProcessorTable which corresponds to - this device. - - If this value is - `hrDeviceNetwork { hrDeviceTypes 4 }', then an entry - exists in the hrNetworkTable which corresponds to this - device. - - If this value is - `hrDevicePrinter { hrDeviceTypes 5 }', then an entry - exists in the hrPrinterTable which corresponds to this - device. - - If this value is - `hrDeviceDiskStorage { hrDeviceTypes 6 }', then an - entry exists in the hrDiskStorageTable which - corresponds to this device." - ::= { hrDeviceEntry 2 } - -hrDeviceDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of this device, including the - device's manufacturer and revision, and optionally, - its serial number." - ::= { hrDeviceEntry 3 } - -hrDeviceID OBJECT-TYPE - SYNTAX ProductID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The product ID for this device." - ::= { hrDeviceEntry 4 } - -hrDeviceStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - running(2), - warning(3), - testing(4), - down(5) - - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current operational state of the device described - by this row of the table. A value unknown(1) - indicates that the current state of the device is - unknown. running(2) indicates that the device is up - and running and that no unusual error conditions are - known. The warning(3) state indicates that agent has - been informed of an unusual error condition by the - operational software (e.g., a disk device driver) but - that the device is still 'operational'. An example - would be a high number of soft errors on a disk. A - value of testing(4), indicates that the device is not - available for use because it is in the testing state. - The state of down(5) is used only when the agent has - been informed that the device is not available for any - use." - ::= { hrDeviceEntry 5 } - -hrDeviceErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of errors detected on this device. It - should be noted that as this object has a SYNTAX of - Counter32, that it does not have a defined initial - value. However, it is recommended that this object be - initialized to zero, even though management stations - must not depend on such an initialization." - ::= { hrDeviceEntry 6 } - -hrProcessorTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrProcessorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of processors contained by the - host. - - Note that this table is potentially sparse: a - (conceptual) entry exists only if the correspondent - value of the hrDeviceType object is - `hrDeviceProcessor'." - ::= { hrDevice 3 } - -hrProcessorEntry OBJECT-TYPE - SYNTAX HrProcessorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one processor contained by - the host. The hrDeviceIndex in the index represents - the entry in the hrDeviceTable that corresponds to the - hrProcessorEntry. - - As an example of how objects in this table are named, - an instance of the hrProcessorFrwID object might be - named hrProcessorFrwID.3" - INDEX { hrDeviceIndex } - ::= { hrProcessorTable 1 } - -HrProcessorEntry ::= SEQUENCE { - hrProcessorFrwID ProductID, - hrProcessorLoad Integer32 - } - -hrProcessorFrwID OBJECT-TYPE - SYNTAX ProductID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The product ID of the firmware associated with the - processor." - ::= { hrProcessorEntry 1 } - -hrProcessorLoad OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The average, over the last minute, of the percentage - of time that this processor was not idle. - Implementations may approximate this one minute - smoothing period if necessary." - ::= { hrProcessorEntry 2 } - -hrNetworkTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrNetworkEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of network devices contained - by the host. - - Note that this table is potentially sparse: a - (conceptual) entry exists only if the correspondent - value of the hrDeviceType object is - `hrDeviceNetwork'." - ::= { hrDevice 4 } - -hrNetworkEntry OBJECT-TYPE - SYNTAX HrNetworkEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one network device contained - by the host. The hrDeviceIndex in the index - represents the entry in the hrDeviceTable that - corresponds to the hrNetworkEntry. - - As an example of how objects in this table are named, - an instance of the hrNetworkIfIndex object might be - named hrNetworkIfIndex.3" - INDEX { hrDeviceIndex } - ::= { hrNetworkTable 1 } - -HrNetworkEntry ::= SEQUENCE { - hrNetworkIfIndex InterfaceIndexOrZero - } - -hrNetworkIfIndex OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of ifIndex which corresponds to this - network device. If this device is not represented in - the ifTable, then this value shall be zero." - ::= { hrNetworkEntry 1 } - -hrPrinterTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrPrinterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of printers local to the host. - - Note that this table is potentially sparse: a - (conceptual) entry exists only if the correspondent - value of the hrDeviceType object is - `hrDevicePrinter'." - ::= { hrDevice 5 } - -hrPrinterEntry OBJECT-TYPE - SYNTAX HrPrinterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one printer local to the - host. The hrDeviceIndex in the index represents the - entry in the hrDeviceTable that corresponds to the - hrPrinterEntry. - - As an example of how objects in this table are named, - an instance of the hrPrinterStatus object might be - named hrPrinterStatus.3" - INDEX { hrDeviceIndex } - ::= { hrPrinterTable 1 } - -HrPrinterEntry ::= SEQUENCE { - hrPrinterStatus INTEGER, - hrPrinterDetectedErrorState OCTET STRING - } - -hrPrinterStatus OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - idle(3), - printing(4), - warmup(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current status of this printer device." - ::= { hrPrinterEntry 1 } - -hrPrinterDetectedErrorState OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object represents any error conditions detected - by the printer. The error conditions are encoded as - bits in an octet string, with the following - definitions: - - Condition Bit # - - lowPaper 0 - - noPaper 1 - lowToner 2 - noToner 3 - doorOpen 4 - jammed 5 - offline 6 - serviceRequested 7 - inputTrayMissing 8 - outputTrayMissing 9 - markerSupplyMissing 10 - outputNearFull 11 - outputFull 12 - inputTrayEmpty 13 - overduePreventMaint 14 - - Bits are numbered starting with the most significant - bit of the first byte being bit 0, the least - significant bit of the first byte being bit 7, the - most significant bit of the second byte being bit 8, - and so on. A one bit encodes that the condition was - detected, while a zero bit encodes that the condition - was not detected. - - This object is useful for alerting an operator to - specific warning or error conditions that may occur, - especially those requiring human intervention." - ::= { hrPrinterEntry 2 } - -hrDiskStorageTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrDiskStorageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of long-term storage devices - contained by the host. In particular, disk devices - accessed remotely over a network are not included - here. - - Note that this table is potentially sparse: a - (conceptual) entry exists only if the correspondent - value of the hrDeviceType object is - `hrDeviceDiskStorage'." - ::= { hrDevice 6 } - -hrDiskStorageEntry OBJECT-TYPE - SYNTAX HrDiskStorageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one long-term storage device - contained by the host. The hrDeviceIndex in the index - represents the entry in the hrDeviceTable that - corresponds to the hrDiskStorageEntry. As an example, - an instance of the hrDiskStorageCapacity object might - be named hrDiskStorageCapacity.3" - INDEX { hrDeviceIndex } - ::= { hrDiskStorageTable 1 } - -HrDiskStorageEntry ::= SEQUENCE { - hrDiskStorageAccess INTEGER, - hrDiskStorageMedia INTEGER, - hrDiskStorageRemoveble TruthValue, - hrDiskStorageCapacity KBytes - } - -hrDiskStorageAccess OBJECT-TYPE - SYNTAX INTEGER { - readWrite(1), - readOnly(2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication if this long-term storage device is - readable and writable or only readable. This should - reflect the media type, any write-protect mechanism, - and any device configuration that affects the entire - device." - ::= { hrDiskStorageEntry 1 } - -hrDiskStorageMedia OBJECT-TYPE - SYNTAX INTEGER { - other(1), - unknown(2), - hardDisk(3), - floppyDisk(4), - opticalDiskROM(5), - opticalDiskWORM(6), -- Write Once Read Many - opticalDiskRW(7), - ramDisk(8) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the type of media used in this long- - term storage device." - ::= { hrDiskStorageEntry 2 } - -hrDiskStorageRemoveble OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Denotes whether or not the disk media may be removed - from the drive." - ::= { hrDiskStorageEntry 3 } - -hrDiskStorageCapacity OBJECT-TYPE - SYNTAX KBytes - UNITS "KBytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total size for this long-term storage device. If - the media is removable and is currently removed, this - value should be zero." - ::= { hrDiskStorageEntry 4 } - -hrPartitionTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrPartitionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of partitions for long-term - storage devices contained by the host. In particular, - partitions accessed remotely over a network are not - included here." - ::= { hrDevice 7 } - -hrPartitionEntry OBJECT-TYPE - SYNTAX HrPartitionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one partition. The - hrDeviceIndex in the index represents the entry in the - hrDeviceTable that corresponds to the - hrPartitionEntry. - - As an example of how objects in this table are named, - an instance of the hrPartitionSize object might be - named hrPartitionSize.3.1" - INDEX { hrDeviceIndex, hrPartitionIndex } - ::= { hrPartitionTable 1 } - -HrPartitionEntry ::= SEQUENCE { - hrPartitionIndex Integer32, - hrPartitionLabel InternationalDisplayString, - hrPartitionID OCTET STRING, - hrPartitionSize KBytes, - hrPartitionFSIndex Integer32 - } - -hrPartitionIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value for each partition on this long-term - storage device. The value for each long-term storage - device must remain constant at least from one re- - initialization of the agent to the next re- - initialization." - ::= { hrPartitionEntry 1 } - -hrPartitionLabel OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE (0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of this partition." - ::= { hrPartitionEntry 2 } - -hrPartitionID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A descriptor which uniquely represents this partition - to the responsible operating system. On some systems, - this might take on a binary representation." - ::= { hrPartitionEntry 3 } - -hrPartitionSize OBJECT-TYPE - SYNTAX KBytes - UNITS "KBytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of this partition." - ::= { hrPartitionEntry 4 } - -hrPartitionFSIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the file system mounted on this - partition. If no file system is mounted on this - partition, then this value shall be zero. Note that - multiple partitions may point to one file system, - denoting that that file system resides on those - partitions. Multiple file systems may not reside on - one partition." - ::= { hrPartitionEntry 5 } - --- The File System Table - --- Registration point for popular File System types, --- for use with hrFSType. These are defined in the --- HOST-RESOURCES-TYPES module. -hrFSTypes OBJECT IDENTIFIER ::= { hrDevice 9 } - -hrFSTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrFSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of file systems local to this - host or remotely mounted from a file server. File - systems that are in only one user's environment on a - multi-user system will not be included in this table." - ::= { hrDevice 8 } - -hrFSEntry OBJECT-TYPE - SYNTAX HrFSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one file system local to - this host or remotely mounted from a file server. - File systems that are in only one user's environment - on a multi-user system will not be included in this - table. - - As an example of how objects in this table are named, - an instance of the hrFSMountPoint object might be - named hrFSMountPoint.3" - INDEX { hrFSIndex } - ::= { hrFSTable 1 } - -HrFSEntry ::= SEQUENCE { - hrFSIndex Integer32, - hrFSMountPoint InternationalDisplayString, - hrFSRemoteMountPoint InternationalDisplayString, - hrFSType AutonomousType, - hrFSAccess INTEGER, - hrFSBootable TruthValue, - hrFSStorageIndex Integer32, - hrFSLastFullBackupDate DateAndTime, - hrFSLastPartialBackupDate DateAndTime - } - -hrFSIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value for each file system local to this - host. The value for each file system must remain - constant at least from one re-initialization of the - agent to the next re-initialization." - ::= { hrFSEntry 1 } - -hrFSMountPoint OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The path name of the root of this file system." - ::= { hrFSEntry 2 } - -hrFSRemoteMountPoint OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A description of the name and/or address of the - server that this file system is mounted from. This - may also include parameters such as the mount point on - the remote file system. If this is not a remote file - system, this string should have a length of zero." - ::= { hrFSEntry 3 } - -hrFSType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object identifies the type of this - file system." - ::= { hrFSEntry 4 } - -hrFSAccess OBJECT-TYPE - SYNTAX INTEGER { - readWrite(1), - readOnly(2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication if this file system is logically - configured by the operating system to be readable and - writable or only readable. This does not represent - any local access-control policy, except one that is - applied to the file system as a whole." - ::= { hrFSEntry 5 } - -hrFSBootable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A flag indicating whether this file system is - bootable." - ::= { hrFSEntry 6 } - -hrFSStorageIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the hrStorageEntry that represents - information about this file system. If there is no - such information available, then this value shall be - zero. The relevant storage entry will be useful in - tracking the percent usage of this file system and - diagnosing errors that may occur when it runs out of - space." - ::= { hrFSEntry 7 } - -hrFSLastFullBackupDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The last date at which this complete file system was - - copied to another storage device for backup. This - information is useful for ensuring that backups are - being performed regularly. - - If this information is not known, then this variable - shall have the value corresponding to January 1, year - 0000, 00:00:00.0, which is encoded as - (hex)'00 00 01 01 00 00 00 00'." - ::= { hrFSEntry 8 } - -hrFSLastPartialBackupDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The last date at which a portion of this file system - was copied to another storage device for backup. This - information is useful for ensuring that backups are - being performed regularly. - - If this information is not known, then this variable - shall have the value corresponding to January 1, year - 0000, 00:00:00.0, which is encoded as - (hex)'00 00 01 01 00 00 00 00'." - ::= { hrFSEntry 9 } - --- The Host Resources Running Software Group --- --- The hrSWRunTable contains an entry for each distinct piece of --- software that is running or loaded into physical or virtual --- memory in preparation for running. This includes the host's --- operating system, device drivers, and applications. - -hrSWOSIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the hrSWRunIndex for the hrSWRunEntry - that represents the primary operating system running - on this host. This object is useful for quickly and - uniquely identifying that primary operating system." - ::= { hrSWRun 1 } - -hrSWRunTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrSWRunEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of software running on the - host." - ::= { hrSWRun 2 } - -hrSWRunEntry OBJECT-TYPE - SYNTAX HrSWRunEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for one piece of software - running on the host Note that because the installed - software table only contains information for software - stored locally on this host, not every piece of - running software will be found in the installed - software table. This is true of software that was - loaded and run from a non-local source, such as a - network-mounted file system. - - As an example of how objects in this table are named, - an instance of the hrSWRunName object might be named - hrSWRunName.1287" - INDEX { hrSWRunIndex } - ::= { hrSWRunTable 1 } - -HrSWRunEntry ::= SEQUENCE { - hrSWRunIndex Integer32, - hrSWRunName InternationalDisplayString, - hrSWRunID ProductID, - hrSWRunPath InternationalDisplayString, - hrSWRunParameters InternationalDisplayString, - hrSWRunType INTEGER, - hrSWRunStatus INTEGER - } - -hrSWRunIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value for each piece of software running on - the host. Wherever possible, this should be the - system's native, unique identification number." - ::= { hrSWRunEntry 1 } - -hrSWRunName OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of this running piece of - software, including the manufacturer, revision, and - the name by which it is commonly known. If this - software was installed locally, this should be the - same string as used in the corresponding - hrSWInstalledName." - ::= { hrSWRunEntry 2 } - -hrSWRunID OBJECT-TYPE - SYNTAX ProductID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The product ID of this running piece of software." - ::= { hrSWRunEntry 3 } - -hrSWRunPath OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A description of the location on long-term storage - (e.g. a disk drive) from which this software was - loaded." - ::= { hrSWRunEntry 4 } - -hrSWRunParameters OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A description of the parameters supplied to this - software when it was initially loaded." - ::= { hrSWRunEntry 5 } - -hrSWRunType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - operatingSystem(2), - deviceDriver(3), - application(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of this software." - ::= { hrSWRunEntry 6 } - -hrSWRunStatus OBJECT-TYPE - SYNTAX INTEGER { - running(1), - runnable(2), -- waiting for resource - -- (i.e., CPU, memory, IO) - notRunnable(3), -- loaded but waiting for event - invalid(4) -- not loaded - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The status of this running piece of software. - Setting this value to invalid(4) shall cause this - software to stop running and to be unloaded. Sets to - other values are not valid." - ::= { hrSWRunEntry 7 } - --- The Host Resources Running Software Performance Group --- --- The hrSWRunPerfTable contains an entry corresponding to --- each entry in the hrSWRunTable. - -hrSWRunPerfTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrSWRunPerfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of running software - performance metrics." - ::= { hrSWRunPerf 1 } - -hrSWRunPerfEntry OBJECT-TYPE - SYNTAX HrSWRunPerfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry containing software performance - metrics. As an example, an instance of the - hrSWRunPerfCPU object might be named - hrSWRunPerfCPU.1287" - AUGMENTS { hrSWRunEntry } -- This table augments information in - -- the hrSWRunTable. - ::= { hrSWRunPerfTable 1 } - -HrSWRunPerfEntry ::= SEQUENCE { - hrSWRunPerfCPU Integer32, - hrSWRunPerfMem KBytes -} - -hrSWRunPerfCPU OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of centi-seconds of the total system's CPU - resources consumed by this process. Note that on a - multi-processor system, this value may increment by - more than one centi-second in one centi-second of real - (wall clock) time." - ::= { hrSWRunPerfEntry 1 } - -hrSWRunPerfMem OBJECT-TYPE - SYNTAX KBytes - UNITS "KBytes" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of real system memory allocated to - this process." - ::= { hrSWRunPerfEntry 2 } - --- The Host Resources Installed Software Group --- --- The hrSWInstalledTable contains an entry for each piece --- of software installed in long-term storage (e.g. a disk --- drive) locally on this host. Note that this does not --- include software loadable remotely from a network --- server. --- --- Different implementations may track software in varying --- ways. For example, while some implementations may track --- executable files as distinct pieces of software, other --- implementations may use other strategies such as keeping --- track of software "packages" (e.g., related groups of files) --- or keeping track of system or application "patches". --- --- This table is useful for identifying and inventorying --- software on a host and for diagnosing incompatibility --- and version mismatch problems between various pieces --- of hardware and software. - -hrSWInstalledLastChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when an entry in the - hrSWInstalledTable was last added, renamed, or - deleted. Because this table is likely to contain many - entries, polling of this object allows a management - station to determine when re-downloading of the table - might be useful." - ::= { hrSWInstalled 1 } - -hrSWInstalledLastUpdateTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when the hrSWInstalledTable - was last completely updated. Because caching of this - data will be a popular implementation strategy, - retrieval of this object allows a management station - to obtain a guarantee that no data in this table is - older than the indicated time." - ::= { hrSWInstalled 2 } - -hrSWInstalledTable OBJECT-TYPE - SYNTAX SEQUENCE OF HrSWInstalledEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table of software installed on this - host." - ::= { hrSWInstalled 3 } - -hrSWInstalledEntry OBJECT-TYPE - SYNTAX HrSWInstalledEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A (conceptual) entry for a piece of software - installed on this host. - - As an example of how objects in this table are named, - an instance of the hrSWInstalledName object might be - named hrSWInstalledName.96" - INDEX { hrSWInstalledIndex } - ::= { hrSWInstalledTable 1 } - -HrSWInstalledEntry ::= SEQUENCE { - hrSWInstalledIndex Integer32, - hrSWInstalledName InternationalDisplayString, - hrSWInstalledID ProductID, - hrSWInstalledType INTEGER, - hrSWInstalledDate DateAndTime -} - -hrSWInstalledIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value for each piece of software installed - on the host. This value shall be in the range from 1 - to the number of pieces of software installed on the - host." - ::= { hrSWInstalledEntry 1 } - -hrSWInstalledName OBJECT-TYPE - SYNTAX InternationalDisplayString (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of this installed piece of - software, including the manufacturer, revision, the - name by which it is commonly known, and optionally, - its serial number." - ::= { hrSWInstalledEntry 2 } - -hrSWInstalledID OBJECT-TYPE - SYNTAX ProductID - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The product ID of this installed piece of software." - ::= { hrSWInstalledEntry 3 } - -hrSWInstalledType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - operatingSystem(2), - deviceDriver(3), - application(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of this software." - ::= { hrSWInstalledEntry 4 } - -hrSWInstalledDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The last-modification date of this application as it - would appear in a directory listing. - - If this information is not known, then this variable - shall have the value corresponding to January 1, year - 0000, 00:00:00.0, which is encoded as - (hex)'00 00 01 01 00 00 00 00'." - ::= { hrSWInstalledEntry 5 } - --- Conformance information - -hrMIBCompliances OBJECT IDENTIFIER ::= { hrMIBAdminInfo 2 } -hrMIBGroups OBJECT IDENTIFIER ::= { hrMIBAdminInfo 3 } - --- Compliance Statements -hrMIBCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The requirements for conformance to the Host Resources MIB." - MODULE -- this module - MANDATORY-GROUPS { hrSystemGroup, hrStorageGroup, - hrDeviceGroup } - - OBJECT hrSystemDate - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT hrSystemInitialLoadDevice - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT hrSystemInitialLoadParameters - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT hrStorageSize - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT hrFSLastFullBackupDate - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT hrFSLastPartialBackupDate - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - GROUP hrSWRunGroup - DESCRIPTION - "The Running Software Group. Implementation - of this group is mandatory only when the - hrSWRunPerfGroup is implemented." - - OBJECT hrSWRunStatus - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - GROUP hrSWRunPerfGroup - DESCRIPTION - "The Running Software Performance Group. - Implementation of this group is at the discretion - of the implementor." - - GROUP hrSWInstalledGroup - DESCRIPTION - "The Installed Software Group. - Implementation of this group is at the discretion - of the implementor." - ::= { hrMIBCompliances 1 } - - hrSystemGroup OBJECT-GROUP - OBJECTS { - hrSystemUptime, hrSystemDate, - hrSystemInitialLoadDevice, - hrSystemInitialLoadParameters, - hrSystemNumUsers, hrSystemProcesses, - hrSystemMaxProcesses - } - STATUS current - DESCRIPTION - "The Host Resources System Group." - ::= { hrMIBGroups 1 } - - hrStorageGroup OBJECT-GROUP - OBJECTS { - hrMemorySize, hrStorageIndex, hrStorageType, - hrStorageDescr, hrStorageAllocationUnits, - hrStorageSize, hrStorageUsed, - hrStorageAllocationFailures - } - STATUS current - DESCRIPTION - "The Host Resources Storage Group." - ::= { hrMIBGroups 2 } - - hrDeviceGroup OBJECT-GROUP - OBJECTS { - hrDeviceIndex, hrDeviceType, hrDeviceDescr, - hrDeviceID, hrDeviceStatus, hrDeviceErrors, - hrProcessorFrwID, hrProcessorLoad, - hrNetworkIfIndex, hrPrinterStatus, - hrPrinterDetectedErrorState, - hrDiskStorageAccess, hrDiskStorageMedia, - hrDiskStorageRemoveble, hrDiskStorageCapacity, - hrPartitionIndex, hrPartitionLabel, - hrPartitionID, hrPartitionSize, - hrPartitionFSIndex, hrFSIndex, hrFSMountPoint, - hrFSRemoteMountPoint, hrFSType, hrFSAccess, - hrFSBootable, hrFSStorageIndex, - hrFSLastFullBackupDate, - hrFSLastPartialBackupDate - } - STATUS current - DESCRIPTION - "The Host Resources Device Group." - ::= { hrMIBGroups 3 } - - hrSWRunGroup OBJECT-GROUP - OBJECTS { - hrSWOSIndex, hrSWRunIndex, hrSWRunName, - hrSWRunID, hrSWRunPath, hrSWRunParameters, - hrSWRunType, hrSWRunStatus - } - STATUS current - DESCRIPTION - "The Host Resources Running Software Group." - ::= { hrMIBGroups 4 } - - hrSWRunPerfGroup OBJECT-GROUP - OBJECTS { hrSWRunPerfCPU, hrSWRunPerfMem } - STATUS current - DESCRIPTION - "The Host Resources Running Software - Performance Group." - ::= { hrMIBGroups 5 } - - hrSWInstalledGroup OBJECT-GROUP - OBJECTS { - hrSWInstalledLastChange, - hrSWInstalledLastUpdateTime, - hrSWInstalledIndex, hrSWInstalledName, - hrSWInstalledID, hrSWInstalledType, - hrSWInstalledDate - } - STATUS current - DESCRIPTION - "The Host Resources Installed Software Group." - ::= { hrMIBGroups 6 } - -END diff --git a/mibs/orig/HOST-RESOURCES-TYPES b/mibs/orig/HOST-RESOURCES-TYPES deleted file mode 100644 index aed933d..0000000 --- a/mibs/orig/HOST-RESOURCES-TYPES +++ /dev/null @@ -1,394 +0,0 @@ - - - HOST-RESOURCES-TYPES DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-IDENTITY FROM SNMPv2-SMI - hrMIBAdminInfo, hrStorage, hrDevice FROM HOST-RESOURCES-MIB; - - hostResourcesTypesModule MODULE-IDENTITY - LAST-UPDATED "200003060000Z" -- 6 March, 2000 - ORGANIZATION "IETF Host Resources MIB Working Group" - CONTACT-INFO - "Steve Waldbusser - Postal: Lucent Technologies, Inc. - 1213 Innsbruck Dr. - Sunnyvale, CA 94089 - USA - Phone: 650-318-1251 - Fax: 650-318-1633 - Email: waldbusser@ins.com - - In addition, the Host Resources MIB mailing list is dedicated - to discussion of this MIB. To join the mailing list, send a - request message to hostmib-request@andrew.cmu.edu. The mailing - list address is hostmib@andrew.cmu.edu." - DESCRIPTION - "This MIB module registers type definitions for - storage types, device types, and file system types. - - After the initial revision, this module will be - maintained by IANA." - REVISION "200003060000Z" -- 6 March 2000 - DESCRIPTION - "The original version of this module, published as RFC - 2790." - ::= { hrMIBAdminInfo 4 } - - -- Registrations for some storage types, for use with hrStorageType - hrStorageTypes OBJECT IDENTIFIER ::= { hrStorage 1 } - - hrStorageOther OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used when no other defined - type is appropriate." - ::= { hrStorageTypes 1 } - - hrStorageRam OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for RAM." - ::= { hrStorageTypes 2 } - - hrStorageVirtualMemory OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for virtual memory, - temporary storage of swapped or paged memory." - ::= { hrStorageTypes 3 } - - hrStorageFixedDisk OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for non-removable - rigid rotating magnetic storage devices." - ::= { hrStorageTypes 4 } - - hrStorageRemovableDisk OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for removable rigid - rotating magnetic storage devices." - ::= { hrStorageTypes 5 } - - hrStorageFloppyDisk OBJECT-IDENTITY - STATUS current - DESCRIPTION - - "The storage type identifier used for non-rigid rotating - magnetic storage devices." - ::= { hrStorageTypes 6 } - - hrStorageCompactDisc OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for read-only rotating - optical storage devices." - ::= { hrStorageTypes 7 } - - hrStorageRamDisk OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for a file system that - is stored in RAM." - ::= { hrStorageTypes 8 } - - hrStorageFlashMemory OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for flash memory." - ::= { hrStorageTypes 9 } - - hrStorageNetworkDisk OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The storage type identifier used for a - networked file system." - ::= { hrStorageTypes 10 } - - -- Registrations for some device types, for use with hrDeviceType - hrDeviceTypes OBJECT IDENTIFIER ::= { hrDevice 1 } - - hrDeviceOther OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used when no other defined - type is appropriate." - ::= { hrDeviceTypes 1 } - - hrDeviceUnknown OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used when the device type is - unknown." - ::= { hrDeviceTypes 2 } - - hrDeviceProcessor OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a CPU." - ::= { hrDeviceTypes 3 } - - hrDeviceNetwork OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a network interface." - ::= { hrDeviceTypes 4 } - - hrDevicePrinter OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a printer." - ::= { hrDeviceTypes 5 } - - hrDeviceDiskStorage OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a disk drive." - ::= { hrDeviceTypes 6 } - - hrDeviceVideo OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a video device." - ::= { hrDeviceTypes 10 } - - hrDeviceAudio OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for an audio device." - ::= { hrDeviceTypes 11 } - - hrDeviceCoprocessor OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a co-processor." - ::= { hrDeviceTypes 12 } - - hrDeviceKeyboard OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a keyboard device." - ::= { hrDeviceTypes 13 } - - hrDeviceModem OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a modem." - ::= { hrDeviceTypes 14 } - - hrDeviceParallelPort OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a parallel port." - ::= { hrDeviceTypes 15 } - - hrDevicePointing OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a pointing device - (e.g., a mouse)." - ::= { hrDeviceTypes 16 } - - hrDeviceSerialPort OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a serial port." - ::= { hrDeviceTypes 17 } - - hrDeviceTape OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a tape storage device." - ::= { hrDeviceTypes 18 } - - hrDeviceClock OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a clock device." - ::= { hrDeviceTypes 19 } - - hrDeviceVolatileMemory OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a volatile memory - storage device." - ::= { hrDeviceTypes 20 } - - hrDeviceNonVolatileMemory OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The device type identifier used for a non-volatile memory - - storage device." - ::= { hrDeviceTypes 21 } - - -- Registrations for some popular File System types, - -- for use with hrFSType. - hrFSTypes OBJECT IDENTIFIER ::= { hrDevice 9 } - - hrFSOther OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used when no other - defined type is appropriate." - ::= { hrFSTypes 1 } - - hrFSUnknown OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used when the type of - file system is unknown." - ::= { hrFSTypes 2 } - - hrFSBerkeleyFFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Berkeley Fast File System." - ::= { hrFSTypes 3 } - - hrFSSys5FS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - System V File System." - ::= { hrFSTypes 4 } - - hrFSFat OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for - DOS's FAT file system." - ::= { hrFSTypes 5 } - - hrFSHPFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for OS/2's - High Performance File System." - ::= { hrFSTypes 6 } - - hrFSHFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Macintosh Hierarchical File System." - ::= { hrFSTypes 7 } - - hrFSMFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Macintosh File System." - ::= { hrFSTypes 8 } - - hrFSNTFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Windows NT File System." - ::= { hrFSTypes 9 } - - hrFSVNode OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - VNode File System." - ::= { hrFSTypes 10 } - - hrFSJournaled OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Journaled File System." - ::= { hrFSTypes 11 } - - hrFSiso9660 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - ISO 9660 File System for CD's." - ::= { hrFSTypes 12 } - - hrFSRockRidge OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - RockRidge File System for CD's." - ::= { hrFSTypes 13 } - - hrFSNFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - NFS File System." - ::= { hrFSTypes 14 } - - hrFSNetware OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Netware File System." - ::= { hrFSTypes 15 } - - hrFSAFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Andrew File System." - ::= { hrFSTypes 16 } - - hrFSDFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - OSF DCE Distributed File System." - ::= { hrFSTypes 17 } - - hrFSAppleshare OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - AppleShare File System." - ::= { hrFSTypes 18 } - - hrFSRFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - RFS File System." - ::= { hrFSTypes 19 } - - hrFSDGCFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Data General DGCFS." - ::= { hrFSTypes 20 } - - hrFSBFS OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - SVR4 Boot File System." - ::= { hrFSTypes 21 } - - hrFSFAT32 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Windows FAT32 File System." - ::= { hrFSTypes 22 } - - hrFSLinuxExt2 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The file system type identifier used for the - Linux EXT2 File System." - ::= { hrFSTypes 23 } - - END - - diff --git a/mibs/orig/HP-ICF-CHASSIS b/mibs/orig/HP-ICF-CHASSIS deleted file mode 100644 index af1cf2a..0000000 --- a/mibs/orig/HP-ICF-CHASSIS +++ /dev/null @@ -1,901 +0,0 @@ - HP-ICF-CHASSIS DEFINITIONS ::= BEGIN - - IMPORTS - Integer32, Counter32, - OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE - FROM SNMPv2-SMI - DisplayString, TimeStamp,TruthValue - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - PhysicalIndex - FROM ENTITY-MIB - hpicfObjectModules, hpicfCommon, hpicfCommonTrapsPrefix - FROM HP-ICF-OID; - - hpicfChassisMib MODULE-IDENTITY - LAST-UPDATED "201108250847Z" -- August 25, 2011 - ORGANIZATION "HP Networking" - CONTACT-INFO - "Hewlett Packard Company - 8000 Foothills Blvd. - Roseville, CA 95747" - DESCRIPTION - "This MIB module describes chassis devices in the - HP Integrated Communication Facility product - line. Note that most of this module will be - superseded by the standard Entity MIB. However, - the hpicfSensorTable will still be valid." - - REVISION "201108250847Z" -- August 25, 2011 - DESCRIPTION "Added new scalars hpicfFanTrayType and - hpicfOpacityShieldInstalled." - - REVISION "201008250000Z" -- August 23, 2010 - DESCRIPTION "Added hpSystemAirEntPhysicalIndex to the air - temperature table." - - REVISION "200904220000Z" -- April 22, 2009 - DESCRIPTION "Added new SNMP object and SNMP table for chassis - temperature details" - - REVISION "200011032216Z" -- November 3, 2000 - DESCRIPTION "Updated division name." - - REVISION "9703060334Z" -- March 6, 1997 - DESCRIPTION - "Added NOTIFICATION-GROUP information." - REVISION "9609100245Z" -- September 10, 1996 - DESCRIPTION - "Split this MIB module from the former monolithic - hp-icf MIB. Added compliance statement for use by - non-chassis devices or devices that are - implementing another chassis MIB (like Entity MIB) - but still want to use the hpicfSensorTable. - Changed STATUS clause to deprecated for those - objects that are superseded by the Entity MIB." - REVISION "9507130000Z" -- July 13, 1995 - DESCRIPTION - "Added the hpicfSensorTrap." - REVISION "9411200000Z" -- November 20, 1994 - DESCRIPTION - "Added the hpicfChassisAddrTable." - REVISION "9307090000Z" -- July 9, 1993 - DESCRIPTION - "Initial version." - ::= { hpicfObjectModules 3 } - - - hpicfChassis - OBJECT IDENTIFIER ::= { hpicfCommon 2 } - - -- The Chassis group contains detailed information about what - -- is inside a particular chassis. The intent is that an - -- agent can provide information about the box that it is in. - - hpicfChassisId OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (6)) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - An identifier that uniquely identifies this - particular chassis. This will be the same value - as the instance of hpicfChainId for this chassis." - ::= { hpicfChassis 1 } - - hpicfChassisNumSlots OBJECT-TYPE - SYNTAX Integer32 (0..16) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The number of slots in this chassis." - ::= { hpicfChassis 2 } - - -- The slot table contains one entry for each slot in this - -- chassis. - - hpicfSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpicfSlotEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A table that contains information on all the - slots in this chassis." - ::= { hpicfChassis 3 } - - hpicfSlotEntry OBJECT-TYPE - SYNTAX HpicfSlotEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - Information about a slot in a chassis" - INDEX { hpicfSlotIndex } - ::= { hpicfSlotTable 1 } - - HpicfSlotEntry ::= - SEQUENCE { - hpicfSlotIndex Integer32, - hpicfSlotObjectId OBJECT IDENTIFIER, - hpicfSlotLastChange TimeStamp, - hpicfSlotDescr DisplayString - } - - hpicfSlotIndex OBJECT-TYPE - SYNTAX Integer32 (1..16) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The slot number within the box for which this - entry contains information." - ::= { hpicfSlotEntry 1 } - - hpicfSlotObjectId OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The authoritative identification of the card - plugged into this slot in this chassis. A value - of { 0 0 } indicates an empty slot." - ::= { hpicfSlotEntry 2 } - - hpicfSlotLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The value of the agent's sysUpTime at which a - card in this slot was last inserted or removed. - If no module has been inserted or removed since - the last reinitialization of the agent, this - object has a zero value." - ::= { hpicfSlotEntry 3 } - - hpicfSlotDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A textual description of the card plugged into - this slot in this chassis, including the product - number and version information." - ::= { hpicfSlotEntry 4 } - - -- The entity table contains a list of logical network devices - -- contained in this chassis, whether or not that agent can - -- actually manage the device. The intent is that any agent - -- for a box will have a complete picture of the entities in - -- that box. - - hpicfEntityTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpicfEntityEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A table that contains information about the - (logical) networking devices contained in this - chassis." - ::= { hpicfChassis 4 } - - hpicfEntityEntry OBJECT-TYPE - SYNTAX HpicfEntityEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - Information about a single logical networking - device contained in this chassis." - INDEX { hpicfEntityIndex } - ::= { hpicfEntityTable 1 } - - HpicfEntityEntry ::= - SEQUENCE { - hpicfEntityIndex Integer32, - hpicfEntityFunction Integer32, - hpicfEntityObjectId OBJECT IDENTIFIER, - hpicfEntityDescr DisplayString, - hpicfEntityTimestamp TimeStamp - } - - hpicfEntityIndex OBJECT-TYPE - SYNTAX Integer32 (1..16) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - An index that uniquely identifies the logical - network device for which this entry contains - information." - ::= { hpicfEntityEntry 1 } - - hpicfEntityFunction OBJECT-TYPE - SYNTAX Integer32 (0..63) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The generic function provided by the logical - network device. The value is a sum. Starting - from zero, for each type of generic function that - the entity performs, 2 raised to a power is added - to the sum. The powers are according to the - following table: - - Function Power - other 1 - repeater 0 - bridge 2 - router 3 - agent 5 - - For example, an entity performing both bridging - and routing functions would have a value of 12 - (2^2 + 2^3)." - ::= { hpicfEntityEntry 2 } - - hpicfEntityObjectId OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The authoritative identification of the logical - network device which provides an unambiguous means - of determining the type of device. The value of - this object is analogous to MIB-II's sysObjectId." - ::= { hpicfEntityEntry 3 } - - hpicfEntityDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A textual description of this device, including - the product number and version information. The - value of this object is analogous to MIB-II's - sysDescr." - ::= { hpicfEntityEntry 4 } - - hpicfEntityTimestamp OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The value of the agent's sysUpTime at which this - logical network device was last reinitialized. If - the entity has not been reinitialized since the - last reinitialization of the agent, then this - object has a zero value." - ::= { hpicfEntityEntry 5 } - - -- The hpicfSlotMapTable is used to convey which logical - -- network devices occupy which slots in the chassis. For - -- example, if a chassis contains a repeater entity, with an - -- hpicfEntityIndex of 2, which is made up of three cards - -- located in slots 2, 4, and 5 of the chassis, this table - -- will contain entries indexed by { 2 2 }, { 4 2 } and - -- { 5 2 }. - - hpicfSlotMapTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpicfSlotMapEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A table that contains information about which - entities are in which slots in this chassis." - ::= { hpicfChassis 5 } - - hpicfSlotMapEntry OBJECT-TYPE - SYNTAX HpicfSlotMapEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A relationship between a slot and an entity in - this chassis. Such a relationship exists if the - particular slot is occupied by a physical module - performing part of the function of the particular - entity." - INDEX { hpicfSlotMapSlot, hpicfSlotMapEntity } - ::= { hpicfSlotMapTable 1 } - - HpicfSlotMapEntry ::= - SEQUENCE { - hpicfSlotMapSlot Integer32, - hpicfSlotMapEntity Integer32 - } - - hpicfSlotMapSlot OBJECT-TYPE - SYNTAX Integer32 (1..16) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A slot number within the chassis which contains - (part of) this entity." - ::= { hpicfSlotMapEntry 1 } - - hpicfSlotMapEntity OBJECT-TYPE - SYNTAX Integer32 (1..16) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The entity described in this mapping." - ::= { hpicfSlotMapEntry 2 } - - -- The sensor table contains one entry for each sensor in this - -- chassis. - - hpicfSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpicfSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains information on all the - sensors in this chassis" - ::= { hpicfChassis 6 } - - hpicfSensorEntry OBJECT-TYPE - SYNTAX HpicfSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a sensor in a chassis" - INDEX { hpicfSensorIndex } - ::= { hpicfSensorTable 1 } - - HpicfSensorEntry ::= - SEQUENCE { - hpicfSensorIndex Integer32, - hpicfSensorObjectId OBJECT IDENTIFIER, - hpicfSensorNumber Integer32, - hpicfSensorStatus INTEGER, - hpicfSensorWarnings Counter32, - hpicfSensorFailures Counter32, - hpicfSensorDescr DisplayString - } - - hpicfSensorIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies the sensor for - which this entry contains information." - ::= { hpicfSensorEntry 1 } - - hpicfSensorObjectId OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The authoritative identification of the kind of - sensor this is." - ::= { hpicfSensorEntry 2 } - - hpicfSensorNumber OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A number which identifies a particular sensor - from other sensors of the same kind. For - instance, if there are many temperature sensors in - this chassis, this number would identify a - particular temperature sensor in this chassis." - ::= { hpicfSensorEntry 3 } - - hpicfSensorStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - bad(2), - warning(3), - good(4), - notPresent(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Actual status indicated by the sensor." - ::= { hpicfSensorEntry 4 } - - hpicfSensorWarnings OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times hpicfSensorStatus has entered - the 'warning'(3) state." - ::= { hpicfSensorEntry 5 } - - hpicfSensorFailures OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times hpicfSensorStatus has entered - the 'bad'(2) state." - ::= { hpicfSensorEntry 6 } - - hpicfSensorDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the sensor." - ::= { hpicfSensorEntry 7 } - - hpicfChassisAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpicfChassisAddrEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - A table of network addresses for entities in this - chassis. The primary use of this table is to map - a specific entity address to a specific chassis. - Note that this table may not be a complete list of - network addresses for this entity." - ::= { hpicfChassis 7 } - - hpicfChassisAddrEntry OBJECT-TYPE - SYNTAX HpicfChassisAddrEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - An entry containing a single network address being - used by a logical network device in this chassis." - INDEX { hpicfChasAddrType, hpicfChasAddrAddress } - ::= { hpicfChassisAddrTable 1 } - - HpicfChassisAddrEntry ::= - SEQUENCE { - hpicfChasAddrType INTEGER, - hpicfChasAddrAddress OCTET STRING, - hpicfChasAddrEntity Integer32 - } - - hpicfChasAddrType OBJECT-TYPE - SYNTAX INTEGER { - ipAddr(1), - ipxAddr(2), - macAddr(3) - } - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The kind of network address represented in this - entry." - ::= { hpicfChassisAddrEntry 1 } - - hpicfChasAddrAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4..10)) - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - The network address being used by the logical - network device associated with this entry, formatted - according to the value of the associated instance of - hpicfChasAddrType. - - For hpicfChasAddrType of ipAddr, this value is four - octets long, with each octet representing one byte of - the IP address, in network byte order. - - For hpicfChasAddrType of ipxAddr, this value is ten - octets long, with the first four octets representing - the IPX network number in network byte order, - followed by the six byte host number in network byte - order. - - For hpicfChasAddrType of macAddr, this value is six - octets long, representing the MAC address in - canonical order." - ::= { hpicfChassisAddrEntry 2 } - - hpicfChasAddrEntity OBJECT-TYPE - SYNTAX Integer32 (1..16) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "********* THIS OBJECT IS DEPRECATED ********* - - An index that uniquely identifies the logical - network device in this chassis that is using this - network address.." - ::= { hpicfChassisAddrEntry 3 } - - hpChassisTemperature OBJECT IDENTIFIER - ::= { hpicfChassis 8 } - - - hpSystemAirTempTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSystemAirTempEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This table gives the temperature details of - chassis. These temperature details are - obtained by monitoring chassis temperature - sensors attached to the box by excluding - ManagementModule, FabricModule, IMand - PowerSupply sensors. This will give current, - maximum,minimum,threshold and average - temperatures of chassis." - ::= { hpChassisTemperature 1 } - - hpSystemAirTempEntry OBJECT-TYPE - SYNTAX HpSystemAirTempEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This is the table for chassis temperature - details." - INDEX { hpSystemAirSensor } - ::= { hpSystemAirTempTable 1 } - - HpSystemAirTempEntry ::= - SEQUENCE { - hpSystemAirSensor Integer32, - hpSystemAirName OCTET STRING, - hpSystemAirCurrentTemp OCTET STRING, - hpSystemAirMaxTemp OCTET STRING, - hpSystemAirMinTemp OCTET STRING, - hpSystemAirOverTemp INTEGER, - hpSystemAirThresholdTemp OCTET STRING, - hpSystemAirAvgTemp OCTET STRING, - hpSystemAirEntPhysicalIndex PhysicalIndex - } - - hpSystemAirSensor OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This is the index for this table.This object - describes chassis attached temperature sensor. - Based on the value of this index, temperature - details are obtained from the sensor and are - given." - ::= {hpSystemAirTempEntry 1} - - hpSystemAirName OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..20)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object describes name of the system - which is chassis attached temperature sensor - number. For example if the index - (hpSystemAirSensor) is '0' then the system - name is sys-1. Index starts from '0' but - sensor number is '1'." - ::= {hpSystemAirTempEntry 2} - - hpSystemAirCurrentTemp OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..6)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives current temperature of the - system. This is the current temperature given - by the indexed chassis attached temperature - sensor on box." - ::= {hpSystemAirTempEntry 3} - - hpSystemAirMaxTemp OBJECT-TYPE - SYNTAX OCTET STRING( SIZE(1..6)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives Maximum temperature of the - chassis." - ::= {hpSystemAirTempEntry 4} - - - hpSystemAirMinTemp OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..6)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives Minimum temperature of the - chassis." - ::= {hpSystemAirTempEntry 5} - - hpSystemAirOverTemp OBJECT-TYPE - SYNTAX INTEGER{ - yes(1), - no(2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives Over temperature of the - system. If the current temperature of the - board is above threshold temperature and if - board stays at this temperature for 10 full - seconds then its called over temperature." - ::= {hpSystemAirTempEntry 6} - - hpSystemAirThresholdTemp OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..6)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives Threshold temperature of - the system. This is the utmost temperature - that the chassis can sustain. If chassis - temperature is above threshold then alarm will - ring to inform over temperature condition." - ::= {hpSystemAirTempEntry 7} - - hpSystemAirAvgTemp OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..5)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives Average temperature of the - system. There will be some roll up function - which will check current temperature at - particular intervals. Based on these current - temperatures over certain time, average - temperature is calculated." - ::= {hpSystemAirTempEntry 8} - - hpSystemAirEntPhysicalIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This gives the entPhysicalIndex of the temperature - sensor as in the entPhysicalTable (rfc2737)." - ::= {hpSystemAirTempEntry 9} - - hpicfFanTrayType OBJECT-TYPE - SYNTAX INTEGER { - standard(1), - highPerformance(2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "If opacity shield is installed hpicsFanTrayType - should be HighPerformance. This is applicable - only for 5406 5412 8212 and 8206 Switches." - DEFVAL { standard } - ::= { hpicfChassis 9 } - - hpicfOpacityShieldInstalled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "It indicates that Opacity shield is Installed on - the switch. This is applicable only for 5406,5412, - 8212 and 8206 Switches." - DEFVAL { false } - ::= { hpicfChassis 10 } - - - - - - -- Common Traps - - - hpicfSensorTrap NOTIFICATION-TYPE - OBJECTS { hpicfSensorStatus, hpicfSensorDescr } - STATUS current - DESCRIPTION - "An hpicfSensorTrap indicates that there has been a - change of state on one of the sensors in this - chassis. The hpicfSensorStatus indicates the new - status value for the changed sensor." - ::= { hpicfCommonTrapsPrefix 3 } - - -- conformance information - - hpicfChassisConformance - OBJECT IDENTIFIER ::= { hpicfChassisMib 1 } - - hpicfChassisCompliances - OBJECT IDENTIFIER ::= { hpicfChassisConformance 1 } - hpicfChassisGroups - OBJECT IDENTIFIER ::= { hpicfChassisConformance 2 } - - -- compliance statements - - hpicfChasAdvStkCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "********* THIS COMPLIANCE IS DEPRECATED ********* - - A compliance statement for AdvanceStack chassis - devices." - MODULE - MANDATORY-GROUPS { hpicfChassisBasicGroup } - - GROUP hpicfSensorGroup - DESCRIPTION - "This group should be implemented on any - AdvanceStack device with redundant power - supplies or other appropriate sensors." - - GROUP hpicfSensorNotifyGroup - DESCRIPTION - "This group should be implemented on any - AdvanceStack device with redundant power - supplies or other appropriate sensors." - - ::= { hpicfChassisCompliances 1 } - - hpicfChasAdvStk2Compliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "********* THIS COMPLIANCE IS DEPRECATED ********* - - An updated compliance statement for AdvanceStack - chassis devices that includes the - hpicfChassisAddrGroup." - MODULE - MANDATORY-GROUPS { hpicfChassisBasicGroup, - hpicfChassisAddrGroup } - - GROUP hpicfSensorGroup - DESCRIPTION - "This group should be implemented on any - AdvanceStack device with redundant power - supplies or other appropriate sensors." - - GROUP hpicfSensorNotifyGroup - DESCRIPTION - "This group should be implemented on any - AdvanceStack device with redundant power - supplies or other appropriate sensors." - - ::= { hpicfChassisCompliances 2 } - - hpicfChasSensorCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "A compliance statement for non-chassis devices, - or chassis devices implementing a standards-based - MIB for obtaining chassis information, which - contain redundant power supplies or other - appropriate sensors." - MODULE - MANDATORY-GROUPS { hpicfSensorGroup, - hpicfSensorNotifyGroup } - - ::= { hpicfChassisCompliances 3 } - - hpicfChasTempCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - " A compliance statement for chassis's system air temperature - details." - MODULE - MANDATORY-GROUPS {hpicfChasTempGroup} - - ::= { hpicfChassisCompliances 4 } - - hpicfOpacityShieldsCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "A compliance statement for chassis's opacity Shield" - MODULE - MANDATORY-GROUPS {hpicfOpacityShieldsGroup} - - ::= { hpicfChassisCompliances 5 } - - -- units of conformance - - hpicfChassisBasicGroup OBJECT-GROUP - OBJECTS { hpicfChassisId, - hpicfChassisNumSlots, - hpicfSlotIndex, - hpicfSlotObjectId, - hpicfSlotLastChange, - hpicfSlotDescr, - hpicfEntityIndex, - hpicfEntityFunction, - hpicfEntityObjectId, - hpicfEntityDescr, - hpicfEntityTimestamp, - hpicfSlotMapSlot, - hpicfSlotMapEntity - } - STATUS deprecated - DESCRIPTION - "********* THIS GROUP IS DEPRECATED ********* - - A collection of objects for determining the - contents of an ICF chassis device." - ::= { hpicfChassisGroups 1 } - - hpicfSensorGroup OBJECT-GROUP - OBJECTS { hpicfSensorIndex, - hpicfSensorObjectId, - hpicfSensorNumber, - hpicfSensorStatus, - hpicfSensorWarnings, - hpicfSensorFailures, - hpicfSensorDescr - } - STATUS current - DESCRIPTION - "A collection of objects for monitoring the status - of sensors in an ICF chassis." - ::= { hpicfChassisGroups 2 } - - hpicfChassisAddrGroup OBJECT-GROUP - OBJECTS { hpicfChasAddrEntity } - STATUS deprecated - DESCRIPTION - "********* THIS GROUP IS DEPRECATED ********* - - A collection of objects to allow a management - station to determine which devices are in the same - chassis." - ::= { hpicfChassisGroups 3 } - - hpicfSensorNotifyGroup NOTIFICATION-GROUP - NOTIFICATIONS { hpicfSensorTrap } - STATUS current - DESCRIPTION - "A collection of notifications used to indicate - changes in the status of sensors." - ::= { hpicfChassisGroups 4 } - - hpicfChasTempGroup OBJECT-GROUP - OBJECTS { hpSystemAirName, - hpSystemAirCurrentTemp, - hpSystemAirMaxTemp, - hpSystemAirMinTemp, - hpSystemAirThresholdTemp, - hpSystemAirOverTemp, - hpSystemAirAvgTemp, - hpSystemAirEntPhysicalIndex - } - STATUS current - DESCRIPTION - "A collection objects to give temperature details - of chassis" - ::= { hpicfChassisGroups 5 } - hpicfOpacityShieldsGroup OBJECT-GROUP - OBJECTS { hpicfFanTrayType , - hpicfOpacityShieldInstalled } - STATUS current - DESCRIPTION - "A collection of objects for Opacity Shields - of chassis" - ::= { hpicfChassisGroups 6 } - - END - diff --git a/mibs/orig/HP-ICF-OID b/mibs/orig/HP-ICF-OID deleted file mode 100644 index 9ab0bc1..0000000 --- a/mibs/orig/HP-ICF-OID +++ /dev/null @@ -1,4408 +0,0 @@ -HP-ICF-OID DEFINITIONS ::= BEGIN - - IMPORTS - enterprises, MODULE-IDENTITY, OBJECT-IDENTITY - FROM SNMPv2-SMI; - - icf MODULE-IDENTITY - LAST-UPDATED "201212060000Z" -- Dec 6, 2012 - ORGANIZATION "HP Networking" - CONTACT-INFO "Hewlett Packard Company - 8000 Foothills Blvd. - Roseville, CA 95747" - DESCRIPTION "This MIB module describes devices in the HP - Integrated Communication Facility product - line." - - - REVISION "201405151300Z" -- May 5, 2014, NON-OFFICIAL VERSION - DESCRIPTION "Customized/patched version, not an official release by HP. - Modified for netdisco-mibs by Jeroen van Ingen" - - - REVISION "201212060000Z" -- Dec 6, 2012 - DESCRIPTION "Mib Description Issue fixes." - - REVISION "201208210000Z" -- August 21, 2012 - DESCRIPTION "Added unique stacking definitions for - 2920 stackable switch series." - - REVISION "201204020000Z" -- April 2, 2012 - DESCRIPTION "Added the following to support E2530 switches: - J9772A HP 2530-48G-PoE+ Switch, - J9773A HP 2530-24G-PoE+ Switch, - J9774A HP 2530-8G-PoE+ Switch, - J9775A HP 2530-48G Switch, - J9776A HP 2530-24G Switch, - J9777A HP 2530-8G Switch, - J9778A HP 2530-48-PoE+ Switch, - J9779A HP 2530-24-PoE+ Switch, - J9780A HP 2530-8-PoE+ Switch, - J9781A HP 2530-48 Switch, - J9782A HP 2530-24 Switch, - J9783A HP 2530-8 Switch" - - REVISION "201203220000Z" -- March 22, 2012 - DESCRIPTION "Added the Jnumbers J9737A, J9738A, J9739A - for 2920 stackable switch series." - - REVISION "201107030000Z" -- July 3, 2011 - DESCRIPTION "Added hpicfIpv6RAGuard MIB for - raGuard." - - REVISION "201103030000Z" -- March 3, 2011 - DESCRIPTION "Added hpicfTransceiverMIB for - transceivers." - - REVISION "201009061632Z" -- Sep 06, 2010 - DESCRIPTION "Added hpicfTcp MIB." - - REVISION "201008040000Z" -- Aug 04, 2010 - DESCRIPTION "Added hpSwitchModuleJ9637A." - - REVISION "201007220000Z" -- July 22, 2010 - DESCRIPTION "Added hpTunnelMIB for Tunnels." - REVISION "201006250000Z" -- June 25, 2010 - DESCRIPTION "Added hpSwitchModuleJ9485A and hpSBMMIB for - HP Survivable Branch Module." - - REVISION "201006220000Z" -- June 22, 2010 - DESCRIPTION "Added hpicfLoadBalanceMod for Load Balancing." - REVISION "201005180000Z" -- May 18, 2010 - DESCRIPTION "Added the following fixed modules for stacking: - hpSwitchModuleJ9573, hpSwitchModuleJ9574x, - hpSwitchModuleJ9574y, hpSwitchModuleJ9575, - hpSwitchModuleJ9576x, hpSwitchModuleJ9576y, - hpSwitchModuleJ9584, hpSwitchModuleJ9585, - hpSwitchModuleJ9586x, hpSwitchModuleJ9586y, - hpSwitchModuleJ9587, hpSwitchModuleJ9588x, - hpSwitchModuleJ9588y." - - REVISION "201005170000Z" -- May 17, 2010 - DESCRIPTION "Added the following to support 2620 switches: - J9626A HP 2620-48 ES3652BT-FLF-18 Switch, - J9623A HP 2620-24 ES3628BT-FLF-18 Switch, - J9627A HP 2620-48-PoE+ ES3652BT-HPoE-FLF-18 Switch, - J9625A HP 2620-24-PoE+ ES3628BT-HPoE-FLF-18 Switch, - J9624A HP 2620-24-PPoE+ ES3628BT-HPPoE-FLF-18 Switch" - REVISION "201004220000Z" -- Apr 22, 2010 - DESCRIPTION "Added the following to support stacking: - hpSwitchJ9573, hpSwitchJ9574, hpSwitchJ9575, - hpSwitchJ9576, hpSwitchJ9584, hpSwitchJ9585, - hpSwitchJ9586, hpSwitchJ9587, hpSwitchJ9588. - Also added hpStack, hpSwitchJ9580PowerSupply, - hpSwitchJ9581PowerSupply, hpSwitchJ9582FanTray." - - REVISION "201004110000Z" -- Apr 11, 2010 - DESCRIPTION "Added hpEntityPowerMIB" - - REVISION "201003220000Z" -- Mar 22, 2010 - DESCRIPTION "Added hpStackMIB" - - REVISION "200910160000Z" -- Oct 16, 2009 - DESCRIPTION "Added 8-port PoE 10/100/1000 and 10/100 - switches: 2915-8G-PoE (J9562A) and 2615-8-PoE (J9565A)." - - REVISION "200909250000Z" -- Sep 25, 2009 - DESCRIPTION "Added the following: - hpSwitchModuleJ9534A, hpSwitchModuleJ9535A, - hpSwitchModuleJ9536A, hpSwitchModuleJ9537A, - hpSwitchModuleJ9538A, hpSwitchModuleJ9546A, - hpSwitchModuleJ9547A, hpSwitchModuleJ9548A, - hpSwitchModuleJ9549A, hpSwitchModuleJ9550A, - hpSwitchAdvServicesModule, - hpSwitchExtServicesModule, - hpSwitchModuleJ9485A." - - REVISION "200909240000Z" -- Sep 24, 2009 - DESCRIPTION "Added hpicfDebugLog" - - REVISION "200909090000Z" -- Sep 09, 2009 - DESCRIPTION "Added 2640-8-POE (J93xxA) and 2640G-8-POE (J93yyA) - 8-port PoE 10/100 and 10/100/1000 switches" - - REVISION "200907080000Z" -- Jul 08, 2009 - DESCRIPTION "Added hpSwitchModuleJ9312A" - - REVISION "200906230000Z" -- Jun 23, 2009 - DESCRIPTION "Added hpSwitchJ9091B" - - REVISION "200904080000Z" -- Apr 08, 2009 - DESCRIPTION "Added hpSwitchModuleJ9477A, hpSwitchJ9310A - and hpSwitchJ9311A" - - REVISION "200902170000Z" -- Feb 17, 2009 - DESCRIPTION "Added definitions for 3500 10/100 family" - - REVISION "200902040000Z" -- Feb 4, 2009 - DESCRIPTION "Added hpSwitchModuleJ9307A, hpSwitchModuleJ9308A - hpSwitchModuleJ9478A and hpSwitchModuleJ9309A" - - REVISION "200902020000Z" -- Feb 02. 2009 - DESCRIPTION "Added definition for 1810-8(J9449A) and 1810-24(J9450A)" - - REVISION "200812150001Z" -- Dec 15, 2008 - DESCRIPTION "Added hpSwitchImage" - - REVISION "200812150000Z" -- Dec 15, 2008 - DESCRIPTION "Added hpicfOobmMIB" - - REVISION "200810300000Z" -- Oct 30, 2008 - DESCRIPTION "Added hpicfSysMgmt and hpicfSecurityDevice" - - REVISION "200810240000Z" -- Oct 24, 2008 - DESCRIPTION "Added hpicfDhcpClient" - - REVISION "200810210000Z" -- Oct 21, 2008 - DESCRIPTION "Updated official name for 2910al family" - - REVISION "200810020000Z" -- Oct 2, 2008 - DESCRIPTION "Added 2520G-24-PoE(J9299A) and 2520G-8-PoE(J9298A)" - - REVISION "200808060000Z" -- Aug 6, 2008 - DESCRIPTION "Added 2520-24-PoE(J9138A) and 2520-8-PoE(J9137A)" - - REVISION "200805120000Z" -- May 12, 2008 - DESCRIPTION "Added 1800-24G-B(J9028B) and changed 2510-24-B(J9019B)" - - REVISION "200803100000Z" -- Mar 10, 2008 - DESCRIPTION "Added hpicfSyslog " - - REVISION "200803060000Z" -- Mar 6, 2008 - DESCRIPTION "Added 2510G-24 (J9279A) and 2510G-48 (J9280A)" - - REVISION "200802150000Z" -- Feb 15, 2008 - DESCRIPTION "Added definitions for 2910" - - REVISION "200802041525Z" -- February 04, 2008 - DESCRIPTION "Added definitions for transceivers." - - REVISION "200710230001Z" -- Oct 23, 2007 - DESCRIPTION "Added definitions for 2510B" - - REVISION "200710230000Z" -- Oct 23, 2007 - DESCRIPTION "Added definitions for 2626C and 2650C" - - REVISION "200705210000Z" -- May 21, 2007 - DESCRIPTION "Revised definitions for J8766A and - J8988A devices." - - REVISION "200704300000Z" -- April 30, 2007 - DESCRIPTION "Added definitions for all 2610 products." - - REVISION "200704170000Z" -- April 17, 2006 - DESCRIPTION "Added hpicfProviderBridge node and branch." - - REVISION "200610310000Z" -- October 31, 2006 - DESCRIPTION "Added hpicfCommonSecurity node and branch." - - REVISION "200609251200Z" -- Sept 25, 2006 - DESCRIPTION "Cleaned up definition of J8715 Chassis." - - REVISION "200609081200Z" -- Sept 8, 2006 - DESCRIPTION "Added definitions for ESP blades." - - REVISION "200608221200Z" -- Aug 22, 2006 - DESCRIPTION "Added definitions for hpicfL3MacConfigMIB." - - REVISION "200608040000Z" -- August 04, 2006 - DESCRIPTION "Added definition for hpicfInstMonMIB." - - REVISION "200607271200Z" -- July 27, 2006 - DESCRIPTION "Added definitions for J9032A, J9031A, - J8768A, J8765B, J9033A, J9036A, J9037A, - J8766A and J8988A devices." - - REVISION "200607260000Z" -- July 26, 2006 - DESCRIPTION "Added definition for J9049A and J9050A switch." - - REVISION "200606300000Z" -- June 30, 2006 - DESCRIPTION "Added definition for J9038A device." - - REVISION "200606051233Z" -- June 05, 2006 - DESCRIPTION "Added definition for hpicfDhcpSnoopMIB." - - REVISION "200605171233Z" -- May 17, 2006 - DESCRIPTION "Added definition for hpSwitchAuthorizationMIB." - - REVISION "200603201627Z" -- Mar. 20, 2006 - DESCRIPTION "Added definition for J9028A and J9029A switch" - - REVISION "200601101853Z" -- Jan. 10, 2006 - DESCRIPTION "Added definition J8726A device." - - REVISION "200508041619Z" -- August 4, 2005 - DESCRIPTION "Added definitions for hpSwitchAuthenticationMIB, - hpSwitchAccountingMIB, hpicfXrrpMIB, hpicfUsrAuthMIB, - hpicfPimMIB, hpicfUdpFwd, - hpicfConnectionRateFilter, hpicfDot1xMIB, - hpicfVrrpMIB." - - REVISION "200506081244Z" -- June 8, 2005 - DESCRIPTION "Added definition for hpicFrabric." - - REVISION "200505202123Z" -- May 20, 2005 - DESCRIPTION "Added definitions J9001 and J9003 devices." - - REVISION "200503221926Z" -- March 22, 2005 - DESCRIPTION "Added definitions J8771A and J8772A devices." - - REVISION "200503081530Z" -- March 08, 2005 - DESCRIPTION "Added definition for hpSwitchModuleJ8762A, - hpSwitch2600n8PPortSlot, updated definition - for J8474A, updated hpSwitchJ8433A, - updated hpSwitchJ8474A, and updated - hpSwitchModuleJ8433A." - - REVISION "200502250041Z" -- February 24, 2005 - DESCRIPTION "Added definitions for hpicfRateLimitMIB and - J8680A router." - - REVISION "200501111745Z" -- January 11, 2005 - DESCRIPTION "Added definitions for J8770A, J8773A, J8765A, - J8764A, J8776A, and J8763A products." - - REVISION "200501102043Z" -- January 10, 2005 - DESCRIPTION "Added definitions for J8697A, J8698A products." - - REVISION "200409102043Z" -- September 10, 2004 - DESCRIPTION "Added definitions for more WAN products." - - REVISION "200409021030Z" -- September 02, 2004 - DESCRIPTION "Added definitions for hpSwitchModuleJ4905A, - hpSwitchModuleJ4906A, hpSwitchModuleJ8433A, - hpSwitchModuleJ8474A, and hpicfJumboMIB." - - REVISION "200408091030Z" -- August 09, 2004 - DESCRIPTION "Added HP 6400cl-6XG and 6410cl-6XG." - - REVISION "200407282043Z" -- July 28, 2004 - DESCRIPTION "Added definitions for J8718A and J8719A." - - REVISION "200403310051Z" -- March 31, 2004 - DESCRIPTION "Added definitions for 10Gig SR, LR, and ER." - - - REVISION "200403310050Z" -- March 31, 2004 - DESCRIPTION "Added HP 2650-CR and 2626-CR Switch - definitions." - - REVISION "200402122115Z" -- February 12, 2004 - DESCRIPTION "Added definition for 10Gig CX4, - ESP port and WAN Products" - - REVISION "200401201855Z" -- January 20, 2004 - DESCRIPTION "Added definitions for J8161A, J4907A, J8162A, - J4820B, J4821B, and J4878B." - - REVISION "200312291705Z" -- December 29, 2003 - DESCRIPTION "Added definitions for J4905A and J4906A Switch - definitions." - - REVISION "200306091617Z" -- June 9, 2003 - DESCRIPTION "Added definitions for wireless products." - - REVISION "200304101118Z" -- April 10, 2003 - DESCRIPTION "Added HP 2650-PWR and 2626-PWR Switch - definitions." - - REVISION "200302041716Z" -- February 04, 2003 - DESCRIPTION "Added Transceiver cards for HP Switch 2824." - - REVISION "200301281510Z" -- January 28, 2003 - DESCRIPTION "Added HP 2626 Switch definitions." - - REVISION "200301211633Z" -- January 21, 2003 - DESCRIPTION "Added Proliant Switch Object to hpEtherSwitch." - - REVISION "200204060100Z" -- April 5, 2002 - DESCRIPTION "Added new HP Switch definitions" - - REVISION "200011032225Z" -- November 3, 2000 - DESCRIPTION "Added new HP Switch definitions" - - REVISION "9909030004Z" -- September 3, 1999 - DESCRIPTION "Added definition for HP Routing - Switch products." - - REVISION "9809240004Z" -- September 24, 1998 - DESCRIPTION "Added definitions for 100Mbit and 10/100 - hub products, and definitions for the - HP switch products." - - REVISION "9710210242Z" -- October 21, 1997 - DESCRIPTION "Added definitions for new hub products - (10Base-T Hub-12M, 10Base-T Hub-24M, and - 10Base-T Hub-16M) and Switch 2000 ATM module. - Added branch for the Fault Finder MIB." - - REVISION "9703060342Z" -- March 6, 1997 - DESCRIPTION "Added definitions for new switch products - (208/224), 100T hub (J3233A). Added missing - include of OBJECT-IDENTITY." - - REVISION "9609132303Z" -- September 13, 1996 - DESCRIPTION "Initial revision. Split from the former - monolithic hpicf MIB." - ::= { nm 14 } - - hp OBJECT IDENTIFIER ::= { enterprises 11 } - nm OBJECT IDENTIFIER ::= { hp 2 } - - -- Branches under the icf node. Most of these - -- branches are defined in other modules. - - icfCommon OBJECT IDENTIFIER ::= { icf 1 } - icfHub OBJECT IDENTIFIER ::= { icf 2 } - icfBridge OBJECT IDENTIFIER ::= { icf 3 } - - icfSecurity OBJECT IDENTIFIER ::= { icf 4 } - icfConfig OBJECT IDENTIFIER ::= { icf 5 } - - icfEsSwitch OBJECT IDENTIFIER ::= { icf 6 } - hpEs OBJECT IDENTIFIER ::= { icfEsSwitch 1 } - hpEs2 OBJECT IDENTIFIER ::= { icfEsSwitch 2 } - hpNetSwitch OBJECT IDENTIFIER ::= { icfEsSwitch 3 } - - icfRouter OBJECT IDENTIFIER ::= { icf 7 } - - icfDot12Draft OBJECT IDENTIFIER ::= { icf 8 } - icfVgRepeater OBJECT IDENTIFIER ::= { icfDot12Draft 1 } - icfVgInterface OBJECT IDENTIFIER ::= { icfDot12Draft 2 } - - hpEntityMIB OBJECT IDENTIFIER ::= { icf 9 } - - hpicfAdmin OBJECT IDENTIFIER ::= { icf 10 } - hpicfObjects OBJECT IDENTIFIER ::= { icf 11 } - hpicfNotifications OBJECT IDENTIFIER ::= { icf 12 } - - hpicfOEMs OBJECT IDENTIFIER ::= { icf 13 } - hpicfFEHub OBJECT IDENTIFIER ::= { hpicfOEMs 1 } - - hpicfSyslog OBJECT IDENTIFIER ::= { icf 14 } - - -- HP defined transport domains - - hpicfDomains OBJECT IDENTIFIER ::= { hpicfAdmin 1 } - - hpicfLLCDomain OBJECT-IDENTITY - STATUS current - DESCRIPTION "The SNMP over 802.2 transport domain." - ::= { hpicfDomains 1 } - - - -- Placeholder for registering object modules. Note that the - -- MODULE-IDENTITY, MODULE-COMPLIANCE, and OBJECT-GROUP - -- definitions for each module are declared beneath these - -- branches. - - hpicfObjectModules OBJECT IDENTIFIER ::= { hpicfAdmin 2 } - - icfSecurityMib OBJECT IDENTIFIER ::= { hpicfObjectModules 1 } - hpicfChainMib OBJECT IDENTIFIER ::= { hpicfObjectModules 2 } - hpicfChassisMib OBJECT IDENTIFIER ::= { hpicfObjectModules 3 } - hpicfDownloadMib OBJECT IDENTIFIER ::= { hpicfObjectModules 4 } - hpicfBasicMib OBJECT IDENTIFIER ::= { hpicfObjectModules 5 } - hpicfStackMib OBJECT IDENTIFIER ::= { hpicfObjectModules 6 } - hpicfLinkTestMib OBJECT IDENTIFIER ::= { hpicfObjectModules 7 } - hpicfGenRptrMib OBJECT IDENTIFIER ::= { hpicfObjectModules 8 } - hpicf8023RptrMib OBJECT IDENTIFIER ::= { hpicfObjectModules 9 } - icfVgRepeaterMib OBJECT IDENTIFIER ::= { hpicfObjectModules 10 } - hpicfVgRptrMib OBJECT IDENTIFIER ::= { hpicfObjectModules 11 } - hpicfFaultFinderMib OBJECT IDENTIFIER ::= { hpicfObjectModules 12 } - hpicfJumboMIB OBJECT IDENTIFIER ::= { hpicfObjectModules 13 } - hpicfRateLimitMIB OBJECT IDENTIFIER ::= { hpicfObjectModules 14 } - - -- Placeholder for registering agent capabilities modules - - hpicfAgentModules OBJECT IDENTIFIER ::= { hpicfAdmin 3 } - - - -- Placeholders for branches allocated to agent capabilities - -- modules - - hpicfETwistHubAgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 1 } - hpicfETwistBridgeAgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 2 } - hpicfAdvStk8023AgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 3 } - hpicfAdvStkVGAgentsMib OBJECT IDENTIFIER ::= { hpicfAgentModules 4 } - - -- Placeholder for the HP ICF Textual Conventions module - - hpicfTextualConventions OBJECT IDENTIFIER ::= { hpicfAdmin 4 } - - - -- Placeholders for branches allocated to other MIB modules - -- under the hpicfObjects node - - hpicfCommon OBJECT IDENTIFIER ::= { hpicfObjects 1 } - hpicfRepeater OBJECT IDENTIFIER ::= { hpicfObjects 2 } - hpicfVg OBJECT IDENTIFIER ::= { hpicfObjects 3 } - hpicfGenericRepeater OBJECT IDENTIFIER ::= { hpicfObjects 4 } - hpicfSwitch OBJECT IDENTIFIER ::= { hpicfObjects 5 } - hpicfAccess OBJECT IDENTIFIER ::= { hpicfObjects 6 } - hpicfWAN OBJECT IDENTIFIER ::= { hpicfObjects 7 } - hpicfFabric OBJECT IDENTIFIER ::= { hpicfObjects 8 } - hpicfSecurityDevice OBJECT IDENTIFIER ::= { hpicfObjects 9 } - hpicfSysMgmt OBJECT IDENTIFIER ::= { hpicfObjects 10 } - - -- Branches under the hpicfSwitch node - hpSwitch OBJECT IDENTIFIER ::= { hpicfSwitch 1 } - - -- Branches under the hpSwitch node - hpOpSystem OBJECT IDENTIFIER ::= { hpSwitch 1 } - hpHwSystem OBJECT IDENTIFIER ::= { hpSwitch 2 } - hpVLAN OBJECT IDENTIFIER ::= { hpSwitch 3 } - hpConfig OBJECT IDENTIFIER ::= { hpSwitch 7 } - hpSwitchStatistics OBJECT IDENTIFIER ::= { hpSwitch 9 } - hpSwitchVirtualStackMib OBJECT IDENTIFIER ::= { hpSwitch 10 } - hpicfDhcpRelay OBJECT IDENTIFIER ::= { hpSwitch 11 } - hpicfBridge OBJECT IDENTIFIER ::= { hpSwitch 12 } - hpicfRip OBJECT IDENTIFIER ::= { hpSwitch 13 } - hpicfOspf OBJECT IDENTIFIER ::= { hpSwitch 14 } - hpicfIpRouting OBJECT IDENTIFIER ::= { hpSwitch 15 } - hpSwitchAuthenticationMIB OBJECT IDENTIFIER ::= { hpSwitch 16 } - hpSwitchAccountingMIB OBJECT IDENTIFIER ::= { hpSwitch 17 } - hpicfXrrpMIB OBJECT IDENTIFIER ::= { hpSwitch 18 } - hpicfUsrAuthMIB OBJECT IDENTIFIER ::= { hpSwitch 19 } - hpicfPimMIB OBJECT IDENTIFIER ::= { hpSwitch 20 } - hpicfMstpMIB OBJECT IDENTIFIER ::= { hpSwitch 21 } - hpicfUdpFwd OBJECT IDENTIFIER ::= { hpSwitch 23 } - hpicfConnectionRateFilter OBJECT IDENTIFIER ::= { hpSwitch 24 } - hpicfDot1xMIB OBJECT IDENTIFIER ::= { hpSwitch 25 } - hpicfLldpMIB OBJECT IDENTIFIER ::= { hpSwitch 30 } - hpicfVrrpMIB OBJECT IDENTIFIER ::= { hpSwitch 31 } - hpSwitchAuthorizationMIB OBJECT IDENTIFIER ::= { hpSwitch 32 } - hpicfUdldMIB OBJECT IDENTIFIER ::= { hpSwitch 33 } - hpicfIpDhcpSnoop OBJECT IDENTIFIER ::= { hpSwitch 34 } - hpicfInstMonMIB OBJECT IDENTIFIER ::= { hpSwitch 35 } - hpicfL3MacConfigMIB OBJECT IDENTIFIER ::= { hpSwitch 36 } - hpicfArpProtect OBJECT IDENTIFIER ::= { hpSwitch 37 } - hpicfSnmpMIB OBJECT IDENTIFIER ::= { hpSwitch 38 } - hpicfIpLockdown OBJECT IDENTIFIER ::= { hpSwitch 39 } - hpicfProviderBridge OBJECT IDENTIFIER ::= { hpSwitch 40 } - hpicfGppcMIB OBJECT IDENTIFIER ::= { hpSwitch 41 } - hpicfAutorun OBJECT IDENTIFIER ::= { hpSwitch 42 } - hpicfBgpv4 OBJECT IDENTIFIER ::= { hpSwitch 43 } - hpicfOspfv3MIB OBJECT IDENTIFIER ::= { hpSwitch 44 } - hpicfInstMIB OBJECT IDENTIFIER ::= { hpSwitch 45 } - hpicfFtrCo OBJECT IDENTIFIER ::= { hpSwitch 46 } - hpicfIpPolicyMIB OBJECT IDENTIFIER ::= { hpSwitch 47 } - hpicfMldMIB OBJECT IDENTIFIER ::= { hpSwitch 48 } - hpicfDhcpv6Relay OBJECT IDENTIFIER ::= { hpSwitch 50 } - hpicfScriptMIB OBJECT IDENTIFIER ::= { hpSwitch 51 } - hpicfUSBPortMIB OBJECT IDENTIFIER ::= { hpSwitch 53 } - hpicfFanMIB OBJECT IDENTIFIER ::= { hpSwitch 54 } - hpicfPsMIB OBJECT IDENTIFIER ::= { hpSwitch 55 } - hpicfSavepowerMIB OBJECT IDENTIFIER ::= { hpSwitch 56 } - hpicfDhcpClient OBJECT IDENTIFIER ::= { hpSwitch 57 } - hpicfOobmMIB OBJECT IDENTIFIER ::= { hpSwitch 58 } - hpSwitchImage OBJECT IDENTIFIER ::= { hpSwitch 59 } - hpicfDosFilterMib OBJECT IDENTIFIER ::= { hpSwitch 60 } - hpicfGppcv2MIB OBJECT IDENTIFIER ::= { hpSwitch 61 } - hpicfZoneMIB OBJECT IDENTIFIER ::= { hpSwitch 62 } - hpicfIgmpMIB OBJECT IDENTIFIER ::= { hpSwitch 63 } - hpicfDebugLog OBJECT IDENTIFIER ::= { hpSwitch 64 } - hpicfMacNotifyMIB OBJECT IDENTIFIER ::= { hpSwitch 66 } - hpicfGenericVlanMIB OBJECT IDENTIFIER ::= { hpSwitch 67 } - hpSwitchErrorMsgMIB OBJECT IDENTIFIER ::= { hpSwitch 68 } - hpStackMIB OBJECT IDENTIFIER ::= { hpSwitch 69 } - hpicfLayer3VlanConfigMIB OBJECT IDENTIFIER ::= { hpSwitch 70 } - hpEntityPowerMIB OBJECT IDENTIFIER ::= { hpSwitch 71 } - hpicfTrafficTemplateMIB OBJECT IDENTIFIER ::= { hpSwitch 72 } - hpicfDcbxMIB OBJECT IDENTIFIER ::= { hpSwitch 73 } - hpicfUfdMIB OBJECT IDENTIFIER ::= { hpSwitch 74 } - hpSBMMIB OBJECT IDENTIFIER ::= { hpSwitch 75 } - hpicfLoadBalanceMod OBJECT IDENTIFIER ::= { hpSwitch 76 } - hpTunnelMIB OBJECT IDENTIFIER ::= { hpSwitch 77 } - hpSwitchFipSnoopingMib OBJECT IDENTIFIER ::= { hpSwitch 78 } - hpicfTcpMib OBJECT IDENTIFIER ::= { hpSwitch 79 } - hpicfTransceiverMIB OBJECT IDENTIFIER ::= { hpSwitch 82 } - hpicfSvcsAppMIB OBJECT IDENTIFIER ::= { hpSwitch 86 } - hpicfIpv6RAGuard OBJECT IDENTIFIER ::= { hpSwitch 87 } - hpicfRpvstMIB OBJECT IDENTIFIER ::= { hpSwitch 88 } - hpicfOpenFlowMIB OBJECT IDENTIFIER ::= { hpSwitch 89 } - hpicfVrrpv3MIB OBJECT IDENTIFIER ::= { hpSwitch 90 } - hpicfSflowMIB OBJECT IDENTIFIER ::= { hpSwitch 92 } - hpicfMstpExtnMIB OBJECT IDENTIFIER ::= { hpSwitch 94 } - hpicfMadMIB OBJECT IDENTIFIER ::= { hpSwitch 95 } - hpicfSmartLinkMIB OBJECT IDENTIFIER ::= { hpSwitch 96 } - hpicfServiceTunnel OBJECT IDENTIFIER ::= { hpSwitch 100 } - hpSwitchTrapMib OBJECT IDENTIFIER ::= { hpSwitch 104 } - hpicfJobSchedulerMIB OBJECT IDENTIFIER ::= { hpSwitch 105 } - - -- Branches under the hpicfCommon node - - hpicfChain OBJECT IDENTIFIER ::= { hpicfCommon 1 } - hpicfChassis OBJECT IDENTIFIER ::= { hpicfCommon 2 } - hpicfDownload OBJECT IDENTIFIER ::= { hpicfCommon 3 } - hpicfBasic OBJECT IDENTIFIER ::= { hpicfCommon 4 } - hpicfStack OBJECT IDENTIFIER ::= { hpicfCommon 5 } - hpicfLinktest OBJECT IDENTIFIER ::= { hpicfCommon 6 } - hpicfFaultFinder OBJECT IDENTIFIER ::= { hpicfCommon 7 } - hpicfPOE OBJECT IDENTIFIER ::= { hpicfCommon 9 } - hpicfCommonSecurity OBJECT IDENTIFIER ::= { hpicfCommon 12 } - hpicfSrcIpMIB OBJECT IDENTIFIER ::= { hpicfCommon 13 } - hpicfCoreDumpMIB OBJECT IDENTIFIER ::= { hpicfCommon 14 } - - - -- Branches for registering HP ICF notifications - - hpicfCommonTraps OBJECT IDENTIFIER ::= { hpicfNotifications 1 } - hpicfCommonTrapsPrefix OBJECT IDENTIFIER ::= { hpicfCommonTraps 0 } - - hpicf8023RptrTraps - OBJECT IDENTIFIER ::= { hpicfNotifications 2 } - hpicf8023RptrTrapsPrefix OBJECT IDENTIFIER ::= { hpicf8023RptrTraps 0 } - - hpicfVgRptrTraps OBJECT IDENTIFIER ::= { hpicfNotifications 3 } - hpicfVgRptrTrapsPrefix OBJECT IDENTIFIER ::= { hpicfVgRptrTraps 0 } - - hpicfGenRptrTraps OBJECT IDENTIFIER ::= { hpicfNotifications 4 } - hpicfGenRptrTrapsPrefix OBJECT IDENTIFIER ::= { hpicfGenRptrTraps 0 } - - hpicfRateLimitTraps OBJECT IDENTIFIER ::= { hpicfNotifications 5 } - hpicfRateLimitTrapsPrefix OBJECT IDENTIFIER ::= { hpicfRateLimitTraps 0 } - - hpicfSecLoggingTraps OBJECT IDENTIFIER ::= { hpicfNotifications 6 } - hpicfSecLoggingTrapsPrefix OBJECT IDENTIFIER ::= { hpicfSecLoggingTraps 0 } - - -- HP ICF Device Identifiers - - hpSystem OBJECT IDENTIFIER ::= { nm 3 } - netElement OBJECT IDENTIFIER ::= { hpSystem 7 } - - - -- Bridges - - bridge OBJECT IDENTIFIER ::= { netElement 1 } - - bridge1010 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 28673A 10:10 LAN Bridge." - ::= { bridge 1 } - - bridgeRemote OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 28674A/B Remote Bridge." - ::= { bridge 2 } - - eswitch OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2418A EtherTwist LAN Switch." - ::= { bridge 3 } - - eswitch2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2980A AdvanceStack LAN Switch-16." - ::= { bridge 8 } - - netSwitch100 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3126A AdvanceStack Switch 100." - ::= { bridge 9 } - - netSwitch200 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3125A AdvanceStack Switch 200." - ::= { bridge 10 } - - - -- Routers - - router OBJECT IDENTIFIER ::= { netElement 2 } - - icfRouterER OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27285A Router ER." - ::= { router 1 } - - icfRouterTR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27286A Router TR." - ::= { router 2 } - - icfRouterSR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27288A Router SR." - ::= { router 3 } - - icfRouterFR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27289A Router FR." - ::= { router 4 } - - icfRouterLR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP Router LR." - ::= { router 5 } - - icfRouterBR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27290A Router BR." - ::= { router 6 } - - icfRouterPR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2540A Router PR." - ::= { router 7 } - - icfRouter650 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2430A AdvanceStack Router 650." - ::= { router 8 } - - icfRouter230 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2540B Router 230." - ::= { router 9 } - - icfRouter250 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27289B Router 250." - ::= { router 10 } - - icfRouter255 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2543A Router 255." - ::= { router 11 } - - icfRouter210 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2628A AdvanceStack Router 210." - ::= { router 12 } - - -- Cards for the Router 650 - - icfRouter650Engine OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the routing - engine card for the HP J2430A AdvanceStack - Router 650." - ::= { icfRouter650 2 } - - icfRouter650Port4E OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2435A AdvanceStack Router 4E Port Module." - ::= { icfRouter650 3 } - - icfRouter650Port4S OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2434A AdvanceStack Router 4S Port Module." - ::= { icfRouter650 4 } - - icfRouter650Port4T OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2437A AdvanceStack Router 4T Port Module." - ::= { icfRouter650 5 } - - icfRouter650PortFDDI OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2436A AdvanceStack Router FDDI Port Module." - ::= { icfRouter650 6 } - - icfRouter650Port100VG OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2438A AdvanceStack Router 100VG Port - Module." - ::= { icfRouter650 7 } - - - -- Hubs - - hub OBJECT IDENTIFIER ::= { netElement 5 } - - etherTwist12 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 27288A/B EtherTwist Hub PLUS." - ::= { hub 1 } - - fiberOptic OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 28682A Fiber-Optic Hub PLUS." - ::= { hub 3 } - - etherTwist48 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 28699A EtherTwist Hub PLUS/48." - ::= { hub 4 } - - thinLAN OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 28692A ThinLAN Hub PLUS." - ::= { hub 5 } - - etherTwist24S OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2355A EtherTwist Secure Hub PLUS/24S" - ::= { hub 6 } - - advStack12 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2600A AdvanceStack 10Base-T Hub-12" - ::= { hub 7 } - - advStack24 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2601A/B AdvanceStack 10Base-T Hub-24." - ::= { hub 8 } - - advStack48 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2602A/B AdvanceStack 10Base-T Hub-48." - ::= { hub 9 } - - advStackVg15 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2410A AdvanceStack 100VG Hub-15." - ::= { hub 10 } - - advStackU8 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2610A AdvanceStack 10Base-T Hub-8U." - ::= { hub 11 } - - advStackU16 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2611A AdvanceStack 10Base-T Hub-16U." - ::= { hub 12 } - - advStackVg6 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2413A AdvanceStack 100VG Hub-7M." - ::= { hub 13 } - - advStackVg12 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2415A AdvanceStack 100VG Hub-14." - ::= { hub 14 } - - hpAdvStkEnetSH12R OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3200A AdvanceStack 10BT Switching Hub-12R." - ::= { hub 15 } - - hpAdvStkEnetSH24R OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3202A AdvanceStack 10BT Switching Hub-24R." - ::= { hub 16 } - - hpAdvStkEnetSH24T OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3204A AdvanceStack 10BT Switching Hub-24T." - ::= { hub 17 } - - hpAdvStk100Tx12TM OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3233A AdvanceStack 100B-TX Hub-12TM w/MGMT." - ::= { hub 18 } - - hp10THub16M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3188A 10Base-T Hub-16M." - ::= { hub 19} - - hp10BaseTHub12M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3301A 10Base-T Hub-12M" - ::= { hub 20 } - - hp10BaseTHub24M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3303A 10Base-T Hub-24M" - ::= { hub 21 } - - hpProCurve10T100THub12M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3288A 100Base-T Hub 12M" - ::= { hub 22 } - - hpProCurve10T100THub24M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3289A 100Base-T Hub 24M" - ::= { hub 23 } - - - -- Entity MIB OIDs - - chassis OBJECT IDENTIFIER ::= { netElement 8 } - - repeaterAgent OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2603A/B AdvanceStack Ethernet SNMP module." - ::= { chassis 1 } - - - chassisAgents OBJECT IDENTIFIER ::= { chassis 2 } - - icfVgAgent OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2414A AdvanceStack 100VG/ET SNMP/Bridge - Module." - ::= { chassisAgents 1 } - - icfVgAgent2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J2414B AdvanceStack 100VG/ET SNMP/Bridge - Module." - ::= { chassisAgents 3 } - - hpicfEnetSMM OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HPJ3133A AdvanceStack 8U/16U SNMP Module." - ::= { chassisAgents 4 } - - hpAdvStkEnetSHAgent OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HPJ3210A AdvanceStack 10BT Switching Hub - Management Module." - ::= { chassisAgents 5 } - - hpAdvStkSwStackTopMgmt OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HPJ3179A AdvanceStack Switch StackTop Management - Module." - ::= { chassisAgents 6 } - - hpSwitch8000CpuCard OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4110A Switch 8000M and HP J4121A Switch - 4000M CPU card." - ::= { chassisAgents 7 } - - icfSensors OBJECT IDENTIFIER ::= { chassis 3 } - - icfPowerSupplySensor OBJECT-IDENTITY - STATUS current - DESCRIPTION "Identifier for a power supply sensor type." - ::= { icfSensors 1 } - - icfFanSensor OBJECT-IDENTITY - STATUS current - DESCRIPTION "Identifier for a fan sensor type." - ::= { icfSensors 2 } - - icfTemperatureSensor OBJECT-IDENTITY - STATUS current - DESCRIPTION "Identifier for a temperature sensor type." - ::= { icfSensors 3 } - - icfFutureSlotSensor OBJECT-IDENTITY - STATUS current - DESCRIPTION "Identifier for a FutureSlot sensor type." - ::= { icfSensors 4 } - - - icfCards OBJECT IDENTIFIER ::= { chassis 4 } - - icfUnidentifiedCard OBJECT-IDENTITY - STATUS current - DESCRIPTION "Used to indicate that a module is installed in - a slot in a chassis, but the agent is unable to - identify it." - ::= { icfCards 1 } - - hpAdvStkEnetSHSwitch OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3212A AdvanceStack 10BT Switching Hub Switch - Module." - ::= { icfCards 2 } - - hpAdvStkSwStackExpander OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HPJ3180A AdvanceStack Switch Stack Expander - Module." - ::= { icfCards 3 } - - hpicfStacks OBJECT IDENTIFIER ::= { chassis 5 } - - hpAdvStkEnetSHStack OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a stack of - HP AdvanceStack 10Base-T Switching Hubs." - ::= { hpicfStacks 1 } - - hpStack OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the HP - stack. The stack can have the devices like - hpSwitchJ9573, hpSwitchJ9574, hpSwitchJ9575, - hpSwitchJ9576, hpSwitchJ9584, hpSwitchJ9585, - hpSwitchJ9586, hpSwitchJ9587, hpSwitchJ9588." - ::= { hpicfStacks 2 } - - hpStack2920 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the HP - stack of 2920 series switches. The stack can - include devices like - hpSwitchJ9726, hpSwitchJ9727, hpSwitchJ9728, - hpSwitchJ9729." - ::= { hpicfStacks 3 } - - hpicfBackplanes OBJECT IDENTIFIER ::= { chassis 6 } - - hpAdvStkEnetSHExtSeg OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an inter-box - repeater segment in a stack of HP AdvanceStack - 10Base-T Switching Hubs." - ::= { hpicfBackplanes 1 } - - hpAdvStkEnetSHIntSeg OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a repeater - segment that is internal to a single box in - a stack of HP AdvanceStack 10Base-T Switching - Hubs." - ::= { hpicfBackplanes 2 } - - hp10BaseTHubSeg OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a repeater - segment in an HP 10Base-T Hub-12M or HP - 10Base-T Hub-24M." - ::= { hpicfBackplanes 3 } - - hpSwitchBackplane OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an HP Switch - backplane." - ::= { hpicfBackplanes 4 } - - hp100BaseTHubSeg OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a repeater - segment in an HP 100Base-T Hub 12M - or HP 100Base-T Hub 24M." - ::= { hpicfBackplanes 5 } - - - - hpicfSlots OBJECT IDENTIFIER ::= { chassis 7 } - - hpAdvStkEnetSHAgentSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the Management - Slot in an HP AdvanceStack 10Base-T Switching - Hub." - ::= { hpicfSlots 1 } - - hpAdvStkEnetSHIOSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the Expansion - Slot in an HP AdvanceStack 10Base-T Switching - Hub." - ::= { hpicfSlots 2 } - - hpAdvStkSwStackMgmtSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - Management/Stacking Slot in an HP AdvanceStack - Switch 208 or Switch 224." - ::= { hpicfSlots 3 } - - hpAdvStkSwStackExpSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - Expansion Slot in an HP AdvanceStack Switch 208 - or Switch 224." - ::= { hpicfSlots 4 } - - hpSwitch8000PowerSupplyBay OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - power supply bay in an HP Switch 8000 or - HP Switch 4000." - ::= { hpicfSlots 5 } - - hpSwitch8000CpuSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the CPU - slot in an HP Switch 8000 or HP Switch 4000." - ::= { hpicfSlots 6 } - - hpSwitch8000PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP Switch 8000, HP Switch - 4000, HP Switch 1600, or HP Switch 2400/2424." - ::= { hpicfSlots 7 } - - hpSwitch2524PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP Switch 2524, HP Switch - 2512, or HP Network Blade." - ::= { hpicfSlots 8 } - - hpSwitch5308PowerSupplyBay OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - power supply bay in an HP 5308XL Switch or - HP 5304XL Switch." - ::= { hpicfSlots 9 } - - hpSwitch5308PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 5308XL Switch, HP - 5304XL Switch, HP 3324XL Switch, or HP 3124XL Switch." - ::= { hpicfSlots 10 } - - hpSwitch4865PowerSupplyBay OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - power supply bay in an HP 4108GL Switch." - ::= { hpicfSlots 11 } - - hpSwitch4865PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 4108GL Switch." - ::= { hpicfSlots 12 } - - hpSwitch2650PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2650 Switch." - ::= { hpicfSlots 13 } - - hpSwitch6108PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 6108 Switch." - ::= { hpicfSlots 14 } - - hpSwitch2824PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2824 Switch or HP 2848 Switch." - ::= { hpicfSlots 15 } - - hpSwitch2626PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2626 Switch." - ::= { hpicfSlots 16 } - - hpSwitch2650PPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2650-PWR Switch." - ::= { hpicfSlots 17 } - - hpSwitch2626PPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2626-PWR Switch." - ::= { hpicfSlots 18 } - - hpSwitch3324PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 3324 Switch or - HP 3348 Switch." - ::= { hpicfSlots 19 } - - hpSwitch2650CRPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2650-CR Switch." - ::= { hpicfSlots 20 } - - hpSwitch2626CRPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2626-CR Switch." - ::= { hpicfSlots 21 } - - hpSwitch2600n8PPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2600-8-PWR Switch." - ::= { hpicfSlots 22 } - - hpSwitch869xPowerSupplyBay OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - power supply bay in an HP 5406 zl Switch Chassis - or HP 5412 zl Switch Chassis." - ::= { hpicfSlots 23 } - - hpSwitch869xPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 5406 zl Switch Chassis, - HP 5412 zl Switch Chassis,HP E3800 Switch, - HP 3500yl-24G-PWR Switch, HP 3500yl-48G-PWR Switch, - and HP 6200yl-24G-mGBIC Switch." - ::= { hpicfSlots 24 } - - hpSwitch2510PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2510-24 Switch or - HP 2510-48 Switch." - ::= { hpicfSlots 25 } - - hpSwitch2810PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2810-24G Switch or - HP 2810-48G Switch ." - ::= { hpicfSlots 26 } - - hpSwitch5400CpuCardBay OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - Management Module bay in a HP 54XXZL Switch or - HP 8212ZL Switch ." - ::= { hpicfSlots 27 } - - hpSwitch8212FabricBay OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - Fabric bay in a HP 8212ZL Switch ." - ::= { hpicfSlots 28 } - - hpSwitch2610PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2610-24 Switch or - HP 2610-48 Switch." - ::= { hpicfSlots 29 } - - hpSwitch2610PPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2610-24-PWR Switch, - HP 2610-48-PWR Switch or HP 2610-24/12PWR - Switch." - ::= { hpicfSlots 30 } - - hpSwitch2510BPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2510B-24 Switch." - ::= { hpicfSlots 31 } - - hpSwitch2626CPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2626C Switch." - ::= { hpicfSlots 32 } - - hpSwitch2650CPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2650C Switch." - ::= { hpicfSlots 33 } - - hpSwitch2910PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2910al-24G Switch or - HP 2910al-48G Switch." - ::= { hpicfSlots 34 } - - hpSwitch2510GPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2510G-24 Switch or - HP 2510G-48 Switch." - ::= { hpicfSlots 35 } - - hpSwitch2520PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2520-24 Switch or - HP 2520-8 Switch." - ::= { hpicfSlots 36 } - - hpSwitch2520GPortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2520G-24 Switch or - HP 2520G-8 Switch." - ::= { hpicfSlots 37 } - - hpSwitch2615PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2615-8-PoE Switch." - ::= { hpicfSlots 38 } - - hpSwitch2915PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2915-8G-PoE Switch." - ::= { hpicfSlots 39 } - - hpSwitchJ9580PowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP X312 1000W 100-240VAC to 54VDC PS." - ::= { hpicfSlots 40 } - - hpSwitchJ9581PowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP X311 400W 100-240VAC to 12VDC PS." - ::= { hpicfSlots 41 } - - hpSwitchJ9582FanTray OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800 Switch Fan Tray." - ::= { hpicfSlots 42 } - - hpSwitch2620PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2620-24 Switch or - HP 2620-48 Switch." - ::= { hpicfSlots 43 } - - hpSwitch2530PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP 2530-8 Switch or - HP 2530-48 Switch or HP 2530-48 Switch." - ::= { hpicfSlots 45 } - - hpSwitch2920StackingSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a stacking - module slot in an HP E2920-24 Switch or - HP E2920-48 Switch." - ::= { hpicfSlots 46 } - - hpSwitchJ9737APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9737A X332 1050W 100-240VAC to 54VDC Power Supply." - ::= { hpicfSlots 47 } - - hpSwitchJ9738APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9738A X332 575W 100-240VAC to 54VDC Power Supply." - ::= { hpicfSlots 48 } - - hpSwitchJ9739APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9739A X331 165W 100-240VAC to 12VDC Power Supply." - ::= { hpicfSlots 49 } - - hpSwitch2920PortSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a port - module slot in an HP E2920-24 Switch or - HP E2920-48 Switch." - ::= { hpicfSlots 50 } - - hpSwitch3800StackingSlot OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a stacking - module slot in an HP E3800 Switch." - ::= { hpicfSlots 51 } - - hpSwitchJ9828APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 5400R 700W PoE+ zl2 Power Supply" - ::= { hpicfSlots 52 } - - hpSwitchJ9829APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 5400R 1100W PoE+ zl2 Power Supply" - ::= { hpicfSlots 53 } - - hpSwitchJ9830APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 5400R 2750W PoE+ zl2 Power Supply" - ::= { hpicfSlots 54 } - - hpSwitchJ9831AFanTray OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 5406R zl2 Switch Fan Tray." - ::= { hpicfSlots 55 } - - hpSwitchJ9832AFanTray OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 5412R zl2 Switch Fan Tray." - ::= { hpicfSlots 56 } - - hpSwitchJ9805APowerSupply OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 640 External/Redundant Power Supply ." - ::= { hpicfSlots 57 } - - hpSwitchJ9806APowerCable OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 640 EPS/RPS 1m Cable." - ::= { hpicfSlots 58 } - - - hpicfHubPorts OBJECT IDENTIFIER ::= { chassis 8 } - - hpAdvStkEnetSHExtPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a repeater - port which has an external connector on an HP - AdvanceStack 10Base-T Switching Hub." - ::= { hpicfHubPorts 1 } - - hpAdvStkEnetSHIntPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a repeater - port which does not have an external connector - on an HP AdvanceStack 10Base-T Switching Hub. - This port may be used to connect to an interface - on an expansion module." - ::= { hpicfHubPorts 2 } - - hpAdvStkEnetSHAgentPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an internal - repeater port used to connect to an interface on - a management module in an HP AdvanceStack - 10Base-T Switching Hub." - ::= { hpicfHubPorts 3 } - - hp10BaseTHubPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a repeater - port which has an external connector on an HP - 10Base-T Hub-12M or an HP 10Base-T Hub-24M." - ::= { hpicfHubPorts 4 } - - hp10BaseTHubAgentPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an internal - repeater port used to connect to an agent - interface in an HP 10Base-T Hub-12M or an HP - 10Base-T Hub-24M." - ::= { hpicfHubPorts 5 } - - hp10T100THubPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a 10/100 - repeater port that has an external connector - on an HP 100Base-T Hub." - ::= { hpicfHubPorts 6 } - - hp100BaseTHubAgentPort OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an internal - 100Mbit repeater port used to connect to an - agent interface in an HP 100Base-T - Hub." - ::= { hpicfHubPorts 7 } - - - hpicfEnetChipSets OBJECT IDENTIFIER ::= { chassis 9 } - - hpicfEnetChipSetHydra OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP Hydra 4-interface Ethernet LAN controller." - ::= { hpicfEnetChipSets 1 } - - hpicfEnetChipSetGT48001 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - GT48001 8-interface switch chip." - ::= { hpicfEnetChipSets 2 } - - hpicfEnetChipSetPentagon OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP Pentagon ASIC." - ::= { hpicfEnetChipSets 3 } - - - hpicfSwitchPorts OBJECT IDENTIFIER ::= { chassis 10 } - - hpicfSwitchPort10T100TX OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10BASE-T/100BASE-TX autonegotiating port - on an HP switch." - ::= { hpicfSwitchPorts 1 } - - hpicfSwitchPort100FX OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 100BASE-FX port on an HP switch." - ::= { hpicfSwitchPorts 2 } - - hpicfSwitchPort10FL OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10BASE-FL port on an HP switch." - ::= { hpicfSwitchPorts 3 } - - hpicfSwitchPort1000SX OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-SX port on an HP switch." - ::= { hpicfSwitchPorts 4 } - - hpicfSwitchPort10T OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10BASE-T port on an HP switch." - ::= { hpicfSwitchPorts 5 } - - hpicfSwitchPort1000LX OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-LX port on an HP switch." - ::= { hpicfSwitchPorts 6 } - - hpicfSwitchPort1000T OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-T port on an HP switch." - ::= { hpicfSwitchPorts 7 } - - hpicfSwitchPort1000Stk OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-Stk port on an HP switch." - ::= { hpicfSwitchPorts 8 } - - hpicfSwitchPort1000LH OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-LH port on an HP switch." - ::= { hpicfSwitchPorts 9 } - - hpicfSwitchPort10GigBaseCX4 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CX4 port on an HP switch." - ::= { hpicfSwitchPorts 10 } - - hpicfSwitchPort1000ESP OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an internal - ESP Blade port on an HP switch." - ::= { hpicfSwitchPorts 11 } - - hpicfSwitchPort10GigBaseSR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-SR port on an HP switch." - ::= { hpicfSwitchPorts 12 } - - hpicfSwitchPort10GigBaseER OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-ER port on an HP switch." - ::= { hpicfSwitchPorts 13 } - - hpicfSwitchPort10GigBaseLR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-LR port on an HP switch." - ::= { hpicfSwitchPorts 14 } - - - - hpicfSwitchPort100GEN OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - generic 100BASE port on an HP switch." - ::= { hpicfSwitchPorts 15 } - - hpicfSwitchPort1000GEN OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - generic 1000BASE port on an HP switch." - ::= { hpicfSwitchPorts 16 } - - hpicfSwitchPort10GigBaseGEN OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - generic 10Gig port on an HP switch." - ::= { hpicfSwitchPorts 17 } - - hpicfSwitchPort100BXD OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 100BASE-BX downstream port on an HP switch." - ::= { hpicfSwitchPorts 18 } - - hpicfSwitchPort100BXU OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 100BASE-BX upstream port on an HP switch." - ::= { hpicfSwitchPorts 19 } - - hpicfSwitchPort1000BXD OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-BX downstream port on an HP switch." - ::= { hpicfSwitchPorts 20 } - - hpicfSwitchPort1000BXU OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-BX upstream port on an HP switch." - ::= { hpicfSwitchPorts 21 } - - hpicfSwitchPort10GigBaseLRM OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-LRM port on an HP switch." - ::= { hpicfSwitchPorts 22 } - - hpicfSwitchPortSFPplusSR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-SR SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 23 } - - hpicfSwitchPortSFPplusLR OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-LR SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 24 } - - hpicfSwitchPortSFPplusLRM OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-LRM SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 25 } - - hpicfSwitchPortSFPplusDAC OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 26 } - - hpicfSwitchPortSFPplusDA1 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 1 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 27 } - - hpicfSwitchPortSFPplusDA2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 2 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 28 } - - hpicfSwitchPortSFPplusDA3 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 3 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 29 } - - hpicfSwitchPortSFPplusDA5 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 5 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 30 } - - hpicfSwitchPortSFPplusDA7 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 7 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 31 } - - hpicfSwitchPortSFPplusDA10 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 10 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 32 } - - hpicfSwitchPortSFPplusDA15 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 15 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 33 } - - hpicfSwitchPortSFPplusDA20 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 20 meter 10 GIG DAC SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 34 } - - hpicfSwitchPort10GigBaseT OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 10 GIG T port on an HP switch." - ::= { hpicfSwitchPorts 35 } - - hpicfSwitchPort10GigBaseTSH OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 10 GIG TSH port on an HP switch." - ::= { hpicfSwitchPorts 36 } - - hpicfSwitchPort10GigBaseTLH OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 10 GIG TLH port on an HP switch." - ::= { hpicfSwitchPorts 37 } - - hpicfSwitchPort10GigBaseSTK OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for a - 10 GIG stacking port on an HP switch." - ::= { hpicfSwitchPorts 38 } - - hpicfSwitchPort1000CWDM1470 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1470 port on an HP switch." - ::= { hpicfSwitchPorts 39 } - - hpicfSwitchPort1000CWDM1490 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1490 port on an HP switch." - ::= { hpicfSwitchPorts 40 } - - hpicfSwitchPort1000CWDM1510 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1510 port on an HP switch." - ::= { hpicfSwitchPorts 41 } - - hpicfSwitchPort1000CWDM1530 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1530 port on an HP switch." - ::= { hpicfSwitchPorts 42 } - - hpicfSwitchPort1000CWDM1550 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1550 port on an HP switch." - ::= { hpicfSwitchPorts 43 } - - hpicfSwitchPort1000CWDM1570 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1570 port on an HP switch." - ::= { hpicfSwitchPorts 44 } - - hpicfSwitchPort1000CWDM1590 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1590 port on an HP switch." - ::= { hpicfSwitchPorts 45 } - - hpicfSwitchPort1000CWDM1610 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 1000BASE-CWDM1610 port on an HP switch." - ::= { hpicfSwitchPorts 46 } - - hpicfSwitchPort10GigCWDM1470 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1470 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 47 } - - hpicfSwitchPort10GigCWDM1490 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1490 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 48 } - - hpicfSwitchPort10GigCWDM1510 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1510 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 49 } - - hpicfSwitchPort10GigCWDM1530 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1530 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 50 } - - hpicfSwitchPort10GigCWDM1550 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1550 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 51 } - - hpicfSwitchPort10GigCWDM1570 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1570 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 52 } - - hpicfSwitchPort10GigCWDM1590 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1590 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 53 } - - hpicfSwitchPort10GigCWDM1611 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for an IEEE - 802.3 10GIGBASE-CWDM1611 SFP+ port on an HP switch." - ::= { hpicfSwitchPorts 54 } - - -- Temporary assignments for IEEE 802.3 MAU types. These are only used - -- for MAUs that are not yet defined in the standard MAU MIB at the - -- time products are released. They are deprecated when the standard - -- MAU MIB is updated to include a standard identifier for the MAU. - -- These are also used for proprietary connectors, like stacking - -- connectors. - - hpicfMAUTypes OBJECT IDENTIFIER ::= { chassis 11 } - - hpicfMauType1000BaseSXHD OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION "IEEE 802.3 X fiber over short-wavelength - laser PMD (clause 38), half-duplex." - ::= { hpicfMAUTypes 1 } - - hpicfMauType1000BaseSXFD OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION "IEEE 802.3 X fiber over short-wavelength - laser PMD (clause 38), full-duplex." - ::= { hpicfMAUTypes 2 } - - hpicfMauType1000BaseLXHD OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION "IEEE 802.3 X fiber over long-wavelength - laser PMD (clause 38), half-duplex." - ::= { hpicfMAUTypes 3 } - - hpicfMauType1000BaseLXFD OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION "IEEE 802.3 X fiber over long-wavelength - laser PMD (clause 38), full-duplex." - ::= { hpicfMAUTypes 4 } - - hpicfMauType1000BaseTHD OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION "IEEE 802.3 four-pair Category 5 UTP - PHY (clause 40), half-duplex." - ::= { hpicfMAUTypes 5 } - - hpicfMauType1000BaseTFD OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION "IEEE 802.3 four-pair Category 5 UTP - PHY (clause 40), full-duplex." - ::= { hpicfMAUTypes 6 } - - hpicfMauType1000BaseStkHD OBJECT-IDENTITY - STATUS current - DESCRIPTION "IEEE 802.3 X copper, half-duplex." - ::= { hpicfMAUTypes 7 } - - hpicfMauType1000BaseStkFD OBJECT-IDENTITY - STATUS current - DESCRIPTION "IEEE 802.3 X copper, full-duplex." - ::= { hpicfMAUTypes 8 } - - hpicfMauType1000BaseLHFD OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary Long Haul, Fiber full-duplex." - ::= { hpicfMAUTypes 9 } - - hpicfMauType1000BaseEspPCS OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary internal, PCS port." - ::= { hpicfMAUTypes 10 } - - hpicfMauType1000BaseEspG OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary internal, GMII port." - ::= { hpicfMAUTypes 11 } - - hpicfMauType10GigBaseCX4 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CX4, full-duplex." - ::= { hpicfMAUTypes 12 } - - hpicfMauType10GigBaseSR OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig SR, full-duplex." - ::= { hpicfMAUTypes 13 } - - hpicfMauType10GigBaseER OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig ER, full-duplex." - ::= { hpicfMAUTypes 14 } - - hpicfMauType10GigBaseLR OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig LR, full-duplex." - ::= { hpicfMAUTypes 15 } - - hpicfMauType100BaseGEN OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 100Base Generic, full-duplex." - ::= { hpicfMAUTypes 16 } - - hpicfMauType1000BaseGEN OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000Base Generic, full-duplex." - ::= { hpicfMAUTypes 17 } - - hpicfMauType10GigBaseGEN OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig Generic, full-duplex." - ::= { hpicfMAUTypes 18 } - - hpicfMauType100BaseBXD OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 100Base BX downstream, full-duplex." - ::= { hpicfMAUTypes 19 } - - hpicfMauType100BaseBXU OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 100Base BX upstream, full-duplex." - ::= { hpicfMAUTypes 20 } - - hpicfMauType1000BaseBXD OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000Base BX downstream, full-duplex." - ::= { hpicfMAUTypes 21 } - - hpicfMauType1000BaseBXU OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000Base BX upstream, full-duplex." - ::= { hpicfMAUTypes 22 } - - hpicfMauType10GigBaseLRM OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig LRM, full-duplex." - ::= { hpicfMAUTypes 23 } - - hpicfMauTypeSFPplusSR OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig SR SFP+, full-duplex." - ::= { hpicfMAUTypes 24 } - - hpicfMauTypeSFPplusLR OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig LR SFP+, full-duplex." - ::= { hpicfMAUTypes 25 } - - hpicfMauTypeSFPplusLRM OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig LRM SFP+, full-duplex." - ::= { hpicfMAUTypes 26 } - - hpicfMauTypeSFPplusDAC OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 27 } - - hpicfMauTypeSFPplusDA1 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 28 } - - hpicfMauTypeSFPplusDA2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 2 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 29 } - - hpicfMauTypeSFPplusDA3 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 3 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 30 } - - hpicfMauTypeSFPplusDA5 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 5 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 31 } - - hpicfMauTypeSFPplusDA7 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 7 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 32 } - - hpicfMauTypeSFPplusDA10 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 33 } - - hpicfMauTypeSFPplusDA15 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 15 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 34 } - - hpicfMauTypeSFPplusDA20 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 20 meter 10Gig DAC SFP+, full-duplex." - ::= { hpicfMAUTypes 35 } - - hpicfMauType10GigBaseT OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig T, full-duplex." - ::= { hpicfMAUTypes 36 } - - hpicfMauType10GigBaseTSH OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig TSH, full-duplex." - ::= { hpicfMAUTypes 37 } - - hpicfMauType10GigBaseTLH OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig TLH, full-duplex." - ::= { hpicfMAUTypes 38 } - - hpicfMauType10GigBaseSTK OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig STK, full-duplex." - ::= { hpicfMAUTypes 39 } - - hpicfMauType1000CWDM1470 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1470 SFP, full-duplex." - ::= { hpicfMAUTypes 40 } - - hpicfMauType1000CWDM1490 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1490 SFP, full-duplex." - ::= { hpicfMAUTypes 41 } - - hpicfMauType1000CWDM1510 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1510 SFP, full-duplex." - ::= { hpicfMAUTypes 42 } - - hpicfMauType1000CWDM1530 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1530 SFP, full-duplex." - ::= { hpicfMAUTypes 43 } - - hpicfMauType1000CWDM1550 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1550 SFP, full-duplex." - ::= { hpicfMAUTypes 44 } - - hpicfMauType1000CWDM1570 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1570 SFP, full-duplex." - ::= { hpicfMAUTypes 45 } - - hpicfMauType1000CWDM1590 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1590 SFP, full-duplex." - ::= { hpicfMAUTypes 46 } - - hpicfMauType1000CWDM1610 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 1000CWDM1610 SFP, full-duplex." - ::= { hpicfMAUTypes 47 } - - hpicfMauType10GigCWDM1470 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1470 SFP+, full-duplex." - ::= { hpicfMAUTypes 48 } - - hpicfMauType10GigCWDM1490 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1490 SFP+, full-duplex." - ::= { hpicfMAUTypes 49 } - - hpicfMauType10GigCWDM1510 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1510 SFP+, full-duplex." - ::= { hpicfMAUTypes 50 } - - hpicfMauType10GigCWDM1530 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1530 SFP+, full-duplex." - ::= { hpicfMAUTypes 51 } - - hpicfMauType10GigCWDM1550 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1550 SFP+, full-duplex." - ::= { hpicfMAUTypes 52 } - - hpicfMauType10GigCWDM1570 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1570 SFP+, full-duplex." - ::= { hpicfMAUTypes 53 } - - hpicfMauType10GigCWDM1590 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1590 SFP+, full-duplex." - ::= { hpicfMAUTypes 54 } - - hpicfMauType10GigCWDM1610 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary 10Gig CWDM1610 SFP+, full-duplex." - ::= { hpicfMAUTypes 55 } - - hpicfMauType10GigBaseESP OBJECT-IDENTITY - STATUS current - DESCRIPTION "Proprietary internal, 10Gig port." - ::= { hpicfMAUTypes 56 } - - - -- Ethernet switches - - hpEtherSwitch OBJECT IDENTIFIER ::= { netElement 11 } - - - -- Entity MIB support for older switches - - hpEtherSwitchPortType OBJECT IDENTIFIER ::= { hpEtherSwitch 99 } - - hpEtherSwitchPort10T OBJECT IDENTIFIER ::= { hpEtherSwitchPortType 1 } - hpEtherSwitchPort100T OBJECT IDENTIFIER ::= { hpEtherSwitchPortType 2 } - hpEtherSwitchPort100VG OBJECT IDENTIFIER ::= { hpEtherSwitchPortType 3 } - hpEtherSwitchPort100F OBJECT IDENTIFIER ::= { hpEtherSwitchPortType 4 } - - hpAdvSwitch2000 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3100A AdvanceStack Switch 2000." - ::= { hpEtherSwitch 1 } - - hpAdvSwitch2000B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3100B AdvanceStack Switch 2000B." - ::= { hpEtherSwitch 2 } - - hpAdvSwitch800T OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3245A AdvanceStack Switch 800T." - ::= { hpEtherSwitch 3 } - - hpAdvSwitch200 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3175A AdvanceStack Switch 208T and - HP J3177A AdvanceStack Switch 224T." - ::= { hpEtherSwitch 4 } - - -- Different types of Switch 200s (desktop switches) - hpAdvSwitch208T OBJECT IDENTIFIER ::= { hpAdvSwitch200 1 } - hpAdvSwitch208VG OBJECT IDENTIFIER ::= { hpAdvSwitch200 2 } - hpAdvSwitch224T OBJECT IDENTIFIER ::= { hpAdvSwitch200 3 } - hpAdvSwitch224VG OBJECT IDENTIFIER ::= { hpAdvSwitch200 4 } - - - hpSwitch212M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J3298A HP 212M Switch." - ::= { hpEtherSwitch 5 } - - hpSwitch224M OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J3299A HP 224M Switch." - ::= { hpEtherSwitch 6 } - - hpSwitch8000 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4110A HP 8000M Switch." - ::= { hpEtherSwitch 7 } - - hpSwitch1600 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4120A HP 1600M Switch." - ::= { hpEtherSwitch 8 } - - hpSwitch4000 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4121A HP 4000M Switch." - ::= { hpEtherSwitch 9 } - - hpSwitch2400 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4122A HP 2400M Switch." - ::= { hpEtherSwitch 10 } - - hpSwitch2424 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4122B HP 2424M Switch." - ::= { hpEtherSwitch 11 } - - hpSwitch9308 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4138A HP 9308M Switch." - ::= { hpEtherSwitch 13 } - - hpSwitch9304 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4139A HP 9304M Routing Switch." - ::= { hpEtherSwitch 14 } - - hpSwitch6308 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4840A HP 6308M Switch." - ::= { hpEtherSwitch 15 } - - hpSwitch6208 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4841A HP 6208M Switch." - ::= { hpEtherSwitch 16 } - - hpSwitchJ4819A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4819A HP 5308XL Switch." - ::= { hpEtherSwitch 17 } - - hpSwitchJ4812A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4812A HP 2512 Switch." - ::= { hpEtherSwitch 18 } - - hpSwitchJ4813A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4813A HP 2524 Switch." - ::= { hpEtherSwitch 19 } - - hpSwitchJ4850A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4850A HP 5304XL Switch." - ::= { hpEtherSwitch 20 } - - hpSwitchJ4815A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4815A HP 3324XL Switch." - ::= { hpEtherSwitch 21 } - - hpSwitchJ4851A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4851A HP 3124 Switch." - ::= { hpEtherSwitch 22 } - - hpSwitchJ4865A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4865A HP 4108GL Switch." - ::= { hpEtherSwitch 23 } - - hpSwitchA6713A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP A6713A Network Blade." - ::= { hpEtherSwitch 24 } - - hpSwitchA6716A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP A6716A Network Blade." - ::= { hpEtherSwitch 25 } - - hpSwitchA6717A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP A6717A Network Blade." - ::= { hpEtherSwitch 26 } - - hpSwitchJ4887A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4887A HP 4104GL Switch." - ::= { hpEtherSwitch 27 } - - hpSwitchJ4874A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4874A HP 9315 Switch." - ::= { hpEtherSwitch 28 } - - hpSwitchJ4899A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4899A HP 2650 Switch." - ::= { hpEtherSwitch 29 } - - hpSwitchJ4902A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4902A HP 6108 Switch." - ::= { hpEtherSwitch 30 } - - hpSwitchJ4903A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4903A HP 2824 Switch." - ::= { hpEtherSwitch 31 } - - hpSwitchJ4904A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4904A HP 2848 Switch." - ::= { hpEtherSwitch 32 } - - hpSwitchProliant OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP Proliant Series Switches." - ::= { hpEtherSwitch 33 } - - hpSwitchJ4900A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4900A HP 2626 Switch." - ::= { hpEtherSwitch 34 } - - hpSwitchJ8165A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8165A HP 2650-PWR Switch." - ::= { hpEtherSwitch 35 } - - hpSwitchJ8164A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8164A HP 2626-PWR Switch." - ::= { hpEtherSwitch 36 } - - hpSwitchJ8130A OBJECT-IDENTITY - STATUS obsolete - DESCRIPTION "The authoritative identifier for the - HP J8130A Wireless Access Point AP420WL." - ::= { hpEtherSwitch 37 } - - hpSwitchJ8133A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8133A Wireless Access Point AP520WL." - ::= { hpEtherSwitch 38 } - - hpSwitchJ8153A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8153A Access Controller 720WL." - ::= { hpEtherSwitch 39 } - - hpSwitchJ8154A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8154A Access Controller Server 740WL." - ::= { hpEtherSwitch 40 } - - hpSwitchJ8155A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8155A Integrated Access Manager 760WL." - ::= { hpEtherSwitch 41 } - - hpSwitchJ4905A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4905A HP 3400cl-24G Switch." - ::= { hpEtherSwitch 42 } - - hpSwitchJ4906A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4906A HP 3400cl-48G Switch." - ::= { hpEtherSwitch 43 } - - hpSwitchJ4899B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4899B HP 2650B Switch." - ::= { hpEtherSwitch 44 } - - hpSwitchJ4900B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4900B HP 2626B Switch." - ::= { hpEtherSwitch 45 } - - hpSwitchJ8718A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8718A HP 5404yl Switch." - ::= { hpEtherSwitch 46 } - - hpSwitchJ8719A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8719A HP 5408yl Switch." - ::= { hpEtherSwitch 47 } - - hpSwitchJ8433A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8433A HP 6400cl-6XG Switch." - ::= { hpEtherSwitch 48 } - - hpSwitchJ8474A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8474A HP 6410cl-6XG Switch." - ::= { hpEtherSwitch 49 } - - hpSwitchJ8697A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8697A HP 5406zl Switch." - ::= { hpEtherSwitch 50 } - - hpSwitchJ8698A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8698A HP 5412zl Switch. " - ::= { hpEtherSwitch 51 } - - hpSwitchJ8770A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8770A HP 4204vl Switch." - ::= { hpEtherSwitch 52 } - - hpSwitchJ8773A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8773A HP 4208vl Switch." - ::= { hpEtherSwitch 53 } - - hpSwitchJ8680A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8680A HP E9408sl Router." - ::= { hpEtherSwitch 54 } - - hpSwitchJ8762A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8762A HP 2600-8-PWR Switch." - ::= { hpEtherSwitch 55 } - - hpSwitchJ8771A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8771A HP 4202vl-48G Switch." - ::= { hpEtherSwitch 56 } - - hpSwitchJ8772A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8772A HP 4202vl-72 Switch." - ::= { hpEtherSwitch 57 } - - hpSwitchJ8692A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8692A HP 3500yl-24G-PWR Switch." - ::= { hpEtherSwitch 58 } - - hpSwitchJ8693A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8693A HP 3500yl-48G-PWR Switch." - ::= { hpEtherSwitch 59 } - - - hpSwitchJ8992A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8992A HP 6200yl-24G Switch." - ::= { hpEtherSwitch 60 } - - hpSwitchJ9019A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9019A HP E2510A-24 Switch." - ::= { hpEtherSwitch 61 } - - hpSwitchJ9020A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9020A HP E2510A-48 Switch." - ::= { hpEtherSwitch 62 } - - hpSwitchJ9021A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9021A HP 2810-24G Switch." - ::= { hpEtherSwitch 63 } - - hpSwitchJ9022A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9022A HP 2810-48G Switch." - ::= { hpEtherSwitch 64 } - - hpSwitchJ9028A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9028A HP 1800-24G Switch." - ::= { hpEtherSwitch 65 } - - hpSwitchJ9029A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9029A HP 1800-8G Switch." - ::= { hpEtherSwitch 66 } - - hpSwitchJ9038A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9038A Access Control Server 745wl." - ::= { hpEtherSwitch 67 } - - hpSwitchJ9050A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9050A HP 2900-48G Switch." - ::= { hpEtherSwitch 68 } - - hpSwitchJ9049A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9049A HP 2900-24G Switch." - ::= { hpEtherSwitch 69 } - - hpSwitchJ9032A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9032A HP 4202vl-68G Switch." - ::= { hpEtherSwitch 70 } - - hpSwitchJ9091A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9091A HP 8212zl Switch. " - ::= { hpEtherSwitch 72 } - - hpSwitchJ9065A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9065A Network Access Controller 800. " - ::= { hpEtherSwitch 73 } - - hpSwitchJ9079A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9079A HP 1700-8 Switch. " - ::= { hpEtherSwitch 74 } - - hpSwitchJ9080A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9080A HP E1700-24 Switch. " - ::= { hpEtherSwitch 75 } - - hpSwitchJ9085A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9085A HP E2610-24 Switch." - ::= { hpEtherSwitch 76 } - - hpSwitchJ9088A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9088A HP 2610-48 Switch. " - ::= { hpEtherSwitch 77 } - - hpSwitchJ9087A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9087A HP 2610-24-PWR Switch. " - ::= { hpEtherSwitch 78 } - - hpSwitchJ9089A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9089A HP 2610-48-PWR Switch. " - ::= { hpEtherSwitch 79 } - - hpSwitchJ9086A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9086A HP E2610-24-PPoE Switch ." - ::= { hpEtherSwitch 80 } - - hpSwitchJ9028B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9028B HP 1800-24G-B Switch ." - ::= { hpEtherSwitch 81 } - - hpSwitchJ4900C OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4900C HP 2626C Switch ." - ::= { hpEtherSwitch 82 } - - hpSwitchJ4899C OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4899C HP 2650C Switch ." - ::= { hpEtherSwitch 83 } - - hpSwitchJ9146A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9146A HP 2910al-24G-PoE+ Switch." - ::= { hpEtherSwitch 84 } - - hpSwitchJ9148A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9148A HP 2910al-48G-PoE+ Switch." - ::= { hpEtherSwitch 85 } - - hpSwitchJ9145A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9145A HP 2910al-24G Switch." - ::= { hpEtherSwitch 86 } - - hpSwitchJ9147A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9147A HP 2910al-48G Switch." - ::= { hpEtherSwitch 87 } - - hpSwitchJ9279A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9279A HP 2510G-24 Switch. " - ::= { hpEtherSwitch 88 } - - hpSwitchJ9280A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9280A HP 2510G-48 Switch. " - ::= { hpEtherSwitch 89 } - - hpSwitchJ9019B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9019B HP 2510B-24 Switch ." - ::= { hpEtherSwitch 90 } - - hpSwitchJ9137A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9137A HP 2520-8 Switch. " - ::= { hpEtherSwitch 94 } - - hpSwitchJ9138A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9138A HP 2520-24 Switch. " - ::= { hpEtherSwitch 95 } - - hpSwitchJ9298A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9298A HP 2520G-8 Switch. " - ::= { hpEtherSwitch 96 } - - hpSwitchJ9299A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9299A HP 2520G-24 Switch. " - ::= { hpEtherSwitch 97 } - - hpSwitchJ9265A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9265A HP E6600-24XG Switch. " - ::= { hpEtherSwitch 98 } - - hpSwitchJ9263A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9263A HP E6600-24G Switch. " - ::= { hpEtherSwitch 100 } - - hpSwitchJ9264A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9264A HP E6600-24G-4XG Switch. " - ::= { hpEtherSwitch 101 } - - hpSwitchJ9445A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9445A DCM Controller. " - ::= { hpEtherSwitch 102 } - - hpSwitchJ9449A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9449A HP 1810-8G Switch." - ::= { hpEtherSwitch 103 } - - hpSwitchJ9450A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9450A HP 1810-24G Switch." - ::= { hpEtherSwitch 104 } - - hpSwitchJ9452A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9452A HP 6600-48G-4XG Switch." - ::= { hpEtherSwitch 105 } - - hpSwitchJ9451A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9451A HP 6600-48G Switch." - ::= { hpEtherSwitch 106 } - - hpSwitch516733-B21 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - 516733-B21 HP E6120-XG Switch." - ::= { hpEtherSwitch 107 } - - hpSwitch498358-B21 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - 498358-B21 HP E6120-GXG Switch." - ::= { hpEtherSwitch 108 } - - hpSwitchJ9471A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9471A HP 3500-24-PoE Switch." - ::= { hpEtherSwitch 109 } - - hpSwitchJ9473A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9473A HP 3500-48-PoE Switch." - ::= { hpEtherSwitch 110 } - - hpSwitchJ9470A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9470A HP 3500-24 Switch." - ::= { hpEtherSwitch 111 } - - hpSwitchJ9472A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9472A HP 3500-48 Switch." - ::= { hpEtherSwitch 112 } - - hpSwitchJ9477A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9477A HP 8206zl Switch." - ::= { hpEtherSwitch 113 } - - hpSwitchJ9310A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9310A HP 3500yl-24G-PoE+ Switch." - ::= { hpEtherSwitch 114 } - - hpSwitchJ9311A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9311A HP 3500yl-48G-PoE+ Switch." - ::= { hpEtherSwitch 115 } - - hpSwitchJ9565A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9565A HP 2615-8-PoE Switch." - ::= { hpEtherSwitch 117 } - - hpSwitchJ9562A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9562A HP 2915-8G-PoE Switch." - ::= { hpEtherSwitch 118 } - - hpSwitchJ9573A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-PoE+-2SFP+ Switch." - ::= { hpEtherSwitch 119 } - - hpSwitchJ9574A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-PoE+-4SFP+ Switch." - ::= { hpEtherSwitch 120 } - - hpSwitchJ9575A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-2SFP+ Switch." - ::= { hpEtherSwitch 121 } - - hpSwitchJ9576A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-4SFP+ Switch." - ::= { hpEtherSwitch 122 } - - hpSwitchJ9584A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24SFP-2SFP+ Switch." - ::= { hpEtherSwitch 123 } - - hpSwitchJ9585A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-2XG Switch." - ::= { hpEtherSwitch 124 } - - hpSwitchJ9586A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-4XG Switch." - ::= { hpEtherSwitch 125 } - - hpSwitchJ9587A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-PoE+-2XG Switch." - ::= { hpEtherSwitch 126 } - - hpSwitchJ9588A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-PoE+-4XG Switch." - ::= { hpEtherSwitch 127 } - - hpSwitchJ9577A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800 4-port Stacking Module." - ::= { hpEtherSwitch 128 } - - hpSwitchJ9623A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9623A HP 2620-24 Switch." - ::= { hpEtherSwitch 129 } - - hpSwitchJ9624A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9624A HP 2620-24-PPoE+ Switch." - ::= { hpEtherSwitch 130 } - - hpSwitchJ9625A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9625A HP 2620-24-PoE+ Switch." - ::= { hpEtherSwitch 131 } - - hpSwitchJ9626A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9626A HP 2620-48 Switch." - ::= { hpEtherSwitch 132 } - - hpSwitchJ9627A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9627A HP 2620-48-PoE+ Switch." - ::= { hpEtherSwitch 133 } - - hpSwitchJ9660A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9660A HP 1810-48G Switch." - ::= { hpEtherSwitch 134 } - - -- different cards for Switch 2000 - - hpSwitchJ9772A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9772A HP 2530-48G-PoE+ Switch." - ::= { hpEtherSwitch 136 } - - hpSwitchJ9773A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9773A HP 2530-24G-PoE+ Switch." - ::= { hpEtherSwitch 137 } - - hpSwitchJ9774A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9774A HP 2530-8G-PoE+ Switch." - ::= { hpEtherSwitch 138 } - - hpSwitchJ9775A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9775A HP 2530-48G Switch." - ::= { hpEtherSwitch 139 } - - hpSwitchJ9776A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9776A HP 2530-24G Switch." - ::= { hpEtherSwitch 140 } - - hpSwitchJ9777A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9777A HP 2530-8G Switch." - ::= { hpEtherSwitch 141 } - - hpSwitchJ9778A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9778A HP 2530-48-PoE+ Switch." - ::= { hpEtherSwitch 142 } - - hpSwitchJ9779A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9779A HP 2530-24-PoE+ Switch." - ::= { hpEtherSwitch 143 } - - hpSwitchJ9780A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9780A HP 2530-8-PoE+ Switch." - ::= { hpEtherSwitch 144 } - - hpSwitchJ9781A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9781A HP 2530-48 Switch." - ::= { hpEtherSwitch 145 } - - hpSwitchJ9782A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9782A HP 2530-24 Switch." - ::= { hpEtherSwitch 146 } - - hpSwitchJ9783A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9783A HP 2530-8 Switch." - ::= { hpEtherSwitch 147 } - - - - hpSwitchJ9802A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9802A HP 1810-8G Switch." - ::= { hpEtherSwitch 150 } - - hpSwitchJ9803A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9803A HP 1810-24G Switch." - ::= { hpEtherSwitch 151 } - - hpSwitchJ9726A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9726A HP 2920-24G Switch." - ::= { hpEtherSwitch 152 } - - hpSwitchJ9727A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9727A HP 2920-24G-PoE+ Switch." - ::= { hpEtherSwitch 153 } - - hpSwitchJ9728A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9728A HP 2920-48G Switch." - ::= { hpEtherSwitch 154 } - - hpSwitchJ9729A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9729A HP 2920-48G-PoE+ Switch." - ::= { hpEtherSwitch 155 } - - hpSwitch3800One6SFPP OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 3800-4G-6SFP+-ONE Switch." - ::= { hpEtherSwitch 156 } - - hpSwitch3800One8SFPP OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP 3800-4G-8SFP+-ONE Switch." - ::= { hpEtherSwitch 157 } - - hpSwitchJ9833A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9833A HP PS1810-8G Switch." - ::= { hpEtherSwitch 158 } - - hpSwitchJ9834A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9834A HP PS1810-24G Switch ." - ::= { hpEtherSwitch 159 } - - hpSwitchJ9850A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9850A HP 5406R zl2 Switch Chassis." - ::= { hpEtherSwitch 160 } - - hpSwitchJ9851A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9851A HP 5412R zl2 Switch Chassis." - ::= { hpEtherSwitch 161 } - - - hpSwitchJ9853A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9853A HP 2530-48G-PoE+-2SFP+ Switch." - ::= { hpEtherSwitch 163 } - - hpSwitchJ9854A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9854A HP 2530-24G-PoE+-2SFP+ Switch." - ::= { hpEtherSwitch 164 } - - hpSwitchJ9855A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9855A HP 2530-48G-2SFP+ Switch." - ::= { hpEtherSwitch 165 } - - hpSwitchJ9856A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9856A HP 2530-24G-2SFP+ Switch." - ::= { hpEtherSwitch 166 } - - -- different cards for Switch 2000 - - hpSwitchPortModuleET4 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3102A AdvanceStack Switch Ethernet Port - Module." - ::= { hpAdvSwitch2000 1 } - - hpSwitchPortModuleVG2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J3103A AdvanceStack Switch 100VG Port - Module." - ::= { hpAdvSwitch2000 2 } - - hpSwitchPortModule10FL OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP AdvanceStack Switch 10BaseFL Port Module." - ::= { hpAdvSwitch2000 3 } - - hpSwitchPortModuleFDDI OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP AdvanceStack Switch FDDI Port Module." - ::= { hpAdvSwitch2000 4 } - - hpSwitchPortModuleTX2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP AdvanceStack Switch 100BaseT Port Module." - ::= { hpAdvSwitch2000 5 } - - hpSwitchPortModuleATM OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP AdvanceStack Switch ATM Port Module." - ::= { hpAdvSwitch2000 6 } - - -- different cards for Switch 8000/4000/1600/2400/2424 family - - hpSwitchPortModule100TX8 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4111A 8-port 10/100Base-TX module." - ::= { hpSwitch8000 1 } - - hpSwitchPortModule100FX4 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4112A 4-port 100Base-FX module." - ::= { hpSwitch8000 2 } - - hpSwitchPortModule10FL4 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4118A 4-port 10Base-FL module." - ::= { hpSwitch8000 3 } - - hpSwitchPortModuleGigSX OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4113A 1-port Gigabit SX module." - ::= { hpSwitch8000 4 } - - hpSwitchPortModuleGigLX OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4114A 1-port Gigabit LX module." - ::= { hpSwitch8000 5 } - - hpSwitchPortModuleTwoGig OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4130A 2-port Gigabit module." - ::= { hpSwitch8000 6 } - - hpSwitchPortModuleGigStk OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4130A 1-port Gigabit Stacking module." - ::= { hpSwitch8000 7 } - - hpSwitchPortModuleGigT OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4115A 1-port Gigabit T module." - ::= { hpSwitch8000 8 } - - - -- different cards for Switch 5308 family - - hpSwitchPortModuleJ4820A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4820A 24 Port 10/100Base-TX Module." - ::= { hpSwitchJ4819A 1 } - - hpSwitchPortModuleJ4821A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4821A 4 Port 100/1000Base-TX Module." - ::= { hpSwitchJ4819A 2 } - - hpSwitchPortModuleJ4878A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4878A 4x MiniGBIC Module." - ::= { hpSwitchJ4819A 3 } - - hpSwitchModuleJ4852A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4852A 12-port 100-FX MTRJ" - ::= { hpSwitchJ4819A 4 } - - hpSwitchModuleJ8161A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8161A 24-port 10/100Base-TX PoE Module." - ::= { hpSwitchJ4819A 5 } - - hpSwitchModuleJ4907A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4907A Gig-T/GBIC xl Module." - ::= { hpSwitchJ4819A 6 } - - hpSwitchModuleJ8162A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8162A XL Access Controller Module." - ::= { hpSwitchJ4819A 7 } - - hpSwitchPortModuleJ4820B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4820B 24 Port 10/100Base-TX Module." - ::= { hpSwitchJ4819A 8 } - - hpSwitchPortModuleJ4821B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4821B 4 Port 100/1000Base-TX Module." - ::= { hpSwitchJ4819A 9 } - - hpSwitchPortModuleJ4878B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4878B 4x MiniGBIC Module." - ::= { hpSwitchJ4819A 10 } - - hpSwitchModuleJ9001A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9001A Wireless Services xl Module." - ::= { hpSwitchJ4819A 11 } - - hpSwitchModuleJ9003A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9003A Redundant Wireless Services xl Module." - ::= { hpSwitchJ4819A 12 } - - hpSwitchModuleJ8988A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8988A 10-GbE X2 xl module." - ::= { hpSwitchJ4819A 13 } - - -- different pseudo cards for Switch 2524/2512 family - - hpSwitchModuleJ4812A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4812A 12-port 10/100Base-TX + 2 Gig - module" - ::= { hpSwitchJ4812A 1 } - - hpSwitchModuleJ4813A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4813A 24-port 10/100Base-TX + 2 Gig - module" - ::= { hpSwitchJ4813A 1 } - - -- different pseudo cards for Switch 4865 family - - hpSwitchModuleJ4862A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4862A 24-port 10/100Base-TX" - ::= { hpSwitchJ4865A 1 } - - hpSwitchModuleJ4863A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4863A 6-port 100/1000Base-TX" - ::= { hpSwitchJ4865A 2 } - - hpSwitchModuleJ4864A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4864A 3-port tranceiver module" - ::= { hpSwitchJ4865A 3 } - - hpSwitchModuleJ4862B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4862B 24-port 10/100Base-TX" - ::= { hpSwitchJ4865A 4 } - - hpSwitchModuleJ4893A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4893A 6-port Mini-GBIC module" - ::= { hpSwitchJ4865A 5 } - - hpSwitchModuleJ4892A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4892A 12-port 100-FX MTRJ" - ::= { hpSwitchJ4865A 6 } - - hpSwitchModuleJ4908A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J489XA 20-port 10/100/1000Base-TX + 2 Mini-GBIC" - ::= { hpSwitchJ4865A 7 } - - -- different pseudo cards for Switch 2600 and 2800 families - - hpSwitchModuleJ4899B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4899B Switch 2650-CR" - ::= { hpSwitchJ4899B 1 } - - hpSwitchModuleJ4900B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4900B Switch 2626-CR" - ::= { hpSwitchJ4900B 1 } - - hpSwitchModuleJ4903A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4903A 24-port 10/100/1000Base-TX" - ::= { hpSwitchJ4903A 1 } - - hpSwitchModuleJ8434A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8434A 2-port 10G CX4" - ::= { hpSwitchJ4903A 2} - - hpSwitchModuleJ8435A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8435A 2-port 10G MF" - ::= { hpSwitchJ4903A 3} - - hpSwitchModuleJ4904A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J4904A 48-port 10/100/1000Base-TX" - ::= { hpSwitchJ4904A 1 } - - hpSwitchModuleJ8762A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8762A Switch 2600-8-PWR" - ::= { hpSwitchJ8762A 1 } - - -- psuedo cards for the 3400/6400 family - - hpSwitchModuleJ4905A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4905A HP E3400cl-24G Switch." - ::= { hpSwitchJ4905A 1 } - - hpSwitchModuleJ4906A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4906A HP E3400cl-48G Switch." - ::= { hpSwitchJ4906A 1 } - - hpSwitchModuleJ8433A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8433A HP E6400cl-6XG Switch." - ::= { hpSwitchJ8433A 1 } - - hpSwitchModuleJ8474A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8474A HP E6410cl-6XG Switch." - ::= { hpSwitchJ8474A 1 } - - -- 5400/8200 blade family - - hpSwitchModuleJ8701A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8701A 24 port Gig-T." - ::= { hpSwitchJ8697A 1 } - - hpSwitchModuleJ8702A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8702A 24 port Gig-T zl Module." - ::= { hpSwitchJ8697A 2 } - - hpSwitchModuleJ8705A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8705A Gig-T/SFP zl Module." - ::= { hpSwitchJ8697A 3 } - - hpSwitchModuleJ8706A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8706A 24 port SFP zl Module. " - ::= { hpSwitchJ8697A 4 } - - hpSwitchModuleJ8707A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8707A 4 port 10-GbE zl Module." - ::= { hpSwitchJ8697A 5 } - - hpSwitchModuleJ8708A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8708A 4 port 10G CX4 zl Module. " - ::= { hpSwitchJ8697A 6 } - - hpSwitchModuleJ87xxA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J87xxA yl Fixed Gig-T/SFP." - ::= { hpSwitchJ8697A 7 } - - hpSwitchModuleJ87yyA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J87yyA yl Fixed 24p Gig-T." - ::= { hpSwitchJ8697A 8 } - - hpSwitchModuleJ8694A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8694A yl X2/CX4 10-GbE Module." - ::= { hpSwitchJ8697A 9 } - - hpSwitchModuleJ8726A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8726A HP 5400 zl Switch Management Module." - ::= { hpSwitchJ8697A 10 } - hpSwitchModuleJ90xxA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9050A yl Fixed Gig-T/SFP." - ::= { hpSwitchJ9050A 11 } - - hpSwitchModuleJ90yyA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9050A yl Fixed 24p Gig-T." - ::= { hpSwitchJ9050A 12 } - - hpSwitchModuleJ90zzA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9050A yl X2/CX4 10-GbE Module." - ::= { hpSwitchJ9050A 13 } - - hpSwitchModuleJ9051A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9051A Wireless services zl Module." - ::= { hpSwitchJ8697A 14 } - - hpSwitchModuleJ9052A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9052A Redundant Wireless Services zl Module." - ::= { hpSwitchJ8697A 15 } - - hpSwitchModuleJ9154A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9154A Services zl Module." - ::= { hpSwitchJ8697A 16 } - - hpSwitchModuleJ9155A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9155A zl Threat Management Services Module." - ::= { hpSwitchJ8697A 17 } - - hpSwitchModuleJ9446A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9446A zl Data Center Connection Manager ONE Module." - ::= { hpSwitchJ8697A 18 } - - hpSwitchModuleJ9307A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9307A 24-Port 10/100/1000 PoE+ zl Module." - ::= { hpSwitchJ8697A 19 } - - hpSwitchModuleJ9308A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9308A 20-Port 10/100/1000 PoE+ with - 4-Port SFP zl Module." - ::= { hpSwitchJ8697A 20 } - - hpSwitchModuleJ9478A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9478A 24-Port 10/100 PoE+ zl Module." - ::= { hpSwitchJ8697A 21 } - - hpSwitchModuleJ9309A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9309A 4-Port 10-GbE SFP+ zl Module." - ::= { hpSwitchJ8697A 22 } - - hpSwitchModuleJ9312A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9312A yl SFP+/CX4 10G Module." - ::= { hpSwitchJ8697A 23 } - - -- 5400/8200 blade family - - hpSwitchModuleJ9534A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9534A 24 port Gig-T PoE+ v2 zl Module." - ::= { hpSwitchJ8697A 24 } - - hpSwitchModuleJ9535A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9535A 20-Port Gig-T PoE+ / 4-Port SFP v2 zl - Module." - ::= { hpSwitchJ8697A 25 } - - hpSwitchModuleJ9536A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9536A 20-Port Gig-T PoE+ / 2-Port SFP+ zl Module." - ::= { hpSwitchJ8697A 26 } - - hpSwitchModuleJ9537A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9537A 24-Port SFP v2 zl Module." - ::= { hpSwitchJ8697A 27 } - - hpSwitchModuleJ9538A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9538A 8-Port 10GbE SFP+ v2 zl Module." - ::= { hpSwitchJ8697A 28 } - - hpSwitchModuleJ9546A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9546A 8-Port 10Gig-T LH zl Module." - ::= { hpSwitchJ8697A 29 } - - hpSwitchModuleJ9547A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9547A 24-Port 10/100 PoE+ zl Module." - ::= { hpSwitchJ8697A 30 } - - hpSwitchModuleJ9548A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9548A 20-Port Gig-T / 2-Port 10GbE SFP+ v2 zl - Module." - ::= { hpSwitchJ8697A 31 } - - hpSwitchModuleJ9549A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9549A 20-Port Gig-T / 4-Port SFP v2 zl Module." - ::= { hpSwitchJ8697A 32 } - - hpSwitchModuleJ9550A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9550A 24-Port Gig-T v2 zl Module." - ::= { hpSwitchJ8697A 33 } - - hpSwitchAdvServicesModule OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP Advanced Services zl Module." - ::= { hpSwitchJ8697A 34 } - - hpSwitchExtServicesModule OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP Extended Services zl Module." - ::= { hpSwitchJ8697A 35 } - - hpSwitchModuleJ9485A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP AllianceONE zl module (J9485A) with PCIe telephony - interfaces, Microsoft Windows Server 2008 and - Communications Server software installed." - ::= { hpSwitchJ8697A 36 } - - hpSwitchModuleJ9637A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9637A 12-Port Gig-T PoE+ / 12-Port SFP v2 zl - Module." - ::= { hpSwitchJ8697A 37 } - - -- different cards for the 4200 family - - - hpSwitchModuleJ8765A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8765A 10/100 module." - ::= { hpSwitchJ8770A 1 } - - hpSwitchModuleJ8764A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8764A 10/100/1000 module." - ::= { hpSwitchJ8770A 2 } - - hpSwitchModuleJ8776A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8776A miniGBIC module." - ::= { hpSwitchJ8770A 3 } - - hpSwitchModuleJ8763A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8763A 100FX module." - ::= { hpSwitchJ8770A 4 } - - hpSwitchModuleJ8768A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8768A Gig-T vl module." - ::= { hpSwitchJ8770A 5 } - - hpSwitchModuleJ9033A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9033A Gig-T/SFP vl module." - ::= { hpSwitchJ8770A 6 } - - hpSwitchModuleJ8765B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8765B 10/100-TX vl module." - ::= { hpSwitchJ8770A 8 } - - hpSwitchModuleJ8766A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8766A 10-GbE X2 vl module." - ::= { hpSwitchJ8770A 10 } - - hpSwitchModuleJ9021A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9021A HP 2810-24G Switch." - ::= { hpSwitchJ9021A 1 } - - hpSwitchModuleJ9022A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9022A HP 2810-48G Switch." - ::= { hpSwitchJ9022A 1 } - - hpSwitchModuleJ9019A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9019A HP 2510-24A Switch." - ::= { hpSwitchJ9019A 1 } - - hpSwitchModuleJ9020A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9020A HP 2510-48A Switch." - ::= { hpSwitchJ9020A 1 } - - hpSwitchModuleJ9085A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9085A HP 2610-24 Switch." - ::= { hpSwitchJ9085A 1 } - - hpSwitchModuleJ9088A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9088A HP 2610-48 Switch." - ::= { hpSwitchJ9088A 1 } - - hpSwitchModuleJ9087A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9087A HP 2610-24-PWR Switch." - ::= { hpSwitchJ9087A 1 } - - hpSwitchModuleJ9089A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9089A HP 2610-48-PWR Switch." - ::= { hpSwitchJ9089A 1 } - - hpSwitchModuleJ9086A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9086A HP 2610-24-PWR Switch on which - POE is supported on 12 ports." - ::= { hpSwitchJ9086A 1 } - - hpSwitchModuleJ9279A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9279A HP 2510G-24 Switch." - ::= { hpSwitchJ9279A 1 } - - hpSwitchModuleJ9280A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9280A HP 2510G-48 Switch." - ::= { hpSwitchJ9280A 1 } - - -- psuedo cards for the 2910 family - - hpSwitchModuleJ9726A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9726A HP 2920-24G Switch" - ::= { hpSwitchJ9726A 1 } - - hpSwitchModuleJ9727A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9727A HP 2920-24G-PoE+ Switch" - ::= { hpSwitchJ9727A 1 } - - hpSwitchModuleJ9728A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9728A HP 2920-48G Switch" - ::= { hpSwitchJ9728A 1 } - - hpSwitchModuleJ9729A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9729A HP 2920-48G-PoE+ Switch" - ::= { hpSwitchJ9729A 1 } - - hpSwitchModuleJ9147A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9147A HP 2910al-48G Switch" - ::= { hpSwitchJ9147A 1 } - - hpSwitchModuleJ9145A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9145A HP 2910al-24G Switch" - ::= { hpSwitchJ9145A 1 } - - hpSwitchModuleJ9148A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9148A HP 2910al-48G-PoE+ Switch" - ::= { hpSwitchJ9148A 1 } - - hpSwitchModuleJ9146A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9146A HP 2910al-24G-PoE+ Switch" - ::= { hpSwitchJ9146A 1 } - - hpSwitchModuleJ9149A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9149A 10-GbE 2-port CX4" - ::= { hpSwitchJ9146A 2 } - - hpSwitchModuleJ9008A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9008A 10-GbE 2-port SFP+" - ::= { hpSwitchJ9146A 3 } - - hpSwitchModuleJ9165A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9165A 10-GbE 1-port passive CX4" - ::= { hpSwitchJ9146A 4 } - - hpSwitchModuleJ9137A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9137A HP 2520-8 Switch." - ::= { hpSwitchJ9137A 1 } - - hpSwitchModuleJ9138A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9138A HP 2520-24 Switch." - ::= { hpSwitchJ9138A 1 } - - hpSwitchModuleJ9298A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9298A HP 2520G-8 Switch." - ::= { hpSwitchJ9298A 1 } - - hpSwitchModuleJ9299A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9299A HP 2520G-24 Switch." - ::= { hpSwitchJ9299A 1 } - - -- pseudo cards for the E3800 family - hpSwitchModuleJ9577A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800 4-port Stacking Module." - ::= { hpSwitchJ9577A 1 } - - hpSwitchModuleJ9573 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-PoE+-2SFP+ Switch." - ::= { hpSwitchJ9573A 1 } - - hpSwitchModuleJ9574x OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-PoE+-4SFP+ Switch." - ::= { hpSwitchJ9574A 1 } - - hpSwitchModuleJ9574y OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-PoE+-4SFP+ Switch." - ::= { hpSwitchJ9574A 2 } - - hpSwitchModuleJ9575 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-2SFP+ Switch." - ::= { hpSwitchJ9575A 1 } - - hpSwitchModuleJ9576x OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-4SFP+ Switch." - ::= { hpSwitchJ9576A 1 } - - hpSwitchModuleJ9576y OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-4SFP+ Switch." - ::= { hpSwitchJ9576A 2 } - - hpSwitchModuleJ9584 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24SFP-2SFP+ Switch." - ::= { hpSwitchJ9584A 1 } - - hpSwitchModuleJ9585 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-2XG Switch." - ::= { hpSwitchJ9585A 1 } - - hpSwitchModuleJ9586x OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-4XG Switch." - ::= { hpSwitchJ9586A 1 } - - hpSwitchModuleJ9586y OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-4XG Switch." - ::= { hpSwitchJ9586A 2 } - - hpSwitchModuleJ9587 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-24G-PoE+-2XG Switch." - ::= { hpSwitchJ9587A 1 } - - hpSwitchModuleJ9588x OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-PoE+-4XG Switch." - ::= { hpSwitchJ9588A 1 } - - hpSwitchModuleJ9588y OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP E3800-48G-PoE+-4XG Switch." - ::= { hpSwitchJ9588A 2 } - - -- psuedo cards for the 3500 10/100 products - - hpSwitchModuleJ94xxA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J94xxA Fixed 10/100Base-TX/SFP." - ::= { hpSwitchJ9472A 1 } - - hpSwitchModuleJ94xyA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J94xyA Fixed 24p 10/100Base-TX." - ::= { hpSwitchJ9472A 2 } - - hpSwitchModuleJ94yxA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J94yxA Fixed 10/100Base-TX/SFP PoE." - ::= { hpSwitchJ9473A 1 } - - hpSwitchModuleJ94yyA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J94yyA Fixed 24p 10/100Base-TX PoE." - ::= { hpSwitchJ9473A 2 } - - hpSwitchModuleJ93aaA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J93aaA Fixed Gig-T/SFP PoE+." - ::= { hpSwitchJ9311A 1 } - - hpSwitchModuleJ93bbA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J93bbA Fixed 24p Gig-T PoE+." - ::= { hpSwitchJ9311A 2 } - - hpSwitchModuleJ9565A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9565A HP 2615-8-PoE Switch." - ::= { hpSwitchJ9565A 1 } - - hpSwitchModuleJ9562A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9562A HP 2915-8G-PoE Switch." - ::= { hpSwitchJ9562A 1 } - - -- psuedo cards for the 2620 10/100 family - - hpSwitchModuleJ9623A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9623A Fixed 24p 10/100 module." - ::= { hpSwitchJ9623A 1 } - - hpSwitchModuleJ9624A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9624A Fixed 24p PPoEP 10/100 module." - ::= { hpSwitchJ9624A 1 } - - hpSwitchModuleJ9625A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9625A Fixed 24p PoEP 10/100 module." - ::= { hpSwitchJ9625A 1 } - - hpSwitchModuleJ9626A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9626A Fixed 48p 10/100 module." - ::= { hpSwitchJ9626A 1 } - - hpSwitchModuleJ9627A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9627A Fixed 48p PoEP 10/100 module." - ::= { hpSwitchJ9627A 1 } - - -- psuedo cards for the 2530 family - - hpSwitchModuleJ9772A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9772A Fixed 48p PoEP 10/100/1000-T module." - ::= { hpSwitchJ9772A 1 } - - hpSwitchModuleJ9773A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9773A Fixed 24p PoEP 10/100/1000-T module." - ::= { hpSwitchJ9773A 1 } - - hpSwitchModuleJ9774A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9774A Fixed 8p PoEP 10/100/1000-T module." - ::= { hpSwitchJ9774A 1 } - - hpSwitchModuleJ9775A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9775A Fixed 48p 10/100/1000-T module." - ::= { hpSwitchJ9775A 1 } - - hpSwitchModuleJ9776A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9776A Fixed 24p 10/100/1000-T module." - ::= { hpSwitchJ9776A 1 } - - hpSwitchModuleJ9777A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9777A Fixed 8p 10/100/1000-T module." - ::= { hpSwitchJ9777A 1 } - - hpSwitchModuleJ9778A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9778A Fixed 48p PoEP 10/100 module." - ::= { hpSwitchJ9778A 1 } - - hpSwitchModuleJ9779A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9779A Fixed 24p PoEP 10/100 module." - ::= { hpSwitchJ9779A 1 } - - hpSwitchModuleJ9780A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9779A Fixed 8p PoEP 10/100 module." - ::= { hpSwitchJ9780A 1 } - - hpSwitchModuleJ9781A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9781A Fixed 48p 10/100 module." - ::= { hpSwitchJ9781A 1 } - - hpSwitchModuleJ9782A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9782A Fixed 24p 10/100 module." - ::= { hpSwitchJ9782A 1 } - - hpSwitchModuleJ9783A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9783A Fixed 8p 10/100 module." - ::= { hpSwitchJ9783A 1 } - - hpSwitchModuleJ9853A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9853A Fixed 48p PoEP 10/100/1000-T 2SFP+ module." - ::= { hpSwitchJ9853A 1 } - - hpSwitchModuleJ9854A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9854A Fixed 24p PoEP 10/100/1000-T 2SFP+ module." - ::= { hpSwitchJ9854A 1 } - - hpSwitchModuleJ9855A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9855A Fixed 48p 10/100/1000-T 2SFP+ module." - ::= { hpSwitchJ9855A 1 } - - hpSwitchModuleJ9856A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9856A Fixed 24p 10/100/1000-T 2SFP+ module." - ::= { hpSwitchJ9856A 1 } - - - hpSwitchModuleJ9730A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9730A 10-GbE 2-port CX4" - ::= { hpSwitchJ9729A 2 } - - hpSwitchModuleJ9731A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9731A 10-GbE 2-port SFP+" - ::= { hpSwitchJ9729A 3 } - - hpSwitchModuleJ9732A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9732A 10GBASE-T" - ::= { hpSwitchJ9729A 4 } - - hpSwitchModuleJ9733A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J9733A 2 Port Stacking" - ::= { hpSwitchJ9729A 5 } - - -- WAN Products - - -- Branches under the hpicfWan node - hpWANRouters OBJECT IDENTIFIER ::= { hpicfWAN 1 } - hpWANModules OBJECT IDENTIFIER ::= { hpicfWAN 2 } - - -- WAN Routers - - hpSRJ8751A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8751A Secure Router 7001dl." - ::= { hpWANRouters 1 } - - hpSRJ8752A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8752A Secure Router 7102dl." - ::= { hpWANRouters 2 } - - hpSRJ8753A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8753A Secure Router 7203dl." - ::= { hpWANRouters 3 } - - hpSRJ8754A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8754A Secure Router 7306dl." - ::= { hpWANRouters 4 } - - -- WAN Modules - - hpSRmoduleJ8451A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x T1 module." - ::= { hpWANModules 1 } - - hpSRmoduleJ8452A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x T1 + DSX-1 module." - ::= { hpWANModules 2 } - - hpSRmoduleJ8453A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 2 x T1 module." - ::= { hpWANModules 3 } - - hpSRmoduleJ8454A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x E1 module." - ::= { hpWANModules 4 } - - hpSRmoduleJ8455A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x E1 + G.703 module." - ::= { hpWANModules 5 } - - hpSRmoduleJ8456A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 2 x E1 module." - ::= { hpWANModules 6 } - - hpSRmoduleJ8457A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 2 x ISDN BRI S/T module." - ::= { hpWANModules 7 } - - hpSRmoduleJ8458A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x Serial module." - ::= { hpWANModules 8 } - - hpSRmoduleJ8459A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x ADSL2+ Annex A module." - ::= { hpWANModules 9 } - - hpSRmoduleJ8759A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 1 x ADSL2+ Annex B module." - ::= { hpWANModules 10 } - - hpSRmoduleJ8460A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl ISDN BRI U backup." - ::= { hpWANModules 11 } - - hpSRmoduleJ8461A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl ISDN BRI S/T backup." - ::= { hpWANModules 12 } - - hpSRmoduleJ8462A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl Analog Modem backup." - ::= { hpWANModules 13 } - - hpSRmoduleJ8463A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl 8 x T1/E1 wide module." - ::= { hpWANModules 14 } - - hpSRmoduleJ8464A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl DS-3 wide module." - ::= { hpWANModules 15 } - - hpSRmoduleJ8465A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR dl HSSI wide module." - ::= { hpWANModules 16 } - - hpSRmoduleJ8471A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR 7100/7200 IPSec module." - ::= { hpWANModules 17 } - - hpSRmoduleJ8472A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP SR 7300 series IPSec module." - ::= { hpWANModules 18 } - - -- Accessories for 7300 series WAN Secure Router - - hpSRPowerSupply8756A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J8754A Secure Router 7306dl powersupply." - ::= { hpSRJ8754A 1 } - - hpManagementModuleJ9092A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9092A HP 8200zl Switch Management Module." - ::= { hpSwitchJ9091A 1 } - - hpFabricModuleJ9093A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J9093A HP 8200zl Switch Fabric Module." - ::= { hpSwitchJ9091A 2 } - - hpSSMModuleJ8784A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8784A HP 8212zl Switch System Support Module." - ::= { hpSwitchJ9091A 3 } - - - - - - - - -- different cards for the 6600 family - - hpSwitchModuleJ92yyA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J92yyA ml Fixed 4p SFP+." - ::= { hpSwitchJ9265A 1 } - - hpSwitchModuleJ92xxA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J92xxA ml Fixed Gig-T/SFP." - ::= { hpSwitchJ9265A 2 } - - hpSwitchModuleJ92wwA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J92wwA ml Fixed 24 Gig." - ::= { hpSwitchJ9265A 3 } - - hpSwitchModuleJ92vvA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J92vvA ml Fixed 24 Gig DP." - ::= { hpSwitchJ9265A 4 } - - hpSwitchModuleJ92uuA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J92uuA ml Fixed 24 Gig Non DP." - ::= { hpSwitchJ9265A 5 } - - hpSwitchModuleJ92ttA OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP J92ttA ml Fixed 2 10Gig." - ::= { hpSwitchJ9265A 6 } - - -- different pseudo cards for Switch 26xx/6108 family - - hpSwitchModuleJ4899A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4899A HP 2650 48-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ4899A 1 } - - hpSwitchModuleJ4902A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4902A HP 6108 6-port 10/100/1000-TX + 2-port Gig - module." - ::= { hpSwitchJ4902A 1 } - - hpSwitchModuleJ4900A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4900A HP 2626 24-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ4900A 1 } - - hpSwitchModuleJ8165A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8165A HP 2650-PWR 48-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ8165A 1 } - - hpSwitchModuleJ8164A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8164A HP 2626-PWR 24-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ8164A 1 } - - hpSwitchModuleJ4899B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4899B HP 2650 48-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ4899B 1 } - - hpSwitchModuleJ4900B OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4900B HP 2626 24-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ4900B 1 } - - hpSwitchModuleJ8762A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J8762A HP 2600-8-PWR 8-port 10/100-T + 1-port Gig - module." - ::= { hpSwitchJ8762A 1 } - - hpSwitchModuleJ4899C OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4899C HP 2650 48-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ4899C 1 } - - hpSwitchModuleJ4900C OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - J4900C HP 2626 24-port 10/100-T + 2-port Gig - module." - ::= { hpSwitchJ4900C 1 } - - -- different pseudo cards for Switch 6700 family - - hpSwitchModuleA6713A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP A6713A 16+8-port 10/100T + Gig TX - module." - ::= { hpSwitchA6713A 11 } - - hpSwitchModuleA6716A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP A6716A 16+8-port 10/100T + Gig SX - module." - ::= { hpSwitchA6716A 12 } - - hpSwitchModuleA6717A OBJECT-IDENTITY - STATUS current - DESCRIPTION "The authoritative identifier for the - HP A6717A 16+8-port 10/100T + Gig LX - module." - ::= { hpSwitchA6717A 13 } - -END diff --git a/mibs/orig/HP-ICF-TC b/mibs/orig/HP-ICF-TC deleted file mode 100644 index af7e8f8..0000000 --- a/mibs/orig/HP-ICF-TC +++ /dev/null @@ -1,148 +0,0 @@ -HP-ICF-TC DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY - FROM SNMPv2-SMI - TEXTUAL-CONVENTION - FROM SNMPv2-TC - hpicfAdmin - FROM HP-ICF-OID; - - hpicfTextualConventions MODULE-IDENTITY - LAST-UPDATED "201010120800Z" -- October 12, 2010 - ORGANIZATION "HP Networking" - CONTACT-INFO "Hewlett-Packard Company - 8000 Foothills Blvd. - Roseville, CA 95747" - DESCRIPTION "This module contains common textual convention - definitions used by various HP ICF MIB modules." - - REVISION "201010120800Z" -- October 12, 2010 - DESCRIPTION "Added VidList type" - - REVISION "200902101800Z" -- February 10, 2009 - DESCRIPTION "Added 10GbE-K for 802.3ap (clauses 69-74)" - - REVISION "200808190905Z" -- August 19, 2008 - DESCRIPTION "Added XFP-SFP+ DAC types for HpSwitchPortType." - - REVISION "200802041536Z" -- February 04, 2008 - DESCRIPTION "Added multiple transceiver types." - - REVISION "200402182305Z" -- February 18, 2004 - DESCRIPTION "Added gigabitEthernetESP and tenGigabitEthernetCX - type for HpSwitchPortType." - - REVISION "200011030717Z" -- November 3, 2000 - DESCRIPTION "Initial revision." - ::= { hpicfAdmin 4 } - - ConfigStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Used to indicate the configuration status for - a group of objects. 'active' means that the - values of the related objects are currently in - use by the device. 'notInService' indicates that - the objects have been reconfigured in such a way - that the values cannot take effect until after the - next reboot of the device. 'notReady' indicates - that the objects are not consistent with each other." - SYNTAX INTEGER { - active(1), - notInService(2), - notReady(3) - } - - HpSwitchPortType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Used to indicate the type of port." - SYNTAX INTEGER { - other(1), - none(2), - unknown(3), - ethernetCsmacd(6), - iso88023Csmacd(7), - fddi(15), - atm(37), - propMultiplexor(54), - ieee80212(55), - fastEther(62), - fastEtherFX(69), - fastEtherFX-sfp(70), - tenGSFP-SR (112), - tenGSFP-LR (113), - tenGSFP-ER (114), - tenGSFP-LRM (115), - tenGSFP-LX4 (116), - gigabitEthernetSX (117), - gigabitEthernetLX (118), - gigabitEthernetT (119), - gigabitEthernetStk (120), - gigabitEthernetLH (121), - tenGbE-CX4 (122), - gigabitEthernetESP (123), - tenGbE-SR (124), - tenGbE-ER (125), - tenGbE-LR (126), - gigabitEthernetT-sfp (127), - fastEtherGEN (128), - gigabitEthernetGEN (129), - tenGbE-GEN (130), - fastEtherBX-D (131), - fastEtherBX-U (132), - gigabitEthernetBX-D (133), - gigabitEthernetBX-U (134), - tenGbE-LRM (135), - sFP-PLUS-SR (136), - sFP-PLUS-LR (137), - sFP-PLUS-LRM (138), - sFP-PLUS-DAC (139), - sFP-PLUS-DA1 (140), - sFP-PLUS-DA2 (141), - sFP-PLUS-DA3 (142), - sFP-PLUS-DA5 (143), - sFP-PLUS-DA7 (144), - sFP-PLUS-DA10 (145), - sFP-PLUS-DA15 (146), - sFP-PLUS-DA20 (147), - tenGbE-T (148), - tenGbE-TSH (149), - tenGbE-TLH (150), - tenGbE-STK (151), - xFP-SFP-PLUS-DAC (152), - xFP-SFP-PLUS-DA1 (153), - xFP-SFP-PLUS-DA3 (154), - xFP-SFP-PLUS-DA5 (155), - xFP-SFP-PLUS-DA7 (156), - xFP-SFP-PLUS-DA10 (157), - tenGbE-K (158), - sFP-PLUS-ER (160), - sFP-CWDM1470 (161), - sFP-CWDM1490 (162), - sFP-CWDM1510 (163), - sFP-CWDM1530 (164), - sFP-CWDM1550 (165), - sFP-CWDM1570 (166), - sFP-CWDM1590 (167), - sFP-CWDM1610 (168) - } - - VidList ::= TEXTUAL-CONVENTION - DISPLAY-HINT "512x" - STATUS current - DESCRIPTION - "Each octet within this value specifies a set of eight - VlanIndex (VID), with the first octet specifying VIDs 1 - through 8, the second octet specifying VIDs 9 through 16, - etc. Within each octet, the most significant bit represents - the lowest numbered VID, and the least significant bit - represents the highest numbered VID. Thus, each VID - is represented by a single bit within the value of this - object. If that bit has a value of 1 then that VID is - included in the set of VIDs; the VID is not included if its - bit has a value of 0. This list represents the entire - range of VlanIndex values defined in the scope of IEEE - 802.1Q." - SYNTAX OCTET STRING (SIZE (512)) - -END diff --git a/mibs/orig/IANA-RTPROTO-MIB b/mibs/orig/IANA-RTPROTO-MIB deleted file mode 100644 index 14dbb4e..0000000 --- a/mibs/orig/IANA-RTPROTO-MIB +++ /dev/null @@ -1,101 +0,0 @@ --- ***************************************************************** --- IANA-RTPROTO-MIB.my: IANA IP Route Protocol MIB --- --- October 2000, Rajiv Raghunarayan. --- --- Copyright (c) 2000 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - --- Extracted from ianaiprouteprotocol.mib, available at www.iana.org - -IANA-RTPROTO-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, mib-2 FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC; - -ianaRtProtoMIB MODULE-IDENTITY - LAST-UPDATED "200009260000Z" -- September 26, 2000 - ORGANIZATION "IANA" - CONTACT-INFO - " Internet Assigned Numbers Authority - Internet Corporation for Assigned Names and Numbers - 4676 Admiralty Way, Suite 330 - Marina del Rey, CA 90292-6601 - - Phone: +1 310 823 9358 - EMail: iana@iana.org" - DESCRIPTION - "This MIB module defines the IANAipRouteProtocol and - IANAipMRouteProtocol textual conventions for use in MIBs - which need to identify unicast or multicast routing - mechanisms. - - Any additions or changes to the contents of this MIB module - require either publication of an RFC, or Designated Expert - Review as defined in RFC 2434, Guidelines for Writing an - IANA Considerations Section in RFCs. The Designated Expert - will be selected by the IESG Area Director(s) of the Routing - Area." - - REVISION "200009260000Z" -- September 26, 2000 - DESCRIPTION "Original version, published in coordination - with RFC 2932." - - ::= { mib-2 84 } - -IANAipRouteProtocol ::= TEXTUAL-CONVENTION - STATUS current - - DESCRIPTION - "A mechanism for learning routes. Inclusion of values for - routing protocols is not intended to imply that those - protocols need be supported." - SYNTAX INTEGER { - other (1), -- not specified - local (2), -- local interface - netmgmt (3), -- static route - icmp (4), -- result of ICMP Redirect - - -- the following are all dynamic - -- routing protocols - - egp (5), -- Exterior Gateway Protocol - ggp (6), -- Gateway-Gateway Protocol - hello (7), -- FuzzBall HelloSpeak - rip (8), -- Berkeley RIP or RIP-II - isIs (9), -- Dual IS-IS - esIs (10), -- ISO 9542 - ciscoIgrp (11), -- Cisco IGRP - bbnSpfIgp (12), -- BBN SPF IGP - ospf (13), -- Open Shortest Path First - bgp (14), -- Border Gateway Protocol - idpr (15), -- InterDomain Policy Routing - ciscoEigrp (16), -- Cisco EIGRP - dvmrp (17) -- DVMRP - } - -IANAipMRouteProtocol ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The multicast routing protocol. Inclusion of values for - multicast routing protocols is not intended to imply that - those protocols need be supported." - SYNTAX INTEGER { - other(1), -- none of the following - local(2), -- e.g., manually configured - netmgmt(3), -- set via net.mgmt protocol - dvmrp(4), - mospf(5), - pimSparseDense(6), -- PIMv1, both DM and SM - cbt(7), - pimSparseMode(8), -- PIM-SM - pimDenseMode(9), -- PIM-DM - igmpOnly(10), - bgmp(11), - msdp(12) - } - -END diff --git a/mibs/orig/IANAifType-MIB b/mibs/orig/IANAifType-MIB deleted file mode 100644 index 32ea64e..0000000 --- a/mibs/orig/IANAifType-MIB +++ /dev/null @@ -1,518 +0,0 @@ --- ***************************************************************** --- IANAifType-MIB.my: IANA Interface Type MIB --- --- May 1994, Jeffrey T. Johnson --- --- Copyright (c) 1994-1997, 1998, 1999, 2000-2006 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - - IANAifType-MIB DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, mib-2 FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC; - - ianaifType MODULE-IDENTITY - LAST-UPDATED "200603310000Z" -- March 31, 2006 - ORGANIZATION "IANA" - CONTACT-INFO " Internet Assigned Numbers Authority - - Postal: ICANN - 4676 Admiralty Way, Suite 330 - Marina del Rey, CA 90292 - - Tel: +1 310 823 9358 - E-Mail: iana@iana.org" - - DESCRIPTION "This MIB module defines the IANAifType Textual - Convention, and thus the enumerated values of - the ifType object defined in MIB-II's ifTable." - - REVISION "200603310000Z" -- March 31, 2006 - DESCRIPTION "Registration of new IANA ifType 234." - - REVISION "200603300000Z" -- March 30, 2006 - DESCRIPTION "Registration of new IANA ifType 233." - - REVISION "200512220000Z" -- December 22, 2005 - DESCRIPTION "Registration of new IANA ifTypes 231 and 232." - - REVISION "200510100000Z" -- October 10, 2005 - DESCRIPTION "Registration of new IANA ifType 230." - - REVISION "200509090000Z" -- September 09, 2005 - DESCRIPTION "Registration of new IANA ifType 229." - - REVISION "200505270000Z" -- May 27, 2005 - DESCRIPTION "Registration of new IANA ifType 228." - - REVISION "200503030000Z" -- March 3, 2005 - DESCRIPTION "Added the IANAtunnelType TC and deprecated - IANAifType sixToFour (215) per RFC4087." - - REVISION "200411220000Z" -- November 22, 2004 - DESCRIPTION "Registration of new IANA ifType 227 per RFC4327." - - REVISION "200406170000Z" -- June 17, 2004 - DESCRIPTION "Registration of new IANA ifType 226." - - REVISION "200405120000Z" -- May 12, 2004 - DESCRIPTION "Added description for IANAifType 6, and - changed the descriptions for IANAifTypes - 180, 181, and 182." - - REVISION "200405070000Z" -- May 7, 2004 - DESCRIPTION "Registration of new IANAifType 225." - - REVISION "200308250000Z" -- Aug 25, 2003 - DESCRIPTION "Deprecated IANAifTypes 7 and 11. Obsoleted - IANAifTypes 62, 69, and 117. ethernetCsmacd (6) - should be used instead of these values" - - REVISION "200308180000Z" -- Aug 18, 2003 - DESCRIPTION "Registration of new IANAifType - 224." - - REVISION "200308070000Z" -- Aug 7, 2003 - DESCRIPTION "Registration of new IANAifTypes - 222 and 223." - - REVISION "200303180000Z" -- Mar 18, 2003 - DESCRIPTION "Registration of new IANAifType - 221." - - REVISION "200301130000Z" -- Jan 13, 2003 - DESCRIPTION "Registration of new IANAifType - 220." - - REVISION "200210170000Z" -- Oct 17, 2002 - DESCRIPTION "Registration of new IANAifType - 219." - - REVISION "200207160000Z" -- Jul 16, 2002 - DESCRIPTION "Registration of new IANAifTypes - 217 and 218." - - REVISION "200207100000Z" -- Jul 10, 2002 - DESCRIPTION "Registration of new IANAifTypes - 215 and 216." - - REVISION "200206190000Z" -- Jun 19, 2002 - DESCRIPTION "Registration of new IANAifType - 214." - - REVISION "200201040000Z" -- Jan 4, 2002 - DESCRIPTION "Registration of new IANAifTypes - 211, 212 and 213." - - REVISION "200112200000Z" -- Dec 20, 2001 - DESCRIPTION "Registration of new IANAifTypes - 209 and 210." - - REVISION "200111150000Z" -- Nov 15, 2001 - DESCRIPTION "Registration of new IANAifTypes - 207 and 208." - - - - REVISION "200111060000Z" -- Nov 6, 2001 - DESCRIPTION "Registration of new IANAifType - 206." - - - REVISION "200111020000Z" -- Nov 2, 2001 - DESCRIPTION "Registration of new IANAifType - 205." - - - REVISION "200110160000Z" -- Oct 16, 2001 - DESCRIPTION "Registration of new IANAifTypes - 199, 200, 201, 202, 203, and 204." - - - REVISION "200109190000Z" -- Sept 19, 2001 - DESCRIPTION "Registration of new IANAifType - 198." - - REVISION "200105110000Z" -- May 11, 2001 - DESCRIPTION "Registration of new IANAifType - 197." - - - REVISION "200101120000Z" -- Jan 12, 2001 - DESCRIPTION "Registration of new IANAifTypes - 195 and 196." - - REVISION "200012190000Z" -- Dec 19, 2000 - DESCRIPTION "Registration of new IANAifTypes - 193 and 194." - - REVISION "200012070000Z" -- Dec 07, 2000 - DESCRIPTION "Registration of new IANAifTypes - 191 and 192." - - REVISION "200012040000Z" -- Dec 04, 2000 - DESCRIPTION "Registration of new IANAifType - 190." - - REVISION "200010170000Z" -- Oct 17, 2000 - DESCRIPTION "Registration of new IANAifTypes - 188 and 189." - - REVISION "200010020000Z" -- Oct 02, 2000 - DESCRIPTION "Registration of new IANAifType 187." - - REVISION "200009010000Z" -- Sept 01, 2000 - DESCRIPTION "Registration of new IANAifTypes - 184, 185, and 186." - - REVISION "200008240000Z" -- Aug 24, 2000 - DESCRIPTION "Registration of new IANAifType 183." - - REVISION "200008230000Z" -- Aug 23, 2000 - DESCRIPTION "Registration of new IANAifTypes - 174-182." - - REVISION "200008220000Z" -- Aug 22, 2000 - DESCRIPTION "Registration of new IANAifTypes 170, - 171, 172 and 173." - - REVISION "200004250000Z" -- Apr 25, 2000 - DESCRIPTION "Registration of new IANAifTypes 168 and 169." - - - REVISION "200003060000Z" -- Mar 6, 2000 - DESCRIPTION "Fixed a missing semi-colon in the IMPORT. - Also cleaned up the REVISION log a bit. - It is not complete, but from now on it will - be maintained and kept up to date with each - change to this MIB module." - - REVISION "199910081430Z" -- Oct 08, 1999 - DESCRIPTION "Include new name assignments up to cnr(85). - This is the first version available via the WWW - at: ftp://ftp.isi.edu/mib/ianaiftype.mib" - - REVISION "199401310000Z" -- Jan 31, 1994 - DESCRIPTION "Initial version of this MIB as published in - RFC 1573." - - ::= { mib-2 30 } - - - IANAifType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This data type is used as the syntax of the ifType - object in the (updated) definition of MIB-II's - ifTable. - - The definition of this textual convention with the - addition of newly assigned values is published - periodically by the IANA, in either the Assigned - Numbers RFC, or some derivative of it specific to - Internet Network Management number assignments. (The - latest arrangements can be obtained by contacting the - IANA.) - - Requests for new values should be made to IANA via - email (iana@iana.org). - - The relationship between the assignment of ifType - values and of OIDs to particular media-specific MIBs - is solely the purview of IANA and is subject to change - without notice. Quite often, a media-specific MIB's - OID-subtree assignment within MIB-II's 'transmission' - subtree will be the same as its ifType value. - However, in some circumstances this will not be the - case, and implementors must not pre-assume any - specific relationship between ifType values and - transmission subtree OIDs." - SYNTAX INTEGER { - other(1), -- none of the following - regular1822(2), - hdh1822(3), - ddnX25(4), - rfc877x25(5), - ethernetCsmacd(6), -- for all ethernet-like interfaces, - -- regardless of speed, as per RFC3635 - iso88023Csmacd(7), -- Deprecated via RFC-draft-ietf-hubmib-etherif-mib-v3 ethernetCsmacd (6) should be used instead - iso88024TokenBus(8), - iso88025TokenRing(9), - iso88026Man(10), - starLan(11), -- Deprecated via RFC-draft-ietf-hubmib-etherif-mib-v3 ethernetCsmacd (6) should be used instead - proteon10Mbit(12), - proteon80Mbit(13), - hyperchannel(14), - fddi(15), - lapb(16), - sdlc(17), - ds1(18), -- DS1-MIB - e1(19), -- Obsolete see DS1-MIB - basicISDN(20), - primaryISDN(21), - propPointToPointSerial(22), -- proprietary serial - ppp(23), - softwareLoopback(24), - eon(25), -- CLNP over IP - ethernet3Mbit(26), - nsip(27), -- XNS over IP - slip(28), -- generic SLIP - ultra(29), -- ULTRA technologies - ds3(30), -- DS3-MIB - sip(31), -- SMDS, coffee - frameRelay(32), -- DTE only. - rs232(33), - para(34), -- parallel-port - arcnet(35), -- arcnet - arcnetPlus(36), -- arcnet plus - atm(37), -- ATM cells - miox25(38), - sonet(39), -- SONET or SDH - x25ple(40), - iso88022llc(41), - localTalk(42), - smdsDxi(43), - frameRelayService(44), -- FRNETSERV-MIB - v35(45), - hssi(46), - hippi(47), - modem(48), -- Generic modem - aal5(49), -- AAL5 over ATM - sonetPath(50), - sonetVT(51), - smdsIcip(52), -- SMDS InterCarrier Interface - propVirtual(53), -- proprietary virtual/internal - propMultiplexor(54),-- proprietary multiplexing - ieee80212(55), -- 100BaseVG - fibreChannel(56), -- Fibre Channel - hippiInterface(57), -- HIPPI interfaces - frameRelayInterconnect(58), -- Obsolete use either - -- frameRelay(32) or - -- frameRelayService(44). - aflane8023(59), -- ATM Emulated LAN for 802.3 - aflane8025(60), -- ATM Emulated LAN for 802.5 - cctEmul(61), -- ATM Emulated circuit - fastEther(62), -- Obsoleted via RFC-draft-ietf-hubmib-etherif-mib-v3 ethernetCsmacd (6) should be used instead - isdn(63), -- ISDN and X.25 - v11(64), -- CCITT V.11/X.21 - v36(65), -- CCITT V.36 - g703at64k(66), -- CCITT G703 at 64Kbps - g703at2mb(67), -- Obsolete see DS1-MIB - qllc(68), -- SNA QLLC - fastEtherFX(69), -- Obsoleted via RFC-draft-ietf-hubmib-etherif-mib-v3 ethernetCsmacd (6) should be used instead - channel(70), -- channel - ieee80211(71), -- radio spread spectrum - ibm370parChan(72), -- IBM System 360/370 OEMI Channel - escon(73), -- IBM Enterprise Systems Connection - dlsw(74), -- Data Link Switching - isdns(75), -- ISDN S/T interface - isdnu(76), -- ISDN U interface - lapd(77), -- Link Access Protocol D - ipSwitch(78), -- IP Switching Objects - rsrb(79), -- Remote Source Route Bridging - atmLogical(80), -- ATM Logical Port - ds0(81), -- Digital Signal Level 0 - ds0Bundle(82), -- group of ds0s on the same ds1 - bsc(83), -- Bisynchronous Protocol - async(84), -- Asynchronous Protocol - cnr(85), -- Combat Net Radio - iso88025Dtr(86), -- ISO 802.5r DTR - eplrs(87), -- Ext Pos Loc Report Sys - arap(88), -- Appletalk Remote Access Protocol - propCnls(89), -- Proprietary Connectionless Protocol - hostPad(90), -- CCITT-ITU X.29 PAD Protocol - termPad(91), -- CCITT-ITU X.3 PAD Facility - frameRelayMPI(92), -- Multiproto Interconnect over FR - x213(93), -- CCITT-ITU X213 - adsl(94), -- Asymmetric Digital Subscriber Loop - radsl(95), -- Rate-Adapt. Digital Subscriber Loop - sdsl(96), -- Symmetric Digital Subscriber Loop - vdsl(97), -- Very H-Speed Digital Subscrib. Loop - iso88025CRFPInt(98), -- ISO 802.5 CRFP - myrinet(99), -- Myricom Myrinet - voiceEM(100), -- voice recEive and transMit - voiceFXO(101), -- voice Foreign Exchange Office - voiceFXS(102), -- voice Foreign Exchange Station - voiceEncap(103), -- voice encapsulation - voiceOverIp(104), -- voice over IP encapsulation - atmDxi(105), -- ATM DXI - atmFuni(106), -- ATM FUNI - atmIma (107), -- ATM IMA - pppMultilinkBundle(108), -- PPP Multilink Bundle - ipOverCdlc (109), -- IBM ipOverCdlc - ipOverClaw (110), -- IBM Common Link Access to Workstn - stackToStack (111), -- IBM stackToStack - virtualIpAddress (112), -- IBM VIPA - mpc (113), -- IBM multi-protocol channel support - ipOverAtm (114), -- IBM ipOverAtm - iso88025Fiber (115), -- ISO 802.5j Fiber Token Ring - tdlc (116), -- IBM twinaxial data link control - gigabitEthernet (117), -- Obsoleted via RFC-draft-ietf-hubmib-etherif-mib-v3 ethernetCsmacd (6) should be used instead - hdlc (118), -- HDLC - lapf (119), -- LAP F - v37 (120), -- V.37 - x25mlp (121), -- Multi-Link Protocol - x25huntGroup (122), -- X25 Hunt Group - trasnpHdlc (123), -- Transp HDLC - interleave (124), -- Interleave channel - fast (125), -- Fast channel - ip (126), -- IP (for APPN HPR in IP networks) - docsCableMaclayer (127), -- CATV Mac Layer - docsCableDownstream (128), -- CATV Downstream interface - docsCableUpstream (129), -- CATV Upstream interface - a12MppSwitch (130), -- Avalon Parallel Processor - tunnel (131), -- Encapsulation interface - coffee (132), -- coffee pot - ces (133), -- Circuit Emulation Service - atmSubInterface (134), -- ATM Sub Interface - l2vlan (135), -- Layer 2 Virtual LAN using 802.1Q - l3ipvlan (136), -- Layer 3 Virtual LAN using IP - l3ipxvlan (137), -- Layer 3 Virtual LAN using IPX - digitalPowerline (138), -- IP over Power Lines - mediaMailOverIp (139), -- Multimedia Mail over IP - dtm (140), -- Dynamic syncronous Transfer Mode - dcn (141), -- Data Communications Network - ipForward (142), -- IP Forwarding Interface - msdsl (143), -- Multi-rate Symmetric DSL - ieee1394 (144), -- IEEE1394 High Performance Serial Bus - if-gsn (145), -- HIPPI-6400 - dvbRccMacLayer (146), -- DVB-RCC MAC Layer - dvbRccDownstream (147), -- DVB-RCC Downstream Channel - dvbRccUpstream (148), -- DVB-RCC Upstream Channel - atmVirtual (149), -- ATM Virtual Interface - mplsTunnel (150), -- MPLS Tunnel Virtual Interface - srp (151), -- Spatial Reuse Protocol - voiceOverAtm (152), -- Voice Over ATM - voiceOverFrameRelay (153), -- Voice Over Frame Relay - idsl (154), -- Digital Subscriber Loop over ISDN - compositeLink (155), -- Avici Composite Link Interface - ss7SigLink (156), -- SS7 Signaling Link - propWirelessP2P (157), -- Prop. P2P wireless interface - frForward (158), -- Frame Forward Interface - rfc1483 (159), -- Multiprotocol over ATM AAL5 - usb (160), -- USB Interface - ieee8023adLag (161), -- IEEE 802.3ad Link Aggregate - bgppolicyaccounting (162), -- BGP Policy Accounting - frf16MfrBundle (163), -- FRF .16 Multilink Frame Relay - h323Gatekeeper (164), -- H323 Gatekeeper - h323Proxy (165), -- H323 Voice and Video Proxy - mpls (166), -- MPLS - mfSigLink (167), -- Multi-frequency signaling link - hdsl2 (168), -- High Bit-Rate DSL - 2nd generation - shdsl (169), -- Multirate HDSL2 - ds1FDL (170), -- Facility Data Link 4Kbps on a DS1 - pos (171), -- Packet over SONET/SDH Interface - dvbAsiIn (172), -- DVB-ASI Input - dvbAsiOut (173), -- DVB-ASI Output - plc (174), -- Power Line Communtications - nfas (175), -- Non Facility Associated Signaling - tr008 (176), -- TR008 - gr303RDT (177), -- Remote Digital Terminal - gr303IDT (178), -- Integrated Digital Terminal - isup (179), -- ISUP - propDocsWirelessMaclayer (180), -- Cisco proprietary Maclayer - propDocsWirelessDownstream (181), -- Cisco proprietary Downstream - propDocsWirelessUpstream (182), -- Cisco proprietary Upstream - hiperlan2 (183), -- HIPERLAN Type 2 Radio Interface - propBWAp2Mp (184), -- PropBroadbandWirelessAccesspt2multipt - sonetOverheadChannel (185), -- SONET Overhead Channel - digitalWrapperOverheadChannel (186), -- Digital Wrapper - aal2 (187), -- ATM adaptation layer 2 - radioMAC (188), -- MAC layer over radio links - atmRadio (189), -- ATM over radio links - imt (190), -- Inter Machine Trunks - mvl (191), -- Multiple Virtual Lines DSL - reachDSL (192), -- Long Reach DSL - frDlciEndPt (193), -- Frame Relay DLCI End Point - atmVciEndPt (194), -- ATM VCI End Point - opticalChannel (195), -- Optical Channel - opticalTransport (196), -- Optical Transport - propAtm (197), -- Proprietary ATM - voiceOverCable (198), -- Voice Over Cable Interface - infiniband (199), -- Infiniband - teLink (200), -- TE Link - q2931 (201), -- Q.2931 - virtualTg (202), -- Virtual Trunk Group - sipTg (203), -- SIP Trunk Group - sipSig (204), -- SIP Signaling - docsCableUpstreamChannel (205), -- CATV Upstream Channel - econet (206), -- Acorn Econet - pon155 (207), -- FSAN 155Mb Symetrical PON interface - pon622 (208), -- FSAN622Mb Symetrical PON interface - bridge (209), -- Transparent bridge interface - linegroup (210), -- Interface common to multiple lines - voiceEMFGD (211), -- voice E&M Feature Group D - voiceFGDEANA (212), -- voice FGD Exchange Access North American - voiceDID (213), -- voice Direct Inward Dialing - mpegTransport (214), -- MPEG transport interface - sixToFour (215), -- 6to4 interface (DEPRECATED) - gtp (216), -- GTP (GPRS Tunneling Protocol) - pdnEtherLoop1 (217), -- Paradyne EtherLoop 1 - pdnEtherLoop2 (218), -- Paradyne EtherLoop 2 - opticalChannelGroup (219), -- Optical Channel Group - homepna (220), -- HomePNA ITU-T G.989 - gfp (221), -- Generic Framing Procedure (GFP) - ciscoISLvlan (222), -- Layer 2 Virtual LAN using Cisco ISL - actelisMetaLOOP (223), -- Acteleis proprietary MetaLOOP High Speed Link - fcipLink (224), -- FCIP Link - rpr (225), -- Resilient Packet Ring Interface Type - qam (226), -- RF Qam Interface - lmp (227), -- Link Management Protocol - cblVectaStar (228), -- Cambridge Broadband Limited VectaStar - docsCableMCmtsDownstream (229), -- CATV Modular CMTS Downstream Interface - adsl2 (230), -- Asymmetric Digital Subscriber Loop Version 2 - macSecControlledIF (231), -- MACSecControlled - macSecUncontrolledIF (232), -- MACSecUncontrolled - aviciOpticalEther (233), -- Avici Optical Ethernet Aggregate - atmbond (234) -- atmbond - } - -IANAtunnelType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The encapsulation method used by a tunnel. The value - direct indicates that a packet is encapsulated - directly within a normal IP header, with no - intermediate header, and unicast to the remote tunnel - endpoint (e.g., an RFC 2003 IP-in-IP tunnel, or an RFC - 1933 IPv6-in-IPv4 tunnel). The value minimal indicates - that a Minimal Forwarding Header (RFC 2004) is - inserted between the outer header and the payload - packet. The value UDP indicates that the payload - packet is encapsulated within a normal UDP packet - (e.g., RFC 1234). - - The values sixToFour, sixOverFour, and isatap - indicates that an IPv6 packet is encapsulated directly - within an IPv4 header, with no intermediate header, - and unicast to the destination determined by the 6to4, - 6over4, or ISATAP protocol. - - The remaining protocol-specific values indicate that a - header of the protocol of that name is inserted - between the outer header and the payload header. - - The assignment policy for IANAtunnelType values is - identical to the policy for assigning IANAifType - values." - SYNTAX INTEGER { - other(1), -- none of the following - direct(2), -- no intermediate header - gre(3), -- GRE encapsulation - minimal(4), -- Minimal encapsulation - l2tp(5), -- L2TP encapsulation - pptp(6), -- PPTP encapsulation - l2f(7), -- L2F encapsulation - udp(8), -- UDP encapsulation - atmp(9), -- ATMP encapsulation - msdp(10), -- MSDP encapsulation - sixToFour(11), -- 6to4 encapsulation - sixOverFour(12), -- 6over4 encapsulation - isatap(13), -- ISATAP encapsulation - teredo(14) -- Teredo encapsulation - } - - END diff --git a/mibs/orig/IDRAC-MIB-SMIv2 b/mibs/orig/IDRAC-MIB-SMIv2 deleted file mode 100644 index 2a753e4..0000000 --- a/mibs/orig/IDRAC-MIB-SMIv2 +++ /dev/null @@ -1,11389 +0,0 @@ ------------------------------------------------------------------------------- --- --- Title: iDRAC MIB --- --- Version: 2.0 --- Date: 10/30/2012 --- --- Description: This MIB defines MIB objects that make iDRAC data available --- to SNMP management applications. --- --- Note that the iDRAC MIB file is published in both types of SMI (Structure --- of Managed Information) notations: SMIv1 and SMIv2. This copy of the iDRAC --- MIB file is the SMIv2 version of the MIB file. --- --- Copyright (c) 2012 Dell Inc. --- All Rights Reserved. --- --- Note: The information and functionality described by this MIB file, --- like many MIB files, is subject to change without notice. --- Please examine the version number of this MIB and compare it --- to the version number you are expecting. --- --- OID Format Legend: --- = attribute ID --- = index ID --- = trap ID --- ------------------------------------------------------------------------------- - - ------------------------------------------------------------------------------- --- Begin MIB ------------------------------------------------------------------------------- - -IDRAC-MIB-SMIv2 DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32, - TimeTicks, NOTIFICATION-TYPE, - OBJECT-IDENTITY, enterprises FROM SNMPv2-SMI - TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF; - -outOfBandGroup MODULE-IDENTITY - LAST-UPDATED "201210300000Z" -- 10/30/2012 - ORGANIZATION "Dell Inc." - CONTACT-INFO - "Visit the Dell Support website at: support.dell.com" - DESCRIPTION - "This MIB defines MIB objects that make out-of-band iDRAC data - available to SNMP management applications. It also defines the traps - that iDRAC supports." - -- Revision history, in reverse chronological order. - REVISION "201210300000Z" -- 10/30/2012 - DESCRIPTION - "Version: 2.0 (Initial SMIv2 version of the iDRAC MIB.)" - ::= { enterprises dell(674) server3(10892) 5 } - - ------------------------------------------------------------------------------- --- Object Identifiers ------------------------------------------------------------------------------- - --- Server3 Out-of-Band Groups --- --- The informationGroup provides information to discover the system (RAC, --- blade enclosure/chassis, and server) and its associated properties. --- -informationGroup OBJECT IDENTIFIER ::= { outOfBandGroup 1 } -racInfoGroup OBJECT IDENTIFIER ::= { informationGroup 1 } -chassisInfoGroup OBJECT IDENTIFIER ::= { informationGroup 2 } -systemInfoGroup OBJECT IDENTIFIER ::= { informationGroup 3 } -statusGroup OBJECT IDENTIFIER ::= { outOfBandGroup 2 } -alertGroup OBJECT IDENTIFIER ::= { outOfBandGroup 3 } -alertVariablesGroup OBJECT IDENTIFIER ::= { alertGroup 1 } -alertTrapGroup OBJECT IDENTIFIER ::= { alertGroup 2 } -systemAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 1 } -storageAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 2 } -updatesAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 3 } -auditAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 4 } -configurationAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 5 } - --- System details start -systemDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 4 } -mIBVersionGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1 } -systemStateGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 200 } -chassisInformationGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 300 } -powerGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 600 } -thermalGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 700 } -deviceGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1100 } -slotGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1200 } -fruGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 2000 } --- System details end - --- Storage details start -storageDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 5 } -software OBJECT IDENTIFIER ::= { storageDetailsGroup 1 } -storageManagement OBJECT IDENTIFIER ::= { software 20 } -physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } -logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } --- Storage details end - - ------------------------------------------------------------------------------- --- Textual Conventions ------------------------------------------------------------------------------- - -StringType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "General string type." - SYNTAX OCTET STRING (SIZE (0..1023)) - -String64 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "General string type for 64 byte strings." - SYNTAX OCTET STRING (SIZE (0..64)) - -FQDDString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "String type for FQDD strings." - SYNTAX OCTET STRING (SIZE (0..512)) - -SecurityString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "String type for security strings." - SYNTAX OCTET STRING (SIZE (0..255)) - -MACAddress ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "String type for MAC Address strings." - SYNTAX OCTET STRING (SIZE (6)) - -ObjectRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer with a range of (1..128)." - SYNTAX INTEGER (1..128) - -Unsigned8BitRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer with a range of (0..255)." - SYNTAX INTEGER (0..255) - -Unsigned16BitRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer with a range of (0..65535)." - SYNTAX INTEGER (0..65535) - -Unsigned32BitRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer with a range of (0..4294967295)." - SYNTAX INTEGER (0..4294967295) - -Signed32BitRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer with a range of (-2147483647..2147483647)." - SYNTAX INTEGER (-2147483647..2147483647) - -BooleanType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Integer with a range of (0..1). - Where 0 = FALSE, 1 = TRUE" - SYNTAX INTEGER (1..128) - --- (Note: The following definition is in the SMIv1 version of the iDRAC MIB --- file. In order to keep this SMIv2 copy of the iDRAC MIB file as closely in --- sync with the SMIv1 version, this definition has been kept, and is used, --- in this SMIv2 version of the MIB file.) --- --- This definition is required because SNMP V1 does not support 64 bit ranges. --- The information sent back by this subagent will have the most significant --- byte of the information as the first byte (i.e. network byte order). --- E.G. The integer value 0x1029384754657687 will be sent as: --- Byte: 1 2 3 4 ... --- Hex: 10 29 38 47 ... --- Binary: 0001 0000 0010 1001 0011 1000 0100 0111 ... -Unsigned64BitRange ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "String type used to effectively store an unsigned 64-bit integer." - SYNTAX OCTET STRING (SIZE (8)) - --- DateName dates are defined in the displayable format --- yyyymmddHHMMSS.uuuuuu+ooo --- where yyyy is the year, mm is the month number, dd is the day of the month, --- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the --- number of microseconds, and +ooo is the offset from UTC in minutes. If east --- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the --- number is preceded by a minus (-) sign. --- --- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT --- would be represented as: 19940525133015.000000-300 --- --- Values must be zero-padded if necessary, like "05" in the example above. --- If a value is not supplied for a field, each character in the field --- must be replaced with asterisk ('*') characters. -DateName ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "String type for date strings of a given DateName format." - SYNTAX OCTET STRING (SIZE (25)) - --- Note About Bit Fields: --- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, --- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers --- representing a series of bit definitions. They are NOT enumerations and --- should be treated as bit fields. The value is passed as a decimal value; --- it should be converted to hex, and the appropriate bits should be parsed --- from that. Some of the more common bit combinations are defined in some --- variables, but not all combinations are or will be defined. - --- --- Generic State Capabilities --- -StateCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "State Capabilities flags." - SYNTAX INTEGER { - -- If set to 0 (zero), object has no state capabilities - unknownCapabilities(1), -- object's state capabilities are unknown - -- The object's state capabilities allow it to be set to: - enableCapable(2), -- be disabled (offline) or be enabled (online) - notReadyCapable(4), -- not ready - enableAndNotReadyCapable(6) - -} - --- --- Generic State Settings --- -StateSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "State Settings flags." - SYNTAX INTEGER { - -- If set to 0 (zero), object has no state settings enabled and is disabled - unknown(1), -- object's state is unknown - enabled(2), -- object's state is disabled (offline) if bit is off - -- or enabled (online) if bit is on - notReady(4), -- object's state is not ready - enabledAndNotReady(6) -} - --- --- Probe Capabilities --- -ProbeCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Probe Capabilities flags." - SYNTAX INTEGER { - -- If set to 0 (zero) the object has no probe capabilities - -- The object's probe capabilities allow it to be set to: - upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set - lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set - upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default - lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default -} - --- --- Probe Status --- -StatusProbeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Probe Status enum." - SYNTAX INTEGER { - other(1), -- probe status is not one of the following: - unknown(2), -- probe status is unknown (not known or monitored) - ok(3), -- probe is reporting a value within the thresholds - nonCriticalUpper(4), -- probe has crossed upper noncritical threshold - criticalUpper(5), -- probe has crossed upper critical threshold - nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold - nonCriticalLower(7), -- probe has crossed lower noncritical threshold - criticalLower(8), -- probe has crossed lower critical threshold - nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold - failed(10) -- probe is not functional -} - --- --- Redundancy Status --- -StatusRedundancyEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Redundancy Status enum." - SYNTAX INTEGER { - other(1), -- redundancy status is not one of the following: - unknown(2), -- redundancy status is unknown (not known or monitored) - full(3), -- object is fully redundant - degraded(4), -- object's redundancy has been degraded - lost(5), -- object's redundancy has been lost - notRedundant(6), -- redundancy status does not apply or object is not redundant - redundancyOffline(7) -- redundancy object taken offline -} - --- --- Status --- -ObjectStatusEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Status of an object." - SYNTAX INTEGER { - other(1), -- the status of the object is not one of the - -- following: - unknown(2), -- the status of the object is unknown - -- (not known or monitored) - ok(3), -- the status of the object is ok - nonCritical(4), -- the status of the object is warning, non-critical - critical(5), -- the status of the object is critical (failure) - nonRecoverable(6) -- the status of the object is non-recoverable (dead) -} - -RacTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "RAC Type enum." - SYNTAX INTEGER { - other(1), -- the RAC type is not one of the following - unknown(2), -- the RAC type is unknown - idrac7monolithic(16), -- iDRAC7 Monolithic - idrac7modular(17) -- iDRAC7 Modular -} - -SystemFormFactorEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Form Factor enum." - SYNTAX INTEGER { - other(1), -- the form factor is not one of the following: - unknown(2), -- the form factor is unknown - u1(3), -- 1U Monolithic - u2(4), -- 2U Monolithic - u4(5), -- 4U Monolithic - u7(6), -- 7U Monolithic - singleWidthSingleHeight(7), -- Single width, single height Modular - dualWidthSingleHeight(8), -- Dual width, single height Modular - singleWidthDualHeight(9), -- Single width, dual height Modular - dualWidthDualHeight(10), -- Dual width, dual height Modular - singleWidthQuarterHeight(11), -- Single width, quarter height Modular - u5(12) -- 5U Monolithic -} - -BladeGeometryEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Blade Geometry enum." - SYNTAX INTEGER { - other(1), -- the blade geometry is not one of the following: - unknown(2), -- the blade geometry is unknown - singleWidthSingleHeight(3), -- Single width, single height Blade - dualWidthSingleHeight(4), -- Dual width, single height Blade - singleWidthDualHeight(5), -- Single width, dual height Blade - dualWidthDualHeight(6), -- Dual width, dual height Blade - singleWidthQuarterHeight(7) -- Single width, quarter height Blade -} - -PowerStateStatusEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power State Status enum." - SYNTAX INTEGER { - other(1), -- the power state status is not one of the following: - unknown(2), -- the power state status is unknown - off(3), -- system power is off - on(4) -- system power is on -} - - ------------------------------------------------------------------------------- --- --- MIB Groups --- ------------------------------------------------------------------------------- - - ------------------------------------------------------------------------------- --- RAC Information Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.1.1..0 ------------------------------------------------------------------------------- - -racName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the product name of a remote access card." - ::= { racInfoGroup 1 } - -racShortName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the short product name of a remote access - card." - ::= { racInfoGroup 2 } - -racDescription OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the product description of a remote access - card." - ::= { racInfoGroup 3 } - -racManufacturer OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the product manufacturer of a remote access - card." - ::= { racInfoGroup 4 } - -racVersion OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the product version of a remote access card." - ::= { racInfoGroup 5 } - -racURL OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the out-of-band UI URL of a remote access - card." - ::= { racInfoGroup 6 } - -racType OBJECT-TYPE - SYNTAX RacTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the type of a remote access card." - ::= { racInfoGroup 7 } - -racFirmwareVersion OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the firmware version of a remote access card." - ::= { racInfoGroup 8 } - ------------------------------------------------------------------------------- --- Chassis Information Group --- (blade enclosure/chassis info) --- --- OID Format: 1.3.6.1.4.1.674.10892.5.1.2..0 ------------------------------------------------------------------------------- - -chassisServiceTag OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the service tag of the enclosing blade - enclosure/chassis." - ::= { chassisInfoGroup 1 } - ------------------------------------------------------------------------------- --- System Information Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.1.3..0 ------------------------------------------------------------------------------- - -systemFQDN OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the fully qualified domain name of the system. - For example, hostname.domainname." - ::= { systemInfoGroup 1 } - -systemServiceTag OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the service tag of the system." - ::= { systemInfoGroup 2 } - -systemExpressServiceCode OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the express service code of the system." - ::= { systemInfoGroup 3 } - -systemAssetTag OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the asset tag of the system." - ::= { systemInfoGroup 4 } - -systemBladeSlotNumber OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the slot number of the blade in the blade - enclosure/chassis." - ::= { systemInfoGroup 5 } - -systemOSName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the name of the operating system that the host - is running." - ::= { systemInfoGroup 6 } - -systemFormFactor OBJECT-TYPE - SYNTAX SystemFormFactorEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the form factor of the system." - ::= { systemInfoGroup 7 } - -systemDataCenterName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the Data Center locator of the system." - ::= { systemInfoGroup 8 } - -systemAisleName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the Aisle locator of the system." - ::= { systemInfoGroup 9 } - -systemRackName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the Rack locator of the system." - ::= { systemInfoGroup 10 } - -systemRackSlot OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the Rack Slot locator of the system." - ::= { systemInfoGroup 11 } - -systemModelName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the model name of the system." - ::= { systemInfoGroup 12 } - -systemSystemID OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the system ID of the system." - ::= { systemInfoGroup 13 } - -systemOSVersion OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the version of the operating system that the - host is running." - ::= { systemInfoGroup 14 } - -systemRoomName OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the Room locator of the system." - ::= { systemInfoGroup 15 } - -systemChassisSystemHeight OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the height of the system, in 'U's. - A U is a standard unit of measure for the height of a rack or - rack-mountable component. - (If not applicable, a 'no such name' error is returned.)" - ::= { systemInfoGroup 16 } - -systemBladeGeometry OBJECT-TYPE - SYNTAX BladeGeometryEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the blade geometry for a blade system. - (If not applicable, a 'no such name' error is returned.)" - ::= { systemInfoGroup 17 } - - ------------------------------------------------------------------------------- --- Status Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.2..0 ------------------------------------------------------------------------------- - -globalSystemStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the overall rollup status of all - components in the system being monitored by the remote - access card. Includes system, storage, IO devices, iDRAC, - CPU, memory, etc." - ::= { statusGroup 1 } - -systemLCDStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the system status as it is reflected by - the LCD front panel. Not all system components may be included." - ::= { statusGroup 2 } - -globalStorageStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the overall storage status being - monitored by the remote access card." - ::= { statusGroup 3 } - -systemPowerState OBJECT-TYPE - SYNTAX PowerStateStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This attribute defines the power state of the system." - ::= { statusGroup 4 } - - ------------------------------------------------------------------------------- --- Alert Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3 ------------------------------------------------------------------------------- - - ------------------------------------------------------------------------------- --- Alert Variables Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.1..0 ------------------------------------------------------------------------------- - -alertMessageID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Message ID of the event." - ::= { alertVariablesGroup 1 } - -alertMessage OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Message describing the alert." - ::= { alertVariablesGroup 2 } - -alertCurrentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current status of object causing the alert, if applicable." - ::= { alertVariablesGroup 3 } - -alertSystemServiceTag OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..16)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Service tag of the system." - ::= { alertVariablesGroup 4 } - -alertSystemFQDN OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Fully qualified domain name of the system." - ::= { alertVariablesGroup 5 } - -alertFQDD OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..512)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Fully qualified device descriptor of the device." - ::= { alertVariablesGroup 6 } - -alertDeviceDisplayName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..512)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Display name of the device/FQDD." - ::= { alertVariablesGroup 7 } - -alertMessageArguments OBJECT-TYPE - SYNTAX StringType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Concatenated set of strings representing the message arguments of the - event. Each message argument string is enclosed in double quotes, - and there is a comma after the ending double quote of each message - argument string, except the last one. Any double quotes found within - a message argument string are preprocessed and changed to single - quotes." - ::= { alertVariablesGroup 8 } - -alertChassisServiceTag OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..16)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "For blade systems, the service tag of the enclosing chassis. - For rack and tower systems, this varbind will be empty (zero - length)." - ::= { alertVariablesGroup 9 } - - -------------------------------------------------------------------------------- --- System Details Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- MIB Version Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1..0 -------------------------------------------------------------------------------- - -mIBMajorVersionNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0001.0001 This attribute defines the major version number for the - version of this MIB supported by the iDRAC." - ::= { mIBVersionGroup 1 } - -mIBMinorVersionNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0001.0002 This attribute defines the minor version number for the - version of this MIB supported by the iDRAC." - ::= { mIBVersionGroup 2 } - -mIBMaintenanceVersionNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0001.0003 This attribute defines the maintenance version number for - the version of this MIB supported by the iDRAC." - ::= { mIBVersionGroup 3 } - - -------------------------------------------------------------------------------- --- System State Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.200 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- System State Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.200.10.1.. -------------------------------------------------------------------------------- - -SystemStateTableEntry ::= SEQUENCE { - systemStatechassisIndex ObjectRange, - systemStateGlobalSystemStatus ObjectStatusEnum, - systemStateChassisState StateSettingsFlags, - systemStateChassisStatus ObjectStatusEnum, - systemStatePowerUnitStateDetails OCTET STRING (SIZE(1..128)), - systemStatePowerUnitStatusRedundancy StatusRedundancyEnum, - systemStatePowerUnitStatusDetails OCTET STRING (SIZE(1..128)), - systemStatePowerSupplyStateDetails OCTET STRING (SIZE(1..128)), - systemStatePowerSupplyStatusCombined ObjectStatusEnum, - systemStatePowerSupplyStatusDetails OCTET STRING (SIZE(1..128)), - systemStateVoltageStateDetails OCTET STRING (SIZE(1..128)), - systemStateVoltageStatusCombined ObjectStatusEnum, - systemStateVoltageStatusDetails OCTET STRING (SIZE(1..128)), - systemStateAmperageStateDetails OCTET STRING (SIZE(1..128)), - systemStateAmperageStatusCombined ObjectStatusEnum, - systemStateAmperageStatusDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingUnitStateDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingUnitStatusRedundancy StatusRedundancyEnum, - systemStateCoolingUnitStatusDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingDeviceStateDetails OCTET STRING (SIZE(1..128)), - systemStateCoolingDeviceStatusCombined ObjectStatusEnum, - systemStateCoolingDeviceStatusDetails OCTET STRING (SIZE(1..128)), - systemStateTemperatureStateDetails OCTET STRING (SIZE(1..128)), - systemStateTemperatureStatusCombined ObjectStatusEnum, - systemStateTemperatureStatusDetails OCTET STRING (SIZE(1..128)), - systemStateMemoryDeviceStateDetails OCTET STRING (SIZE(1..128)), - systemStateMemoryDeviceStatusCombined ObjectStatusEnum, - systemStateMemoryDeviceStatusDetails OCTET STRING (SIZE(1..128)), - systemStateChassisIntrusionStateDetails OCTET STRING (SIZE(1..128)), - systemStateChassisIntrusionStatusCombined ObjectStatusEnum, - systemStateChassisIntrusionStatusDetails OCTET STRING (SIZE(1..128)), - systemStatePowerUnitStatusCombined ObjectStatusEnum, - systemStatePowerUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateCoolingUnitStatusCombined ObjectStatusEnum, - systemStateCoolingUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateProcessorDeviceStatusCombined ObjectStatusEnum, - systemStateProcessorDeviceStatusList OCTET STRING (SIZE(1..128)), - systemStateBatteryStatusCombined ObjectStatusEnum, - systemStateBatteryStatusList OCTET STRING (SIZE(1..128)), - systemStateSDCardUnitStatusCombined ObjectStatusEnum, - systemStateSDCardUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateSDCardDeviceStatusCombined ObjectStatusEnum, - systemStateSDCardDeviceStatusList OCTET STRING (SIZE(1..128)), - systemStateIDSDMCardUnitStatusCombined ObjectStatusEnum, - systemStateIDSDMCardUnitStatusList OCTET STRING (SIZE(1..128)), - systemStateIDSDMCardDeviceStatusCombined ObjectStatusEnum, - systemStateIDSDMCardDeviceStatusList OCTET STRING (SIZE(1..128)), - systemStateTemperatureStatisticsStateDetails OCTET STRING (SIZE(1..128)), - systemStateTemperatureStatisticsStatusCombined ObjectStatusEnum, - systemStateTemperatureStatisticsStatusDetails OCTET STRING (SIZE(1..128)) -} - -systemStateTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemStateTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0200.0010 This object defines the System State Table." - ::= { systemStateGroup 10 } - -systemStateTableEntry OBJECT-TYPE - SYNTAX SystemStateTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0200.0010.0001 This object defines the System State Table Entry." - INDEX { systemStatechassisIndex } - ::= { systemStateTable 1 } - -systemStatechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0001 This attribute defines the index (one based) of - this system chassis." - ::= { systemStateTableEntry 1 } - -systemStateGlobalSystemStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0002 This attribute defines the global system status - of all system chassis being monitored by the systems management software." - ::= { systemStateTableEntry 2 } - -systemStateChassisState OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0003 This attribute defines the state settings of this - system chassis." - ::= { systemStateTableEntry 3 } - -systemStateChassisStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0004 This attribute defines the status of this system - chassis." - ::= { systemStateTableEntry 4 } - -systemStatePowerUnitStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0005 This attribute lists the state settings of each - power unit of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a power unit. The first byte returned represents the state settings - of the first power unit, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 5 } - -systemStatePowerUnitStatusRedundancy OBJECT-TYPE - SYNTAX StatusRedundancyEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0006 This attribute defines the combined redundancy status - of all power units of this system." - ::= { systemStateTableEntry 6 } - -systemStatePowerUnitStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0007 This attribute lists the redundancy status of each - power unit of this system. The results are returned as a binary octet - string where each byte of the octet string represents the redundancy status - of a power unit. The first byte returned represents the redundancy status - of the first power unit, etc. The bytes have the same definition type as - StatusRedundancyEnum." - ::= { systemStateTableEntry 7 } - -systemStatePowerSupplyStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0008 This attribute lists the state settings of each - power supply of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a power supply. The first byte returned represents the state settings - of the first power supply, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 8 } - -systemStatePowerSupplyStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0009 This attribute defines the combined status of all - power supplies of this system." - ::= { systemStateTableEntry 9 } - -systemStatePowerSupplyStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0010 This attribute lists the status of each power supply - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a power supply. - The first byte returned represents the status of the first power supply, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 10 } - -systemStateVoltageStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0011 This attribute lists the state settings of each - voltage probe of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a voltage probe. The first byte returned represents the state settings - of the first voltage probe, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 11 } - -systemStateVoltageStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0012 This attribute defines the combined status of all - voltage probes of this system." - ::= { systemStateTableEntry 12 } - -systemStateVoltageStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0013 This attribute lists the status of each voltage probe - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a voltage probe. - The first byte returned represents the status of the first voltage probe, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 13 } - -systemStateAmperageStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0014 This attribute lists the state settings of each - amperage probe of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of an amperage probe. The first byte returned represents the state settings - of the first amperage probe, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 14 } - -systemStateAmperageStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0015 This attribute defines the combined status of all - amperage probes of this system." - ::= { systemStateTableEntry 15 } - -systemStateAmperageStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0016 This attribute lists the status of each amperage probe - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of an amperage probe. - The first byte returned represents the status of the first amperage probe, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 16 } - -systemStateCoolingUnitStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0017 This attribute lists the state settings of each - cooling unit of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a cooling unit. The first byte returned represents the state settings - of the first cooling unit, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 17 } - -systemStateCoolingUnitStatusRedundancy OBJECT-TYPE - SYNTAX StatusRedundancyEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0018 This attribute defines the combined redundancy status - of all cooling units of this system." - ::= { systemStateTableEntry 18 } - -systemStateCoolingUnitStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0019 This attribute lists the redundancy status of each - cooling unit of this system. The results are returned as a binary octet - string where each byte of the octet string represents the redundancy status - of a cooling unit. The first byte returned represents the redundancy status - of the first cooling unit, etc. The bytes have the same definition type as - StatusRedundancyEnum." - ::= { systemStateTableEntry 19 } - -systemStateCoolingDeviceStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0020 This attribute lists the state settings of each - cooling device of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a cooling device. The first byte returned represents the state settings - of the first cooling device, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 20 } - -systemStateCoolingDeviceStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0021 This attribute defines the combined status of all - cooling devices of this system." - ::= { systemStateTableEntry 21 } - -systemStateCoolingDeviceStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0022 This attribute lists the status of each cooling device - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a cooling device. - The first byte returned represents the status of the first cooling device, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 22 } - -systemStateTemperatureStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0023 This attribute lists the state settings of each - temperature probe of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a temperature probe. The first byte returned represents the state settings - of the first temperature probe, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 23 } - -systemStateTemperatureStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0024 This attribute defines the combined status of all - temperature probes of this system." - ::= { systemStateTableEntry 24 } - -systemStateTemperatureStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0025 This attribute lists the status of each temperature probe - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a temperature probe. - The first byte returned represents the status of the first temperature probe, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 25 } - -systemStateMemoryDeviceStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0026 This attribute lists the state settings of each - memory device of this system. The results are returned as a binary octet - string where each byte of the octet string represents the state settings - of a memory device. The first byte returned represents the state settings - of the first memory device, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 26 } - -systemStateMemoryDeviceStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0027 This attribute defines the combined status of all - memory devices of this system." - ::= { systemStateTableEntry 27 } - -systemStateMemoryDeviceStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0028 This attribute lists the status of each memory device - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a memory device. - The first byte returned represents the status of the first memory device, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 28 } - -systemStateChassisIntrusionStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0029 This attribute lists the state settings of each - intrusion detection device of this system chassis. The results are returned as - a binary octet string where each byte of the octet string represents the - state settings of an intrusion detection device. The first byte returned - represents the state settings of the first intrusion detection device, etc. - The bytes have the same definition type as StateSettingsFlags." - ::= { systemStateTableEntry 29 } - -systemStateChassisIntrusionStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0030 This attribute defines the combined status of all - intrusion detection devices of this system chassis." - ::= { systemStateTableEntry 30 } - -systemStateChassisIntrusionStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0031 This attribute lists the status of each intrusion - detection device of this system chassis. The results are returned as a binary - octet string where each byte of the octet string represents the status - of an intrusion detection device. The first byte returned represents the - status of the first intrusion detection device, etc. The bytes have the - same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 31 } - -systemStatePowerUnitStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0042 This attribute defines the combined status - of all power units of this chassis." - ::= { systemStateTableEntry 42 } - -systemStatePowerUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0043 This attribute lists the status of each - power unit of this chassis. The results are returned as a binary octet - string where each byte of the octet string represents the status - of a power unit. The first byte returned represents the status - of the first power unit, etc. The bytes have the same definition type - as ObjectStatusEnum." - ::= { systemStateTableEntry 43 } - -systemStateCoolingUnitStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0044 This attribute defines the combined status - of all cooling units of this system." - ::= { systemStateTableEntry 44 } - -systemStateCoolingUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0045 This attribute lists the status of each - cooling unit of this system. The results are returned as a binary octet - string where each byte of the octet string represents the status - of a cooling unit. The first byte returned represents the status - of the first cooling unit, etc. The bytes have the same definition type - as ObjectStatusEnum." - ::= { systemStateTableEntry 45 } - -systemStateProcessorDeviceStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0050 This attribute defines the combined status of all - processor devices of this system." - ::= { systemStateTableEntry 50 } - -systemStateProcessorDeviceStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0051 This attribute lists the status of each processor device - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a processor device. - The first byte returned represents the status of the first processor device, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 51 } - -systemStateBatteryStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0052 This attribute defines the combined status of all - batteries of this system." - ::= { systemStateTableEntry 52 } - -systemStateBatteryStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0053 This attribute lists the status of each battery - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a battery. - The first byte returned represents the status of the first battery, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 53 } - -systemStateSDCardUnitStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0054 This attribute defines the combined status - of all SD Card units of this system." - ::= { systemStateTableEntry 54 } - -systemStateSDCardUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0055 This attribute lists the status of each - SD Card unit of this system. The results are returned as a binary - octet string where each byte of the octet string represents the status - of a SD Card unit. The first byte returned represents the status - of the first SD Card unit, etc. The bytes have the same definition - type as ObjectStatusEnum." - ::= { systemStateTableEntry 55 } - -systemStateSDCardDeviceStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0056 This attribute defines the combined status of all - SD Card devices of this system." - ::= { systemStateTableEntry 56 } - -systemStateSDCardDeviceStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0057 This attribute lists the status of each SD Card device - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of a SD Card device. - The first byte returned represents the status of the first SD Card device, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 57 } - -systemStateIDSDMCardUnitStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0058 This attribute defines the combined status - of all IDSDM Card units of this system." - ::= { systemStateTableEntry 58 } - -systemStateIDSDMCardUnitStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0059 This attribute lists the status of each - IDSDM Card unit of this system. The results are returned as a binary - octet string where each byte of the octet string represents the status - of an IDSDM Card unit. The first byte returned represents the status - of the first IDSDM Card unit, etc. The bytes have the same definition - type as ObjectStatusEnum." - ::= { systemStateTableEntry 59 } - -systemStateIDSDMCardDeviceStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0060 This attribute defines the combined status of all - IDSDM Card devices of this system." - ::= { systemStateTableEntry 60 } - -systemStateIDSDMCardDeviceStatusList OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0061 This attribute lists the status of each IDSDM Card device - of this system. The results are returned as a binary octet string where - each byte of the octet string represents the status of an IDSDM Card device. - The first byte returned represents the status of the first IDSDM Card device, - etc. The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 61 } - -systemStateTemperatureStatisticsStateDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0062 This attribute lists the state settings of each - temperature statistics object of this system. The results are returned - as a binary octet string where each byte of the octet string represents - the state settings of a temperature statistics object. The first byte - returned represents the state settings of the first temperature - statistics object, etc. The bytes have the same definition type - as StateSettingsFlags." - ::= { systemStateTableEntry 62 } - -systemStateTemperatureStatisticsStatusCombined OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0063 This attribute defines the combined status of all - temperature statistics objects of this system." - ::= { systemStateTableEntry 63 } - -systemStateTemperatureStatisticsStatusDetails OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(1..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0200.0010.0001.0064 This attribute lists the status of each - temperature statistics object of this system. The results are returned - as a binary octet string where each byte of the octet string represents - the status of a temperature statistics object. The first byte returned - represents the status of the first temperature statistics object, etc. - The bytes have the same definition type as ObjectStatusEnum." - ::= { systemStateTableEntry 64 } - - -------------------------------------------------------------------------------- --- Chassis Information Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300 -------------------------------------------------------------------------------- - -StateCapabilitiesLogUniqueFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "State Capabilities Log Unique Flags." - SYNTAX INTEGER { - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- log state capabilities are unknown - onlineCapable(2), -- log can be enabled (online) or disabled (offline) - notReadyCapable(4), -- log can be not ready - resetCapable(8) -- log can be reset -} - -StateSettingsLogUniqueFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "State Settings Log Unique Flags." - SYNTAX INTEGER { --- Note: These values are bit masks, so combination values are possible. - unknown(1), -- log state settings are unknown - online(2), -- log is enabled (online) - notReady(4), -- log is not ready - reset(8) -- reset log -} - -LogFormatType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Log Format Type." - SYNTAX INTEGER { - raw(1), -- format is Raw - ascii(2), -- format is ASCII - uniCode(3) -- format is Unicode -} - - -------------------------------------------------------------------------------- --- Chassis Information Group Attributes --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300..0 -------------------------------------------------------------------------------- - -numEventLogEntries OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0001.0000 This attribute provides the number of entries - currently in the eventLogTable." - ::= { chassisInformationGroup 1 } - --- Note: You can only access the numLCLogEntries attribute via SNMPv3 queries. --- Access to the attribute is blocked for SNMPv1 and SNMPv2c queries. -numLCLogEntries OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0002.0000 This attribute provides the number of entries - currently in the lcLogTable. - Note: This attribute can only be accessed via SNMPv3 queries." - ::= { chassisInformationGroup 2 } - - -------------------------------------------------------------------------------- --- Chassis Information Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.10.1.. -------------------------------------------------------------------------------- - -ChassisTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Chassis Type Enum." - SYNTAX INTEGER { - other(1), -- type is other than following values - unknown(2), -- type is unknown - desktop(3), -- type is Desktop - lowProfileDesktop(4), -- type is Low Profile Desktop - pizzaBox(5), -- type is Pizza Box - miniTower(6), -- type is MiniTower - tower(7), -- type is Tower - portable(8), -- type is Portable - lapTop(9), -- type is Laptop - noteBook(10), -- type is Notebook - handHeld(11), -- type is Handheld - dockingStation(12), -- type is Docking Station - allInOne(13), -- type is All-In-One - subNoteBook(14), -- type is SubNotebook - spaceSaving(15), -- type is Spacesaver - lunchBox(16), -- type is Lunchbox - mainSystemChassis(17), -- type is Main System Chassis - expansionChassis(18), -- type is Expansion Chassis - subChassis(19), -- type is SubChassis - busExpansionChassis(20), -- type is Bus Expansion Chassis - peripheralChassis(21), -- type is Peripheral Chassis - raidChassis(22), -- type is RAID Chassis - rackMountChassis(23), -- type is Rack-mounted Chassis - sealedCasePC(24), -- type is Sealed-case PC - multiSystemChassis(25) -- type is Multi-system Chassis -} - -ChassisSystemClassEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Chassis System Class Enum." - SYNTAX INTEGER { - other(1), -- class is other than following values - unknown(2), -- class is unknown - workstationClass(3), -- class is Workstation - serverClass(4), -- class is Server - desktopClass(5), -- class is Desktop - portableClass(6), -- class is Portable - netPCClass(7), -- class is Net PC - storageClass(8) -- class is Storage -} - -LEDControlCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "LED Control Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no LED Control capabilities - unknown(1), -- LED control capabilities are unknown - alertOnErrorCapable(2), -- LED can alert on error condition - alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition - alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition -} - -LEDControlSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "LED Control Settings Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no LED Control settings - unknown(1), -- LED control settings are unknown - alertOnError(2), -- LED set to alert on error condition - alertOnWarningAndError(4) -- LED set to alert on error or warning condition -} - -ChassisIdentifyControlCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Chassis Identify Control Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Chassis Identify Control capabilities - unknownCapabilities(1), -- chassis identify capabilities are unknown - -- The objects capabilities allow it to be set to: - enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) - notReadyCapable(4), -- chassis identify can be not ready - identifyCapable(8) -- chassis idenfity can be made to identify chassis -} - -ChassisIdentifyControlSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Chassis Identify Control Settings Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Chassis Identify Control settings - unknown(1), -- chassis identify settings are unknown - enabled(2), -- chassis identify is enabled (online) - notReady(4), -- chassis identify is not ready - identifyChassis(8), -- identify chassis - identifyChassisAndEnable(10) -- identify chassis and enabled -} - -HostControlCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Host Control Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Host Control capabilities - manualRebootCapable(1), -- host can be rebooted - manualPowerOFFCapable(2), -- host can be powered off - manualPowerCycleCapable(4), -- host can be power cycled - manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown - manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown - manualFullyCapable(15), -- all host control capabilities - manualRebootWithOSShutdownCapable(16), -- host can be rebooted with operating system shutdown - manualRebootWithoutOSShutdownCapable(32), -- host can be rebooted without operating system shutdown - manualPowerOffWithOSShutdownCapable(64), -- host can be powered off with operating system shutdown - manualPowerOffWithoutOSShutdownCapable(128),-- host can be powered off without operating system shutdown - manualPowerCycleWithOSShutdownCapable(256), -- host can be power cycled with operating system shutdown - manualPowerCycleWithoutOSShutdownCapable(512) -- host can be power cycled with operating system shutdown -} - -HostControlSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Host Control Settings Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Host Control settings - manualReboot(1), -- reboot host - manualPowerOFF(2), -- power off host - manualPowerCycle(4), -- power cycle host - manualOperatingSystemShutdown(8), -- shutdown operating system on host - manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host - manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host - manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host -} - -WatchDogControlCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "WatchDog Control Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Watchdog Control capabilities - automaticRebootCapable(1), -- watchdog can reboot host - automaticPowerCycleCapable(2), -- watchdog can power cycle host - automaticNotificationCapable(4), -- watchdog can notify - automaticWatchDogTimerCapable(8), -- watchdog supports timer - automaticPowerOffCapable(16), -- watchdog can power off host - automaticAllExceptNotificationCapable(27), -- all capabilities except notification - automaticFullyCapable(31) -- all watchdog control capabilities -} - -WatchControlSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "WatchDog Control Settings Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Watchdog Control settings - automaticRebootEnabled(1), -- watchdog set for automatic reboot - automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle - automaticNotificationEnabled(4), -- watchdog set for automatic notification - automaticPowerOffEnabled(8) -- watchdog set for automatic power off -} - -WatchDogTimerCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "WatchDog Timer Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Watchdog Timer capabilities - type1Capable(1), -- watchdog can time in range of 20-480 seconds - type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals - type3Capable(4) -- watchdog can time in 60 second intervals -} - -PowerButtonControlCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Button Control Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Power Button Control capabilities - unknownCapabilities(1), -- power button capabilities are unknown - enableCapable(2) -- power button can be enabled or disabled -} - -PowerButtonControlSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Button Control Settings Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no Power Button Control settings - unknown(1), -- power button settings are unknown - enabled(2), -- power button is enabled - disabled(4) -- power button disabled -} - -NMIButtonControlCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "NMI Button Control Capabilities Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no NMI Button Control capabilities - unknownCapabilities(1), -- NMI button capabilities are unknown - enableCapable(2) -- NMI button can be enabled or disabled -} - -NMIButtonControlSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "NMI Button Control Settings Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no NMI Button Control settings - unknown(1), -- NMI button settings are unknown - enabled(2), -- NMI button is enabled - disabled(4) -- NMI button disabled -} - -SystemPropertiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Properties Flags." - SYNTAX INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - no properties - energySmart(1) -- Energy Smart system -} - -ChassisInformationTableEntry ::= SEQUENCE { - chassisIndexChassisInformation ObjectRange, - chassisStateCapabilities StateCapabilitiesFlags, - chassisStateSettings StateSettingsFlags, - chassisStatus ObjectStatusEnum, - chassisparentIndexReference ObjectRange, - chassisType ChassisTypeEnum, - chassisName String64, - chassisManufacturerName String64, - chassisModelTypeName String64, - chassisAssetTagName OCTET STRING (SIZE (0..10)), - chassisServiceTagName OCTET STRING (SIZE (0..7)), - chassisID Unsigned8BitRange, - chassisIDExtension Unsigned16BitRange, - chassisSystemClass ChassisSystemClassEnum, - chassisSystemName String64, - chassisLEDControlCapabilitiesUnique LEDControlCapabilitiesFlags, - chassisLEDControlSettingsUnique LEDControlSettingsFlags, - chassisIdentifyFlashControlCapabilities ChassisIdentifyControlCapabilitiesFlags, - chassisIdentifyFlashControlSettings ChassisIdentifyControlSettingsFlags, - chassisLockPresent BooleanType, - chassishostControlCapabilitiesUnique HostControlCapabilitiesFlags, - chassishostControlSettingsUnique HostControlSettingsFlags, - chassiswatchDogControlCapabilitiesUnique WatchDogControlCapabilitiesFlags, - chassiswatchDogControlSettingsUnique WatchControlSettingsFlags, - chassiswatchDogControlExpiryTimeCapabilitiesUnique WatchDogTimerCapabilitiesFlags, - chassiswatchDogControlExpiryTime Unsigned16BitRange, - chassisPowerButtonControlCapabilitiesUnique PowerButtonControlCapabilitiesFlags, - chassisPowerButtonControlSettingsUnique PowerButtonControlSettingsFlags, - chassisNMIButtonControlCapabilitiesUnique NMIButtonControlCapabilitiesFlags, - chassisNMIButtonControlSettingsUnique NMIButtonControlSettingsFlags, - chassisSystemProperties SystemPropertiesFlags, - chassisSystemRevisionNumber Unsigned8BitRange, - chassisSystemRevisionName String64, - chassisExpressServiceCodeName String64 -} - -chassisInformationTable OBJECT-TYPE - SYNTAX SEQUENCE OF ChassisInformationTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0010 This object defines the Chassis Information Table." - ::= { chassisInformationGroup 10 } - -chassisInformationTableEntry OBJECT-TYPE - SYNTAX ChassisInformationTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0010.0001 This object defines the Chassis Information Table Entry." - INDEX { chassisIndexChassisInformation } - ::= { chassisInformationTable 1 } - -chassisIndexChassisInformation OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0001 This attribute defines the index (one based) of - the system chassis." - ::= { chassisInformationTableEntry 1 } - -chassisStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0002 This attribute defines the state capabilities of the system chassis." - ::= { chassisInformationTableEntry 2 } - -chassisStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0003 This attribute defines the state settings of the system chassis." - ::= { chassisInformationTableEntry 3 } - -chassisStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0004 This attribute defines the status of the system chassis." - ::= { chassisInformationTableEntry 4 } - -chassisparentIndexReference OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0005 This attribute defines the index (one based) to the - parent system of this system chassis, if any." - ::= { chassisInformationTableEntry 5 } - -chassisType OBJECT-TYPE - SYNTAX ChassisTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0006 This attribute defines the system type of the system chassis." - ::= { chassisInformationTableEntry 6 } - -chassisName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0007 This attribute defines the user-assigned name of the system chassis." - ::= { chassisInformationTableEntry 7 } - -chassisManufacturerName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0008 This attribute defines the name of the manufacturer - of the system chassis." - ::= { chassisInformationTableEntry 8 } - -chassisModelTypeName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0009 This attribute defines the system model type of the system chassis." - ::= { chassisInformationTableEntry 9 } - -chassisAssetTagName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..10)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0010 This attribute defines the asset tag name of the system chassis." - ::= { chassisInformationTableEntry 10 } - -chassisServiceTagName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..7)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0011 This attribute defines the service tag name of the system chassis." - ::= { chassisInformationTableEntry 11 } - -chassisID OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0012 This attribute defines the system ID. If the value - is 254 (0xFE), the attribute systemIDExtension provides the system ID." - ::= { chassisInformationTableEntry 12 } - -chassisIDExtension OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0013 This attribute defines the system ID extension." - ::= { chassisInformationTableEntry 13 } - -chassisSystemClass OBJECT-TYPE - SYNTAX ChassisSystemClassEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0014 This attribute defines the system class." - ::= { chassisInformationTableEntry 14 } - -chassisSystemName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0015 This attribute defines the host name of the system chassis." - ::= { chassisInformationTableEntry 15 } - -chassisLEDControlCapabilitiesUnique OBJECT-TYPE - SYNTAX LEDControlCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0024 This attribute defines the capabilities of the - LED control hardware in the system chassis." - ::= { chassisInformationTableEntry 24 } - -chassisLEDControlSettingsUnique OBJECT-TYPE - SYNTAX LEDControlSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0025 This attribute defines the reading and setting of the - LED control hardware in the system chassis." - ::= { chassisInformationTableEntry 25 } - -chassisIdentifyFlashControlCapabilities OBJECT-TYPE - SYNTAX ChassisIdentifyControlCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0028 This attribute defines if the system allows setting - of the system front panel LED to flash." - ::= { chassisInformationTableEntry 28 } - -chassisIdentifyFlashControlSettings OBJECT-TYPE - SYNTAX ChassisIdentifyControlSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0029 This attribute setting causes the system front panel - LED to flash." - ::= { chassisInformationTableEntry 29 } - -chassisLockPresent OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0030 If true, a system lock is present on the system chassis." - ::= { chassisInformationTableEntry 30 } - -chassishostControlCapabilitiesUnique OBJECT-TYPE - SYNTAX HostControlCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0031 This attribute defines the capabilities of the - host control function." - ::= { chassisInformationTableEntry 31 } - -chassishostControlSettingsUnique OBJECT-TYPE - SYNTAX HostControlSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0032 This attribute defines the settings of the - host control function." - ::= { chassisInformationTableEntry 32 } - -chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE - SYNTAX WatchDogControlCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0033 This attribute defines the capabilities of the - watchdog control function." - ::= { chassisInformationTableEntry 33 } - -chassiswatchDogControlSettingsUnique OBJECT-TYPE - SYNTAX WatchControlSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0034 This attribute defines the settings of the - watchdog control function." - ::= { chassisInformationTableEntry 34 } - -chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE - SYNTAX WatchDogTimerCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0035 This attribute defines the capabilities of the - watchdog control expiry timer function." - ::= { chassisInformationTableEntry 35 } - -chassiswatchDogControlExpiryTime OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0036 This attribute defines the current watchdog timer - value in seconds." - ::= { chassisInformationTableEntry 36 } - -chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE - SYNTAX PowerButtonControlCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0038 This attribute defines the capabilities of the - power button control hardware in the system chassis." - ::= { chassisInformationTableEntry 38 } - -chassisPowerButtonControlSettingsUnique OBJECT-TYPE - SYNTAX PowerButtonControlSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0039 This attribute defines the reading and setting of - the power button control hardware in the system chassis." - ::= { chassisInformationTableEntry 39 } - -chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE - SYNTAX NMIButtonControlCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0044 This attribute defines the capabilities of the - NMI button control hardware in the system chassis." - ::= { chassisInformationTableEntry 44 } - -chassisNMIButtonControlSettingsUnique OBJECT-TYPE - SYNTAX NMIButtonControlSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0045 This attribute defines the reading and setting of - the NMI button control hardware in the system chassis." - ::= { chassisInformationTableEntry 45 } - -chassisSystemProperties OBJECT-TYPE - SYNTAX SystemPropertiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0046 This attribute defines the properties of the system chassis." - ::= { chassisInformationTableEntry 46 } - -chassisSystemRevisionNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0047 This attribute defines the revision number of the system - where zero indicates the original version of the system chassis. The revision number - is not available on all systems." - ::= { chassisInformationTableEntry 47 } - -chassisSystemRevisionName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0048 This attribute defines the revision name of the system, - if applicable." - ::= { chassisInformationTableEntry 48 } - -chassisExpressServiceCodeName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0010.0001.0049 This attribute defines the Express Service Code of the system chassis." - ::= { chassisInformationTableEntry 49 } - - -------------------------------------------------------------------------------- --- Event (ESM) Log Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.40.1... -------------------------------------------------------------------------------- - -EventLogTableEntry ::= SEQUENCE { - eventLogchassisIndex ObjectRange, - eventLogRecordIndex Unsigned32BitRange, - eventLogStateCapabilitiesUnique StateCapabilitiesLogUniqueFlags, - eventLogStateSettingsUnique StateSettingsLogUniqueFlags, - eventLogRecord OCTET STRING (SIZE (0..1024)), - eventLogFormat LogFormatType, - eventLogSeverityStatus ObjectStatusEnum, - eventLogDateName DateName -} - -eventLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF EventLogTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0040 This object defines the Event (ESM) Log Table." - ::= { chassisInformationGroup 40 } - -eventLogTableEntry OBJECT-TYPE - SYNTAX EventLogTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0040.0001 This object defines the Event (ESM) Log Table Entry." - INDEX { eventLogchassisIndex, - eventLogRecordIndex } - ::= { eventLogTable 1 } - -eventLogchassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { eventLogTableEntry 1 } - -eventLogRecordIndex OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0002 This attribute defines the index (one based) of the - event log record." - ::= { eventLogTableEntry 2 } - -eventLogStateCapabilitiesUnique OBJECT-TYPE - SYNTAX StateCapabilitiesLogUniqueFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0003 This attribute defines the state capabilities of the - object that is writing the event log." - ::= { eventLogTableEntry 3 } - -eventLogStateSettingsUnique OBJECT-TYPE - SYNTAX StateSettingsLogUniqueFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0004 This attribute defines the state settings of the - object that is writing the event log." - ::= { eventLogTableEntry 4 } - -eventLogRecord OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..1024)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0005 This attribute defines the data of the event log record." - ::= { eventLogTableEntry 5 } - -eventLogFormat OBJECT-TYPE - SYNTAX LogFormatType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0006 This attribute defines the format of the event log record." - ::= { eventLogTableEntry 6 } - -eventLogSeverityStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0007 This attribute defines the severity of the - event log record." - ::= { eventLogTableEntry 7 } - -eventLogDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0040.0001.0008 This attribute defines the date and time of the - event log record." - ::= { eventLogTableEntry 8 } - - -------------------------------------------------------------------------------- --- System BIOS Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.50.1... -------------------------------------------------------------------------------- - -SystemBIOSTableEntry ::= SEQUENCE { - systemBIOSchassisIndex ObjectRange, - systemBIOSIndex ObjectRange, - systemBIOSStateCapabilities StateCapabilitiesFlags, - systemBIOSStateSettings StateSettingsFlags, - systemBIOSStatus ObjectStatusEnum, - systemBIOSReleaseDateName DateName, - systemBIOSVersionName String64, - systemBIOSManufacturerName String64 -} - -systemBIOSTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemBIOSTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0050 This object defines the System BIOS Table." - ::= { chassisInformationGroup 50 } - -systemBIOSTableEntry OBJECT-TYPE - SYNTAX SystemBIOSTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0050.0001 This object defines the System BIOS Table Entry." - INDEX { systemBIOSchassisIndex, - systemBIOSIndex } - ::= { systemBIOSTable 1 } - -systemBIOSchassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { systemBIOSTableEntry 1 } - -systemBIOSIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0002 This attribute defines the index (one based) of the - system BIOS." - ::= { systemBIOSTableEntry 2 } - -systemBIOSStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0003 This attribute defines the state capabilities of the - system BIOS." - ::= { systemBIOSTableEntry 3 } - -systemBIOSStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0004 This attribute defines the state settings of the - system BIOS." - ::= { systemBIOSTableEntry 4 } - -systemBIOSStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0005 This attribute defines the status of the system BIOS." - ::= { systemBIOSTableEntry 5 } - -systemBIOSReleaseDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0007 This attribute defines the release date name of the - system BIOS." - ::= { systemBIOSTableEntry 7 } - -systemBIOSVersionName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0008 This attribute defines the version name of the - system BIOS." - ::= { systemBIOSTableEntry 8 } - -systemBIOSManufacturerName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0050.0001.0011 This attribute defines the name of the manufacturer - of the system BIOS." - ::= { systemBIOSTableEntry 11 } - - -------------------------------------------------------------------------------- --- Firmware Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.60.1... -------------------------------------------------------------------------------- - -FirmwareType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Firmware Type." - SYNTAX INTEGER { - other(1), -- type is other than following values - unknown(2), -- type is unknown - lifecycleController(20), -- type is Lifecycle Controller - iDRAC7(21) -- type is Integrated Dell Remote Access Controller 7 -} - -FirmwareTableEntry ::= SEQUENCE { - firmwarechassisIndex ObjectRange, - firmwareIndex ObjectRange, - firmwareStateCapabilities StateCapabilitiesFlags, - firmwareStateSettings StateSettingsFlags, - firmwareStatus ObjectStatusEnum, - firmwareSize Unsigned16BitRange, - firmwareType FirmwareType, - firmwareTypeName String64, - firmwareUpdateCapabilities Unsigned16BitRange, - firmwareVersionName String64 -} - -firmwareTable OBJECT-TYPE - SYNTAX SEQUENCE OF FirmwareTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0060 This object defines the Firmware Table." - ::= { chassisInformationGroup 60 } - -firmwareTableEntry OBJECT-TYPE - SYNTAX FirmwareTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0060.0001 This object defines the Firmware Table Entry." - INDEX { firmwarechassisIndex, - firmwareIndex } - ::= { firmwareTable 1 } - -firmwarechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { firmwareTableEntry 1 } - -firmwareIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0002 This attribute defines the index (one based) of the - firmware." - ::= { firmwareTableEntry 2 } - -firmwareStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0003 This attribute defines the state capabilities of the - firmware." - ::= { firmwareTableEntry 3 } - -firmwareStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0004 This attribute defines the state settings of the - firmware." - ::= { firmwareTableEntry 4 } - -firmwareStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0005 This attribute defines the status of the firmware." - ::= { firmwareTableEntry 5 } - -firmwareSize OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0006 This attribute defines the image size of the firmware - in KBytes. Zero indicates size is unknown." - ::= { firmwareTableEntry 6 } - -firmwareType OBJECT-TYPE - SYNTAX FirmwareType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0007 This attribute defines the type of firmware." - ::= { firmwareTableEntry 7 } - -firmwareTypeName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0008 This attribute defines the type name of the firmware." - ::= { firmwareTableEntry 8 } - -firmwareUpdateCapabilities OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0009 This attribute defines the bitmap of supported methods - for firmware update." - ::= { firmwareTableEntry 9 } - -firmwareVersionName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0060.0001.0011 This attribute defines the version of the firmware." - ::= { firmwareTableEntry 11 } - - -------------------------------------------------------------------------------- --- Intrusion Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.70.1... -------------------------------------------------------------------------------- - -IntrusionReadingEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Intrusion Reading Enum." - SYNTAX INTEGER { - chassisNotBreached(1), -- chassis not breached and no uncleared breaches - chassisBreached(2), -- chassis currently breached - chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared - chassisBreachSensorFailure(4) -- intrusion sensor has failed -} - -IntrusionTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Intrusion Type Enum." - SYNTAX INTEGER { - chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on - chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off -} - -IntrusionTableEntry ::= SEQUENCE { - intrusionchassisIndex ObjectRange, - intrusionIndex ObjectRange, - intrusionStateCapabilities StateCapabilitiesFlags, - intrusionStateSettings StateSettingsFlags, - intrusionStatus ObjectStatusEnum, - intrusionReading IntrusionReadingEnum, - intrusionType IntrusionTypeEnum, - intrusionLocationName String64 -} - -intrusionTable OBJECT-TYPE - SYNTAX SEQUENCE OF IntrusionTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0070 This object defines the Intrusion Table." - ::= { chassisInformationGroup 70 } - -intrusionTableEntry OBJECT-TYPE - SYNTAX IntrusionTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0070.0001 This object defines the Intrusion Table Entry." - INDEX { intrusionchassisIndex, - intrusionIndex } - ::= { intrusionTable 1 } - -intrusionchassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { intrusionTableEntry 1 } - -intrusionIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0002 This attribute defines the index (one based) of the - intrusion sensor." - ::= { intrusionTableEntry 2 } - -intrusionStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0003 This attribute defines the state capabilities of the - intrusion sensor." - ::= { intrusionTableEntry 3 } - -intrusionStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0004 This attribute defines the state settings of the - intrusion sensor." - ::= { intrusionTableEntry 4 } - -intrusionStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0005 This attribute defines the status of the - intrusion sensor." - ::= { intrusionTableEntry 5 } - -intrusionReading OBJECT-TYPE - SYNTAX IntrusionReadingEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0006 This attribute defines the reading of the - intrusion sensor." - ::= { intrusionTableEntry 6 } - -intrusionType OBJECT-TYPE - SYNTAX IntrusionTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0007 This attribute defines the type of the - intrusion sensor." - ::= { intrusionTableEntry 7 } - -intrusionLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0070.0001.0008 This attribute defines the location of the - intrusion sensor." - ::= { intrusionTableEntry 8 } - - -------------------------------------------------------------------------------- --- Lifecycle (LC) Log Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.90.1... -------------------------------------------------------------------------------- - -LcLogCategoryEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "LC Log Category Enum." - SYNTAX INTEGER { - system(1), -- System Health category - storage(2), -- Storage category - updates(3), -- Updates category - audit(4), -- Audit category - configuration(5), -- Configuration category - workNotes(6) -- Work Notes category -} - -LcLogTableEntry ::= SEQUENCE { - lcLogChassisIndex ObjectRange, - lcLogRecordIndex Unsigned32BitRange, - lcLogSequenceNumber Unsigned32BitRange, - lcLogCategory LcLogCategoryEnum, - lcLogSeverityStatus ObjectStatusEnum, - lcLogDateName DateName, - lcLogFQDD FQDDString, - lcLogMessageID OCTET STRING (SIZE (0..8)), - lcLogMessage OCTET STRING (SIZE (0..512)), - lcLogDetailedDescription OCTET STRING (SIZE (0..2048)), - lcLogRecommededAction OCTET STRING (SIZE (0..2048)), - lcLogComment OCTET STRING (SIZE (0..128)) -} - --- Note: You can only access the lcLogTable table via SNMPv3 queries. --- Access to the table is blocked for SNMPv1 and SNMPv2c queries. -lcLogTable OBJECT-TYPE - SYNTAX SEQUENCE OF LcLogTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0090 This object defines the Lifecycle (LC) Log Table. - Lifecycle (LC) Log table records are ordered from oldest to newest. - Note: This table can only be accessed via SNMPv3 queries." - ::= { chassisInformationGroup 90 } - -lcLogTableEntry OBJECT-TYPE - SYNTAX LcLogTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0300.0090.0001 This object defines the Lifcycle (LC) Log Table Entry." - INDEX { lcLogChassisIndex, - lcLogRecordIndex } - ::= { lcLogTable 1 } - -lcLogChassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0001 This attribute defines the index (one based) - of the associated system chassis." - ::= { lcLogTableEntry 1 } - -lcLogRecordIndex OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0002 This attribute defines the index (one based) - of the LC log record." - ::= { lcLogTableEntry 2 } - -lcLogSequenceNumber OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0003 This attribute defines the LC Log sequence number - of the event associated with the LC log record." - ::= { lcLogTableEntry 3 } - -lcLogCategory OBJECT-TYPE - SYNTAX LcLogCategoryEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0004 This attribute defines the category - of the event associated with the LC log record." - ::= { lcLogTableEntry 4 } - -lcLogSeverityStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0005 This attribute defines the severity - of the event associated with the LC log record." - ::= { lcLogTableEntry 5 } - -lcLogDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0006 This attribute defines the date and time - of the event associated with the LC log record." - ::= { lcLogTableEntry 6 } - -lcLogFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0007 Fully qualified device descriptor (FQDD) - of the device associated with the event associated with the LC log record." - ::= { lcLogTableEntry 7 } - -lcLogMessageID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0008 This attribute defines the Message ID - of the event associated with the LC log record." - ::= { lcLogTableEntry 8 } - -lcLogMessage OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..512)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0009 This attribute defines the message - of the event associated with the LC log record." - ::= { lcLogTableEntry 9 } - -lcLogDetailedDescription OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2048)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0010 This attribute defines the detailed description - of the event associated with the LC log record." - ::= { lcLogTableEntry 10 } - -lcLogRecommededAction OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..2048)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0011 This attribute defines an optional recommended action - associated with the event associated with the LC log record." - ::= { lcLogTableEntry 11 } - -lcLogComment OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0300.0090.0001.0012 This attribute defines an optional user comment - associated with the event associated with the LC log record." - ::= { lcLogTableEntry 12 } - - - -------------------------------------------------------------------------------- --- Power Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Power Unit Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.10.1... -------------------------------------------------------------------------------- - -PowerUnitTableEntry ::= SEQUENCE { - powerUnitchassisIndex ObjectRange, - powerUnitIndex ObjectRange, - powerUnitStateCapabilities StateCapabilitiesFlags, - powerUnitStateSettings StateSettingsFlags, - powerUnitRedundancyStatus StatusRedundancyEnum, - powerSupplyCountForRedundancy ObjectRange, - powerUnitName String64, - powerUnitStatus ObjectStatusEnum -} - -powerUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerUnitTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0010 This object defines the Power Unit Table." - ::= { powerGroup 10 } - -powerUnitTableEntry OBJECT-TYPE - SYNTAX PowerUnitTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0010.0001 This object defines the Power Unit Table Entry." - INDEX { powerUnitchassisIndex, - powerUnitIndex } - ::= { powerUnitTable 1 } - -powerUnitchassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0001 This attribute defines the index (one based) of - the system chassis." - ::= { powerUnitTableEntry 1 } - -powerUnitIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0002 This attribute defines the index (one based) of the - power unit." - ::= { powerUnitTableEntry 2 } - -powerUnitStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0003 This attribute defines the state capabilities of the - power unit." - ::= { powerUnitTableEntry 3 } - -powerUnitStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0004 This attribute defines the state settings of the - power unit." - ::= { powerUnitTableEntry 4 } - -powerUnitRedundancyStatus OBJECT-TYPE - SYNTAX StatusRedundancyEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0005 This attribute defines the redundancy status of the - power unit." - ::= { powerUnitTableEntry 5 } - -powerSupplyCountForRedundancy OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0006 This attribute defines the total number of power supplies - required for this power unit to have full redundancy." - ::= { powerUnitTableEntry 6 } - -powerUnitName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0007 This attribute defines the name of the power unit." - ::= { powerUnitTableEntry 7 } - -powerUnitStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0010.0001.0008 This attribute defines the status of the power unit." - ::= { powerUnitTableEntry 8 } - - -------------------------------------------------------------------------------- --- Power Supply Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.12.1... -------------------------------------------------------------------------------- - -PowerSupplyStateCapabilitiesUniqueFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Supply State Capabilities Unique Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no power supply state capabilities - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- state capabilities are unknown - onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) - notReadyCapable(4) -- power supply can be not ready -} - -PowerSupplyStateSettingsUniqueFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Supply State Settings Unique Flags." - SYNTAX INTEGER { - -- If 0 (zero), there are no power supply state settings - -- Note: These values are bit masks, so combination values are possible. - unknown(1), -- state settings are unknown - onLine(2), -- power supply is enabled (online) - notReady(4), -- power supply is not ready - fanFailure(8), -- power supply fan has failed - onlineAndFanFailure(10), - powerSupplyIsON(16), -- power supply is supplying power - powerSupplyIsOK(32), -- power supply is indicating it is OK - acSwitchIsON(64), -- power supply is indicating AC power switch is on - onlineandAcSwitchIsON(66), - acPowerIsON(128), -- power supply is indicating AC power is on - onlineAndAcPowerIsON(130), - onlineAndPredictiveFailure(210), - acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) -} - -PowerSupplyTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Supply Type Enum." - SYNTAX INTEGER { - powerSupplyTypeIsOther(1), -- type is other than following values - powerSupplyTypeIsUnknown(2), -- type is unknown - powerSupplyTypeIsLinear(3), -- type is Linear - powerSupplyTypeIsSwitching(4), -- type is Switching - powerSupplyTypeIsBattery(5), -- type is Battery - powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply - powerSupplyTypeIsConverter(7), -- type is Converter - powerSupplyTypeIsRegulator(8), -- type is Regulator - powerSupplyTypeIsAC(9), -- type is AC - powerSupplyTypeIsDC(10), -- type is DC - powerSupplyTypeIsVRM(11) -- type is VRM -} - -PowerSupplySensorStateFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Supply Sensor State Flags." - SYNTAX INTEGER { - -- Note: These values are bit masks, so combination values are possible. - presenceDetected(1), -- state is Presence detected - psFailureDetected(2), -- state is PS Failure detected - predictiveFailure(4), -- state is Predictive Failure - psACLost(8), -- state is PS AC lost - acLostOrOutOfRange(16), -- state is AC lost or out-of-range - acOutOfRangeButPresent(32), -- state is AC out-of-range, but present - configurationError(64) -- state is Configuration error -} - -PowerSupplyConfigurationErrorTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Supply Configuration Error Type Enum." - SYNTAX INTEGER { - vendorMismatch(1), -- error type is Vendor mismatch - revisionMismatch(2), -- error type is Revision mismatch - processorMissing(3) -- error type is Processor missing -} - -PowerSupplyTableEntry ::= SEQUENCE { - powerSupplychassisIndex ObjectRange, - powerSupplyIndex ObjectRange, - powerSupplyStateCapabilitiesUnique PowerSupplyStateCapabilitiesUniqueFlags, - powerSupplyStateSettingsUnique PowerSupplyStateSettingsUniqueFlags, - powerSupplyStatus ObjectStatusEnum, - powerSupplyOutputWatts Signed32BitRange, - powerSupplyType PowerSupplyTypeEnum, - powerSupplyLocationName String64, - powerSupplyInputVoltage Signed32BitRange, - powerSupplypowerUnitIndexReference ObjectRange, - powerSupplySensorState PowerSupplySensorStateFlags, - powerSupplyConfigurationErrorType PowerSupplyConfigurationErrorTypeEnum, - powerSupplyPowerMonitorCapable BooleanType, - powerSupplyRatedInputWattage Signed32BitRange, - powerSupplyFQDD FQDDString -} - -powerSupplyTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerSupplyTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0012 This object defines the Power Supply Table." - ::= { powerGroup 12 } - -powerSupplyTableEntry OBJECT-TYPE - SYNTAX PowerSupplyTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0012.0001 This object defines the Power Supply Table Entry." - INDEX { powerSupplychassisIndex, - powerSupplyIndex } - ::= { powerSupplyTable 1 } - -powerSupplychassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0001 This attribute defines the index (one based) of - the system chassis." - ::= { powerSupplyTableEntry 1 } - -powerSupplyIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0002 This attribute defines the index (one based) of the - power supply." - ::= { powerSupplyTableEntry 2 } - -powerSupplyStateCapabilitiesUnique OBJECT-TYPE - SYNTAX PowerSupplyStateCapabilitiesUniqueFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0003 This attribute defines the state capabilities of the - power supply." - ::= { powerSupplyTableEntry 3 } - -powerSupplyStateSettingsUnique OBJECT-TYPE - SYNTAX PowerSupplyStateSettingsUniqueFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0004 This attribute defines the state settings of the - power supply." - ::= { powerSupplyTableEntry 4 } - -powerSupplyStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0005 This attribute defines the status of the power supply." - ::= { powerSupplyTableEntry 5 } - -powerSupplyOutputWatts OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0006 This attribute defines the maximum sustained output - wattage of the power supply (in tenths of Watts)." - ::= { powerSupplyTableEntry 6 } - -powerSupplyType OBJECT-TYPE - SYNTAX PowerSupplyTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0007 This attribute defines the type of the power supply." - ::= { powerSupplyTableEntry 7 } - -powerSupplyLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0008 This attribute defines the location of the power supply." - ::= { powerSupplyTableEntry 8 } - -powerSupplyInputVoltage OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0009 This attribute defines the input voltage to the power - supply (in Volts)." - ::= { powerSupplyTableEntry 9 } - -powerSupplypowerUnitIndexReference OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0010 This attribute defines the index to the associated - power unit if the power supply is part of a power unit." - ::= { powerSupplyTableEntry 10 } - -powerSupplySensorState OBJECT-TYPE - SYNTAX PowerSupplySensorStateFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0011 This attribute defines the state reported by the - power supply sensor. This attribute supplements the attribute - powerSupplyStateSettingsUnique." - ::= { powerSupplyTableEntry 11 } - -powerSupplyConfigurationErrorType OBJECT-TYPE - SYNTAX PowerSupplyConfigurationErrorTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0012 This attribute defines the type of configuration error - reported by the power supply sensor. When the configurationError bit is on - in the value for the attribute powerSupplySensorState, a value is returned - for this attribute; otherwise, a value is not returned for this attribute." - ::= { powerSupplyTableEntry 12 } - -powerSupplyPowerMonitorCapable OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0013 This attribute defines a boolean value that reports - whether the power supply is capable of monitoring power consumption." - ::= { powerSupplyTableEntry 13 } - -powerSupplyRatedInputWattage OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0014 This attribute defines the rated input wattage of the - power supply (in tenths of Watts)." - ::= { powerSupplyTableEntry 14 } - -powerSupplyFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0012.0001.0015 Fully qualified device descriptor (FQDD) of the - power supply." - ::= { powerSupplyTableEntry 15 } - - -------------------------------------------------------------------------------- --- Voltage Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.20.1... -------------------------------------------------------------------------------- - -VoltageTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Voltage Type Enum." - SYNTAX INTEGER { - voltageProbeTypeIsOther(1), -- type is other than following values - voltageProbeTypeIsUnknown(2), -- type is unknown - voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe - voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe - voltageProbeTypeIs5Volt(5), -- type is 5 volt probe - voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe - voltageProbeTypeIs12Volt(7), -- type is 12 volt probe - voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe - voltageProbeTypeIsIO(9), -- type is I/O probe - voltageProbeTypeIsCore(10), -- type is Core probe - voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe - voltageProbeTypeIsBattery(12), -- type is Battery probe - voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe - voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe - voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe - voltageProbeTypeIsDiscrete(16), -- type is voltage probe with discrete reading - voltageProbeTypeIsGenericDiscrete(17), -- type is generic discrete reading - voltageProbeTypeIsPSVoltage(18), -- type is Power Supply voltage probe - voltageProbeTypeIsMemoryStatus(19) -- type is Memory Status probe -} - -VoltageDiscreteReadingEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Voltage Discrete Reading Enum." - SYNTAX INTEGER { - voltageIsGood(1), -- voltage reading is Good - voltageIsBad(2) -- voltage reading is Bad -} - -VoltageProbeTableEntry ::= SEQUENCE { - voltageProbechassisIndex ObjectRange, - voltageProbeIndex ObjectRange, - voltageProbeStateCapabilities StateCapabilitiesFlags, - voltageProbeStateSettings StateSettingsFlags, - voltageProbeStatus StatusProbeEnum, - voltageProbeReading Signed32BitRange, - voltageProbeType VoltageTypeEnum, - voltageProbeLocationName String64, - voltageProbeUpperNonRecoverableThreshold Signed32BitRange, - voltageProbeUpperCriticalThreshold Signed32BitRange, - voltageProbeUpperNonCriticalThreshold Signed32BitRange, - voltageProbeLowerNonCriticalThreshold Signed32BitRange, - voltageProbeLowerCriticalThreshold Signed32BitRange, - voltageProbeLowerNonRecoverableThreshold Signed32BitRange, - voltageProbeProbeCapabilities ProbeCapabilitiesFlags, - voltageProbeDiscreteReading VoltageDiscreteReadingEnum -} - -voltageProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF VoltageProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0020 This object defines the Voltage Probe Table." - ::= { powerGroup 20 } - -voltageProbeTableEntry OBJECT-TYPE - SYNTAX VoltageProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0020.001 This object defines the Voltage Probe Table Entry." - INDEX { voltageProbechassisIndex, - voltageProbeIndex } - ::= { voltageProbeTable 1 } - -voltageProbechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0001 This attribute defines the index (one based) of - the system chassis." - ::= { voltageProbeTableEntry 1 } - -voltageProbeIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0002 This attribute defines the index (one based) of the - voltage probe." - ::= { voltageProbeTableEntry 2 } - -voltageProbeStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0003 This attribute defines the state capabilities of the - voltage probe." - ::= { voltageProbeTableEntry 3 } - -voltageProbeStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0004 This attribute defines the state settings of the - voltage probe." - ::= { voltageProbeTableEntry 4 } - -voltageProbeStatus OBJECT-TYPE - SYNTAX StatusProbeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0005 This attribute defines the probe status of the - voltage probe." - ::= { voltageProbeTableEntry 5 } - -voltageProbeReading OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0006 This attribute defines the reading for a voltage - probe of type other than voltageProbeTypeIsDiscrete. When the value - for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value - returned for this attribute is the voltage that the probe is reading - in millivolts. When the value for voltageProbeType is - voltageProbeTypeIsDiscrete, a value is not returned for this attribute." - ::= { voltageProbeTableEntry 6 } - -voltageProbeType OBJECT-TYPE - SYNTAX VoltageTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0007 This attribute defines the type of the voltage probe." - ::= { voltageProbeTableEntry 7 } - -voltageProbeLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0008 This attribute defines the location name of the - voltage probe." - ::= { voltageProbeTableEntry 8 } - -voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold - of the voltage probe. The value is an integer representing the voltage - of the threshold in millivolts." - ::= { voltageProbeTableEntry 9 } - -voltageProbeUpperCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0010 This attribute defines the upper critical threshold - of the voltage probe. The value is an integer representing the voltage - of the threshold in millivolts." - ::= { voltageProbeTableEntry 10 } - -voltageProbeUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0011 This attribute defines the upper noncritical threshold - of the voltage probe. The value is an integer representing the voltage - of the threshold in millivolts." - ::= { voltageProbeTableEntry 11 } - -voltageProbeLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0012 This attribute defines the lower noncritical threshold - of the voltage probe. The value is an integer representing the voltage - of the threshold in millivolts." - ::= { voltageProbeTableEntry 12 } - -voltageProbeLowerCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0013 This attribute defines the lower critical threshold - of the voltage probe. The value is an integer representing the voltage - of the threshold in millivolts." - ::= { voltageProbeTableEntry 13 } - -voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold - of the voltage probe. The value is an integer representing the voltage - of the threshold in millivolts." - ::= { voltageProbeTableEntry 14 } - -voltageProbeProbeCapabilities OBJECT-TYPE - SYNTAX ProbeCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0015 This attribute defines the probe capabilities of the - voltage probe." - ::= { voltageProbeTableEntry 15 } - -voltageProbeDiscreteReading OBJECT-TYPE - SYNTAX VoltageDiscreteReadingEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0020.0001.0016 This attribute defines the reading for a voltage - probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType - is other than voltageProbeTypeIsDiscrete, a value is not returned for this - attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, - the value returned for this attribute is the discrete reading for the probe." - ::= { voltageProbeTableEntry 16 } - - -------------------------------------------------------------------------------- --- Amperage Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.30.1... -------------------------------------------------------------------------------- - -AmperageProbeTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Amperage Probe Type Enum." - SYNTAX INTEGER { - amperageProbeTypeIsOther(1), -- type is other than following values - amperageProbeTypeIsUnknown(2), -- type is unknown - amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe - amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe - amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe - amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe - amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe - amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe - amperageProbeTypeIsIO(9), -- type is I/O probe - amperageProbeTypeIsCore(10), -- type is Core probe - amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe - amperageProbeTypeIsBattery(12), -- type is Battery probe - amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe - amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe - amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe - amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading - amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps - amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts - amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps - amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts -} - -AmperageDiscreteReadingEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Amperage Discrete Reading Enum." - SYNTAX INTEGER { - amperageIsGood(1), -- amperage reading is Good - amperageIsBad(2) -- amperage reading is Bad -} - -AmperageProbeTableEntry ::= SEQUENCE { - amperageProbechassisIndex ObjectRange, - amperageProbeIndex ObjectRange, - amperageProbeStateCapabilities StateCapabilitiesFlags, - amperageProbeStateSettings StateSettingsFlags, - amperageProbeStatus StatusProbeEnum, - amperageProbeReading Signed32BitRange, - amperageProbeType AmperageProbeTypeEnum, - amperageProbeLocationName String64, - amperageProbeUpperNonRecoverableThreshold Signed32BitRange, - amperageProbeUpperCriticalThreshold Signed32BitRange, - amperageProbeUpperNonCriticalThreshold Signed32BitRange, - amperageProbeLowerNonCriticalThreshold Signed32BitRange, - amperageProbeLowerCriticalThreshold Signed32BitRange, - amperageProbeLowerNonRecoverableThreshold Signed32BitRange, - amperageProbeProbeCapabilities ProbeCapabilitiesFlags, - amperageProbeDiscreteReading AmperageDiscreteReadingEnum -} - -amperageProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF AmperageProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0030 This object defines the Amperage Probe Table." - ::= { powerGroup 30 } - -amperageProbeTableEntry OBJECT-TYPE - SYNTAX AmperageProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0030.0001 This object defines the Amperage Probe Table Entry." - INDEX { amperageProbechassisIndex, - amperageProbeIndex } - ::= { amperageProbeTable 1 } - -amperageProbechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0001 This attribute defines the index (one based) of - the system chassis." - ::= { amperageProbeTableEntry 1 } - -amperageProbeIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0002 This attribute defines the index (one based) of the - amperage probe." - ::= { amperageProbeTableEntry 2 } - -amperageProbeStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0003 This attribute defines the state capabilities of the - amperage probe." - ::= { amperageProbeTableEntry 3 } - -amperageProbeStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0004 This attribute defines the state settings of the - amperage probe." - ::= { amperageProbeTableEntry 4 } - -amperageProbeStatus OBJECT-TYPE - SYNTAX StatusProbeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0005 This attribute defines the probe status of the - amperage probe." - ::= { amperageProbeTableEntry 5 } - -amperageProbeReading OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0006 This attribute defines the reading for an amperage - probe of type other than amperageProbeTypeIsDiscrete. - - When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps - or amperageProbeTypeIsSystemAmps, the value returned for this attribute - is the power usage that the probe is reading in tenths of Amps. - - When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts - or amperageProbeTypeIsSystemWatts, the value returned for this attribute - is the power usage that the probe is reading in Watts. - - When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, - amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, - amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, - the value returned for this attribute is the amperage that the probe is - reading in Milliamps. - - When the value for amperageProbeType is amperageProbeTypeIsDiscrete, - a value is not returned for this attribute." - ::= { amperageProbeTableEntry 6 } - -amperageProbeType OBJECT-TYPE - SYNTAX AmperageProbeTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0007 This attribute defines the type of the amperage probe." - ::= { amperageProbeTableEntry 7 } - -amperageProbeLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0008 This attribute defines the location of the amperage probe." - ::= { amperageProbeTableEntry 8 } - -amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold - of the amperage probe. The value is an integer representing the amperage - of the threshold in milliamps." - ::= { amperageProbeTableEntry 9 } - -amperageProbeUpperCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0010 This attribute defines the upper critical threshold - of the amperage probe. The value is an integer representing the amperage - of the threshold in milliamps." - ::= { amperageProbeTableEntry 10 } - -amperageProbeUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0011 This attribute defines the upper noncritical threshold - of the amperage probe. The value is an integer representing the amperage - of the threshold in milliamps." - ::= { amperageProbeTableEntry 11 } - -amperageProbeLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0012 This attribute defines the lower noncritical threshold - of the amperage probe. The value is an integer representing the amperage - of the threshold in milliamps." - ::= { amperageProbeTableEntry 12 } - -amperageProbeLowerCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0013 This attribute defines the lower critical threshold - of the amperage probe. The value is an integer representing the amperage - of the threshold in milliamps." - ::= { amperageProbeTableEntry 13 } - -amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold - of the amperage probe. The value is an integer representing the amperage - of the threshold in milliamps." - ::= { amperageProbeTableEntry 14 } - -amperageProbeProbeCapabilities OBJECT-TYPE - SYNTAX ProbeCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0015 This attribute defines the probe capabilities of the - amperage probe." - ::= { amperageProbeTableEntry 15 } - -amperageProbeDiscreteReading OBJECT-TYPE - SYNTAX AmperageDiscreteReadingEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0030.0001.0016 This attribute defines the reading for an amperage - probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType - is other than amperageProbeTypeIsDiscrete, a value is not returned for this - attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, - the value returned for this attribute is the discrete reading for the probe." - ::= { amperageProbeTableEntry 16 } - - -------------------------------------------------------------------------------- --- System Battery Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.50.1... -------------------------------------------------------------------------------- - -SystemBatteryReadingFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Battery Reading Flags." - SYNTAX INTEGER { - -- Note: These values are bit masks, so combination values are possible. - predictiveFailure(1), -- battery predictive failure - failed(2), -- battery failed - presenceDetected(4) -- battery presence detected -} - -SystemBatteryTableEntry ::= SEQUENCE { - systemBatteryChassisIndex ObjectRange, - systemBatteryIndex ObjectRange, - systemBatteryStateCapabilities StateCapabilitiesFlags, - systemBatteryStateSettings StateSettingsFlags, - systemBatteryStatus ObjectStatusEnum, - systemBatteryReading SystemBatteryReadingFlags, - systemBatteryLocationName String64 -} - -systemBatteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemBatteryTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0050 This object defines the System Battery Table." - ::= { powerGroup 50 } - -systemBatteryTableEntry OBJECT-TYPE - SYNTAX SystemBatteryTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0050.0001 This object defines the System Battery Table Entry." - INDEX { systemBatteryChassisIndex, - systemBatteryIndex } - ::= { systemBatteryTable 1 } - -systemBatteryChassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0001 This attribute defines the index (one based) of - the system chassis that contains the battery." - ::= { systemBatteryTableEntry 1 } - -systemBatteryIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0002 This attribute defines the index (one based) of the battery." - ::= { systemBatteryTableEntry 2 } - -systemBatteryStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0003 This attribute defines the state capabilities of the battery." - ::= { systemBatteryTableEntry 3 } - -systemBatteryStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0004 This attribute defines the state settings of the battery." - ::= { systemBatteryTableEntry 4 } - -systemBatteryStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0005 This attribute defines the status of the battery." - ::= { systemBatteryTableEntry 5 } - -systemBatteryReading OBJECT-TYPE - SYNTAX SystemBatteryReadingFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0006 This attribute defines the reading of the battery." - ::= { systemBatteryTableEntry 6 } - -systemBatteryLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0050.0001.0007 This attribute defines the location of the battery." - ::= { systemBatteryTableEntry 7 } - - -------------------------------------------------------------------------------- --- Power Usage Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.60.1... -------------------------------------------------------------------------------- - -PowerCapCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Cap Capabilities Flags." - SYNTAX INTEGER { - -- Note: These values are bit masks, so combination values are possible. - -- none(0), - no power cap capabilities - enable(1), -- power cap can be enabled - disable(2) -- power cap can be disabled -} - -PowerCapSettingEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Power Cap Setting Enum." - SYNTAX INTEGER { - -- disabled(0), - power cap disabled - enabled(1) -- power cap enabled -} - -PowerUsageTableEntry ::= SEQUENCE { - powerUsageChassisIndex ObjectRange, - powerUsageIndex ObjectRange, - powerUsageStateCapabilities StateCapabilitiesFlags, - powerUsageStateSettings StateSettingsFlags, - powerUsageStatus ObjectStatusEnum, - powerUsageEntityName String64, - powerUsageCumulativeWattage Unsigned32BitRange, - powerUsageCumulativeWattageStartDateName DateName, - powerUsagePeakWatts Unsigned32BitRange, - powerUsagePeakWattsStartDateName DateName, - powerUsagePeakWattsReadingDateName DateName, - powerUsagePeakAmps Unsigned32BitRange, - powerUsagePeakAmpsStartDateName DateName, - powerUsagePeakAmpsReadingDateName DateName, - powerUsageIdlePower Unsigned32BitRange, - powerUsageMaxPotentialPower Unsigned32BitRange, - powerUsagePowerCapCapabilities PowerCapCapabilitiesFlags, - powerUsagePowerCapSetting PowerCapSettingEnum, - powerUsagePowerCapValue Unsigned32BitRange, - powerUsageInstantaneousHeadroom Unsigned32BitRange, - powerUsagePeakHeadroom Unsigned32BitRange -} - -powerUsageTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerUsageTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0060 This object defines the Power Usage Table." - ::= { powerGroup 60 } - -powerUsageTableEntry OBJECT-TYPE - SYNTAX PowerUsageTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0600.0060.0001 This object defines the Power Usage Table Entry." - INDEX { powerUsageChassisIndex, - powerUsageIndex } - ::= { powerUsageTable 1 } - -powerUsageChassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0001 This attribute defines the index (one based) of - the associated system chassis." - ::= { powerUsageTableEntry 1 } - -powerUsageIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0002 This attribute defines the index (one based) of the - power usage information." - ::= { powerUsageTableEntry 2 } - -powerUsageStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0003 This attribute defines the state capabilities of the - power usage information." - ::= { powerUsageTableEntry 3 } - -powerUsageStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0004 This attribute defines the state settings of the - power usage information." - ::= { powerUsageTableEntry 4 } - -powerUsageStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0005 This attribute defines the status of the - power usage information." - ::= { powerUsageTableEntry 5 } - -powerUsageEntityName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0006 This attribute defines the name of the entity - associated with this power usage information." - ::= { powerUsageTableEntry 6 } - -powerUsageCumulativeWattage OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0007 This attribute defines the total wattage used - (in Watt-hours) by this entity since the date and time specified - by the powerUsageCumulativeWattageStartDateName attribute." - ::= { powerUsageTableEntry 7 } - -powerUsageCumulativeWattageStartDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0008 This attribute defines the date and time at - which the data collection started for the value reported by the - powerUsageCumulativeWattage attribute." - ::= { powerUsageTableEntry 8 } - -powerUsagePeakWatts OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0009 This attribute defines the peak wattage reading - (in Watts) for this entity since the date and time specified by the - powerUsagePeakWattsStartDateName attribute." - ::= { powerUsageTableEntry 9 } - -powerUsagePeakWattsStartDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0010 This attribute defines the date and time at - which the data collection started for the value reported by the - powerUsagePeakWatts attribute." - ::= { powerUsageTableEntry 10 } - -powerUsagePeakWattsReadingDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0011 This attribute defines the date and time at - which the value reported by the powerUsagePeakWatts attribute was - measured." - ::= { powerUsageTableEntry 11 } - -powerUsagePeakAmps OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0012 This attribute defines the peak amperage reading - (in tenths of Amps) for this entity since the date and time specified - by the powerUsagePeakAmpsStartDateName attribute." - ::= { powerUsageTableEntry 12 } - -powerUsagePeakAmpsStartDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0013 This attribute defines the date and time at - which the data collection started for the value reported by the - powerUsagePeakAmps attribute." - ::= { powerUsageTableEntry 13 } - -powerUsagePeakAmpsReadingDateName OBJECT-TYPE - SYNTAX DateName - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0014 This attribute defines the date and time at - which the value reported by the powerUsagePeakAmps attribute was - measured." - ::= { powerUsageTableEntry 14 } - -powerUsageIdlePower OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0015 This attribute defines the system idle power - (in Watts). This is the minimum power the system can consume - based on the current hardware configuration." - ::= { powerUsageTableEntry 15 } - -powerUsageMaxPotentialPower OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0016 This attribute defines the system maximum potential - power (in Watts). This is the maximum power the system can consume - based on the current hardware configuration." - ::= { powerUsageTableEntry 16 } - -powerUsagePowerCapCapabilities OBJECT-TYPE - SYNTAX PowerCapCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0017 This attribute defines the system power cap capabilities." - ::= { powerUsageTableEntry 17 } - -powerUsagePowerCapSetting OBJECT-TYPE - SYNTAX PowerCapSettingEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0018 This attribute defines the system power cap setting." - ::= { powerUsageTableEntry 18 } - -powerUsagePowerCapValue OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0019 This attribute defines the system power cap value - (in Watts)." - ::= { powerUsageTableEntry 19 } - -powerUsageInstantaneousHeadroom OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0020 This attribute defines the system instantaneous - headroom (in Watts). This is the theoretical maximum power drawn by - the power supply minus instantaneous power draw." - ::= { powerUsageTableEntry 20 } - -powerUsagePeakHeadroom OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0600.0060.0001.0021 This attribute defines the system peak headroom - (in Watts). This is the theoretical maximum power drawn by the power - supply minus peak power draw." - ::= { powerUsageTableEntry 21 } - - -------------------------------------------------------------------------------- --- Thermal Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.700 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Cooling Unit Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.10.1... -------------------------------------------------------------------------------- - -CoolingUnitTableEntry ::= SEQUENCE { - coolingUnitchassisIndex ObjectRange, - coolingUnitIndex ObjectRange, - coolingUnitStateCapabilties StateCapabilitiesFlags, - coolingUnitStateSettings StateSettingsFlags, - coolingUnitRedundancyStatus StatusRedundancyEnum, - coolingDeviceCountForRedundancy ObjectRange, - coolingUnitName String64, - coolingUnitStatus ObjectStatusEnum -} - -coolingUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0700.0010 This object defines the Cooling Unit Table." - ::= { thermalGroup 10 } - -coolingUnitTableEntry OBJECT-TYPE - SYNTAX CoolingUnitTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0700.0010.0001 This object defines the Cooling Unit Table Entry." - INDEX { coolingUnitchassisIndex, - coolingUnitIndex } - ::= { coolingUnitTable 1 } - -coolingUnitchassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0001 This attribute defines the index (one based) of - the associated system chassis." - ::= { coolingUnitTableEntry 1 } - -coolingUnitIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0002 This attribute defines the index (one based) of the - cooling unit." - ::= { coolingUnitTableEntry 2 } - -coolingUnitStateCapabilties OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0003 This attribute defines the state capabilities of the - cooling unit." - ::= { coolingUnitTableEntry 3 } - -coolingUnitStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0004 This attribute defines the state settings of the - cooling unit." - ::= { coolingUnitTableEntry 4 } - -coolingUnitRedundancyStatus OBJECT-TYPE - SYNTAX StatusRedundancyEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0005 This attribute defines the redundancy status of the - cooling unit." - ::= { coolingUnitTableEntry 5 } - -coolingDeviceCountForRedundancy OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0006 This attribute defines the total number of cooling devices - required for this cooling unit to have full redundancy." - ::= { coolingUnitTableEntry 6 } - -coolingUnitName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0007 This attribute defines the name of the cooling unit." - ::= { coolingUnitTableEntry 7 } - -coolingUnitStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0010.0001.0008 This attribute defines the status of the cooling unit." - ::= { coolingUnitTableEntry 8 } - - -------------------------------------------------------------------------------- --- Cooling Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.12.1... -------------------------------------------------------------------------------- - -CoolingDeviceTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Cooling Device Type Enum." - SYNTAX INTEGER { - coolingDeviceTypeIsOther(1), -- type is other than following values - coolingDeviceTypeIsUnknown(2), -- type is unknown - coolingDeviceTypeIsAFan(3), -- type is Fan - coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower - coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit - coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan - coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan - coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe - coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit - coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device - coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device -} - -CoolingDeviceSubTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Cooling Device Sub Type Enum." - SYNTAX INTEGER { - coolingDeviceSubTypeIsOther(1), -- subtype is other than following values - coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown - coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM - coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On - coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM - coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On - coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading -} - -CoolingDeviceDiscreteReadingEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Cooling Device Discrete Reading Enum." - SYNTAX INTEGER { - coolingDeviceIsGood(1), -- cooling device is Good - coolingDeviceIsBad(2) -- cooling device is Bad -} - -CoolingDeviceTableEntry ::= SEQUENCE { - coolingDevicechassisIndex ObjectRange, - coolingDeviceIndex ObjectRange, - coolingDeviceStateCapabilities StateCapabilitiesFlags, - coolingDeviceStateSettings StateSettingsFlags, - coolingDeviceStatus StatusProbeEnum, - coolingDeviceReading Signed32BitRange, - coolingDeviceType CoolingDeviceTypeEnum, - coolingDeviceLocationName String64, - coolingDeviceUpperNonRecoverableThreshold Signed32BitRange, - coolingDeviceUpperCriticalThreshold Signed32BitRange, - coolingDeviceUpperNonCriticalThreshold Signed32BitRange, - coolingDeviceLowerNonCriticalThreshold Signed32BitRange, - coolingDeviceLowerCriticalThreshold Signed32BitRange, - coolingDeviceLowerNonRecoverableThreshold Signed32BitRange, - coolingDevicecoolingUnitIndexReference ObjectRange, - coolingDeviceSubType CoolingDeviceSubTypeEnum, - coolingDeviceProbeCapabilities ProbeCapabilitiesFlags, - coolingDeviceDiscreteReading CoolingDeviceDiscreteReadingEnum, - coolingDeviceFQDD FQDDString -} - -coolingDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0700.0012 This object defines the Cooling Device Table." - ::= { thermalGroup 12 } - -coolingDeviceTableEntry OBJECT-TYPE - SYNTAX CoolingDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0700.0012.0001 This object defines the Cooling Device Table Entry." - INDEX { coolingDevicechassisIndex, - coolingDeviceIndex } - ::= { coolingDeviceTable 1 } - -coolingDevicechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { coolingDeviceTableEntry 1 } - -coolingDeviceIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0002 This attribute defines the index (one based) of the - cooling device." - ::= { coolingDeviceTableEntry 2 } - -coolingDeviceStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0003 This attribute defines the state capabilities of the - cooling device." - ::= { coolingDeviceTableEntry 3 } - -coolingDeviceStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0004 This attribute defines the state settings of the - cooling device." - ::= { coolingDeviceTableEntry 4 } - -coolingDeviceStatus OBJECT-TYPE - SYNTAX StatusProbeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0005 This attribute defines the probe status of the - cooling device." - ::= { coolingDeviceTableEntry 5 } - -coolingDeviceReading OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0006 This attribute defines the reading for a cooling device - of subtype other than coolingDeviceSubTypeIsDiscrete. When the value - for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the - value returned for this attribute is the speed in RPM or the OFF/ON value - of the cooling device. When the value for coolingDeviceSubType is - coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." - ::= { coolingDeviceTableEntry 6 } - -coolingDeviceType OBJECT-TYPE - SYNTAX CoolingDeviceTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0007 This attribute defines the type of the cooling device." - ::= { coolingDeviceTableEntry 7 } - -coolingDeviceLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0008 This attribute defines the location name of the - cooling device." - ::= { coolingDeviceTableEntry 8 } - -coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold - of the cooling device. The value is an integer representing fan speed - in revolutions per minute (RPM). It is not applicable to OFF/ON type - cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 9 } - -coolingDeviceUpperCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0010 This attribute defines the upper critical threshold - of the cooling device. The value is an integer representing fan speed - in revolutions per minute (RPM). It is not applicable to OFF/ON type - cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 10 } - -coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0011 This attribute defines the upper noncritical threshold - of the cooling device. The value is an integer representing fan speed - in revolutions per minute (RPM). It is not applicable to OFF/ON type - cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 11 } - -coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0012 This attribute defines the lower noncritical threshold - of the cooling device. The value is an integer representing fan speed - in revolutions per minute (RPM). It is not applicable to OFF/ON type - cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 12 } - -coolingDeviceLowerCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0013 This attribute defines the lower critical threshold - of the cooling device. The value is an integer representing fan speed - in revolutions per minute (RPM). It is not applicable to OFF/ON type - cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 13 } - -coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold - of the cooling device. The value is an integer representing fan speed - in revolutions per minute (RPM). It is not applicable to OFF/ON type - cooling devices or non-cooling device types." - ::= { coolingDeviceTableEntry 14 } - -coolingDevicecoolingUnitIndexReference OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0015 This attribute defines the index to the associated - cooling unit." - ::= { coolingDeviceTableEntry 15 } - -coolingDeviceSubType OBJECT-TYPE - SYNTAX CoolingDeviceSubTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0016 This attribute defines the subtype of the cooling device." - ::= { coolingDeviceTableEntry 16 } - -coolingDeviceProbeCapabilities OBJECT-TYPE - SYNTAX ProbeCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0017 This attribute defines the probe capabilities of the - cooling device." - ::= { coolingDeviceTableEntry 17 } - -coolingDeviceDiscreteReading OBJECT-TYPE - SYNTAX CoolingDeviceDiscreteReadingEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0018 This attribute defines the reading for a cooling device - of type coolingDeviceSubTypeIsDiscrete. When the value for - coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value - is not returned for this attribute. When the value for coolingDeviceSubType - is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute - is the discrete reading for the cooling device." - ::= { coolingDeviceTableEntry 18 } - -coolingDeviceFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0012.0001.0019 Fully qualified device descriptor (FQDD) of the - cooling device." - ::= { coolingDeviceTableEntry 19 } - - -------------------------------------------------------------------------------- --- Temperature Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.20.1... -------------------------------------------------------------------------------- - -TemperatureProbeTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Temperature Probe Type Enum." - SYNTAX INTEGER { - temperatureProbeTypeIsOther(1), -- type is other than following values - temperatureProbeTypeIsUnknown(2), -- type is unknown - temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe - temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading -} - -TemperatureDiscreteReadingEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Temperature Discrete Reading Enum." - SYNTAX INTEGER { - temperatureIsGood(1), -- temperature reading is Good - temperatureIsBad(2) -- temperature reading is Bad -} - -TemperatureProbeTableEntry ::= SEQUENCE { - temperatureProbechassisIndex ObjectRange, - temperatureProbeIndex ObjectRange, - temperatureProbeStateCapabilities StateCapabilitiesFlags, - temperatureProbeStateSettings StateSettingsFlags, - temperatureProbeStatus StatusProbeEnum, - temperatureProbeReading Signed32BitRange, - temperatureProbeType TemperatureProbeTypeEnum, - temperatureProbeLocationName String64, - temperatureProbeUpperNonRecoverableThreshold Signed32BitRange, - temperatureProbeUpperCriticalThreshold Signed32BitRange, - temperatureProbeUpperNonCriticalThreshold Signed32BitRange, - temperatureProbeLowerNonCriticalThreshold Signed32BitRange, - temperatureProbeLowerCriticalThreshold Signed32BitRange, - temperatureProbeLowerNonRecoverableThreshold Signed32BitRange, - temperatureProbeProbeCapabilities ProbeCapabilitiesFlags, - temperatureProbeDiscreteReading TemperatureDiscreteReadingEnum -} - -temperatureProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF TemperatureProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0700.0020 This object defines the Temperature Probe Table." - ::= { thermalGroup 20 } - -temperatureProbeTableEntry OBJECT-TYPE - SYNTAX TemperatureProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "0700.0020.0001 This object defines the Temperature Probe Table Entry." - INDEX { temperatureProbechassisIndex, - temperatureProbeIndex } - ::= { temperatureProbeTable 1 } - -temperatureProbechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { temperatureProbeTableEntry 1 } - -temperatureProbeIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0002 This attribute defines the index (one based) of the - temperature probe." - ::= { temperatureProbeTableEntry 2 } - -temperatureProbeStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0003 This attribute defines the state capabilities of the - temperature probe." - ::= { temperatureProbeTableEntry 3 } - -temperatureProbeStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0004 This attribute defines the state settings of the - temperature probe." - ::= { temperatureProbeTableEntry 4 } - -temperatureProbeStatus OBJECT-TYPE - SYNTAX StatusProbeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0005 This attribute defines the probe status of the - temperature probe." - ::= { temperatureProbeTableEntry 5 } - -temperatureProbeReading OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0006 This attribute defines the reading for a temperature - probe of type other than temperatureProbeTypeIsDiscrete. When the value - for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, - the value returned for this attribute is the temperature that the probe - is reading in tenths of degrees Centigrade. When the value for - temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not - returned for this attribute." - ::= { temperatureProbeTableEntry 6 } - -temperatureProbeType OBJECT-TYPE - SYNTAX TemperatureProbeTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0007 This attribute defines the type of the temperature probe." - ::= { temperatureProbeTableEntry 7 } - -temperatureProbeLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0008 This attribute defines the location name of the - temperature probe." - ::= { temperatureProbeTableEntry 8 } - -temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold - of the temperature probe. The value is an integer representing the temperature - of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 9 } - -temperatureProbeUpperCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0010 This attribute defines the upper critical threshold - of the temperature probe. The value is an integer representing the temperature - of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 10 } - -temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0011 This attribute defines the upper noncritical threshold - of the temperature probe. The value is an integer representing the temperature - of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 11 } - -temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0012 This attribute defines the lower noncritical threshold - of the temperature probe. The value is an integer representing the temperature - of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 12 } - -temperatureProbeLowerCriticalThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0013 This attribute defines the lower critical threshold - of the temperature probe. The value is an integer representing the temperature - of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 13 } - -temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold - of the temperature probe. The value is an integer representing the temperature - of the threshold in tenths of degrees Centigrade." - ::= { temperatureProbeTableEntry 14 } - -temperatureProbeProbeCapabilities OBJECT-TYPE - SYNTAX ProbeCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0015 This attribute defines the probe capabilities of the - temperature probe." - ::= { temperatureProbeTableEntry 15 } - -temperatureProbeDiscreteReading OBJECT-TYPE - SYNTAX TemperatureDiscreteReadingEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "0700.0020.0001.0016 This attribute defines the reading for a temperature - probe of type temperatureProbeTypeIsDiscrete. When the value for - temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value - is not returned for this attribute. When the value for temperatureProbeType - is temperatureProbeTypeIsDiscrete, the value returned for this attribute - is the discrete reading for the probe." - ::= { temperatureProbeTableEntry 16 } - - -------------------------------------------------------------------------------- --- Device Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Processor Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.30.1... -------------------------------------------------------------------------------- - -ProcessorDeviceType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Processor Device Type." - SYNTAX INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is unknown - deviceTypeIsCPU(3), -- type is Central Processing Unit - deviceTypeIsMathProcessor(4), -- type is Math Processor - deviceTypeIsDSP(5), -- type is Digital Signal Processor - deviceTypeIsAVideoProcessor(6) -- type is Video Processor -} - -ProcessorDeviceFamily ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Processor Device Family." - SYNTAX INTEGER { - deviceFamilyIsOther(1), -- family is Other - deviceFamilyIsUnknown(2), -- family is Unknown - deviceFamilyIs8086(3), -- family is 8086 - deviceFamilyIs80286(4), -- family is 80286 - deviceFamilyIsIntel386(5), -- family is Intel386 processor - deviceFamilyIsIntel486(6), -- family is Intel486 processor - deviceFamilyIs8087(7), -- family is 8087 - deviceFamilyIs80287(8), -- family is 80287 - deviceFamilyIs80387(9), -- family is 80387 - deviceFamilyIs80487(10), -- family is 80487 - deviceFamilyIsPentium(11), -- family is Pentium processor Family - deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor - deviceFamilyIsPentiumII(13), -- family is Pentium II processor - deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology - deviceFamilyIsCeleron(15), -- family is Celeron processor - deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor - deviceFamilyIsPentiumIII(17), -- family is Pentium III processor - deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor - deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology - deviceFamilyIsItanium(20), -- family is Itanium processor - deviceFamilyIsIntelXeon(21), -- family is Intel Xeon - deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor - deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP - deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor - deviceFamilyIsK5(25), -- family is K5 Family - deviceFamilyIsK6(26), -- family is K6 Family - deviceFamilyIsK6-2(27), -- family is K6-2 - deviceFamilyIsK6-3(28), -- family is K6-3 - deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family - deviceFamilyIsAMD2900(30), -- family is AMD2900 Family - deviceFamilyIsK6-2Plus(31), -- family is K6-2+ - deviceFamilyIsPowerPC(32), -- family is Power PC Family - deviceFamilyIsPowerPC601(33), -- family is Power PC 601 - deviceFamilyIsPowerPC603(34), -- family is Power PC 603 - deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ - deviceFamilyIsPowerPC604(36), -- family is Power PC 604 - deviceFamilyIsPowerPC620(37), -- family is Power PC 620 - deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 - deviceFamilyIsPowerPC750(39), -- family is Power PC 750 - deviceFamilyIsIntelCoreDuo(40), -- family is Intel(R) Core(TM) Duo processor - deviceFamilyIsIntelCoreDuoMobile(41), -- family is Intel(R) Core(TM) Duo mobile processor - deviceFamilyIsIntelCoreSoloMobile(42), -- family is Intel(R) Core(TM) Solo mobile processor - deviceFamilyIsIntelAtom(43), -- family is Intel(R) Atom(TM) processor - deviceFamilyIsAlpha(48), -- family is Alpha Family - deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 - deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 - deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 - deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC - deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a - deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 - deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 - deviceFamilyIsAMDTurionIIUltraDualMobileM(56), -- family is AMD Turion(TM) II Ultra Dual-Core Mobile M Processor Family - deviceFamilyIsAMDTurionIIDualMobileM(57), -- family is AMD Turion(TM) II Dual-Core Mobile M Processor Family - deviceFamilyIsAMDAthlonIIDualMobileM(58), -- family is AMD Athlon(TM) II Dual-Core Mobile M Processor Family - deviceFamilyIsAMDOpteron6100(59), -- family is AMD Opteron(TM) 6100 Series Processor - deviceFamilyIsAMDOpteron4100(60), -- family is AMD Opteron(TM) 4100 Series Processor - deviceFamilyIsAMDOpteron6200(61), -- family is AMD Opteron(TM) 6200 Series Processor - deviceFamilyIsAMDOpteron4200(62), -- family is AMD Opteron(TM) 4200 Series Processor - deviceFamilyIsMIPS(64), -- family is MIPS Family - deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 - deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 - deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 - deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 - deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 - deviceFamilyIsSPARC(80), -- family is SPARC Family - deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC - deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II - deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep - deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC - deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II - deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi - deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III - deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi - deviceFamilyIs68040(96), -- family is 68040 Family - deviceFamilyIs68xxx(97), -- family is 68xxx - deviceFamilyIs68000(98), -- family is 68000 - deviceFamilyIs68010(99), -- family is 68010 - deviceFamilyIs68020(100), -- family is 68020 - deviceFamilyIs68030(101), -- family is 68030 - deviceFamilyIsHobbit(112), -- family is Hobbit Family - deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family - deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family - deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family - deviceFamilyIsWeitek(128), -- family is Weitek - deviceFamilyIsIntelCeleronM(130), -- family is Intel(R) Celeron(R) M processor - deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family - deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family - deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family - deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology - deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family - deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family - deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology - deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family - deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family - deviceFamilyIsAMDPhenomFXQuadCore(140), -- family is AMD Phenom(TM) FX Quad-Core Processor Family - deviceFamilyIsAMDPhenomX4QuadCore(141), -- family is AMD Phenom(TM) X4 Quad-Core Processor Family - deviceFamilyIsAMDPhenomX2DualCore(142), -- family is AMD Phenom(TM) X2 Dual-Core Processor Family - deviceFamilyIsAMDAthlonX2DualCore(143), -- family is AMD Athlon(TM) X2 Dual-Core Processor Family - deviceFamilyIsPA-RISC(144), -- family is PA-RISC Family - deviceFamilyIsPA-RISC8500(145), -- family is PA-RISC 8500 - deviceFamilyIsPA-RISC8000(146), -- family is PA-RISC 8000 - deviceFamilyIsPA-RISC7300LC(147), -- family is PA-RISC 7300LC - deviceFamilyIsPA-RISC7200(148), -- family is PA-RISC 7200 - deviceFamilyIsPA-RISC7100LC(149), -- family is PA-RISC 7100LC - deviceFamilyIsPA-RISC7100(150), -- family is PA-RISC 7100 - deviceFamilyIsV30(160), -- family is V30 Family - deviceFamilyIsQuadCoreIntelXeon3200(161), -- family is Quad-Core Intel(R) Xeon(R) processor 3200 Series - deviceFamilyIsDualCoreIntelXeon3000(162), -- family is Dual-Core Intel(R) Xeon(R) processor 3000 Series - deviceFamilyIsQuadCoreIntelXeon5300(163), -- family is Quad-Core Intel(R) Xeon(R) processor 5300 Series - deviceFamilyIsDualCoreIntelXeon5100(164), -- family is Dual-Core Intel(R) Xeon(R) processor 5100 Series - deviceFamilyIsDualCoreIntelXeon5000(165), -- family is Dual-Core Intel(R) Xeon(R) processor 5000 Series - deviceFamilyIsDualCoreIntelXeonLV(166), -- family is Dual-Core Intel(R) Xeon(R) processor LV - deviceFamilyIsDualCoreIntelXeonULV(167), -- family is Dual-Core Intel(R) Xeon(R) processor ULV - deviceFamilyIsDualCoreIntelXeon7100(168), -- family is Dual-Core Intel(R) Xeon(R) processor 7100 Series - deviceFamilyIsQuadCoreIntelXeon5400(169), -- family is Quad-Core Intel(R) Xeon(R) processor 5400 Series - deviceFamilyIsQuadCoreIntelXeon(170), -- family is Quad-Core Intel(R) Xeon(R) processor - deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series - deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series - deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series - deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series - deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series - deviceFamilyIsM1(176), -- family is M1 Family - deviceFamilyIsM2(177), -- family is M2 Family - deviceFamilyIsIntelPentium4HT(179), -- family is Intel(R) Pentium(R) 4 HT processor - deviceFamilyIsAS400(180), -- family is AS400 Family - deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family - deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family - deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family - deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor - deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor - deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor - deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition - deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor - deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor - deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor - deviceFamilyIsIntelCore2Solo(192), -- family is Intel(R) Core(TM)2 Solo processor - deviceFamilyIsIntelCore2Extreme(193), -- family is Intel(R) Core(TM)2 Extreme processor - deviceFamilyIsIntelCore2Quad(194), -- family is Intel(R) Core(TM)2 Quad processor - deviceFamilyIsIntelCore2ExtremeMobile(195), -- family is Intel(R) Core(TM)2 Extreme mobile processor - deviceFamilyIsIntelCore2DuoMobile(196), -- family is Intel(R) Core(TM)2 Duo mobile processor - deviceFamilyIsIntelCore2SoloMobile(197), -- family is Intel(R) Core(TM)2 Solo mobile processor - deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor - deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor - deviceFamilyIsIBM390(200), -- family is IBM390 Family - deviceFamilyIsG4(201), -- family is G4 - deviceFamilyIsG5(202), -- family is G5 - deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 - deviceFamilyIszArchitectur(204), -- family is z/Architectur base - deviceFamilyIsIntelCorei5(205), -- family is Intel(R) Core(TM) i5 processor - deviceFamilyIsIntelCorei3(206), -- family is Intel(R) Core(TM) i3 processor - deviceFamilyIsVIAC7-M(210), -- family is VIA C7(TM)-M Processor Family - deviceFamilyIsVIAC7-D(211), -- family is VIA C7(TM)-D Processor Family - deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family - deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family - deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor - deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series - deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series - deviceFamilyIsVIANano(217), -- family is VIA Nano(TM) Processor Family - deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series - deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series - deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series - deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series - deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series - deviceFamilyIsMultiCoreIntelXeon3400(224), -- family is Multi-Core Intel(R) Xeon(R) processor 3400 Series - deviceFamilyIsEmbeddedAMDOpertonQuadCore(230), -- family is Embedded AMD Opteron(TM) Quad-Core Processor Family - deviceFamilyIsAMDPhenomTripleCore(231), -- family is AMD Phenom(TM) Triple-Core Processor Family - deviceFamilyIsAMDTurionUltraDualCoreMobile(232), -- family is AMD Turion(TM) Ultra Dual-Core Mobile Processor Family - deviceFamilyIsAMDTurionDualCoreMobile(233), -- family is AMD Turion(TM) Dual-Core Mobile Processor Family - deviceFamilyIsAMDAthlonDualCore(234), -- family is AMD Athlon(TM) Dual-Core Processor Family - deviceFamilyIsAMDSempronSI(235), -- family is AMD Sempron(TM) SI Processor Family - deviceFamilyIsAMDPhenomII(236), -- family is AMD Phenom(TM) II Processor Family - deviceFamilyIsAMDAthlonII(237), -- family is AMD Athlon(TM) II Processor Family - deviceFamilyIsSixCoreAMDOpteron(238), -- family is Six-Core AMD Opteron(TM) Processor Family - deviceFamilyIsAMDSempronM(239), -- family is AMD Sempron(TM) M Processor Family - deviceFamilyIsi860(250), -- family is i860 - deviceFamilyIsi960(251) -- family is i960 -} - -ProcessorDeviceStatusState ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Processor Device Status State." - SYNTAX INTEGER { - other(1), -- state is other than following values - unknown(2), -- state is unknown - enabled(3), -- state is enabled - userDisabled(4), -- state is disabled by user via BIOS setup - biosDisabled(5), -- state is disabled by BIOS (POST error) - idle(6) -- state is idle -} - -ProcessorDeviceTableEntry ::= SEQUENCE { - processorDevicechassisIndex ObjectRange, - processorDeviceIndex ObjectRange, - processorDeviceStateCapabilities StateCapabilitiesFlags, - processorDeviceStateSettings StateSettingsFlags, - processorDeviceStatus ObjectStatusEnum, - processorDeviceType ProcessorDeviceType, - processorDeviceManufacturerName String64, - processorDeviceStatusState ProcessorDeviceStatusState, - processorDeviceFamily ProcessorDeviceFamily, - processorDeviceMaximumSpeed Unsigned32BitRange, - processorDeviceCurrentSpeed Unsigned32BitRange, - processorDeviceExternalClockSpeed Unsigned32BitRange, - processorDeviceVoltage Signed32BitRange, - processorDeviceVersionName String64, - processorDeviceCoreCount Unsigned32BitRange, - processorDeviceCoreEnabledCount Unsigned32BitRange, - processorDeviceThreadCount Unsigned32BitRange, - processorDeviceCharacteristics Unsigned16BitRange, - processorDeviceExtendedCapabilities Unsigned16BitRange, - processorDeviceExtendedSettings Unsigned16BitRange, - processorDeviceBrandName String64, - processorDeviceFQDD FQDDString -} - -processorDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProcessorDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0030 This object defines the Processor Device Table." - ::= { deviceGroup 30 } - -processorDeviceTableEntry OBJECT-TYPE - SYNTAX ProcessorDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0030.0001 This object defines the Processor Device Table Entry." - INDEX { processorDevicechassisIndex, - processorDeviceIndex } - ::= { processorDeviceTable 1 } - -processorDevicechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { processorDeviceTableEntry 1 } - -processorDeviceIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0002 This attribute defines the index (one based) of the - processor device." - ::= { processorDeviceTableEntry 2 } - -processorDeviceStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0003 This attribute defines the state capabilities of the - processor device." - ::= { processorDeviceTableEntry 3 } - -processorDeviceStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0004 This attribute defines the state settings of the - processor device." - ::= { processorDeviceTableEntry 4 } - -processorDeviceStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0005 This attribute defines the status of the - processor device." - ::= { processorDeviceTableEntry 5 } - -processorDeviceType OBJECT-TYPE - SYNTAX ProcessorDeviceType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0007 This attribute defines the type of the processor device." - ::= { processorDeviceTableEntry 7 } - -processorDeviceManufacturerName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0008 This attribute defines the name of the manufacturer - of the processor device." - ::= { processorDeviceTableEntry 8 } - -processorDeviceStatusState OBJECT-TYPE - SYNTAX ProcessorDeviceStatusState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0009 This attribute defines the status state of the - processor device." - ::= { processorDeviceTableEntry 9 } - -processorDeviceFamily OBJECT-TYPE - SYNTAX ProcessorDeviceFamily - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0010 This attribute defines the family of the - processor device." - ::= { processorDeviceTableEntry 10 } - -processorDeviceMaximumSpeed OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0011 This attribute defines the maximum speed of the - processor device in MHz. Zero indicates the maximum speed is unknown." - ::= { processorDeviceTableEntry 11 } - -processorDeviceCurrentSpeed OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0012 This attribute defines the current speed of the - processor device in MHz. Zero indicates the current speed is unknown." - ::= { processorDeviceTableEntry 12 } - -processorDeviceExternalClockSpeed OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0013 This attribute defines the speed of the - external clock for the processor device in MHz. Zero indicates - the external clock speed is unknown." - ::= { processorDeviceTableEntry 13 } - -processorDeviceVoltage OBJECT-TYPE - SYNTAX Signed32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0014 This attribute defines the voltage powering the - processor device in millivolts. Zero indicates the voltage is unknown." - ::= { processorDeviceTableEntry 14 } - -processorDeviceVersionName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0016 This attribute defines the version of the - processor device. On some systems, this value contains the - brand and stepping information; on other systems, this value - contains the model and stepping information." - ::= { processorDeviceTableEntry 16 } - -processorDeviceCoreCount OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0017 This attribute defines the number of processor cores - detected for the processor device." - ::= { processorDeviceTableEntry 17 } - -processorDeviceCoreEnabledCount OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0018 This attribute defines the number of processor cores - enabled for the processor device." - ::= { processorDeviceTableEntry 18 } - -processorDeviceThreadCount OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0019 This attribute defines the number of processor threads - detected for the processor device." - ::= { processorDeviceTableEntry 19 } - -processorDeviceCharacteristics OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0020 This attribute defines characteristics of the - processor device. This attribute is a bit field where a bit has the meaning - defined below when set to 1 (one). - - NOTE: Bits 2-15 need to be examined in the context of bit 1. - If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot - be used to determine if the functions associated with the bits are supported. - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Reserved - Bit 1 Unknown - Bit 2 64-bit capable - Bit 3-15 Reserved" - ::= { processorDeviceTableEntry 20 } - -processorDeviceExtendedCapabilities OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0021 This attribute defines extended capabilities of the - processor device. This attribute is a bit field where a bit has the meaning - defined below when set to 1 (one). - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Virtualization Technology (VT) supported - Bit 2 eXecute Disable (XD) supported - Bit 3 Hyper-Threading (HT) supported - Bit 4 Turbo Mode supported" - ::= { processorDeviceTableEntry 21 } - -processorDeviceExtendedSettings OBJECT-TYPE - SYNTAX Unsigned16BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0022 This attribute defines extended settings of the - processor device. This attribute is a bit field where a bit has the meaning - defined below when set to 1 (one). - - Bit - Position Meaning if Set - -------- -------------- - Bit 0 Virtualization Technology (VT) enabled - Bit 2 eXecute Disable (XD) enabled - Bit 3 Hyper-Threading (HT) enabled - Bit 4 Turbo Mode enabled" - ::= { processorDeviceTableEntry 22 } - -processorDeviceBrandName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0023 This attribute defines the brand of the - processor device." - ::= { processorDeviceTableEntry 23 } - -processorDeviceFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0030.0001.0026 Fully qualified device descriptor (FQDD) of the - processor device." - ::= { processorDeviceTableEntry 26 } - - -------------------------------------------------------------------------------- --- Processor Device Status Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.32.1... -------------------------------------------------------------------------------- - -ProcessorDeviceStatusReadingFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Processor Device Status Reading Flags." - SYNTAX INTEGER { - -- Note: These values are bit masks, so combination values are possible. - internalError(1), -- Internal Error - thermalTrip(2), -- Thermal Trip - configurationError(32), -- Configuration Error - processorPresent(128), -- Processor Present - processorDisabled(256), -- Processor Disabled - terminatorPresent(512), -- Terminator Present - processorThrottled(1024) -- Processor Throttled -} - -ProcessorDeviceStatusTableEntry ::= SEQUENCE { - processorDeviceStatusChassisIndex ObjectRange, - processorDeviceStatusIndex ObjectRange, - processorDeviceStatusStateCapabilities StateCapabilitiesFlags, - processorDeviceStatusStateSettings StateSettingsFlags, - processorDeviceStatusStatus ObjectStatusEnum, - processorDeviceStatusReading ProcessorDeviceStatusReadingFlags, - processorDeviceStatusLocationName String64 -} - -processorDeviceStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0032 This object defines the Processor Device Status Table." - ::= { deviceGroup 32 } - -processorDeviceStatusTableEntry OBJECT-TYPE - SYNTAX ProcessorDeviceStatusTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0032.0001 This object defines the Processor Device Status Table Entry." - INDEX { processorDeviceStatusChassisIndex, - processorDeviceStatusIndex } - ::= { processorDeviceStatusTable 1 } - -processorDeviceStatusChassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { processorDeviceStatusTableEntry 1 } - -processorDeviceStatusIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0002 This attribute defines the index (one based) of the - processor device status probe." - ::= { processorDeviceStatusTableEntry 2 } - -processorDeviceStatusStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0003 This attribute defines the state capabilities of the - processor device status probe." - ::= { processorDeviceStatusTableEntry 3 } - -processorDeviceStatusStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0004 This attribute defines the state settings of the - processor device status probe." - ::= { processorDeviceStatusTableEntry 4 } - -processorDeviceStatusStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0005 This attribute defines the status of the - processor device status probe. This status will be joined into - the processorDeviceStatus attribute." - ::= { processorDeviceStatusTableEntry 5 } - -processorDeviceStatusReading OBJECT-TYPE - SYNTAX ProcessorDeviceStatusReadingFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0006 This attribute defines the reading of the - processor device status probe." - ::= { processorDeviceStatusTableEntry 6 } - -processorDeviceStatusLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0032.0001.0007 This attribute defines the location name of the - processor device status probe." - ::= { processorDeviceStatusTableEntry 7 } - - -------------------------------------------------------------------------------- --- Memory Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.50.1... -------------------------------------------------------------------------------- - -MemoryDeviceTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Memory Device Type Enum." - SYNTAX INTEGER { - deviceTypeIsOther(1), -- type is other than following values - deviceTypeIsUnknown(2), -- type is unknown - deviceTypeIsDRAM(3), -- type is DRAM - deviceTypeIsEDRAM(4), -- type is EDRAM - deviceTypeIsVRAM(5), -- type is VRAM - deviceTypeIsSRAM(6), -- type is SRAM - deviceTypeIsRAM(7), -- type is RAM - deviceTypeIsROM(8), -- type is ROM - deviceTypeIsFLASH(9), -- type is FLASH - deviceTypeIsEEPROM(10), -- type is EEPROM - deviceTypeIsFEPROM(11), -- type is FEPROM - deviceTypeIsEPROM(12), -- type is EPROM - deviceTypeIsCDRAM(13), -- type is CDRAM - deviceTypeIs3DRAM(14), -- type is 3DRAM - deviceTypeIsSDRAM(15), -- type is SDRAM - deviceTypeIsSGRAM(16), -- type is SGRAM - deviceTypeIsRDRAM(17), -- type is RDRAM - deviceTypeIsDDR(18), -- type is DDR - deviceTypeIsDDR2(19), -- type is DDR2 - deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM - deviceTypeIsDDR3(24), -- type is DDR3 - deviceTypeIsFBD2(25) -- type is FBD2 -} - -MemoryDeviceTableEntry ::= SEQUENCE { - memoryDevicechassisIndex ObjectRange, - memoryDeviceIndex ObjectRange, - memoryDeviceStateCapabilities StateCapabilitiesFlags, - memoryDeviceStateSettings StateSettingsFlags, - memoryDeviceStatus ObjectStatusEnum, - memoryDeviceType MemoryDeviceTypeEnum, - memoryDeviceLocationName String64, - memoryDeviceBankLocationName String64, - memoryDeviceSize Unsigned32BitRange, - memoryDeviceSpeed Unsigned32BitRange, - memoryDeviceManufacturerName String64, - memoryDevicePartNumberName String64, - memoryDeviceSerialNumberName String64, - memoryDeviceFQDD FQDDString -} - -memoryDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemoryDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0050 This object defines the Memory Device Table." - ::= { deviceGroup 50 } - -memoryDeviceTableEntry OBJECT-TYPE - SYNTAX MemoryDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0050.0001 This object defines the Memory Device Table Entry." - INDEX { memoryDevicechassisIndex, - memoryDeviceIndex } - ::= { memoryDeviceTable 1 } - -memoryDevicechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { memoryDeviceTableEntry 1 } - -memoryDeviceIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0002 This attribute defines the index (one based) of the - memory device." - ::= { memoryDeviceTableEntry 2 } - -memoryDeviceStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0003 This attribute defines the state capabilities of the - memory device." - ::= { memoryDeviceTableEntry 3 } - -memoryDeviceStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0004 This attribute defines the state settings of the - memory device." - ::= { memoryDeviceTableEntry 4 } - -memoryDeviceStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0005 This attribute defines the status of the memory device." - ::= { memoryDeviceTableEntry 5 } - -memoryDeviceType OBJECT-TYPE - SYNTAX MemoryDeviceTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0007 This attribute defines the type of the memory device." - ::= { memoryDeviceTableEntry 7 } - -memoryDeviceLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0008 This attribute defines the location of the memory device." - ::= { memoryDeviceTableEntry 8 } - -memoryDeviceBankLocationName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0010 This attribute defines the location of the bank for the - memory device." - ::= { memoryDeviceTableEntry 10 } - -memoryDeviceSize OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0014 This attribute defines the size in KBytes of the - memory device. Zero indicates no memory installed; 2,147,483,647 indicates - an unknown memory size." - ::= { memoryDeviceTableEntry 14 } - -memoryDeviceSpeed OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0015 This attribute defines the speed in nanoseconds - of the memory device. Zero indicates an unknown speed." - ::= { memoryDeviceTableEntry 15 } - -memoryDeviceManufacturerName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0021 This attribute defines the manufacturer of the - memory device." - ::= { memoryDeviceTableEntry 21 } - -memoryDevicePartNumberName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0022 This attribute defines the manufacturer's part number - for the memory device." - ::= { memoryDeviceTableEntry 22 } - -memoryDeviceSerialNumberName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0023 This attribute defines the serial number of the - memory device." - ::= { memoryDeviceTableEntry 23 } - -memoryDeviceFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0050.0001.0026 Fully qualified device descriptor (FQDD) of the - memory device." - ::= { memoryDeviceTableEntry 26 } - - -------------------------------------------------------------------------------- --- PCI Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.80.1... -------------------------------------------------------------------------------- - -PCIDeviceTableEntry ::= SEQUENCE { - pCIDevicechassisIndex ObjectRange, - pCIDeviceIndex ObjectRange, - pCIDeviceStateCapabilities StateCapabilitiesFlags, - pCIDeviceStateSettings StateSettingsFlags, - pCIDeviceStatus ObjectStatusEnum, - pCIDeviceDataBusWidth Unsigned32BitRange, - pCIDeviceManufacturerName String64, - pCIDeviceDescriptionName String64, - pCIDeviceFQDD FQDDString -} - -pCIDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PCIDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0080 This object defines the PCI Device Table." - ::= { deviceGroup 80 } - -pCIDeviceTableEntry OBJECT-TYPE - SYNTAX PCIDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0080.0001 This object defines the PCI Device Table Entry." - INDEX { pCIDevicechassisIndex, - pCIDeviceIndex } - ::= { pCIDeviceTable 1 } - -pCIDevicechassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { pCIDeviceTableEntry 1 } - -pCIDeviceIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0002 This attribute defines the index (one based) of the - PCI device." - ::= { pCIDeviceTableEntry 2 } - -pCIDeviceStateCapabilities OBJECT-TYPE - SYNTAX StateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0003 This attribute defines the state capabilities of the - PCI device." - ::= { pCIDeviceTableEntry 3 } - -pCIDeviceStateSettings OBJECT-TYPE - SYNTAX StateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0004 This attribute defines the state settings of the - PCI device." - ::= { pCIDeviceTableEntry 4 } - -pCIDeviceStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0005 This attribute defines the status of the PCI device." - ::= { pCIDeviceTableEntry 5 } - -pCIDeviceDataBusWidth OBJECT-TYPE - SYNTAX Unsigned32BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0007 This attribute defines the width of the data bus - of the PCI device. This attribute contains an enumeration value. - The possible values and their meanings are defined below. - - Value Meaning - ---------- -------------- - 0x00000001 Other - 0x00000002 Unknown - 0x00000003 8 bit - 0x00000004 16 bit - 0x00000005 32 bit - 0x00000006 64 bit - 0x00000007 128 bit - 0x00000008 1x or x1 - 0x00000009 2x or x2 - 0x0000000A 4x or x4 - 0x0000000B 8x or x8 - 0x0000000C 12x or x12 - 0x0000000D 16x or x16 - 0x0000000E 32x or x32" - ::= { pCIDeviceTableEntry 7 } - -pCIDeviceManufacturerName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0008 This attribute defines the name of the manufacturer - of the PCI device." - ::= { pCIDeviceTableEntry 8 } - -pCIDeviceDescriptionName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0009 This attribute defines the description of the PCI device." - ::= { pCIDeviceTableEntry 9 } - -pCIDeviceFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0080.0001.0012 Fully qualified device descriptor (FQDD) of the - PCI device." - ::= { pCIDeviceTableEntry 12 } - - -------------------------------------------------------------------------------- --- Network Device Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.90.1... -------------------------------------------------------------------------------- - -NetworkDeviceConnectionStatusEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Network Device Connection Status Enum." - SYNTAX INTEGER { - -- unknown(0), - unable to determine connection status - connected(1), -- media reports connected - disconnected(2), -- media reports disconnected - driverBad(3), -- driver cannot be opened to determine status - driverDisabled(4), -- driver is disabled - hardwareInitalizing(10), -- hardware is initializing - hardwareResetting(11), -- hardware is resetting - hardwareClosing(12), -- hardware is closing down - hardwareNotReady(13) -- hardware is not ready -} - -NetworkDeviceTOECapabilityFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Network Device TOE Capability Flags." - SYNTAX INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - querying for TOE capability is not supported - unknown(1), -- querying for TOE capability is supported but query returned an error - available(2), -- device has TOE capability - notAvailable(4), -- device does not have TOE capability - cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying - driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query -} - -NetworkDeviceiSCSICapabilityFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Network Device iSCSI Capability Flags." - SYNTAX INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- none(0), - querying for iSCSI capability is not supported - unknown(1), -- querying for iSCSI capability is supported but query returned an error - available(2), -- device has iSCSI capability - notAvailable(4), -- device does not have iSCSI capability - cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying - driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query -} - -NetworkDeviceCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Network Device Capabilities Flags." - SYNTAX INTEGER { - -- Note: These values are bit fields, so combination values are possible. - -- notSupported(0), - device does not support reporting capabilities via this attribute - supported(1), -- device supports reporting capabilities via this attribute - toe(2), -- device has TOE capability - iscsiOffload(4), -- device has iSCSI Offload capability - fcoeOffload(8) -- device has FCoE Offload capability -} - -NetworkDeviceTableEntry ::= SEQUENCE { - networkDeviceChassisIndex ObjectRange, - networkDeviceIndex ObjectRange, - networkDeviceStatus ObjectStatusEnum, - networkDeviceConnectionStatus NetworkDeviceConnectionStatusEnum, - networkDeviceProductName String64, - networkDeviceVendorName String64, - networkDeviceCurrentMACAddress MACAddress, - networkDevicePermanentMACAddress MACAddress, - networkDevicePCIBusNumber Unsigned8BitRange, - networkDevicePCIDeviceNumber Unsigned8BitRange, - networkDevicePCIFunctionNumber Unsigned8BitRange, - networkDeviceTOECapabilityFlags NetworkDeviceTOECapabilityFlags, - networkDeviceiSCSICapabilityFlags NetworkDeviceiSCSICapabilityFlags, - networkDeviceiSCSIEnabled BooleanType, - networkDeviceCapabilities NetworkDeviceCapabilitiesFlags, - networkDeviceFQDD FQDDString -} - -networkDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF NetworkDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0090 This object defines the Network Device Table." - ::= { deviceGroup 90 } - -networkDeviceTableEntry OBJECT-TYPE - SYNTAX NetworkDeviceTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1100.0090.0001 This object defines the Network Device Table Entry." - INDEX { networkDeviceChassisIndex, - networkDeviceIndex } - ::= { networkDeviceTable 1 } - -networkDeviceChassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0001 This attribute defines the index (one based) of the - system chassis that contains the network device." - ::= { networkDeviceTableEntry 1 } - -networkDeviceIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0002 This attribute defines the index (one based) of the - network device." - ::= { networkDeviceTableEntry 2 } - -networkDeviceStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0003 This attribute defines the status of the network device." - ::= { networkDeviceTableEntry 3 } - -networkDeviceConnectionStatus OBJECT-TYPE - SYNTAX NetworkDeviceConnectionStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0004 This attribute defines the connection status of the - network device." - ::= { networkDeviceTableEntry 4 } - -networkDeviceProductName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0006 This attribute defines the product name of the - network device." - ::= { networkDeviceTableEntry 6 } - -networkDeviceVendorName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0007 This attribute defines the name of the vendor of the - network device." - ::= { networkDeviceTableEntry 7 } - -networkDeviceCurrentMACAddress OBJECT-TYPE - SYNTAX MACAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0015 This attribute defines the current MAC address of the - network device." - ::= { networkDeviceTableEntry 15 } - -networkDevicePermanentMACAddress OBJECT-TYPE - SYNTAX MACAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0016 This attribute defines the permanent MAC address of the - network device." - ::= { networkDeviceTableEntry 16 } - -networkDevicePCIBusNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0017 This attribute defines the PCI bus number of the - network device." - ::= { networkDeviceTableEntry 17 } - -networkDevicePCIDeviceNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0018 This attribute defines the PCI device number of the - network device." - ::= { networkDeviceTableEntry 18 } - -networkDevicePCIFunctionNumber OBJECT-TYPE - SYNTAX Unsigned8BitRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0019 This attribute defines the PCI function number of the - network device." - ::= { networkDeviceTableEntry 19 } - -networkDeviceTOECapabilityFlags OBJECT-TYPE - SYNTAX NetworkDeviceTOECapabilityFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) - capability flags of the network device." - ::= { networkDeviceTableEntry 23 } - -networkDeviceiSCSICapabilityFlags OBJECT-TYPE - SYNTAX NetworkDeviceiSCSICapabilityFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0027 This attribute defines the Internet Small Computer - System Interface (iSCSI) capability flags of the network device." - ::= { networkDeviceTableEntry 27 } - -networkDeviceiSCSIEnabled OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the - network device." - ::= { networkDeviceTableEntry 28 } - -networkDeviceCapabilities OBJECT-TYPE - SYNTAX NetworkDeviceCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0029 This attribute defines the capabilities of the network device. - If this value is notSupported(0), the networkDeviceTOECapabilityFlags, - networkDeviceiSCSICapabilityFlags and networkDeviceiSCSIEnabled attributes should - be used to determine the network device capabilities. If the supported(1) bit - is on, this attribute should be used to determine the network device capabilities, - and the attributes mentioned above should not be used. NOTE: For a network device - on Converged Network Adapter (CNA), this attribute provides capability information - for the CNA and not for the network device. For more information read vendor - documentation." - ::= { networkDeviceTableEntry 29 } - -networkDeviceFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1100.0090.0001.0030 Fully qualified device descriptor (FQDD) of the - network device." - ::= { networkDeviceTableEntry 30 } - - -------------------------------------------------------------------------------- --- Slot Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200 -------------------------------------------------------------------------------- - -------------------------------------------------------------------------------- --- System Slot Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200.10.1... -------------------------------------------------------------------------------- - -SystemSlotStateCapabilitiesFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Slot State Capabilities Flags." - SYNTAX INTEGER { - systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown - systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug - systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on - systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set - systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent - systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected - systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state - canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities - systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply - systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply - systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected - systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 - systemSlotCanSupportCardBus(2048), -- slot can support CardBus - systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video - systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume - systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal - canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities - canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities -} - -SystemSlotStateSettingsFlags ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Slot State Settings Flags." - SYNTAX INTEGER { - systemSlotHotPlugIsUnknown(1), -- state settings are unknown - systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug - systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON - systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON - systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent - systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) - systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on - systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state - systemSlotProvides5Volts(128), -- slot provides 5 volt supply - systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply - systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) - systemSlotSupportsCard16(1024), -- slot supports PC Card-16 - systemSlotSupportsCardBus(2048), -- slot supports CardBus - systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video - systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume - systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal - supportsPMEand3P3Vand5VandHotPluggable(16770), - supportsPMEand3P3Vand5VhasAdapterOn(16804), - supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), - supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) -} - -SystemSlotTypeEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Slot Type Enum." - SYNTAX INTEGER { - systemSlotIsOther(1), -- type is Other - systemSlotIsUnknown(2), -- type is Unknown - systemSlotIsISA(3), -- type is ISA - systemSlotIsMCA(4), -- type is MCA - systemSlotIsEISA(5), -- type is EISA - systemSlotIsPCI(6), -- type is PCI - systemSlotIsPCMCIA(7), -- type is PCMCIA - systemSlotIsVLVESA(8), -- type is VL-VESA - systemSlotIsProprietary(9), -- type is Proprietary - systemSlotIsProcessorCard(10), -- type is Processor Card Slot - systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot - systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot - systemSlotIsNuBUS(13), -- type is NuBus - systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable - systemSlotIsAGP(15), -- type is AGP - systemSlotIsAGP2X(16), -- type is AGP 2X - systemSlotIsAGP4X(17), -- type is AGP 4X - systemSlotIsPC98C20(18), -- type is PC-98/C20 - systemSlotIsPC98C24(19), -- type is PC-98/C24 - systemSlotIsPC98E(20), -- type is PC-98/E - systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus - systemSlotIsPC98Card(22), -- type is PC-98/Card - systemSlotIsPCIX(23), -- type is PCI-X - systemSlotIsPCIExpress(24), -- type is PCI Express - systemSlotIsAGP8X(25), -- type is AGP 8X - systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 - systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 - systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 - systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 - systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 - systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 - systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 - systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 - systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 - systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 - systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 -} - -SystemSlotUsageEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Slot Usage Enum." - SYNTAX INTEGER { - systemSlotUsageIsOther(1), -- usage is other than following values - systemSlotUsageIsUnknown(2), -- usage is unknown - systemSlotUsageIsAvailable(3), -- usage is available - systemSlotUsageIsInUse(4) -- usage is in use -} - -SystemSlotCategoryEnum ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "System Slot Category Enum." - SYNTAX INTEGER { - systemSlotCategoryIsOther(1), -- category is other than following values - systemSlotCategoryIsUnknown(2), -- category is unknown - systemSlotCategoryIsBusConnector(3), -- category is Bus Connector - systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA - systemSlotCategoryIsMotherboard(5) -- category is Motherboard -} - -SystemSlotTableEntry ::= SEQUENCE { - systemSlotchassisIndex ObjectRange, - systemSlotIndex ObjectRange, - systemSlotStateCapabilitiesUnique SystemSlotStateCapabilitiesFlags, - systemSlotStateSettingsUnique SystemSlotStateSettingsFlags, - systemSlotStatus ObjectStatusEnum, - systemSlotCurrentUsage SystemSlotUsageEnum, - systemSlotType SystemSlotTypeEnum, - systemSlotSlotExternalSlotName String64, - systemSlotCategory SystemSlotCategoryEnum -} - -systemSlotTable OBJECT-TYPE - SYNTAX SEQUENCE OF SystemSlotTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1200.0010 This object defines the System Slot Table." - ::= { slotGroup 10 } - -systemSlotTableEntry OBJECT-TYPE - SYNTAX SystemSlotTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "1200.0010.0001 This object defines the System Slot Table Entry." - INDEX { systemSlotchassisIndex, - systemSlotIndex } - ::= { systemSlotTable 1 } - -systemSlotchassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0001 This attribute defines the index (one based) of the - associated system chassis." - ::= { systemSlotTableEntry 1 } - -systemSlotIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0002 This attribute defines the index (one based) of the - system slot." - ::= { systemSlotTableEntry 2 } - -systemSlotStateCapabilitiesUnique OBJECT-TYPE - SYNTAX SystemSlotStateCapabilitiesFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0003 This attribute defines the state capabilities of the - system slot." - ::= { systemSlotTableEntry 3 } - -systemSlotStateSettingsUnique OBJECT-TYPE - SYNTAX SystemSlotStateSettingsFlags - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0004 This attribute defines the state settings of the - system slot." - ::= { systemSlotTableEntry 4 } - -systemSlotStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0005 This attribute defines the status of the system slot." - ::= { systemSlotTableEntry 5 } - -systemSlotCurrentUsage OBJECT-TYPE - SYNTAX SystemSlotUsageEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0006 This attribute defines the current usage of the - system slot." - ::= { systemSlotTableEntry 6 } - -systemSlotType OBJECT-TYPE - SYNTAX SystemSlotTypeEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0007 This attribute defines the type of the system slot." - ::= { systemSlotTableEntry 7 } - -systemSlotSlotExternalSlotName OBJECT-TYPE - SYNTAX String64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0008 This attribute defines the name of the external - connector name of the system slot." - ::= { systemSlotTableEntry 8 } - -systemSlotCategory OBJECT-TYPE - SYNTAX SystemSlotCategoryEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "1200.0010.0001.0011 This attribute defines the category of the system slot." - ::= { systemSlotTableEntry 11 } - - -------------------------------------------------------------------------------- --- Field Replaceable Unit (FRU) Group --- --- OID: 1.3.6.1.4.1.674.10892.5.4.2000 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Field Replaceable Unit (FRU) Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.4.2000.10.1... -------------------------------------------------------------------------------- - -FruTableEntry ::= SEQUENCE { - fruChassisIndex ObjectRange, - fruIndex ObjectRange, - fruInformationStatus ObjectStatusEnum, - fruManufacturerName OCTET STRING (SIZE (0..64)), - fruSerialNumberName OCTET STRING (SIZE (0..64)), - fruPartNumberName OCTET STRING (SIZE (0..64)), - fruRevisionName OCTET STRING (SIZE (0..64)), - fruFQDD FQDDString -} - -fruTable OBJECT-TYPE - SYNTAX SEQUENCE OF FruTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "2000.0010 This object defines the Field Replaceable Unit table." - ::= { fruGroup 10 } - -fruTableEntry OBJECT-TYPE - SYNTAX FruTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "2000.0010.0001 This object defines the Field Replaceable Unit table entry." - INDEX { fruChassisIndex, - fruIndex } - ::= { fruTable 1 } - -fruChassisIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0001 This attribute defines the index (one based) of the - system chassis containing the field replaceable unit." - ::= { fruTableEntry 1 } - -fruIndex OBJECT-TYPE - SYNTAX ObjectRange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0002 This attribute defines the index (one based) of the - field replaceable unit." - ::= { fruTableEntry 2 } - -fruInformationStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0003 This attribute defines the status of the - field replaceable unit information." - ::= { fruTableEntry 3 } - -fruManufacturerName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0006 This attribute defines the manufacturer of the - field replaceable unit." - ::= { fruTableEntry 6 } - -fruSerialNumberName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0007 This attribute defines the serial number of the - field replaceable unit." - ::= { fruTableEntry 7 } - -fruPartNumberName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0008 This attribute defines the part number of the - field replaceable unit." - ::= { fruTableEntry 8 } - -fruRevisionName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0009 This attribute defines the revision of the - field replaceable unit." - ::= { fruTableEntry 9 } - -fruFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "2000.0010.0001.0012 Fully qualified device descriptor (FQDD) of the - field replaceable unit." - ::= { fruTableEntry 12 } - - -------------------------------------------------------------------------------- --- Storage Details Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5 -------------------------------------------------------------------------------- - - -------------------------------------------------------------------------------- --- Battery Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.. -------------------------------------------------------------------------------- - -BatteryTableEntry ::=SEQUENCE { - batteryNumber INTEGER, - batteryState INTEGER, - batteryComponentStatus ObjectStatusEnum, - batteryPredictedCapacity INTEGER, - batteryFQDD DisplayString, - batteryDisplayName DisplayString -} - -batteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF BatteryTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed batteries. The number of - entries is related to number of Batteries - discovered in the system. The maximum number of entries - is implementation dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 15 } - -batteryTableEntry OBJECT-TYPE - SYNTAX BatteryTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the battery table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table. - " - INDEX { batteryNumber } - ::= { batteryTable 1 } - -batteryNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this battery entry. - " - ::= { batteryTableEntry 1 } - -batteryState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - failed(3), - degraded(4), - missing(5), - charging(6), - belowThreshold(7) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current state of battery. - Possible values: - 1: The current state could not be determined. - 2: The battery is operating normally. - 3: The battery has failed and needs to be replaced. - 4: The battery temperature is high or charge level is depleting. - 5: The battery is missing or not detected. - 6: The battery is undergoing the re-charge phase. - 7: The battery voltage or charge level is below the threshold. - " - ::= { batteryTableEntry 4 } - -batteryComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the battery itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { batteryTableEntry 6 } - -batteryPredictedCapacity OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - failed(2), - ready(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the charge capacity of the battery. - Possible values: - 1: The current state could not be determined. - 2: The battery cannot be charged and needs - to be replaced. - 3: The battery can be charged to full capacity. - " - ::= { batteryTableEntry 10 } - -batteryFQDD OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The battery's Fully Qualified Device Descriptor (FQDD) as - represented in Storage Management. - " - ::= { batteryTableEntry 20 } - -batteryDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The battery's friendly FQDD as represented in Storage Management." - ::= { batteryTableEntry 21 } - - -------------------------------------------------------------------------------- --- Controller Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.. -------------------------------------------------------------------------------- - -ControllerTableEntry ::=SEQUENCE { - controllerNumber INTEGER, - controllerName DisplayString, - controllerRebuildRate INTEGER, - controllerFWVersion DisplayString, - controllerCacheSizeInMB INTEGER, - controllerRollUpStatus ObjectStatusEnum, - controllerComponentStatus ObjectStatusEnum, - controllerDriverVersion DisplayString, - controllerPCISlot DisplayString, - controllerReconstructRate INTEGER, - controllerPatrolReadRate INTEGER, - controllerBGIRate INTEGER, - controllerCheckConsistencyRate INTEGER, - controllerPatrolReadMode INTEGER, - controllerPatrolReadState INTEGER, - controllerPersistentHotSpare BooleanType, - controllerSpinDownUnconfiguredDrives BooleanType, - controllerSpinDownHotSpareDrives BooleanType, - controllerSpinDownTimeInterval INTEGER, - controllerPreservedCache BooleanType, - controllerCheckConsistencyMode INTEGER, - controllerCopyBackMode INTEGER, - controllerSecurityStatus INTEGER, - controllerEncryptionKeyPresent BooleanType, - controllerEncryptionCapability INTEGER, - controllerLoadBalanceSetting INTEGER, - controllerMaxCapSpeed INTEGER, - controllerSASAddress DisplayString, - controllerFQDD FQDDString, - controllerDisplayName DisplayString -} - -controllerTable OBJECT-TYPE - SYNTAX SEQUENCE OF ControllerTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed RAID controllers. The number of entries - is related to number of RAID controllers discovered in the - system. The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 1 } - -controllerTableEntry OBJECT-TYPE - SYNTAX ControllerTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the table of RAID controllers. A row in this table - cannot be created or deleted by SNMP operations on columns of - the table." - INDEX { controllerNumber } - ::= { controllerTable 1 } - -controllerNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this controller entry." - ::= { controllerTableEntry 1 } - - -controllerName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The controller's name as represented in Storage Management. - " - ::= { controllerTableEntry 2 } - -controllerRebuildRate OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The rebuild rate is the percentage of the controller’s - resources dedicated to rebuilding a failed disk when a rebuild - is necessary. - " - ::= { controllerTableEntry 7 } - -controllerFWVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The controller's current firmware version. - " - ::= { controllerTableEntry 8 } - -controllerCacheSizeInMB OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The controller's current amount of cache memory in megabytes. - " - ::= { controllerTableEntry 9 } - -controllerRollUpStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Severity of the controller state. - This is the combined status of the controller and its components. - Possible values: - 1: Other. - 2: Unknown. - 3: OK - 4: Non-critical - 5: Critical. - 6: Non-recoverable. - " - ::= { controllerTableEntry 37 } - -controllerComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the controller itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { controllerTableEntry 38 } - -controllerDriverVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed driver version for this controller on the host. - " - ::= { controllerTableEntry 41 } - -controllerPCISlot OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The PCI slot on the server where the controller is seated. This - data is not reported for embedded or integrated controllers, - " - ::= { controllerTableEntry 42 } - -controllerReconstructRate OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The reconstruct rate is the percentage of the controller’s resources - dedicated to reconstructing a disk group after adding a physical disk - or changing the RAID level of a virtual disk residing on the disk - group. - " - ::= { controllerTableEntry 48 } - -controllerPatrolReadRate OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The patrol read rate is the percentage of the controller’s - resources dedicated to perform a patrol read on disks participating - in a virtual disk or hot spares. - " - ::= { controllerTableEntry 49 } - -controllerBGIRate OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The background initialization (BGI) rate is the percentage of the - controller’s resources dedicated to performing the background - initialization of a redundant virtual disk after it is created. - " - ::= { controllerTableEntry 50 } - -controllerCheckConsistencyRate OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The check consistency rate is the percentage of the - controller’s resources dedicated to performing a check consistency - on a redundant virtual disk. - " - ::= { controllerTableEntry 51 } - -controllerPatrolReadMode OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - disabled(3), - auto(4), - manual(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Identifies the patrol read mode setting for the controller. - Possible values: - 1: Not one of the following. - 2: Not Supported on this controller. - 3: Disabled. - 4: Automatic. - 5: Manual. - " - ::= { controllerTableEntry 52 } - -controllerPatrolReadState OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - stopped(2), - active(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This property displays the current state of the patrol read process. - Possible values: - 1: Not one of the following. - 1: Patrol read is not running. - 2: Patrol read is running. - " - ::= { controllerTableEntry 53 } - -controllerPersistentHotSpare OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether hot spare drives would be restored on insertion - into the same slot. - " - ::= { controllerTableEntry 59 } - -controllerSpinDownUnconfiguredDrives OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether un-configured drives would be put in power - save mode by the controller. - " - ::= { controllerTableEntry 60 } - -controllerSpinDownHotSpareDrives OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether hot spare drives would be put in power - save mode by the controller. - " - ::= { controllerTableEntry 61 } - -controllerSpinDownTimeInterval OBJECT-TYPE - SYNTAX INTEGER (30..1440) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The duration in minutes after which, the unconfigured or hot - spare drives will be spun down to power save mode. - " - ::= { controllerTableEntry 62 } - -controllerPreservedCache OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether preserved cache or pinned cache is - present on the controller. - " - ::= { controllerTableEntry 69 } - -controllerCheckConsistencyMode OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - unsupported(2), - normal(3), - stopOnError(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current check consistency mode setting - for the controller. - Possible values: - 1: Not one of the following. - 2: Not supported on this controller. - 3: Normal check consistency operation. - 4: Check consistency operation will stop on encountering - an error. - " - ::= { controllerTableEntry 70 } - -controllerCopyBackMode OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - unsupported(2), - on(3), - onWithSmart(4), - off(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current copy back mode setting - for the controller. - Possible values: - 1: Not one of the following. - 2: Not supported on this controller. - 3: Disks assigned as spares could revert back to spare status. - 4: Data from physical disk participating in a - virtual disk could be automatically copied to the assigned - hot spare in case former has a predictive failure event. - 5: Copyback mode is disabled. - " - ::= { controllerTableEntry 71 } - -controllerSecurityStatus OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - none(2), - lkm(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The controller's current security/encryption status.. - Possible values: - 1: The current status could not be determined. - 2: Controller is not operating in an encryption mode. - 3: Controller is operating in the Local Key Management - (LKM) encryption mode. - " - ::= { controllerTableEntry 72 } - -controllerEncryptionKeyPresent OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether encryption key is assigned for the controller. - " - ::= { controllerTableEntry 73 } - -controllerEncryptionCapability OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - none(2), - lkm(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of encryption supported by the controller. - Possible values: - 1: Not one of the following. - 2: No encryption supported, - 3: Local Key Management, - " - ::= { controllerTableEntry 74 } - -controllerLoadBalanceSetting OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - unsupported(2), - auto(3), - none(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ability of the controller to automatically use both - controller ports (or connectors) connected to the same enclosure in - order to route I/O requests. - Possible values: - 1: Not one of the following. - 2: Not supported. - 3: Automatic load balancing is active. - 4: Load balancing is inactive. - " - ::= { controllerTableEntry 75 } - -controllerMaxCapSpeed OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - oneDotFiveGbps(2), - threeGbps(3), - sixGbps(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum speed of the controller.in - Gigbits per second (Gbps). - Possible values: - 1: The speed could not be determined. - 2. 1.5Gbs - 3: 3.0Gbs - 4: 6.0Gbs - " - ::= { controllerTableEntry 76 } - -controllerSASAddress OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The SAS address of the controller. - " - ::= { controllerTableEntry 77 } - -controllerFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The controller's Fully Qualified Device Descriptor (FQDD) as - represented in Storage Management. - " - ::= { controllerTableEntry 78 } - -controllerDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The controller's friendly FQDD as represented in Storage - Management." - ::= { controllerTableEntry 79 } - - -------------------------------------------------------------------------------- --- Physical Disk Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.. -------------------------------------------------------------------------------- - -PhysicalDiskTableEntry ::=SEQUENCE { - physicalDiskNumber INTEGER, - physicalDiskName DisplayString, - physicalDiskManufacturer DisplayString, - physicalDiskState INTEGER, - physicalDiskProductID DisplayString, - physicalDiskSerialNo DisplayString, - physicalDiskRevision DisplayString, - physicalDiskCapacityInMB INTEGER, - physicalDiskUsedSpaceInMB INTEGER, - physicalDiskFreeSpaceInMB INTEGER, - physicalDiskBusType INTEGER, - physicalDiskSpareState INTEGER, - physicalDiskComponentStatus ObjectStatusEnum, - physicalDiskPartNumber DisplayString, - physicalDiskSASAddress DisplayString, - physicalDiskNegotiatedSpeed INTEGER, - physicalDiskCapableSpeed INTEGER, - physicalDiskSmartAlertIndication BooleanType, - physicalDiskManufactureDay DisplayString, - physicalDiskManufactureWeek DisplayString, - physicalDiskManufactureYear DisplayString, - physicalDiskMediaType INTEGER, - physicalDiskPowerState INTEGER, - physicalDiskOperationalState INTEGER, - physicalDiskProgress INTEGER, - physicalDiskSecurityStatus INTEGER, - physicalDiskFormFactor INTEGER, - physicalDiskFQDD FQDDString, - physicalDiskDisplayName DisplayString - } - -physicalDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhysicalDiskTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed physical disks. The number of entries is - related to number of physical Disks discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to - all entries. - " - ::= { physicalDevices 4 } - -physicalDiskTableEntry OBJECT-TYPE - SYNTAX PhysicalDiskTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the physical Disk table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table. - " - INDEX { physicalDiskNumber } - ::= { physicalDiskTable 1 } - -physicalDiskNumber OBJECT-TYPE - SYNTAX INTEGER (1..1000000000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this physical disk entry. - " - ::= { physicalDiskTableEntry 1 } - -physicalDiskName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical disk's name as represented in Storage Management. - " - ::= { physicalDiskTableEntry 2 } - -physicalDiskManufacturer OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the physical disk's manufacturer. - " - ::= { physicalDiskTableEntry 3 } - -physicalDiskState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - online(3), - foreign(4), - offline(5), - blocked(6), - failed(7), - non-raid(8), - removed(9) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this physical disk. - Possible states: - 1: The current state could not be determined. - 2: The physical disk is available for use, but no RAID configuration - has been assigned. - 3: A RAID configuration has been assigned to the physical disk. - 4: The physical disk has been moved from another - controller and contains all or some portion of a virtual disk. - 5: The physical disk is not available to the RAID - controller. - 6: The physical disk is currently blocked by - controller. - 7: The physical disk is not operational. - 8: The physical disk is not a RAID capable disk - 9: The physical disk has been removed. - " - ::= { physicalDiskTableEntry 4 } - -physicalDiskProductID OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The model number of the physical disk. - " - ::= { physicalDiskTableEntry 6 } - -physicalDiskSerialNo OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical disk's unique identification number - from the manufacturer. - " - ::= { physicalDiskTableEntry 7 } - -physicalDiskRevision OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The firmware version of the physical disk. - " - ::= { physicalDiskTableEntry 8 } - -physicalDiskCapacityInMB OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the physical disk in megabytes. - " - ::= { physicalDiskTableEntry 11 } - -physicalDiskUsedSpaceInMB OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of used space in megabytes on the physical - disk. - " - ::= { physicalDiskTableEntry 17 } - -physicalDiskFreeSpaceInMB OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of free space in megabytes on the physical - disk. - " - ::= { physicalDiskTableEntry 19 } - -physicalDiskBusType OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - scsi(2), - sas(3), - sata(4), - fibre(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The bus type of the physical disk. - Possible values: - 1: The bus type could not be determined. - 2: Small Computer System Interface (SCSI). - 3: Serial Attached SCSI (SAS). - 4: Serial Advanced Technology Attachment (SATA). - 5: Fibre channel - " - ::= { physicalDiskTableEntry 21 } - -physicalDiskSpareState OBJECT-TYPE - SYNTAX INTEGER - { - notASpare(1), - dedicatedHotSpare(2), - globalHotSpare(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the array disk as a spare. - Possible values: - 1: Physical disk is not a spare. - 2: Physical disk is a dedicated hot spare. - 3: Physical disk is a global hot spare. - " - ::= { physicalDiskTableEntry 22 } - -physicalDiskComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the physical disk itself without the - propagation of any contained component status. - Possible values: - 1: Other - 2: Unknown - 3: OK - 4: Non-critical - 5: Critical - 6: Non-recoverable" - ::= { physicalDiskTableEntry 24 } - -physicalDiskPartNumber OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The part number of the disk. - " - ::= { physicalDiskTableEntry 27 } - -physicalDiskSASAddress OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The SAS address of the physical disk. - " - ::= { physicalDiskTableEntry 28 } - -physicalDiskNegotiatedSpeed OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - oneDotFiveGbps(2), - threeGbps(3), - sixGbps(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The data transfer speed that the disk negotiated while spinning up - in Gigbits per second (Gbps). - Possible values: - 1: The speed could not be determined. - 2. 1.5 Gbs - 3: 3.0 Gbs - 4: 6.0 Gbs - " - ::= { physicalDiskTableEntry 29 } - -physicalDiskCapableSpeed OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - oneDotFiveGbps(2), - threeGbps(3), - sixGbps(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum data transfer speed supported by the disk - in Gigbits per second (Gbps). - Possible values: - 1: The speed could not be determined. - 2. 1.5 Gbs - 3: 3.0 Gbs - 4: 6.0 Gbs - " - ::= { physicalDiskTableEntry 30 } - -physicalDiskSmartAlertIndication OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether the physical disk has received a predictive - failure alert. - " - ::= { physicalDiskTableEntry 31 } - -physicalDiskManufactureDay OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The day of the week (1=Sunday thru 7=Saturday) - on which the physical disk was manufactured. - " - ::= { physicalDiskTableEntry 32 } - -physicalDiskManufactureWeek OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The week (1 thru 53) in which the physical disk - was manufactured. - " - ::= { physicalDiskTableEntry 33 } - -physicalDiskManufactureYear OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The four digit year in which the physical disk was manufactured. - " - ::= { physicalDiskTableEntry 34 } - -physicalDiskMediaType OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - hdd(2), - ssd(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The media type of the physical disk. - Possible Values: - 1: The media type could not be determined. - 2: Hard Disk Drive (HDD). - 3: Solid State Drive (SSD). - " - ::= { physicalDiskTableEntry 35 } - -physicalDiskPowerState OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - spunUp(2), - spunDown(3), - transition(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The power state of the physical disk. - Possible Values: - 1: Not one of the following. - 2: The physical disk is in the spun up state. - 3: The physical disk is in the spun down state. - 4: The physical disk is changing from spun down state - to spun up state or vice versa. - " - ::= { physicalDiskTableEntry 42 } - -physicalDiskOperationalState OBJECT-TYPE - SYNTAX INTEGER - { - notApplicable(1), - rebuild(2), - clear(3), - copyback(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the physical disk when there are progressive - operations ongoing. - Possible values: - 1: There is no active operation running. - 2: Data from a redundant virtual disk is - currently being rebuilt onto the physical disk. - 3: Data on the disk is being erased. - 4: Data is being copied from a hot spare disk to - the physical disk or vice versa. - " - ::= { physicalDiskTableEntry 50 } - -physicalDiskProgress OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The progress percentage of the operation that is being - performed on the physical disk. This is applicable - only if there is a progressive operations ongoing - " - ::= { physicalDiskTableEntry 51 } - -physicalDiskSecurityStatus OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - notSupported(2), - secured(3), - locked(4), - foreign(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The security/encryption status of the physical disk. - Possible Values: - 1: Not one of the following. - 2: The physical disk does not support encryption - 3: The physical disk is encrypted. - 4: The physical disk is locked by a key. - 5: The physical disk is locked by a foreign key. - " - ::= { physicalDiskTableEntry 52 } - -physicalDiskFormFactor OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - oneDotEight(2), - twoDotFive(3), - threeDotFive(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The form factor of the physical disk. - Possible values: - 1: The form factor could not be determined. - 2: 1.8 inch. - 3: 2.5 inch. - 4: 3.5 inch - " - ::= { physicalDiskTableEntry 53 } - -physicalDiskFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical disk's Fully Qualified Device Descriptor (FQDD) - as represented in Storage Management. - " - ::= { physicalDiskTableEntry 54 } - -physicalDiskDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical disk's friendly FQDD as represented in Storage - Management. - " - ::= { physicalDiskTableEntry 55 } - - -------------------------------------------------------------------------------- --- Virtual Disk Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.. -------------------------------------------------------------------------------- - -VirtualDiskTableEntry ::=SEQUENCE { - virtualDiskNumber INTEGER, - virtualDiskName DisplayString, - virtualDiskState INTEGER, - virtualDiskSizeInMB INTEGER, - virtualDiskWritePolicy INTEGER, - virtualDiskReadPolicy INTEGER, - virtualDiskLayout INTEGER, - virtualDiskStripeSize INTEGER, - virtualDiskComponentStatus ObjectStatusEnum, - virtualDiskBadBlocksDetected BooleanType, - virtualDiskSecured BooleanType, - virtualDiskIsCacheCade BooleanType, - virtualDiskDiskCachePolicy INTEGER, - virtualDiskOperationalState INTEGER, - virtualDiskProgress INTEGER, - virtualDiskAvailableProtocols DisplayString, - virtualDiskMediaType DisplayString, - virtualDiskRemainingRedundancy INTEGER, - virtualDiskFQDD FQDDString, - virtualDiskDisplayName DisplayString -} - -virtualDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF VirtualDiskTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed virtual disks. The number of entries is related - to number of virtual disks discovered in the system. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { logicalDevices 1 } - -virtualDiskTableEntry OBJECT-TYPE - SYNTAX VirtualDiskTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the virtual disk table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table. - " - INDEX { virtualDiskNumber } - ::= { virtualDiskTable 1 } - -virtualDiskNumber OBJECT-TYPE - SYNTAX INTEGER (1..100000000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this virtual disk entry. - " - ::= { virtualDiskTableEntry 1 } - -virtualDiskName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The virtual disk's label as entered by the user. - " - ::= { virtualDiskTableEntry 2 } - -virtualDiskState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - online(2), - failed(3), - degraded(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this virtual disk - (which includes any member physical disks.) - Possible states: - 1: The current state could not be determined. - 2: The virtual disk is operating normally or optimally. - 3: The virtual disk has encountered a failure. The data on disk - is lost or is about to be lost. - 4: The virtual disk encounterd a failure with one or all of the - constituent redundant physical disks. The data on the virtual - disk might no longer be fault tolerant. - " - ::= { virtualDiskTableEntry 4 } - -virtualDiskSizeInMB OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the virtual disk in megabytes. - " - ::= { virtualDiskTableEntry 6 } - -virtualDiskWritePolicy OBJECT-TYPE - SYNTAX INTEGER - { - writeThrough(1), - writeBack(2), - writeBackForce(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The write policy used by the controller for write operations on - this virtual disk. - Possible values: - 1: Write Through. - 2: Write Back. - 3: Force Write Back. - " - ::= { virtualDiskTableEntry 10 } - -virtualDiskReadPolicy OBJECT-TYPE - SYNTAX INTEGER - { - noReadAhead(1), - readAhead(2), - adaptiveReadAhead(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The read policy used by the controller for read operations on - this virtual disk. - Possible values: - 1: No Read Ahead. - 2: Read Ahead. - 3: Adaptive Read Ahead. - " - ::= { virtualDiskTableEntry 11 } - -virtualDiskLayout OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - r0(2), - r1(3), - r5(4), - r6(5), - r10(6), - r50(7), - r60(8), - concatRaid-1(9), - concatRaid-5(10) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The virtual disk's RAID type. - Possible values: - 1: Not one of the following - 2: RAID-0 - 3: RAID-1 - 4: RAID-5 - 5: RAID-6 - 6: RAID-10 - 7: RAID-50 - 8: RAID-60 - 9: Concatenated RAID 1 - 10: Concatenated RAID 5 - " - ::= { virtualDiskTableEntry 13 } - -virtualDiskStripeSize OBJECT-TYPE - SYNTAX INTEGER - { - other(1), - default(2), - fiveHundredAndTwelvebytes(3), - oneKilobytes(4), - twoKilobytes(5), - fourKilobytes(6), - eightKilobytes(7), - sixteenKilobytes(8), - thirtyTwoKilobytes(9), - sixtyFourKilobytes(10), - oneTwentyEightKilobytes(11), - twoFiftySixKilobytes(12), - fiveOneTwoKilobytes(13), - oneMegabye(14), - twoMegabytes(15), - fourMegabytes(16), - eightMegabytes(17), - sixteenMegabytes(18) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The stripe size of this virtual disk. - Possible values: - 1: Not one of the following - 2: Default. - 3: 512 bytes - 4: 1 kB, - 5: 2 kB, - 6: 4 kB, - 7: 8 kB, - 8: 16 kB, - 9: 32 kB, - 10: 64 kB, - 11: 128 kB, - 12: 256 kB, - 13: 512 kB, - 14: 1 MB, - 15: 2 MB, - 16: 4 MB, - 17: 8 MB, - 18: 16 MB - " - ::= { virtualDiskTableEntry 14 } - -virtualDiskComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the virtual disk itself without the - propagation of any contained component status. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical . - 5: Critical. - 6: Non-recoverable. - " - ::= { virtualDiskTableEntry 20 } - -virtualDiskBadBlocksDetected OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether the virtual disk has bad blocks. - " - ::= { virtualDiskTableEntry 23 } - -virtualDiskSecured OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether the virtual disk is secured or not. - " - ::= { virtualDiskTableEntry 24 } - -virtualDiskIsCacheCade OBJECT-TYPE - SYNTAX BooleanType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether the virtual disk is being used as a secondary - cache by the controller. - " - ::= { virtualDiskTableEntry 25 } - -virtualDiskDiskCachePolicy OBJECT-TYPE - SYNTAX INTEGER - { - enabled(1), - disabled(2), - defullt(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The cache policy of the physical disks that are - part of this virtual disk - Possible values: - 1: Enabled. - 2: Disabled. - 3: Default. - " - ::= { virtualDiskTableEntry 26 } - -virtualDiskOperationalState OBJECT-TYPE - SYNTAX INTEGER - { - notApplicable(1), - reconstructing(2), - resynching(3), - initializing(4), - backgroundInit(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the virtual disk when there are progressive - operations ongoing. - Possible values: - 1: There is no active operation running. - 2: The virtual disk configuration has changed. - The physical disks included in the virtual disk are being - modified to support the new configuration. - 3: A Consistency Check (CC) is being performed - on the virtual disk. - 4: The virtual disk is being initialized. - 5: BackGround Initialization (BGI) is being performed - on the virtual disk. - " - ::= { virtualDiskTableEntry 30 } - -virtualDiskProgress OBJECT-TYPE - SYNTAX INTEGER (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The progress percentage of the operation that is being - performed on the virtual disk. This is applicable - only if there is a progressive operations ongoing - " - ::= { virtualDiskTableEntry 31 } - -virtualDiskAvailableProtocols OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "List of protocols support by physical disks part of this virtual - disk. For e.g. SAS for Serial Attached SCSI or SATA for - Serial Advanced Technology Attachment. - " - ::= { virtualDiskTableEntry 32 } - -virtualDiskMediaType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "List of media types of the physical disks part of this virtual - disk. For e.g. HDD for Hard Disk Drive or SSD for Solid State Drive. - " - ::= { virtualDiskTableEntry 33 } - -virtualDiskRemainingRedundancy OBJECT-TYPE - SYNTAX INTEGER (0..2) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of physical disks which can be lost before the - virtual disk loses its redundancy. - " - ::= { virtualDiskTableEntry 34 } - -virtualDiskFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The virtual disk's Fully Qualified Device Descriptor (FQDD) as - represented in Storage Management. - " - ::= { virtualDiskTableEntry 35 } - -virtualDiskDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The virtual disk's friendly FQDD as represented in Storage - Management. - " - ::= { virtualDiskTableEntry 36 } - - -------------------------------------------------------------------------------- --- Enclosure Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.. -------------------------------------------------------------------------------- - -EnclosureTableEntry ::=SEQUENCE { - enclosureNumber INTEGER, - enclosureName DisplayString, - enclosureState INTEGER, - enclosureServiceTag DisplayString, - enclosureAssetTag DisplayString, - enclosureConnectedPort DisplayString, - enclosureRollUpStatus ObjectStatusEnum, - enclosureComponentStatus ObjectStatusEnum, - enclosureFirmwareVersion DisplayString, - enclosureSASAddress DisplayString, - enclosureDriveCount INTEGER, - enclosureTotalSlots INTEGER, - enclosureFanCount DisplayString, - enclosurePSUCount DisplayString, - enclosureEMMCount DisplayString, - enclosureTempProbeCount DisplayString, - enclosureRedundantPath DisplayString, - enclosurePosition DisplayString, - enclosureBackplaneBayID DisplayString, - enclosureFQDD FQDDString, - enclosureDisplayName DisplayString -} - -enclosureTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed enclosures/backplanes. The number of entries is - related to number of internal backplane(s) discovered in the system - and external storage enclosure(s) attached to the system.. - The maximum number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 3 } - -enclosureTableEntry OBJECT-TYPE - SYNTAX EnclosureTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the enclosure table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table. - " - INDEX { enclosureNumber } - ::= { enclosureTable 1 } - -enclosureNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this enclossre/backplane. - " - ::= { enclosureTableEntry 1 } - -enclosureName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enclosure/backplane's name as represented in Storage Management. - " - ::= { enclosureTableEntry 2 } - -enclosureState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - failed(3), - missing(4), - degraded(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this enclosure/backplane. - Possible states: - 1: The current state could not be determined. - 2: The enclosure is operating normally. - 3: The enclosure has encountered a hardware problem or is not - responding. - 4: The enclosure is no longer connected to the controller or - there exists a problem communicating to the enclosure. - 5: The enclosure is unstable. - " - ::= { enclosureTableEntry 4 } - -enclosureServiceTag OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Enclosure identification used when consulting customer support. - " - ::= { enclosureTableEntry 8 } - -enclosureAssetTag OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The asset tag information for the enclosure." - ::= { enclosureTableEntry 9 } - -enclosureConnectedPort OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port on the controller to which the - storage enclosure is connected. - " - ::= { enclosureTableEntry 19 } - -enclosureRollUpStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Severity of the enclosure/backplane state. - This is the combined status of the enclosure and its sub-components. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical. - 5: Critical. - 6: Non-recoverable. - " - ::= { enclosureTableEntry 23 } - -enclosureComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the enclosure/backplane.itself without the - propagation of any contained component status. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical . - 5: Critical. - 6: Non-recoverable. - " - ::= { enclosureTableEntry 24 } - -enclosureFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The firmware information for the enclosure/backplane. - " - ::= { enclosureTableEntry 26 } - -enclosureSASAddress OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The SAS address of the enclosure/backplane. - " - ::= { enclosureTableEntry 30 } - -enclosureDriveCount OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of disks present in the enclosure/backplane. - " - ::= { enclosureTableEntry 31 } - -enclosureTotalSlots OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total physical drive slots in a storage enclosure - or server backplane. - " - ::= { enclosureTableEntry 32 } - -enclosureFanCount OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of fans present in the storage enclosure. - " - ::= { enclosureTableEntry 40 } - -enclosurePSUCount OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Power Supply Units (PSU) present - in the storage enclosure. - " - ::= { enclosureTableEntry 41 } - -enclosureEMMCount OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of Enclosure Management Modules (EMM) - present in the storage enclosure. - " - ::= { enclosureTableEntry 42 } - -enclosureTempProbeCount OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of temperature sensing devices - present in the storage enclosure. - " - ::= { enclosureTableEntry 43 } - -enclosureRedundantPath OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether the controller has multiply paths to - reach the storage enclosure. - " - ::= { enclosureTableEntry 44 } - -enclosurePosition OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The possition of the storage enclosure within a daisy chain. - " - ::= { enclosureTableEntry 45 } - -enclosureBackplaneBayID OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique bay ID of the backplane. - " - ::= { enclosureTableEntry 46 } - -enclosureFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) - as represented in Storage Management. - " - ::= { enclosureTableEntry 47 } - -enclosureDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enclosure/backplane's friendly FQDD as represented in - Storage Management. - " - ::= { enclosureTableEntry 48 } - - -------------------------------------------------------------------------------- --- Enclosure Management Module Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.. -------------------------------------------------------------------------------- - -EnclosureManagementModuleTableEntry ::=SEQUENCE { - enclosureManagementModuleNumber INTEGER, - enclosureManagementModuleName DisplayString, - enclosureManagementModuleState INTEGER, - enclosureManagementModulePartNumber DisplayString, - enclosureManagementModuleFWVersion DisplayString, - enclosureManagementModuleComponentStatus ObjectStatusEnum, - enclosureManagementModuleFQDD FQDDString, - enclosureManagementModuleDisplayName DisplayString -} - -enclosureManagementModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureManagementModuleTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed Enclosure Management Modules (EMM) - in the external storage enclosure(s). The number of - entries is related to number of enclosure management modules - discovered in the enclosure(s). The maximum number of entries - is implementation dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 13 } - -enclosureManagementModuleTableEntry OBJECT-TYPE - SYNTAX EnclosureManagementModuleTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the enclosure management module table. A row in - this table cannot be created or deleted by SNMP operations - on columns of the table. - " - INDEX { enclosureManagementModuleNumber } - ::= { enclosureManagementModuleTable 1 } - -enclosureManagementModuleNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this enclosure management module. - " - ::= { enclosureManagementModuleTableEntry 1 } - -enclosureManagementModuleName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enclosure management module's name as - represented in Storage Management. - " - ::= { enclosureManagementModuleTableEntry 2 } - -enclosureManagementModuleState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - failed(3), - missing(4), - degraded(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this enclosure management module. - Possible states: - 1: The current state could not be determined. - 2: The enclosure management module is operating normally. - 3: The enclosure management module has encountered a - hardware problem or is not responding. - 4: The enclosure management module is no longer connected - to the enclosure or there exists a problem communicating to it. - 5: The enclosure management module is unstable. - " - ::= { enclosureManagementModuleTableEntry 4 } - -enclosureManagementModulePartNumber OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The part number of the enclosure management module. - " - ::= { enclosureManagementModuleTableEntry 6 } - -enclosureManagementModuleFWVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Firmware version of the enclosure management module. - " - ::= { enclosureManagementModuleTableEntry 8 } - -enclosureManagementModuleComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the enclosure management module.itself without the - propagation of any contained component status. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical . - 5: Critical. - 6: Non-recoverable. - " - ::= { enclosureManagementModuleTableEntry 11 } - -enclosureManagementModuleFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enclosure management module's Fully Qualified Device - Descriptor (FQDD) as represented in Storage Management. - " - ::= { enclosureManagementModuleTableEntry 15 } - -enclosureManagementModuleDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enclosure management module's friendly FQDD as represented in - Storage Management. - " - ::= { enclosureManagementModuleTableEntry 16 } - -------------------------------------------------------------------------------- --- Enclosure Fan Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.. -------------------------------------------------------------------------------- - -EnclosureFanTableEntry ::=SEQUENCE { - enclosureFanNumber INTEGER, - enclosureFanName DisplayString, - enclosureFanState INTEGER, - enclosureFanSpeed INTEGER, - enclosureFanComponentStatus ObjectStatusEnum, - enclosureFanFQDD FQDDString, - enclosureFanDisplayName DisplayString -} - -enclosureFanTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureFanTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed fans in the external storage enclosure(s). - The number of entries is related to number of fans discovered in - the enclosure(s). The maximum number of entries is implementation - dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 7 } - -enclosureFanTableEntry OBJECT-TYPE - SYNTAX EnclosureFanTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the fan table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table. - " - INDEX { enclosureFanNumber } - ::= { enclosureFanTable 1 } - -enclosureFanNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this fan. - " - ::= { enclosureFanTableEntry 1 } - -enclosureFanName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The fan's name as represented in Storage Management. - " - ::= { enclosureFanTableEntry 2 } - -enclosureFanState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - failed(3), - missing(4), - degraded(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this fan. - Possible states: - 1: The current state could not be determined. - 2: The fan is operating normally. - 3: The fan has encountered a hardware problem or is not - responding. - 4: The fan is no longer connected to the enclosure or - there exists a problem communicating to it. - 5: The fan is unstable. - " - ::= { enclosureFanTableEntry 4 } - -enclosureFanSpeed OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - stopped(2), - slow(3), - medium(4), - fast(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the current relative speed of the fan. - " - ::= { enclosureFanTableEntry 11 } - -enclosureFanComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the fan itself without the - propagation of any contained component status. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical . - 5: Critical. - 6: Non-recoverable. - " - ::= { enclosureFanTableEntry 15 } - -enclosureFanFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The fan's Fully Qualified Device Descriptor (FQDD) - as represented in Storage Management. - " - ::= { enclosureFanTableEntry 20 } - -enclosureFanDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The fan's friendly FQDD as represented in - Storage Management. - " - ::= { enclosureFanTableEntry 21 } - - -------------------------------------------------------------------------------- --- Enclosure Power Supply Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.. -------------------------------------------------------------------------------- - -EnclosurePowerSupplyTableEntry ::=SEQUENCE { - enclosurePowerSupplyNumber INTEGER, - enclosurePowerSupplyName DisplayString, - enclosurePowerSupplyState INTEGER, - enclosurePowerSupplyPartNumber DisplayString, - enclosurePowerSupplyComponentStatus ObjectStatusEnum, - enclosurePowerSupplyFQDD FQDDString, - enclosurePowerSupplyDisplayName DisplayString -} - -enclosurePowerSupplyTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosurePowerSupplyTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed Power Supply Units(PSU) in the external - storage enclosure(s). The number of entries is related to number - of power supply unit(s) discovered in the enclosure(s). The - maximum number of entries is implementation - dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 9 } - -enclosurePowerSupplyTableEntry OBJECT-TYPE - SYNTAX EnclosurePowerSupplyTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the power supply unit table. A row in this table cannot - be created or deleted by SNMP operations on columns of the table. - " - INDEX { enclosurePowerSupplyNumber } - ::= { enclosurePowerSupplyTable 1 } - -enclosurePowerSupplyNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this power supply unit. - " - ::= { enclosurePowerSupplyTableEntry 1 } - -enclosurePowerSupplyName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The power supply unit's name as represented in - Storage Management. - " - ::= { enclosurePowerSupplyTableEntry 2 } - -enclosurePowerSupplyState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - failed(3), - missing(4), - degraded(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this power supply unit. - Possible states: - 1: The current state could not be determined. - 2: The power supply unit is operating normally. - 3: The power supply unit has encountered a hardware problem - or is not responding. - 4: The power supply unit is no longer connected to the enclosure - or there exists a problem communicating to it. - 5: The power supply unit is unstable. - " - ::= { enclosurePowerSupplyTableEntry 4 } - -enclosurePowerSupplyPartNumber OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The part number of the power supply unit. - " - ::= { enclosurePowerSupplyTableEntry 7 } - -enclosurePowerSupplyComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the power supply unit itself without the - propagation of any contained component status. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical . - 5: Critical. - 6: Non-recoverable. - " - ::= { enclosurePowerSupplyTableEntry 9 } - -enclosurePowerSupplyFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The power supply unit's Fully Qualified Device Descriptor (FQDD) - as represented in Storage Management. - " - ::= { enclosurePowerSupplyTableEntry 15 } - -enclosurePowerSupplyDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The power supply unit's friendly FQDD as represented in - Storage Management. - " - ::= { enclosurePowerSupplyTableEntry 16 } - - -------------------------------------------------------------------------------- --- Enclosure Temperature Probe Table --- --- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.. -------------------------------------------------------------------------------- - -EnclosureTemperatureProbeTableEntry ::=SEQUENCE { - enclosureTemperatureProbeNumber INTEGER, - enclosureTemperatureProbeName DisplayString, - enclosureTemperatureProbeState INTEGER, - enclosureTemperatureProbeMinWarningValue INTEGER, - enclosureTemperatureProbeMinCriticalValue INTEGER, - enclosureTemperatureProbeMaxWarningValue INTEGER, - enclosureTemperatureProbeMaxCriticalValue INTEGER, - enclosureTemperatureProbeCurValue INTEGER, - enclosureTemperatureProbeComponentStatus ObjectStatusEnum, - enclosureTemperatureProbeFQDD FQDDString, - enclosureTemperatureProbeDisplayName DisplayString -} - -enclosureTemperatureProbeTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureTemperatureProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of managed temperature probes in the external storage - enclosure(s). The number of entries is related to number of - temperature probes discovered in the enclosure(s). The maximum - number of entries is implementation dependent. - Note: The properties in this table may not be applicable to all - entries. - " - ::= { physicalDevices 11 } - -enclosureTemperatureProbeTableEntry OBJECT-TYPE - SYNTAX EnclosureTemperatureProbeTableEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the temperature probe table. A row in this table cannot be - created or deleted by SNMP operations on columns of the table. - " - INDEX { enclosureTemperatureProbeNumber } - ::= { enclosureTemperatureProbeTable 1 } - -enclosureTemperatureProbeNumber OBJECT-TYPE - SYNTAX INTEGER (1..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instance number of this temperature probe. - " - ::= { enclosureTemperatureProbeTableEntry 1 } - -enclosureTemperatureProbeName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature probe's name as represented in - Storage Management. - " - ::= { enclosureTemperatureProbeTableEntry 2 } - -enclosureTemperatureProbeState OBJECT-TYPE - SYNTAX INTEGER - { - unknown(1), - ready(2), - failed(3), - missing(4), - degraded(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current state of this temperature probe. - Possible states: - 1: The current state could not be determined. - 2: The temperature probe is operating normally. - 3: The temperature probe has encountered a hardware problem - or is not responding. - 4: The temperature probe is no longer connected to the enclosure - or there exists a problem communicating to it. - 5: The temperature probe is unstable. - " - ::= { enclosureTemperatureProbeTableEntry 4 } - -enclosureTemperatureProbeMinWarningValue OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum temperature that will force the probe into - a warning state. - " - ::= { enclosureTemperatureProbeTableEntry 7 } - -enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum temperature that will force the probe into - a error state. - " - ::= { enclosureTemperatureProbeTableEntry 8 } - -enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum temperature that will force the probe into - a warning state. - " - ::= { enclosureTemperatureProbeTableEntry 9 } - -enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum temperature that will force the probe into - a warning state. - " - ::= { enclosureTemperatureProbeTableEntry 10 } - -enclosureTemperatureProbeCurValue OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum temperature that will force the probe into - a warning state. - " - ::= { enclosureTemperatureProbeTableEntry 11 } - -enclosureTemperatureProbeComponentStatus OBJECT-TYPE - SYNTAX ObjectStatusEnum - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The status of the enclosure management module.itself without the - propagation of any contained component status. - Possible values: - 1: Other. - 2: Unknown. - 3: OK. - 4: Non-critical . - 5: Critical. - 6: Non-recoverable. - " - ::= { enclosureTemperatureProbeTableEntry 13 } - -enclosureTemperatureProbeFQDD OBJECT-TYPE - SYNTAX FQDDString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature probe's Fully Qualified Device Descriptor (FQDD) - as represented in Storage Management. - " - ::= { enclosureTemperatureProbeTableEntry 15 } - -enclosureTemperatureProbeDisplayName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature probe's friendly FQDD as represented - in Storage Management. - " - ::= { enclosureTemperatureProbeTableEntry 16 } - - ------------------------------------------------------------------------------- --- Alert Trap Group --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.2 ------------------------------------------------------------------------------- - - ------------------------------------------------------------------------------- --- System Alert Trap Group --- System Traps (a.k.a, System Health Traps) --- Category: System/1 --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.1 ------------------------------------------------------------------------------- - ------------------------------------------------------------------------------- --- Amperage Probe Traps --- --- Category: System/1 --- Subcategory: AMP/16 ------------------------------------------------------------------------------- - -alertAmperageProbeNormal NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Current sensor reading is within range." - --#TYPE "System: Amperage Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2179 } - -alertAmperageProbeWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Current sensor has detected a warning value." - --#TYPE "System: Amperage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2178 } - -alertAmperageProbeFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Current sensor has detected a failure value." - --#TYPE "System: Amperage Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2177 } - ------------------------------------------------------------------------------- --- Automatic System Recovery Trap --- --- Category: System/1 --- Subcategory: ASR/23 ------------------------------------------------------------------------------- - -alertAutomaticSystemRecovery NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Automatic system recovery (ASR) was performed." - --#TYPE "System: Automatic System Recovery" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2233 } - ------------------------------------------------------------------------------- --- Battery Traps --- --- Category: System/1 --- Subcategory: BAT/22 ------------------------------------------------------------------------------- - -alertBatteryNormal NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Battery state has returned to normal; - or battery presence had been detected." - --#TYPE "System: Battery Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2227 } - -alertBatteryWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Battery is low." - --#TYPE "System: Battery Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2226 } - -alertBatteryFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Battery has failed or battery is absent." - --#TYPE "System: Battery Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2225 } - ------------------------------------------------------------------------------- --- Processor Device Status Traps --- --- Category: System/1 --- Subcategory: CPU/24 ------------------------------------------------------------------------------- - -alertProcessorDeviceStatusNormal NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Processor device status has returned to normal." - --#TYPE "System: Processor Device Status Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2243 } - -alertProcessorDeviceStatusWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Processor device status has detected a warning." - --#TYPE "System: Processor Device Status Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2242 } - -alertProcessorDeviceStatusFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Processor device status has detected a failure." - --#TYPE "System: Processor Device Status Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2241 } - ------------------------------------------------------------------------------- --- Processor Device Absent Trap --- --- Category: System/1 --- Subcategory: CPUA/51 ------------------------------------------------------------------------------- - -alertProcessorDeviceAbsent NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Processor device is absent." - --#TYPE "System: Processor Device Absent" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2457 } - ------------------------------------------------------------------------------- --- Fan Traps --- --- Category: System/1 --- Subcategory: FAN/13 ------------------------------------------------------------------------------- - -alertFanInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fan information." - --#TYPE "System: Fan Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2155 } - -alertFanWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fan warning." - --#TYPE "System: Fan Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2154 } - -alertFanFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fan failure." - --#TYPE "System: Fan Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2153 } - ------------------------------------------------------------------------------- --- Fiber Channel Traps --- --- Category: System/1 --- Subcategory: FC/61 ------------------------------------------------------------------------------- - -alertFiberChannelInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fiber Channel information." - --#TYPE "System: Fiber Channel Information " - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS MANDATORY - ::= { systemAlertTrapGroup 0 2539 } - -alertFiberChannelWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fiber Channel warning." - --#TYPE "System: Fiber Channel Warning " - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= { systemAlertTrapGroup 0 2538 } - -alertFiberChannelFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fiber Channel failure or critical event." - --#TYPE "System: Fiber Channel Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS MANDATORY - ::= { systemAlertTrapGroup 0 2537 } - ------------------------------------------------------------------------------- --- Hardware Configuration Traps --- --- Category: System/1 --- Subcategory: HWC/35 ------------------------------------------------------------------------------- - -alertHardwareConfigurationInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Hardware configuration information." - --#TYPE "System: Hardware Configuration Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2331 } - -alertHardwareConfigurationWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Hardware configuration warning." - --#TYPE "System: Hardware Configuration Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2330 } - -alertHardwareConfigurationFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Hardware configuration failure or critical event." - --#TYPE "System: Hardware Configuration Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2329 } - ------------------------------------------------------------------------------- --- Memory Device Traps --- --- Category: System/1 --- Subcategory: MEM/27 ------------------------------------------------------------------------------- - -alertMemoryDeviceInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Memory device informational event." - --#TYPE "System: Memory Device Infomation" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2267 } - -alertMemoryDeviceWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Memory device status is noncritical." - --#TYPE "System: Memory Device Noncritical" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2266 } - -alertMemoryDeviceFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Memory device status is critical." - --#TYPE "System: Memory Device Critical" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2265 } - ------------------------------------------------------------------------------- --- NIC Traps --- --- Category: System/1 --- Subcategory: NIC/5 ------------------------------------------------------------------------------- - -alertNetworkInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Network information." - --#TYPE "System: Network Information " - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2091 } - -alertNetworkWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Network warning." - --#TYPE "System: Network Warning " - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2090 } - -alertNetworkFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Network failure or critical event." - --#TYPE "System: Network Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2089 } - ------------------------------------------------------------------------------- --- Operation System ("OS") Event Traps --- --- Category: System/1 --- Subcategory: OSE/45 ------------------------------------------------------------------------------- - -alertOSInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "An OS graceful stop occurred; - or an OS graceful shut-down occurred." - --#TYPE "System: Operating System Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2411 } - -alertOSFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "A critical stop occurred during OS load; - or a runtime critical stop occurred." - --#TYPE "System: Operating System Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2409 } - ------------------------------------------------------------------------------- --- PCI Device Traps --- --- Category: System/1 --- Subcategory: PCI/46 ------------------------------------------------------------------------------- - -alertPCIDeviceInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "An informational event was detected for a PCI device." - --#TYPE "System: PCI Device Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2419 } - -alertPCIDeviceWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "A warning event was detected for a PCI device." - --#TYPE "System: PCI Device Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2418 } - -alertPCIDeviceFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "An error was detected for a PCI device." - --#TYPE "System: PCI Device Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2417 } - ------------------------------------------------------------------------------- --- Physical Disk Traps --- --- Category: System/1 --- Subcategory: PDR/31 ------------------------------------------------------------------------------- - -alertPhysicalDiskInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Physical disk information." - --#TYPE "System: Physical Disk Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2299 } - -alertPhysicalDiskWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Physical disk warning." - --#TYPE "System: Physical Disk Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2298 } - -alertPhysicalDiskFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Physical disk failure." - --#TYPE "System: Physical Disk Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { systemAlertTrapGroup 0 2297 } - ------------------------------------------------------------------------------- --- BIOS POST Trap --- --- Category: System/1 --- Subcategory: PST/47 ------------------------------------------------------------------------------- - -alertBiosPostFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "System BIOS detected a failure." - --#TYPE "System: BIOS POST Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { systemAlertTrapGroup 0 2425 } - ------------------------------------------------------------------------------- --- Power Supply Traps --- --- Category: System/1 --- Subcategory: PSU/17 ------------------------------------------------------------------------------- - -alertPowerSupplyNormal NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply has returned to normal." - --#TYPE "System: Power Supply Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2187 } - -alertPowerSupplyWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply has detected a warning." - --#TYPE "System: Power Supply Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2186 } - -alertPowerSupplyFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply has detected a failure." - --#TYPE "System: Power Supply Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2185 } - ------------------------------------------------------------------------------- --- Power Supply Absent Trap --- --- Category: System/1 --- Subcategory: PSUA/52 ------------------------------------------------------------------------------- - -alertPowerSupplyAbsent NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply is absent." - --#TYPE "System: Power Supply Absent" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2465 } - ------------------------------------------------------------------------------- --- Power Usage Traps --- --- Category: System/1 --- Subcategory: PWR/28 ------------------------------------------------------------------------------- - -alertPowerUsageInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "System performance restored." - --#TYPE "System: Power Usage Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2275 } - -alertPowerUsageWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "System performance degraded." - --#TYPE "System: Power Usage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2274 } - -alertPowerUsageFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "The system halted because system power exceeds capacity; - or the system performance degraded because power draw exceeds the - power threshold." - --#TYPE "System: Power Usage Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2273 } - ------------------------------------------------------------------------------- --- Redundancy Traps --- --- Category: System/1 --- Subcategory: RDU/53 ------------------------------------------------------------------------------- - -alertRedundancyInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Redundancy information." - --#TYPE "System: Redundancy Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2475 } - -alertRedundancyDegraded NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Redundancy is degraded." - --#TYPE "System: Redundancy Degraded" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2474 } - -alertRedundancyLost NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Redundancy is lost." - --#TYPE "System: Redundancy Lost" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2473 } - ------------------------------------------------------------------------------- --- Integrated Dual SD Module Traps --- --- Category: System/1 --- Subcategory: RFL/20 ------------------------------------------------------------------------------- - -alertIntegratedDualSDModuleInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module information." - --#TYPE "System: Integrated Dual SD Module Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2211 } - -alertIntegratedDualSDModuleWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module warning." - --#TYPE "System: Integrated Dual SD Module Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2210 } - -alertIntegratedDualSDModuleFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module failure." - --#TYPE "System: Integrated Dual SD Module Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2209 } - ------------------------------------------------------------------------------- --- Integrated Dual SD Module Absent Trap --- --- Category: System/1 --- Subcategory: RFLA/54 ------------------------------------------------------------------------------- - -alertIntegratedDualSDModuleAbsent NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module is absent." - --#TYPE "System: Integrated Dual SD Module absent." - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2481 } - ------------------------------------------------------------------------------- --- Integrated Dual SD Module Redundancy Traps --- --- Category: System/1 --- Subcategory: RRDU/55 ------------------------------------------------------------------------------- - -alertIntegratedDualSDModuleRedundancyInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module redundancy information." - --#TYPE "System: Integrated Dual SD Module Redundancy Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2491 } - -alertIntegratedDualSDModuleRedundancyDegraded NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module redundancy is degraded." - --#TYPE "System: Integrated Dual SD Module Redundancy Degraded" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2490 } - -alertIntegratedDualSDModuleRedundancyLost NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Integrated Dual SD Module redundancy is lost." - --#TYPE "System: Integrated Dual SD Module Redundancy Lost" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2489 } - ------------------------------------------------------------------------------- --- Security Event Traps --- --- Category: System/1 --- Subcategory: SEC/42 ------------------------------------------------------------------------------- - -alertSecurityInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Security information." - --#TYPE "System: Security Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2387 } - -alertSecurityFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Security failure or critical event." - --#TYPE "System: Security Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2385 } - ------------------------------------------------------------------------------- --- System Event Log Traps --- --- Category: System/1 --- Subcategory: SEL/41 ------------------------------------------------------------------------------- - -alertSystemEventLogInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "System Event Log information." - --#TYPE "System: System Event Log Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2379 } - -alertSystemEventLogWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "System Event Log warning." - --#TYPE "System: System Event Log Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2378 } - -alertSystemEventLogFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "System Event Log failure or critical event." - --#TYPE "System: System Event Log Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2377 } - ------------------------------------------------------------------------------- --- Temperature Probe Traps --- --- Category: System/1 --- Subcategory: TMP/14 ------------------------------------------------------------------------------- - -alertTemperatureProbeNormal NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature sensor value is within range." - --#TYPE "System: Temperature Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2163 } - -alertTemperatureProbeWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature sensor has detected a warning value." - --#TYPE "System: Temperature Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2162 } - -alertTemperatureProbeFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature sensor has detected a failure value." - --#TYPE "System: Temperature Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2161 } - ------------------------------------------------------------------------------- --- Temperature Statistics Traps --- --- Category: System/1 --- Subcategory: TMPS/59 ------------------------------------------------------------------------------- - -alertTemperatureStatisticsWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature has been above the warning or critical threshold level - for a long enough period of time to be considered in a warning state." - --#TYPE "System: Temperature Statistics Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2522 } - -alertTemperatureStatisticsFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature has been above the warning or critical threshold level - for a long enough period of time to be considered in a critical state." - --#TYPE "System: Temperature Statistics Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2521 } - ------------------------------------------------------------------------------- --- vFlash Media Device Traps --- --- Category: System/1 --- Subcategory: VFL/57 ------------------------------------------------------------------------------- - -alertvFlashMediaDeviceInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "vFlash Media device information." - --#TYPE "System: vFlash Media Device Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2507 } - -alertvFlashMediaDeviceWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "vFlash Media device warning." - --#TYPE "System: vFlash Media Device Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2506 } - -alertvFlashMediaDeviceFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "vFlash Media device failure." - --#TYPE "System: vFlash Media Device Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2505 } - ------------------------------------------------------------------------------- --- vFlash Media Device Absent Trap --- --- Category: System/1 --- Subcategory: VFLA/58 ------------------------------------------------------------------------------- - -alertvFlashMediaDeviceAbsent NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "vFlash Media device is absent." - --#TYPE "System: vFlash Media Device Absent" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2515 } - ------------------------------------------------------------------------------- --- Voltage Probe Traps --- --- Category: System/1 --- Subcategory: VLT/15 ------------------------------------------------------------------------------- - -alertVoltageProbeNormal NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Voltage sensor reading is within range." - --#TYPE "System: Voltage Normal" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { systemAlertTrapGroup 0 2171 } - -alertVoltageProbeWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Voltage sensor has detected a warning value." - --#TYPE "System: Voltage Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2170 } - -alertVoltageProbeFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Voltage sensor has detected a failure value." - --#TYPE "System: Voltage Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { systemAlertTrapGroup 0 2169 } - - ------------------------------------------------------------------------------- --- Storage Alert Trap Group --- Storage Traps --- Category: Storage/2 --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.2 ------------------------------------------------------------------------------- - ------------------------------------------------------------------------------- --- Battery Traps --- --- Category: Storage/2 --- Subcategory: BAT/22 ------------------------------------------------------------------------------- - -alertStorageBatteryInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Battery information." - --#TYPE "Storage: Battery Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4275 } - -alertStorageBatteryWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Battery warning." - --#TYPE "Storage: Battery Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4274 } - -alertStorageBatteryFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Battery failure." - --#TYPE "Storage: Battery Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4273 } - ------------------------------------------------------------------------------- --- Controller Traps --- --- Category: Storage/2 --- Subcategory: CTL/29 ------------------------------------------------------------------------------- - -alertStorageControllerInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Controller information." - --#TYPE "Storage: Controller Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4331 } - -alertStorageControllerWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Controller warning." - --#TYPE "Storage: Controller Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4330 } - -alertStorageControllerFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Controller failure." - --#TYPE "Storage: Controller Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4329 } - ------------------------------------------------------------------------------- --- Enclosure Traps --- --- Category: Storage/2 --- Subcategory: ENC/30 ------------------------------------------------------------------------------- - -alertStorageEnclosureInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Enclosure information." - --#TYPE "Storage: Enclosure Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4339 } - -alertStorageEnclosureWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Enclosure warning." - --#TYPE "Storage: Enclosure Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4338 } - -alertStorageEnclosureFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Enclosure failure." - --#TYPE "Storage: Enclosure Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4337 } - ------------------------------------------------------------------------------- --- Fan Traps --- --- Category: Storage/2 --- Subcategory: FAN/13 ------------------------------------------------------------------------------- - -alertStorageFanInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fan information." - --#TYPE "Storage: Fan Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4203 } - -alertStorageFanWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fan warning." - --#TYPE "Storage: Fan Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4202 } - -alertStorageFanFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Fan failure." - --#TYPE "Storage: Fan Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4201 } - ------------------------------------------------------------------------------- --- Physical Disk Traps --- --- Category: Storage/2 --- Subcategory: PDR/31 ------------------------------------------------------------------------------- - -alertStoragePhysicalDiskInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Physical disk information." - --#TYPE "Storage: Physical Disk Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4347 } - -alertStoragePhysicalDiskWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Physical disk warning." - --#TYPE "Storage: Physical Disk Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4346 } - -alertStoragePhysicalDiskFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Physical disk failure." - --#TYPE "Storage: Physical Disk Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4345 } - ------------------------------------------------------------------------------- --- Power Supply Traps --- --- Category: Storage/2 --- Subcategory: PSU/17 ------------------------------------------------------------------------------- - -alertStoragePowerSupplyInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply information." - --#TYPE "Storage: Power Supply Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4235 } - -alertStoragePowerSupplyWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply warning." - --#TYPE "Storage: Power Supply Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4234 } - -alertStoragePowerSupplyFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Power supply failure." - --#TYPE "Storage: Power Supply Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4233 } - ------------------------------------------------------------------------------- --- Storage Management Status Traps --- --- Category: Storage/2 --- Subcategory: STOR/10 ------------------------------------------------------------------------------- - -alertStorageManagementInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Storage Management Information. - There is no global status change associated with this trap." - --#TYPE "Storage: Storage Management Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4179 } - -alertStorageManagementWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Storage Management has detected a device independent warning - condition. There is no global status change associated with this - trap." - --#TYPE "Storage: Storage Management Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4178 } - -alertStorageManagementFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Storage Management has detected a device independent error condition. - There is no global status change associated with this trap." - --#TYPE "Storage: Storage Management Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4177 } - ------------------------------------------------------------------------------- --- Temperature Probe Traps --- --- Category: Storage/2 --- Subcategory: TMP/14 ------------------------------------------------------------------------------- - -alertStorageTemperatureProbeInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature probe information." - --#TYPE "Storage: Temperature Probe Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4211 } - -alertStorageTemperatureProbeWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature probe warning." - --#TYPE "Storage: Temperature Probe Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4210 } - -alertStorageTemperatureProbeFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Temperature probe failure." - --#TYPE "Storage: Temperature Probe Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4209 } - ------------------------------------------------------------------------------- --- Virtual Disk Traps --- --- Category: Storage/2 --- Subcategory: VDR/32 ------------------------------------------------------------------------------- - -alertStorageVirtualDiskInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Virtual disk information." - --#TYPE "Storage: Virtual Disk Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { storageAlertTrapGroup 0 4355 } - -alertStorageVirtualDiskWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Virtual disk warning." - --#TYPE "Storage: Virtual Disk Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { storageAlertTrapGroup 0 4354 } - -alertStorageVirtualDiskFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Virtual disk failure." - --#TYPE "Storage: Virtual Disk Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE FAILED - --#STATUS current - ::= { storageAlertTrapGroup 0 4353 } - - ------------------------------------------------------------------------------- --- Updates Alert Trap Group --- Updates Traps --- Category: Updates/3 --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.3 ------------------------------------------------------------------------------- - --- Note: Currently there are no Updates traps. - - ------------------------------------------------------------------------------- --- Audit Alert Trap Group --- Audit Traps --- Category: Audit/4 --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.4 ------------------------------------------------------------------------------- - ------------------------------------------------------------------------------- --- Debug Traps --- --- Category: Audit/4 --- Subcategory: FSD/50 ------------------------------------------------------------------------------- - -alertDebugInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Debug authorized." - --#TYPE "Audit: Debug Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { auditAlertTrapGroup 0 8595 } - -alertDebugWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Debug authorization failed." - --#TYPE "Audit: Debug Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { auditAlertTrapGroup 0 8594 } - ------------------------------------------------------------------------------- --- iDRAC IP Address Change Trap --- --- Category: Audit/4 --- Subcategory: IPA/38 ------------------------------------------------------------------------------- - -alertiDRACIPAddressChange NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "iDRAC IP address has changed." - --#TYPE "iDRAC IP address has changed" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - - ::= { auditAlertTrapGroup 0 8499 } - ------------------------------------------------------------------------------- --- License Traps --- --- Category: Audit/4 --- Subcategory: LIC/40 ------------------------------------------------------------------------------- - -alertLicenseInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "License information." - --#TYPE "Audit: License Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { auditAlertTrapGroup 0 8515 } - -alertLicenseWarning NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "License warning." - --#TYPE "Audit: License Warning" - --#SEVERITY MINOR - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE DEGRADED - --#STATUS current - ::= { auditAlertTrapGroup 0 8514 } - -alertLicenseFailure NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "License failure." - --#TYPE "Audit: License Failure" - --#SEVERITY CRITICAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Error Events" - --#STATE DEGRADED - --#STATUS current - ::= { auditAlertTrapGroup 0 8513 } - ------------------------------------------------------------------------------- --- System Power State Change Trap --- --- Category: Audit/4 --- Subcategory: SYS/48 ------------------------------------------------------------------------------- - -alertSystemPowerStateChangeInformation NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "Host is going through a power state change - (powering on or powering off)." - --#TYPE "Audit: System Power State Change Information" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { auditAlertTrapGroup 0 8579 } - - ------------------------------------------------------------------------------- --- Configuration Alert Trap Group --- Configuration Traps --- Category: Configuration/5 --- --- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.5 ------------------------------------------------------------------------------- - ------------------------------------------------------------------------------- --- Test Trap --- --- Category: Configuration/5 --- Subcategory: TST/19 ------------------------------------------------------------------------------- - -alertTestTrapEvent NOTIFICATION-TYPE - OBJECTS { alertMessageID, - alertMessage, - alertCurrentStatus, - alertSystemServiceTag, - alertSystemFQDN, - alertFQDD, - alertDeviceDisplayName, - alertMessageArguments, - alertChassisServiceTag } - STATUS current - DESCRIPTION - "The iDRAC generated a test trap event in response to a user request." - --#TYPE "Configuration: iDRAC Test Trap Event" - --#SEVERITY INFORMATIONAL - --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," - --#SUMMARY "Device Status: %d, Device FQDD: %s," - --#SUMMARY "System Service Tag: %s, System Name: %s," - --#SUMMARY "Chassis Service Tag: %s" - --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8} - --#CATEGORY "Status Events" - --#STATE OPERATIONAL - --#STATUS current - ::= { configurationAlertTrapGroup 0 10395 } - -END - ------------------------------------------------------------------------------- --- End MIB ------------------------------------------------------------------------------- diff --git a/mibs/orig/IF-MIB b/mibs/orig/IF-MIB deleted file mode 100644 index 4ac89d1..0000000 --- a/mibs/orig/IF-MIB +++ /dev/null @@ -1,1828 +0,0 @@ -IF-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, Counter64, - Integer32, TimeTicks, mib-2, - NOTIFICATION-TYPE FROM SNMPv2-SMI - TEXTUAL-CONVENTION, DisplayString, - PhysAddress, TruthValue, RowStatus, - TimeStamp, AutonomousType, TestAndIncr FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, - NOTIFICATION-GROUP FROM SNMPv2-CONF - snmpTraps FROM SNMPv2-MIB - IANAifType FROM IANAifType-MIB; - - -ifMIB MODULE-IDENTITY - LAST-UPDATED "200006140000Z" - ORGANIZATION "IETF Interfaces MIB Working Group" - CONTACT-INFO - " Keith McCloghrie - Cisco Systems, Inc. - 170 West Tasman Drive - San Jose, CA 95134-1706 - US - - 408-526-5260 - kzm@cisco.com" - DESCRIPTION - "The MIB module to describe generic objects for network - interface sub-layers. This MIB is an updated version of - MIB-II's ifTable, and incorporates the extensions defined in - RFC 1229." - REVISION "200006140000Z" - DESCRIPTION - "Clarifications agreed upon by the Interfaces MIB WG, and - published as RFC 2863." - REVISION "199602282155Z" - DESCRIPTION - "Revisions made by the Interfaces MIB WG, and published in - RFC 2233." - REVISION "199311082155Z" - DESCRIPTION - "Initial revision, published as part of RFC 1573." - ::= { mib-2 31 } - - -ifMIBObjects OBJECT IDENTIFIER ::= { ifMIB 1 } - -interfaces OBJECT IDENTIFIER ::= { mib-2 2 } - --- --- Textual Conventions --- - - --- OwnerString has the same semantics as used in RFC 1271 - -OwnerString ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255a" - STATUS deprecated - DESCRIPTION - "This data type is used to model an administratively - assigned name of the owner of a resource. This information - is taken from the NVT ASCII character set. It is suggested - that this name contain one or more of the following: ASCII - form of the manager station's transport address, management - station name (e.g., domain name), network management - personnel's name, location, or phone number. In some cases - the agent itself will be the owner of an entry. In these - cases, this string shall be set to a string starting with - 'agent'." - SYNTAX OCTET STRING (SIZE(0..255)) - --- InterfaceIndex contains the semantics of ifIndex and should be used --- for any objects defined in other MIB modules that need these semantics. - -InterfaceIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "A unique value, greater than zero, for each interface or - interface sub-layer in the managed system. It is - recommended that values are assigned contiguously starting - from 1. The value for each interface sub-layer must remain - constant at least from one re-initialization of the entity's - network management system to the next re-initialization." - SYNTAX Integer32 (1..2147483647) - -InterfaceIndexOrZero ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "This textual convention is an extension of the - InterfaceIndex convention. The latter defines a greater - than zero value used to identify an interface or interface - sub-layer in the managed system. This extension permits the - additional value of zero. the value zero is object-specific - and must therefore be defined as part of the description of - any object which uses this syntax. Examples of the usage of - zero might include situations where interface was unknown, - or when none or all interfaces need to be referenced." - SYNTAX Integer32 (0..2147483647) - -ifNumber OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of network interfaces (regardless of their - current state) present on this system." - ::= { interfaces 1 } - -ifTableLastChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time of the last creation or - deletion of an entry in the ifTable. If the number of - entries has been unchanged since the last re-initialization - of the local network management subsystem, then this object - contains a zero value." - ::= { ifMIBObjects 5 } - - --- the Interfaces table - --- The Interfaces table contains information on the entity's --- interfaces. Each sub-layer below the internetwork-layer --- of a network interface is considered to be an interface. - -ifTable OBJECT-TYPE - SYNTAX SEQUENCE OF IfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of interface entries. The number of entries is - given by the value of ifNumber." - ::= { interfaces 2 } - -ifEntry OBJECT-TYPE - SYNTAX IfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing management information applicable to a - particular interface." - INDEX { ifIndex } - ::= { ifTable 1 } - -IfEntry ::= - SEQUENCE { - ifIndex InterfaceIndex, - ifDescr DisplayString, - ifType IANAifType, - ifMtu Integer32, - ifSpeed Gauge32, - ifPhysAddress PhysAddress, - ifAdminStatus INTEGER, - ifOperStatus INTEGER, - ifLastChange TimeTicks, - ifInOctets Counter32, - ifInUcastPkts Counter32, - ifInNUcastPkts Counter32, -- deprecated - ifInDiscards Counter32, - ifInErrors Counter32, - ifInUnknownProtos Counter32, - ifOutOctets Counter32, - ifOutUcastPkts Counter32, - ifOutNUcastPkts Counter32, -- deprecated - ifOutDiscards Counter32, - ifOutErrors Counter32, - ifOutQLen Gauge32, -- deprecated - ifSpecific OBJECT IDENTIFIER -- deprecated - } - -ifIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique value, greater than zero, for each interface. It - is recommended that values are assigned contiguously - starting from 1. The value for each interface sub-layer - must remain constant at least from one re-initialization of - the entity's network management system to the next re- - initialization." - ::= { ifEntry 1 } - -ifDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual string containing information about the - interface. This string should include the name of the - manufacturer, the product name and the version of the - interface hardware/software." - ::= { ifEntry 2 } - -ifType OBJECT-TYPE - SYNTAX IANAifType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of interface. Additional values for ifType are - assigned by the Internet Assigned Numbers Authority (IANA), - through updating the syntax of the IANAifType textual - convention." - ::= { ifEntry 3 } - -ifMtu OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the largest packet which can be sent/received - on the interface, specified in octets. For interfaces that - are used for transmitting network datagrams, this is the - size of the largest network datagram that can be sent on the - interface." - ::= { ifEntry 4 } - -ifSpeed OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An estimate of the interface's current bandwidth in bits - per second. For interfaces which do not vary in bandwidth - or for those where no accurate estimation can be made, this - object should contain the nominal bandwidth. If the - bandwidth of the interface is greater than the maximum value - reportable by this object then this object should report its - maximum value (4,294,967,295) and ifHighSpeed must be used - to report the interace's speed. For a sub-layer which has - no concept of bandwidth, this object should be zero." - ::= { ifEntry 5 } - -ifPhysAddress OBJECT-TYPE - SYNTAX PhysAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The interface's address at its protocol sub-layer. For - example, for an 802.x interface, this object normally - contains a MAC address. The interface's media-specific MIB - must define the bit and byte ordering and the format of the - value of this object. For interfaces which do not have such - an address (e.g., a serial line), this object should contain - an octet string of zero length." - ::= { ifEntry 6 } - -ifAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), -- ready to pass packets - down(2), - testing(3) -- in some test mode - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The desired state of the interface. The testing(3) state - indicates that no operational packets can be passed. When a - managed system initializes, all interfaces start with - ifAdminStatus in the down(2) state. As a result of either - explicit management action or per configuration information - retained by the managed system, ifAdminStatus is then - changed to either the up(1) or testing(3) states (or remains - in the down(2) state)." - ::= { ifEntry 7 } - -ifOperStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), -- ready to pass packets - down(2), - testing(3), -- in some test mode - unknown(4), -- status can not be determined - -- for some reason. - dormant(5), - notPresent(6), -- some component is missing - lowerLayerDown(7) -- down due to state of - -- lower-layer interface(s) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current operational state of the interface. The - testing(3) state indicates that no operational packets can - be passed. If ifAdminStatus is down(2) then ifOperStatus - should be down(2). If ifAdminStatus is changed to up(1) - then ifOperStatus should change to up(1) if the interface is - ready to transmit and receive network traffic; it should - change to dormant(5) if the interface is waiting for - external actions (such as a serial line waiting for an - incoming connection); it should remain in the down(2) state - if and only if there is a fault that prevents it from going - to the up(1) state; it should remain in the notPresent(6) - state if the interface has missing (typically, hardware) - components." - ::= { ifEntry 8 } - -ifLastChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time the interface entered - its current operational state. If the current state was - entered prior to the last re-initialization of the local - network management subsystem, then this object contains a - zero value." - ::= { ifEntry 9 } - -ifInOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received on the interface, - including framing characters. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 10 } - -ifInUcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were not addressed to a multicast - or broadcast address at this sub-layer. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 11 } - -ifInNUcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were addressed to a multicast or - broadcast address at this sub-layer. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime. - - This object is deprecated in favour of ifInMulticastPkts and - ifInBroadcastPkts." - ::= { ifEntry 12 } - -ifInDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of inbound packets which were chosen to be - discarded even though no errors had been detected to prevent - their being deliverable to a higher-layer protocol. One - possible reason for discarding such a packet could be to - free up buffer space. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 13 } - -ifInErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "For packet-oriented interfaces, the number of inbound - packets that contained errors preventing them from being - deliverable to a higher-layer protocol. For character- - oriented or fixed-length interfaces, the number of inbound - transmission units that contained errors preventing them - from being deliverable to a higher-layer protocol. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 14 } - -ifInUnknownProtos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "For packet-oriented interfaces, the number of packets - received via the interface which were discarded because of - an unknown or unsupported protocol. For character-oriented - or fixed-length interfaces that support protocol - multiplexing the number of transmission units received via - the interface which were discarded because of an unknown or - unsupported protocol. For any interface that does not - support protocol multiplexing, this counter will always be - 0. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 15 } - -ifOutOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets transmitted out of the - interface, including framing characters. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 16 } - -ifOutUcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were not addressed to a - multicast or broadcast address at this sub-layer, including - those that were discarded or not sent. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 17 } - -ifOutNUcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were addressed to a - multicast or broadcast address at this sub-layer, including - those that were discarded or not sent. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime. - - This object is deprecated in favour of ifOutMulticastPkts - and ifOutBroadcastPkts." - ::= { ifEntry 18 } - -ifOutDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of outbound packets which were chosen to be - discarded even though no errors had been detected to prevent - their being transmitted. One possible reason for discarding - such a packet could be to free up buffer space. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 19 } - -ifOutErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "For packet-oriented interfaces, the number of outbound - packets that could not be transmitted because of errors. - For character-oriented or fixed-length interfaces, the - number of outbound transmission units that could not be - transmitted because of errors. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifEntry 20 } - -ifOutQLen OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The length of the output packet queue (in packets)." - ::= { ifEntry 21 } - -ifSpecific OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "A reference to MIB definitions specific to the particular - media being used to realize the interface. It is - recommended that this value point to an instance of a MIB - object in the media-specific MIB, i.e., that this object - have the semantics associated with the InstancePointer - textual convention defined in RFC 2579. In fact, it is - recommended that the media-specific MIB specify what value - ifSpecific should/can take for values of ifType. If no MIB - definitions specific to the particular media are available, - the value should be set to the OBJECT IDENTIFIER { 0 0 }." - ::= { ifEntry 22 } - - - --- --- Extension to the interface table --- --- This table replaces the ifExtnsTable table. --- - -ifXTable OBJECT-TYPE - SYNTAX SEQUENCE OF IfXEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of interface entries. The number of entries is - given by the value of ifNumber. This table contains - additional objects for the interface table." - ::= { ifMIBObjects 1 } - -ifXEntry OBJECT-TYPE - SYNTAX IfXEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing additional management information - applicable to a particular interface." - AUGMENTS { ifEntry } - ::= { ifXTable 1 } - -IfXEntry ::= - SEQUENCE { - ifName DisplayString, - ifInMulticastPkts Counter32, - ifInBroadcastPkts Counter32, - ifOutMulticastPkts Counter32, - ifOutBroadcastPkts Counter32, - ifHCInOctets Counter64, - ifHCInUcastPkts Counter64, - ifHCInMulticastPkts Counter64, - ifHCInBroadcastPkts Counter64, - ifHCOutOctets Counter64, - ifHCOutUcastPkts Counter64, - ifHCOutMulticastPkts Counter64, - ifHCOutBroadcastPkts Counter64, - ifLinkUpDownTrapEnable INTEGER, - ifHighSpeed Gauge32, - ifPromiscuousMode TruthValue, - ifConnectorPresent TruthValue, - ifAlias DisplayString, - ifCounterDiscontinuityTime TimeStamp - } - - -ifName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The textual name of the interface. The value of this - object should be the name of the interface as assigned by - the local device and should be suitable for use in commands - entered at the device's `console'. This might be a text - name, such as `le0' or a simple port number, such as `1', - depending on the interface naming syntax of the device. If - several entries in the ifTable together represent a single - interface as named by the device, then each will have the - same value of ifName. Note that for an agent which responds - to SNMP queries concerning an interface on some other - (proxied) device, then the value of ifName for such an - interface is the proxied device's local name for it. - - If there is no local name, or this object is otherwise not - applicable, then this object contains a zero-length string." - ::= { ifXEntry 1 } - -ifInMulticastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were addressed to a multicast - address at this sub-layer. For a MAC layer protocol, this - includes both Group and Functional addresses. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 2 } - -ifInBroadcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were addressed to a broadcast - address at this sub-layer. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 3 } - -ifOutMulticastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were addressed to a - multicast address at this sub-layer, including those that - were discarded or not sent. For a MAC layer protocol, this - includes both Group and Functional addresses. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 4 } - -ifOutBroadcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were addressed to a - broadcast address at this sub-layer, including those that - were discarded or not sent. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 5 } - --- --- High Capacity Counter objects. These objects are all --- 64 bit versions of the "basic" ifTable counters. These --- objects all have the same basic semantics as their 32-bit --- counterparts, however, their syntax has been extended --- to 64 bits. --- - -ifHCInOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received on the interface, - including framing characters. This object is a 64-bit - version of ifInOctets. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 6 } - -ifHCInUcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were not addressed to a multicast - or broadcast address at this sub-layer. This object is a - 64-bit version of ifInUcastPkts. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 7 } - -ifHCInMulticastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were addressed to a multicast - address at this sub-layer. For a MAC layer protocol, this - includes both Group and Functional addresses. This object - is a 64-bit version of ifInMulticastPkts. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 8 } - -ifHCInBroadcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, delivered by this sub-layer to a - higher (sub-)layer, which were addressed to a broadcast - address at this sub-layer. This object is a 64-bit version - of ifInBroadcastPkts. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 9 } - -ifHCOutOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets transmitted out of the - interface, including framing characters. This object is a - 64-bit version of ifOutOctets. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 10 } - -ifHCOutUcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were not addressed to a - multicast or broadcast address at this sub-layer, including - those that were discarded or not sent. This object is a - 64-bit version of ifOutUcastPkts. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 11 } - -ifHCOutMulticastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were addressed to a - multicast address at this sub-layer, including those that - were discarded or not sent. For a MAC layer protocol, this - includes both Group and Functional addresses. This object - is a 64-bit version of ifOutMulticastPkts. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 12 } - -ifHCOutBroadcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets that higher-level protocols - requested be transmitted, and which were addressed to a - broadcast address at this sub-layer, including those that - were discarded or not sent. This object is a 64-bit version - of ifOutBroadcastPkts. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ifCounterDiscontinuityTime." - ::= { ifXEntry 13 } - -ifLinkUpDownTrapEnable OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Indicates whether linkUp/linkDown traps should be generated - for this interface. - - By default, this object should have the value enabled(1) for - interfaces which do not operate on 'top' of any other - interface (as defined in the ifStackTable), and disabled(2) - otherwise." - ::= { ifXEntry 14 } - -ifHighSpeed OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An estimate of the interface's current bandwidth in units - of 1,000,000 bits per second. If this object reports a - value of `n' then the speed of the interface is somewhere in - the range of `n-500,000' to `n+499,999'. For interfaces - which do not vary in bandwidth or for those where no - accurate estimation can be made, this object should contain - the nominal bandwidth. For a sub-layer which has no concept - of bandwidth, this object should be zero." - ::= { ifXEntry 15 } - -ifPromiscuousMode OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object has a value of false(2) if this interface only - accepts packets/frames that are addressed to this station. - This object has a value of true(1) when the station accepts - all packets/frames transmitted on the media. The value - true(1) is only legal on certain types of media. If legal, - setting this object to a value of true(1) may require the - interface to be reset before becoming effective. - - The value of ifPromiscuousMode does not affect the reception - of broadcast and multicast packets/frames by the interface." - ::= { ifXEntry 16 } - -ifConnectorPresent OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object has the value 'true(1)' if the interface - sublayer has a physical connector and the value 'false(2)' - otherwise." - ::= { ifXEntry 17 } - -ifAlias OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is an 'alias' name for the interface as - specified by a network manager, and provides a non-volatile - 'handle' for the interface. - - On the first instantiation of an interface, the value of - ifAlias associated with that interface is the zero-length - string. As and when a value is written into an instance of - ifAlias through a network management set operation, then the - agent must retain the supplied value in the ifAlias instance - associated with the same interface for as long as that - interface remains instantiated, including across all re- - initializations/reboots of the network management system, - including those which result in a change of the interface's - ifIndex value. - - An example of the value which a network manager might store - in this object for a WAN interface is the (Telco's) circuit - number/identifier of the interface. - - Some agents may support write-access only for interfaces - having particular values of ifType. An agent which supports - write access to this object is required to keep the value in - non-volatile storage, but it may limit the length of new - values depending on how much storage is already occupied by - the current values for other interfaces." - ::= { ifXEntry 18 } - -ifCounterDiscontinuityTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime on the most recent occasion at which - any one or more of this interface's counters suffered a - discontinuity. The relevant counters are the specific - instances associated with this interface of any Counter32 or - Counter64 object contained in the ifTable or ifXTable. If - no such discontinuities have occurred since the last re- - initialization of the local management subsystem, then this - object contains a zero value." - ::= { ifXEntry 19 } - --- The Interface Stack Group --- --- Implementation of this group is optional, but strongly recommended --- for all systems --- - -ifStackTable OBJECT-TYPE - SYNTAX SEQUENCE OF IfStackEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table containing information on the relationships - between the multiple sub-layers of network interfaces. In - particular, it contains information on which sub-layers run - 'on top of' which other sub-layers, where each sub-layer - corresponds to a conceptual row in the ifTable. For - example, when the sub-layer with ifIndex value x runs over - the sub-layer with ifIndex value y, then this table - contains: - - ifStackStatus.x.y=active - - For each ifIndex value, I, which identifies an active - interface, there are always at least two instantiated rows - in this table associated with I. For one of these rows, I - is the value of ifStackHigherLayer; for the other, I is the - value of ifStackLowerLayer. (If I is not involved in - multiplexing, then these are the only two rows associated - with I.) - - For example, two rows exist even for an interface which has - no others stacked on top or below it: - - ifStackStatus.0.x=active - ifStackStatus.x.0=active " - ::= { ifMIBObjects 2 } - - -ifStackEntry OBJECT-TYPE - SYNTAX IfStackEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information on a particular relationship between two sub- - layers, specifying that one sub-layer runs on 'top' of the - other sub-layer. Each sub-layer corresponds to a conceptual - row in the ifTable." - INDEX { ifStackHigherLayer, ifStackLowerLayer } - ::= { ifStackTable 1 } - - -IfStackEntry ::= - SEQUENCE { - ifStackHigherLayer InterfaceIndexOrZero, - ifStackLowerLayer InterfaceIndexOrZero, - ifStackStatus RowStatus - } - - -ifStackHigherLayer OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The value of ifIndex corresponding to the higher sub-layer - of the relationship, i.e., the sub-layer which runs on 'top' - of the sub-layer identified by the corresponding instance of - ifStackLowerLayer. If there is no higher sub-layer (below - the internetwork layer), then this object has the value 0." - ::= { ifStackEntry 1 } - - -ifStackLowerLayer OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The value of ifIndex corresponding to the lower sub-layer - of the relationship, i.e., the sub-layer which runs 'below' - the sub-layer identified by the corresponding instance of - ifStackHigherLayer. If there is no lower sub-layer, then - this object has the value 0." - ::= { ifStackEntry 2 } - - -ifStackStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of the relationship between two sub-layers. - - Changing the value of this object from 'active' to - 'notInService' or 'destroy' will likely have consequences up - and down the interface stack. Thus, write access to this - object is likely to be inappropriate for some types of - interfaces, and many implementations will choose not to - support write-access for any type of interface." - ::= { ifStackEntry 3 } - -ifStackLastChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time of the last change of - the (whole) interface stack. A change of the interface - stack is defined to be any creation, deletion, or change in - value of any instance of ifStackStatus. If the interface - stack has been unchanged since the last re-initialization of - the local network management subsystem, then this object - contains a zero value." - ::= { ifMIBObjects 6 } - - --- Generic Receive Address Table --- --- This group of objects is mandatory for all types of --- interfaces which can receive packets/frames addressed to --- more than one address. --- --- This table replaces the ifExtnsRcvAddr table. The main --- difference is that this table makes use of the RowStatus --- textual convention, while ifExtnsRcvAddr did not. - -ifRcvAddressTable OBJECT-TYPE - SYNTAX SEQUENCE OF IfRcvAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains an entry for each address (broadcast, - multicast, or uni-cast) for which the system will receive - packets/frames on a particular interface, except as follows: - - - for an interface operating in promiscuous mode, entries - are only required for those addresses for which the system - would receive frames were it not operating in promiscuous - mode. - - - for 802.5 functional addresses, only one entry is - required, for the address which has the functional address - bit ANDed with the bit mask of all functional addresses for - which the interface will accept frames. - - A system is normally able to use any unicast address which - corresponds to an entry in this table as a source address." - ::= { ifMIBObjects 4 } - -ifRcvAddressEntry OBJECT-TYPE - SYNTAX IfRcvAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of objects identifying an address for which the - system will accept packets/frames on the particular - interface identified by the index value ifIndex." - INDEX { ifIndex, ifRcvAddressAddress } - ::= { ifRcvAddressTable 1 } - -IfRcvAddressEntry ::= - SEQUENCE { - ifRcvAddressAddress PhysAddress, - ifRcvAddressStatus RowStatus, - ifRcvAddressType INTEGER - } - -ifRcvAddressAddress OBJECT-TYPE - SYNTAX PhysAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An address for which the system will accept packets/frames - on this entry's interface." - ::= { ifRcvAddressEntry 1 } - -ifRcvAddressStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object is used to create and delete rows in the - ifRcvAddressTable." - - ::= { ifRcvAddressEntry 2 } - -ifRcvAddressType OBJECT-TYPE - SYNTAX INTEGER { - other(1), - volatile(2), - nonVolatile(3) - } - - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object has the value nonVolatile(3) for those entries - in the table which are valid and will not be deleted by the - next restart of the managed system. Entries having the - value volatile(2) are valid and exist, but have not been - saved, so that will not exist after the next restart of the - managed system. Entries having the value other(1) are valid - and exist but are not classified as to whether they will - continue to exist after the next restart." - - DEFVAL { volatile } - ::= { ifRcvAddressEntry 3 } - --- definition of interface-related traps. - -linkDown NOTIFICATION-TYPE - OBJECTS { ifIndex, ifAdminStatus, ifOperStatus } - STATUS current - DESCRIPTION - "A linkDown trap signifies that the SNMP entity, acting in - an agent role, has detected that the ifOperStatus object for - one of its communication links is about to enter the down - state from some other state (but not from the notPresent - state). This other state is indicated by the included value - of ifOperStatus." - ::= { snmpTraps 3 } - -linkUp NOTIFICATION-TYPE - OBJECTS { ifIndex, ifAdminStatus, ifOperStatus } - STATUS current - DESCRIPTION - "A linkUp trap signifies that the SNMP entity, acting in an - agent role, has detected that the ifOperStatus object for - one of its communication links left the down state and - transitioned into some other state (but not into the - notPresent state). This other state is indicated by the - included value of ifOperStatus." - ::= { snmpTraps 4 } - --- conformance information - -ifConformance OBJECT IDENTIFIER ::= { ifMIB 2 } - -ifGroups OBJECT IDENTIFIER ::= { ifConformance 1 } -ifCompliances OBJECT IDENTIFIER ::= { ifConformance 2 } - - --- compliance statements - -ifCompliance3 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for SNMP entities which have - network interfaces." - - MODULE -- this module - MANDATORY-GROUPS { ifGeneralInformationGroup, - linkUpDownNotificationsGroup } - --- The groups: --- ifFixedLengthGroup --- ifHCFixedLengthGroup --- ifPacketGroup --- ifHCPacketGroup --- ifVHCPacketGroup --- are mutually exclusive; at most one of these groups is implemented --- for a particular interface. When any of these groups is implemented --- for a particular interface, then ifCounterDiscontinuityGroup must --- also be implemented for that interface. - - - GROUP ifFixedLengthGroup - DESCRIPTION - "This group is mandatory for those network interfaces which - are character-oriented or transmit data in fixed-length - transmission units, and for which the value of the - corresponding instance of ifSpeed is less than or equal to - 20,000,000 bits/second." - - GROUP ifHCFixedLengthGroup - DESCRIPTION - "This group is mandatory for those network interfaces which - are character-oriented or transmit data in fixed-length - transmission units, and for which the value of the - corresponding instance of ifSpeed is greater than 20,000,000 - bits/second." - - GROUP ifPacketGroup - DESCRIPTION - "This group is mandatory for those network interfaces which - are packet-oriented, and for which the value of the - corresponding instance of ifSpeed is less than or equal to - 20,000,000 bits/second." - - GROUP ifHCPacketGroup - DESCRIPTION - "This group is mandatory only for those network interfaces - which are packet-oriented and for which the value of the - corresponding instance of ifSpeed is greater than 20,000,000 - bits/second but less than or equal to 650,000,000 - bits/second." - - GROUP ifVHCPacketGroup - DESCRIPTION - "This group is mandatory only for those network interfaces - which are packet-oriented and for which the value of the - corresponding instance of ifSpeed is greater than - 650,000,000 bits/second." - - - GROUP ifCounterDiscontinuityGroup - DESCRIPTION - "This group is mandatory for those network interfaces that - are required to maintain counters (i.e., those for which one - of the ifFixedLengthGroup, ifHCFixedLengthGroup, - ifPacketGroup, ifHCPacketGroup, or ifVHCPacketGroup is - mandatory)." - - - GROUP ifRcvAddressGroup - DESCRIPTION - "The applicability of this group MUST be defined by the - media-specific MIBs. Media-specific MIBs must define the - exact meaning, use, and semantics of the addresses in this - group." - - OBJECT ifLinkUpDownTrapEnable - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT ifPromiscuousMode - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT ifAdminStatus - SYNTAX INTEGER { up(1), down(2) } - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required, nor is support for the value - testing(3)." - - OBJECT ifAlias - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - ::= { ifCompliances 3 } - --- units of conformance - -ifGeneralInformationGroup OBJECT-GROUP - OBJECTS { ifIndex, ifDescr, ifType, ifSpeed, ifPhysAddress, - ifAdminStatus, ifOperStatus, ifLastChange, - ifLinkUpDownTrapEnable, ifConnectorPresent, - ifHighSpeed, ifName, ifNumber, ifAlias, - ifTableLastChange } - STATUS current - DESCRIPTION - "A collection of objects providing information applicable to - all network interfaces." - ::= { ifGroups 10 } - --- the following five groups are mutually exclusive; at most --- one of these groups is implemented for any interface - -ifFixedLengthGroup OBJECT-GROUP - OBJECTS { ifInOctets, ifOutOctets, ifInUnknownProtos, - ifInErrors, ifOutErrors } - STATUS current - DESCRIPTION - "A collection of objects providing information specific to - non-high speed (non-high speed interfaces transmit and - receive at speeds less than or equal to 20,000,000 - bits/second) character-oriented or fixed-length-transmission - network interfaces." - ::= { ifGroups 2 } - -ifHCFixedLengthGroup OBJECT-GROUP - OBJECTS { ifHCInOctets, ifHCOutOctets, - ifInOctets, ifOutOctets, ifInUnknownProtos, - ifInErrors, ifOutErrors } - STATUS current - DESCRIPTION - "A collection of objects providing information specific to - high speed (greater than 20,000,000 bits/second) character- - oriented or fixed-length-transmission network interfaces." - ::= { ifGroups 3 } - -ifPacketGroup OBJECT-GROUP - OBJECTS { ifInOctets, ifOutOctets, ifInUnknownProtos, - ifInErrors, ifOutErrors, - ifMtu, ifInUcastPkts, ifInMulticastPkts, - ifInBroadcastPkts, ifInDiscards, - ifOutUcastPkts, ifOutMulticastPkts, - ifOutBroadcastPkts, ifOutDiscards, - ifPromiscuousMode } - STATUS current - DESCRIPTION - "A collection of objects providing information specific to - non-high speed (non-high speed interfaces transmit and - receive at speeds less than or equal to 20,000,000 - bits/second) packet-oriented network interfaces." - ::= { ifGroups 4 } - -ifHCPacketGroup OBJECT-GROUP - OBJECTS { ifHCInOctets, ifHCOutOctets, - ifInOctets, ifOutOctets, ifInUnknownProtos, - ifInErrors, ifOutErrors, - ifMtu, ifInUcastPkts, ifInMulticastPkts, - ifInBroadcastPkts, ifInDiscards, - ifOutUcastPkts, ifOutMulticastPkts, - ifOutBroadcastPkts, ifOutDiscards, - ifPromiscuousMode } - STATUS current - DESCRIPTION - "A collection of objects providing information specific to - high speed (greater than 20,000,000 bits/second but less - than or equal to 650,000,000 bits/second) packet-oriented - network interfaces." - ::= { ifGroups 5 } - -ifVHCPacketGroup OBJECT-GROUP - OBJECTS { ifHCInUcastPkts, ifHCInMulticastPkts, - ifHCInBroadcastPkts, ifHCOutUcastPkts, - ifHCOutMulticastPkts, ifHCOutBroadcastPkts, - ifHCInOctets, ifHCOutOctets, - ifInOctets, ifOutOctets, ifInUnknownProtos, - ifInErrors, ifOutErrors, - ifMtu, ifInUcastPkts, ifInMulticastPkts, - ifInBroadcastPkts, ifInDiscards, - ifOutUcastPkts, ifOutMulticastPkts, - ifOutBroadcastPkts, ifOutDiscards, - ifPromiscuousMode } - STATUS current - DESCRIPTION - "A collection of objects providing information specific to - higher speed (greater than 650,000,000 bits/second) packet- - oriented network interfaces." - ::= { ifGroups 6 } - -ifRcvAddressGroup OBJECT-GROUP - OBJECTS { ifRcvAddressStatus, ifRcvAddressType } - STATUS current - DESCRIPTION - "A collection of objects providing information on the - multiple addresses which an interface receives." - ::= { ifGroups 7 } - -ifStackGroup2 OBJECT-GROUP - OBJECTS { ifStackStatus, ifStackLastChange } - STATUS current - DESCRIPTION - "A collection of objects providing information on the - layering of MIB-II interfaces." - ::= { ifGroups 11 } - -ifCounterDiscontinuityGroup OBJECT-GROUP - OBJECTS { ifCounterDiscontinuityTime } - STATUS current - DESCRIPTION - "A collection of objects providing information specific to - interface counter discontinuities." - ::= { ifGroups 13 } - -linkUpDownNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { linkUp, linkDown } - STATUS current - DESCRIPTION - "The notifications which indicate specific changes in the - value of ifOperStatus." - ::= { ifGroups 14 } - --- Deprecated Definitions - Objects - - --- --- The Interface Test Table --- --- This group of objects is optional. However, a media-specific --- MIB may make implementation of this group mandatory. --- --- This table replaces the ifExtnsTestTable --- - -ifTestTable OBJECT-TYPE - SYNTAX SEQUENCE OF IfTestEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "This table contains one entry per interface. It defines - objects which allow a network manager to instruct an agent - to test an interface for various faults. Tests for an - interface are defined in the media-specific MIB for that - interface. After invoking a test, the object ifTestResult - can be read to determine the outcome. If an agent can not - perform the test, ifTestResult is set to so indicate. The - object ifTestCode can be used to provide further test- - specific or interface-specific (or even enterprise-specific) - information concerning the outcome of the test. Only one - test can be in progress on each interface at any one time. - If one test is in progress when another test is invoked, the - second test is rejected. Some agents may reject a test when - a prior test is active on another interface. - - Before starting a test, a manager-station must first obtain - 'ownership' of the entry in the ifTestTable for the - interface to be tested. This is accomplished with the - ifTestId and ifTestStatus objects as follows: - - try_again: - get (ifTestId, ifTestStatus) - while (ifTestStatus != notInUse) - /* - * Loop while a test is running or some other - * manager is configuring a test. - */ - short delay - get (ifTestId, ifTestStatus) - } - - /* - * Is not being used right now -- let's compete - * to see who gets it. - */ - lock_value = ifTestId - - if ( set(ifTestId = lock_value, ifTestStatus = inUse, - - ifTestOwner = 'my-IP-address') == FAILURE) - /* - * Another manager got the ifTestEntry -- go - * try again - */ - goto try_again; - - /* - * I have the lock - */ - set up any test parameters. - - /* - * This starts the test - */ - set(ifTestType = test_to_run); - - wait for test completion by polling ifTestResult - - when test completes, agent sets ifTestResult - agent also sets ifTestStatus = 'notInUse' - - retrieve any additional test results, and ifTestId - - if (ifTestId == lock_value+1) results are valid - - A manager station first retrieves the value of the - appropriate ifTestId and ifTestStatus objects, periodically - repeating the retrieval if necessary, until the value of - ifTestStatus is 'notInUse'. The manager station then tries - to set the same ifTestId object to the value it just - retrieved, the same ifTestStatus object to 'inUse', and the - corresponding ifTestOwner object to a value indicating - itself. If the set operation succeeds then the manager has - obtained ownership of the ifTestEntry, and the value of the - ifTestId object is incremented by the agent (per the - semantics of TestAndIncr). Failure of the set operation - indicates that some other manager has obtained ownership of - the ifTestEntry. - - Once ownership is obtained, any test parameters can be - setup, and then the test is initiated by setting ifTestType. - On completion of the test, the agent sets ifTestStatus to - 'notInUse'. Once this occurs, the manager can retrieve the - results. In the (rare) event that the invocation of tests - by two network managers were to overlap, then there would be - a possibility that the first test's results might be - overwritten by the second test's results prior to the first - results being read. This unlikely circumstance can be - detected by a network manager retrieving ifTestId at the - same time as retrieving the test results, and ensuring that - the results are for the desired request. - - If ifTestType is not set within an abnormally long period of - time after ownership is obtained, the agent should time-out - the manager, and reset the value of the ifTestStatus object - back to 'notInUse'. It is suggested that this time-out - period be 5 minutes. - - In general, a management station must not retransmit a - request to invoke a test for which it does not receive a - response; instead, it properly inspects an agent's MIB to - determine if the invocation was successful. Only if the - invocation was unsuccessful, is the invocation request - retransmitted. - - Some tests may require the interface to be taken off-line in - order to execute them, or may even require the agent to - reboot after completion of the test. In these - circumstances, communication with the management station - invoking the test may be lost until after completion of the - test. An agent is not required to support such tests. - However, if such tests are supported, then the agent should - make every effort to transmit a response to the request - which invoked the test prior to losing communication. When - the agent is restored to normal service, the results of the - test are properly made available in the appropriate objects. - Note that this requires that the ifIndex value assigned to - an interface must be unchanged even if the test causes a - reboot. An agent must reject any test for which it cannot, - perhaps due to resource constraints, make available at least - the minimum amount of information after that test - completes." - ::= { ifMIBObjects 3 } - -ifTestEntry OBJECT-TYPE - SYNTAX IfTestEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "An entry containing objects for invoking tests on an - interface." - AUGMENTS { ifEntry } - ::= { ifTestTable 1 } - -IfTestEntry ::= - SEQUENCE { - ifTestId TestAndIncr, - ifTestStatus INTEGER, - ifTestType AutonomousType, - ifTestResult INTEGER, - ifTestCode OBJECT IDENTIFIER, - ifTestOwner OwnerString - } - -ifTestId OBJECT-TYPE - SYNTAX TestAndIncr - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This object identifies the current invocation of the - interface's test." - ::= { ifTestEntry 1 } - -ifTestStatus OBJECT-TYPE - SYNTAX INTEGER { notInUse(1), inUse(2) } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "This object indicates whether or not some manager currently - has the necessary 'ownership' required to invoke a test on - this interface. A write to this object is only successful - when it changes its value from 'notInUse(1)' to 'inUse(2)'. - After completion of a test, the agent resets the value back - to 'notInUse(1)'." - ::= { ifTestEntry 2 } - -ifTestType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "A control variable used to start and stop operator- - initiated interface tests. Most OBJECT IDENTIFIER values - assigned to tests are defined elsewhere, in association with - specific types of interface. However, this document assigns - a value for a full-duplex loopback test, and defines the - special meanings of the subject identifier: - - noTest OBJECT IDENTIFIER ::= { 0 0 } - - When the value noTest is written to this object, no action - is taken unless a test is in progress, in which case the - test is aborted. Writing any other value to this object is - only valid when no test is currently in progress, in which - case the indicated test is initiated. - - When read, this object always returns the most recent value - that ifTestType was set to. If it has not been set since - the last initialization of the network management subsystem - on the agent, a value of noTest is returned." - ::= { ifTestEntry 3 } - -ifTestResult OBJECT-TYPE - SYNTAX INTEGER { - none(1), -- no test yet requested - success(2), - inProgress(3), - notSupported(4), - unAbleToRun(5), -- due to state of system - aborted(6), - failed(7) - } - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "This object contains the result of the most recently - requested test, or the value none(1) if no tests have been - requested since the last reset. Note that this facility - provides no provision for saving the results of one test - when starting another, as could be required if used by - multiple managers concurrently." - ::= { ifTestEntry 4 } - -ifTestCode OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "This object contains a code which contains more specific - information on the test result, for example an error-code - after a failed test. Error codes and other values this - object may take are specific to the type of interface and/or - test. The value may have the semantics of either the - AutonomousType or InstancePointer textual conventions as - defined in RFC 2579. The identifier: - - testCodeUnknown OBJECT IDENTIFIER ::= { 0 0 } - - is defined for use if no additional result code is - available." - ::= { ifTestEntry 5 } - -ifTestOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "The entity which currently has the 'ownership' required to - invoke a test on this interface." - ::= { ifTestEntry 6 } - --- Deprecated Definitions - Groups - - -ifGeneralGroup OBJECT-GROUP - OBJECTS { ifDescr, ifType, ifSpeed, ifPhysAddress, - ifAdminStatus, ifOperStatus, ifLastChange, - ifLinkUpDownTrapEnable, ifConnectorPresent, - ifHighSpeed, ifName } - STATUS deprecated - DESCRIPTION - "A collection of objects deprecated in favour of - ifGeneralInformationGroup." - ::= { ifGroups 1 } - - -ifTestGroup OBJECT-GROUP - OBJECTS { ifTestId, ifTestStatus, ifTestType, - ifTestResult, ifTestCode, ifTestOwner } - STATUS deprecated - DESCRIPTION - "A collection of objects providing the ability to invoke - tests on an interface." - ::= { ifGroups 8 } - - -ifStackGroup OBJECT-GROUP - OBJECTS { ifStackStatus } - STATUS deprecated - DESCRIPTION - "The previous collection of objects providing information on - the layering of MIB-II interfaces." - ::= { ifGroups 9 } - - -ifOldObjectsGroup OBJECT-GROUP - OBJECTS { ifInNUcastPkts, ifOutNUcastPkts, - ifOutQLen, ifSpecific } - STATUS deprecated - DESCRIPTION - "The collection of objects deprecated from the original MIB- - II interfaces group." - ::= { ifGroups 12 } - --- Deprecated Definitions - Compliance - -ifCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "A compliance statement defined in a previous version of - this MIB module, for SNMP entities which have network - interfaces." - - MODULE -- this module - MANDATORY-GROUPS { ifGeneralGroup, ifStackGroup } - - GROUP ifFixedLengthGroup - DESCRIPTION - "This group is mandatory for all network interfaces which - are character-oriented or transmit data in fixed-length - transmission units." - - GROUP ifHCFixedLengthGroup - DESCRIPTION - "This group is mandatory only for those network interfaces - which are character-oriented or transmit data in fixed- - length transmission units, and for which the value of the - corresponding instance of ifSpeed is greater than 20,000,000 - bits/second." - - GROUP ifPacketGroup - DESCRIPTION - "This group is mandatory for all network interfaces which - are packet-oriented." - - GROUP ifHCPacketGroup - DESCRIPTION - "This group is mandatory only for those network interfaces - which are packet-oriented and for which the value of the - corresponding instance of ifSpeed is greater than - 650,000,000 bits/second." - - GROUP ifTestGroup - DESCRIPTION - "This group is optional. Media-specific MIBs which require - interface tests are strongly encouraged to use this group - for invoking tests and reporting results. A medium specific - MIB which has mandatory tests may make implementation of - this group mandatory." - - GROUP ifRcvAddressGroup - DESCRIPTION - "The applicability of this group MUST be defined by the - media-specific MIBs. Media-specific MIBs must define the - exact meaning, use, and semantics of the addresses in this - group." - - OBJECT ifLinkUpDownTrapEnable - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT ifPromiscuousMode - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT ifStackStatus - SYNTAX INTEGER { active(1) } -- subset of RowStatus - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required, and only one of the six - enumerated values for the RowStatus textual convention need - be supported, specifically: active(1)." - - OBJECT ifAdminStatus - SYNTAX INTEGER { up(1), down(2) } - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required, nor is support for the value - testing(3)." - ::= { ifCompliances 1 } - -ifCompliance2 MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "A compliance statement defined in a previous version of - this MIB module, for SNMP entities which have network - interfaces." - - MODULE -- this module - MANDATORY-GROUPS { ifGeneralInformationGroup, ifStackGroup2, - ifCounterDiscontinuityGroup } - - GROUP ifFixedLengthGroup - DESCRIPTION - "This group is mandatory for all network interfaces which - are character-oriented or transmit data in fixed-length - transmission units." - - GROUP ifHCFixedLengthGroup - DESCRIPTION - "This group is mandatory only for those network interfaces - which are character-oriented or transmit data in fixed- - length transmission units, and for which the value of the - corresponding instance of ifSpeed is greater than 20,000,000 - bits/second." - - GROUP ifPacketGroup - DESCRIPTION - "This group is mandatory for all network interfaces which - are packet-oriented." - - GROUP ifHCPacketGroup - DESCRIPTION - "This group is mandatory only for those network interfaces - which are packet-oriented and for which the value of the - corresponding instance of ifSpeed is greater than - 650,000,000 bits/second." - - GROUP ifRcvAddressGroup - DESCRIPTION - "The applicability of this group MUST be defined by the - media-specific MIBs. Media-specific MIBs must define the - exact meaning, use, and semantics of the addresses in this - group." - - OBJECT ifLinkUpDownTrapEnable - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT ifPromiscuousMode - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT ifStackStatus - SYNTAX INTEGER { active(1) } -- subset of RowStatus - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required, and only one of the six - enumerated values for the RowStatus textual convention need - be supported, specifically: active(1)." - OBJECT ifAdminStatus - SYNTAX INTEGER { up(1), down(2) } - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required, nor is support for the value - testing(3)." - - OBJECT ifAlias - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - ::= { ifCompliances 2 } - -END diff --git a/mibs/orig/INET-ADDRESS-MIB b/mibs/orig/INET-ADDRESS-MIB deleted file mode 100644 index 857e1a9..0000000 --- a/mibs/orig/INET-ADDRESS-MIB +++ /dev/null @@ -1,425 +0,0 @@ --- ***************************************************************** --- INET-ADDRESS-MIB.my: Textual Conventions for Internet Network --- Address. --- --- July 2005, Subra Hegde --- --- Copyright (c) 2005 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - --- This MIB is extracted from RFC 4001 - -INET-ADDRESS-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, mib-2, Unsigned32 FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC; - -inetAddressMIB MODULE-IDENTITY - LAST-UPDATED "200502040000Z" - ORGANIZATION - "IETF Operations and Management Area" - CONTACT-INFO - "Juergen Schoenwaelder (Editor) - International University Bremen - P.O. Box 750 561 - 28725 Bremen, Germany - - Phone: +49 421 200-3587 - EMail: j.schoenwaelder@iu-bremen.de - - Send comments to ." - DESCRIPTION - "This MIB module defines textual conventions for - representing Internet addresses. An Internet - address can be an IPv4 address, an IPv6 address, - or a DNS domain name. This module also defines - textual conventions for Internet port numbers, - autonomous system numbers, and the length of an - Internet address prefix. - - Copyright (C) The Internet Society (2005). This version - of this MIB module is part of RFC 4001, see the RFC - itself for full legal notices." - REVISION "200502040000Z" - DESCRIPTION - "Third version, published as RFC 4001. This revision - introduces the InetZoneIndex, InetScopeType, and - InetVersion textual conventions." - REVISION "200205090000Z" - DESCRIPTION - "Second version, published as RFC 3291. This - revision contains several clarifications and - introduces several new textual conventions: - InetAddressPrefixLength, InetPortNumber, - InetAutonomousSystemNumber, InetAddressIPv4z, - and InetAddressIPv6z." - REVISION "200006080000Z" - - - DESCRIPTION - "Initial version, published as RFC 2851." - ::= { mib-2 76 } - -InetAddressType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A value that represents a type of Internet address. - - unknown(0) An unknown address type. This value MUST - be used if the value of the corresponding - InetAddress object is a zero-length string. - It may also be used to indicate an IP address - that is not in one of the formats defined - below. - - ipv4(1) An IPv4 address as defined by the - InetAddressIPv4 textual convention. - - ipv6(2) An IPv6 address as defined by the - InetAddressIPv6 textual convention. - - ipv4z(3) A non-global IPv4 address including a zone - index as defined by the InetAddressIPv4z - textual convention. - - ipv6z(4) A non-global IPv6 address including a zone - index as defined by the InetAddressIPv6z - textual convention. - - dns(16) A DNS domain name as defined by the - InetAddressDNS textual convention. - - Each definition of a concrete InetAddressType value must be - accompanied by a definition of a textual convention for use - with that InetAddressType. - - To support future extensions, the InetAddressType textual - convention SHOULD NOT be sub-typed in object type definitions. - It MAY be sub-typed in compliance statements in order to - require only a subset of these address types for a compliant - implementation. - - Implementations must ensure that InetAddressType objects - and any dependent objects (e.g., InetAddress objects) are - consistent. An inconsistentValue error must be generated - if an attempt to change an InetAddressType object would, - for example, lead to an undefined InetAddress value. In - - - particular, InetAddressType/InetAddress pairs must be - changed together if the address type changes (e.g., from - ipv6(2) to ipv4(1))." - SYNTAX INTEGER { - unknown(0), - ipv4(1), - ipv6(2), - ipv4z(3), - ipv6z(4), - dns(16) - } - -InetAddress ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Denotes a generic Internet address. - - An InetAddress value is always interpreted within the context - of an InetAddressType value. Every usage of the InetAddress - textual convention is required to specify the InetAddressType - object that provides the context. It is suggested that the - InetAddressType object be logically registered before the - object(s) that use the InetAddress textual convention, if - they appear in the same logical row. - - The value of an InetAddress object must always be - consistent with the value of the associated InetAddressType - object. Attempts to set an InetAddress object to a value - inconsistent with the associated InetAddressType - must fail with an inconsistentValue error. - - When this textual convention is used as the syntax of an - index object, there may be issues with the limit of 128 - sub-identifiers specified in SMIv2, STD 58. In this case, - the object definition MUST include a 'SIZE' clause to - limit the number of potential instance sub-identifiers; - otherwise the applicable constraints MUST be stated in - the appropriate conceptual row DESCRIPTION clauses, or - in the surrounding documentation if there is no single - DESCRIPTION clause that is appropriate." - SYNTAX OCTET STRING (SIZE (0..255)) - -InetAddressIPv4 ::= TEXTUAL-CONVENTION - DISPLAY-HINT "1d.1d.1d.1d" - STATUS current - DESCRIPTION - "Represents an IPv4 network address: - - - Octets Contents Encoding - 1-4 IPv4 address network-byte order - - The corresponding InetAddressType value is ipv4(1). - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (4)) - -InetAddressIPv6 ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x" - STATUS current - DESCRIPTION - "Represents an IPv6 network address: - - Octets Contents Encoding - 1-16 IPv6 address network-byte order - - The corresponding InetAddressType value is ipv6(2). - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (16)) - -InetAddressIPv4z ::= TEXTUAL-CONVENTION - DISPLAY-HINT "1d.1d.1d.1d%4d" - STATUS current - DESCRIPTION - "Represents a non-global IPv4 network address, together - with its zone index: - - Octets Contents Encoding - 1-4 IPv4 address network-byte order - 5-8 zone index network-byte order - - The corresponding InetAddressType value is ipv4z(3). - - The zone index (bytes 5-8) is used to disambiguate identical - address values on nodes that have interfaces attached to - different zones of the same scope. The zone index may contain - the special value 0, which refers to the default zone for each - scope. - - This textual convention SHOULD NOT be used directly in object - - - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (8)) - -InetAddressIPv6z ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x%4d" - STATUS current - DESCRIPTION - "Represents a non-global IPv6 network address, together - with its zone index: - - Octets Contents Encoding - 1-16 IPv6 address network-byte order - 17-20 zone index network-byte order - - The corresponding InetAddressType value is ipv6z(4). - - The zone index (bytes 17-20) is used to disambiguate - identical address values on nodes that have interfaces - attached to different zones of the same scope. The zone index - may contain the special value 0, which refers to the default - zone for each scope. - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (20)) - -InetAddressDNS ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255a" - STATUS current - DESCRIPTION - "Represents a DNS domain name. The name SHOULD be fully - qualified whenever possible. - - The corresponding InetAddressType is dns(16). - - The DESCRIPTION clause of InetAddress objects that may have - InetAddressDNS values MUST fully describe how (and when) - these names are to be resolved to IP addresses. - - The resolution of an InetAddressDNS value may require to - query multiple DNS records (e.g., A for IPv4 and AAAA for - IPv6). The order of the resolution process and which DNS - record takes precedence depends on the configuration of the - resolver. - - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (1..255)) - -InetAddressPrefixLength ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "Denotes the length of a generic Internet network address - prefix. A value of n corresponds to an IP address mask - that has n contiguous 1-bits from the most significant - bit (MSB), with all other bits set to 0. - - An InetAddressPrefixLength value is always interpreted within - the context of an InetAddressType value. Every usage of the - InetAddressPrefixLength textual convention is required to - specify the InetAddressType object that provides the - context. It is suggested that the InetAddressType object be - logically registered before the object(s) that use the - InetAddressPrefixLength textual convention, if they appear - in the same logical row. - - InetAddressPrefixLength values larger than - the maximum length of an IP address for a specific - InetAddressType are treated as the maximum significant - value applicable for the InetAddressType. The maximum - significant value is 32 for the InetAddressType - 'ipv4(1)' and 'ipv4z(3)' and 128 for the InetAddressType - 'ipv6(2)' and 'ipv6z(4)'. The maximum significant value - for the InetAddressType 'dns(16)' is 0. - - The value zero is object-specific and must be defined as - part of the description of any object that uses this - syntax. Examples of the usage of zero might include - situations where the Internet network address prefix - is unknown or does not apply. - - The upper bound of the prefix length has been chosen to - be consistent with the maximum size of an InetAddress." - SYNTAX Unsigned32 (0..2040) - -InetPortNumber ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "Represents a 16 bit port number of an Internet transport - - - layer protocol. Port numbers are assigned by IANA. A - current list of all assignments is available from - . - - The value zero is object-specific and must be defined as - part of the description of any object that uses this - syntax. Examples of the usage of zero might include - situations where a port number is unknown, or when the - value zero is used as a wildcard in a filter." - REFERENCE "STD 6 (RFC 768), STD 7 (RFC 793) and RFC 2960" - SYNTAX Unsigned32 (0..65535) - -InetAutonomousSystemNumber ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "Represents an autonomous system number that identifies an - Autonomous System (AS). An AS is a set of routers under a - single technical administration, using an interior gateway - protocol and common metrics to route packets within the AS, - and using an exterior gateway protocol to route packets to - other ASes'. IANA maintains the AS number space and has - delegated large parts to the regional registries. - - Autonomous system numbers are currently limited to 16 bits - (0..65535). There is, however, work in progress to enlarge the - autonomous system number space to 32 bits. Therefore, this - textual convention uses an Unsigned32 value without a - range restriction in order to support a larger autonomous - system number space." - REFERENCE "RFC 1771, RFC 1930" - SYNTAX Unsigned32 - -InetScopeType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a scope type. This textual convention can be used - in cases where a MIB has to represent different scope types - and there is no context information, such as an InetAddress - object, that implicitly defines the scope type. - - Note that not all possible values have been assigned yet, but - they may be assigned in future revisions of this specification. - Applications should therefore be able to deal with values - not yet assigned." - REFERENCE "RFC 3513" - SYNTAX INTEGER { - -- reserved(0), - - - interfaceLocal(1), - linkLocal(2), - subnetLocal(3), - adminLocal(4), - siteLocal(5), -- site-local unicast addresses - -- have been deprecated by RFC 3879 - -- unassigned(6), - -- unassigned(7), - organizationLocal(8), - -- unassigned(9), - -- unassigned(10), - -- unassigned(11), - -- unassigned(12), - -- unassigned(13), - global(14) - -- reserved(15) - } - -InetZoneIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "A zone index identifies an instance of a zone of a - specific scope. - - The zone index MUST disambiguate identical address - values. For link-local addresses, the zone index will - typically be the interface index (ifIndex as defined in the - IF-MIB) of the interface on which the address is configured. - - The zone index may contain the special value 0, which refers - to the default zone. The default zone may be used in cases - where the valid zone index is not known (e.g., when a - management application has to write a link-local IPv6 - address without knowing the interface index value). The - default zone SHOULD NOT be used as an easy way out in - cases where the zone index for a non-global IPv6 address - is known." - REFERENCE "RFC4007" - SYNTAX Unsigned32 - -InetVersion ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A value representing a version of the IP protocol. - - unknown(0) An unknown or unspecified version of the IP - protocol. - - - ipv4(1) The IPv4 protocol as defined in RFC 791 (STD 5). - - ipv6(2) The IPv6 protocol as defined in RFC 2460. - - Note that this textual convention SHOULD NOT be used to - distinguish different address types associated with IP - protocols. The InetAddressType has been designed for this - purpose." - REFERENCE "RFC 791, RFC 2460" - SYNTAX INTEGER { - unknown(0), - ipv4(1), - ipv6(2) - } -END diff --git a/mibs/orig/IP-FORWARD-MIB b/mibs/orig/IP-FORWARD-MIB deleted file mode 100644 index 08d3abf..0000000 --- a/mibs/orig/IP-FORWARD-MIB +++ /dev/null @@ -1,1276 +0,0 @@ -IP-FORWARD-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, - IpAddress, Integer32, Gauge32, - Counter32 FROM SNMPv2-SMI - RowStatus FROM SNMPv2-TC - - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF - InterfaceIndexOrZero FROM IF-MIB - ip FROM IP-MIB - IANAipRouteProtocol FROM IANA-RTPROTO-MIB - InetAddress, InetAddressType, - InetAddressPrefixLength, - InetAutonomousSystemNumber FROM INET-ADDRESS-MIB; - -ipForward MODULE-IDENTITY - LAST-UPDATED "200602010000Z" - ORGANIZATION - "IETF IPv6 Working Group - http://www.ietf.org/html.charters/ipv6-charter.html" - CONTACT-INFO - "Editor: - Brian Haberman - Johns Hopkins University - Applied Physics Laboratory - Mailstop 17-S442 - 11100 Johns Hopkins Road - Laurel MD, 20723-6099 USA - - Phone: +1-443-778-1319 - Email: brian@innovationslab.net - - Send comments to " - DESCRIPTION - "The MIB module for the management of CIDR multipath IP - Routes. - - Copyright (C) The Internet Society (2006). This version - of this MIB module is a part of RFC 4292; see the RFC - itself for full legal notices." - - REVISION "200602010000Z" - DESCRIPTION - "IPv4/v6 version-independent revision. Minimal changes - were made to the original RFC 2096 MIB to allow easy - upgrade of existing IPv4 implementations to the - version-independent MIB. These changes include: - - Adding inetCidrRouteDiscards as a replacement for the - deprecated ipRoutingDiscards and ipv6DiscardedRoutes - objects. - - Adding a new conformance statement to support the - implementation of the IP Forwarding MIB in a - read-only mode. - - The inetCidrRouteTable replaces the IPv4-specific - ipCidrRouteTable, its related objects, and related - conformance statements. - - Published as RFC 4292." - - REVISION "199609190000Z" - DESCRIPTION - "Revised to support CIDR routes. - Published as RFC 2096." - - REVISION "199207022156Z" - DESCRIPTION - "Initial version, published as RFC 1354." - ::= { ip 24 } - -inetCidrRouteNumber OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of current inetCidrRouteTable entries that - are not invalid." -::= { ipForward 6 } - -inetCidrRouteDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of valid route entries discarded from the - inetCidrRouteTable. Discarded route entries do not - appear in the inetCidrRouteTable. One possible reason - for discarding an entry would be to free-up buffer space - for other route table entries." - ::= { ipForward 8 } - --- Inet CIDR Route Table - --- The Inet CIDR Route Table deprecates and replaces the --- ipCidrRoute Table currently in the IP Forwarding Table MIB. --- It adds IP protocol independence. - -inetCidrRouteTable OBJECT-TYPE - SYNTAX SEQUENCE OF InetCidrRouteEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This entity's IP Routing table." - REFERENCE - "RFC 1213 Section 6.6, The IP Group" - ::= { ipForward 7 } - -inetCidrRouteEntry OBJECT-TYPE - SYNTAX InetCidrRouteEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A particular route to a particular destination, under a - particular policy (as reflected in the - inetCidrRoutePolicy object). - - Dynamically created rows will survive an agent reboot. - - Implementers need to be aware that if the total number - of elements (octets or sub-identifiers) in - inetCidrRouteDest, inetCidrRoutePolicy, and - inetCidrRouteNextHop exceeds 111, then OIDs of column - instances in this table will have more than 128 sub- - identifiers and cannot be accessed using SNMPv1, - SNMPv2c, or SNMPv3." - INDEX { - inetCidrRouteDestType, - inetCidrRouteDest, - inetCidrRoutePfxLen, - inetCidrRoutePolicy, - inetCidrRouteNextHopType, - inetCidrRouteNextHop - } - ::= { inetCidrRouteTable 1 } - -InetCidrRouteEntry ::= SEQUENCE { - inetCidrRouteDestType InetAddressType, - inetCidrRouteDest InetAddress, - inetCidrRoutePfxLen InetAddressPrefixLength, - inetCidrRoutePolicy OBJECT IDENTIFIER, - inetCidrRouteNextHopType InetAddressType, - inetCidrRouteNextHop InetAddress, - inetCidrRouteIfIndex InterfaceIndexOrZero, - inetCidrRouteType INTEGER, - inetCidrRouteProto IANAipRouteProtocol, - inetCidrRouteAge Gauge32, - inetCidrRouteNextHopAS InetAutonomousSystemNumber, - inetCidrRouteMetric1 Integer32, - inetCidrRouteMetric2 Integer32, - inetCidrRouteMetric3 Integer32, - inetCidrRouteMetric4 Integer32, - inetCidrRouteMetric5 Integer32, - inetCidrRouteStatus RowStatus - } - -inetCidrRouteDestType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The type of the inetCidrRouteDest address, as defined - in the InetAddress MIB. - - Only those address types that may appear in an actual - routing table are allowed as values of this object." - REFERENCE "RFC 4001" - ::= { inetCidrRouteEntry 1 } - -inetCidrRouteDest OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The destination IP address of this route. - - The type of this address is determined by the value of - the inetCidrRouteDestType object. - - The values for the index objects inetCidrRouteDest and - inetCidrRoutePfxLen must be consistent. When the value - of inetCidrRouteDest (excluding the zone index, if one - is present) is x, then the bitwise logical-AND - of x with the value of the mask formed from the - corresponding index object inetCidrRoutePfxLen MUST be - equal to x. If not, then the index pair is not - consistent and an inconsistentName error must be - returned on SET or CREATE requests." - - ::= { inetCidrRouteEntry 2 } - -inetCidrRoutePfxLen OBJECT-TYPE - SYNTAX InetAddressPrefixLength - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Indicates the number of leading one bits that form the - mask to be logical-ANDed with the destination address - before being compared to the value in the - inetCidrRouteDest field. - - The values for the index objects inetCidrRouteDest and - inetCidrRoutePfxLen must be consistent. When the value - of inetCidrRouteDest (excluding the zone index, if one - is present) is x, then the bitwise logical-AND - of x with the value of the mask formed from the - corresponding index object inetCidrRoutePfxLen MUST be - equal to x. If not, then the index pair is not - consistent and an inconsistentName error must be - returned on SET or CREATE requests." - - ::= { inetCidrRouteEntry 3 } - -inetCidrRoutePolicy OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This object is an opaque object without any defined - semantics. Its purpose is to serve as an additional - index that may delineate between multiple entries to - the same destination. The value { 0 0 } shall be used - as the default value for this object." - ::= { inetCidrRouteEntry 4 } - -inetCidrRouteNextHopType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The type of the inetCidrRouteNextHop address, as - defined in the InetAddress MIB. - - Value should be set to unknown(0) for non-remote - routes. - - Only those address types that may appear in an actual - routing table are allowed as values of this object." - REFERENCE "RFC 4001" - ::= { inetCidrRouteEntry 5 } - -inetCidrRouteNextHop OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "On remote routes, the address of the next system en - route. For non-remote routes, a zero length string. - - The type of this address is determined by the value of - the inetCidrRouteNextHopType object." - ::= { inetCidrRouteEntry 6 } - -inetCidrRouteIfIndex OBJECT-TYPE - SYNTAX InterfaceIndexOrZero - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The ifIndex value that identifies the local interface - through which the next hop of this route should be - reached. A value of 0 is valid and represents the - scenario where no interface is specified." - ::= { inetCidrRouteEntry 7 } - -inetCidrRouteType OBJECT-TYPE - SYNTAX INTEGER { - other (1), -- not specified by this MIB - reject (2), -- route that discards traffic and - -- returns ICMP notification - local (3), -- local interface - remote (4), -- remote destination - blackhole(5) -- route that discards traffic - -- silently - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of route. Note that local(3) refers to a - route for which the next hop is the final destination; - remote(4) refers to a route for which the next hop is - not the final destination. - - Routes that do not result in traffic forwarding or - rejection should not be displayed, even if the - implementation keeps them stored internally. - - reject(2) refers to a route that, if matched, discards - the message as unreachable and returns a notification - (e.g., ICMP error) to the message sender. This is used - in some protocols as a means of correctly aggregating - routes. - - blackhole(5) refers to a route that, if matched, - discards the message silently." - ::= { inetCidrRouteEntry 8 } - -inetCidrRouteProto OBJECT-TYPE - SYNTAX IANAipRouteProtocol - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The routing mechanism via which this route was learned. - Inclusion of values for gateway routing protocols is - not intended to imply that hosts should support those - protocols." - ::= { inetCidrRouteEntry 9 } - -inetCidrRouteAge OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of seconds since this route was last updated - or otherwise determined to be correct. Note that no - semantics of 'too old' can be implied, except through - knowledge of the routing protocol by which the route - was learned." - ::= { inetCidrRouteEntry 10 } - -inetCidrRouteNextHopAS OBJECT-TYPE - SYNTAX InetAutonomousSystemNumber - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The Autonomous System Number of the Next Hop. The - semantics of this object are determined by the routing- - protocol specified in the route's inetCidrRouteProto - value. When this object is unknown or not relevant, its - value should be set to zero." - DEFVAL { 0 } - ::= { inetCidrRouteEntry 11 } - -inetCidrRouteMetric1 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The primary routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's inetCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { inetCidrRouteEntry 12 } - -inetCidrRouteMetric2 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's inetCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { inetCidrRouteEntry 13 } - -inetCidrRouteMetric3 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's inetCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { inetCidrRouteEntry 14 } - -inetCidrRouteMetric4 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's inetCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { inetCidrRouteEntry 15 } - -inetCidrRouteMetric5 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's inetCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { inetCidrRouteEntry 16 } - -inetCidrRouteStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The row status variable, used according to row - installation and removal conventions. - - A row entry cannot be modified when the status is - marked as active(1)." - ::= { inetCidrRouteEntry 17 } - --- Conformance information - -ipForwardConformance - OBJECT IDENTIFIER ::= { ipForward 5 } - -ipForwardGroups - OBJECT IDENTIFIER ::= { ipForwardConformance 1 } - -ipForwardCompliances - OBJECT IDENTIFIER ::= { ipForwardConformance 2 } - --- Compliance statements - -ipForwardFullCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "When this MIB is implemented for read-create, the - implementation can claim full compliance. - - There are a number of INDEX objects that cannot be - represented in the form of OBJECT clauses in SMIv2, - but for which there are compliance requirements, - expressed in OBJECT clause form in this description: - - -- OBJECT inetCidrRouteDestType - -- SYNTAX InetAddressType (ipv4(1), ipv6(2), - -- ipv4z(3), ipv6z(4)) - -- DESCRIPTION - -- This MIB requires support for global and - -- non-global ipv4 and ipv6 addresses. - -- - -- OBJECT inetCidrRouteDest - -- SYNTAX InetAddress (SIZE (4 | 8 | 16 | 20)) - -- DESCRIPTION - -- This MIB requires support for global and - -- non-global IPv4 and IPv6 addresses. - -- - -- OBJECT inetCidrRouteNextHopType - -- SYNTAX InetAddressType (unknown(0), ipv4(1), - -- ipv6(2), ipv4z(3) - -- ipv6z(4)) - -- DESCRIPTION - -- This MIB requires support for global and - -- non-global ipv4 and ipv6 addresses. - -- - -- OBJECT inetCidrRouteNextHop - -- SYNTAX InetAddress (SIZE (0 | 4 | 8 | 16 | 20)) - -- DESCRIPTION - -- This MIB requires support for global and - -- non-global IPv4 and IPv6 addresses. - " - - MODULE -- this module - MANDATORY-GROUPS { inetForwardCidrRouteGroup } - - OBJECT inetCidrRouteStatus - SYNTAX RowStatus { active(1), notInService (2) } - WRITE-SYNTAX RowStatus { active(1), notInService (2), - createAndGo(4), destroy(6) } - DESCRIPTION "Support for createAndWait is not required." - - ::= { ipForwardCompliances 3 } - -ipForwardReadOnlyCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "When this MIB is implemented without support for read- - create (i.e., in read-only mode), the implementation can - claim read-only compliance." - MODULE -- this module - MANDATORY-GROUPS { inetForwardCidrRouteGroup } - - OBJECT inetCidrRouteIfIndex - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteType - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteNextHopAS - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteMetric1 - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteMetric2 - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteMetric3 - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteMetric4 - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteMetric5 - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT inetCidrRouteStatus - SYNTAX RowStatus { active(1) } - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - ::= { ipForwardCompliances 4 } - --- units of conformance - -inetForwardCidrRouteGroup OBJECT-GROUP - OBJECTS { inetCidrRouteDiscards, - inetCidrRouteIfIndex, inetCidrRouteType, - inetCidrRouteProto, inetCidrRouteAge, - inetCidrRouteNextHopAS, inetCidrRouteMetric1, - inetCidrRouteMetric2, inetCidrRouteMetric3, - inetCidrRouteMetric4, inetCidrRouteMetric5, - inetCidrRouteStatus, inetCidrRouteNumber - } - STATUS current - DESCRIPTION - "The IP version-independent CIDR Route Table." - ::= { ipForwardGroups 4 } - --- Deprecated Objects - -ipCidrRouteNumber OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of current ipCidrRouteTable entries that are - not invalid. This object is deprecated in favor of - inetCidrRouteNumber and the inetCidrRouteTable." - ::= { ipForward 3 } - --- IP CIDR Route Table - --- The IP CIDR Route Table obsoletes and replaces the ipRoute --- Table current in MIB-I and MIB-II and the IP Forwarding Table. --- It adds knowledge of the autonomous system of the next hop, --- multiple next hops, policy routing, and Classless --- Inter-Domain Routing. - -ipCidrRouteTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpCidrRouteEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "This entity's IP Routing table. This table has been - deprecated in favor of the IP version neutral - inetCidrRouteTable." - REFERENCE - "RFC 1213 Section 6.6, The IP Group" - ::= { ipForward 4 } - -ipCidrRouteEntry OBJECT-TYPE - SYNTAX IpCidrRouteEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A particular route to a particular destination, under a - particular policy." - INDEX { - ipCidrRouteDest, - ipCidrRouteMask, - ipCidrRouteTos, - ipCidrRouteNextHop - } - ::= { ipCidrRouteTable 1 } - -IpCidrRouteEntry ::= SEQUENCE { - ipCidrRouteDest IpAddress, - ipCidrRouteMask IpAddress, - ipCidrRouteTos Integer32, - ipCidrRouteNextHop IpAddress, - ipCidrRouteIfIndex Integer32, - ipCidrRouteType INTEGER, - ipCidrRouteProto INTEGER, - ipCidrRouteAge Integer32, - ipCidrRouteInfo OBJECT IDENTIFIER, - ipCidrRouteNextHopAS Integer32, - ipCidrRouteMetric1 Integer32, - ipCidrRouteMetric2 Integer32, - ipCidrRouteMetric3 Integer32, - ipCidrRouteMetric4 Integer32, - ipCidrRouteMetric5 Integer32, - ipCidrRouteStatus RowStatus - } - -ipCidrRouteDest OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The destination IP address of this route. - - This object may not take a Multicast (Class D) address - value. - - Any assignment (implicit or otherwise) of an instance - of this object to a value x must be rejected if the - bitwise logical-AND of x with the value of the - corresponding instance of the ipCidrRouteMask object is - not equal to x." - ::= { ipCidrRouteEntry 1 } - -ipCidrRouteMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "Indicate the mask to be logical-ANDed with the - destination address before being compared to the value - in the ipCidrRouteDest field. For those systems that - do not support arbitrary subnet masks, an agent - constructs the value of the ipCidrRouteMask by - reference to the IP Address Class. - - Any assignment (implicit or otherwise) of an instance - of this object to a value x must be rejected if the - bitwise logical-AND of x with the value of the - corresponding instance of the ipCidrRouteDest object is - not equal to ipCidrRouteDest." - ::= { ipCidrRouteEntry 2 } - --- The following convention is included for specification --- of TOS Field contents. At this time, the Host Requirements --- and the Router Requirements documents disagree on the width --- of the TOS field. This mapping describes the Router --- Requirements mapping, and leaves room to widen the TOS field --- without impact to fielded systems. - -ipCidrRouteTos OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The policy specifier is the IP TOS Field. The encoding - of IP TOS is as specified by the following convention. - Zero indicates the default path if no more specific - policy applies. - - +-----+-----+-----+-----+-----+-----+-----+-----+ - | | | | - | PRECEDENCE | TYPE OF SERVICE | 0 | - | | | | - +-----+-----+-----+-----+-----+-----+-----+-----+ - - IP TOS IP TOS - Field Policy Field Policy - Contents Code Contents Code - 0 0 0 0 ==> 0 0 0 0 1 ==> 2 - 0 0 1 0 ==> 4 0 0 1 1 ==> 6 - 0 1 0 0 ==> 8 0 1 0 1 ==> 10 - 0 1 1 0 ==> 12 0 1 1 1 ==> 14 - 1 0 0 0 ==> 16 1 0 0 1 ==> 18 - 1 0 1 0 ==> 20 1 0 1 1 ==> 22 - 1 1 0 0 ==> 24 1 1 0 1 ==> 26 - 1 1 1 0 ==> 28 1 1 1 1 ==> 30" - ::= { ipCidrRouteEntry 3 } - -ipCidrRouteNextHop OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "On remote routes, the address of the next system en - route; Otherwise, 0.0.0.0." - ::= { ipCidrRouteEntry 4 } - -ipCidrRouteIfIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The ifIndex value that identifies the local interface - through which the next hop of this route should be - reached." - DEFVAL { 0 } - ::= { ipCidrRouteEntry 5 } - -ipCidrRouteType OBJECT-TYPE - SYNTAX INTEGER { - other (1), -- not specified by this MIB - reject (2), -- route that discards traffic - local (3), -- local interface - remote (4) -- remote destination - } - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The type of route. Note that local(3) refers to a - route for which the next hop is the final destination; - remote(4) refers to a route for which the next hop is - not the final destination. - - Routes that do not result in traffic forwarding or - rejection should not be displayed, even if the - implementation keeps them stored internally. - - reject (2) refers to a route that, if matched, - discards the message as unreachable. This is used in - some protocols as a means of correctly aggregating - routes." - ::= { ipCidrRouteEntry 6 } - -ipCidrRouteProto OBJECT-TYPE - SYNTAX INTEGER { - other (1), -- not specified - local (2), -- local interface - netmgmt (3), -- static route - icmp (4), -- result of ICMP Redirect - - -- the following are all dynamic - -- routing protocols - egp (5), -- Exterior Gateway Protocol - ggp (6), -- Gateway-Gateway Protocol - hello (7), -- FuzzBall HelloSpeak - rip (8), -- Berkeley RIP or RIP-II - isIs (9), -- Dual IS-IS - esIs (10), -- ISO 9542 - ciscoIgrp (11), -- Cisco IGRP - bbnSpfIgp (12), -- BBN SPF IGP - ospf (13), -- Open Shortest Path First - bgp (14), -- Border Gateway Protocol - idpr (15), -- InterDomain Policy Routing - ciscoEigrp (16) -- Cisco EIGRP - } - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The routing mechanism via which this route was learned. - Inclusion of values for gateway routing protocols is - not intended to imply that hosts should support those - protocols." - ::= { ipCidrRouteEntry 7 } - -ipCidrRouteAge OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of seconds since this route was last updated - or otherwise determined to be correct. Note that no - semantics of `too old' can be implied, except through - knowledge of the routing protocol by which the route - was learned." - DEFVAL { 0 } - ::= { ipCidrRouteEntry 8 } - -ipCidrRouteInfo OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A reference to MIB definitions specific to the - particular routing protocol that is responsible for - this route, as determined by the value specified in the - route's ipCidrRouteProto value. If this information is - not present, its value should be set to the OBJECT - IDENTIFIER { 0 0 }, which is a syntactically valid - object identifier, and any implementation conforming to - ASN.1 and the Basic Encoding Rules must be able to - generate and recognize this value." - ::= { ipCidrRouteEntry 9 } - -ipCidrRouteNextHopAS OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The Autonomous System Number of the Next Hop. The - semantics of this object are determined by the routing- - protocol specified in the route's ipCidrRouteProto - value. When this object is unknown or not relevant, its - value should be set to zero." - DEFVAL { 0 } - ::= { ipCidrRouteEntry 10 } - -ipCidrRouteMetric1 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The primary routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { ipCidrRouteEntry 11 } - -ipCidrRouteMetric2 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { ipCidrRouteEntry 12 } - -ipCidrRouteMetric3 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { ipCidrRouteEntry 13 } - -ipCidrRouteMetric4 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { ipCidrRouteEntry 14 } - -ipCidrRouteMetric5 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipCidrRouteProto - value. If this metric is not used, its value should be - set to -1." - DEFVAL { -1 } - ::= { ipCidrRouteEntry 15 } - -ipCidrRouteStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The row status variable, used according to row - installation and removal conventions." - ::= { ipCidrRouteEntry 16 } - --- compliance statements - -ipForwardCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for SNMPv2 entities that - implement the ipForward MIB. - - This compliance statement has been deprecated and - replaced with ipForwardFullCompliance and - ipForwardReadOnlyCompliance." - - MODULE -- this module - MANDATORY-GROUPS { ipForwardCidrRouteGroup } - - ::= { ipForwardCompliances 1 } - --- units of conformance - -ipForwardCidrRouteGroup OBJECT-GROUP - OBJECTS { ipCidrRouteNumber, - ipCidrRouteDest, ipCidrRouteMask, ipCidrRouteTos, - ipCidrRouteNextHop, ipCidrRouteIfIndex, - ipCidrRouteType, ipCidrRouteProto, ipCidrRouteAge, - ipCidrRouteInfo,ipCidrRouteNextHopAS, - ipCidrRouteMetric1, ipCidrRouteMetric2, - ipCidrRouteMetric3, ipCidrRouteMetric4, - ipCidrRouteMetric5, ipCidrRouteStatus - } - STATUS deprecated - DESCRIPTION - "The CIDR Route Table. - - This group has been deprecated and replaced with - inetForwardCidrRouteGroup." - ::= { ipForwardGroups 3 } - --- Obsoleted Definitions - Objects - -ipForwardNumber OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of current ipForwardTable entries that are - not invalid." - ::= { ipForward 1 } - --- IP Forwarding Table - --- The IP Forwarding Table obsoletes and replaces the ipRoute --- Table current in MIB-I and MIB-II. It adds knowledge of --- the autonomous system of the next hop, multiple next hop --- support, and policy routing support. - -ipForwardTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpForwardEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "This entity's IP Routing table." - REFERENCE - "RFC 1213 Section 6.6, The IP Group" - ::= { ipForward 2 } - -ipForwardEntry OBJECT-TYPE - SYNTAX IpForwardEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "A particular route to a particular destination, under a - particular policy." - INDEX { - ipForwardDest, - ipForwardProto, - ipForwardPolicy, - ipForwardNextHop - } - ::= { ipForwardTable 1 } - -IpForwardEntry ::= SEQUENCE { - ipForwardDest IpAddress, - ipForwardMask IpAddress, - ipForwardPolicy Integer32, - ipForwardNextHop IpAddress, - ipForwardIfIndex Integer32, - ipForwardType INTEGER, - ipForwardProto INTEGER, - ipForwardAge Integer32, - ipForwardInfo OBJECT IDENTIFIER, - ipForwardNextHopAS Integer32, - ipForwardMetric1 Integer32, - ipForwardMetric2 Integer32, - ipForwardMetric3 Integer32, - ipForwardMetric4 Integer32, - ipForwardMetric5 Integer32 - } - -ipForwardDest OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The destination IP address of this route. An entry - with a value of 0.0.0.0 is considered a default route. - - This object may not take a Multicast (Class D) address - value. - - Any assignment (implicit or otherwise) of an instance - of this object to a value x must be rejected if the - bitwise logical-AND of x with the value of the - corresponding instance of the ipForwardMask object is - not equal to x." - ::= { ipForwardEntry 1 } - -ipForwardMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "Indicate the mask to be logical-ANDed with the - destination address before being compared to the value - in the ipForwardDest field. For those systems that do - not support arbitrary subnet masks, an agent constructs - the value of the ipForwardMask by reference to the IP - Address Class. - - Any assignment (implicit or otherwise) of an instance - of this object to a value x must be rejected if the - bitwise logical-AND of x with the value of the - corresponding instance of the ipForwardDest object is - not equal to ipForwardDest." - DEFVAL { '00000000'H } -- 0.0.0.0 - ::= { ipForwardEntry 2 } - --- The following convention is included for specification --- of TOS Field contents. At this time, the Host Requirements --- and the Router Requirements documents disagree on the width --- of the TOS field. This mapping describes the Router --- Requirements mapping, and leaves room to widen the TOS field --- without impact to fielded systems. - -ipForwardPolicy OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The general set of conditions that would cause - the selection of one multipath route (set of - next hops for a given destination) is referred - to as 'policy'. - - Unless the mechanism indicated by ipForwardProto - specifies otherwise, the policy specifier is - the IP TOS Field. The encoding of IP TOS is as - specified by the following convention. Zero - indicates the default path if no more specific - policy applies. - - +-----+-----+-----+-----+-----+-----+-----+-----+ - | | | | - | PRECEDENCE | TYPE OF SERVICE | 0 | - | | | | - +-----+-----+-----+-----+-----+-----+-----+-----+ - - - - IP TOS IP TOS - Field Policy Field Policy - Contents Code Contents Code - 0 0 0 0 ==> 0 0 0 0 1 ==> 2 - 0 0 1 0 ==> 4 0 0 1 1 ==> 6 - 0 1 0 0 ==> 8 0 1 0 1 ==> 10 - 0 1 1 0 ==> 12 0 1 1 1 ==> 14 - 1 0 0 0 ==> 16 1 0 0 1 ==> 18 - 1 0 1 0 ==> 20 1 0 1 1 ==> 22 - 1 1 0 0 ==> 24 1 1 0 1 ==> 26 - 1 1 1 0 ==> 28 1 1 1 1 ==> 30 - - Protocols defining 'policy' otherwise must either - define a set of values that are valid for - this object or must implement an integer-instanced - policy table for which this object's - value acts as an index." - ::= { ipForwardEntry 3 } - -ipForwardNextHop OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "On remote routes, the address of the next system en - route; otherwise, 0.0.0.0." - ::= { ipForwardEntry 4 } - -ipForwardIfIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "The ifIndex value that identifies the local interface - through which the next hop of this route should be - reached." - DEFVAL { 0 } - ::= { ipForwardEntry 5 } - -ipForwardType OBJECT-TYPE - SYNTAX INTEGER { - other (1), -- not specified by this MIB - invalid (2), -- logically deleted - local (3), -- local interface - remote (4) -- remote destination - } - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "The type of route. Note that local(3) refers to a - route for which the next hop is the final destination; - remote(4) refers to a route for which the next hop is - not the final destination. - - Setting this object to the value invalid(2) has the - effect of invalidating the corresponding entry in the - ipForwardTable object. That is, it effectively - disassociates the destination identified with said - entry from the route identified with said entry. It is - an implementation-specific matter as to whether the - agent removes an invalidated entry from the table. - Accordingly, management stations must be prepared to - receive tabular information from agents that - corresponds to entries not currently in use. Proper - interpretation of such entries requires examination of - the relevant ipForwardType object." - DEFVAL { invalid } - ::= { ipForwardEntry 6 } - -ipForwardProto OBJECT-TYPE - SYNTAX INTEGER { - other (1), -- not specified - local (2), -- local interface - netmgmt (3), -- static route - icmp (4), -- result of ICMP Redirect - - -- the following are all dynamic - -- routing protocols - egp (5), -- Exterior Gateway Protocol - ggp (6), -- Gateway-Gateway Protocol - hello (7), -- FuzzBall HelloSpeak - rip (8), -- Berkeley RIP or RIP-II - is-is (9), -- Dual IS-IS - es-is (10), -- ISO 9542 - ciscoIgrp (11), -- Cisco IGRP - bbnSpfIgp (12), -- BBN SPF IGP - ospf (13), -- Open Shortest Path First - bgp (14), -- Border Gateway Protocol - idpr (15) -- InterDomain Policy Routing - } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The routing mechanism via which this route was learned. - Inclusion of values for gateway routing protocols is - not intended to imply that hosts should support those - protocols." - ::= { ipForwardEntry 7 } - -ipForwardAge OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of seconds since this route was last updated - or otherwise determined to be correct. Note that no - semantics of `too old' can be implied except through - knowledge of the routing protocol by which the route - was learned." - DEFVAL { 0 } - ::= { ipForwardEntry 8 } - -ipForwardInfo OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "A reference to MIB definitions specific to the - particular routing protocol that is responsible for - this route, as determined by the value specified in the - route's ipForwardProto value. If this information is - not present, its value should be set to the OBJECT - IDENTIFIER { 0 0 }, which is a syntactically valid - object identifier, and any implementation conforming to - ASN.1 and the Basic Encoding Rules must be able to - generate and recognize this value." - ::= { ipForwardEntry 9 } - -ipForwardNextHopAS OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "The Autonomous System Number of the Next Hop. When - this is unknown or not relevant to the protocol - indicated by ipForwardProto, zero." - DEFVAL { 0 } - ::= { ipForwardEntry 10 } - -ipForwardMetric1 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "The primary routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipForwardProto value. - If this metric is not used, its value should be set to - -1." - DEFVAL { -1 } - ::= { ipForwardEntry 11 } - -ipForwardMetric2 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipForwardProto value. - If this metric is not used, its value should be set to - -1." - DEFVAL { -1 } - ::= { ipForwardEntry 12 } - -ipForwardMetric3 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipForwardProto value. - If this metric is not used, its value should be set to - -1." - DEFVAL { -1 } - ::= { ipForwardEntry 13 } - -ipForwardMetric4 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipForwardProto value. - If this metric is not used, its value should be set to - -1." - DEFVAL { -1 } - ::= { ipForwardEntry 14 } - -ipForwardMetric5 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS obsolete - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the routing- - protocol specified in the route's ipForwardProto value. - If this metric is not used, its value should be set to - -1." - DEFVAL { -1 } - ::= { ipForwardEntry 15 } - --- Obsoleted Definitions - Groups --- compliance statements - -ipForwardOldCompliance MODULE-COMPLIANCE - STATUS obsolete - DESCRIPTION - "The compliance statement for SNMP entities that - implement the ipForward MIB." - MODULE -- this module - MANDATORY-GROUPS { ipForwardMultiPathGroup } - - ::= { ipForwardCompliances 2 } - -ipForwardMultiPathGroup OBJECT-GROUP - OBJECTS { ipForwardNumber, - ipForwardDest, ipForwardMask, ipForwardPolicy, - ipForwardNextHop, ipForwardIfIndex, ipForwardType, - ipForwardProto, ipForwardAge, ipForwardInfo, - ipForwardNextHopAS, - ipForwardMetric1, ipForwardMetric2, ipForwardMetric3, - ipForwardMetric4, ipForwardMetric5 - } - STATUS obsolete - DESCRIPTION - "IP Multipath Route Table." - ::= { ipForwardGroups 2 } - -END diff --git a/mibs/orig/IP-MIB b/mibs/orig/IP-MIB deleted file mode 100644 index e3c852b..0000000 --- a/mibs/orig/IP-MIB +++ /dev/null @@ -1,5171 +0,0 @@ --- ***************************************************************** --- IP-MIB.my: Management Information Base --- for the Internet Protocol (IP) --- --- April 2006, Subra Hegde --- --- Copyright (c) 2006 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - --- This mib is extracted from RFC 4293 - --- --- Following change is done from the RFC version --- to avoid MIB compilation problem. --- --- ***** From RFC ***** --- OBJECT ipAddressRowStatus --- SYNTAX RowStatus { active(1) } --- ****** - --- ***** Changed in this MIB --- OBJECT ipAddressRowStatus --- SYNTAX INTEGER { active(1) } --- ***** - -IP-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, - Integer32, Counter32, IpAddress, - mib-2, Unsigned32, Counter64, - zeroDotZero FROM SNMPv2-SMI - PhysAddress, TruthValue, - TimeStamp, RowPointer, - TEXTUAL-CONVENTION, TestAndIncr, - RowStatus, StorageType FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF - InetAddress, InetAddressType, - InetAddressPrefixLength, - InetVersion, InetZoneIndex FROM INET-ADDRESS-MIB - InterfaceIndex FROM IF-MIB; - -ipMIB MODULE-IDENTITY - LAST-UPDATED "200602020000Z" - ORGANIZATION "IETF IPv6 MIB Revision Team" - CONTACT-INFO - "Editor: - - - Shawn A. Routhier - Interworking Labs - 108 Whispering Pines Dr. Suite 235 - Scotts Valley, CA 95066 - USA - EMail: " - DESCRIPTION - "The MIB module for managing IP and ICMP implementations, but - excluding their management of IP routes. - - Copyright (C) The Internet Society (2006). This version of - this MIB module is part of RFC 4293; see the RFC itself for - full legal notices." - - REVISION "200602020000Z" - DESCRIPTION - "The IP version neutral revision with added IPv6 objects for - ND, default routers, and router advertisements. As well as - being the successor to RFC 2011, this MIB is also the - successor to RFCs 2465 and 2466. Published as RFC 4293." - - REVISION "199411010000Z" - DESCRIPTION - "A separate MIB module (IP-MIB) for IP and ICMP management - objects. Published as RFC 2011." - - REVISION "199103310000Z" - DESCRIPTION - "The initial revision of this MIB module was part of MIB-II, - which was published as RFC 1213." - ::= { mib-2 48} - --- --- The textual conventions we define and use in this MIB. --- - -IpAddressOriginTC ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The origin of the address. - - manual(2) indicates that the address was manually configured - to a specified address, e.g., by user configuration. - - dhcp(4) indicates an address that was assigned to this - system by a DHCP server. - - linklayer(5) indicates an address created by IPv6 stateless - - - auto-configuration. - - random(6) indicates an address chosen by the system at - random, e.g., an IPv4 address within 169.254/16, or an RFC - 3041 privacy address." - SYNTAX INTEGER { - other(1), - manual(2), - dhcp(4), - linklayer(5), - random(6) - } - -IpAddressStatusTC ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The status of an address. Most of the states correspond to - states from the IPv6 Stateless Address Autoconfiguration - protocol. - - The preferred(1) state indicates that this is a valid - address that can appear as the destination or source address - of a packet. - - The deprecated(2) state indicates that this is a valid but - deprecated address that should no longer be used as a source - address in new communications, but packets addressed to such - an address are processed as expected. - - The invalid(3) state indicates that this isn't a valid - address and it shouldn't appear as the destination or source - address of a packet. - - The inaccessible(4) state indicates that the address is not - accessible because the interface to which this address is - assigned is not operational. - - The unknown(5) state indicates that the status cannot be - determined for some reason. - - The tentative(6) state indicates that the uniqueness of the - address on the link is being verified. Addresses in this - state should not be used for general communication and - should only be used to determine the uniqueness of the - address. - - The duplicate(7) state indicates the address has been - determined to be non-unique on the link and so must not be - - - used. - - The optimistic(8) state indicates the address is available - for use, subject to restrictions, while its uniqueness on - a link is being verified. - - In the absence of other information, an IPv4 address is - always preferred(1)." - REFERENCE "RFC 2462" - SYNTAX INTEGER { - preferred(1), - deprecated(2), - invalid(3), - inaccessible(4), - unknown(5), - tentative(6), - duplicate(7), - optimistic(8) - } - -IpAddressPrefixOriginTC ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The origin of this prefix. - - manual(2) indicates a prefix that was manually configured. - - wellknown(3) indicates a well-known prefix, e.g., 169.254/16 - for IPv4 auto-configuration or fe80::/10 for IPv6 link-local - addresses. Well known prefixes may be assigned by IANA, - the address registries, or by specification in a standards - track RFC. - - dhcp(4) indicates a prefix that was assigned by a DHCP - server. - - routeradv(5) indicates a prefix learned from a router - advertisement. - - Note: while IpAddressOriginTC and IpAddressPrefixOriginTC - are similar, they are not identical. The first defines how - an address was created, while the second defines how a - prefix was found." - SYNTAX INTEGER { - other(1), - manual(2), - wellknown(3), - dhcp(4), - - - routeradv(5) - } - -Ipv6AddressIfIdentifierTC ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:" - STATUS current - DESCRIPTION - "This data type is used to model IPv6 address - interface identifiers. This is a binary string - of up to 8 octets in network byte-order." - SYNTAX OCTET STRING (SIZE (0..8)) - --- --- the IP general group --- some objects that affect all of IPv4 --- - -ip OBJECT IDENTIFIER ::= { mib-2 4 } - -ipForwarding OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), -- acting as a router - notForwarding(2) -- NOT acting as a router - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The indication of whether this entity is acting as an IPv4 - router in respect to the forwarding of datagrams received - by, but not addressed to, this entity. IPv4 routers forward - datagrams. IPv4 hosts do not (except those source-routed - via the host). - - When this object is written, the entity should save the - change to non-volatile storage and restore the object from - non-volatile storage upon re-initialization of the system. - Note: a stronger requirement is not used because this object - was previously defined." - ::= { ip 1 } - -ipDefaultTTL OBJECT-TYPE - SYNTAX Integer32 (1..255) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The default value inserted into the Time-To-Live field of - the IPv4 header of datagrams originated at this entity, - whenever a TTL value is not supplied by the transport layer - - - protocol. - - When this object is written, the entity should save the - change to non-volatile storage and restore the object from - non-volatile storage upon re-initialization of the system. - Note: a stronger requirement is not used because this object - was previously defined." - ::= { ip 2 } - -ipReasmTimeout OBJECT-TYPE - SYNTAX Integer32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of seconds that received fragments are - held while they are awaiting reassembly at this entity." - ::= { ip 13 } - --- --- the IPv6 general group --- Some objects that affect all of IPv6 --- - -ipv6IpForwarding OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), -- acting as a router - notForwarding(2) -- NOT acting as a router - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The indication of whether this entity is acting as an IPv6 - router on any interface in respect to the forwarding of - datagrams received by, but not addressed to, this entity. - IPv6 routers forward datagrams. IPv6 hosts do not (except - those source-routed via the host). - - When this object is written, the entity SHOULD save the - change to non-volatile storage and restore the object from - non-volatile storage upon re-initialization of the system." - ::= { ip 25 } - -ipv6IpDefaultHopLimit OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - - - "The default value inserted into the Hop Limit field of the - IPv6 header of datagrams originated at this entity whenever - a Hop Limit value is not supplied by the transport layer - protocol. - - When this object is written, the entity SHOULD save the - change to non-volatile storage and restore the object from - non-volatile storage upon re-initialization of the system." - REFERENCE "RFC 2461 Section 6.3.2" - ::= { ip 26 } - --- --- IPv4 Interface Table --- - -ipv4InterfaceTableLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime on the most recent occasion at which - a row in the ipv4InterfaceTable was added or deleted, or - when an ipv4InterfaceReasmMaxSize or an - ipv4InterfaceEnableStatus object was modified. - - If new objects are added to the ipv4InterfaceTable that - require the ipv4InterfaceTableLastChange to be updated when - they are modified, they must specify that requirement in - their description clause." - ::= { ip 27 } - -ipv4InterfaceTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv4InterfaceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table containing per-interface IPv4-specific - information." - ::= { ip 28 } - -ipv4InterfaceEntry OBJECT-TYPE - SYNTAX Ipv4InterfaceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing IPv4-specific information for a specific - interface." - INDEX { ipv4InterfaceIfIndex } - - - ::= { ipv4InterfaceTable 1 } - -Ipv4InterfaceEntry ::= SEQUENCE { - ipv4InterfaceIfIndex InterfaceIndex, - ipv4InterfaceReasmMaxSize Integer32, - ipv4InterfaceEnableStatus INTEGER, - ipv4InterfaceRetransmitTime Unsigned32 - } - -ipv4InterfaceIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface to - which this entry is applicable. The interface identified by - a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipv4InterfaceEntry 1 } - -ipv4InterfaceReasmMaxSize OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the largest IPv4 datagram that this entity can - re-assemble from incoming IPv4 fragmented datagrams received - on this interface." - ::= { ipv4InterfaceEntry 2 } - -ipv4InterfaceEnableStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), - down(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The indication of whether IPv4 is enabled (up) or disabled - (down) on this interface. This object does not affect the - state of the interface itself, only its connection to an - IPv4 stack. The IF-MIB should be used to control the state - of the interface." - ::= { ipv4InterfaceEntry 3 } - -ipv4InterfaceRetransmitTime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time between retransmissions of ARP requests to a - neighbor when resolving the address or when probing the - reachability of a neighbor." - REFERENCE "RFC 1122" - DEFVAL { 1000 } - ::= { ipv4InterfaceEntry 4 } - --- --- v6 interface table --- - -ipv6InterfaceTableLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime on the most recent occasion at which - a row in the ipv6InterfaceTable was added or deleted or when - an ipv6InterfaceReasmMaxSize, ipv6InterfaceIdentifier, - ipv6InterfaceEnableStatus, ipv6InterfaceReachableTime, - ipv6InterfaceRetransmitTime, or ipv6InterfaceForwarding - object was modified. - - If new objects are added to the ipv6InterfaceTable that - require the ipv6InterfaceTableLastChange to be updated when - they are modified, they must specify that requirement in - their description clause." - ::= { ip 29 } - -ipv6InterfaceTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6InterfaceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table containing per-interface IPv6-specific - information." - ::= { ip 30 } - -ipv6InterfaceEntry OBJECT-TYPE - SYNTAX Ipv6InterfaceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing IPv6-specific information for a given - interface." - - - INDEX { ipv6InterfaceIfIndex } - ::= { ipv6InterfaceTable 1 } - -Ipv6InterfaceEntry ::= SEQUENCE { - ipv6InterfaceIfIndex InterfaceIndex, - ipv6InterfaceReasmMaxSize Unsigned32, - ipv6InterfaceIdentifier Ipv6AddressIfIdentifierTC, - ipv6InterfaceEnableStatus INTEGER, - ipv6InterfaceReachableTime Unsigned32, - ipv6InterfaceRetransmitTime Unsigned32, - ipv6InterfaceForwarding INTEGER - } - -ipv6InterfaceIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface to - which this entry is applicable. The interface identified by - a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipv6InterfaceEntry 1 } - -ipv6InterfaceReasmMaxSize OBJECT-TYPE - SYNTAX Unsigned32 (1500..65535) - UNITS "octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the largest IPv6 datagram that this entity can - re-assemble from incoming IPv6 fragmented datagrams received - on this interface." - ::= { ipv6InterfaceEntry 2 } - -ipv6InterfaceIdentifier OBJECT-TYPE - SYNTAX Ipv6AddressIfIdentifierTC - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Interface Identifier for this interface. The Interface - Identifier is combined with an address prefix to form an - interface address. - - By default, the Interface Identifier is auto-configured - according to the rules of the link type to which this - interface is attached. - - - A zero length identifier may be used where appropriate. One - possible example is a loopback interface." - ::= { ipv6InterfaceEntry 3 } - --- This object ID is reserved as it was used in earlier versions of --- the MIB module. In theory, OIDs are not assigned until the --- specification is released as an RFC; however, as some companies --- may have shipped code based on earlier versions of the MIB, it --- seems best to reserve this OID. This OID had been --- ipv6InterfacePhysicalAddress. --- ::= { ipv6InterfaceEntry 4} - -ipv6InterfaceEnableStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), - down(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The indication of whether IPv6 is enabled (up) or disabled - (down) on this interface. This object does not affect the - state of the interface itself, only its connection to an - IPv6 stack. The IF-MIB should be used to control the state - of the interface. - - When this object is written, the entity SHOULD save the - change to non-volatile storage and restore the object from - non-volatile storage upon re-initialization of the system." - ::= { ipv6InterfaceEntry 5 } - -ipv6InterfaceReachableTime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time a neighbor is considered reachable after receiving - a reachability confirmation." - REFERENCE "RFC 2461, Section 6.3.2" - ::= { ipv6InterfaceEntry 6 } - -ipv6InterfaceRetransmitTime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "The time between retransmissions of Neighbor Solicitation - messages to a neighbor when resolving the address or when - probing the reachability of a neighbor." - REFERENCE "RFC 2461, Section 6.3.2" - ::= { ipv6InterfaceEntry 7 } - -ipv6InterfaceForwarding OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), -- acting as a router - notForwarding(2) -- NOT acting as a router - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The indication of whether this entity is acting as an IPv6 - router on this interface with respect to the forwarding of - datagrams received by, but not addressed to, this entity. - IPv6 routers forward datagrams. IPv6 hosts do not (except - those source-routed via the host). - - This object is constrained by ipv6IpForwarding and is - ignored if ipv6IpForwarding is set to notForwarding. Those - systems that do not provide per-interface control of the - forwarding function should set this object to forwarding for - all interfaces and allow the ipv6IpForwarding object to - control the forwarding capability. - - When this object is written, the entity SHOULD save the - change to non-volatile storage and restore the object from - non-volatile storage upon re-initialization of the system." - ::= { ipv6InterfaceEntry 8 } - --- --- Per-Interface or System-Wide IP statistics. --- --- The following two tables, ipSystemStatsTable and ipIfStatsTable, --- are intended to provide the same counters at different granularities. --- The ipSystemStatsTable provides system wide counters aggregating --- the traffic counters for all interfaces for a given address type. --- The ipIfStatsTable provides the same counters but for specific --- interfaces rather than as an aggregate. --- --- Note well: If a system provides both system-wide and interface- --- specific values, the system-wide value may not be equal to the sum --- of the interface-specific values across all interfaces due to e.g., --- dynamic interface creation/deletion. --- --- Note well: Both of these tables contain some items that are - - --- represented by two objects, representing the value in either 32 --- or 64 bits. For those objects, the 32-bit value MUST be the low --- order 32 bits of the 64-bit value. Also note that the 32-bit --- counters must be included when the 64-bit counters are included. - -ipTrafficStats OBJECT IDENTIFIER ::= { ip 31 } - -ipSystemStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpSystemStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table containing system wide, IP version specific - traffic statistics. This table and the ipIfStatsTable - contain similar objects whose difference is in their - granularity. Where this table contains system wide traffic - statistics, the ipIfStatsTable contains the same statistics - but counted on a per-interface basis." - ::= { ipTrafficStats 1 } - -ipSystemStatsEntry OBJECT-TYPE - SYNTAX IpSystemStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A statistics entry containing system-wide objects for a - particular IP version." - INDEX { ipSystemStatsIPVersion } - ::= { ipSystemStatsTable 1 } - -IpSystemStatsEntry ::= SEQUENCE { - ipSystemStatsIPVersion InetVersion, - ipSystemStatsInReceives Counter32, - ipSystemStatsHCInReceives Counter64, - ipSystemStatsInOctets Counter32, - ipSystemStatsHCInOctets Counter64, - ipSystemStatsInHdrErrors Counter32, - ipSystemStatsInNoRoutes Counter32, - ipSystemStatsInAddrErrors Counter32, - ipSystemStatsInUnknownProtos Counter32, - ipSystemStatsInTruncatedPkts Counter32, - ipSystemStatsInForwDatagrams Counter32, - ipSystemStatsHCInForwDatagrams Counter64, - ipSystemStatsReasmReqds Counter32, - ipSystemStatsReasmOKs Counter32, - ipSystemStatsReasmFails Counter32, - ipSystemStatsInDiscards Counter32, - ipSystemStatsInDelivers Counter32, - - - ipSystemStatsHCInDelivers Counter64, - ipSystemStatsOutRequests Counter32, - ipSystemStatsHCOutRequests Counter64, - ipSystemStatsOutNoRoutes Counter32, - ipSystemStatsOutForwDatagrams Counter32, - ipSystemStatsHCOutForwDatagrams Counter64, - ipSystemStatsOutDiscards Counter32, - ipSystemStatsOutFragReqds Counter32, - ipSystemStatsOutFragOKs Counter32, - ipSystemStatsOutFragFails Counter32, - ipSystemStatsOutFragCreates Counter32, - ipSystemStatsOutTransmits Counter32, - ipSystemStatsHCOutTransmits Counter64, - ipSystemStatsOutOctets Counter32, - ipSystemStatsHCOutOctets Counter64, - ipSystemStatsInMcastPkts Counter32, - ipSystemStatsHCInMcastPkts Counter64, - ipSystemStatsInMcastOctets Counter32, - ipSystemStatsHCInMcastOctets Counter64, - ipSystemStatsOutMcastPkts Counter32, - ipSystemStatsHCOutMcastPkts Counter64, - ipSystemStatsOutMcastOctets Counter32, - ipSystemStatsHCOutMcastOctets Counter64, - ipSystemStatsInBcastPkts Counter32, - ipSystemStatsHCInBcastPkts Counter64, - ipSystemStatsOutBcastPkts Counter32, - ipSystemStatsHCOutBcastPkts Counter64, - ipSystemStatsDiscontinuityTime TimeStamp, - ipSystemStatsRefreshRate Unsigned32 - } - -ipSystemStatsIPVersion OBJECT-TYPE - SYNTAX InetVersion - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP version of this row." - ::= { ipSystemStatsEntry 1 } - --- This object ID is reserved to allow the IDs for this table's objects --- to align with the objects in the ipIfStatsTable. --- ::= { ipSystemStatsEntry 2 } - -ipSystemStatsInReceives OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "The total number of input IP datagrams received, including - those received in error. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 3 } - -ipSystemStatsHCInReceives OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of input IP datagrams received, including - those received in error. This object counts the same - datagrams as ipSystemStatsInReceives, but allows for larger - values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 4 } - -ipSystemStatsInOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in input IP datagrams, - including those received in error. Octets from datagrams - counted in ipSystemStatsInReceives MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 5 } - -ipSystemStatsHCInOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in input IP datagrams, - including those received in error. This object counts the - same octets as ipSystemStatsInOctets, but allows for larger - - - values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 6 } - -ipSystemStatsInHdrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded due to errors in - their IP headers, including version number mismatch, other - format errors, hop count exceeded, errors discovered in - processing their IP options, etc. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 7 } - -ipSystemStatsInNoRoutes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded because no route - could be found to transmit them to their destination. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 8 } - -ipSystemStatsInAddrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded because the IP - address in their IP header's destination field was not a - valid address to be received at this entity. This count - includes invalid addresses (e.g., ::0). For entities - that are not IP routers and therefore do not forward - - - datagrams, this counter includes datagrams discarded - because the destination address was not a local address. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 9 } - -ipSystemStatsInUnknownProtos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of locally-addressed IP datagrams received - successfully but discarded because of an unknown or - unsupported protocol. - - When tracking interface statistics, the counter of the - interface to which these datagrams were addressed is - incremented. This interface might not be the same as the - input interface for some of the datagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 10 } - -ipSystemStatsInTruncatedPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded because the - datagram frame didn't carry enough data. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 11 } - -ipSystemStatsInForwDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "The number of input datagrams for which this entity was not - their final IP destination and for which this entity - attempted to find a route to forward them to that final - destination. In entities that do not act as IP routers, - this counter will include only those datagrams that were - Source-Routed via this entity, and the Source-Route - processing was successful. - - When tracking interface statistics, the counter of the - incoming interface is incremented for each datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 12 } - -ipSystemStatsHCInForwDatagrams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams for which this entity was not - their final IP destination and for which this entity - attempted to find a route to forward them to that final - destination. This object counts the same packets as - ipSystemStatsInForwDatagrams, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 13 } - -ipSystemStatsReasmReqds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP fragments received that needed to be - reassembled at this interface. - - When tracking interface statistics, the counter of the - interface to which these fragments were addressed is - incremented. This interface might not be the same as the - input interface for some of the fragments. - - Discontinuities in the value of this counter can occur at - - - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 14 } - -ipSystemStatsReasmOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams successfully reassembled. - - When tracking interface statistics, the counter of the - interface to which these datagrams were addressed is - incremented. This interface might not be the same as the - input interface for some of the datagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 15 } - -ipSystemStatsReasmFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of failures detected by the IP re-assembly - algorithm (for whatever reason: timed out, errors, etc.). - Note that this is not necessarily a count of discarded IP - fragments since some algorithms (notably the algorithm in - RFC 815) can lose track of the number of fragments by - combining them as they are received. - - When tracking interface statistics, the counter of the - interface to which these fragments were addressed is - incremented. This interface might not be the same as the - input interface for some of the fragments. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 16 } - -ipSystemStatsInDiscards OBJECT-TYPE - SYNTAX Counter32 - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams for which no problems were - encountered to prevent their continued processing, but - were discarded (e.g., for lack of buffer space). Note that - this counter does not include any datagrams discarded while - awaiting re-assembly. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 17 } - -ipSystemStatsInDelivers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of datagrams successfully delivered to IP - user-protocols (including ICMP). - - When tracking interface statistics, the counter of the - interface to which these datagrams were addressed is - incremented. This interface might not be the same as the - input interface for some of the datagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 18 } - -ipSystemStatsHCInDelivers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of datagrams successfully delivered to IP - user-protocols (including ICMP). This object counts the - same packets as ipSystemStatsInDelivers, but allows for - larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - - - ::= { ipSystemStatsEntry 19 } - -ipSystemStatsOutRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that local IP user- - protocols (including ICMP) supplied to IP in requests for - transmission. Note that this counter does not include any - datagrams counted in ipSystemStatsOutForwDatagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 20 } - -ipSystemStatsHCOutRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that local IP user- - protocols (including ICMP) supplied to IP in requests for - transmission. This object counts the same packets as - ipSystemStatsOutRequests, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 21 } - -ipSystemStatsOutNoRoutes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of locally generated IP datagrams discarded - because no route could be found to transmit them to their - destination. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 22 } - - -ipSystemStatsOutForwDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of datagrams for which this entity was not their - final IP destination and for which it was successful in - finding a path to their final destination. In entities - that do not act as IP routers, this counter will include - only those datagrams that were Source-Routed via this - entity, and the Source-Route processing was successful. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - forwarded datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 23 } - -ipSystemStatsHCOutForwDatagrams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of datagrams for which this entity was not their - final IP destination and for which it was successful in - finding a path to their final destination. This object - counts the same packets as ipSystemStatsOutForwDatagrams, - but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 24 } - -ipSystemStatsOutDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output IP datagrams for which no problem was - encountered to prevent their transmission to their - destination, but were discarded (e.g., for lack of - buffer space). Note that this counter would include - - - datagrams counted in ipSystemStatsOutForwDatagrams if any - such datagrams met this (discretionary) discard criterion. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 25 } - -ipSystemStatsOutFragReqds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams that would require fragmentation - in order to be transmitted. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 26 } - -ipSystemStatsOutFragOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams that have been successfully - fragmented. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 27 } - -ipSystemStatsOutFragFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - - - STATUS current - DESCRIPTION - "The number of IP datagrams that have been discarded because - they needed to be fragmented but could not be. This - includes IPv4 packets that have the DF bit set and IPv6 - packets that are being forwarded and exceed the outgoing - link MTU. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for an unsuccessfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 28 } - -ipSystemStatsOutFragCreates OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output datagram fragments that have been - generated as a result of IP fragmentation. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 29 } - -ipSystemStatsOutTransmits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that this entity supplied - to the lower layers for transmission. This includes - datagrams generated locally and those forwarded by this - entity. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - - - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 30 } - -ipSystemStatsHCOutTransmits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that this entity supplied - to the lower layers for transmission. This object counts - the same datagrams as ipSystemStatsOutTransmits, but allows - for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 31 } - -ipSystemStatsOutOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets in IP datagrams delivered to the - lower layers for transmission. Octets from datagrams - counted in ipSystemStatsOutTransmits MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 32 } - -ipSystemStatsHCOutOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets in IP datagrams delivered to the - lower layers for transmission. This objects counts the same - octets as ipSystemStatsOutOctets, but allows for larger - values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - - - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 33 } - -ipSystemStatsInMcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams received. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 34 } - -ipSystemStatsHCInMcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams received. This object - counts the same datagrams as ipSystemStatsInMcastPkts but - allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 35 } - -ipSystemStatsInMcastOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in IP multicast - datagrams. Octets from datagrams counted in - ipSystemStatsInMcastPkts MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 36 } - -ipSystemStatsHCInMcastOctets OBJECT-TYPE - SYNTAX Counter64 - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in IP multicast - datagrams. This object counts the same octets as - ipSystemStatsInMcastOctets, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 37 } - -ipSystemStatsOutMcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams transmitted. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 38 } - -ipSystemStatsHCOutMcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams transmitted. This - object counts the same datagrams as - ipSystemStatsOutMcastPkts, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 39 } - -ipSystemStatsOutMcastOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets transmitted in IP multicast - datagrams. Octets from datagrams counted in - - - ipSystemStatsOutMcastPkts MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 40 } - -ipSystemStatsHCOutMcastOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets transmitted in IP multicast - datagrams. This object counts the same octets as - ipSystemStatsOutMcastOctets, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 41 } - -ipSystemStatsInBcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams received. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 42 } - -ipSystemStatsHCInBcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams received. This object - counts the same datagrams as ipSystemStatsInBcastPkts but - allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - - - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 43 } - -ipSystemStatsOutBcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams transmitted. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 44 } - -ipSystemStatsHCOutBcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams transmitted. This - object counts the same datagrams as - ipSystemStatsOutBcastPkts, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipSystemStatsDiscontinuityTime." - ::= { ipSystemStatsEntry 45 } - -ipSystemStatsDiscontinuityTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime on the most recent occasion at which - any one or more of this entry's counters suffered a - discontinuity. - - If no such discontinuities have occurred since the last re- - initialization of the local management subsystem, then this - object contains a zero value." - ::= { ipSystemStatsEntry 46 } - -ipSystemStatsRefreshRate OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milli-seconds" - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum reasonable polling interval for this entry. - This object provides an indication of the minimum amount of - time required to update the counters in this entry." - ::= { ipSystemStatsEntry 47 } - -ipIfStatsTableLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime on the most recent occasion at which - a row in the ipIfStatsTable was added or deleted. - - If new objects are added to the ipIfStatsTable that require - the ipIfStatsTableLastChange to be updated when they are - modified, they must specify that requirement in their - description clause." - ::= { ipTrafficStats 2 } - -ipIfStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpIfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table containing per-interface traffic statistics. This - table and the ipSystemStatsTable contain similar objects - whose difference is in their granularity. Where this table - contains per-interface statistics, the ipSystemStatsTable - contains the same statistics, but counted on a system wide - basis." - ::= { ipTrafficStats 3 } - -ipIfStatsEntry OBJECT-TYPE - SYNTAX IpIfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An interface statistics entry containing objects for a - particular interface and version of IP." - INDEX { ipIfStatsIPVersion, ipIfStatsIfIndex } - ::= { ipIfStatsTable 1 } - -IpIfStatsEntry ::= SEQUENCE { - ipIfStatsIPVersion InetVersion, - ipIfStatsIfIndex InterfaceIndex, - - - ipIfStatsInReceives Counter32, - ipIfStatsHCInReceives Counter64, - ipIfStatsInOctets Counter32, - ipIfStatsHCInOctets Counter64, - ipIfStatsInHdrErrors Counter32, - ipIfStatsInNoRoutes Counter32, - ipIfStatsInAddrErrors Counter32, - ipIfStatsInUnknownProtos Counter32, - ipIfStatsInTruncatedPkts Counter32, - ipIfStatsInForwDatagrams Counter32, - ipIfStatsHCInForwDatagrams Counter64, - ipIfStatsReasmReqds Counter32, - ipIfStatsReasmOKs Counter32, - ipIfStatsReasmFails Counter32, - ipIfStatsInDiscards Counter32, - ipIfStatsInDelivers Counter32, - ipIfStatsHCInDelivers Counter64, - ipIfStatsOutRequests Counter32, - ipIfStatsHCOutRequests Counter64, - ipIfStatsOutForwDatagrams Counter32, - ipIfStatsHCOutForwDatagrams Counter64, - ipIfStatsOutDiscards Counter32, - ipIfStatsOutFragReqds Counter32, - ipIfStatsOutFragOKs Counter32, - ipIfStatsOutFragFails Counter32, - ipIfStatsOutFragCreates Counter32, - ipIfStatsOutTransmits Counter32, - ipIfStatsHCOutTransmits Counter64, - ipIfStatsOutOctets Counter32, - ipIfStatsHCOutOctets Counter64, - ipIfStatsInMcastPkts Counter32, - ipIfStatsHCInMcastPkts Counter64, - ipIfStatsInMcastOctets Counter32, - ipIfStatsHCInMcastOctets Counter64, - ipIfStatsOutMcastPkts Counter32, - ipIfStatsHCOutMcastPkts Counter64, - ipIfStatsOutMcastOctets Counter32, - ipIfStatsHCOutMcastOctets Counter64, - ipIfStatsInBcastPkts Counter32, - ipIfStatsHCInBcastPkts Counter64, - ipIfStatsOutBcastPkts Counter32, - ipIfStatsHCOutBcastPkts Counter64, - ipIfStatsDiscontinuityTime TimeStamp, - ipIfStatsRefreshRate Unsigned32 - } - -ipIfStatsIPVersion OBJECT-TYPE - SYNTAX InetVersion - - - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP version of this row." - ::= { ipIfStatsEntry 1 } - -ipIfStatsIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface to - which this entry is applicable. The interface identified by - a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipIfStatsEntry 2 } - -ipIfStatsInReceives OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of input IP datagrams received, including - those received in error. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 3 } - -ipIfStatsHCInReceives OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of input IP datagrams received, including - those received in error. This object counts the same - datagrams as ipIfStatsInReceives, but allows for larger - values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 4 } - -ipIfStatsInOctets OBJECT-TYPE - - - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in input IP datagrams, - including those received in error. Octets from datagrams - counted in ipIfStatsInReceives MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 5 } - -ipIfStatsHCInOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in input IP datagrams, - including those received in error. This object counts the - same octets as ipIfStatsInOctets, but allows for larger - values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 6 } - -ipIfStatsInHdrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded due to errors in - their IP headers, including version number mismatch, other - format errors, hop count exceeded, errors discovered in - processing their IP options, etc. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 7 } - -ipIfStatsInNoRoutes OBJECT-TYPE - SYNTAX Counter32 - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded because no route - could be found to transmit them to their destination. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 8 } - -ipIfStatsInAddrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded because the IP - address in their IP header's destination field was not a - valid address to be received at this entity. This count - includes invalid addresses (e.g., ::0). For entities that - are not IP routers and therefore do not forward datagrams, - this counter includes datagrams discarded because the - destination address was not a local address. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 9 } - -ipIfStatsInUnknownProtos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of locally-addressed IP datagrams received - successfully but discarded because of an unknown or - unsupported protocol. - - When tracking interface statistics, the counter of the - interface to which these datagrams were addressed is - incremented. This interface might not be the same as the - input interface for some of the datagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - - - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 10 } - -ipIfStatsInTruncatedPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams discarded because the - datagram frame didn't carry enough data. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 11 } - -ipIfStatsInForwDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams for which this entity was not - their final IP destination and for which this entity - attempted to find a route to forward them to that final - destination. In entities that do not act as IP routers, - this counter will include only those datagrams that were - Source-Routed via this entity, and the Source-Route - processing was successful. - - When tracking interface statistics, the counter of the - incoming interface is incremented for each datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 12 } - -ipIfStatsHCInForwDatagrams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams for which this entity was not - their final IP destination and for which this entity - attempted to find a route to forward them to that final - destination. This object counts the same packets as - - - ipIfStatsInForwDatagrams, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 13 } - -ipIfStatsReasmReqds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP fragments received that needed to be - reassembled at this interface. - - When tracking interface statistics, the counter of the - interface to which these fragments were addressed is - incremented. This interface might not be the same as the - input interface for some of the fragments. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 14 } - -ipIfStatsReasmOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams successfully reassembled. - - When tracking interface statistics, the counter of the - interface to which these datagrams were addressed is - incremented. This interface might not be the same as the - input interface for some of the datagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 15 } - -ipIfStatsReasmFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - - - STATUS current - DESCRIPTION - "The number of failures detected by the IP re-assembly - algorithm (for whatever reason: timed out, errors, etc.). - Note that this is not necessarily a count of discarded IP - fragments since some algorithms (notably the algorithm in - RFC 815) can lose track of the number of fragments by - combining them as they are received. - - When tracking interface statistics, the counter of the - interface to which these fragments were addressed is - incremented. This interface might not be the same as the - input interface for some of the fragments. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 16 } - -ipIfStatsInDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IP datagrams for which no problems were - encountered to prevent their continued processing, but - were discarded (e.g., for lack of buffer space). Note that - this counter does not include any datagrams discarded while - awaiting re-assembly. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 17 } - -ipIfStatsInDelivers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of datagrams successfully delivered to IP - user-protocols (including ICMP). - - When tracking interface statistics, the counter of the - interface to which these datagrams were addressed is - incremented. This interface might not be the same as the - - - input interface for some of the datagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 18 } - -ipIfStatsHCInDelivers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of datagrams successfully delivered to IP - user-protocols (including ICMP). This object counts the - same packets as ipIfStatsInDelivers, but allows for larger - values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 19 } - -ipIfStatsOutRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that local IP user- - protocols (including ICMP) supplied to IP in requests for - transmission. Note that this counter does not include any - datagrams counted in ipIfStatsOutForwDatagrams. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 20 } - -ipIfStatsHCOutRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that local IP user- - protocols (including ICMP) supplied to IP in requests for - transmission. This object counts the same packets as - - - ipIfStatsOutRequests, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 21 } - --- This object ID is reserved to allow the IDs for this table's objects --- to align with the objects in the ipSystemStatsTable. --- ::= {ipIfStatsEntry 22} - -ipIfStatsOutForwDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of datagrams for which this entity was not their - final IP destination and for which it was successful in - finding a path to their final destination. In entities - that do not act as IP routers, this counter will include - only those datagrams that were Source-Routed via this - entity, and the Source-Route processing was successful. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - forwarded datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 23 } - -ipIfStatsHCOutForwDatagrams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of datagrams for which this entity was not their - final IP destination and for which it was successful in - finding a path to their final destination. This object - counts the same packets as ipIfStatsOutForwDatagrams, but - allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - - - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 24 } - -ipIfStatsOutDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output IP datagrams for which no problem was - encountered to prevent their transmission to their - destination, but were discarded (e.g., for lack of - buffer space). Note that this counter would include - datagrams counted in ipIfStatsOutForwDatagrams if any such - datagrams met this (discretionary) discard criterion. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 25 } - -ipIfStatsOutFragReqds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams that would require fragmentation - in order to be transmitted. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 26 } - -ipIfStatsOutFragOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams that have been successfully - fragmented. - - When tracking interface statistics, the counter of the - - - outgoing interface is incremented for a successfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 27 } - -ipIfStatsOutFragFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP datagrams that have been discarded because - they needed to be fragmented but could not be. This - includes IPv4 packets that have the DF bit set and IPv6 - packets that are being forwarded and exceed the outgoing - link MTU. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for an unsuccessfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 28 } - -ipIfStatsOutFragCreates OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output datagram fragments that have been - generated as a result of IP fragmentation. - - When tracking interface statistics, the counter of the - outgoing interface is incremented for a successfully - fragmented datagram. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 29 } - - -ipIfStatsOutTransmits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that this entity supplied - to the lower layers for transmission. This includes - datagrams generated locally and those forwarded by this - entity. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 30 } - -ipIfStatsHCOutTransmits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IP datagrams that this entity supplied - to the lower layers for transmission. This object counts - the same datagrams as ipIfStatsOutTransmits, but allows for - larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 31 } - -ipIfStatsOutOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets in IP datagrams delivered to the - lower layers for transmission. Octets from datagrams - counted in ipIfStatsOutTransmits MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 32 } - -ipIfStatsHCOutOctets OBJECT-TYPE - - - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets in IP datagrams delivered to the - lower layers for transmission. This objects counts the same - octets as ipIfStatsOutOctets, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 33 } - -ipIfStatsInMcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams received. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 34 } - -ipIfStatsHCInMcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams received. This object - counts the same datagrams as ipIfStatsInMcastPkts, but - allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 35 } - -ipIfStatsInMcastOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in IP multicast - - - datagrams. Octets from datagrams counted in - ipIfStatsInMcastPkts MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 36 } - -ipIfStatsHCInMcastOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets received in IP multicast - datagrams. This object counts the same octets as - ipIfStatsInMcastOctets, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 37 } - -ipIfStatsOutMcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams transmitted. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 38 } - -ipIfStatsHCOutMcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP multicast datagrams transmitted. This - object counts the same datagrams as ipIfStatsOutMcastPkts, - but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - - - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 39 } - -ipIfStatsOutMcastOctets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets transmitted in IP multicast - datagrams. Octets from datagrams counted in - ipIfStatsOutMcastPkts MUST be counted here. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 40 } - -ipIfStatsHCOutMcastOctets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets transmitted in IP multicast - datagrams. This object counts the same octets as - ipIfStatsOutMcastOctets, but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 41 } - -ipIfStatsInBcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams received. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 42 } - -ipIfStatsHCInBcastPkts OBJECT-TYPE - - - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams received. This object - counts the same datagrams as ipIfStatsInBcastPkts, but - allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 43 } - -ipIfStatsOutBcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams transmitted. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 44 } - -ipIfStatsHCOutBcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IP broadcast datagrams transmitted. This - object counts the same datagrams as ipIfStatsOutBcastPkts, - but allows for larger values. - - Discontinuities in the value of this counter can occur at - re-initialization of the management system, and at other - times as indicated by the value of - ipIfStatsDiscontinuityTime." - ::= { ipIfStatsEntry 45 } - -ipIfStatsDiscontinuityTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime on the most recent occasion at which - - - any one or more of this entry's counters suffered a - discontinuity. - - If no such discontinuities have occurred since the last re- - initialization of the local management subsystem, then this - object contains a zero value." - ::= { ipIfStatsEntry 46 } - -ipIfStatsRefreshRate OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milli-seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum reasonable polling interval for this entry. - This object provides an indication of the minimum amount of - time required to update the counters in this entry." - ::= { ipIfStatsEntry 47 } - --- --- Internet Address Prefix table --- - -ipAddressPrefixTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpAddressPrefixEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table allows the user to determine the source of an IP - address or set of IP addresses, and allows other tables to - share the information via pointer rather than by copying. - - For example, when the node configures both a unicast and - anycast address for a prefix, the ipAddressPrefix objects - for those addresses will point to a single row in this - table. - - This table primarily provides support for IPv6 prefixes, and - several of the objects are less meaningful for IPv4. The - table continues to allow IPv4 addresses to allow future - flexibility. In order to promote a common configuration, - this document includes suggestions for default values for - IPv4 prefixes. Each of these values may be overridden if an - object is meaningful to the node. - - All prefixes used by this entity should be included in this - table independent of how the entity learned the prefix. - (This table isn't limited to prefixes learned from router - - - advertisements.)" - ::= { ip 32 } - -ipAddressPrefixEntry OBJECT-TYPE - SYNTAX IpAddressPrefixEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry in the ipAddressPrefixTable." - INDEX { ipAddressPrefixIfIndex, ipAddressPrefixType, - ipAddressPrefixPrefix, ipAddressPrefixLength } - ::= { ipAddressPrefixTable 1 } - -IpAddressPrefixEntry ::= SEQUENCE { - ipAddressPrefixIfIndex InterfaceIndex, - ipAddressPrefixType InetAddressType, - ipAddressPrefixPrefix InetAddress, - ipAddressPrefixLength InetAddressPrefixLength, - ipAddressPrefixOrigin IpAddressPrefixOriginTC, - ipAddressPrefixOnLinkFlag TruthValue, - ipAddressPrefixAutonomousFlag TruthValue, - ipAddressPrefixAdvPreferredLifetime Unsigned32, - ipAddressPrefixAdvValidLifetime Unsigned32 - } - -ipAddressPrefixIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface on - which this prefix is configured. The interface identified - by a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipAddressPrefixEntry 1 } - -ipAddressPrefixType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type of ipAddressPrefix." - ::= { ipAddressPrefixEntry 2 } - -ipAddressPrefixPrefix OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - - - DESCRIPTION - "The address prefix. The address type of this object is - specified in ipAddressPrefixType. The length of this object - is the standard length for objects of that type (4 or 16 - bytes). Any bits after ipAddressPrefixLength must be zero. - - Implementors need to be aware that, if the size of - ipAddressPrefixPrefix exceeds 114 octets, then OIDS of - instances of columns in this row will have more than 128 - sub-identifiers and cannot be accessed using SNMPv1, - SNMPv2c, or SNMPv3." - ::= { ipAddressPrefixEntry 3 } - -ipAddressPrefixLength OBJECT-TYPE - SYNTAX InetAddressPrefixLength - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The prefix length associated with this prefix. - - The value 0 has no special meaning for this object. It - simply refers to address '::/0'." - ::= { ipAddressPrefixEntry 4 } - -ipAddressPrefixOrigin OBJECT-TYPE - SYNTAX IpAddressPrefixOriginTC - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The origin of this prefix." - ::= { ipAddressPrefixEntry 5 } - -ipAddressPrefixOnLinkFlag OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object has the value 'true(1)', if this prefix can be - used for on-link determination; otherwise, the value is - 'false(2)'. - - The default for IPv4 prefixes is 'true(1)'." - REFERENCE "For IPv6 RFC 2461, especially sections 2 and 4.6.2 and - RFC 2462" - ::= { ipAddressPrefixEntry 6 } - -ipAddressPrefixAutonomousFlag OBJECT-TYPE - SYNTAX TruthValue - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Autonomous address configuration flag. When true(1), - indicates that this prefix can be used for autonomous - address configuration (i.e., can be used to form a local - interface address). If false(2), it is not used to auto- - configure a local interface address. - - The default for IPv4 prefixes is 'false(2)'." - REFERENCE "For IPv6 RFC 2461, especially sections 2 and 4.6.2 and - RFC 2462" - ::= { ipAddressPrefixEntry 7 } - -ipAddressPrefixAdvPreferredLifetime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The remaining length of time, in seconds, that this prefix - will continue to be preferred, i.e., time until deprecation. - - A value of 4,294,967,295 represents infinity. - - The address generated from a deprecated prefix should no - longer be used as a source address in new communications, - but packets received on such an interface are processed as - expected. - - The default for IPv4 prefixes is 4,294,967,295 (infinity)." - REFERENCE "For IPv6 RFC 2461, especially sections 2 and 4.6.2 and - RFC 2462" - ::= { ipAddressPrefixEntry 8 } - -ipAddressPrefixAdvValidLifetime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The remaining length of time, in seconds, that this prefix - will continue to be valid, i.e., time until invalidation. A - value of 4,294,967,295 represents infinity. - - The address generated from an invalidated prefix should not - appear as the destination or source address of a packet. - - - The default for IPv4 prefixes is 4,294,967,295 (infinity)." - REFERENCE "For IPv6 RFC 2461, especially sections 2 and 4.6.2 and - RFC 2462" - ::= { ipAddressPrefixEntry 9 } - --- --- Internet Address Table --- - -ipAddressSpinLock OBJECT-TYPE - SYNTAX TestAndIncr - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "An advisory lock used to allow cooperating SNMP managers to - coordinate their use of the set operation in creating or - modifying rows within this table. - - In order to use this lock to coordinate the use of set - operations, managers should first retrieve - ipAddressTableSpinLock. They should then determine the - appropriate row to create or modify. Finally, they should - issue the appropriate set command, including the retrieved - value of ipAddressSpinLock. If another manager has altered - the table in the meantime, then the value of - ipAddressSpinLock will have changed, and the creation will - fail as it will be specifying an incorrect value for - ipAddressSpinLock. It is suggested, but not required, that - the ipAddressSpinLock be the first var bind for each set of - objects representing a 'row' in a PDU." - ::= { ip 33 } - -ipAddressTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains addressing information relevant to the - entity's interfaces. - - This table does not contain multicast address information. - Tables for such information should be contained in multicast - specific MIBs, such as RFC 3019. - - While this table is writable, the user will note that - several objects, such as ipAddressOrigin, are not. The - intention in allowing a user to write to this table is to - allow them to add or remove any entry that isn't - - - permanent. The user should be allowed to modify objects - and entries when that would not cause inconsistencies - within the table. Allowing write access to objects, such - as ipAddressOrigin, could allow a user to insert an entry - and then label it incorrectly. - - Note well: When including IPv6 link-local addresses in this - table, the entry must use an InetAddressType of 'ipv6z' in - order to differentiate between the possible interfaces." - ::= { ip 34 } - -ipAddressEntry OBJECT-TYPE - SYNTAX IpAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An address mapping for a particular interface." - INDEX { ipAddressAddrType, ipAddressAddr } - ::= { ipAddressTable 1 } - -IpAddressEntry ::= SEQUENCE { - ipAddressAddrType InetAddressType, - ipAddressAddr InetAddress, - ipAddressIfIndex InterfaceIndex, - ipAddressType INTEGER, - ipAddressPrefix RowPointer, - ipAddressOrigin IpAddressOriginTC, - ipAddressStatus IpAddressStatusTC, - ipAddressCreated TimeStamp, - ipAddressLastChanged TimeStamp, - ipAddressRowStatus RowStatus, - ipAddressStorageType StorageType - } - -ipAddressAddrType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type of ipAddressAddr." - ::= { ipAddressEntry 1 } - -ipAddressAddr OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP address to which this entry's addressing information - - - pertains. The address type of this object is specified in - ipAddressAddrType. - - Implementors need to be aware that if the size of - ipAddressAddr exceeds 116 octets, then OIDS of instances of - columns in this row will have more than 128 sub-identifiers - and cannot be accessed using SNMPv1, SNMPv2c, or SNMPv3." - ::= { ipAddressEntry 2 } - -ipAddressIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface to - which this entry is applicable. The interface identified by - a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipAddressEntry 3 } - -ipAddressType OBJECT-TYPE - SYNTAX INTEGER { - unicast(1), - anycast(2), - broadcast(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of address. broadcast(3) is not a valid value for - IPv6 addresses (RFC 3513)." - DEFVAL { unicast } - ::= { ipAddressEntry 4 } - -ipAddressPrefix OBJECT-TYPE - SYNTAX RowPointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A pointer to the row in the prefix table to which this - address belongs. May be { 0 0 } if there is no such row." - DEFVAL { zeroDotZero } - ::= { ipAddressEntry 5 } - -ipAddressOrigin OBJECT-TYPE - SYNTAX IpAddressOriginTC - MAX-ACCESS read-only - STATUS current - - - DESCRIPTION - "The origin of the address." - ::= { ipAddressEntry 6 } - -ipAddressStatus OBJECT-TYPE - SYNTAX IpAddressStatusTC - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of the address, describing if the address can be - used for communication. - - In the absence of other information, an IPv4 address is - always preferred(1)." - DEFVAL { preferred } - ::= { ipAddressEntry 7 } - -ipAddressCreated OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this entry was created. - If this entry was created prior to the last re- - initialization of the local network management subsystem, - then this object contains a zero value." - ::= { ipAddressEntry 8 } - -ipAddressLastChanged OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this entry was last - updated. If this entry was updated prior to the last re- - initialization of the local network management subsystem, - then this object contains a zero value." - ::= { ipAddressEntry 9 } - -ipAddressRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this conceptual row. - - The RowStatus TC requires that this DESCRIPTION clause - states under which circumstances other objects in this row - - - can be modified. The value of this object has no effect on - whether other objects in this conceptual row can be - modified. - - A conceptual row can not be made active until the - ipAddressIfIndex has been set to a valid index." - ::= { ipAddressEntry 10 } - -ipAddressStorageType OBJECT-TYPE - SYNTAX StorageType - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The storage type for this conceptual row. If this object - has a value of 'permanent', then no other objects are - required to be able to be modified." - DEFVAL { volatile } - ::= { ipAddressEntry 11 } - --- --- the Internet Address Translation table --- - -ipNetToPhysicalTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpNetToPhysicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP Address Translation table used for mapping from IP - addresses to physical addresses. - - The Address Translation tables contain the IP address to - 'physical' address equivalences. Some interfaces do not use - translation tables for determining address equivalences - (e.g., DDN-X.25 has an algorithmic method); if all - interfaces are of this type, then the Address Translation - table is empty, i.e., has zero entries. - - While many protocols may be used to populate this table, ARP - and Neighbor Discovery are the most likely - options." - REFERENCE "RFC 826 and RFC 2461" - ::= { ip 35 } - -ipNetToPhysicalEntry OBJECT-TYPE - SYNTAX IpNetToPhysicalEntry - MAX-ACCESS not-accessible - STATUS current - - - DESCRIPTION - "Each entry contains one IP address to `physical' address - equivalence." - INDEX { ipNetToPhysicalIfIndex, - ipNetToPhysicalNetAddressType, - ipNetToPhysicalNetAddress } - ::= { ipNetToPhysicalTable 1 } - -IpNetToPhysicalEntry ::= SEQUENCE { - ipNetToPhysicalIfIndex InterfaceIndex, - ipNetToPhysicalNetAddressType InetAddressType, - ipNetToPhysicalNetAddress InetAddress, - ipNetToPhysicalPhysAddress PhysAddress, - ipNetToPhysicalLastUpdated TimeStamp, - ipNetToPhysicalType INTEGER, - ipNetToPhysicalState INTEGER, - ipNetToPhysicalRowStatus RowStatus - } - -ipNetToPhysicalIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface to - which this entry is applicable. The interface identified by - a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipNetToPhysicalEntry 1 } - -ipNetToPhysicalNetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The type of ipNetToPhysicalNetAddress." - ::= { ipNetToPhysicalEntry 2 } - -ipNetToPhysicalNetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP Address corresponding to the media-dependent - `physical' address. The address type of this object is - specified in ipNetToPhysicalAddressType. - - Implementors need to be aware that if the size of - - - ipNetToPhysicalNetAddress exceeds 115 octets, then OIDS of - instances of columns in this row will have more than 128 - sub-identifiers and cannot be accessed using SNMPv1, - SNMPv2c, or SNMPv3." - ::= { ipNetToPhysicalEntry 3 } - -ipNetToPhysicalPhysAddress OBJECT-TYPE - SYNTAX PhysAddress (SIZE(0..65535)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The media-dependent `physical' address. - - As the entries in this table are typically not persistent - when this object is written the entity SHOULD NOT save the - change to non-volatile storage." - ::= { ipNetToPhysicalEntry 4 } - -ipNetToPhysicalLastUpdated OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this entry was last - updated. If this entry was updated prior to the last re- - initialization of the local network management subsystem, - then this object contains a zero value." - ::= { ipNetToPhysicalEntry 5 } - -ipNetToPhysicalType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - invalid(2), -- an invalidated mapping - dynamic(3), - static(4), - local(5) -- local interface - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of mapping. - - Setting this object to the value invalid(2) has the effect - of invalidating the corresponding entry in the - ipNetToPhysicalTable. That is, it effectively dis- - associates the interface identified with said entry from the - mapping identified with said entry. It is an - implementation-specific matter as to whether the agent - - - removes an invalidated entry from the table. Accordingly, - management stations must be prepared to receive tabular - information from agents that corresponds to entries not - currently in use. Proper interpretation of such entries - requires examination of the relevant ipNetToPhysicalType - object. - - The 'dynamic(3)' type indicates that the IP address to - physical addresses mapping has been dynamically resolved - using e.g., IPv4 ARP or the IPv6 Neighbor Discovery - protocol. - - The 'static(4)' type indicates that the mapping has been - statically configured. Both of these refer to entries that - provide mappings for other entities addresses. - - The 'local(5)' type indicates that the mapping is provided - for an entity's own interface address. - - As the entries in this table are typically not persistent - when this object is written the entity SHOULD NOT save the - change to non-volatile storage." - DEFVAL { static } - ::= { ipNetToPhysicalEntry 6 } - -ipNetToPhysicalState OBJECT-TYPE - SYNTAX INTEGER { - reachable(1), -- confirmed reachability - - stale(2), -- unconfirmed reachability - - delay(3), -- waiting for reachability - -- confirmation before entering - -- the probe state - - probe(4), -- actively probing - - invalid(5), -- an invalidated mapping - - unknown(6), -- state can not be determined - -- for some reason. - - incomplete(7) -- address resolution is being - -- performed. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "The Neighbor Unreachability Detection state for the - interface when the address mapping in this entry is used. - If Neighbor Unreachability Detection is not in use (e.g. for - IPv4), this object is always unknown(6)." - REFERENCE "RFC 2461" - ::= { ipNetToPhysicalEntry 7 } - -ipNetToPhysicalRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this conceptual row. - - The RowStatus TC requires that this DESCRIPTION clause - states under which circumstances other objects in this row - can be modified. The value of this object has no effect on - whether other objects in this conceptual row can be - modified. - - A conceptual row can not be made active until the - ipNetToPhysicalPhysAddress object has been set. - - Note that if the ipNetToPhysicalType is set to 'invalid', - the managed node may delete the entry independent of the - state of this object." - ::= { ipNetToPhysicalEntry 8 } - --- --- The IPv6 Scope Zone Index Table. --- - -ipv6ScopeZoneIndexTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6ScopeZoneIndexEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table used to describe IPv6 unicast and multicast scope - zones. - - For those objects that have names rather than numbers, the - names were chosen to coincide with the names used in the - IPv6 address architecture document. " - REFERENCE "Section 2.7 of RFC 4291" - ::= { ip 36 } - -ipv6ScopeZoneIndexEntry OBJECT-TYPE - SYNTAX Ipv6ScopeZoneIndexEntry - - - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains the list of scope identifiers on a given - interface." - INDEX { ipv6ScopeZoneIndexIfIndex } - ::= { ipv6ScopeZoneIndexTable 1 } - -Ipv6ScopeZoneIndexEntry ::= SEQUENCE { - ipv6ScopeZoneIndexIfIndex InterfaceIndex, - ipv6ScopeZoneIndexLinkLocal InetZoneIndex, - ipv6ScopeZoneIndex3 InetZoneIndex, - ipv6ScopeZoneIndexAdminLocal InetZoneIndex, - ipv6ScopeZoneIndexSiteLocal InetZoneIndex, - ipv6ScopeZoneIndex6 InetZoneIndex, - ipv6ScopeZoneIndex7 InetZoneIndex, - ipv6ScopeZoneIndexOrganizationLocal InetZoneIndex, - ipv6ScopeZoneIndex9 InetZoneIndex, - ipv6ScopeZoneIndexA InetZoneIndex, - ipv6ScopeZoneIndexB InetZoneIndex, - ipv6ScopeZoneIndexC InetZoneIndex, - ipv6ScopeZoneIndexD InetZoneIndex - } - -ipv6ScopeZoneIndexIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface to - which these scopes belong. The interface identified by a - particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipv6ScopeZoneIndexEntry 1 } - -ipv6ScopeZoneIndexLinkLocal OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for the link-local scope on this interface." - ::= { ipv6ScopeZoneIndexEntry 2 } - -ipv6ScopeZoneIndex3 OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "The zone index for scope 3 on this interface." - ::= { ipv6ScopeZoneIndexEntry 3 } - -ipv6ScopeZoneIndexAdminLocal OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for the admin-local scope on this interface." - ::= { ipv6ScopeZoneIndexEntry 4 } - -ipv6ScopeZoneIndexSiteLocal OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for the site-local scope on this interface." - ::= { ipv6ScopeZoneIndexEntry 5 } - -ipv6ScopeZoneIndex6 OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for scope 6 on this interface." - ::= { ipv6ScopeZoneIndexEntry 6 } - -ipv6ScopeZoneIndex7 OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for scope 7 on this interface." - ::= { ipv6ScopeZoneIndexEntry 7 } - -ipv6ScopeZoneIndexOrganizationLocal OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for the organization-local scope on this - interface." - ::= { ipv6ScopeZoneIndexEntry 8 } - -ipv6ScopeZoneIndex9 OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - - - DESCRIPTION - "The zone index for scope 9 on this interface." - ::= { ipv6ScopeZoneIndexEntry 9 } - -ipv6ScopeZoneIndexA OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for scope A on this interface." - ::= { ipv6ScopeZoneIndexEntry 10 } - -ipv6ScopeZoneIndexB OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for scope B on this interface." - ::= { ipv6ScopeZoneIndexEntry 11 } - -ipv6ScopeZoneIndexC OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for scope C on this interface." - ::= { ipv6ScopeZoneIndexEntry 12 } - -ipv6ScopeZoneIndexD OBJECT-TYPE - SYNTAX InetZoneIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The zone index for scope D on this interface." - ::= { ipv6ScopeZoneIndexEntry 13 } - --- --- The Default Router Table --- This table simply lists the default routers; for more information --- about routing tables, see the routing MIBs --- - -ipDefaultRouterTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpDefaultRouterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table used to describe the default routers known to this - - - entity." - ::= { ip 37 } - -ipDefaultRouterEntry OBJECT-TYPE - SYNTAX IpDefaultRouterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains information about a default router known - to this entity." - INDEX {ipDefaultRouterAddressType, ipDefaultRouterAddress, - ipDefaultRouterIfIndex} - ::= { ipDefaultRouterTable 1 } - -IpDefaultRouterEntry ::= SEQUENCE { - ipDefaultRouterAddressType InetAddressType, - ipDefaultRouterAddress InetAddress, - ipDefaultRouterIfIndex InterfaceIndex, - ipDefaultRouterLifetime Unsigned32, - ipDefaultRouterPreference INTEGER - } - -ipDefaultRouterAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type for this row." - ::= { ipDefaultRouterEntry 1 } - -ipDefaultRouterAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP address of the default router represented by this - row. The address type of this object is specified in - ipDefaultRouterAddressType. - - Implementers need to be aware that if the size of - ipDefaultRouterAddress exceeds 115 octets, then OIDS of - instances of columns in this row will have more than 128 - sub-identifiers and cannot be accessed using SNMPv1, - SNMPv2c, or SNMPv3." - ::= { ipDefaultRouterEntry 2 } - -ipDefaultRouterIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - - - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface by - which the router can be reached. The interface identified - by a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipDefaultRouterEntry 3 } - -ipDefaultRouterLifetime OBJECT-TYPE - SYNTAX Unsigned32 (0..65535) - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The remaining length of time, in seconds, that this router - will continue to be useful as a default router. A value of - zero indicates that it is no longer useful as a default - router. It is left to the implementer of the MIB as to - whether a router with a lifetime of zero is removed from the - list. - - For IPv6, this value should be extracted from the router - advertisement messages." - REFERENCE "For IPv6 RFC 2462 sections 4.2 and 6.3.4" - ::= { ipDefaultRouterEntry 4 } - -ipDefaultRouterPreference OBJECT-TYPE - SYNTAX INTEGER { - reserved (-2), - low (-1), - medium (0), - high (1) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of preference given to this router as a - default router as described in he Default Router - Preferences document. Treating the value as a - 2 bit signed integer allows for simple arithmetic - comparisons. - - For IPv4 routers or IPv6 routers that are not using the - updated router advertisement format, this object is set to - medium (0)." - REFERENCE "RFC 4291, section 2.1" - ::= { ipDefaultRouterEntry 5 } - - --- --- Configuration information for constructing router advertisements --- - -ipv6RouterAdvertSpinLock OBJECT-TYPE - SYNTAX TestAndIncr - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "An advisory lock used to allow cooperating SNMP managers to - coordinate their use of the set operation in creating or - modifying rows within this table. - - In order to use this lock to coordinate the use of set - operations, managers should first retrieve - ipv6RouterAdvertSpinLock. They should then determine the - appropriate row to create or modify. Finally, they should - issue the appropriate set command including the retrieved - value of ipv6RouterAdvertSpinLock. If another manager has - altered the table in the meantime, then the value of - ipv6RouterAdvertSpinLock will have changed and the creation - will fail as it will be specifying an incorrect value for - ipv6RouterAdvertSpinLock. It is suggested, but not - required, that the ipv6RouterAdvertSpinLock be the first var - bind for each set of objects representing a 'row' in a PDU." - ::= { ip 38 } - -ipv6RouterAdvertTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6RouterAdvertEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table containing information used to construct router - advertisements." - ::= { ip 39 } - -ipv6RouterAdvertEntry OBJECT-TYPE - SYNTAX Ipv6RouterAdvertEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing information used to construct router - advertisements. - - Information in this table is persistent, and when this - object is written, the entity SHOULD save the change to - non-volatile storage." - INDEX { ipv6RouterAdvertIfIndex } - - - ::= { ipv6RouterAdvertTable 1 } - -Ipv6RouterAdvertEntry ::= SEQUENCE { - ipv6RouterAdvertIfIndex InterfaceIndex, - ipv6RouterAdvertSendAdverts TruthValue, - ipv6RouterAdvertMaxInterval Unsigned32, - ipv6RouterAdvertMinInterval Unsigned32, - ipv6RouterAdvertManagedFlag TruthValue, - ipv6RouterAdvertOtherConfigFlag TruthValue, - ipv6RouterAdvertLinkMTU Unsigned32, - ipv6RouterAdvertReachableTime Unsigned32, - ipv6RouterAdvertRetransmitTime Unsigned32, - ipv6RouterAdvertCurHopLimit Unsigned32, - ipv6RouterAdvertDefaultLifetime Unsigned32, - ipv6RouterAdvertRowStatus RowStatus - } - -ipv6RouterAdvertIfIndex OBJECT-TYPE - SYNTAX InterfaceIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index value that uniquely identifies the interface on - which router advertisements constructed with this - information will be transmitted. The interface identified - by a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipv6RouterAdvertEntry 1 } - -ipv6RouterAdvertSendAdverts OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A flag indicating whether the router sends periodic - router advertisements and responds to router solicitations - on this interface." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { false } - ::= { ipv6RouterAdvertEntry 2 } - -ipv6RouterAdvertMaxInterval OBJECT-TYPE - SYNTAX Unsigned32 (4..1800) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum time allowed between sending unsolicited router - - - advertisements from this interface." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { 600 } - ::= { ipv6RouterAdvertEntry 3 } - -ipv6RouterAdvertMinInterval OBJECT-TYPE - SYNTAX Unsigned32 (3..1350) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The minimum time allowed between sending unsolicited router - advertisements from this interface. - - The default is 0.33 * ipv6RouterAdvertMaxInterval, however, - in the case of a low value for ipv6RouterAdvertMaxInterval, - the minimum value for this object is restricted to 3." - REFERENCE "RFC 2461 Section 6.2.1" - ::= { ipv6RouterAdvertEntry 4 } - -ipv6RouterAdvertManagedFlag OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The true/false value to be placed into the 'managed address - configuration' flag field in router advertisements sent from - this interface." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { false } - ::= { ipv6RouterAdvertEntry 5 } - -ipv6RouterAdvertOtherConfigFlag OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The true/false value to be placed into the 'other stateful - configuration' flag field in router advertisements sent from - this interface." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { false } - ::= { ipv6RouterAdvertEntry 6 } - -ipv6RouterAdvertLinkMTU OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-create - STATUS current - - - DESCRIPTION - "The value to be placed in MTU options sent by the router on - this interface. - - A value of zero indicates that no MTU options are sent." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { 0 } - ::= { ipv6RouterAdvertEntry 7 } - -ipv6RouterAdvertReachableTime OBJECT-TYPE - SYNTAX Unsigned32 (0..3600000) - UNITS "milliseconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value to be placed in the reachable time field in router - advertisement messages sent from this interface. - - A value of zero in the router advertisement indicates that - the advertisement isn't specifying a value for reachable - time." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { 0 } - ::= { ipv6RouterAdvertEntry 8 } - -ipv6RouterAdvertRetransmitTime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "milliseconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value to be placed in the retransmit timer field in - router advertisements sent from this interface. - - A value of zero in the router advertisement indicates that - the advertisement isn't specifying a value for retrans - time." - REFERENCE "RFC 2461 Section 6.2.1" - DEFVAL { 0 } - ::= { ipv6RouterAdvertEntry 9 } - -ipv6RouterAdvertCurHopLimit OBJECT-TYPE - SYNTAX Unsigned32 (0..255) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The default value to be placed in the current hop limit - field in router advertisements sent from this interface. - - - The value should be set to the current diameter of the - Internet. - - A value of zero in the router advertisement indicates that - the advertisement isn't specifying a value for curHopLimit. - - The default should be set to the value specified in the IANA - web pages (www.iana.org) at the time of implementation." - REFERENCE "RFC 2461 Section 6.2.1" - ::= { ipv6RouterAdvertEntry 10 } - -ipv6RouterAdvertDefaultLifetime OBJECT-TYPE - SYNTAX Unsigned32 (0|4..9000) - UNITS "seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value to be placed in the router lifetime field of - router advertisements sent from this interface. This value - MUST be either 0 or between ipv6RouterAdvertMaxInterval and - 9000 seconds. - - A value of zero indicates that the router is not to be used - as a default router. - - The default is 3 * ipv6RouterAdvertMaxInterval." - REFERENCE "RFC 2461 Section 6.2.1" - ::= { ipv6RouterAdvertEntry 11 } - -ipv6RouterAdvertRowStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this conceptual row. - - As all objects in this conceptual row have default values, a - row can be created and made active by setting this object - appropriately. - - The RowStatus TC requires that this DESCRIPTION clause - states under which circumstances other objects in this row - can be modified. The value of this object has no effect on - whether other objects in this conceptual row can be - modified." - ::= { ipv6RouterAdvertEntry 12 } - --- - - --- ICMP section --- - -icmp OBJECT IDENTIFIER ::= { mib-2 5 } - --- --- ICMP non-message-specific counters --- - --- These object IDs are reserved, as they were used in earlier --- versions of the MIB module. In theory, OIDs are not assigned --- until the specification is released as an RFC; however, as some --- companies may have shipped code based on earlier versions of --- the MIB, it seems best to reserve these OIDs. --- ::= { icmp 27 } --- ::= { icmp 28 } - -icmpStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF IcmpStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of generic system-wide ICMP counters." - ::= { icmp 29 } - -icmpStatsEntry OBJECT-TYPE - SYNTAX IcmpStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the icmpStatsTable." - INDEX { icmpStatsIPVersion } - ::= { icmpStatsTable 1 } - -IcmpStatsEntry ::= SEQUENCE { - icmpStatsIPVersion InetVersion, - icmpStatsInMsgs Counter32, - icmpStatsInErrors Counter32, - icmpStatsOutMsgs Counter32, - icmpStatsOutErrors Counter32 - } - -icmpStatsIPVersion OBJECT-TYPE - SYNTAX InetVersion - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP version of the statistics." - - - ::= { icmpStatsEntry 1 } - -icmpStatsInMsgs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of ICMP messages that the entity received. - Note that this counter includes all those counted by - icmpStatsInErrors." - ::= { icmpStatsEntry 2 } - -icmpStatsInErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of ICMP messages that the entity received but - determined as having ICMP-specific errors (bad ICMP - checksums, bad length, etc.)." - ::= { icmpStatsEntry 3 } - -icmpStatsOutMsgs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of ICMP messages that the entity attempted - to send. Note that this counter includes all those counted - by icmpStatsOutErrors." - ::= { icmpStatsEntry 4 } - -icmpStatsOutErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of ICMP messages that this entity did not send - due to problems discovered within ICMP, such as a lack of - buffers. This value should not include errors discovered - outside the ICMP layer, such as the inability of IP to route - the resultant datagram. In some implementations, there may - be no types of error that contribute to this counter's - value." - ::= { icmpStatsEntry 5 } - --- --- per-version, per-message type ICMP counters - - --- - -icmpMsgStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF IcmpMsgStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of system-wide per-version, per-message type ICMP - counters." - ::= { icmp 30 } - -icmpMsgStatsEntry OBJECT-TYPE - SYNTAX IcmpMsgStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the icmpMsgStatsTable. - - The system should track each ICMP type value, even if that - ICMP type is not supported by the system. However, a - given row need not be instantiated unless a message of that - type has been processed, i.e., the row for - icmpMsgStatsType=X MAY be instantiated before but MUST be - instantiated after the first message with Type=X is - received or transmitted. After receiving or transmitting - any succeeding messages with Type=X, the relevant counter - must be incremented." - INDEX { icmpMsgStatsIPVersion, icmpMsgStatsType } - ::= { icmpMsgStatsTable 1 } - -IcmpMsgStatsEntry ::= SEQUENCE { - icmpMsgStatsIPVersion InetVersion, - icmpMsgStatsType Integer32, - icmpMsgStatsInPkts Counter32, - icmpMsgStatsOutPkts Counter32 - } - -icmpMsgStatsIPVersion OBJECT-TYPE - SYNTAX InetVersion - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IP version of the statistics." - ::= { icmpMsgStatsEntry 1 } - -icmpMsgStatsType OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "The ICMP type field of the message type being counted by - this row. - - Note that ICMP message types are scoped by the address type - in use." - REFERENCE "http://www.iana.org/assignments/icmp-parameters and - http://www.iana.org/assignments/icmpv6-parameters" - ::= { icmpMsgStatsEntry 2 } - -icmpMsgStatsInPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input packets for this AF and type." - ::= { icmpMsgStatsEntry 3 } - -icmpMsgStatsOutPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output packets for this AF and type." - ::= { icmpMsgStatsEntry 4 } --- --- conformance information --- - -ipMIBConformance OBJECT IDENTIFIER ::= { ipMIB 2 } - -ipMIBCompliances OBJECT IDENTIFIER ::= { ipMIBConformance 1 } -ipMIBGroups OBJECT IDENTIFIER ::= { ipMIBConformance 2 } - --- compliance statements -ipMIBCompliance2 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for systems that implement IP - - either IPv4 or IPv6. - - There are a number of INDEX objects that cannot be - represented in the form of OBJECT clauses in SMIv2, but - for which we have the following compliance requirements, - expressed in OBJECT clause form in this description - clause: - - - -- OBJECT ipSystemStatsIPVersion - -- SYNTAX InetVersion {ipv4(1), ipv6(2)} - -- DESCRIPTION - -- This MIB requires support for only IPv4 and IPv6 - -- versions. - -- - -- OBJECT ipIfStatsIPVersion - -- SYNTAX InetVersion {ipv4(1), ipv6(2)} - -- DESCRIPTION - -- This MIB requires support for only IPv4 and IPv6 - -- versions. - -- - -- OBJECT icmpStatsIPVersion - -- SYNTAX InetVersion {ipv4(1), ipv6(2)} - -- DESCRIPTION - -- This MIB requires support for only IPv4 and IPv6 - -- versions. - -- - -- OBJECT icmpMsgStatsIPVersion - -- SYNTAX InetVersion {ipv4(1), ipv6(2)} - -- DESCRIPTION - -- This MIB requires support for only IPv4 and IPv6 - -- versions. - -- - -- OBJECT ipAddressPrefixType - -- SYNTAX InetAddressType {ipv4(1), ipv6(2)} - -- DESCRIPTION - -- This MIB requires support for only global IPv4 and - -- IPv6 address types. - -- - -- OBJECT ipAddressPrefixPrefix - -- SYNTAX InetAddress (Size(4 | 16)) - -- DESCRIPTION - -- This MIB requires support for only global IPv4 and - -- IPv6 addresses and so the size can be either 4 or - -- 16 bytes. - -- - -- OBJECT ipAddressAddrType - -- SYNTAX InetAddressType {ipv4(1), ipv6(2), - -- ipv4z(3), ipv6z(4)} - -- DESCRIPTION - -- This MIB requires support for only global and - -- non-global IPv4 and IPv6 address types. - -- - -- OBJECT ipAddressAddr - -- SYNTAX InetAddress (Size(4 | 8 | 16 | 20)) - -- DESCRIPTION - -- This MIB requires support for only global and - - - -- non-global IPv4 and IPv6 addresses and so the size - -- can be 4, 8, 16, or 20 bytes. - -- - -- OBJECT ipNetToPhysicalNetAddressType - -- SYNTAX InetAddressType {ipv4(1), ipv6(2), - -- ipv4z(3), ipv6z(4)} - -- DESCRIPTION - -- This MIB requires support for only global and - -- non-global IPv4 and IPv6 address types. - -- - -- OBJECT ipNetToPhysicalNetAddress - -- SYNTAX InetAddress (Size(4 | 8 | 16 | 20)) - -- DESCRIPTION - -- This MIB requires support for only global and - -- non-global IPv4 and IPv6 addresses and so the size - -- can be 4, 8, 16, or 20 bytes. - -- - -- OBJECT ipDefaultRouterAddressType - -- SYNTAX InetAddressType {ipv4(1), ipv6(2), - -- ipv4z(3), ipv6z(4)} - -- DESCRIPTION - -- This MIB requires support for only global and - -- non-global IPv4 and IPv6 address types. - -- - -- OBJECT ipDefaultRouterAddress - -- SYNTAX InetAddress (Size(4 | 8 | 16 | 20)) - -- DESCRIPTION - -- This MIB requires support for only global and - -- non-global IPv4 and IPv6 addresses and so the size - -- can be 4, 8, 16, or 20 bytes." - - MODULE -- this module - - MANDATORY-GROUPS { ipSystemStatsGroup, ipAddressGroup, - ipNetToPhysicalGroup, ipDefaultRouterGroup, - icmpStatsGroup } - - GROUP ipSystemStatsHCOctetGroup - DESCRIPTION - "This group is mandatory for systems that have an aggregate - bandwidth of greater than 20MB. Including this group does - not allow an entity to neglect the 32 bit versions of these - objects." - - GROUP ipSystemStatsHCPacketGroup - DESCRIPTION - "This group is mandatory for systems that have an aggregate - bandwidth of greater than 650MB. Including this group - - - does not allow an entity to neglect the 32 bit versions of - these objects." - - GROUP ipIfStatsGroup - DESCRIPTION - "This group is optional for all systems." - - GROUP ipIfStatsHCOctetGroup - DESCRIPTION - "This group is mandatory for systems that include the - ipIfStatsGroup and include links with bandwidths of greater - than 20MB. Including this group does not allow an entity to - neglect the 32 bit versions of these objects." - - GROUP ipIfStatsHCPacketGroup - DESCRIPTION - "This group is mandatory for systems that include the - ipIfStatsGroup and include links with bandwidths of greater - than 650MB. Including this group does not allow an entity - to neglect the 32 bit versions of these objects." - - GROUP ipv4GeneralGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv4." - - GROUP ipv4IfGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv4." - - GROUP ipv4SystemStatsGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv4." - - GROUP ipv4SystemStatsHCPacketGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv4 and - that have an aggregate bandwidth of greater than 650MB. - Including this group does not allow an entity to neglect the - 32 bit versions of these objects." - - GROUP ipv4IfStatsGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv4 and - including the ipIfStatsGroup." - - GROUP ipv4IfStatsHCPacketGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv4 and - - - including the ipIfStatsHCPacketGroup. Including this group - does not allow an entity to neglect the 32 bit versions of - these objects." - - GROUP ipv6GeneralGroup2 - DESCRIPTION - "This group is mandatory for all systems supporting IPv6." - - GROUP ipv6IfGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv6." - - GROUP ipAddressPrefixGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv6." - - GROUP ipv6ScopeGroup - DESCRIPTION - "This group is mandatory for all systems supporting IPv6." - - GROUP ipv6RouterAdvertGroup - DESCRIPTION - "This group is mandatory for all IPv6 routers." - - GROUP ipLastChangeGroup - DESCRIPTION - "This group is optional for all agents." - - OBJECT ipv6IpForwarding - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6IpDefaultHopLimit - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv4InterfaceEnableStatus - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6InterfaceEnableStatus - MIN-ACCESS read-only - - - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6InterfaceForwarding - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipAddressSpinLock - MIN-ACCESS not-accessible - DESCRIPTION - "An agent is not required to provide write access to this - object. However, if an agent provides write access to any - of the other objects in the ipAddressGroup, it SHOULD - provide write access to this object as well." - - OBJECT ipAddressIfIndex - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - OBJECT ipAddressType - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - OBJECT ipAddressStatus - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - OBJECT ipAddressRowStatus --- SYNTAX RowStatus { active(1) } - SYNTAX INTEGER { active(1) } - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - OBJECT ipAddressStorageType - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object. - - - If an agent allows this object to be written or created, it - is not required to allow this object to be set to readOnly, - permanent, or nonVolatile." - - OBJECT ipNetToPhysicalPhysAddress - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - OBJECT ipNetToPhysicalType - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - OBJECT ipv6RouterAdvertSpinLock - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object. However, if an agent provides write access to - any of the other objects in the ipv6RouterAdvertGroup, it - SHOULD provide write access to this object as well." - - OBJECT ipv6RouterAdvertSendAdverts - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertMaxInterval - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertMinInterval - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertManagedFlag - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - - OBJECT ipv6RouterAdvertOtherConfigFlag - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertLinkMTU - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertReachableTime - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertRetransmitTime - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertCurHopLimit - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertDefaultLifetime - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write access to this - object." - - OBJECT ipv6RouterAdvertRowStatus - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write or create access - to this object." - - ::= { ipMIBCompliances 2 } - --- units of conformance - -ipv4GeneralGroup OBJECT-GROUP - OBJECTS { ipForwarding, ipDefaultTTL, ipReasmTimeout } - - - STATUS current - DESCRIPTION - "The group of IPv4-specific objects for basic management of - IPv4 entities." - ::= { ipMIBGroups 3 } - -ipv4IfGroup OBJECT-GROUP - OBJECTS { ipv4InterfaceReasmMaxSize, ipv4InterfaceEnableStatus, - ipv4InterfaceRetransmitTime } - STATUS current - DESCRIPTION - "The group of IPv4-specific objects for basic management of - IPv4 interfaces." - ::= { ipMIBGroups 4 } - -ipv6GeneralGroup2 OBJECT-GROUP - OBJECTS { ipv6IpForwarding, ipv6IpDefaultHopLimit } - STATUS current - DESCRIPTION - "The IPv6 group of objects providing for basic management of - IPv6 entities." - ::= { ipMIBGroups 5 } - -ipv6IfGroup OBJECT-GROUP - OBJECTS { ipv6InterfaceReasmMaxSize, ipv6InterfaceIdentifier, - ipv6InterfaceEnableStatus, ipv6InterfaceReachableTime, - ipv6InterfaceRetransmitTime, ipv6InterfaceForwarding } - STATUS current - DESCRIPTION - "The group of IPv6-specific objects for basic management of - IPv6 interfaces." - ::= { ipMIBGroups 6 } - -ipLastChangeGroup OBJECT-GROUP - OBJECTS { ipv4InterfaceTableLastChange, - ipv6InterfaceTableLastChange, - ipIfStatsTableLastChange } - STATUS current - DESCRIPTION - "The last change objects associated with this MIB. These - objects are optional for all agents. They SHOULD be - implemented on agents where it is possible to determine the - proper values. Where it is not possible to determine the - proper values, for example when the tables are split amongst - several sub-agents using AgentX, the agent MUST NOT - implement these objects to return an incorrect or static - value." - ::= { ipMIBGroups 7 } - - -ipSystemStatsGroup OBJECT-GROUP - OBJECTS { ipSystemStatsInReceives, - ipSystemStatsInOctets, - ipSystemStatsInHdrErrors, - ipSystemStatsInNoRoutes, - ipSystemStatsInAddrErrors, - ipSystemStatsInUnknownProtos, - ipSystemStatsInTruncatedPkts, - ipSystemStatsInForwDatagrams, - ipSystemStatsReasmReqds, - ipSystemStatsReasmOKs, - ipSystemStatsReasmFails, - ipSystemStatsInDiscards, - ipSystemStatsInDelivers, - ipSystemStatsOutRequests, - ipSystemStatsOutNoRoutes, - ipSystemStatsOutForwDatagrams, - ipSystemStatsOutDiscards, - ipSystemStatsOutFragReqds, - ipSystemStatsOutFragOKs, - ipSystemStatsOutFragFails, - ipSystemStatsOutFragCreates, - ipSystemStatsOutTransmits, - ipSystemStatsOutOctets, - ipSystemStatsInMcastPkts, - ipSystemStatsInMcastOctets, - ipSystemStatsOutMcastPkts, - ipSystemStatsOutMcastOctets, - ipSystemStatsDiscontinuityTime, - ipSystemStatsRefreshRate } - STATUS current - DESCRIPTION - "IP system wide statistics." - ::= { ipMIBGroups 8 } - -ipv4SystemStatsGroup OBJECT-GROUP - OBJECTS { ipSystemStatsInBcastPkts, ipSystemStatsOutBcastPkts } - STATUS current - DESCRIPTION - "IPv4 only system wide statistics." - ::= { ipMIBGroups 9 } - -ipSystemStatsHCOctetGroup OBJECT-GROUP - OBJECTS { ipSystemStatsHCInOctets, - ipSystemStatsHCOutOctets, - ipSystemStatsHCInMcastOctets, - ipSystemStatsHCOutMcastOctets -} - - - STATUS current - DESCRIPTION - "IP system wide statistics for systems that may overflow the - standard octet counters within 1 hour." - ::= { ipMIBGroups 10 } - -ipSystemStatsHCPacketGroup OBJECT-GROUP - OBJECTS { ipSystemStatsHCInReceives, - ipSystemStatsHCInForwDatagrams, - ipSystemStatsHCInDelivers, - ipSystemStatsHCOutRequests, - ipSystemStatsHCOutForwDatagrams, - ipSystemStatsHCOutTransmits, - ipSystemStatsHCInMcastPkts, - ipSystemStatsHCOutMcastPkts -} - STATUS current - DESCRIPTION - "IP system wide statistics for systems that may overflow the - standard packet counters within 1 hour." - ::= { ipMIBGroups 11 } - -ipv4SystemStatsHCPacketGroup OBJECT-GROUP - OBJECTS { ipSystemStatsHCInBcastPkts, - ipSystemStatsHCOutBcastPkts } - STATUS current - DESCRIPTION - "IPv4 only system wide statistics for systems that may - overflow the standard packet counters within 1 hour." - ::= { ipMIBGroups 12 } - -ipIfStatsGroup OBJECT-GROUP - OBJECTS { ipIfStatsInReceives, ipIfStatsInOctets, - ipIfStatsInHdrErrors, ipIfStatsInNoRoutes, - ipIfStatsInAddrErrors, ipIfStatsInUnknownProtos, - ipIfStatsInTruncatedPkts, ipIfStatsInForwDatagrams, - ipIfStatsReasmReqds, ipIfStatsReasmOKs, - ipIfStatsReasmFails, ipIfStatsInDiscards, - ipIfStatsInDelivers, ipIfStatsOutRequests, - ipIfStatsOutForwDatagrams, ipIfStatsOutDiscards, - ipIfStatsOutFragReqds, ipIfStatsOutFragOKs, - ipIfStatsOutFragFails, ipIfStatsOutFragCreates, - ipIfStatsOutTransmits, ipIfStatsOutOctets, - ipIfStatsInMcastPkts, ipIfStatsInMcastOctets, - ipIfStatsOutMcastPkts, ipIfStatsOutMcastOctets, - ipIfStatsDiscontinuityTime, ipIfStatsRefreshRate } - STATUS current - DESCRIPTION - - - "IP per-interface statistics." - ::= { ipMIBGroups 13 } - -ipv4IfStatsGroup OBJECT-GROUP - OBJECTS { ipIfStatsInBcastPkts, ipIfStatsOutBcastPkts } - STATUS current - DESCRIPTION - "IPv4 only per-interface statistics." - ::= { ipMIBGroups 14 } - -ipIfStatsHCOctetGroup OBJECT-GROUP - OBJECTS { ipIfStatsHCInOctets, ipIfStatsHCOutOctets, - ipIfStatsHCInMcastOctets, ipIfStatsHCOutMcastOctets } - STATUS current - DESCRIPTION - "IP per-interfaces statistics for systems that include - interfaces that may overflow the standard octet - counters within 1 hour." - ::= { ipMIBGroups 15 } - -ipIfStatsHCPacketGroup OBJECT-GROUP - OBJECTS { ipIfStatsHCInReceives, ipIfStatsHCInForwDatagrams, - ipIfStatsHCInDelivers, ipIfStatsHCOutRequests, - ipIfStatsHCOutForwDatagrams, ipIfStatsHCOutTransmits, - ipIfStatsHCInMcastPkts, ipIfStatsHCOutMcastPkts } - STATUS current - DESCRIPTION - "IP per-interfaces statistics for systems that include - interfaces that may overflow the standard packet counters - within 1 hour." - ::= { ipMIBGroups 16 } - -ipv4IfStatsHCPacketGroup OBJECT-GROUP - OBJECTS { ipIfStatsHCInBcastPkts, ipIfStatsHCOutBcastPkts } - STATUS current - DESCRIPTION - "IPv4 only per-interface statistics for systems that include - interfaces that may overflow the standard packet counters - within 1 hour." - ::= { ipMIBGroups 17 } - -ipAddressPrefixGroup OBJECT-GROUP - OBJECTS { ipAddressPrefixOrigin, - ipAddressPrefixOnLinkFlag, - ipAddressPrefixAutonomousFlag, - ipAddressPrefixAdvPreferredLifetime, - ipAddressPrefixAdvValidLifetime } - STATUS current - - - DESCRIPTION - "The group of objects for providing information about address - prefixes used by this node." - ::= { ipMIBGroups 18 } - -ipAddressGroup OBJECT-GROUP - OBJECTS { ipAddressSpinLock, ipAddressIfIndex, - ipAddressType, ipAddressPrefix, - ipAddressOrigin, ipAddressStatus, - ipAddressCreated, ipAddressLastChanged, - ipAddressRowStatus, ipAddressStorageType } - STATUS current - DESCRIPTION - "The group of objects for providing information about the - addresses relevant to this entity's interfaces." - ::= { ipMIBGroups 19 } - -ipNetToPhysicalGroup OBJECT-GROUP - OBJECTS { ipNetToPhysicalPhysAddress, ipNetToPhysicalLastUpdated, - ipNetToPhysicalType, ipNetToPhysicalState, - ipNetToPhysicalRowStatus } - STATUS current - DESCRIPTION - "The group of objects for providing information about the - mappings of network address to physical address known to - this node." - ::= { ipMIBGroups 20 } - -ipv6ScopeGroup OBJECT-GROUP - OBJECTS { ipv6ScopeZoneIndexLinkLocal, - ipv6ScopeZoneIndex3, - ipv6ScopeZoneIndexAdminLocal, - ipv6ScopeZoneIndexSiteLocal, - ipv6ScopeZoneIndex6, - ipv6ScopeZoneIndex7, - ipv6ScopeZoneIndexOrganizationLocal, - ipv6ScopeZoneIndex9, - ipv6ScopeZoneIndexA, - ipv6ScopeZoneIndexB, - ipv6ScopeZoneIndexC, - ipv6ScopeZoneIndexD } - STATUS current - DESCRIPTION - "The group of objects for managing IPv6 scope zones." - ::= { ipMIBGroups 21 } - -ipDefaultRouterGroup OBJECT-GROUP - OBJECTS { ipDefaultRouterLifetime, ipDefaultRouterPreference } - - - STATUS current - DESCRIPTION - "The group of objects for providing information about default - routers known to this node." - ::= { ipMIBGroups 22 } - -ipv6RouterAdvertGroup OBJECT-GROUP - OBJECTS { ipv6RouterAdvertSpinLock, - ipv6RouterAdvertSendAdverts, - ipv6RouterAdvertMaxInterval, - ipv6RouterAdvertMinInterval, - ipv6RouterAdvertManagedFlag, - ipv6RouterAdvertOtherConfigFlag, - ipv6RouterAdvertLinkMTU, - ipv6RouterAdvertReachableTime, - ipv6RouterAdvertRetransmitTime, - ipv6RouterAdvertCurHopLimit, - ipv6RouterAdvertDefaultLifetime, - ipv6RouterAdvertRowStatus -} - STATUS current - DESCRIPTION - "The group of objects for controlling information advertised - by IPv6 routers." - ::= { ipMIBGroups 23 } - -icmpStatsGroup OBJECT-GROUP - OBJECTS {icmpStatsInMsgs, icmpStatsInErrors, - icmpStatsOutMsgs, icmpStatsOutErrors, - icmpMsgStatsInPkts, icmpMsgStatsOutPkts } - STATUS current - DESCRIPTION - "The group of objects providing ICMP statistics." - ::= { ipMIBGroups 24 } - --- --- Deprecated objects --- - -ipInReceives OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of input datagrams received from - interfaces, including those received in error. - - This object has been deprecated, as a new IP version-neutral - - - table has been added. It is loosely replaced by - ipSystemStatsInRecieves." - ::= { ip 3 } - -ipInHdrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of input datagrams discarded due to errors in - their IPv4 headers, including bad checksums, version number - mismatch, other format errors, time-to-live exceeded, errors - discovered in processing their IPv4 options, etc. - - This object has been deprecated as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsInHdrErrors." - ::= { ip 4 } - -ipInAddrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of input datagrams discarded because the IPv4 - address in their IPv4 header's destination field was not a - valid address to be received at this entity. This count - includes invalid addresses (e.g., 0.0.0.0) and addresses of - unsupported Classes (e.g., Class E). For entities which are - not IPv4 routers, and therefore do not forward datagrams, - this counter includes datagrams discarded because the - destination address was not a local address. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsInAddrErrors." - ::= { ip 5 } - -ipForwDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of input datagrams for which this entity was not - their final IPv4 destination, as a result of which an - attempt was made to find a route to forward them to that - final destination. In entities which do not act as IPv4 - routers, this counter will include only those packets which - - - were Source-Routed via this entity, and the Source-Route - option processing was successful. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsInForwDatagrams." - ::= { ip 6 } - -ipInUnknownProtos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of locally-addressed datagrams received - successfully but discarded because of an unknown or - unsupported protocol. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsInUnknownProtos." - ::= { ip 7 } - -ipInDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of input IPv4 datagrams for which no problems - were encountered to prevent their continued processing, but - which were discarded (e.g., for lack of buffer space). Note - that this counter does not include any datagrams discarded - while awaiting re-assembly. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsInDiscards." - ::= { ip 8 } - -ipInDelivers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of input datagrams successfully delivered - to IPv4 user-protocols (including ICMP). - - This object has been deprecated as a new IP version neutral - table has been added. It is loosely replaced by - - - ipSystemStatsIndelivers." - ::= { ip 9 } - -ipOutRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of IPv4 datagrams which local IPv4 user - protocols (including ICMP) supplied to IPv4 in requests for - transmission. Note that this counter does not include any - datagrams counted in ipForwDatagrams. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsOutRequests." - ::= { ip 10 } - -ipOutDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of output IPv4 datagrams for which no problem was - encountered to prevent their transmission to their - destination, but which were discarded (e.g., for lack of - buffer space). Note that this counter would include - datagrams counted in ipForwDatagrams if any such packets met - this (discretionary) discard criterion. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsOutDiscards." - ::= { ip 11 } - -ipOutNoRoutes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of IPv4 datagrams discarded because no route - could be found to transmit them to their destination. Note - that this counter includes any packets counted in - ipForwDatagrams which meet this `no-route' criterion. Note - that this includes any datagrams which a host cannot route - because all of its default routers are down. - - This object has been deprecated, as a new IP version-neutral - - - table has been added. It is loosely replaced by - ipSystemStatsOutNoRoutes." - ::= { ip 12 } - -ipReasmReqds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of IPv4 fragments received which needed to be - reassembled at this entity. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsReasmReqds." - ::= { ip 14 } - -ipReasmOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of IPv4 datagrams successfully re-assembled. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsReasmOKs." - ::= { ip 15 } - -ipReasmFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of failures detected by the IPv4 re-assembly - algorithm (for whatever reason: timed out, errors, etc). - Note that this is not necessarily a count of discarded IPv4 - fragments since some algorithms (notably the algorithm in - RFC 815) can lose track of the number of fragments by - combining them as they are received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsReasmFails." - ::= { ip 16 } - -ipFragOKs OBJECT-TYPE - SYNTAX Counter32 - - - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of IPv4 datagrams that have been successfully - fragmented at this entity. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsOutFragOKs." - ::= { ip 17 } - -ipFragFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of IPv4 datagrams that have been discarded - because they needed to be fragmented at this entity but - could not be, e.g., because their Don't Fragment flag was - set. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - ipSystemStatsOutFragFails." - ::= { ip 18 } - -ipFragCreates OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of IPv4 datagram fragments that have been - generated as a result of fragmentation at this entity. - - This object has been deprecated as a new IP version neutral - table has been added. It is loosely replaced by - ipSystemStatsOutFragCreates." - ::= { ip 19 } - -ipRoutingDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of routing entries which were chosen to be - discarded even though they are valid. One possible reason - for discarding such an entry could be to free-up buffer - space for other routing entries. - - - This object was defined in pre-IPv6 versions of the IP MIB. - It was implicitly IPv4 only, but the original specifications - did not indicate this protocol restriction. In order to - clarify the specifications, this object has been deprecated - and a similar, but more thoroughly clarified, object has - been added to the IP-FORWARD-MIB." - ::= { ip 23 } - --- the deprecated IPv4 address table - -ipAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpAddrEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "The table of addressing information relevant to this - entity's IPv4 addresses. - - This table has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by the - ipAddressTable although several objects that weren't deemed - useful weren't carried forward while another - (ipAdEntReasmMaxSize) was moved to the ipv4InterfaceTable." - ::= { ip 20 } - -ipAddrEntry OBJECT-TYPE - SYNTAX IpAddrEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "The addressing information for one of this entity's IPv4 - addresses." - INDEX { ipAdEntAddr } - ::= { ipAddrTable 1 } - -IpAddrEntry ::= SEQUENCE { - ipAdEntAddr IpAddress, - ipAdEntIfIndex INTEGER, - ipAdEntNetMask IpAddress, - ipAdEntBcastAddr INTEGER, - ipAdEntReasmMaxSize INTEGER - } - -ipAdEntAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - - - "The IPv4 address to which this entry's addressing - information pertains." - ::= { ipAddrEntry 1 } - -ipAdEntIfIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The index value which uniquely identifies the interface to - which this entry is applicable. The interface identified by - a particular value of this index is the same interface as - identified by the same value of the IF-MIB's ifIndex." - ::= { ipAddrEntry 2 } - -ipAdEntNetMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The subnet mask associated with the IPv4 address of this - entry. The value of the mask is an IPv4 address with all - the network bits set to 1 and all the hosts bits set to 0." - ::= { ipAddrEntry 3 } - -ipAdEntBcastAddr OBJECT-TYPE - SYNTAX INTEGER (0..1) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The value of the least-significant bit in the IPv4 broadcast - address used for sending datagrams on the (logical) - interface associated with the IPv4 address of this entry. - For example, when the Internet standard all-ones broadcast - address is used, the value will be 1. This value applies to - both the subnet and network broadcast addresses used by the - entity on this (logical) interface." - ::= { ipAddrEntry 4 } - -ipAdEntReasmMaxSize OBJECT-TYPE - SYNTAX INTEGER (0..65535) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The size of the largest IPv4 datagram which this entity can - re-assemble from incoming IPv4 fragmented datagrams received - on this interface." - ::= { ipAddrEntry 5 } - - --- the deprecated IPv4 Address Translation table - --- The Address Translation tables contain the IpAddress to --- "physical" address equivalences. Some interfaces do not --- use translation tables for determining address --- equivalences (e.g., DDN-X.25 has an algorithmic method); --- if all interfaces are of this type, then the Address --- Translation table is empty, i.e., has zero entries. - -ipNetToMediaTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpNetToMediaEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "The IPv4 Address Translation table used for mapping from - IPv4 addresses to physical addresses. - - This table has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by the - ipNetToPhysicalTable." - ::= { ip 22 } - -ipNetToMediaEntry OBJECT-TYPE - SYNTAX IpNetToMediaEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Each entry contains one IpAddress to `physical' address - equivalence." - INDEX { ipNetToMediaIfIndex, - ipNetToMediaNetAddress } - ::= { ipNetToMediaTable 1 } - -IpNetToMediaEntry ::= SEQUENCE { - ipNetToMediaIfIndex INTEGER, - ipNetToMediaPhysAddress PhysAddress, - ipNetToMediaNetAddress IpAddress, - ipNetToMediaType INTEGER - } - -ipNetToMediaIfIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The interface on which this entry's equivalence is - effective. The interface identified by a particular value - of this index is the same interface as identified by the - - - same value of the IF-MIB's ifIndex. - - This object predates the rule limiting index objects to a - max access value of 'not-accessible' and so continues to use - a value of 'read-create'." - ::= { ipNetToMediaEntry 1 } - -ipNetToMediaPhysAddress OBJECT-TYPE - SYNTAX PhysAddress (SIZE(0..65535)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The media-dependent `physical' address. This object should - return 0 when this entry is in the 'incomplete' state. - - As the entries in this table are typically not persistent - when this object is written the entity should not save the - change to non-volatile storage. Note: a stronger - requirement is not used because this object was previously - defined." - ::= { ipNetToMediaEntry 2 } - -ipNetToMediaNetAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The IpAddress corresponding to the media-dependent - `physical' address. - - This object predates the rule limiting index objects to a - max access value of 'not-accessible' and so continues to use - a value of 'read-create'." - ::= { ipNetToMediaEntry 3 } - -ipNetToMediaType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - invalid(2), -- an invalidated mapping - dynamic(3), - static(4) - } - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The type of mapping. - - Setting this object to the value invalid(2) has the effect - - - of invalidating the corresponding entry in the - ipNetToMediaTable. That is, it effectively dis-associates - the interface identified with said entry from the mapping - identified with said entry. It is an implementation- - specific matter as to whether the agent removes an - invalidated entry from the table. Accordingly, management - stations must be prepared to receive tabular information - from agents that corresponds to entries not currently in - use. Proper interpretation of such entries requires - examination of the relevant ipNetToMediaType object. - - As the entries in this table are typically not persistent - when this object is written the entity should not save the - change to non-volatile storage. Note: a stronger - requirement is not used because this object was previously - defined." - ::= { ipNetToMediaEntry 4 } - --- the deprecated ICMP group - -icmpInMsgs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of ICMP messages which the entity received. - Note that this counter includes all those counted by - icmpInErrors. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - icmpStatsInMsgs." - ::= { icmp 1 } - -icmpInErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP messages which the entity received but - determined as having ICMP-specific errors (bad ICMP - checksums, bad length, etc.). - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - icmpStatsInErrors." - ::= { icmp 2 } - - -icmpInDestUnreachs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Destination Unreachable messages - received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 3 } - -icmpInTimeExcds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Time Exceeded messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 4 } - -icmpInParmProbs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Parameter Problem messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 5 } - -icmpInSrcQuenchs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Source Quench messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 6 } - - -icmpInRedirects OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Redirect messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 7 } - -icmpInEchos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Echo (request) messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 8 } - -icmpInEchoReps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Echo Reply messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 9 } - -icmpInTimestamps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Timestamp (request) messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 10 } - - -icmpInTimestampReps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Timestamp Reply messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 11 } - -icmpInAddrMasks OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Address Mask Request messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 12 } - -icmpInAddrMaskReps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Address Mask Reply messages received. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 13 } - -icmpOutMsgs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of ICMP messages which this entity - attempted to send. Note that this counter includes all - those counted by icmpOutErrors. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - icmpStatsOutMsgs." - - - ::= { icmp 14 } - -icmpOutErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP messages which this entity did not send - due to problems discovered within ICMP, such as a lack of - buffers. This value should not include errors discovered - outside the ICMP layer, such as the inability of IP to route - the resultant datagram. In some implementations, there may - be no types of error which contribute to this counter's - value. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by - icmpStatsOutErrors." - ::= { icmp 15 } - -icmpOutDestUnreachs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Destination Unreachable messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 16 } - -icmpOutTimeExcds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Time Exceeded messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 17 } - -icmpOutParmProbs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - - - DESCRIPTION - "The number of ICMP Parameter Problem messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 18 } - -icmpOutSrcQuenchs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Source Quench messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 19 } - -icmpOutRedirects OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Redirect messages sent. For a host, this - object will always be zero, since hosts do not send - redirects. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 20 } - -icmpOutEchos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Echo (request) messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 21 } - -icmpOutEchoReps OBJECT-TYPE - SYNTAX Counter32 - - - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Echo Reply messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 22 } - -icmpOutTimestamps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Timestamp (request) messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 23 } - -icmpOutTimestampReps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Timestamp Reply messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 24 } - -icmpOutAddrMasks OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Address Mask Request messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 25 } - -icmpOutAddrMaskReps OBJECT-TYPE - SYNTAX Counter32 - - - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The number of ICMP Address Mask Reply messages sent. - - This object has been deprecated, as a new IP version-neutral - table has been added. It is loosely replaced by a column in - the icmpMsgStatsTable." - ::= { icmp 26 } - --- deprecated conformance information --- deprecated compliance statements - -ipMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for systems that implement only - IPv4. For version-independence, this compliance statement - is deprecated in favor of ipMIBCompliance2." - MODULE -- this module - MANDATORY-GROUPS { ipGroup, - icmpGroup } - ::= { ipMIBCompliances 1 } - --- deprecated units of conformance - -ipGroup OBJECT-GROUP - OBJECTS { ipForwarding, ipDefaultTTL, - ipInReceives, ipInHdrErrors, - ipInAddrErrors, ipForwDatagrams, - ipInUnknownProtos, ipInDiscards, - ipInDelivers, ipOutRequests, - ipOutDiscards, ipOutNoRoutes, - ipReasmTimeout, ipReasmReqds, - ipReasmOKs, ipReasmFails, - ipFragOKs, ipFragFails, - ipFragCreates, ipAdEntAddr, - ipAdEntIfIndex, ipAdEntNetMask, - ipAdEntBcastAddr, ipAdEntReasmMaxSize, - ipNetToMediaIfIndex, ipNetToMediaPhysAddress, - ipNetToMediaNetAddress, ipNetToMediaType, - ipRoutingDiscards -} - STATUS deprecated - DESCRIPTION - "The ip group of objects providing for basic management of IP - entities, exclusive of the management of IP routes. - - - As part of the version independence, this group has been - deprecated. " - ::= { ipMIBGroups 1 } - -icmpGroup OBJECT-GROUP - OBJECTS { icmpInMsgs, icmpInErrors, - icmpInDestUnreachs, icmpInTimeExcds, - icmpInParmProbs, icmpInSrcQuenchs, - icmpInRedirects, icmpInEchos, - icmpInEchoReps, icmpInTimestamps, - icmpInTimestampReps, icmpInAddrMasks, - icmpInAddrMaskReps, icmpOutMsgs, - icmpOutErrors, icmpOutDestUnreachs, - icmpOutTimeExcds, icmpOutParmProbs, - icmpOutSrcQuenchs, icmpOutRedirects, - icmpOutEchos, icmpOutEchoReps, - icmpOutTimestamps, icmpOutTimestampReps, - icmpOutAddrMasks, icmpOutAddrMaskReps } - STATUS deprecated - DESCRIPTION - "The icmp group of objects providing ICMP statistics. - - As part of the version independence, this group has been - deprecated. " - ::= { ipMIBGroups 2 } - -END diff --git a/mibs/orig/IPV6-MIB b/mibs/orig/IPV6-MIB deleted file mode 100644 index 340ee20..0000000 --- a/mibs/orig/IPV6-MIB +++ /dev/null @@ -1,1459 +0,0 @@ --- ***************************************************************** --- Extracted from RFC-2465. --- --- Copyright (c) 2006 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - - IPV6-MIB DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, - mib-2, Counter32, Unsigned32, Integer32, - Gauge32 FROM SNMPv2-SMI - DisplayString, PhysAddress, TruthValue, TimeStamp, - VariablePointer, RowPointer FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, - NOTIFICATION-GROUP FROM SNMPv2-CONF - Ipv6IfIndex, Ipv6Address, Ipv6AddressPrefix, - Ipv6AddressIfIdentifier, - Ipv6IfIndexOrZero FROM IPV6-TC; - - ipv6MIB MODULE-IDENTITY - LAST-UPDATED "9802052155Z" - ORGANIZATION "IETF IPv6 Working Group" - CONTACT-INFO - " Dimitry Haskin - - Postal: Bay Networks, Inc. - 660 Techology Park Drive. - Billerica, MA 01821 - US - - Tel: +1-978-916-8124 - E-mail: dhaskin@baynetworks.com - - Steve Onishi - - Postal: Bay Networks, Inc. - 3 Federal Street - Billerica, MA 01821 - US - - Tel: +1-978-916-3816 - E-mail: sonishi@baynetworks.com" - DESCRIPTION - "The MIB module for entities implementing the IPv6 - protocol." - ::= { mib-2 55 } - - - -- the IPv6 general group - - ipv6MIBObjects OBJECT IDENTIFIER ::= { ipv6MIB 1 } - - - ipv6Forwarding OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), -- acting as a router - - -- NOT acting as - notForwarding(2) -- a router - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The indication of whether this entity is acting - as an IPv6 router in respect to the forwarding of - datagrams received by, but not addressed to, this - entity. IPv6 routers forward datagrams. IPv6 - hosts do not (except those source-routed via the - host). - - Note that for some managed nodes, this object may - take on only a subset of the values possible. - Accordingly, it is appropriate for an agent to - return a `wrongValue' response if a management - station attempts to change this object to an - inappropriate value." - ::= { ipv6MIBObjects 1 } - - ipv6DefaultHopLimit OBJECT-TYPE - SYNTAX INTEGER(0..255) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The default value inserted into the Hop Limit - field of the IPv6 header of datagrams originated - at this entity, whenever a Hop Limit value is not - supplied by the transport layer protocol." - DEFVAL { 64 } - ::= { ipv6MIBObjects 2 } - - ipv6Interfaces OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IPv6 interfaces (regardless of - their current state) present on this system." - ::= { ipv6MIBObjects 3 } - - ipv6IfTableLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time of the last - insertion or removal of an entry in the - ipv6IfTable. If the number of entries has been - unchanged since the last re-initialization of - the local network management subsystem, then this - object contains a zero value." - ::= { ipv6MIBObjects 4 } - - - -- the IPv6 Interfaces table - - ipv6IfTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6IfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IPv6 Interfaces table contains information - on the entity's internetwork-layer interfaces. - An IPv6 interface constitutes a logical network - layer attachment to the layer immediately below - IPv6 including internet layer 'tunnels', such as - tunnels over IPv4 or IPv6 itself." - ::= { ipv6MIBObjects 5 } - - ipv6IfEntry OBJECT-TYPE - SYNTAX Ipv6IfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An interface entry containing objects - about a particular IPv6 interface." - INDEX { ipv6IfIndex } - ::= { ipv6IfTable 1 } - - Ipv6IfEntry ::= SEQUENCE { - ipv6IfIndex Ipv6IfIndex, - ipv6IfDescr DisplayString, - ipv6IfLowerLayer VariablePointer, - ipv6IfEffectiveMtu Unsigned32, - ipv6IfReasmMaxSize Unsigned32, - ipv6IfIdentifier Ipv6AddressIfIdentifier, - ipv6IfIdentifierLength INTEGER, - ipv6IfPhysicalAddress PhysAddress, - ipv6IfAdminStatus INTEGER, - ipv6IfOperStatus INTEGER, - ipv6IfLastChange TimeStamp - } - - ipv6IfIndex OBJECT-TYPE - SYNTAX Ipv6IfIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A unique non-zero value identifying - the particular IPv6 interface." - ::= { ipv6IfEntry 1 } - - ipv6IfDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "A textual string containing information about the - interface. This string may be set by the network - management system." - ::= { ipv6IfEntry 2 } - - ipv6IfLowerLayer OBJECT-TYPE - SYNTAX VariablePointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object identifies the protocol layer over - which this network interface operates. If this - network interface operates over the data-link - layer, then the value of this object refers to an - instance of ifIndex [6]. If this network interface - operates over an IPv4 interface, the value of this - object refers to an instance of ipAdEntAddr [3]. - - If this network interface operates over another - IPv6 interface, the value of this object refers to - an instance of ipv6IfIndex. If this network - interface is not currently operating over an active - protocol layer, then the value of this object - should be set to the OBJECT ID { 0 0 }." - ::= { ipv6IfEntry 3 } - - ipv6IfEffectiveMtu OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the largest IPv6 packet which can be - sent/received on the interface, specified in - octets." - ::= { ipv6IfEntry 4 } - - ipv6IfReasmMaxSize OBJECT-TYPE - SYNTAX Unsigned32 (0..65535) - UNITS "octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The size of the largest IPv6 datagram which this - entity can re-assemble from incoming IPv6 fragmented - datagrams received on this interface." - ::= { ipv6IfEntry 5 } - - ipv6IfIdentifier OBJECT-TYPE - SYNTAX Ipv6AddressIfIdentifier - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Interface Identifier for this interface that - is (at least) unique on the link this interface is - attached to. The Interface Identifier is combined - with an address prefix to form an interface address. - - By default, the Interface Identifier is autoconfigured - according to the rules of the link type this - interface is attached to." - ::= { ipv6IfEntry 6 } - - ipv6IfIdentifierLength OBJECT-TYPE - SYNTAX INTEGER (0..64) - UNITS "bits" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The length of the Interface Identifier in bits." - ::= { ipv6IfEntry 7 } - - ipv6IfPhysicalAddress OBJECT-TYPE - SYNTAX PhysAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The interface's physical address. For example, for - an IPv6 interface attached to an 802.x link, this - object normally contains a MAC address. Note that - in some cases this address may differ from the - address of the interface's protocol sub-layer. The - interface's media-specific MIB must define the bit - and byte ordering and the format of the value of - this object. For interfaces which do not have such - an address (e.g., a serial line), this object should - contain an octet string of zero length." - ::= { ipv6IfEntry 8 } - - ipv6IfAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), -- ready to pass packets - down(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The desired state of the interface. When a managed - system initializes, all IPv6 interfaces start with - ipv6IfAdminStatus in the down(2) state. As a result - of either explicit management action or per - configuration information retained by the managed - system, ipv6IfAdminStatus is then changed to - the up(1) state (or remains in the down(2) state)." - ::= { ipv6IfEntry 9 } - - ipv6IfOperStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), -- ready to pass packets - - down(2), - - noIfIdentifier(3), -- no interface identifier - - -- status can not be - -- determined for some - unknown(4), -- reason - - -- some component is - notPresent(5) -- missing - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current operational state of the interface. - The noIfIdentifier(3) state indicates that no valid - Interface Identifier is assigned to the interface. - This state usually indicates that the link-local - interface address failed Duplicate Address Detection. - If ipv6IfAdminStatus is down(2) then ipv6IfOperStatus - should be down(2). If ipv6IfAdminStatus is changed - to up(1) then ipv6IfOperStatus should change to up(1) - if the interface is ready to transmit and receive - network traffic; it should remain in the down(2) or - noIfIdentifier(3) state if and only if there is a - fault that prevents it from going to the up(1) state; - it should remain in the notPresent(5) state if - the interface has missing (typically, lower layer) - components." - ::= { ipv6IfEntry 10 } - - ipv6IfLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time the interface - entered its current operational state. If the - current state was entered prior to the last - re-initialization of the local network management - subsystem, then this object contains a zero - value." - ::= { ipv6IfEntry 11 } - - -- IPv6 Interface Statistics table - - ipv6IfStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6IfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "IPv6 interface traffic statistics." - ::= { ipv6MIBObjects 6 } - - ipv6IfStatsEntry OBJECT-TYPE - SYNTAX Ipv6IfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An interface statistics entry containing objects - at a particular IPv6 interface." - AUGMENTS { ipv6IfEntry } - ::= { ipv6IfStatsTable 1 } - - Ipv6IfStatsEntry ::= SEQUENCE { - ipv6IfStatsInReceives - Counter32, - ipv6IfStatsInHdrErrors - Counter32, - ipv6IfStatsInTooBigErrors - Counter32, - ipv6IfStatsInNoRoutes - Counter32, - ipv6IfStatsInAddrErrors - Counter32, - ipv6IfStatsInUnknownProtos - Counter32, - ipv6IfStatsInTruncatedPkts - Counter32, - ipv6IfStatsInDiscards - Counter32, - ipv6IfStatsInDelivers - Counter32, - ipv6IfStatsOutForwDatagrams - Counter32, - ipv6IfStatsOutRequests - Counter32, - ipv6IfStatsOutDiscards - Counter32, - ipv6IfStatsOutFragOKs - Counter32, - ipv6IfStatsOutFragFails - Counter32, - ipv6IfStatsOutFragCreates - Counter32, - ipv6IfStatsReasmReqds - Counter32, - ipv6IfStatsReasmOKs - Counter32, - ipv6IfStatsReasmFails - Counter32, - ipv6IfStatsInMcastPkts - Counter32, - ipv6IfStatsOutMcastPkts - Counter32 - } - - ipv6IfStatsInReceives OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of input datagrams received by - the interface, including those received in error." - ::= { ipv6IfStatsEntry 1 } - - ipv6IfStatsInHdrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams discarded due to - errors in their IPv6 headers, including version - number mismatch, other format errors, hop count - exceeded, errors discovered in processing their - IPv6 options, etc." - ::= { ipv6IfStatsEntry 2 } - - ipv6IfStatsInTooBigErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams that could not be - forwarded because their size exceeded the link MTU - of outgoing interface." - ::= { ipv6IfStatsEntry 3 } - - ipv6IfStatsInNoRoutes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams discarded because no - route could be found to transmit them to their - destination." - ::= { ipv6IfStatsEntry 4 } - - ipv6IfStatsInAddrErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams discarded because - the IPv6 address in their IPv6 header's destination - field was not a valid address to be received at - this entity. This count includes invalid - addresses (e.g., ::0) and unsupported addresses - (e.g., addresses with unallocated prefixes). For - entities which are not IPv6 routers and therefore - do not forward datagrams, this counter includes - datagrams discarded because the destination address - was not a local address." - ::= { ipv6IfStatsEntry 5 } - - ipv6IfStatsInUnknownProtos OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of locally-addressed datagrams - received successfully but discarded because of an - unknown or unsupported protocol. This counter is - incremented at the interface to which these - datagrams were addressed which might not be - necessarily the input interface for some of - the datagrams." - ::= { ipv6IfStatsEntry 6 } - - - ipv6IfStatsInTruncatedPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input datagrams discarded because - datagram frame didn't carry enough data." - ::= { ipv6IfStatsEntry 7 } - - ipv6IfStatsInDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input IPv6 datagrams for which no - problems were encountered to prevent their - continued processing, but which were discarded - (e.g., for lack of buffer space). Note that this - counter does not include any datagrams discarded - while awaiting re-assembly." - ::= { ipv6IfStatsEntry 8 } - - ipv6IfStatsInDelivers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of datagrams successfully - delivered to IPv6 user-protocols (including ICMP). - This counter is incremented at the interface to - which these datagrams were addressed which might - not be necessarily the input interface for some of - the datagrams." - ::= { ipv6IfStatsEntry 9 } - - ipv6IfStatsOutForwDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output datagrams which this - entity received and forwarded to their final - destinations. In entities which do not act - as IPv6 routers, this counter will include - only those packets which were Source-Routed - via this entity, and the Source-Route - processing was successful. Note that for - a successfully forwarded datagram the counter - of the outgoing interface is incremented." - ::= { ipv6IfStatsEntry 10 } - - ipv6IfStatsOutRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of IPv6 datagrams which local IPv6 - user-protocols (including ICMP) supplied to IPv6 in - requests for transmission. Note that this counter - does not include any datagrams counted in - ipv6IfStatsOutForwDatagrams." - ::= { ipv6IfStatsEntry 11 } - - ipv6IfStatsOutDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output IPv6 datagrams for which no - problem was encountered to prevent their - transmission to their destination, but which were - discarded (e.g., for lack of buffer space). Note - that this counter would include datagrams counted - in ipv6IfStatsOutForwDatagrams if any such packets - met this (discretionary) discard criterion." - ::= { ipv6IfStatsEntry 12 } - - ipv6IfStatsOutFragOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IPv6 datagrams that have been - successfully fragmented at this output interface." - ::= { ipv6IfStatsEntry 13 } - - ipv6IfStatsOutFragFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IPv6 datagrams that have been - discarded because they needed to be fragmented - at this output interface but could not be." - ::= { ipv6IfStatsEntry 14 } - - ipv6IfStatsOutFragCreates OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of output datagram fragments that have - been generated as a result of fragmentation at - this output interface." - ::= { ipv6IfStatsEntry 15 } - - ipv6IfStatsReasmReqds OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IPv6 fragments received which needed - to be reassembled at this interface. Note that this - counter is incremented at the interface to which - these fragments were addressed which might not - be necessarily the input interface for some of - the fragments." - ::= { ipv6IfStatsEntry 16 } - - ipv6IfStatsReasmOKs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of IPv6 datagrams successfully - reassembled. Note that this counter is incremented - at the interface to which these datagrams were - addressed which might not be necessarily the input - interface for some of the fragments." - ::= { ipv6IfStatsEntry 17 } - - ipv6IfStatsReasmFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of failures detected by the IPv6 re- - assembly algorithm (for whatever reason: timed - out, errors, etc.). Note that this is not - necessarily a count of discarded IPv6 fragments - since some algorithms (notably the algorithm in - RFC 815) can lose track of the number of fragments - by combining them as they are received. - This counter is incremented at the interface to which - these fragments were addressed which might not be - necessarily the input interface for some of the - fragments." - ::= { ipv6IfStatsEntry 18 } - - ipv6IfStatsInMcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of multicast packets received - by the interface" - ::= { ipv6IfStatsEntry 19 } - - ipv6IfStatsOutMcastPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of multicast packets transmitted - by the interface" - ::= { ipv6IfStatsEntry 20 } - - - - -- Address Prefix table - - -- The IPv6 Address Prefix table contains information on - -- the entity's IPv6 Address Prefixes that are associated - -- with IPv6 interfaces. - - ipv6AddrPrefixTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6AddrPrefixEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The list of IPv6 address prefixes of - IPv6 interfaces." - ::= { ipv6MIBObjects 7 } - - ipv6AddrPrefixEntry OBJECT-TYPE - SYNTAX Ipv6AddrPrefixEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An interface entry containing objects of - a particular IPv6 address prefix." - INDEX { ipv6IfIndex, - ipv6AddrPrefix, - ipv6AddrPrefixLength } - ::= { ipv6AddrPrefixTable 1 } - - Ipv6AddrPrefixEntry ::= SEQUENCE { - ipv6AddrPrefix Ipv6AddressPrefix, - ipv6AddrPrefixLength INTEGER (0..128), - ipv6AddrPrefixOnLinkFlag TruthValue, - ipv6AddrPrefixAutonomousFlag TruthValue, - ipv6AddrPrefixAdvPreferredLifetime Unsigned32, - ipv6AddrPrefixAdvValidLifetime Unsigned32 - } - - ipv6AddrPrefix OBJECT-TYPE - SYNTAX Ipv6AddressPrefix - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The prefix associated with the this interface." - ::= { ipv6AddrPrefixEntry 1 } - - ipv6AddrPrefixLength OBJECT-TYPE - SYNTAX INTEGER (0..128) - UNITS "bits" - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The length of the prefix (in bits)." - ::= { ipv6AddrPrefixEntry 2 } - - ipv6AddrPrefixOnLinkFlag OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object has the value 'true(1)', if this - prefix can be used for on-link determination - and the value 'false(2)' otherwise." - ::= { ipv6AddrPrefixEntry 3 } - - ipv6AddrPrefixAutonomousFlag OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Autonomous address configuration flag. When - true(1), indicates that this prefix can be used - for autonomous address configuration (i.e. can - be used to form a local interface address). - If false(2), it is not used to autoconfigure - a local interface address." - ::= { ipv6AddrPrefixEntry 4 } - - ipv6AddrPrefixAdvPreferredLifetime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "It is the length of time in seconds that this - prefix will remain preferred, i.e. time until - deprecation. A value of 4,294,967,295 represents - infinity. - - The address generated from a deprecated prefix - should no longer be used as a source address in - new communications, but packets received on such - an interface are processed as expected." - ::= { ipv6AddrPrefixEntry 5 } - - ipv6AddrPrefixAdvValidLifetime OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "It is the length of time in seconds that this - prefix will remain valid, i.e. time until - invalidation. A value of 4,294,967,295 represents - infinity. - - The address generated from an invalidated prefix - should not appear as the destination or source - address of a packet." - ::= { ipv6AddrPrefixEntry 6 } - - - -- the IPv6 Address table - - -- The IPv6 address table contains this node's IPv6 - -- addressing information. - - ipv6AddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6AddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The table of addressing information relevant to - this node's interface addresses." - ::= { ipv6MIBObjects 8 } - - ipv6AddrEntry OBJECT-TYPE - SYNTAX Ipv6AddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The addressing information for one of this - node's interface addresses." - INDEX { ipv6IfIndex, ipv6AddrAddress } - ::= { ipv6AddrTable 1 } - - Ipv6AddrEntry ::= - SEQUENCE { - ipv6AddrAddress Ipv6Address, - ipv6AddrPfxLength INTEGER, - ipv6AddrType INTEGER, - ipv6AddrAnycastFlag TruthValue, - ipv6AddrStatus INTEGER - } - - ipv6AddrAddress OBJECT-TYPE - SYNTAX Ipv6Address - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IPv6 address to which this entry's addressing - information pertains." - ::= { ipv6AddrEntry 1 } - - ipv6AddrPfxLength OBJECT-TYPE - SYNTAX INTEGER(0..128) - UNITS "bits" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The length of the prefix (in bits) associated with - the IPv6 address of this entry." - ::= { ipv6AddrEntry 2 } - - ipv6AddrType OBJECT-TYPE - SYNTAX INTEGER { - -- address has been formed - -- using stateless - stateless(1), -- autoconfiguration - - -- address has been acquired - -- by stateful means - -- (e.g. DHCPv6, manual - stateful(2), -- configuration) - - -- type can not be determined - unknown(3) -- for some reason. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of address. Note that 'stateless(1)' - refers to an address that was statelessly - autoconfigured; 'stateful(2)' refers to a address - which was acquired by via a stateful protocol - (e.g. DHCPv6, manual configuration)." - ::= { ipv6AddrEntry 3 } - - ipv6AddrAnycastFlag OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object has the value 'true(1)', if this - address is an anycast address and the value - 'false(2)' otherwise." - ::= { ipv6AddrEntry 4 } - - ipv6AddrStatus OBJECT-TYPE - SYNTAX INTEGER { - preferred(1), - - deprecated(2), - - invalid(3), - - inaccessible(4), - - unknown(5) -- status can not be determined - -- for some reason. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Address status. The preferred(1) state indicates - that this is a valid address that can appear as - the destination or source address of a packet. - The deprecated(2) state indicates that this is - a valid but deprecated address that should no longer - be used as a source address in new communications, - but packets addressed to such an address are - processed as expected. The invalid(3) state indicates - that this is not valid address which should not - appear as the destination or source address of - a packet. The inaccessible(4) state indicates that - the address is not accessible because the interface - to which this address is assigned is not operational." - ::= { ipv6AddrEntry 5 } - - - -- IPv6 Routing objects - - ipv6RouteNumber OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of current ipv6RouteTable entries. - This is primarily to avoid having to read - the table in order to determine this number." - ::= { ipv6MIBObjects 9 } - - ipv6DiscardedRoutes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of routing entries which were chosen - to be discarded even though they are valid. One - possible reason for discarding such an entry could - be to free-up buffer space for other routing - entries." - ::= { ipv6MIBObjects 10 } - - - -- IPv6 Routing table - - ipv6RouteTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6RouteEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "IPv6 Routing table. This table contains - an entry for each valid IPv6 unicast route - that can be used for packet forwarding - determination." - ::= { ipv6MIBObjects 11 } - - ipv6RouteEntry OBJECT-TYPE - SYNTAX Ipv6RouteEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A routing entry." - INDEX { ipv6RouteDest, - ipv6RoutePfxLength, - ipv6RouteIndex } - ::= { ipv6RouteTable 1 } - - Ipv6RouteEntry ::= SEQUENCE { - ipv6RouteDest Ipv6Address, - ipv6RoutePfxLength INTEGER, - ipv6RouteIndex Unsigned32, - ipv6RouteIfIndex Ipv6IfIndexOrZero, - ipv6RouteNextHop Ipv6Address, - ipv6RouteType INTEGER, - ipv6RouteProtocol INTEGER, - ipv6RoutePolicy Integer32, - ipv6RouteAge Unsigned32, - ipv6RouteNextHopRDI Unsigned32, - ipv6RouteMetric Unsigned32, - ipv6RouteWeight Unsigned32, - ipv6RouteInfo RowPointer, - ipv6RouteValid TruthValue - } - - ipv6RouteDest OBJECT-TYPE - SYNTAX Ipv6Address - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The destination IPv6 address of this route. - This object may not take a Multicast address - value." - ::= { ipv6RouteEntry 1 } - - ipv6RoutePfxLength OBJECT-TYPE - SYNTAX INTEGER(0..128) - UNITS "bits" - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Indicates the prefix length of the destination - address." - ::= { ipv6RouteEntry 2 } - - ipv6RouteIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The value which uniquely identifies the route - among the routes to the same network layer - destination. The way this value is chosen is - implementation specific but it must be unique for - ipv6RouteDest/ipv6RoutePfxLength pair and remain - constant for the life of the route." - ::= { ipv6RouteEntry 3 } - - ipv6RouteIfIndex OBJECT-TYPE - SYNTAX Ipv6IfIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index value which uniquely identifies the local - interface through which the next hop of this - route should be reached. The interface identified - by a particular value of this index is the same - interface as identified by the same value of - ipv6IfIndex. For routes of the discard type this - value can be zero." - ::= { ipv6RouteEntry 4 } - - ipv6RouteNextHop OBJECT-TYPE - SYNTAX Ipv6Address - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "On remote routes, the address of the next - system en route; otherwise, ::0 - ('00000000000000000000000000000000'H in ASN.1 - string representation)." - ::= { ipv6RouteEntry 5 } - - ipv6RouteType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - - -- an route indicating that - -- packets to destinations - -- matching this route are - discard(2), -- to be discarded - - -- route to directly - local(3), -- connected (sub-)network - - -- route to a remote - - remote(4) -- destination - - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of route. Note that 'local(3)' refers - to a route for which the next hop is the final - destination; 'remote(4)' refers to a route for - which the next hop is not the final - destination; 'discard(2)' refers to a route - indicating that packets to destinations matching - this route are to be discarded (sometimes called - black-hole route)." - ::= { ipv6RouteEntry 6 } - - ipv6RouteProtocol OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - - -- non-protocol information, - -- e.g., manually configured - local(2), -- entries - - netmgmt(3), -- static route - - -- obtained via Neighbor - -- Discovery protocol, - ndisc(4), -- e.g., result of Redirect - - -- the following are all - -- dynamic routing protocols - rip(5), -- RIPng - ospf(6), -- Open Shortest Path First - bgp(7), -- Border Gateway Protocol - idrp(8), -- InterDomain Routing Protocol - igrp(9) -- InterGateway Routing Protocol - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The routing mechanism via which this route was - learned." - ::= { ipv6RouteEntry 7 } - - ipv6RoutePolicy OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The general set of conditions that would cause the - selection of one multipath route (set of next hops - for a given destination) is referred to as 'policy'. - Unless the mechanism indicated by ipv6RouteProtocol - specified otherwise, the policy specifier is the - 8-bit Traffic Class field of the IPv6 packet header - that is zero extended at the left to a 32-bit value. - - Protocols defining 'policy' otherwise must either - define a set of values which are valid for - this object or must implement an integer- - instanced policy table for which this object's - value acts as an index." - ::= { ipv6RouteEntry 8 } - - ipv6RouteAge OBJECT-TYPE - SYNTAX Unsigned32 - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of seconds since this route was last - updated or otherwise determined to be correct. - Note that no semantics of `too old' can be implied - except through knowledge of the routing protocol - by which the route was learned." - ::= { ipv6RouteEntry 9 } - - ipv6RouteNextHopRDI OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Routing Domain ID of the Next Hop. - The semantics of this object are determined by - the routing-protocol specified in the route's - ipv6RouteProtocol value. When this object is - unknown or not relevant its value should be set - to zero." - ::= { ipv6RouteEntry 10 } - - ipv6RouteMetric OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The routing metric for this route. The - semantics of this metric are determined by the - routing protocol specified in the route's - ipv6RouteProtocol value. When this is unknown - or not relevant to the protocol indicated by - ipv6RouteProtocol, the object value should be - set to its maximum value (4,294,967,295)." - ::= { ipv6RouteEntry 11 } - - ipv6RouteWeight OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The system internal weight value for this route. - The semantics of this value are determined by - the implementation specific rules. Generally, - within routes with the same ipv6RoutePolicy value, - the lower the weight value the more preferred is - the route." - ::= { ipv6RouteEntry 12 } - - ipv6RouteInfo OBJECT-TYPE - SYNTAX RowPointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A reference to MIB definitions specific to the - particular routing protocol which is responsible - for this route, as determined by the value - specified in the route's ipv6RouteProto value. - If this information is not present, its value - should be set to the OBJECT ID { 0 0 }, - which is a syntactically valid object identifier, - and any implementation conforming to ASN.1 - and the Basic Encoding Rules must be able to - generate and recognize this value." - ::= { ipv6RouteEntry 13 } - - ipv6RouteValid OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this object to the value 'false(2)' has - the effect of invalidating the corresponding entry - in the ipv6RouteTable object. That is, it - effectively disassociates the destination - identified with said entry from the route - identified with said entry. It is an - implementation-specific matter as to whether the - agent removes an invalidated entry from the table. - Accordingly, management stations must be prepared - to receive tabular information from agents that - corresponds to entries not currently in use. - Proper interpretation of such entries requires - examination of the relevant ipv6RouteValid - object." - DEFVAL { true } - ::= { ipv6RouteEntry 14 } - - - -- IPv6 Address Translation table - - ipv6NetToMediaTable OBJECT-TYPE - SYNTAX SEQUENCE OF Ipv6NetToMediaEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IPv6 Address Translation table used for - mapping from IPv6 addresses to physical addresses. - - The IPv6 address translation table contain the - Ipv6Address to `physical' address equivalencies. - Some interfaces do not use translation tables - for determining address equivalencies; if all - interfaces are of this type, then the Address - Translation table is empty, i.e., has zero - entries." - ::= { ipv6MIBObjects 12 } - - ipv6NetToMediaEntry OBJECT-TYPE - SYNTAX Ipv6NetToMediaEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Each entry contains one IPv6 address to `physical' - address equivalence." - INDEX { ipv6IfIndex, - ipv6NetToMediaNetAddress } - ::= { ipv6NetToMediaTable 1 } - - Ipv6NetToMediaEntry ::= SEQUENCE { - ipv6NetToMediaNetAddress - Ipv6Address, - ipv6NetToMediaPhysAddress - PhysAddress, - ipv6NetToMediaType - INTEGER, - ipv6IfNetToMediaState - INTEGER, - ipv6IfNetToMediaLastUpdated - TimeStamp, - ipv6NetToMediaValid - TruthValue - } - - ipv6NetToMediaNetAddress OBJECT-TYPE - SYNTAX Ipv6Address - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The IPv6 Address corresponding to - the media-dependent `physical' address." - ::= { ipv6NetToMediaEntry 1 } - - ipv6NetToMediaPhysAddress OBJECT-TYPE - SYNTAX PhysAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The media-dependent `physical' address." - ::= { ipv6NetToMediaEntry 2 } - - ipv6NetToMediaType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - dynamic(2), -- dynamically resolved - static(3), -- statically configured - local(4) -- local interface - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of the mapping. The 'dynamic(2)' type - indicates that the IPv6 address to physical - addresses mapping has been dynamically - resolved using the IPv6 Neighbor Discovery - protocol. The static(3)' types indicates that - the mapping has been statically configured. - The local(4) indicates that the mapping is - provided for an entity's own interface address." - ::= { ipv6NetToMediaEntry 3 } - - ipv6IfNetToMediaState OBJECT-TYPE - SYNTAX INTEGER { - reachable(1), -- confirmed reachability - - stale(2), -- unconfirmed reachability - - delay(3), -- waiting for reachability - -- confirmation before entering - -- the probe state - - probe(4), -- actively probing - - invalid(5), -- an invalidated mapping - - unknown(6) -- state can not be determined - -- for some reason. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Neighbor Unreachability Detection [8] state - for the interface when the address mapping in - this entry is used." - ::= { ipv6NetToMediaEntry 4 } - - ipv6IfNetToMediaLastUpdated OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this entry - was last updated. If this entry was updated prior - to the last re-initialization of the local network - management subsystem, then this object contains - a zero value." - ::= { ipv6NetToMediaEntry 5 } - - ipv6NetToMediaValid OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this object to the value 'false(2)' has - the effect of invalidating the corresponding entry - in the ipv6NetToMediaTable. That is, it effectively - disassociates the interface identified with said - entry from the mapping identified with said entry. - It is an implementation-specific matter as to - whether the agent removes an invalidated entry - from the table. Accordingly, management stations - must be prepared to receive tabular information - from agents that corresponds to entries not - currently in use. Proper interpretation of such - entries requires examination of the relevant - ipv6NetToMediaValid object." - DEFVAL { true } - ::= { ipv6NetToMediaEntry 6 } - - - -- definition of IPv6-related notifications. - -- Note that we need ipv6NotificationPrefix with the 0 - -- sub-identifier to make this MIB to translate to - -- an SNMPv1 format in a reversible way. For example - -- it is needed for proxies that convert SNMPv1 traps - -- to SNMPv2 notifications without MIB knowledge. - - ipv6Notifications OBJECT IDENTIFIER - ::= { ipv6MIB 2 } - ipv6NotificationPrefix OBJECT IDENTIFIER - ::= { ipv6Notifications 0 } - - ipv6IfStateChange NOTIFICATION-TYPE - OBJECTS { - ipv6IfDescr, - ipv6IfOperStatus -- the new state of the If. - } - STATUS current - DESCRIPTION - "An ipv6IfStateChange notification signifies - that there has been a change in the state of - an ipv6 interface. This notification should - be generated when the interface's operational - status transitions to or from the up(1) state." - - ::= { ipv6NotificationPrefix 1 } - - - -- conformance information - - ipv6Conformance OBJECT IDENTIFIER ::= { ipv6MIB 3 } - - ipv6Compliances OBJECT IDENTIFIER ::= { ipv6Conformance 1 } - ipv6Groups OBJECT IDENTIFIER ::= { ipv6Conformance 2 } - - -- compliance statements - - ipv6Compliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for SNMPv2 entities which - implement ipv6 MIB." - MODULE -- this module - MANDATORY-GROUPS { ipv6GeneralGroup, - ipv6NotificationGroup } - OBJECT ipv6Forwarding - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - OBJECT ipv6DefaultHopLimit - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - OBJECT ipv6IfDescr - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - OBJECT ipv6IfIdentifier - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - OBJECT ipv6IfIdentifierLength - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - - OBJECT ipv6IfAdminStatus - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - OBJECT ipv6RouteValid - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - OBJECT ipv6NetToMediaValid - MIN-ACCESS read-only - DESCRIPTION - "An agent is not required to provide write - access to this object" - ::= { ipv6Compliances 1 } - - ipv6GeneralGroup OBJECT-GROUP - OBJECTS { ipv6Forwarding, - ipv6DefaultHopLimit, - ipv6Interfaces, - ipv6IfTableLastChange, - ipv6IfDescr, - ipv6IfLowerLayer, - ipv6IfEffectiveMtu, - ipv6IfReasmMaxSize, - ipv6IfIdentifier, - ipv6IfIdentifierLength, - ipv6IfPhysicalAddress, - ipv6IfAdminStatus, - ipv6IfOperStatus, - ipv6IfLastChange, - ipv6IfStatsInReceives, - ipv6IfStatsInHdrErrors, - ipv6IfStatsInTooBigErrors, - ipv6IfStatsInNoRoutes, - ipv6IfStatsInAddrErrors, - ipv6IfStatsInUnknownProtos, - ipv6IfStatsInTruncatedPkts, - ipv6IfStatsInDiscards, - ipv6IfStatsInDelivers, - ipv6IfStatsOutForwDatagrams, - ipv6IfStatsOutRequests, - ipv6IfStatsOutDiscards, - ipv6IfStatsOutFragOKs, - ipv6IfStatsOutFragFails, - ipv6IfStatsOutFragCreates, - ipv6IfStatsReasmReqds, - ipv6IfStatsReasmOKs, - ipv6IfStatsReasmFails, - ipv6IfStatsInMcastPkts, - ipv6IfStatsOutMcastPkts, - ipv6AddrPrefixOnLinkFlag, - ipv6AddrPrefixAutonomousFlag, - ipv6AddrPrefixAdvPreferredLifetime, - ipv6AddrPrefixAdvValidLifetime, - ipv6AddrPfxLength, - ipv6AddrType, - ipv6AddrAnycastFlag, - ipv6AddrStatus, - ipv6RouteNumber, - ipv6DiscardedRoutes, - ipv6RouteIfIndex, - ipv6RouteNextHop, - ipv6RouteType, - ipv6RouteProtocol, - ipv6RoutePolicy, - ipv6RouteAge, - ipv6RouteNextHopRDI, - ipv6RouteMetric, - ipv6RouteWeight, - ipv6RouteInfo, - ipv6RouteValid, - ipv6NetToMediaPhysAddress, - ipv6NetToMediaType, - ipv6IfNetToMediaState, - ipv6IfNetToMediaLastUpdated, - ipv6NetToMediaValid } - STATUS current - DESCRIPTION - "The IPv6 group of objects providing for basic - management of IPv6 entities." - ::= { ipv6Groups 1 } - - ipv6NotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { ipv6IfStateChange } - STATUS current - DESCRIPTION - "The notification that an IPv6 entity is required - to implement." - - - ::= { ipv6Groups 2 } - - END diff --git a/mibs/orig/IPV6-TC b/mibs/orig/IPV6-TC deleted file mode 100644 index 70a6315..0000000 --- a/mibs/orig/IPV6-TC +++ /dev/null @@ -1,75 +0,0 @@ --- ***************************************************************** --- IPV6-TC.my: IPV6 Textual Conventions --- --- Copyright (c) 2006 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - - IPV6-TC DEFINITIONS ::= BEGIN - - IMPORTS - Integer32 FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC; - - - -- definition of textual conventions - Ipv6Address ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:" - STATUS current - DESCRIPTION - "This data type is used to model IPv6 addresses. - This is a binary string of 16 octets in network - byte-order." - SYNTAX OCTET STRING (SIZE (16)) - - Ipv6AddressPrefix ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:" - STATUS current - DESCRIPTION - "This data type is used to model IPv6 address - prefixes. This is a binary string of up to 16 - octets in network byte-order." - SYNTAX OCTET STRING (SIZE (0..16)) - - Ipv6AddressIfIdentifier ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:" - STATUS current - DESCRIPTION - "This data type is used to model IPv6 address - interface identifiers. This is a binary string - of up to 8 octets in network byte-order." - SYNTAX OCTET STRING (SIZE (0..8)) - - Ipv6IfIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "A unique value, greater than zero for each - internetwork-layer interface in the managed - system. It is recommended that values are assigned - contiguously starting from 1. The value for each - internetwork-layer interface must remain constant - at least from one re-initialization of the entity's - network management system to the next - re-initialization." - SYNTAX Integer32 (1..2147483647) - - Ipv6IfIndexOrZero ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "This textual convention is an extension of the - Ipv6IfIndex convention. The latter defines - a greater than zero value used to identify an IPv6 - interface in the managed system. This extension - permits the additional value of zero. The value - zero is object-specific and must therefore be - defined as part of the description of any object - which uses this syntax. Examples of the usage of - zero might include situations where interface was - unknown, or when none or all interfaces need to be - referenced." - SYNTAX Integer32 (0..2147483647) - - END diff --git a/mibs/orig/MG-SNMP-UPS-MIB b/mibs/orig/MG-SNMP-UPS-MIB deleted file mode 100644 index 08f3512..0000000 --- a/mibs/orig/MG-SNMP-UPS-MIB +++ /dev/null @@ -1,2967 +0,0 @@ -MG-SNMP-UPS-MIB DEFINITIONS ::= BEGIN - --- Title: UPS MIB --- Date: October 11, 1995 --- Author: MGE UPS SYSTEMS --- Release: V1.6 - --- Date: October 23, 2003 --- Author: MGE UPS SYSTEMS --- Release: V1.7 AB - Add variables for Environment sensor, see comments beginning with AB Release - --- Date: November 22, 2004 --- Author: MGE UPS SYSTEMS - PV --- Release: V1.7 AC - Add compatibility with SMI V2 - -IMPORTS - enterprises,IpAddress,TimeTicks - FROM RFC1155-SMI - DisplayString - FROM RFC1213-MIB - OBJECT-TYPE - FROM RFC-1212 - TRAP-TYPE - FROM RFC-1215; - ----- --- Path to the root ----- -merlinGerin OBJECT IDENTIFIER ::= { enterprises 705 } -upsmg OBJECT IDENTIFIER ::= { merlinGerin 1 } - --- Management and Configuration groups of the MIB -upsmgIdent OBJECT IDENTIFIER ::= { upsmg 1 } -upsmgManagement OBJECT IDENTIFIER ::= { upsmg 2 } -upsmgReceptacle OBJECT IDENTIFIER ::= { upsmg 3 } -upsmgConfig OBJECT IDENTIFIER ::= { upsmg 4 } - --- UPS Monitoring groups of the MIB -upsmgBattery OBJECT IDENTIFIER ::= { upsmg 5 } -upsmgInput OBJECT IDENTIFIER ::= { upsmg 6 } -upsmgOutput OBJECT IDENTIFIER ::= { upsmg 7 } -upsmgEnviron OBJECT IDENTIFIER ::= { upsmg 8 } - --- UPS Controlling groups of the MIB -upsmgControl OBJECT IDENTIFIER ::= { upsmg 9 } -upsmgTest OBJECT IDENTIFIER ::= { upsmg 10 } -upsmgTraps OBJECT IDENTIFIER ::= { upsmg 11 } - -upsmgAgent OBJECT IDENTIFIER ::= { upsmg 12 } -upsmgRemote OBJECT IDENTIFIER ::= { upsmg 13 } - ----- --- Definition of object types ----- - --- Management and Configuration groups of the MIB: --- upsmgIdent(1), upsmgManagement(2), upsmgReceptacle(3), upsmgConfig(4) - --------------------------- --- the upsmgIdent group -- --------------------------- - -upsmgIdentFamilyName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS family name (e.g. `PULSAR', `COMET', `GALAXY', ...)." - ::= { upsmgIdent 1 } - -upsmgIdentModelName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS model name (e.g. `PSX20', `SV9', ... )." - ::= { upsmgIdent 2 } - -upsmgIdentRevisionLevel OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS revision level." - ::= { upsmgIdent 3 } - -upsmgIdentFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS microprocessor firmware version number." - ::= { upsmgIdent 4 } - -upsmgIdentUserID OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS user identification (set by administrator)." - ::= { upsmgIdent 5 } - -upsmgIdentInstallationDate OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS installation date in dd/mm/yy format." - ::= { upsmgIdent 6 } - -upsmgIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS manufacturing serial number." - ::= { upsmgIdent 7 } - --------------------------- --- the upsmgManagement group -- --------------------------- - --- This group gives objects for description of a list of Managers. --- A management platform is identified, can be powered by the UPS, --- and is allowed to a certain level of management. - -upsmgManagersNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of managers that could manage the UPS." - ::= { upsmgManagement 1 } - -upsmgManagersTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgManagersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of managers." - ::= { upsmgManagement 2 } - -upsmgManagersEntry OBJECT-TYPE - SYNTAX UpsmgManagersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a manager entry in the managers table." - INDEX { mgmanagerIndex } - ::= { upsmgManagersTable 1 } - -UpsmgManagersEntry ::= SEQUENCE { -- ASN.1 type definition - mgmanagerIndex INTEGER, - mgmanagerDeviceNumber INTEGER, - mgmanagerNMSType INTEGER, - mgmanagerCommType INTEGER, - mgmanagerDescr DisplayString, - mgmanagerAddress IpAddress, - mgmanagerCommunity DisplayString, - mgmanagerSeverityLevel INTEGER, - mgmanagerTrapAck INTEGER -} - -mgmanagerIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each manager. Its value ranges between 1 - and the value of upsmgManagersNum." - ::= { upsmgManagersEntry 1 } - -mgmanagerDeviceNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object is the number of the manager device in the - DevicesTable of the Config group. This means that the - manager is powered by the UPS. If not the default value is 0." - ::= { upsmgManagersEntry 2 } - -mgmanagerNMSType OBJECT-TYPE - SYNTAX INTEGER { - umclient(1), - decnetview(2), - umview(3), - dview(4), - hpopenview(5), - sunnetmanager(6), - novellnms(7), - ibmnetview(8), - other(9), - autolearning(10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The type of manager according to the NMS platform. We - include in the manager class all systems which will be - notified by the agent via receiving traps (e.g. basic - to complex NMS software)." - ::= { upsmgManagersEntry 3 } - -mgmanagerCommType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - invalid(2), -- an invalidated manager - cmip(3), -- OSI CMIP - snmpv1(4), -- SNMPv1 - snmpv2(5) -- SNMPv2 - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The level of communication protocol for that manager. - Setting this object to value invalid(2) has the effect of - invalidating the corresponding entry in the upsmgManagersTable. - It is an implementation-specific matter as to wether the agent - removes an invalidated entry from the table. Accordingly, - management stations must be prepared to receive tabular - information from agents that corresponds to entry not currently - in use. Proper interpretation of such entries requires - examination of the relevant mgmanagerCommType object." - ::= { upsmgManagersEntry 4 } - -mgmanagerDescr OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A textual string containing information about the manager. - (manufacturer and version description)." - ::= { upsmgManagersEntry 5 } - -mgmanagerAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The IP address of the manager station receiving traps. The - value of this object is meaningful if and only if the value - of the relevant mgmanagerCommType object is snmp type." - ::= { upsmgManagersEntry 6 } - -mgmanagerCommunity OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The manager community string." - ::= { upsmgManagersEntry 7 } - -mgmanagerSeverityLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity level of traps to be received by this manager." - ::= { upsmgManagersEntry 8 } - -mgmanagerTrapAck OBJECT-TYPE - SYNTAX INTEGER { - mgack(1), - mgnoack(2), - stdnomg(3), - mgacks(4), - cpqnoack(5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The manager Trap Acknowledgement status. Setting - this object to mgnoack(2) or stdnomg(3) or cpqnoack(5) - disables the trap acknowledgement from the related - manager. The MG enterprise specific trap should then - be sent only once by the agent to this manager in case - of mgnoack(2), and should not be sent by the agent to - this manager in case of stdnomg(3) or cpqnoack(5). - mgack(1) allows a basic mecanism for acknowledged - traps using upsmgAgentTrapAck object set by the - manager to the enterprise specific number of the trap. - mgacks(5) allows the enhanced mecanism using the - upsmgAgentTrapSignature object set by the manager - to the signature received within the trap var binding." - ::= { upsmgManagersEntry 9 } - --------------------------- --- the upsmgReceptacle group -- --------------------------- - --- This group gives objects for description of the receptacles of the --- UPS. The receptacle notion has been extended to many configurations: --- For a small simple UPS, there is only one receptacle which corresponds --- to the output of the UPS. --- For a more complex UPS with powershare capabilities, there is a one-level --- receptacle table allowing to distribute ON/OFF control on the receptacles. --- For others (EHQ, big UPS with Distributed Power Units), there is a --- two-level receptacle table allowing to distribute control and management --- of the receptacles plugs into one of the first level receptacles. - -upsmgReceptaclesNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of receptacles controlled by the UPS." - ::= { upsmgReceptacle 1 } - -upsmgReceptaclesTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgReceptaclesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of receptacles that are controlled by the UPS." - ::= { upsmgReceptacle 2 } - -upsmgReceptaclesEntry OBJECT-TYPE - SYNTAX UpsmgReceptaclesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a receptacle in the table." - INDEX { mgreceptacleIndex } - ::= { upsmgReceptaclesTable 1 } - -UpsmgReceptaclesEntry ::= SEQUENCE { -- ASN.1 type definition - mgreceptacleIndex INTEGER, - mgreceptacleLevel INTEGER, - mgreceptacleType DisplayString, - mgreceptacleIdent DisplayString, - mgreceptacleState INTEGER, - mgreceptacleReceptacle INTEGER, - mgreceptaclePowerCons INTEGER, - mgreceptacleOverload INTEGER, - mgreceptacleAutonomy INTEGER - } - -mgreceptacleIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each receptacle. Its value ranges between - 1 and the value of upsmgReceptaclesNum." - ::= { upsmgReceptaclesEntry 1 } - -mgreceptacleLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The level of receptacle. - - Setting this object to value invalid(2) has the effect of - invalidating the corresponding entry in the upsmgReceptaclesTable. - It is an implementation-specific matter as to wether the agent - removes an invalidated entry from the table. Accordingly, - management stations must be prepared to receive tabular - information from agents that corresponds to entry not currently - in use. Proper interpretation of such entries requires - examination of the relevant receptacleLevel object. - Values 1 and 4 are reserved, value 3 is used to identify a simple - one-level receptacle, and values greater than 4 represent a - group of equivalent receptacles." - ::= { upsmgReceptaclesEntry 2 } - -mgreceptacleType OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A textual string for the receptacle type." - ::= { upsmgReceptaclesEntry 3 } - -mgreceptacleIdent OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A textual string identification for the user." - ::= { upsmgReceptaclesEntry 4 } - -mgreceptacleState OBJECT-TYPE - SYNTAX INTEGER { - manualON(1), -- after manual turn on - manualOFF(2), -- after manual turn off - normalON(3), -- after normal restart sequence - normalOFF(4), -- after normal shutoff sequence - controlON(5), -- after upsControl on command - controlOFF(6), -- after upsControl off command - scheduleON(7), -- after schedule turn on - scheduleOFF(8) -- after schedule turn off - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ON/OFF status of the receptacle." - ::= { upsmgReceptaclesEntry 5 } - -mgreceptacleReceptacle OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The receptacle number of the second level receptacle father. - - The value of this object is meaningful if and only if the value - of the relevant mgreceptacleType object is related to a two-level - receptacle class. Otherwise the default value is 0." - ::= { upsmgReceptaclesEntry 6 } - -mgreceptaclePowerCons OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The volt-ampere rating of the receptacle. - - The value of this object is meaningful if and only if the value - of the relevant mgreceptacleType object is related to a two-level - receptacle class. Otherwise the default value is 0." - ::= { upsmgReceptaclesEntry 7 } - -mgreceptacleOverload OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The overload status of the receptacle. - - The value of this object is meaningful if and only if the value - of the relevant mgreceptacleType object is related to a two-level - receptacle class. Otherwise the default value is 0." - ::= { upsmgReceptaclesEntry 8 } - -mgreceptacleAutonomy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The receptacle autonomy. - - The value of this object is meaningful if and only if the value - of the relevant mgreceptacleType object is related to a two-level - receptacle class. Otherwise the default value is 0." - ::= { upsmgReceptaclesEntry 9 } - --------------------------- --- the upsmgConfig group -- --------------------------- - --- This group gives objects for describing: --- Battery characteristics and administrative status, --- Configuration set points for normal shutoff and restart, --- Nominal voltage and Input low/high transfer point, --- Output and By Pass characteristics, --- Devices table (powered systems), --- Receptacles default table. --- Environ external alarms UserID table. - --- Battery characteristics and administrative status. - -upsmgConfigBatteryInstalled OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The battery installed status." - ::= { upsmgConfig 1 } - -upsmgConfigNominalBatteryVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The nominal battery voltage." - ::= { upsmgConfig 2 } - -upsmgConfigNominalBatteryTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The full load battery autonomy time." - ::= { upsmgConfig 3 } - -upsmgConfigNominalRechargeTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The recharge time to go from low battery cut off - to full charge at full load." - ::= { upsmgConfig 4 } - --- Configuration set points for normal shutoff and restart. - -upsmgConfigMinRechargeLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum battery level required to supply power on the - loads after low battery condition turn off and restart on - main return." - ::= { upsmgConfig 5 } - -upsmgConfigMaxRechargeTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum time delay of battery recharge before supply - power to the loads." - ::= { upsmgConfig 6 } - -upsmgConfigLowBatteryTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set remaining time value for low battery condition." - ::= { upsmgConfig 7 } - -upsmgConfigLowBatteryLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set battery level value for low battery condition." - ::= { upsmgConfig 8 } - -upsmgConfigAutoRestart OBJECT-TYPE - SYNTAX INTEGER { - always(1), - never(2), - onmain(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The automatic restart enabling status." - ::= { upsmgConfig 9 } - -upsmgConfigShutdownTimer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set ups shutdown timer from on battery condition." - ::= { upsmgConfig 10 } - -upsmgConfigSysShutDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set ups shutdown delay (Sn delay)." - ::= { upsmgConfig 11 } - --- Nominal voltage and Input low/high transfer point. - -upsmgConfigVARating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS nominal VA rating." - ::= { upsmgConfig 12 } - -upsmgConfigLowTransfer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low voltage transfer point." - ::= { upsmgConfig 13 } - -upsmgConfigHighTransfer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high voltage transfer point." - ::= { upsmgConfig 14 } - --- Output and By Pass characteristics. - -upsmgConfigOutputNominalVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The nominal output voltage." - ::= { upsmgConfig 15 } - -upsmgConfigOutputNominalCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The nominal output current." - ::= { upsmgConfig 16 } - -upsmgConfigOutputNomFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The nominal output frequency." - ::= { upsmgConfig 17 } - -upsmgConfigByPassType OBJECT-TYPE - SYNTAX INTEGER { - none(1), - relay(2), - static(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS by pass switch type." - ::= { upsmgConfig 18 } - -upsmgConfigAlarmAudible OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set audible alarm status." - ::= { upsmgConfig 19 } - -upsmgConfigAlarmTimeDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set audible alarm time delay." - ::= { upsmgConfig 20 } - --- Devices table (powered systems). - -upsmgConfigDevicesNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of devices that are powered by the UPS." - ::= { upsmgConfig 21 } - -upsmgConfigDevicesTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgConfigDevicesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of devices that are powered by the UPS." - ::= { upsmgConfig 22 } - -upsmgConfigDevicesEntry OBJECT-TYPE - SYNTAX UpsmgConfigDevicesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a device entry in the devices table." - INDEX { mgdeviceIndex } - ::= { upsmgConfigDevicesTable 1 } - -UpsmgConfigDevicesEntry ::= SEQUENCE { -- ASN.1 type definition - mgdeviceIndex INTEGER, - mgdeviceReceptacleNum INTEGER, - mgdeviceIdent DisplayString, - mgdeviceVaRating INTEGER, - mgdeviceSequenceOff INTEGER, - mgdeviceSequenceOn INTEGER, - mgdeviceShutdownDuration INTEGER, - mgdeviceBootUpDuration INTEGER -} - -mgdeviceIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each device. Its value ranges between 1 - and the value of upsmgDevicesNum." - ::= { upsmgConfigDevicesEntry 1 } - -mgdeviceReceptacleNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The receptacle number of the device plugged into the UPS. - This value gives index entry in the ReceptaclesTable object - of the Receptacle group. A value of 0 invalidates the entry - in the DevicesTable." - ::= { upsmgConfigDevicesEntry 2 } - -mgdeviceIdent OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A textual string for device user identification." - ::= { upsmgConfigDevicesEntry 3 } - -mgdeviceVaRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The volt-ampere rating of the device plugged into the UPS." - ::= { upsmgConfigDevicesEntry 4 } - -mgdeviceSequenceOff OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set the device position in the remote shutdown sequence." - ::= { upsmgConfigDevicesEntry 5 } - -mgdeviceSequenceOn OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set the device position in the remote reboot sequence." - ::= { upsmgConfigDevicesEntry 6 } - -mgdeviceShutdownDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set the duration from start of computer shut-down - to complete." - ::= { upsmgConfigDevicesEntry 7 } - -mgdeviceBootUpDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set the duration from start of computer boot-up - to complete." - ::= { upsmgConfigDevicesEntry 8 } - --- Receptacles default table. - --- This table gives for every receptacle the power return condition for --- each failure cause. - -upsmgConfigReceptaclesTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgConfigReceptaclesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of receptacles." - ::= { upsmgConfig 23 } - -upsmgConfigReceptaclesEntry OBJECT-TYPE - SYNTAX UpsmgConfigReceptaclesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a receptacle entry in the table." - INDEX { mgreceptacleIndexb } - ::= { upsmgConfigReceptaclesTable 1 } - -UpsmgConfigReceptaclesEntry ::= SEQUENCE { -- ASN.1 type definition - mgreceptacleIndexb INTEGER, - mgreceptacleStateTurnOn INTEGER, - mgreceptacleStateMainReturn INTEGER, - mgreceptacleStateDischarge INTEGER, - mgreceptacleShutoffLevel INTEGER, - mgreceptacleShutoffTimer INTEGER, - mgreceptacleRestartLevel INTEGER, - mgreceptacleRestartDelay INTEGER, - mgreceptacleShutdownDuration INTEGER, - mgreceptacleBootUpDuration INTEGER -} - -mgreceptacleIndexb OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each receptacle. Its value ranges between 1 - and the value of upsmgReceptaclesNum." - ::= { upsmgConfigReceptaclesEntry 1 } - -mgreceptacleStateTurnOn OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2), - last(3), - schedule(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Default return state at turn on." - ::= { upsmgConfigReceptaclesEntry 2 } - -mgreceptacleStateMainReturn OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2), - last(3), - schedule(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Default return state on main return." - ::= { upsmgConfigReceptaclesEntry 3 } - -mgreceptacleStateDischarge OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2), - last(3), - schedule(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Default return state on main return from battery discharge." - ::= { upsmgConfigReceptaclesEntry 4 } - -mgreceptacleShutoffLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery level for starting shutoff sequence." - ::= { upsmgConfigReceptaclesEntry 5 } - -mgreceptacleShutoffTimer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Time delay from on battery for starting shutoff sequence." - ::= { upsmgConfigReceptaclesEntry 6 } - -mgreceptacleRestartLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery level for starting restart sequence." - ::= { upsmgConfigReceptaclesEntry 7 } - -mgreceptacleRestartDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Time delay for starting restart sequence." - ::= { upsmgConfigReceptaclesEntry 8 } - -mgreceptacleShutdownDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Maximum Shutdown Duration for systems powered by this plug." - ::= { upsmgConfigReceptaclesEntry 9 } - -mgreceptacleBootUpDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Maximum Reboot Duration for systems powered by this plug." - ::= { upsmgConfigReceptaclesEntry 10 } - --- Environ external alarms UserID table. - -upsmgConfigExtAlarmNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of environ external alarm, value is - between 8 and 32.." - ::= { upsmgConfig 24 } - -upsmgConfigExtAlarmTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgConfigExtAlarmEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of environmental external alarms." - ::= { upsmgConfig 25 } - -upsmgConfigExtAlarmEntry OBJECT-TYPE - SYNTAX UpsmgConfigExtAlarmEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of an external alarm in the table." - INDEX { mgextAlarmIndex } - ::= { upsmgConfigExtAlarmTable 1 } - -UpsmgConfigExtAlarmEntry ::= SEQUENCE { -- ASN.1 type definition - mgextAlarmIndex INTEGER, - mgextAlarmUID DisplayString -} - -mgextAlarmIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each external alarm. Its value ranges - between 1 and the value of upsmgConfigExtAlarmNum." - ::= { upsmgConfigExtAlarmEntry 1 } - -mgextAlarmUID OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A textual string for alarm state user identification." - ::= { upsmgConfigExtAlarmEntry 2 } - -upsmgConfigEmergencyTestFail OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The emergency condition status on Battery test fail." - ::= { upsmgConfig 26 } - -upsmgConfigEmergencyOnByPass OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The emergency condition status on By Pass." - ::= { upsmgConfig 27 } - -upsmgConfigEmergencyOverload OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The emergency condition status on overload." - ::= { upsmgConfig 28 } - --- Schedule on/off daily time table. - -upsmgConfigControlDayTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgConfigControlDayEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of daily on/off time." - ::= { upsmgConfig 29 } - -upsmgConfigControlDayEntry OBJECT-TYPE - SYNTAX UpsmgConfigControlDayEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a daily on/off time schedule in the table." - INDEX { mgcontrolDayIndex } - ::= { upsmgConfigControlDayTable 1 } - -UpsmgConfigControlDayEntry ::= SEQUENCE { -- ASN.1 type definition - mgcontrolDayIndex INTEGER, - mgcontrolDayOn INTEGER, - mgcontrolDayOff INTEGER -} - -mgcontrolDayIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The day index. It is a number between 1 and 7, 1 for - Sunday, 2 for Monday, ..." - ::= { upsmgConfigControlDayEntry 1 } - -mgcontrolDayOn OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set daily power on time. Any value greater than 86400 - is to disable the Day On." - ::= { upsmgConfigControlDayEntry 2 } - -mgcontrolDayOff OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set daily power off time. Any value greater than 86400 - is to disable the Day Off." - ::= { upsmgConfigControlDayEntry 3 } - -upsmgConfigLowBooster OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set UPS booster low threshold." - ::= { upsmgConfig 30 } - -upsmgConfigHighBooster OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set UPS booster high threshold." - ::= { upsmgConfig 31 } - -upsmgConfigLowFader OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set UPS fader low threshold." - ::= { upsmgConfig 32 } - -upsmgConfigHighFader OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To set UPS fader high threshold." - ::= { upsmgConfig 33 } - - --- AB Release on 2003/10/23 : Add Configuration of the environment sensor. - -upsmgConfigEnvironmentTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgConfigEnvironmentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table containing the configuration of the environment sensor." - ::= { upsmgConfig 34 } - -upsmgConfigEnvironmentEntry OBJECT-TYPE - SYNTAX UpsmgConfigEnvironmentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of an entry in the table." - INDEX { upsmgConfigSensorIndex } - ::= { upsmgConfigEnvironmentTable 1 } - -UpsmgConfigEnvironmentEntry ::= SEQUENCE { -- ASN.1 type definition - upsmgConfigSensorIndex INTEGER, - upsmgConfigSensorName DisplayString, - upsmgConfigTemperatureLow INTEGER, - upsmgConfigTemperatureHigh INTEGER, - upsmgConfigTemperatureHysteresis INTEGER, - upsmgConfigHumidityLow INTEGER, - upsmgConfigHumidityHigh INTEGER, - upsmgConfigHumidityHysteresis INTEGER, - upsmgConfigInput1Name DisplayString, - upsmgConfigInput1ClosedLabel DisplayString, - upsmgConfigInput1OpenLabel DisplayString, - upsmgConfigInput2Name DisplayString, - upsmgConfigInput2ClosedLabel DisplayString, - upsmgConfigInput2OpenLabel DisplayString -} - -upsmgConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER (0..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor index, ranging from 1 to upsmgEnvironmentNum." - ::= { upsmgConfigEnvironmentEntry 1 } - -upsmgConfigSensorName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..42)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The sensor user-friendly name." - ::= { upsmgConfigEnvironmentEntry 2 } - -upsmgConfigTemperatureLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold in unit 0.1 Cel." - ::= { upsmgConfigEnvironmentEntry 3 } - -upsmgConfigTemperatureHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold in unit 0.1 Cel." - ::= { upsmgConfigEnvironmentEntry 4 } - -upsmgConfigTemperatureHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature hysteresys used for threshold test in unit 0.1 Cel." - ::= { upsmgConfigEnvironmentEntry 5 } - -upsmgConfigHumidityLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity threshold in unit 1 %." - ::= { upsmgConfigEnvironmentEntry 6 } - -upsmgConfigHumidityHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity threshold in unit 1 %." - ::= { upsmgConfigEnvironmentEntry 7 } - -upsmgConfigHumidityHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity hysteresys used for threshold test in unit 1 %." - ::= { upsmgConfigEnvironmentEntry 8 } - -upsmgConfigInput1Name OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..22)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Input #1 user-friendly name." - ::= { upsmgConfigEnvironmentEntry 9 } - -upsmgConfigInput1ClosedLabel OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..18)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Input #1 label for closed position." - ::= { upsmgConfigEnvironmentEntry 10 } - -upsmgConfigInput1OpenLabel OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..18)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Input #1 label for open position." - ::= { upsmgConfigEnvironmentEntry 11 } - -upsmgConfigInput2Name OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..22)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Input #2 user-friendly name." - ::= { upsmgConfigEnvironmentEntry 12 } - -upsmgConfigInput2ClosedLabel OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..18)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Input #2 label for closed position." - ::= { upsmgConfigEnvironmentEntry 13 } - -upsmgConfigInput2OpenLabel OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..18)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Input #2 label for open position." - ::= { upsmgConfigEnvironmentEntry 14 } - - --- UPS Monitoring groups of the MIB: --- upsmgBattery(5), upsmgInput(6), upsmgOutput(7), upsmgEnviron(8) - ----------------------------- --- the upsmgBattery group -- ----------------------------- - -upsmgBatteryRemainingTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time remaining actual charge vs actual load (dynamic)." - ::= { upsmgBattery 1 } - -upsmgBatteryLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery level as a percentage of charge." - ::= { upsmgBattery 2 } - -upsmgBatteryRechargeTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual operational battery recharge time to set point - equal to upsmgConfigRechargeLevel. This value is computed from - upsmgConfigRechargeLevel (level to reach), upsmgBatteryLevel (the - actual reached level) and the UPS charge rate." - ::= { upsmgBattery 3 } - -upsmgBatteryRechargeLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the battery recharge level that will be - reached during the time delay necessary to restart after power - returns. This value is computed from upsmgConfigRechargeTime - (the delay), upsmgBatteryLevel (the actual level) and the UPS - charge rate." - ::= { upsmgBattery 4 } - -upsmgBatteryVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual battery voltage." - ::= { upsmgBattery 5 } - -upsmgBatteryCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual battery current." - ::= { upsmgBattery 6 } - -upsmgBatteryTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery temperature." - ::= { upsmgBattery 7 } - -upsmgBatteryFullRechargeTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery full recharge time (from 0 to 100 percent) - at current load." - ::= { upsmgBattery 8 } - -upsmgBatteryFaultBattery OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery fault status." - ::= { upsmgBattery 9 } - -upsmgBatteryNoBattery OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS has no Battery status." - ::= { upsmgBattery 10 } - -upsmgBatteryReplacement OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS Battery to be replaced status." - ::= { upsmgBattery 11 } - -upsmgBatteryUnavailableBattery OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS Battery is unavailable status." - ::= { upsmgBattery 12 } - -upsmgBatteryNotHighCharge OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS Battery quit high condition status." - ::= { upsmgBattery 13 } - -upsmgBatteryLowBattery OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery low status." - ::= { upsmgBattery 14 } - -upsmgBatteryChargerFault OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS Battery is not charging status." - ::= { upsmgBattery 15 } - -upsmgBatteryLowCondition OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS is at low condition status." - ::= { upsmgBattery 16 } - -upsmgBatteryLowRecharge OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS Battery is not recharged status." - ::= { upsmgBattery 17 } - --------------------------- --- the upsmgInput group -- --------------------------- - -upsmgInputPhaseNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input phases." - ::= { upsmgInput 1 } - -upsmgInputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of input phases." - ::= { upsmgInput 2 } - -upsmgInputPhaseEntry OBJECT-TYPE - SYNTAX UpsmgInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of an input phase." - INDEX { mginputIndex } - ::= { upsmgInputPhaseTable 1 } - -UpsmgInputPhaseEntry ::= SEQUENCE { -- ASN.1 type definition - mginputIndex INTEGER, - mginputVoltage INTEGER, - mginputFrequency INTEGER, - mginputMinimumVoltage INTEGER, - mginputMaximumVoltage INTEGER, - mginputCurrent INTEGER -} - -mginputIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase voltage index. It is a number between 1 - and upsmgInputPhaseNum." - ::= { upsmgInputPhaseEntry 1 } - -mginputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase voltage." - ::= { upsmgInputPhaseEntry 2 } - -mginputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase frequency." - ::= { upsmgInputPhaseEntry 3 } - -mginputMinimumVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase minimum voltage over the last minute." - ::= { upsmgInputPhaseEntry 4 } - -mginputMaximumVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase maximum voltage over the last minute." - ::= { upsmgInputPhaseEntry 5 } - -mginputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase current." - ::= { upsmgInputPhaseEntry 6 } - -upsmgInputBadStatus OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The utility power bad voltage or bad frequency status." - ::= { upsmgInput 3 } - -upsmgInputLineFailCause OBJECT-TYPE - SYNTAX INTEGER { - no(1), - outoftolvolt(2), - outoftolfreq(3), - utilityoff(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The utility power failure cause: - no(1) is for no utility failure, - outoftolvolt(2) is for voltage out of tolerance, - outoftolfreq(3) is for frequency out of tolerance, - utilityoff(4) is for no voltage at all." - ::= { upsmgInput 4 } - --------------------------- --- the upsmgOutput group -- --------------------------- - -upsmgOutputPhaseNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output phases." - ::= { upsmgOutput 1 } - -upsmgOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of output phases." - ::= { upsmgOutput 2 } - -upsmgOutputPhaseEntry OBJECT-TYPE - SYNTAX UpsmgOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of an output phase." - INDEX { mgoutputPhaseIndex } - ::= { upsmgOutputPhaseTable 1 } - -UpsmgOutputPhaseEntry ::= SEQUENCE { -- ASN.1 type definition - mgoutputPhaseIndex INTEGER, - mgoutputVoltage INTEGER, - mgoutputFrequency INTEGER, - mgoutputLoadPerPhase INTEGER, - mgoutputCurrent INTEGER -} - -mgoutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output phase voltage index. It is a number between 1 - and upsmgOutputPhaseNum." - ::= { upsmgOutputPhaseEntry 1 } - -mgoutputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output phase voltage." - ::= { upsmgOutputPhaseEntry 2 } - -mgoutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output phase frequency." - ::= { upsmgOutputPhaseEntry 3 } - -mgoutputLoadPerPhase OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output load per phase." - ::= { upsmgOutputPhaseEntry 4 } - -mgoutputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output phase current." - ::= { upsmgOutputPhaseEntry 5 } - -upsmgOutputOnBattery OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS on battery / on main status." - ::= { upsmgOutput 3 } - -upsmgOutputOnByPass OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS on bypass status." - ::= { upsmgOutput 4 } - -upsmgOutputUnavailableByPass OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The by pass unavailable status." - ::= { upsmgOutput 5 } - -upsmgOutputNoByPass OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS bypass installed status." - ::= { upsmgOutput 6 } - -upsmgOutputUtilityOff OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS utility off status." - ::= { upsmgOutput 7 } - -upsmgOutputOnBoost OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS on booster status." - ::= { upsmgOutput 8 } - -upsmgOutputInverterOff OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS Inverter on / off status." - ::= { upsmgOutput 9 } - -upsmgOutputOverLoad OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output over load status." - ::= { upsmgOutput 10 } - -upsmgOutputOverTemp OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ups over temperature status." - ::= { upsmgOutput 11 } - -upsmgOutputOnBuck OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS on fader status." - ::= { upsmgOutput 12 } - ----------------------------- --- the upsmgEnviron group -- ----------------------------- - -upsmgEnvironAmbientTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ambient temperature." - ::= { upsmgEnviron 1 } - -upsmgEnvironAmbientHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ambient humidity." - ::= { upsmgEnviron 2 } - -upsmgEnvironExtAlarmTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgEnvironExtAlarmEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of external alarms." - ::= { upsmgEnviron 3 } - -upsmgEnvironExtAlarmEntry OBJECT-TYPE - SYNTAX UpsmgEnvironExtAlarmEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of an external alarm." - INDEX { mgalarmNum } - ::= { upsmgEnvironExtAlarmTable 1 } - -UpsmgEnvironExtAlarmEntry ::= SEQUENCE { -- ASN.1 type definition - mgalarmNum INTEGER, - mgalarmState INTEGER -} - -mgalarmNum OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The external alarm number. A number between 1 and - upsmgConfigExtAlarmNum." - ::= { upsmgEnvironExtAlarmEntry 1 } - -mgalarmState OBJECT-TYPE - SYNTAX INTEGER { - active(1), - inactive(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The external alarm state (active or inactive)." - ::= { upsmgEnvironExtAlarmEntry 2 } - -upsmgEnvironSensorNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor unit number (0 to 4)." - ::= { upsmgEnviron 4 } - -upsmgEnvironSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgEnvironSensorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of sensor units." - ::= { upsmgEnviron 5 } - -upsmgEnvironSensorEntry OBJECT-TYPE - SYNTAX UpsmgEnvironSensorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a sensor unit." - INDEX { mgsensorNum } - ::= { upsmgEnvironSensorTable 1 } - -UpsmgEnvironSensorEntry ::= SEQUENCE { -- ASN.1 type definition - mgsensorNum INTEGER, - mgsensorTemp INTEGER, - mgsensorHumidity INTEGER -} - -mgsensorNum OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit number. A number between 1 and 4." - ::= { upsmgEnvironSensorEntry 1 } - -mgsensorTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The measured temperature of the unit." - ::= { upsmgEnvironSensorEntry 2 } - -mgsensorHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The measured humidity of the unit." - ::= { upsmgEnvironSensorEntry 3 } - --- AB Release on 2003/10/23 : Add Measurements of the environment sensor. - -upsmgEnvironmentNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of Environment sensor connected." - ::= { upsmgEnviron 6 } - -upsmgEnvironmentSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgEnvironmentSensorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table containing the measurements and alarms made by Environment sensor units." - ::= { upsmgEnviron 7 } - -upsmgEnvironmentSensorEntry OBJECT-TYPE - SYNTAX UpsmgEnvironmentSensorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of an entry in the measurement table." - INDEX { upsmgEnvironmentIndex } - ::= { upsmgEnvironmentSensorTable 1 } - -UpsmgEnvironmentSensorEntry ::= SEQUENCE { -- ASN.1 type definition - upsmgEnvironmentIndex INTEGER, - upsmgEnvironmentComFailure INTEGER, - upsmgEnvironmentTemperature INTEGER, - upsmgEnvironmentTemperatureLow INTEGER, - upsmgEnvironmentTemperatureHigh INTEGER, - upsmgEnvironmentHumidity INTEGER, - upsmgEnvironmentHumidityLow INTEGER, - upsmgEnvironmentHumidityHigh INTEGER, - upsmgEnvironmentInput1State INTEGER, - upsmgEnvironmentInput2State INTEGER -} - -upsmgEnvironmentIndex OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor index, ranging from 1 to upsmgEnvironmentNum." - ::= { upsmgEnvironmentSensorEntry 1 } - -upsmgEnvironmentComFailure OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor communication failure : yes(1), no(2)." - ::= { upsmgEnvironmentSensorEntry 2 } - -upsmgEnvironmentTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature measurement in unit 0.1 Cel." - ::= { upsmgEnvironmentSensorEntry 3 } - -upsmgEnvironmentTemperatureLow OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Temperature is below low theshold : yes(1), no(2)." - ::= { upsmgEnvironmentSensorEntry 4 } - -upsmgEnvironmentTemperatureHigh OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Temperature is above high threshold : yes(1), no(2)." - ::= { upsmgEnvironmentSensorEntry 5 } - -upsmgEnvironmentHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidity measurement in unit 0.1 %." - ::= { upsmgEnvironmentSensorEntry 6 } - -upsmgEnvironmentHumidityLow OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidity is below low threshold : yes(1), no(2)." - ::= { upsmgEnvironmentSensorEntry 7 } - -upsmgEnvironmentHumidityHigh OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidity is above high threshold : yes(1), no(2)." - ::= { upsmgEnvironmentSensorEntry 8 } - -upsmgEnvironmentInput1State OBJECT-TYPE - SYNTAX INTEGER { - closed(1), - open(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State of Input#1 : closed(1), open(2)." - ::= { upsmgEnvironmentSensorEntry 9 } - -upsmgEnvironmentInput2State OBJECT-TYPE - SYNTAX INTEGER { - closed(1), - open(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State of Input#2 : closed(1), open(2)." - ::= { upsmgEnvironmentSensorEntry 10 } - - --- UPS Controlling groups of the MIB: --- upsmgControl(9), upsmgTest(10), upsmgTraps(11) - ----------------------------- --- the upsmgControl group -- ----------------------------- - --- Receptacles control table. - --- This table gives for every receptacle the ON/OFF control objects. - -upsmgControlReceptaclesTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsmgControlReceptaclesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of receptacles." - ::= { upsmgControl 1 } - -upsmgControlReceptaclesEntry OBJECT-TYPE - SYNTAX UpsmgControlReceptaclesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The description of a receptacle entry in the table." - INDEX { mgreceptacleIndexc } - ::= { upsmgControlReceptaclesTable 1 } - -UpsmgControlReceptaclesEntry ::= SEQUENCE { -- ASN.1 type definition - mgreceptacleIndexc INTEGER, - mgreceptacleOnDelay INTEGER, - mgreceptacleOnCtrl INTEGER, - mgreceptacleOnStatus INTEGER, - mgreceptacleOffDelay INTEGER, - mgreceptacleOffCtrl INTEGER, - mgreceptacleOffStatus INTEGER, - mgreceptacleToggleDelay INTEGER, - mgreceptacleToggleCtrl INTEGER, - mgreceptacleToggleStatus INTEGER, - mgreceptacleToggleDuration INTEGER -} - -mgreceptacleIndexc OBJECT-TYPE - SYNTAX INTEGER (1..50) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each receptacle. Its value ranges between 1 - and the value of upsmgReceptaclesNum." - ::= { upsmgControlReceptaclesEntry 1 } - -mgreceptacleOnDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn on UPS receptacle w/delay=?." - ::= { upsmgControlReceptaclesEntry 2 } - -mgreceptacleOnCtrl OBJECT-TYPE - SYNTAX INTEGER { - nothing(1), - start(2), - stop(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The receptacle control on action." - ::= { upsmgControlReceptaclesEntry 3 } - -mgreceptacleOnStatus OBJECT-TYPE - SYNTAX INTEGER { - none(1), - started(2), - inprogressinups(3), - completed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The receptacle control on status." - ::= { upsmgControlReceptaclesEntry 4 } - -mgreceptacleOffDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off UPS receptacle w/delay=?." - ::= { upsmgControlReceptaclesEntry 5 } - -mgreceptacleOffCtrl OBJECT-TYPE - SYNTAX INTEGER { - nothing(1), - start(2), - stop(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The receptacle control off action." - ::= { upsmgControlReceptaclesEntry 6 } - -mgreceptacleOffStatus OBJECT-TYPE - SYNTAX INTEGER { - none(1), - started(2), - inprogressinups(3), - completed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The receptacle control off status." - ::= { upsmgControlReceptaclesEntry 7 } - -mgreceptacleToggleDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off then on UPS receptacle w/delay=?." - ::= { upsmgControlReceptaclesEntry 8 } - -mgreceptacleToggleCtrl OBJECT-TYPE - SYNTAX INTEGER { - nothing(1), - start(2), - stop(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The receptacle control toggle action." - ::= { upsmgControlReceptaclesEntry 9 } - -mgreceptacleToggleStatus OBJECT-TYPE - SYNTAX INTEGER { - none(1), - started(2), - inprogressinups(3), - completed(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The receptacle control toggle status." - ::= { upsmgControlReceptaclesEntry 10 } - -mgreceptacleToggleDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off then on UPS receptacle w/duration=?." - ::= { upsmgControlReceptaclesEntry 11 } - -upsmgControlDayOff OBJECT-TYPE - SYNTAX INTEGER { - sunday(1), monday(2), tuesday(3), wednesday(4), - thursday(5), friday(6), saterday(7), none(8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The schedule off control object. Default value is none(8). - Value 1 means to start scheduled off on Sunday, - value 2 to start scheduled off on Monday, and so on." - ::= { upsmgControl 2 } - -upsmgControlDayOn OBJECT-TYPE - SYNTAX INTEGER { - sunday(1), monday(2), tuesday(3), wednesday(4), - thursday(5), friday(6), saterday(7), none(8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The schedule on control object. Default value is none(8). - Value 1 means to start scheduled on on Sunday, - value 2 to start scheduled on on Monday, and so on. - This object is meaningfull only for those agent that do not - include internal clock. In such a case the object is set by - a manager to start the schedule on sequence." - ::= { upsmgControl 3 } - --------------------------- --- the upsmgTest group -- --------------------------- - -upsmgTestBatterySchedule OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - weekly(2), - monthly(3), - atturnon(4), - none(5), - dayly(6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The automatic battery test schedule." - ::= { upsmgTest 1 } - -upsmgTestDiagnostics OBJECT-TYPE - SYNTAX INTEGER { - default(1), - start(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To run self test diagnostics." - ::= { upsmgTest 2 } - -upsmgTestDiagResult OBJECT-TYPE - SYNTAX INTEGER { - success(1), - failed(2), - none(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The automatic test diagnostic result." - ::= { upsmgTest 3 } - -upsmgTestBatteryCalibration OBJECT-TYPE - SYNTAX INTEGER { - default(1), - start(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To run battery test calibration." - ::= { upsmgTest 4 } - -upsmgTestLastCalibration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The last battery calibration test date." - ::= { upsmgTest 5 } - -upsmgTestIndicators OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To run UPS indicators test." - ::= { upsmgTest 6 } - -upsmgTestCommandLine OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To send ASCII command line to UPS." - ::= { upsmgTest 7 } - -upsmgTestCommandReady OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To advise UPS that command line has been prepared." - ::= { upsmgTest 8 } - -upsmgTestResponseLine OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "To get ASCII protocol response from UPS." - ::= { upsmgTest 9 } - -upsmgTestResponseReady OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "To advise agent that response line has been received." - ::= { upsmgTest 10 } - -upsmgTestBatteryResult OBJECT-TYPE - SYNTAX INTEGER { - msuccess(1), - mfailed(2), - ssuccess(3), - sfailed(4), - none(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The test battery result: - msuccess(1) is for manual battery test success, - ssuccess(3) is for scheduled battery test success, - mfailed(2) is for manual battery test failed, - sfailed(4) is for scheduled battery test failed." - ::= { upsmgTest 11 } - --------------------------- --- the upsmgTraps group -- --------------------------- - --- This group defines objects and traps, so that for each trap, simple --- get request on related objects (one or many) allow to confirm actual --- status of the trap. - --- TRAPS NOTIFICATIONS - -upsmgBatteryFault TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS Battery entering Fault status." - --#SEVERITY MAJOR -::= 1 - -upsmgBatteryOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS Battery returned to OK status." - --#SEVERITY INFORMATIONAL -::= 2 - -upsmgBatteryReplacementIndicated TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS battery need to be replaced." - --#SEVERITY MINOR -::= 3 - -upsmgBatteryReplaceNotIndicated TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS battery does not need to be replaced." - --#SEVERITY INFORMATIONAL -::= 4 - -upsmgAtLowBattery TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS battery reached low condition." - --#SEVERITY CRITICAL -::= 5 - -upsmgFromLowBattery TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS battery returned from low condition." - --#SEVERITY INFORMATIONAL -::= 6 - -upsmgChargerFault TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS battery charger is not active." - --#SEVERITY MINOR -::= 7 - -upsmgChargerOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS battery charger is active." - --#SEVERITY INFORMATIONAL -::= 8 - -upsmgAtLowCondition TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS entering low condition." - --#SEVERITY CRITICAL -::= 9 - -upsmgFromLowCondition TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS exiting low condition." - --#SEVERITY INFORMATIONAL -::= 10 - -upsmgOnBattery TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS is on Battery." - --#SEVERITY CRITICAL -::= 11 - -upsmgReturnFromBattery TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS returned from battery." - --#SEVERITY INFORMATIONAL -::= 12 - -upsmgOnByPass TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS is on by pass." - --#SEVERITY MAJOR -::= 13 - -upsmgReturnFromByPass TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS return from by pass." - --#SEVERITY INFORMATIONAL -::= 14 - -upsmgByPassUnavailable TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS by pass unavailable." - --#SEVERITY MINOR -::= 15 - -upsmgByPassAvailable TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS by pass available." - --#SEVERITY INFORMATIONAL -::= 16 - -upsmgUtilityFailure TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS utility power failed." - --#SEVERITY MAJOR -::= 17 - -upsmgUtilityRestored TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS utility power restored." - --#SEVERITY INFORMATIONAL -::= 18 - -upsmgOnBoost TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS is on boost." - --#SEVERITY MINOR -::= 19 - -upsmgReturnFromBoost TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS has returned from boost." - --#SEVERITY INFORMATIONAL -::= 20 - -upsmgOverLoad TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS has overload condition." - --#SEVERITY MAJOR -::= 21 - -upsmgLoadOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS quit overload condition." - --#SEVERITY INFORMATIONAL -::= 22 - -upsmgOverTemperature TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS has overtemperature condition." - --#SEVERITY MAJOR -::= 23 - -upsmgTemperatureOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS quit overtemperature condition." - --#SEVERITY INFORMATIONAL -::= 24 - -upsmgOnToStart TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleState, mgreceptacleOnDelay, - mgreceptacleRestartDelay } - DESCRIPTION - "Trap UPS on sequence started." - --#SEVERITY MAJOR -::= 25 - -upsmgOnAbort TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleOnDelay } - DESCRIPTION - "Trap UPS on sequence cancelled." - --#SEVERITY INFORMATIONAL -::= 26 - -upsmgOnInProgress TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleState, - mgreceptacleBootUpDuration } - DESCRIPTION - "Trap UPS on sequence in progress in ups." - --#SEVERITY CRITICAL -::= 27 - -upsmgOnComplete TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleOnDelay } - DESCRIPTION - "Trap UPS on sequence completed." - --#SEVERITY INFORMATIONAL -::= 28 - -upsmgOffToStart TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleState, mgreceptacleOffDelay, - mgreceptacleShutoffTimer, upsmgConfigSysShutDuration } - DESCRIPTION - "Trap UPS off sequence started." - --#SEVERITY MAJOR -::= 29 - -upsmgOffAbort TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleOffDelay } - DESCRIPTION - "Trap UPS off sequence cancelled." - --#SEVERITY INFORMATIONAL -::= 30 - -upsmgOffInProgress TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleState, - mgreceptacleShutdownDuration } - DESCRIPTION - "Trap UPS off sequence in progress in ups." - --#SEVERITY CRITICAL -::= 31 - -upsmgOffComplete TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleOffDelay } - DESCRIPTION - "Trap UPS off sequence completed." - --#SEVERITY INFORMATIONAL -::= 32 - -upsmgToggleToStart TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleToggleDelay } - DESCRIPTION - "Trap UPS toggle (off/on) sequence started." - --#SEVERITY MAJOR -::= 33 - -upsmgToggleAbort TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleToggleDelay } - DESCRIPTION - "Trap UPS toggle (off/on) sequence cancelled." - --#SEVERITY INFORMATIONAL -::= 34 - -upsmgToggleInProgress TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleToggleDuration } - DESCRIPTION - "Trap UPS toggle (off/on) sequence in progress in ups." - --#SEVERITY MAJOR -::= 35 - -upsmgToggleComplete TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgreceptacleIndex, mgreceptacleToggleDuration } - DESCRIPTION - "Trap UPS toggle (off/on) sequence completed." - --#SEVERITY INFORMATIONAL -::= 36 - -upsmgCommunicationFailure TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS serial communication failed." - --#SEVERITY CRITICAL -::= 37 - -upsmgCommunicationRestored TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS serial communication restored." - --#SEVERITY INFORMATIONAL -::= 38 - -upsmgInputBad TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS input has bad condition." - --#SEVERITY MINOR -::= 39 - -upsmgInputOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS input quit bad condition." - --#SEVERITY INFORMATIONAL -::= 40 - -upsmgBatteryUnavailable TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS battery is unavailable." - --#SEVERITY MINOR -::= 41 - -upsmgBatteryAvailable TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS battery return from unavailable condition." - --#SEVERITY INFORMATIONAL -::= 42 - -upsmgAtLowRecharge TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS waiting for battery charging condition." - --#SEVERITY INFORMATIONAL -::= 43 - -upsmgFromLowRecharge TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { upsmgBatteryRemainingTime, upsmgBatteryLevel } - DESCRIPTION - "Trap UPS reached battery charging condition." - --#SEVERITY INFORMATIONAL -::= 44 - -upsmgDiagnosticTestFail TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS self test failed." - --#SEVERITY MINOR -::= 45 - -upsmgDiagnosticTestOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS self test succeeded." - --#SEVERITY INFORMATIONAL -::= 46 - -upsmgBatteryTestOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS passed battery test." - --#SEVERITY INFORMATIONAL -::= 47 - -upsmgBatteryTestFail TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS failed battery test." - --#SEVERITY MAJOR -::= 48 - -upsmgExternalAlarmActive TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgextAlarmIndex, mgextAlarmUID } - DESCRIPTION - "Trap UPS enter environment external alarm." - --#SEVERITY MAJOR -::= 49 - -upsmgExternalAlarmInactive TRAP-TYPE - ENTERPRISE upsmgTraps - VARIABLES { mgextAlarmIndex, mgextAlarmUID } - DESCRIPTION - "Trap UPS exit environment external alarm." - --#SEVERITY INFORMATIONAL -::= 50 - -upsmgOnBuck TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS is on buck." - --#SEVERITY MINOR -::= 51 - -upsmgReturnFromBuck TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Trap UPS has returned from buck." - --#SEVERITY INFORMATIONAL -::= 52 - --- AB Release on 2003/10/23 : Traps 53 to 64 added for the environment sensor. - -upsmgEnvironComFailure TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Environment Probe communication failure." - --#SEVERITY MAJOR -::= 53 - -upsmgEnvironComOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Environment Probe communication restored." - --#SEVERITY INFORMATIONAL -::= 54 - -upsmgEnvironTemperatureLow TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Temperature is below low threshold." - --#SEVERITY MAJOR -::= 55 - -upsmgEnvironTemperatureHigh TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Temperature is above high threshold." - --#SEVERITY MAJOR -::= 56 - -upsmgEnvironTemperatureOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Temperature is in normal range." - --#SEVERITY INFORMATIONAL -::= 57 - -upsmgEnvironHumidityLow TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Humidity is below low threshold." - --#SEVERITY MAJOR -::= 58 - -upsmgEnvironHumidityHigh TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Humidity is above high threshold." - --#SEVERITY MAJOR -::= 59 - -upsmgEnvironHumidityOK TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Humidity is in normal range." - --#SEVERITY INFORMATIONAL -::= 60 - -upsmgEnvironInput1Closed TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Input #1 is Closed." - --#SEVERITY INFORMATIONAL -::= 61 - -upsmgEnvironInput1Open TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Input #1 is Open." - --#SEVERITY INFORMATIONAL -::= 62 - -upsmgEnvironInput2Closed TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Input #2 is Closed." - --#SEVERITY INFORMATIONAL -::= 63 - -upsmgEnvironInput2Open TRAP-TYPE - ENTERPRISE upsmgTraps - DESCRIPTION - "Input #2 is Open." - --#SEVERITY INFORMATIONAL -::= 64 - - - ----------------------- --- upsmgAgent group -- ----------------------- - --- following objects are configuration variables defined for --- UPS proxy agent that perform UPS management protocol --- and support SNMP management function - -upsmgAgentIpaddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The ip address that NMS can identify the managed - device" - ::= { upsmgAgent 1} - -upsmgAgentSubnetMask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - " Internet address subnet mask" - ::= { upsmgAgent 2} - -upsmgAgentDefGateway OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The default gateway that allow device managed - through routers " - ::= { upsmgAgent 3} - -upsmgAgentBaudRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " the serial port communication speed. only 2400, - 4800, and 9600 allowed" - ::= { upsmgAgent 4} - -upsmgAgentPollRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The frequency that proxy agent polls the connected - UPS in ASCII protocol. (unit : second)" - ::= { upsmgAgent 5} - -upsmgAgentType OBJECT-TYPE - SYNTAX INTEGER { - deviceEth(1), - deviceTR(2), - proxyEth(3), - proxyTR(4), - other(5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The type of agent." - ::= { upsmgAgent 6} - -upsmgAgentTrapAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The interval for the Trap packet retransmission, - while the TRAP Acknowledge is implemented and - the ack is received within the interval." - ::= { upsmgAgent 7} - -upsmgAgentTrapAlarmRetry OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The retry count for retransmitting Trap - packet while the TRAP acknowledge is - implemented." - ::= { upsmgAgent 8} - -upsmgAgentReset OBJECT-TYPE - SYNTAX INTEGER { - reset (1), - nothing(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The variable initiates reset operation in - agent software, ie. warm start. write reset(1) - to any one of UPS MIB array, will result in - the same reset operation." - ::= { upsmgAgent 9} - -upsmgAgentFactReset OBJECT-TYPE - SYNTAX INTEGER { - reset (1), - nothing(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The variable initiates reset operation in - agent software, ie. warm start, and load - default data (Factory setting) to EEPROM - and to runtime parameters associated with - the UPS." - ::= { upsmgAgent 10} - -upsmgAgentMibVersion OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The version of the MIB implemented in agent." - ::= { upsmgAgent 11} - -upsmgAgentFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The agent firmware version." - ::= { upsmgAgent 12} - -upsmgAgentCommUPS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The status of communication between agent and ups. - Even value means no communication, and odd value - means a certain level of communication with devices - daisy-chained on the serial port. The value is the - following: 1000*NSE + 100*NSW + 10*UPSW + UPST with - UPST is UPS type: 5 if no UPS; - 3 if PI (Protocol Interface) - 1 if U-Talk UPS; - UPSW is the number of switchable plugs of the UPS; - NSW is the number of UM-Switch devices; - NSE is the number of UM-Sensor devices." - ::= { upsmgAgent 13} - -upsmgAgentTrapAck OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The last Trap number that has been received by UM-View." - ::= { upsmgAgent 14} - -upsmgAgentAutoLearning OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The enabled/disabled configuration of the Auto Learning - process of the agent, default value is yes(1) e.g. enabled." - ::= { upsmgAgent 15} - -upsmgAgentBootP OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The enabled/disabled configuration of the BootP process, - default value is yes(1) e.g. enabled." - ::= { upsmgAgent 16} - -upsmgAgentTFTP OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The enabled/disabled configuration of the TFTP process, - default value is no(2) e.g. disabled." - ::= { upsmgAgent 17} - -upsmgAgentTrapSignature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The signature of the trap acknowledged by a manager." - ::= { upsmgAgent 18} - ------------------------- --- upsmgRemote group -- ------------------------- - -upsmgRemoteOnBattery OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An object to inform an ups-less agent that the remote - UPS is on autonomy. This object could be set by - a management application." - ::= { upsmgRemote 1} - -upsmgRemoteIpAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An object to give the IP address of the agent managing - the remote UPS. This object could be read by managers - to perform management of receptacle dependencies - between two different agents." - ::= { upsmgRemote 2} - -END diff --git a/mibs/orig/NETBOTZ300-MIB b/mibs/orig/NETBOTZ300-MIB deleted file mode 100644 index 13f467f..0000000 --- a/mibs/orig/NETBOTZ300-MIB +++ /dev/null @@ -1,8803 +0,0 @@ --- --- NETBOTZ-MIB module definition --- - -NETBOTZ300-MIB DEFINITIONS ::= BEGIN - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE,NOTIFICATION-TYPE, enterprises, Counter32,Integer32 FROM SNMPv2-SMI - TEXTUAL-CONVENTION, DisplayString, DateAndTime FROM SNMPv2-TC; - -netBotz-APC MODULE-IDENTITY - LAST-UPDATED "200801210000Z" - ORGANIZATION "Scheider Electric / APC" - CONTACT-INFO - "Postal: Scheider Electric / APC - 132 Fairgrounds Road - West Kingston, RI 02892 - US - - Tel: +1 401 789 5735 - - E-mail: " - DESCRIPTION - "NetBotz-APC BotzWare MIB" - REVISION "200805010000Z" -- 01 May 2008" - DESCRIPTION "for Netbotz Version 3.0" - ::= { enterprises 5528 } - -netBotz-APC OBJECT IDENTIFIER ::= { enterprises 5528 } -netBotz OBJECT IDENTIFIER ::= { netBotz-APC 100 } -netBotzTraps OBJECT IDENTIFIER ::= { netBotz 10 } -netBotzTrapParms OBJECT IDENTIFIER ::= { netBotz 11 } -netBotzProducts OBJECT IDENTIFIER ::= { netBotz 20 } - -netBotzGenericTraps OBJECT IDENTIFIER ::= { netBotzTraps 1 } -netBotzSensorTraps OBJECT IDENTIFIER ::= { netBotzTraps 2 } -netBotzPodTraps OBJECT IDENTIFIER ::= { netBotzTraps 3 } -netBotzPortTraps OBJECT IDENTIFIER ::= { netBotzTraps 4 } - -netBotzTempSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 1 } -netBotzHumiditySensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 2 } -netBotzDewPointSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 3 } -netBotzAirFlowSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 4 } -netBotzAudioSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 5 } -netBotzAmpDetectSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 6 } -netBotzDryContactSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 7 } -netBotzCameraMotionSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 8 } -netBotzDoorSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 9 } -netBotzMicPlugSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 10 } -netBotzSpeakerPlugSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 11 } -netBotzTVSignalSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 12 } -netBotzGPSPositionSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 13 } -netBotzGPSMovementSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 14 } -netBotzGPSStatusSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 15 } -netBotzWirelessStatusSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 22 } -netBotzPacketDropSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 23 } -netBotzSNMPCrawlerSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 24 } -netBotzPlugModuleStatusSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 25 } -netBotzOutputControlSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 26 } -netBotzMultiRAESensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 27 } -netBotzMultiRAESensorStatusTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 28 } -netBotzMultiRAEDeviceStatusTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 29 } -netBotzLinkStatusSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 30 } -netBotzLoopVoltageSensorTraps OBJECT IDENTIFIER ::= { netBotzSensorTraps 31 } - -netBotzBasePodTraps OBJECT IDENTIFIER ::= { netBotzPodTraps 1 } -netBotzSensorPodTraps OBJECT IDENTIFIER ::= { netBotzPodTraps 2 } -netBotzCameraPodTraps OBJECT IDENTIFIER ::= { netBotzPodTraps 3 } -netBotzCCTVPodTraps OBJECT IDENTIFIER ::= { netBotzPodTraps 4 } -netBotz4to20mAPodTraps OBJECT IDENTIFIER ::= { netBotzPodTraps 5 } - -netBotzBotz OBJECT IDENTIFIER ::= { netBotzProducts 10 } - -netBotzWallBotz500 OBJECT IDENTIFIER ::= { netBotzBotz 2000 } -netBotz420Wall OBJECT IDENTIFIER ::= { netBotzBotz 2001 } -raeSystemsAreaConnect500 OBJECT IDENTIFIER ::= { netBotzBotz 2002 } -netBotz420Rack OBJECT IDENTIFIER ::= { netBotzBotz 2003 } -netBotz320Wall OBJECT IDENTIFIER ::= { netBotzBotz 2004 } -netBotz320Rack OBJECT IDENTIFIER ::= { netBotzBotz 2005 } -netBotz420ERack OBJECT IDENTIFIER ::= { netBotzBotz 2006 } -netBotz320ERack OBJECT IDENTIFIER ::= { netBotzBotz 2007 } -netBotz220Camera OBJECT IDENTIFIER ::= { netBotzBotz 2008 } -apprion500 OBJECT IDENTIFIER ::= { netBotzBotz 2009 } -avocent500 OBJECT IDENTIFIER ::= { netBotzBotz 2010 } -netBotz320EWall OBJECT IDENTIFIER ::= { netBotzBotz 2011 } -netBotz420EWall OBJECT IDENTIFIER ::= { netBotzBotz 2012 } -netBotz550Rack OBJECT IDENTIFIER ::= { netBotzBotz 2013 } -netBotz450Rack OBJECT IDENTIFIER ::= { netBotzBotz 2014 } -netBotz455Wall OBJECT IDENTIFIER ::= { netBotzBotz 2015 } -netBotz355Wall OBJECT IDENTIFIER ::= { netBotzBotz 2016 } - --- MODULE-COMPLIANCE, OBJECT-GROUP, --- NOTIFICATION-GROUP FROM SNMPv2-CONF; - - -OperStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The operational status of the device entity." - SYNTAX INTEGER { disconnected(0), error(1), normal(2) } - -ErrorStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The error status of the device entity. If there are no error conditions - reported for the entity, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the entity." - SYNTAX INTEGER { normal(0), info(1), warning(2), error(3), critical(4), failure(5) } - -BoolValue ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A boolean value." - SYNTAX INTEGER { no(0), yes(1), null(2) } - ---BoolValue ::= TEXTUAL-CONVENTION --- STATUS current --- DESCRIPTION --- "A boolean value." --- SYNTAX INTEGER { no(0), yes(1), null(2) } - -netBotzEnclosures OBJECT IDENTIFIER ::= { netBotz 2 } -netBotzPorts OBJECT IDENTIFIER ::= { netBotz 3 } -netBotzSensors OBJECT IDENTIFIER ::= { netBotz 4 } -netBotzErrors OBJECT IDENTIFIER ::= { netBotz 5 } - -netBotzNumericSensors OBJECT IDENTIFIER ::= { netBotzSensors 1 } -netBotzStateSensors OBJECT IDENTIFIER ::= { netBotzSensors 2 } - --- --- Top-level error status - worst active alert severity --- -netBotzErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error status of the appliance. If there are no error conditions - reported for the appliance, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the appliance." - ::= { netBotz 100 } - --- --- Enclosures --- - -enclosureTable OBJECT-TYPE - SYNTAX SEQUENCE OF EnclosureEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of enclosures (base enclosure and pods)." - ::= { netBotzEnclosures 1 } - -enclosureEntry OBJECT-TYPE - SYNTAX EnclosureEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Enclosure entry." - INDEX { enclosureIndex } - ::= { enclosureTable 1 } - -EnclosureEntry ::= SEQUENCE { - enclosureId DisplayString, - enclosureStatus OperStatus, - enclosureErrorStatus ErrorStatus, - enclosureLabel DisplayString, - enclosureParentEncId DisplayString, - enclosureDockedToEncId DisplayString, - enclosureIndex Counter32 -} - -enclosureId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure." - ::= { enclosureEntry 1 } - -enclosureStatus OBJECT-TYPE - SYNTAX OperStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the enclosure." - ::= { enclosureEntry 2 } - -enclosureErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error status of the enclosure. If there are no error conditions - reported for the enclosure, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the enclosure." - ::= { enclosureEntry 3 } - -enclosureLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the enclosure (or pod)." - ::= { enclosureEntry 4 } - -enclosureParentEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the parent enclosure this enclosure is attached to." - ::= { enclosureEntry 5 } - -enclosureDockedToEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the enclosure this enclosure is hard-docked with, - i.e. as when sensor and camera pods are docked with the base - system unit." - ::= { enclosureEntry 6 } - -enclosureIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the physical enclosure." - ::= { enclosureEntry 7 } - --- --- Ports --- - -dinPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF DINPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of DIN port entries." - ::= { netBotzPorts 1 } - -dinPortEntry OBJECT-TYPE - SYNTAX DINPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "DIN port entry." - INDEX { dinPortIndex } - ::= { dinPortTable 1 } - -DINPortEntry ::= SEQUENCE { - dinPortId DisplayString, - dinPortStatus OperStatus, - dinPortLabel DisplayString, - dinPortEncId DisplayString, - dinPortSensorIdSuffix DisplayString, - dinPortSupportsAverage BoolValue, - dinPortSupportsRMS BoolValue, - dinPortSupportsDryContact BoolValue, - dinPortIndex Counter32 -} - -dinPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the port." - ::= { dinPortEntry 1 } - -dinPortStatus OBJECT-TYPE - SYNTAX OperStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the port." - ::= { dinPortEntry 2 } - -dinPortLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the port." - ::= { dinPortEntry 3 } - -dinPortEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the port." - ::= { dinPortEntry 4 } - -dinPortSensorIdSuffix OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ID suffix added to a sensor plugged into the port. - The ID suffix is combined with the sensor class ID when - generating a local unique id for the DIN sensor." - ::= { dinPortEntry 5 } - -dinPortSupportsAverage OBJECT-TYPE - SYNTAX BoolValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether the port supports returning the average voltage - reading of the sensor. This is used to determine which - classes of sensors are supported by the port." - ::= { dinPortEntry 6 } - -dinPortSupportsRMS OBJECT-TYPE - SYNTAX BoolValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether the port supports returning the AC RMS voltage - reading of the sensor. This is used to determine which - classes of sensors are supported by the port." - ::= { dinPortEntry 7 } - -dinPortSupportsDryContact OBJECT-TYPE - SYNTAX BoolValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether the port supports generating the 'open' and - 'closed' state of a dry contact sensor. This information - is used to determine which classes of sensors are supported - by the port." - ::= { dinPortEntry 8 } - -dinPortIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the port." - ::= { dinPortEntry 9 } - -otherPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF OtherPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of other port entries." - ::= { netBotzPorts 10 } - -otherPortEntry OBJECT-TYPE - SYNTAX OtherPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Other port entry." - INDEX { otherPortIndex } - ::= { otherPortTable 1 } - -OtherPortEntry ::= SEQUENCE { - otherPortId DisplayString, - otherPortStatus OperStatus, - otherPortLabel DisplayString, - otherPortEncId DisplayString, - otherPortIndex Counter32 -} - -otherPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the port." - ::= { otherPortEntry 1 } - -otherPortStatus OBJECT-TYPE - SYNTAX OperStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the port." - ::= { otherPortEntry 2 } - -otherPortLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the port." - ::= { otherPortEntry 3 } - -otherPortEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the port." - ::= { otherPortEntry 4 } - -otherPortIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the port." - ::= { otherPortEntry 5 } - --- Numeric Sensors Group --- This group defines sensors for which the concepts of "less than" --- and "greater than" are meaningful. - -tempSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF TempSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of temperature sensor entries." - ::= { netBotzNumericSensors 1 } - -tempSensorEntry OBJECT-TYPE - SYNTAX TempSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A temperature sensor entry." - INDEX { tempSensorIndex } - ::= { tempSensorTable 1 } - -TempSensorEntry ::= SEQUENCE { - tempSensorId DisplayString, - tempSensorValue Integer32, - tempSensorErrorStatus ErrorStatus, - tempSensorLabel DisplayString, - tempSensorEncId DisplayString, - tempSensorPortId DisplayString, - tempSensorValueStr DisplayString, - tempSensorValueInt Integer32, - tempSensorValueIntF Integer32, - tempSensorIndex Counter32 -} - -tempSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { tempSensorEntry 1 } - -tempSensorValue OBJECT-TYPE - SYNTAX Integer32 (-500..1000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature measured by the sensor in tenths of a degree Celsius." - ::= { tempSensorEntry 2 } - -tempSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { tempSensorEntry 3 } - -tempSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { tempSensorEntry 4 } - -tempSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { tempSensorEntry 5 } - -tempSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { tempSensorEntry 6 } - -tempSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature reading, in degrees celsius, shown as a string (or empty string - if it is not plugged into a port)." - ::= { tempSensorEntry 7 } - -tempSensorValueInt OBJECT-TYPE - SYNTAX Integer32 (-50..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature measured by the sensor in degree Celsius." - ::= { tempSensorEntry 8 } - -tempSensorValueIntF OBJECT-TYPE - SYNTAX Integer32 (-50..212) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The temperature measured by the sensor in degree Farenheit." - ::= { tempSensorEntry 9 } - -tempSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { tempSensorEntry 10 } - -humiSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF HumiSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of humidity sensor entries." - ::= { netBotzNumericSensors 2 } - -humiSensorEntry OBJECT-TYPE - SYNTAX HumiSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A humidity sensor entry." - INDEX { humiSensorIndex } - ::= { humiSensorTable 1 } - -HumiSensorEntry ::= SEQUENCE { - humiSensorId DisplayString, - humiSensorValue Integer32, - humiSensorErrorStatus ErrorStatus, - humiSensorLabel DisplayString, - humiSensorEncId DisplayString, - humiSensorPortId DisplayString, - humiSensorValueStr DisplayString, - humiSensorValueInt Integer32, - humiSensorIndex Counter32 -} - -humiSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { humiSensorEntry 1 } - -humiSensorValue OBJECT-TYPE - SYNTAX Integer32 (0..1000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The relative humidity measured by the sensor in tenths of a percent." - ::= { humiSensorEntry 2 } - -humiSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { humiSensorEntry 3 } - -humiSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { humiSensorEntry 4 } - -humiSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { humiSensorEntry 5 } - -humiSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { humiSensorEntry 6 } - -humiSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The humidity reading, in percent, shown as a string (or empty string - if it is not plugged into a port)." - ::= { humiSensorEntry 7 } - -humiSensorValueInt OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The relative humidity measured by the sensor in percent." - ::= { humiSensorEntry 8 } - -humiSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { humiSensorEntry 9 } - -dewPointSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF DewPointSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of dew point sensor entries." - ::= { netBotzNumericSensors 3 } - -dewPointSensorEntry OBJECT-TYPE - SYNTAX DewPointSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A dew point sensor entry." - INDEX { dewPointSensorIndex } - ::= { dewPointSensorTable 1 } - -DewPointSensorEntry ::= SEQUENCE { - dewPointSensorId DisplayString, - dewPointSensorValue Integer32, - dewPointSensorErrorStatus ErrorStatus, - dewPointSensorLabel DisplayString, - dewPointSensorEncId DisplayString, - dewPointSensorPortId DisplayString, - dewPointSensorValueStr DisplayString, - dewPointSensorValueInt Integer32, - dewPointSensorIndex Counter32 -} - -dewPointSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { dewPointSensorEntry 1 } - -dewPointSensorValue OBJECT-TYPE - SYNTAX Integer32 (-500..1000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The dew point value measured by the sensor in tenths of a degree Celsius." - ::= { dewPointSensorEntry 2 } - -dewPointSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { dewPointSensorEntry 3 } - -dewPointSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { dewPointSensorEntry 4 } - -dewPointSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { dewPointSensorEntry 5 } - -dewPointSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { dewPointSensorEntry 6 } - -dewPointSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The dew point reading, in degrees celsius, shown as a string (or empty string - if it is not plugged into a port)." - ::= { dewPointSensorEntry 7 } - -dewPointSensorValueInt OBJECT-TYPE - SYNTAX Integer32 (-50..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The dew point value measured by the sensor in degrees Celsius." - ::= { dewPointSensorEntry 8 } - -dewPointSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { dewPointSensorEntry 9 } - -audioSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF AudioSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of audio sensor entries." - ::= { netBotzNumericSensors 4 } - -audioSensorEntry OBJECT-TYPE - SYNTAX AudioSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An audio sensor entry." - INDEX { audioSensorIndex } - ::= { audioSensorTable 1 } - -AudioSensorEntry ::= SEQUENCE { - audioSensorId DisplayString, - audioSensorValue Integer32, - audioSensorErrorStatus ErrorStatus, - audioSensorLabel DisplayString, - audioSensorEncId DisplayString, - audioSensorPortId DisplayString, - audioSensorValueStr DisplayString, - audioSensorValueInt Integer32, - audioSensorIndex Counter32 -} - -audioSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { audioSensorEntry 1 } - -audioSensorValue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The (unitless) audio level measured by the sensor." - ::= { audioSensorEntry 2 } - -audioSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { audioSensorEntry 3 } - -audioSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { audioSensorEntry 4 } - -audioSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { audioSensorEntry 5 } - -audioSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { audioSensorEntry 6 } - -audioSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The audio reading shown as a string (or empty string - if it is not plugged into a port)." - ::= { audioSensorEntry 7 } - -audioSensorValueInt OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The (unitless) audio level measured by the sensor (1/10 of audioSensorValue)." - ::= { audioSensorEntry 8 } - -audioSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { audioSensorEntry 9 } - -airFlowSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFlowSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of airflow sensor entries." - ::= { netBotzNumericSensors 5 } - -airFlowSensorEntry OBJECT-TYPE - SYNTAX AirFlowSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An air flow sensor entry." - INDEX { airFlowSensorIndex } - ::= { airFlowSensorTable 1 } - -AirFlowSensorEntry ::= SEQUENCE { - airFlowSensorId DisplayString, - airFlowSensorValue Integer32, - airFlowSensorErrorStatus ErrorStatus, - airFlowSensorLabel DisplayString, - airFlowSensorEncId DisplayString, - airFlowSensorPortId DisplayString, - airFlowSensorValueStr DisplayString, - airFlowSensorValueInt Integer32, - airFlowSensorIndex Counter32 -} - -airFlowSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { airFlowSensorEntry 1 } - -airFlowSensorValue OBJECT-TYPE - SYNTAX Integer32 (0..10000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The air flow measured by the sensor in tenths of a meter per minute." - ::= { airFlowSensorEntry 2 } - -airFlowSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { airFlowSensorEntry 3 } - -airFlowSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { airFlowSensorEntry 4 } - -airFlowSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { airFlowSensorEntry 5 } - -airFlowSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { airFlowSensorEntry 6 } - -airFlowSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The airflow reading, in meters per minute, shown as a string (or empty string - if it is not plugged into a port)." - ::= { airFlowSensorEntry 7 } - -airFlowSensorValueInt OBJECT-TYPE - SYNTAX Integer32 (0..1000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The air flow measured by the sensor in meters per minute." - ::= { airFlowSensorEntry 8 } - -airFlowSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { airFlowSensorEntry 9 } - -ampDetectSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF AmpDetectSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of amp detect sensor entries." - ::= { netBotzNumericSensors 6 } - -ampDetectSensorEntry OBJECT-TYPE - SYNTAX AmpDetectSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An ampere sensor entry." - INDEX { ampDetectSensorIndex } - ::= { ampDetectSensorTable 1 } - -AmpDetectSensorEntry ::= SEQUENCE { - ampDetectSensorId DisplayString, - ampDetectSensorValue Integer32, - ampDetectSensorErrorStatus ErrorStatus, - ampDetectSensorLabel DisplayString, - ampDetectSensorEncId DisplayString, - ampDetectSensorPortId DisplayString, - ampDetectSensorValueStr DisplayString, - ampDetectSensorValueInt Integer32, - ampDetectSensorIndex Counter32 -} - -ampDetectSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { ampDetectSensorEntry 1 } - -ampDetectSensorValue OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value measured by the sensor in tenths of an ampere." - ::= { ampDetectSensorEntry 2 } - -ampDetectSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { ampDetectSensorEntry 3 } - -ampDetectSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { ampDetectSensorEntry 4 } - -ampDetectSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { ampDetectSensorEntry 5 } - -ampDetectSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { ampDetectSensorEntry 6 } - -ampDetectSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amp detect reading, in amperes, shown as a string (or empty string - if it is not plugged into a port)." - ::= { ampDetectSensorEntry 7 } - -ampDetectSensorValueInt OBJECT-TYPE - SYNTAX Integer32 (0..6554) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value measured by the sensor in amperes." - ::= { ampDetectSensorEntry 8 } - -ampDetectSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { ampDetectSensorEntry 9 } - -otherNumericSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF OtherNumericSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of other numeric sensor entries." - ::= { netBotzNumericSensors 10 } - -otherNumericSensorEntry OBJECT-TYPE - SYNTAX OtherNumericSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Other numeric sensor entry." - INDEX { otherNumericSensorIndex } - ::= { otherNumericSensorTable 1 } - -OtherNumericSensorEntry ::= SEQUENCE { - otherNumericSensorId DisplayString, - otherNumericSensorValue Integer32, - otherNumericSensorErrorStatus ErrorStatus, - otherNumericSensorLabel DisplayString, - otherNumericSensorEncId DisplayString, - otherNumericSensorPortId DisplayString, - otherNumericSensorValueStr DisplayString, - otherNumericSensorValueInt Integer32, - otherNumericSensorUnits DisplayString, - otherNumericSensorValueIntX1000 Integer32, - otherNumericSensorValueIntX1000000 Integer32, - otherNumericSensorIndex Counter32 -} - -otherNumericSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { otherNumericSensorEntry 1 } - -otherNumericSensorValue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value measured by the sensor in tenths of the unit of measure." - ::= { otherNumericSensorEntry 2 } - -otherNumericSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { otherNumericSensorEntry 3 } - -otherNumericSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { otherNumericSensorEntry 4 } - -otherNumericSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { otherNumericSensorEntry 5 } - -otherNumericSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { otherNumericSensorEntry 6 } - -otherNumericSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The sensor reading shown as a string (or empty string - if it is not plugged into a port)." - ::= { otherNumericSensorEntry 7 } - -otherNumericSensorValueInt OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value measured by the sensor in the unit of measure (1/10 of otherNumericSensorValue)" - ::= { otherNumericSensorEntry 8 } - -otherNumericSensorUnits OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unit of measure for the sensor value." - ::= { otherNumericSensorEntry 9 } - -otherNumericSensorValueIntX1000 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value measured by the sensor in thousandths of the unit of measure (100 times otherNumericSensorValue)" - ::= { otherNumericSensorEntry 10 } - -otherNumericSensorValueIntX1000000 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value measured by the sensor in millionths of the unit of measure (100000 times otherNumericSensorValue)" - ::= { otherNumericSensorEntry 11 } - -otherNumericSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { otherNumericSensorEntry 12 } - --- State Sensors Group --- This group defines sensors having an integer value which is --- a defined state id or index. - -dryContactSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF DryContactSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of dry contact sensor entries." - ::= { netBotzStateSensors 1 } - -dryContactSensorEntry OBJECT-TYPE - SYNTAX DryContactSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Dry contact sensor entry." - INDEX { dryContactSensorIndex } - ::= { dryContactSensorTable 1 } - -DryContactSensorEntry ::= SEQUENCE { - dryContactSensorId DisplayString, - dryContactSensorValue INTEGER, - dryContactSensorErrorStatus ErrorStatus, - dryContactSensorLabel DisplayString, - dryContactSensorEncId DisplayString, - dryContactSensorPortId DisplayString, - dryContactSensorValueStr DisplayString, - dryContactSensorIndex Counter32 -} - -dryContactSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { dryContactSensorEntry 1 } - -dryContactSensorValue OBJECT-TYPE - SYNTAX INTEGER { null(-1), open(0), closed(1) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether the dry sensor contact is open or closed." - ::= { dryContactSensorEntry 2 } - -dryContactSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { dryContactSensorEntry 3 } - -dryContactSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { dryContactSensorEntry 4 } - -dryContactSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { dryContactSensorEntry 5 } - -dryContactSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { dryContactSensorEntry 6 } - -dryContactSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enum value label for the state reported by the sensor." - ::= { dryContactSensorEntry 7 } - -dryContactSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { dryContactSensorEntry 8 } - -doorSwitchSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF DoorSwitchSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of door switch sensor entries." - ::= { netBotzStateSensors 2 } - -doorSwitchSensorEntry OBJECT-TYPE - SYNTAX DoorSwitchSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Door switch sensor entry." - INDEX { doorSwitchSensorIndex } - ::= { doorSwitchSensorTable 1 } - -DoorSwitchSensorEntry ::= SEQUENCE { - doorSwitchSensorId DisplayString, - doorSwitchSensorValue INTEGER, - doorSwitchSensorErrorStatus ErrorStatus, - doorSwitchSensorLabel DisplayString, - doorSwitchSensorEncId DisplayString, - doorSwitchSensorPortId DisplayString, - doorSwitchSensorValueStr DisplayString, - doorSwitchSensorIndex Counter32 -} - -doorSwitchSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { doorSwitchSensorEntry 1 } - -doorSwitchSensorValue OBJECT-TYPE - SYNTAX INTEGER { null(-1), open(0), closed(1) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether the door is open or closed." - ::= { doorSwitchSensorEntry 2 } - -doorSwitchSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { doorSwitchSensorEntry 3 } - -doorSwitchSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { doorSwitchSensorEntry 4 } - -doorSwitchSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { doorSwitchSensorEntry 5 } - -doorSwitchSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { doorSwitchSensorEntry 6 } - -doorSwitchSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enum value label for the state reported by the sensor." - ::= { doorSwitchSensorEntry 7 } - -doorSwitchSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { doorSwitchSensorEntry 8 } - -cameraMotionSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF CameraMotionSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of camera motion sensor entries." - ::= { netBotzStateSensors 3 } - -cameraMotionSensorEntry OBJECT-TYPE - SYNTAX CameraMotionSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Camera motion sensor entry." - INDEX { cameraMotionSensorIndex } - ::= { cameraMotionSensorTable 1 } - -CameraMotionSensorEntry ::= SEQUENCE { - cameraMotionSensorId DisplayString, - cameraMotionSensorValue INTEGER, - cameraMotionSensorErrorStatus ErrorStatus, - cameraMotionSensorLabel DisplayString, - cameraMotionSensorEncId DisplayString, - cameraMotionSensorPortId DisplayString, - cameraMotionSensorValueStr DisplayString, - cameraMotionSensorIndex Counter32 -} - -cameraMotionSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { cameraMotionSensorEntry 1 } - -cameraMotionSensorValue OBJECT-TYPE - SYNTAX INTEGER { null(-1), noMotion(0), motionDetected(1) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether motion is detected by the camera sensor." - ::= { cameraMotionSensorEntry 2 } - -cameraMotionSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { cameraMotionSensorEntry 3 } - -cameraMotionSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { cameraMotionSensorEntry 4 } - -cameraMotionSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { cameraMotionSensorEntry 5 } - -cameraMotionSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { cameraMotionSensorEntry 6 } - -cameraMotionSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enum value label for the state reported by the sensor." - ::= { cameraMotionSensorEntry 7 } - -cameraMotionSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { cameraMotionSensorEntry 8 } - -otherStateSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF OtherStateSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of other state sensor entries." - ::= { netBotzStateSensors 10 } - -otherStateSensorEntry OBJECT-TYPE - SYNTAX OtherStateSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Other state sensor entry." - INDEX { otherStateSensorIndex } - ::= { otherStateSensorTable 1 } - -OtherStateSensorEntry ::= SEQUENCE { - otherStateSensorId DisplayString, - otherStateSensorValue INTEGER, - otherStateSensorErrorStatus ErrorStatus, - otherStateSensorLabel DisplayString, - otherStateSensorEncId DisplayString, - otherStateSensorPortId DisplayString, - otherStateSensorValueStr DisplayString, - otherStateSensorIndex Counter32 -} - -otherStateSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the sensor." - ::= { otherStateSensorEntry 1 } - -otherStateSensorValue OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "State value reported by the sensor." - ::= { otherStateSensorEntry 2 } - -otherStateSensorErrorStatus OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the sensor. If there are no error conditions - reported for the sensor, the status is normal. Otherwise, the status is - reported as the severity value of the highest severity error condition - that is not resolved for the sensor." - ::= { otherStateSensorEntry 3 } - -otherStateSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique label assigned to the sensor." - ::= { otherStateSensorEntry 4 } - -otherStateSensorEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure containing the sensor." - ::= { otherStateSensorEntry 5 } - -otherStateSensorPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of port the sensor is plugged into (or empty string - if it is not plugged into a port)." - ::= { otherStateSensorEntry 6 } - -otherStateSensorValueStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The enum value label for the state reported by the sensor." - ::= { otherStateSensorEntry 7 } - -otherStateSensorIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the sensor." - ::= { otherStateSensorEntry 8 } - --- Error Conditions Group --- - -errorCondTable OBJECT-TYPE - SYNTAX SEQUENCE OF ErrorCondEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of active and resolved error conditions." - ::= { netBotzErrors 1 } - -errorCondEntry OBJECT-TYPE - SYNTAX ErrorCondEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Error condition entry." - INDEX { errorCondIndex } - ::= { errorCondTable 1 } - -ErrorCondEntry ::= SEQUENCE { - errorCondId DisplayString, - errorCondSeverity ErrorStatus, - errorCondTypeId DisplayString, - errorCondStartTime DateAndTime, - errorCondStartTimeStr DisplayString, - errorCondResolved BoolValue, - errorCondResolvedTime DateAndTime, - errorCondResolvedTimeStr DisplayString, - errorCondEncId DisplayString, - errorCondPortId DisplayString, - errorCondSensorId DisplayString, - errorCondIndex Counter32 -} - -errorCondId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique id of the error condition." - ::= { errorCondEntry 1 } - -errorCondSeverity OBJECT-TYPE - SYNTAX ErrorStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The relative severity of the error condition." - ::= { errorCondEntry 2 } - -errorCondTypeId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The error type id reported for the error condition." - ::= { errorCondEntry 3 } - -errorCondStartTime OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The start time of the error condition, in msec since 1/1/1970." - ::= { errorCondEntry 4 } - -errorCondStartTimeStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The start time of the error condition, as ISO date-time formatted string (UTC)." - ::= { errorCondEntry 5 } - -errorCondResolved OBJECT-TYPE - SYNTAX BoolValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether the error condition was resolved." - ::= { errorCondEntry 6 } - -errorCondResolvedTime OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time the error condition was resolved (if it was resolved), in msec since 1/1/1970." - ::= { errorCondEntry 7 } - -errorCondResolvedTimeStr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time the error condition was resolved (if it was resolved), as ISO date-time formatted string (UTC)." - ::= { errorCondEntry 8 } - -errorCondEncId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the physical enclosure associated with the error." - ::= { errorCondEntry 9 } - -errorCondPortId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the port associated with the error (or empty string - if the error is not associated with a port)." - ::= { errorCondEntry 10 } - -errorCondSensorId OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The id of the sensor associated with the error (or empty string - if the error is not associated with a sensor.)" - ::= { errorCondEntry 11 } - -errorCondIndex OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the error condition." - ::= { errorCondEntry 12 } - - --- Alert specific definitions --- - -netBotzTrapErrorID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Unique ID of error condition that produced the trap" - ::= { netBotzTrapParms 1 } - -netBotzTrapErrorType OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Symbolic ID of error type" - ::= { netBotzTrapParms 2 } - - -netBotzTrapErrorTypeLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Label for error type" - ::= { netBotzTrapParms 3 } - - -netBotzTrapSensorID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "ID of sensor associated with error condition that produced the trap" - ::= { netBotzTrapParms 4 } - -netBotzTrapSensorLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Label of sensor associated with error condition that produced the trap" - ::= { netBotzTrapParms 5 } - -netBotzTrapPodID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "ID of pod associated with error condition that produced the trap" - ::= { netBotzTrapParms 6 } - -netBotzTrapPodLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Label of pod associated with error condition that produced the trap" - ::= { netBotzTrapParms 7 } - -netBotzTrapPortID OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "ID of port associated with error condition that produced the trap" - ::= { netBotzTrapParms 8 } - -netBotzTrapPortLabel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Label of port associated with error condition that produced the trap" - ::= { netBotzTrapParms 9 } - -netBotzTrapStartTime OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Start time (in UTC seconds) for error that produced the trap" - ::= { netBotzTrapParms 10 } - -netBotzTrapNotifyTime OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Notification time (in UTC seconds) for error that produced the trap" - ::= { netBotzTrapParms 11 } - -netBotzTrapResolveTime OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Resolve time (in UTC seconds) for error that produced the trap" - ::= { netBotzTrapParms 12 } - -netBotzTrapSeverity OBJECT-TYPE - SYNTAX INTEGER { - information(0), - warning(1), - error(2), - critical(3), - failure(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Severity of error that produced the trap" - ::= { netBotzTrapParms 13 } - -netBotzTrapSensorValue OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "String presentation of value of sensor" - ::= { netBotzTrapParms 14 } - -netBotzTrapSensorValueInt OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Whole integer representation of value of sensor (without decimal portion)" - ::= { netBotzTrapParms 15 } - -netBotzTrapSensorValueFraction OBJECT-TYPE - SYNTAX INTEGER - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Fractional portion of value of sensor (multiplied by 1000000)" - ::= { netBotzTrapParms 16 } - - -netBotzTempTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION "Temperature sensor value too high." - ::= { netBotzTempSensorTraps 0 2 } - -netBotzTempTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION "Temperature sensor value is no longer too high." - ::= { netBotzTempSensorTraps 0 102 } - -netBotzTempTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION "Temperature sensor value too low." - ::= { netBotzTempSensorTraps 0 3 } - -netBotzTempTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION "Temperature sensor value is no longer too low." - ::= { netBotzTempSensorTraps 0 103 } - -netBotzTempTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value too high for too long." - ::= { netBotzTempSensorTraps 0 4 } - -netBotzTempTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value is no longer too high for too long." - ::= { netBotzTempSensorTraps 0 104 } - -netBotzTempTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value too low for too long." - ::= { netBotzTempSensorTraps 0 5 } - -netBotzTempTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value is no longer too low for too long." - ::= { netBotzTempSensorTraps 0 105 } - -netBotzTempUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor unplugged." - ::= { netBotzTempSensorTraps 0 6 } - -netBotzTempReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor no longer unplugged." - ::= { netBotzTempSensorTraps 0 106 } - -netBotzTempIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value increasing too quickly." - ::= { netBotzTempSensorTraps 0 8 } - -netBotzTempNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value no longer increasing too quickly." - ::= { netBotzTempSensorTraps 0 108 } - -netBotzTempDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value decreasing too quickly." - ::= { netBotzTempSensorTraps 0 9 } - -netBotzTempNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor value no longer decreasing too quickly." - ::= { netBotzTempSensorTraps 0 109 } - -netBotzTempError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor error." - ::= { netBotzTempSensorTraps 0 1 } - -netBotzTempErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Temperature sensor error resolved." - ::= { netBotzTempSensorTraps 0 101 } - -netBotzHumidityTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value too high." - ::= { netBotzHumiditySensorTraps 0 2 } - -netBotzHumidityTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value is no longer too high." - ::= { netBotzHumiditySensorTraps 0 102 } - -netBotzHumidityTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value too low." - ::= { netBotzHumiditySensorTraps 0 3 } - -netBotzHumidityTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value is no longer too low." - ::= { netBotzHumiditySensorTraps 0 103 } - -netBotzHumidityTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value too high for too long." - ::= { netBotzHumiditySensorTraps 0 4 } - -netBotzHumidityTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value is no longer too high for too long." - ::= { netBotzHumiditySensorTraps 0 104 } - -netBotzHumidityTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value too low for too long." - ::= { netBotzHumiditySensorTraps 0 5 } - -netBotzHumidityTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value is no longer too low for too long." - ::= { netBotzHumiditySensorTraps 0 105 } - -netBotzHumidityUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor unplugged." - ::= { netBotzHumiditySensorTraps 0 6 } - -netBotzHumidityReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor no longer unplugged." - ::= { netBotzHumiditySensorTraps 0 106 } - -netBotzHumidityIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value increasing too quickly." - ::= { netBotzHumiditySensorTraps 0 8 } - -netBotzHumidityNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value no longer increasing too quickly." - ::= { netBotzHumiditySensorTraps 0 108 } - -netBotzHumidityDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value decreasing too quickly." - ::= { netBotzHumiditySensorTraps 0 9 } - -netBotzHumidityNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor value no longer decreasing too quickly." - ::= { netBotzHumiditySensorTraps 0 109 } - -netBotzHumidityError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor error." - ::= { netBotzHumiditySensorTraps 0 1 } - -netBotzHumidityErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Humidity sensor error resolved." - ::= { netBotzHumiditySensorTraps 0 101 } - -netBotzDewPointTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value too high." - ::= { netBotzDewPointSensorTraps 0 2 } - -netBotzDewPointTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value is no longer too high." - ::= { netBotzDewPointSensorTraps 0 102 } - -netBotzDewPointTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value too low." - ::= { netBotzDewPointSensorTraps 0 3 } - -netBotzDewPointTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value is no longer too low." - ::= { netBotzDewPointSensorTraps 0 103 } - -netBotzDewPointTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value too high for too long." - ::= { netBotzDewPointSensorTraps 0 4 } - -netBotzDewPointTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value is no longer too high for too long." - ::= { netBotzDewPointSensorTraps 0 104 } - -netBotzDewPointTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value too low for too long." - ::= { netBotzDewPointSensorTraps 0 5 } - -netBotzDewPointTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value is no longer too low for too long." - ::= { netBotzDewPointSensorTraps 0 105 } - -netBotzDewPointUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor unplugged." - ::= { netBotzDewPointSensorTraps 0 6 } - -netBotzDewPointReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor no longer unplugged." - ::= { netBotzDewPointSensorTraps 0 106 } - -netBotzDewPointIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value increasing too quickly." - ::= { netBotzDewPointSensorTraps 0 8 } - -netBotzDewPointNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value no longer increasing too quickly." - ::= { netBotzDewPointSensorTraps 0 108 } - -netBotzDewPointDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value decreasing too quickly." - ::= { netBotzDewPointSensorTraps 0 9 } - -netBotzDewPointNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor value no longer decreasing too quickly." - ::= { netBotzDewPointSensorTraps 0 109 } - -netBotzDewPointError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor error." - ::= { netBotzDewPointSensorTraps 0 1 } - -netBotzDewPointErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "DewPoint sensor error resolved." - ::= { netBotzDewPointSensorTraps 0 101 } - -netBotzAirFlowTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value too high." - ::= { netBotzAirFlowSensorTraps 0 2 } - -netBotzAirFlowTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value is no longer too high." - ::= { netBotzAirFlowSensorTraps 0 102 } - -netBotzAirFlowTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value too low." - ::= { netBotzAirFlowSensorTraps 0 3 } - -netBotzAirFlowTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value is no longer too low." - ::= { netBotzAirFlowSensorTraps 0 103 } - -netBotzAirFlowTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value too high for too long." - ::= { netBotzAirFlowSensorTraps 0 4 } - -netBotzAirFlowTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value is no longer too high for too long." - ::= { netBotzAirFlowSensorTraps 0 104 } - -netBotzAirFlowTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value too low for too long." - ::= { netBotzAirFlowSensorTraps 0 5 } - -netBotzAirFlowTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value is no longer too low for too long." - ::= { netBotzAirFlowSensorTraps 0 105 } - -netBotzAirFlowUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor unplugged." - ::= { netBotzAirFlowSensorTraps 0 6 } - -netBotzAirFlowReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor no longer unplugged." - ::= { netBotzAirFlowSensorTraps 0 106 } - -netBotzAirFlowIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value increasing too quickly." - ::= { netBotzAirFlowSensorTraps 0 8 } - -netBotzAirFlowNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value no longer increasing too quickly." - ::= { netBotzAirFlowSensorTraps 0 108 } - -netBotzAirFlowDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value decreasing too quickly." - ::= { netBotzAirFlowSensorTraps 0 9 } - -netBotzAirFlowNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor value no longer decreasing too quickly." - ::= { netBotzAirFlowSensorTraps 0 109 } - -netBotzAirFlowError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor error." - ::= { netBotzAirFlowSensorTraps 0 1 } - -netBotzAirFlowErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "AirFlow sensor error resolved." - ::= { netBotzAirFlowSensorTraps 0 101 } - -netBotzAudioTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value too high." - ::= { netBotzAudioSensorTraps 0 2 } - -netBotzAudioTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value is no longer too high." - ::= { netBotzAudioSensorTraps 0 102 } - -netBotzAudioTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value too low." - ::= { netBotzAudioSensorTraps 0 3 } - -netBotzAudioTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value is no longer too low." - ::= { netBotzAudioSensorTraps 0 103 } - -netBotzAudioTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value too high for too long." - ::= { netBotzAudioSensorTraps 0 4 } - -netBotzAudioTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value is no longer too high for too long." - ::= { netBotzAudioSensorTraps 0 104 } - -netBotzAudioTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value too low for too long." - ::= { netBotzAudioSensorTraps 0 5 } - -netBotzAudioTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value is no longer too low for too long." - ::= { netBotzAudioSensorTraps 0 105 } - -netBotzAudioUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor unplugged." - ::= { netBotzAudioSensorTraps 0 6 } - -netBotzAudioReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor no longer unplugged." - ::= { netBotzAudioSensorTraps 0 106 } - -netBotzAudioIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value increasing too quickly." - ::= { netBotzAudioSensorTraps 0 8 } - -netBotzAudioNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value no longer increasing too quickly." - ::= { netBotzAudioSensorTraps 0 108 } - -netBotzAudioDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value decreasing too quickly." - ::= { netBotzAudioSensorTraps 0 9 } - -netBotzAudioNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor value no longer decreasing too quickly." - ::= { netBotzAudioSensorTraps 0 109 } - -netBotzAudioError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor error." - ::= { netBotzAudioSensorTraps 0 1 } - -netBotzAudioErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Audio sensor error resolved." - ::= { netBotzAudioSensorTraps 0 101 } - -netBotzAmpDetectTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value too high." - ::= { netBotzAmpDetectSensorTraps 0 2 } - -netBotzAmpDetectTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value is no longer too high." - ::= { netBotzAmpDetectSensorTraps 0 102 } - -netBotzAmpDetectTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value too low." - ::= { netBotzAmpDetectSensorTraps 0 3 } - -netBotzAmpDetectTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value is no longer too low." - ::= { netBotzAmpDetectSensorTraps 0 103 } - -netBotzAmpDetectTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value too high for too long." - ::= { netBotzAmpDetectSensorTraps 0 4 } - -netBotzAmpDetectTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value is no longer too high for too long." - ::= { netBotzAmpDetectSensorTraps 0 104 } - -netBotzAmpDetectTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value too low for too long." - ::= { netBotzAmpDetectSensorTraps 0 5 } - -netBotzAmpDetectTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value is no longer too low for too long." - ::= { netBotzAmpDetectSensorTraps 0 105 } - -netBotzAmpDetectUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor unplugged." - ::= { netBotzAmpDetectSensorTraps 0 6 } - -netBotzAmpDetectReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor no longer unplugged." - ::= { netBotzAmpDetectSensorTraps 0 106 } - -netBotzAmpDetectIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value increasing too quickly." - ::= { netBotzAmpDetectSensorTraps 0 8 } - -netBotzAmpDetectNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value no longer increasing too quickly." - ::= { netBotzAmpDetectSensorTraps 0 108 } - -netBotzAmpDetectDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value decreasing too quickly." - ::= { netBotzAmpDetectSensorTraps 0 9 } - -netBotzAmpDetectNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor value no longer decreasing too quickly." - ::= { netBotzAmpDetectSensorTraps 0 109 } - -netBotzAmpDetectError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor error." - ::= { netBotzAmpDetectSensorTraps 0 1 } - -netBotzAmpDetectErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Amp Detectsensor error resolved." - ::= { netBotzAmpDetectSensorTraps 0 101 } - -netBotzDryContactUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Dry Contact sensor unplugged." - ::= { netBotzDryContactSensorTraps 0 6 } - -netBotzDryContactReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Dry Contact sensor no longer unplugged." - ::= { netBotzDryContactSensorTraps 0 106 } - -netBotzDryContactError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Dry Contact sensor error." - ::= { netBotzDryContactSensorTraps 0 1 } - -netBotzDryContactErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Dry Contact sensor error resolved." - ::= { netBotzDryContactSensorTraps 0 101 } - -netBotzDryContactValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Dry Contact sensor value error." - ::= { netBotzDryContactSensorTraps 0 10 } - -netBotzDryContactValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Dry Contact sensor value error resolved." - ::= { netBotzDryContactSensorTraps 0 110 } - -netBotzCameraMotionSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Motion Sensor sensor unplugged." - ::= { netBotzCameraMotionSensorTraps 0 6 } - -netBotzCameraMotionSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Motion Sensor sensor no longer unplugged." - ::= { netBotzCameraMotionSensorTraps 0 106 } - -netBotzCameraMotionSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Motion Sensor sensor error." - ::= { netBotzCameraMotionSensorTraps 0 1 } - -netBotzCameraMotionSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Motion Sensor sensor error resolved." - ::= { netBotzCameraMotionSensorTraps 0 101 } - -netBotzCameraMotionSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Motion Sensor sensor value error." - ::= { netBotzCameraMotionSensorTraps 0 10 } - -netBotzCameraMotionSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Motion Sensor sensor value error resolved." - ::= { netBotzCameraMotionSensorTraps 0 110 } - -netBotzDoorSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Door Sensor sensor unplugged." - ::= { netBotzDoorSensorTraps 0 6 } - -netBotzDoorSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Door Sensor sensor no longer unplugged." - ::= { netBotzDoorSensorTraps 0 106 } - -netBotzDoorSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Door Sensor sensor error." - ::= { netBotzDoorSensorTraps 0 1 } - -netBotzDoorSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Door Sensor sensor error resolved." - ::= { netBotzDoorSensorTraps 0 101 } - -netBotzDoorSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Door Sensor sensor value error." - ::= { netBotzDoorSensorTraps 0 10 } - -netBotzDoorSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Door Sensor sensor value error resolved." - ::= { netBotzDoorSensorTraps 0 110 } - -netBotzMicPlugSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MicPlug Sensor sensor unplugged." - ::= { netBotzMicPlugSensorTraps 0 6 } - -netBotzMicPlugSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MicPlug Sensor sensor no longer unplugged." - ::= { netBotzMicPlugSensorTraps 0 106 } - -netBotzMicPlugSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MicPlug Sensor sensor error." - ::= { netBotzMicPlugSensorTraps 0 1 } - -netBotzMicPlugSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MicPlug Sensor sensor error resolved." - ::= { netBotzMicPlugSensorTraps 0 101 } - -netBotzMicPlugSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MicPlug Sensor sensor value error." - ::= { netBotzMicPlugSensorTraps 0 10 } - -netBotzMicPlugSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MicPlug Sensor sensor value error resolved." - ::= { netBotzMicPlugSensorTraps 0 110 } - -netBotzSpeakerPlugSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SpeakerPlug Sensor sensor unplugged." - ::= { netBotzSpeakerPlugSensorTraps 0 6 } - -netBotzSpeakerPlugSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SpeakerPlug Sensor sensor no longer unplugged." - ::= { netBotzSpeakerPlugSensorTraps 0 106 } - -netBotzSpeakerPlugSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SpeakerPlug Sensor sensor error." - ::= { netBotzSpeakerPlugSensorTraps 0 1 } - -netBotzSpeakerPlugSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SpeakerPlug Sensor sensor error resolved." - ::= { netBotzSpeakerPlugSensorTraps 0 101 } - -netBotzSpeakerPlugSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SpeakerPlug Sensor sensor value error." - ::= { netBotzSpeakerPlugSensorTraps 0 10 } - -netBotzSpeakerPlugSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SpeakerPlug Sensor sensor value error resolved." - ::= { netBotzSpeakerPlugSensorTraps 0 110 } - - -netBotzTVSignalSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "TVSignal Sensor sensor unplugged." - ::= { netBotzTVSignalSensorTraps 0 6 } - -netBotzTVSignalSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "TVSignal Sensor sensor no longer unplugged." - ::= { netBotzTVSignalSensorTraps 0 106 } - -netBotzTVSignalSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "TVSignal Sensor sensor error." - ::= { netBotzTVSignalSensorTraps 0 1 } - -netBotzTVSignalSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "TVSignal Sensor sensor error resolved." - ::= { netBotzTVSignalSensorTraps 0 101 } - -netBotzTVSignalSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "TVSignal Sensor sensor value error." - ::= { netBotzTVSignalSensorTraps 0 10 } - -netBotzTVSignalSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "TVSignal Sensor sensor value error resolved." - ::= { netBotzTVSignalSensorTraps 0 110 } - -netBotzPodUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Pod unplugged." - ::= { netBotzPodTraps 0 7 } - -netBotzPodReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Pod no longer unplugged." - ::= { netBotzPodTraps 0 107 } - -netBotzSensorPodUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Sensor Pod unplugged." - ::= { netBotzSensorPodTraps 0 7 } - -netBotzSensorPodReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Sensor Pod no longer unplugged." - ::= { netBotzSensorPodTraps 0 107 } - -netBotzCameraPodUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Pod unplugged." - ::= { netBotzCameraPodTraps 0 7 } - -netBotzCameraPodReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Camera Pod no longer unplugged." - ::= { netBotzCameraPodTraps 0 107 } - -netBotzCCTVPodUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "CCTV Pod unplugged." - ::= { netBotzCCTVPodTraps 0 7 } - -netBotzCCTVPodReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "CCTV Pod no longer unplugged." - ::= { netBotzCCTVPodTraps 0 107 } - -netBotz4to20mAPodUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "4-20mA Pod unplugged." - ::= { netBotz4to20mAPodTraps 0 7 } - -netBotz4to20mAPodReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "4-20mA Pod no longer unplugged." - ::= { netBotz4to20mAPodTraps 0 107 } - -netBotzLogonError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Multiple failed logon attempts." - ::= { netBotzPodTraps 0 11 } - -netBotzLogonErrorResolved NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Failed logon attempts stopped, or logon succeeded." - ::= { netBotzPodTraps 0 111 } - -netBotzDriveNotFoundError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Configured add-on drive not found or has malfunctioned." - ::= { netBotzPodTraps 0 12 } - -netBotzDriveNotFoundErrorResolved NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Missing add-on drive has bee found." - ::= { netBotzPodTraps 0 112 } - -netBotzRmtLinkError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Configured remote link has failed." - ::= { netBotzPodTraps 0 13 } - -netBotzRmtLinkErrorResolved NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Configured remote link has returned to normal." - ::= { netBotzPodTraps 0 113 } - -netBotzGPSPositionTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value too high." - ::= { netBotzGPSPositionSensorTraps 0 2 } - -netBotzGPSPositionTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value is no longer too high." - ::= { netBotzGPSPositionSensorTraps 0 102 } - -netBotzGPSPositionTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value too low." - ::= { netBotzGPSPositionSensorTraps 0 3 } - -netBotzGPSPositionTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value is no longer too low." - ::= { netBotzGPSPositionSensorTraps 0 103 } - -netBotzGPSPositionTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value too high for too long." - ::= { netBotzGPSPositionSensorTraps 0 4 } - -netBotzGPSPositionTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value is no longer too high for too long." - ::= { netBotzGPSPositionSensorTraps 0 104 } - -netBotzGPSPositionTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position ensor value too low for too long." - ::= { netBotzGPSPositionSensorTraps 0 5 } - -netBotzGPSPositionTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value is no longer too low for too long." - ::= { netBotzGPSPositionSensorTraps 0 105 } - -netBotzGPSPositionUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor unplugged." - ::= { netBotzGPSPositionSensorTraps 0 6 } - -netBotzGPSPositionReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor no longer unplugged." - ::= { netBotzGPSPositionSensorTraps 0 106 } - -netBotzGPSPositionIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value increasing too quickly." - ::= { netBotzGPSPositionSensorTraps 0 8 } - -netBotzGPSPositionNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value no longer increasing too quickly." - ::= { netBotzGPSPositionSensorTraps 0 108 } - -netBotzGPSPositionDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value decreasing too quickly." - ::= { netBotzGPSPositionSensorTraps 0 9 } - -netBotzGPSPositionNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor value no longer decreasing too quickly." - ::= { netBotzGPSPositionSensorTraps 0 109 } - -netBotzGPSPositionError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor error." - ::= { netBotzGPSPositionSensorTraps 0 1 } - -netBotzGPSPositionErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Position sensor error resolved." - ::= { netBotzGPSPositionSensorTraps 0 101 } - -netBotzGPSMovementTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value too high." - ::= { netBotzGPSMovementSensorTraps 0 2 } - -netBotzGPSMovementTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value is no longer too high." - ::= { netBotzGPSMovementSensorTraps 0 102 } - -netBotzGPSMovementTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value too low." - ::= { netBotzGPSMovementSensorTraps 0 3 } - -netBotzGPSMovementTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value is no longer too low." - ::= { netBotzGPSMovementSensorTraps 0 103 } - -netBotzGPSMovementTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value too high for too long." - ::= { netBotzGPSMovementSensorTraps 0 4 } - -netBotzGPSMovementTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value is no longer too high for too long." - ::= { netBotzGPSMovementSensorTraps 0 104 } - -netBotzGPSMovementTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement ensor value too low for too long." - ::= { netBotzGPSMovementSensorTraps 0 5 } - -netBotzGPSMovementTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value is no longer too low for too long." - ::= { netBotzGPSMovementSensorTraps 0 105 } - -netBotzGPSMovementUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor unplugged." - ::= { netBotzGPSMovementSensorTraps 0 6 } - -netBotzGPSMovementReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor no longer unplugged." - ::= { netBotzGPSMovementSensorTraps 0 106 } - -netBotzGPSMovementIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value increasing too quickly." - ::= { netBotzGPSMovementSensorTraps 0 8 } - -netBotzGPSMovementNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value no longer increasing too quickly." - ::= { netBotzGPSMovementSensorTraps 0 108 } - -netBotzGPSMovementDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value decreasing too quickly." - ::= { netBotzGPSMovementSensorTraps 0 9 } - -netBotzGPSMovementNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor value no longer decreasing too quickly." - ::= { netBotzGPSMovementSensorTraps 0 109 } - -netBotzGPSMovementError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor error." - ::= { netBotzGPSMovementSensorTraps 0 1 } - -netBotzGPSMovementErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Movement sensor error resolved." - ::= { netBotzGPSMovementSensorTraps 0 101 } - -netBotzPacketDropTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value too high." - ::= { netBotzPacketDropSensorTraps 0 2 } - -netBotzPacketDropTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value is no longer too high." - ::= { netBotzPacketDropSensorTraps 0 102 } - -netBotzPacketDropTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value too low." - ::= { netBotzPacketDropSensorTraps 0 3 } - -netBotzPacketDropTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value is no longer too low." - ::= { netBotzPacketDropSensorTraps 0 103 } - -netBotzPacketDropTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value too high for too long." - ::= { netBotzPacketDropSensorTraps 0 4 } - -netBotzPacketDropTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value is no longer too high for too long." - ::= { netBotzPacketDropSensorTraps 0 104 } - -netBotzPacketDropTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop ensor value too low for too long." - ::= { netBotzPacketDropSensorTraps 0 5 } - -netBotzPacketDropTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value is no longer too low for too long." - ::= { netBotzPacketDropSensorTraps 0 105 } - -netBotzPacketDropUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor unplugged." - ::= { netBotzPacketDropSensorTraps 0 6 } - -netBotzPacketDropReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor no longer unplugged." - ::= { netBotzPacketDropSensorTraps 0 106 } - -netBotzPacketDropIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value increasing too quickly." - ::= { netBotzPacketDropSensorTraps 0 8 } - -netBotzPacketDropNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value no longer increasing too quickly." - ::= { netBotzPacketDropSensorTraps 0 108 } - -netBotzPacketDropDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value decreasing too quickly." - ::= { netBotzPacketDropSensorTraps 0 9 } - -netBotzPacketDropNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor value no longer decreasing too quickly." - ::= { netBotzPacketDropSensorTraps 0 109 } - -netBotzPacketDropError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor error." - ::= { netBotzPacketDropSensorTraps 0 1 } - -netBotzPacketDropErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Packet Drop sensor error resolved." - ::= { netBotzPacketDropSensorTraps 0 101 } - -netBotzSNMPCrawlerTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value too high." - ::= { netBotzSNMPCrawlerSensorTraps 0 2 } - -netBotzSNMPCrawlerTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value is no longer too high." - ::= { netBotzSNMPCrawlerSensorTraps 0 102 } - -netBotzSNMPCrawlerTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value too low." - ::= { netBotzSNMPCrawlerSensorTraps 0 3 } - -netBotzSNMPCrawlerTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value is no longer too low." - ::= { netBotzSNMPCrawlerSensorTraps 0 103 } - -netBotzSNMPCrawlerTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value too high for too long." - ::= { netBotzSNMPCrawlerSensorTraps 0 4 } - -netBotzSNMPCrawlerTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value is no longer too high for too long." - ::= { netBotzSNMPCrawlerSensorTraps 0 104 } - -netBotzSNMPCrawlerTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler ensor value too low for too long." - ::= { netBotzSNMPCrawlerSensorTraps 0 5 } - -netBotzSNMPCrawlerTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value is no longer too low for too long." - ::= { netBotzSNMPCrawlerSensorTraps 0 105 } - -netBotzSNMPCrawlerUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor unplugged." - ::= { netBotzSNMPCrawlerSensorTraps 0 6 } - -netBotzSNMPCrawlerReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor no longer unplugged." - ::= { netBotzSNMPCrawlerSensorTraps 0 106 } - -netBotzSNMPCrawlerIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value increasing too quickly." - ::= { netBotzSNMPCrawlerSensorTraps 0 8 } - -netBotzSNMPCrawlerNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value no longer increasing too quickly." - ::= { netBotzSNMPCrawlerSensorTraps 0 108 } - -netBotzSNMPCrawlerDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value decreasing too quickly." - ::= { netBotzSNMPCrawlerSensorTraps 0 9 } - -netBotzSNMPCrawlerNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor value no longer decreasing too quickly." - ::= { netBotzSNMPCrawlerSensorTraps 0 109 } - -netBotzSNMPCrawlerError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor error." - ::= { netBotzSNMPCrawlerSensorTraps 0 1 } - -netBotzSNMPCrawlerErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler sensor error resolved." - ::= { netBotzSNMPCrawlerSensorTraps 0 101 } - -netBotzSNMPCrawlerSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler Sensor sensor value error." - ::= { netBotzSNMPCrawlerSensorTraps 0 10 } - -netBotzSNMPCrawlerSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "SNMP Crawler Sensor sensor value error resolved." - ::= { netBotzSNMPCrawlerSensorTraps 0 110 } - -netBotzGPSStatusSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Status Sensor sensor unplugged." - ::= { netBotzGPSStatusSensorTraps 0 6 } - -netBotzGPSStatusSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Status Sensor sensor no longer unplugged." - ::= { netBotzGPSStatusSensorTraps 0 106 } - -netBotzGPSStatusSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Status Sensor sensor error." - ::= { netBotzGPSStatusSensorTraps 0 1 } - -netBotzGPSStatusSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Status Sensor sensor error resolved." - ::= { netBotzGPSStatusSensorTraps 0 101 } - -netBotzGPSStatusSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Status Sensor sensor value error." - ::= { netBotzGPSStatusSensorTraps 0 10 } - -netBotzGPSStatusSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "GPS Status Sensor sensor value error resolved." - ::= { netBotzGPSStatusSensorTraps 0 110 } - -netBotzWirelessStatusSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Wireless Status Sensor sensor unplugged." - ::= { netBotzWirelessStatusSensorTraps 0 6 } - -netBotzWirelessStatusSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Wireless Status Sensor sensor no longer unplugged." - ::= { netBotzWirelessStatusSensorTraps 0 106 } - -netBotzWirelessStatusSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Wireless Status Sensor sensor error." - ::= { netBotzWirelessStatusSensorTraps 0 1 } - -netBotzWirelessStatusSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Wireless Status Sensor sensor error resolved." - ::= { netBotzWirelessStatusSensorTraps 0 101 } - -netBotzWirelessStatusSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Wireless Status Sensor sensor value error." - ::= { netBotzWirelessStatusSensorTraps 0 10 } - -netBotzWirelessStatusSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Wireless Status Sensor sensor value error resolved." - ::= { netBotzWirelessStatusSensorTraps 0 110 } - -netBotzPlugModuleStatusSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Power Control plug module unplugged." - ::= { netBotzPlugModuleStatusSensorTraps 0 6 } - -netBotzPlugModuleStatusSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Power Control plug module no longer unplugged." - ::= { netBotzPlugModuleStatusSensorTraps 0 106 } - -netBotzPlugModuleStatusSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Power Control plug module error." - ::= { netBotzPlugModuleStatusSensorTraps 0 1 } - -netBotzPlugModuleStatusSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Power Control plug module error resolved." - ::= { netBotzPlugModuleStatusSensorTraps 0 101 } - -netBotzPlugModuleStatusSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Power Control plug module value error." - ::= { netBotzPlugModuleStatusSensorTraps 0 10 } - -netBotzPlugModuleStatusSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Power Control plug module value error resolved." - ::= { netBotzPlugModuleStatusSensorTraps 0 110 } - -netBotzOutputControlSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Output Control Sensor unplugged." - ::= { netBotzOutputControlSensorTraps 0 6 } - -netBotzOutputControlSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Output Control Sensor no longer unplugged." - ::= { netBotzOutputControlSensorTraps 0 106 } - -netBotzOutputControlSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Output Control Sensor error." - ::= { netBotzOutputControlSensorTraps 0 1 } - -netBotzOutputControlSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Output Control Sensor error resolved." - ::= { netBotzOutputControlSensorTraps 0 101 } - -netBotzOutputControlSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Output Control Sensor value error." - ::= { netBotzOutputControlSensorTraps 0 10 } - -netBotzOutputControlSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Output Control Sensor value error resolved." - ::= { netBotzOutputControlSensorTraps 0 110 } - - -netBotzMultiRAESensorTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value too high." - ::= { netBotzMultiRAESensorTraps 0 2 } - -netBotzMultiRAESensorTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value is no longer too high." - ::= { netBotzMultiRAESensorTraps 0 102 } - -netBotzMultiRAESensorTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value too low." - ::= { netBotzMultiRAESensorTraps 0 3 } - -netBotzMultiRAESensorTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value is no longer too low." - ::= { netBotzMultiRAESensorTraps 0 103 } - -netBotzMultiRAESensorTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value too high for too long." - ::= { netBotzMultiRAESensorTraps 0 4 } - -netBotzMultiRAESensorTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value is no longer too high for too long." - ::= { netBotzMultiRAESensorTraps 0 104 } - -netBotzMultiRAESensorTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE ensor value too low for too long." - ::= { netBotzMultiRAESensorTraps 0 5 } - -netBotzMultiRAESensorTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value is no longer too low for too long." - ::= { netBotzMultiRAESensorTraps 0 105 } - -netBotzMultiRAESensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor unplugged." - ::= { netBotzMultiRAESensorTraps 0 6 } - -netBotzMultiRAESensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor no longer unplugged." - ::= { netBotzMultiRAESensorTraps 0 106 } - -netBotzMultiRAESensorIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value increasing too quickly." - ::= { netBotzMultiRAESensorTraps 0 8 } - -netBotzMultiRAESensorNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value no longer increasing too quickly." - ::= { netBotzMultiRAESensorTraps 0 108 } - -netBotzMultiRAESensorDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value decreasing too quickly." - ::= { netBotzMultiRAESensorTraps 0 9 } - -netBotzMultiRAESensorNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor value no longer decreasing too quickly." - ::= { netBotzMultiRAESensorTraps 0 109 } - -netBotzMultiRAESensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor error." - ::= { netBotzMultiRAESensorTraps 0 1 } - -netBotzMultiRAESensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE sensor error resolved." - ::= { netBotzMultiRAESensorTraps 0 101 } - -netBotzMultiRAESensorSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor sensor value error." - ::= { netBotzMultiRAESensorTraps 0 10 } - -netBotzMultiRAESensorSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor sensor value error resolved." - ::= { netBotzMultiRAESensorTraps 0 110 } - - -netBotzMultiRAESensorStatusUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor Status unplugged." - ::= { netBotzMultiRAESensorStatusTraps 0 6 } - -netBotzMultiRAESensorStatusReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor Status no longer unplugged." - ::= { netBotzMultiRAESensorStatusTraps 0 106 } - -netBotzMultiRAESensorStatusError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor Status error." - ::= { netBotzMultiRAESensorStatusTraps 0 1 } - -netBotzMultiRAESensorStatusErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor Status error resolved." - ::= { netBotzMultiRAESensorStatusTraps 0 101 } - -netBotzMultiRAESensorStatusValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor Status value error." - ::= { netBotzMultiRAESensorStatusTraps 0 10 } - -netBotzMultiRAESensorStatusValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Sensor Status value error resolved." - ::= { netBotzMultiRAESensorStatusTraps 0 110 } - - -netBotzMultiRAEDeviceStatusUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Device Status unplugged." - ::= { netBotzMultiRAEDeviceStatusTraps 0 6 } - -netBotzMultiRAEDeviceStatusReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Device Status no longer unplugged." - ::= { netBotzMultiRAEDeviceStatusTraps 0 106 } - -netBotzMultiRAEDeviceStatusError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Device Status error." - ::= { netBotzMultiRAEDeviceStatusTraps 0 1 } - -netBotzMultiRAEDeviceStatusErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Device Status error resolved." - ::= { netBotzMultiRAEDeviceStatusTraps 0 101 } - -netBotzMultiRAEDeviceStatusValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Device Status value error." - ::= { netBotzMultiRAEDeviceStatusTraps 0 10 } - -netBotzMultiRAEDeviceStatusValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "MultiRAE Device Status value error resolved." - ::= { netBotzMultiRAEDeviceStatusTraps 0 110 } - -netBotzLinkStatusSensorUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Link Status sensor unplugged." - ::= { netBotzLinkStatusSensorTraps 0 6 } - -netBotzLinkStatusSensorReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Link Status sensor no longer unplugged." - ::= { netBotzLinkStatusSensorTraps 0 106 } - -netBotzLinkStatusSensorError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Link Status sensor error." - ::= { netBotzLinkStatusSensorTraps 0 1 } - -netBotzLinkStatusSensorErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Link Status sensor error resolved." - ::= { netBotzLinkStatusSensorTraps 0 101 } - -netBotzLinkStatusSensorValueError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Link Status sensor value error." - ::= { netBotzLinkStatusSensorTraps 0 10 } - -netBotzLinkStatusSensorValueErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Link Status sensor value error resolved." - ::= { netBotzLinkStatusSensorTraps 0 110 } - -netBotzLoopVoltageTooHigh NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value too high." - ::= { netBotzLoopVoltageSensorTraps 0 2 } - -netBotzLoopVoltageTooHighRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value is no longer too high." - ::= { netBotzLoopVoltageSensorTraps 0 102 } - -netBotzLoopVoltageTooLow NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value too low." - ::= { netBotzLoopVoltageSensorTraps 0 3 } - -netBotzLoopVoltageTooLowRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value is no longer too low." - ::= { netBotzLoopVoltageSensorTraps 0 103 } - -netBotzLoopVoltageTooHighTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value too high for too long." - ::= { netBotzLoopVoltageSensorTraps 0 4 } - -netBotzLoopVoltageTooHighTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value is no longer too high for too long." - ::= { netBotzLoopVoltageSensorTraps 0 104 } - -netBotzLoopVoltageTooLowTooLong NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value too low for too long." - ::= { netBotzLoopVoltageSensorTraps 0 5 } - -netBotzLoopVoltageTooLowForTooLongRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value is no longer too low for too long." - ::= { netBotzLoopVoltageSensorTraps 0 105 } - -netBotzLoopVoltageUnplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor unplugged." - ::= { netBotzLoopVoltageSensorTraps 0 6 } - -netBotzLoopVoltageReplugged NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor no longer unplugged." - ::= { netBotzLoopVoltageSensorTraps 0 106 } - -netBotzLoopVoltageIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value increasing too quickly." - ::= { netBotzLoopVoltageSensorTraps 0 8 } - -netBotzLoopVoltageNotIncreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value no longer increasing too quickly." - ::= { netBotzLoopVoltageSensorTraps 0 108 } - -netBotzLoopVoltageDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value decreasing too quickly." - ::= { netBotzLoopVoltageSensorTraps 0 9 } - -netBotzLoopVoltageNotDecreasingTooQuickly NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor value no longer decreasing too quickly." - ::= { netBotzLoopVoltageSensorTraps 0 109 } - -netBotzLoopVoltageError NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor error." - ::= { netBotzLoopVoltageSensorTraps 0 1 } - -netBotzLoopVoltageErrorRTN NOTIFICATION-TYPE - OBJECTS { - netBotzTrapErrorID, - netBotzTrapErrorType, - netBotzTrapErrorTypeLabel, - netBotzTrapSensorID, - netBotzTrapSensorLabel, - netBotzTrapPodID, - netBotzTrapPodLabel, - netBotzTrapPortID, - netBotzTrapPortLabel, - netBotzTrapStartTime, - netBotzTrapNotifyTime, - netBotzTrapResolveTime, - netBotzTrapSeverity, - netBotzTrapSensorValue, - netBotzTrapSensorValueInt, - netBotzTrapSensorValueFraction - } - STATUS current - DESCRIPTION - "Loop Voltage sensor error resolved." - ::= { netBotzLoopVoltageSensorTraps 0 101 } - -END diff --git a/mibs/orig/NIMBLE-MIB b/mibs/orig/NIMBLE-MIB deleted file mode 100644 index 7ecde8e..0000000 --- a/mibs/orig/NIMBLE-MIB +++ /dev/null @@ -1,318 +0,0 @@ -NIMBLE-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, - Unsigned32, Counter64 - FROM SNMPv2-SMI - DisplayString, TruthValue - FROM SNMPv2-TC - enterprises - FROM SNMPv2-SMI; - -nimble MODULE-IDENTITY - LAST-UPDATED "201208310000Z" - ORGANIZATION "Nimble Storage, Inc." - CONTACT-INFO - "Nimble Storage - - support@nimblestorage.com" - DESCRIPTION - "SMI Information for Nimble" - - REVISION "201208310000Z" - DESCRIPTION "Nimble Storage 2.0.3.0 MIB" - - REVISION "201206120000Z" - DESCRIPTION "Nimble Storage 1.3.0.0 MIB" - - REVISION "201102280000Z" - DESCRIPTION "Initial revision" - ::= { enterprises 37447 } - --- --- Nimble Objects (variables and tables) --- - -variables OBJECT IDENTIFIER ::= { nimble 1 } - --- --- Volume Information --- - -volNumberOfVolumes OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This variable has been obsoleted" - ::= { variables 1 } - -volTable OBJECT-TYPE -- MUST BE SUFFIXED WITH Table - SYNTAX SEQUENCE OF VolEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Volume information table." - ::= { variables 2 } - -volEntry OBJECT-TYPE - SYNTAX VolEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A row of volume information." - INDEX { volIndex } - ::= { volTable 1 } - -VolEntry ::= SEQUENCE { - volIndex Unsigned32, - volID Unsigned32, - volName DisplayString, - volSizeLow Unsigned32, - volSizeHigh Unsigned32, - volUsageLow Unsigned32, - volUsageHigh Unsigned32, - volReserveLow Unsigned32, - volReserveHigh Unsigned32, - volOnline TruthValue, - volNumConnections Unsigned32 -} - -volIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Volume Index." - ::= { volEntry 1 } - -volID OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Volume ID." - ::= { volEntry 2 } - -volName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Volume Name." - ::= { volEntry 3 } - -volSizeLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Maximum defined size of a volume in bytes - low order bytes." - ::= { volEntry 4 } - -volSizeHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Maximum defined size of a volume in bytes - high order bytes." - ::= { volEntry 5 } - -volUsageLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of bytes a volume is using - low order bytes." - ::= { volEntry 6 } - -volUsageHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of bytes a volume is using - high order bytes." - ::= { volEntry 7 } - -volReserveLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes reserved for a volume - low order bytes." - ::= { volEntry 8 } - -volReserveHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes reserved for a volume - high order bytes." - ::= { volEntry 9 } - -volOnline OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Volume Online (true or false)." - ::= { volEntry 10 } - -volNumConnections OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of iSCSI connections to the volume." - ::= { volEntry 11 } - ---- ---- Global Stats ---- - -globalStats OBJECT IDENTIFIER ::= { variables 3 } - -statTimeEpochSeconds OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time at which the sample was taken, measured in seconds since UNIX epoch." - ::= { globalStats 1 } - -ioReads OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Read I/Os (sequential and random)." - ::= { globalStats 2 } - -ioSeqReads OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Sequential Read I/Os." - ::= { globalStats 3 } - -ioWrites OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Write I/Os." - ::= { globalStats 4 } - -ioSeqWrites OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Sequential Write I/Os." - ::= { globalStats 5 } - -ioReadTimeMicrosec OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative microseconds the system has spent processing Read I/Os. This includes system and disk latency, but not any network latency back to the initiator." - ::= { globalStats 6 } - -ioWriteTimeMicrosec OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative microseconds the system has spent processing Write I/Os. This includes system and disk latency, but not any network latency back to the initiator." - ::= { globalStats 7 } - -ioReadBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Read I/O bytes (sequential and random)." - ::= { globalStats 8 } - -ioSeqReadBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Sequential Read I/O bytes." - ::= { globalStats 9 } - -ioWriteBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Write I/O bytes (sequential and random)." - ::= { globalStats 10 } - -ioSeqWriteBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of Sequential Write I/O bytes." - ::= { globalStats 11 } - -diskVolBytesUsedLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes used on disk for volumes - low order bytes." - ::= { globalStats 12 } - -diskVolBytesUsedHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes used on disk for volumes - high order bytes." - ::= { globalStats 13 } - -diskSnapBytesUsedLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes used on disk for snapshots - low order bytes." - ::= { globalStats 14 } - -diskSnapBytesUsedHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes used on disk for snapshots - high order bytes." - ::= { globalStats 15 } - -ioNonseqReadHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative number of cache hits for Non-Sequential Read I/Os." - ::= { globalStats 16 } - --- --- Nimble arrays --- - -arrays OBJECT IDENTIFIER ::= { nimble 3 } - -arrayEntry OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Nimble Array." - ::= { arrays 1 } - - -END diff --git a/mibs/orig/NS-ROOT-MIB b/mibs/orig/NS-ROOT-MIB deleted file mode 100644 index 5411995..0000000 --- a/mibs/orig/NS-ROOT-MIB +++ /dev/null @@ -1,25772 +0,0 @@ - -NS-ROOT-MIB DEFINITIONS ::= BEGIN - -IMPORTS - Counter64, Counter32, Gauge32, Integer32, IpAddress, NOTIFICATION-TYPE,OBJECT-TYPE, TimeTicks, enterprises, MODULE-IDENTITY, OBJECT-IDENTITY - FROM SNMPv2-SMI - Ipv6Address - FROM IPV6-TC - InetAddressType, InetAddress - FROM INET-ADDRESS-MIB; - -netScaler MODULE-IDENTITY - LAST-UPDATED "201609250000Z" - ORGANIZATION "Citrix Systems, Inc." - CONTACT-INFO "Citrix Technical Assistance Center - Postal: Citrix Systems, Inc. - 851 West Cypress Creek Road - Fort Lauderdale, Florida 33309 - United States - Tel: +1-800-4-CITRIX (+1-800-424-8749) - E-mail: customercare@citrix.com" - DESCRIPTION "The enterprise specific MIB for Netscaler NS11.1." - ::= { enterprises 5951 } - -nsRoot OBJECT IDENTIFIER - ::= { netScaler 1 } - -netScalerEvents OBJECT IDENTIFIER - ::= { nsRoot 1 } - -wsSystem OBJECT IDENTIFIER - ::= { nsRoot 2 } - -sysStatistics OBJECT IDENTIFIER - ::= { wsSystem 1 } - -totalClientConnections OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Total Client Connections made from system start. - - This object is obsolete." - ::= { sysStatistics 1 } - -curClientConnections OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Current Client Connections. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpCurClientConn." - ::= { sysStatistics 2 } - -totalServerConnections OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Total Server Connections made from system start. - - This object is obsolete." - ::= { sysStatistics 3 } - -curServerConnections OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Current Server Connections. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpCurServerConn." - ::= { sysStatistics 4 } - -clientConnRefused OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Client connections added the SurgeQ, and blocked from initiating a server connection to control op/s. - - This object is obsolete." - ::= { sysStatistics 5 } - -reuseHit OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total no of client transactions used the server connection in the reuse-pool. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpReuseHit." - ::= { sysStatistics 6 } - -reuseMiss OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total new Connections made, when server connection - unavailable in reuse pool...OBSOLETE" - ::= { sysStatistics 7 } - -totClientDontReuse OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total client connection with Dont Reuse flag set...OBSOLETE" - ::= { sysStatistics 8 } - -totServerDontReuse OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total server connection with Dont Reuse set...OBSOLETE" - ::= { sysStatistics 9 } - -curPhysicalServers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of physical servers that WS has open connections with. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpCurPhysicalServers." - ::= { sysStatistics 10 } - -totPhysicalServers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of physical servers that WS opened connections - to from the last reboot. - - This object is obsolete." - ::= { sysStatistics 11 } - -cookiePacketSeqReject OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of tcp connections rejected because of syn cookie sequence number mismatch. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpErrCookiePktSeqReject." - ::= { sysStatistics 12 } - -cookieSignatureReject OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of tcp connections rejected because of syn cookie mismatch. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpErrCookiePktSigReject." - ::= { sysStatistics 13 } - -cpuUsage OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The CPU Utilization. - - This object is obsolete." - ::= { sysStatistics 14 } - -unackSyn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of un-acknowledged SYNs NS has received so far. - - This object is obsolete.It can be calculated as (tcpTotSyn - tcpTotClientConnOpened)." - ::= { sysStatistics 15 } - -curClientEstablishedConn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of currently established client connections. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpCurClientConnEstablished." - ::= { sysStatistics 16 } - -curServerEstablishedConn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of currently established server connections. - - This object is obsolete.It can be measured through nsTcpStatsGroup.tcpCurServerConnEstablished." - ::= { sysStatistics 17 } - -wsHttpGroup OBJECT IDENTIFIER - ::= { sysStatistics 18 } - -totalRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Requests." - ::= { wsHttpGroup 1 } - -totalGets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP GETs." - ::= { wsHttpGroup 2 } - -totalRequests1-0 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP 1.0 Requests." - ::= { wsHttpGroup 3 } - -totalPosts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Posts." - ::= { wsHttpGroup 4 } - -totalResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Responses." - ::= { wsHttpGroup 5 } - -totalResponses1-0 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP 1.0 Responses." - ::= { wsHttpGroup 6 } - -totalContentLenResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Responses with Content Length." - ::= { wsHttpGroup 7 } - -totalChunkedResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Chunked Responses." - ::= { wsHttpGroup 8 } - -totalMultiPartResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Multi-part Responses." - ::= { wsHttpGroup 9 } - -totalIncompleteHeaders OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Incomplete headers." - ::= { wsHttpGroup 10 } - -totalIncompleteRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total Incomplete Requests." - ::= { wsHttpGroup 11 } - -totalIncompleteResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total Incomplete Responses." - ::= { wsHttpGroup 12 } - -totalPipeLinedRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total pipe-lined Requests." - ::= { wsHttpGroup 13 } - -serverBusyErrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total HTTP Server Busy Errors." - ::= { wsHttpGroup 14 } - -wsIfStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF WsIfStatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Raw bandwidth usage of all the interfaces. - - This Table is obsolete.Instead of this table use nsSysGroup.nsIfStatsTable." - ::= { sysStatistics 19 } - -wsIfStatsEntry OBJECT-TYPE - SYNTAX WsIfStatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Raw bandwidth usage of all the interfaces. - - This Entry is obsolete.Instead of this entry use nsSysGroup.nsIfStatsEntry." - INDEX { index } - ::= { wsIfStatsTable 1 } - -WsIfStatsEntry ::= SEQUENCE { - index Integer32, - wsIfName OCTET STRING, - wsIfMedia OCTET STRING, - rxRawBandwidthUsage Counter32, - rxAveragePacketRate Counter32, - rxCurrentPacketRate Counter32, - rxAveragePacketsSize Counter32, - rxFrameErrors Counter32, - rxCrcErrors Counter32, - rxAlignmentErrors Counter32, - txRawBandwidthUsage Counter32, - txAveragePacketRate Counter32, - txCurrentPacketRate Counter32, - txAveragePacketsSize Counter32, - txExcessCollisions Counter32, - txLateCollisions Counter32, - txCollisions Counter32, - txMultiCollisionsErrors Counter32, - txCarrierErrors Counter32 -} - -index OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each physical interface. - - This object is obsolete." - ::= { wsIfStatsEntry 1 } - -wsIfName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the Interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifName." - ::= { wsIfStatsEntry 2 } - -wsIfMedia OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The media type of the Interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifMedia." - ::= { wsIfStatsEntry 3 } - -rxRawBandwidthUsage OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The received raw bandwidth on interface in bitsps - since the last time this variable was - retrieved using SNMP. - - This object is obsolete." - ::= { wsIfStatsEntry 4 } - -rxAveragePacketRate OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The average number of packets received on the - interface since the system start. - - This object is obsolete.It can be measured through nsIfStatsTable.ifRxAvgPacketRate." - ::= { wsIfStatsEntry 5 } - -rxCurrentPacketRate OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The packet rate on the interface since the last - time the variable was retrieved with using SNMP. - - This object is obsolete." - ::= { wsIfStatsEntry 6 } - -rxAveragePacketsSize OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The average size of the packet received on the - interface since the system start. - - This object is obsolete." - ::= { wsIfStatsEntry 7 } - -rxFrameErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter for the number of frame errors received - on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifRxFrameErrors." - ::= { wsIfStatsEntry 8 } - -rxCrcErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter for the number of Crc errors received on - the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifRxCRCErrors." - ::= { wsIfStatsEntry 9 } - -rxAlignmentErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter to indicate the number of Alignment errors - received on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifRxAlignmentErrors." - ::= { wsIfStatsEntry 10 } - -txRawBandwidthUsage OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The transmit raw bandwidth on interface in bitsps - from the last time this variable was retrieved. - - This object is obsolete." - ::= { wsIfStatsEntry 11 } - -txAveragePacketRate OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The average number of packets transmitted on the - the interface since the system start. - - This object is obsolete.It can be measured through nsIfStatsTable.ifTxAvgPacketRate." - ::= { wsIfStatsEntry 12 } - -txCurrentPacketRate OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The packet rate on the interface since the last - time this variable was retrieved using SNMP. - - This object is obsolete." - ::= { wsIfStatsEntry 13 } - -txAveragePacketsSize OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The average size of the packet received on the - interface since the system start. - - This object is obsolete." - ::= { wsIfStatsEntry 14 } - -txExcessCollisions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter to indicate excess collisions detected in - transmission on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifTxExcessCollisions." - ::= { wsIfStatsEntry 15 } - -txLateCollisions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter to indicate late collisions detected in - transmission on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifTxLateCollisions." - ::= { wsIfStatsEntry 16 } - -txCollisions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter to indicate total collision Errors detected - in transmission on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifTxCollisions." - ::= { wsIfStatsEntry 17 } - -txMultiCollisionsErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter to indicate Multi collision Errors detected - in transmission on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifTxMultiCollisionsErrors." - ::= { wsIfStatsEntry 18 } - -txCarrierErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "A Counter to indicate Carrier Errors detected in - transmission on the interface. - - This object is obsolete.It can be measured through nsIfStatsTable.ifTxCarrierErrors." - ::= { wsIfStatsEntry 19 } - -wsudpgroup OBJECT IDENTIFIER - ::= { sysStatistics 20 } - -totudpsessions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of udp sessions since the start of the system" - ::= { wsudpgroup 1 } - -currudpsessions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of current udp sessions " - ::= { wsudpgroup 2 } - -sysConfig OBJECT IDENTIFIER - ::= { wsSystem 2 } - -wsIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The primary IP address of the netscaler. - - This object is obsolete.It can be measured through nsSysGroup.sysIpAdress." - ::= { sysConfig 1 } - -wsNetmask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The netmask for the IP address of the netscaler. - - This object is obsolete.It can be measured through nsSysGroup.sysNetmask." - ::= { sysConfig 2 } - -wsMappedIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Mapped IP address of the netscaler." - ::= { sysConfig 3 } - -wsLastMappedIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The last Mapped IP address of the netscaler." - ::= { sysConfig 4 } - -wsMappedIpAddressRange OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The range of mapped IP addresses on the netscaler." - ::= { sysConfig 5 } - -wsFailOver OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Is Fail Over enabled on the netscaler. - - This object is obsolete." - ::= { sysConfig 6 } - -wsPriority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The priority of the netscaler." - ::= { sysConfig 7 } - -wsMaxClientList OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Maximum number of server connections that NS can open to the server. - - This object is obsolete." - ::= { sysConfig 8 } - -wsClientIp OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Enable Client IP in the HTTP Request to the Server. - - This object is obsolete." - ::= { sysConfig 9 } - -wsFailoverTime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The time in seconds after which the secondary takes over as - primary, if there is no response from primary." - ::= { sysConfig 10 } - -wsMaxRequestsPerConn OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Maximum number of requests per connection on a server-connection. - - This object is obsolete." - ::= { sysConfig 11 } - -wsSmoothConnection OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Smooth Connection Feature on the netscaler. - - This object is obsolete." - ::= { sysConfig 12 } - -loadBalancing OBJECT IDENTIFIER - ::= { nsRoot 3 } - -lbStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF LbStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Virtual Service Information for each of the entities. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverTable." - ::= { loadBalancing 1 } - -lbStatisticsEntry OBJECT-TYPE - SYNTAX LbStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Virtual Service Information for each of the entities. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverEntry." - INDEX { vsId, psId } - ::= { lbStatisticsTable 1 } - -LbStatisticsEntry ::= SEQUENCE { - vsId Integer32, - psId Integer32, - vsIpAddress IpAddress, - vsPort Integer32, - psIpAddress IpAddress, - psPort Integer32, - protocolType INTEGER, - lbMethod INTEGER, - serviceHits Integer32, - latency Integer32, - connections Integer32 - -} - -vsId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each Virtual Service inside - a NetScaler. - - This object is obsolete." - ::= { lbStatisticsEntry 1 } - -psId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each Physical Service inside - a NetScaler. - - This object is obsolete." - ::= { lbStatisticsEntry 2 } - -vsIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrIpAddress." - ::= { lbStatisticsEntry 3 } - -vsPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrPort." - ::= { lbStatisticsEntry 4 } - -psIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcIpAddress." - ::= { lbStatisticsEntry 5 } - -psPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcPort." - ::= { lbStatisticsEntry 6 } - -protocolType OBJECT-TYPE - SYNTAX INTEGER { http(0), ftp(1), tcp(2), udp(3), sslBridge(4), - monitor(5), monitorUdp(6), nntp(7), httpserver(8), - httpclient(9), rpcserver(10), rpcclient(11), ssf(12), - nat(13), any(14), ssl(15), dns(16), adns(17), - snmp(18), ha(19), monitorPing(20), - serviceUnknown(21) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The protocol type in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrType." - ::= { lbStatisticsEntry 7 } - -lbMethod OBJECT-TYPE - SYNTAX INTEGER { - weightedRoundRobin(1), leastConnections(2), leastResponse(3), - asynchronousMAC(4), urlHashed(5), domainHashed(6), - destinationIPHashed(7), sourceIPHashed(8), leastBandwidth(9), - leastPackets(10) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Policy used for Load Balancing. - - This object is obsolete.It can be measured through lbvserverTable.lbvsvrLBMethod." - ::= { lbStatisticsEntry 8 } - -serviceHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total hits on the physical service. - - This object is obsolete.It can be measured through vserverTable.vsvrTotalRequests." - ::= { lbStatisticsEntry 9 } - -latency OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The latency in responding to gets from the - physical server. - - This object is obsolete.It can be measured through lbvserverTable.lbvsvrAvgSvrTTFB." - ::= { lbStatisticsEntry 10 } - -connections OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of active connections on the - physical Server. - - This object is obsolete.It can be measured through lbvserverTable.lbvsvrActiveConn." - ::= { lbStatisticsEntry 11 } - - -lbConfig OBJECT IDENTIFIER - ::= { loadBalancing 2 } - -virServiceTable OBJECT-TYPE - SYNTAX SEQUENCE OF VirServiceEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the configuration information - for each virtual service. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverTable. " - ::= { lbConfig 1 } - -virServiceEntry OBJECT-TYPE - SYNTAX VirServiceEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Virtual Service Information for each of the entities. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverEntry." - INDEX { vserId } - ::= { virServiceTable 1 } - -VirServiceEntry ::= SEQUENCE { - vserId Integer32, - ipAddress IpAddress, - port Integer32, - vsProtocolType INTEGER, - name OCTET STRING, - vsLbMethod INTEGER, - persistanceType INTEGER, - persistanceTimeout Integer32, - state INTEGER -} - -vserId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each Virtual Service inside - a NetScaler. - - This object is obsolete." - ::= { virServiceEntry 1 } - -ipAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrIpAddress. " - ::= { virServiceEntry 2 } - -port OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrPort." - ::= { virServiceEntry 3 } - -vsProtocolType OBJECT-TYPE - SYNTAX INTEGER { http(0), ftp(1), tcp(2), udp(3), sslBridge(4), - monitor(5), monitorUdp(6), nntp(7), httpserver(8), - httpclient(9), rpcserver(10), rpcclient(11), ssf(12), - nat(13), any(14), ssl(15), dns(16), adns(17), - snmp(18), ha(19), monitorPing(20), - serviceUnknown(21) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The protocol type in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrType." - ::= { virServiceEntry 4 } - -name OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrName." - ::= { virServiceEntry 5 } - -vsLbMethod OBJECT-TYPE - SYNTAX INTEGER { - weightedRoundRobin(1), leastConnections(2), leastResponse(3), - asynchronousMAC(4), urlHashed(5), domainHashed(6), - destinationIPHashed(7), sourceIPHashed(8), leastBandwidth(9), - leastPackets(10) - } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Policy used for Load Balancing. - - This object is obsolete.It can be measured through lbvserverTable.lbvsvrLBMethod." - ::= { virServiceEntry 6 } - -persistanceType OBJECT-TYPE - SYNTAX INTEGER { - sourceIp(1), cookieInsert(2), cookieDelete(3), cookieRead(4), - cookieHash(5), sessionId(6), server(7) - } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The type of persistence used. - - This object is obsolete.It can be measured through lbvserverTable.lbvsvrPersistanceType." - ::= {virServiceEntry 7} - -persistanceTimeout OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The timeout set for persistence. - - This object is obsolete.It can be measured through lbvserverTable.lbvsvrPersistanceTimeOut. " - ::= { virServiceEntry 8 } - -state OBJECT-TYPE - SYNTAX INTEGER { - up(0), down(1), unknown(2), - busy(3), outOfService(4), transitionToOutOfService(5) - } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The State of the virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrState." - ::= {virServiceEntry 9} - - -phyServiceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PhyServiceEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the configuration information - for each physical service. - - This Table is obsolete.Instead of this table use nsSvcGroup.serviceTable." - ::= { lbConfig 2 } - -phyServiceEntry OBJECT-TYPE - SYNTAX PhyServiceEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Physical Service Information for each of the entities. - - This Entry is obsolete.Instead of this entry use nsSvcGroup.serviceEntry." - INDEX { pserId } - ::= { phyServiceTable 1 } - -PhyServiceEntry ::= SEQUENCE { - pserId Integer32, - pserIpAddress IpAddress, - pserPort Integer32, - psProtocolType INTEGER, - psName OCTET STRING, - psState INTEGER, - weight Integer32, - psVsIpAddress IpAddress, - psVsPort Integer32 -} - -pserId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each Physical Service inside - a NetScaler. - - This object is obsolete." - ::= { phyServiceEntry 1 } - -pserIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcIpAddress." - ::= { phyServiceEntry 2 } - -pserPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcPort." - ::= { phyServiceEntry 3 } - -psProtocolType OBJECT-TYPE - SYNTAX INTEGER { http(0), ftp(1), tcp(2), udp(3), sslBridge(4), - monitor(5), monitorUdp(6), nntp(7), httpserver(8), - httpclient(9), rpcserver(10), rpcclient(11), ssf(12), - nat(13), any(14), ssl(15), dns(16), adns(17), - snmp(18), ha(19), monitorPing(20), - serviceUnknown(21) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The protocol type in the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcServiceType." - ::= { phyServiceEntry 4 } - -psName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcServiceName." - ::= { phyServiceEntry 5 } - -psState OBJECT-TYPE - SYNTAX INTEGER {down(0), up(1) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The state of the Physical Service. - - This object is obsolete.It can be measured through serviceTable.svcState." - ::= {phyServiceEntry 6} - -weight OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The weight assigned to the Physical Service. - - This object is obsolete.It can be measured through vserverServiceTable.serviceWeight." - ::= { phyServiceEntry 7 } - -psVsIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Virtual Service to which this - physical service is bound. - - This object is obsolete.It can be measured through vserverTable.vsvrIpAddress." - ::= { phyServiceEntry 8 } - -psVsPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrPort." - ::= { phyServiceEntry 9 } - -sureConnect OBJECT IDENTIFIER - ::= { nsRoot 4 } - -scStatistics OBJECT IDENTIFIER - ::= { sureConnect 1 } - -scperServiceStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF ScperServiceStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Internet On Hold Statistics for each of the entities. - - This Table is obsolete." - ::= { scStatistics 1 } - -scperServiceStatisticsEntry OBJECT-TYPE - SYNTAX ScperServiceStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Internet On Hold Statistics for each of the entities. - - This Entry is obsolete." - INDEX { devno } - ::= { scperServiceStatisticsTable 1 } - -ScperServiceStatisticsEntry ::= SEQUENCE { - devno Integer32, - phyIpAddress IpAddress, - phyPort Integer32, - scProtocolType INTEGER, - currentDelay Integer32, - avgTxTime Integer32, - surgeCount Integer32, - iohCount Integer32 -} - -devno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each physical Service inside - a NetScaler. - - This object is obsolete." - ::= { scperServiceStatisticsEntry 1 } - -phyIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Physical Service. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyDestIpAddress or vserverScpolicyTable.svcscpolicyDestIpAddress." - ::= { scperServiceStatisticsEntry 2 } - -phyPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Physical Service. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyDestIpPort or vserverScpolicyTable.svcscpolicyDestIpPort." - ::= { scperServiceStatisticsEntry 3 } - -scProtocolType OBJECT-TYPE - SYNTAX INTEGER { http(0), ftp(1), tcp(2), udp(3), sslBridge(4), - monitor(5), monitorUdp(6), nntp(7), httpserver(8), - httpclient(9), rpcserver(10), rpcclient(11), ssf(12), - nat(13), any(14), ssl(15), dns(16), adns(17), - snmp(18), ha(19), monitorPing(20), - serviceUnknown(21) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The protocol type in the Physical Service. - - This object is obsolete." - ::= { scperServiceStatisticsEntry 4 } - -currentDelay OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The current Delay on the physical Service. - - This object is obsolete." - ::= { scperServiceStatisticsEntry 5 } - -avgTxTime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The average transaction time. - - This object is obsolete.It can be measured through serviceTable.svcAvgSvrTTFB." - ::= { scperServiceStatisticsEntry 6 } - -surgeCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The count of number of times the surge occurred. - - This object is obsolete.It can be measured through serviceTable.svcSurgeCount." - ::= { scperServiceStatisticsEntry 7 } - -iohCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of client requests, after having put on hold - couldnt still access the physical server. - - This object is obsolete." - ::= { scperServiceStatisticsEntry 8 } - -scperPolicyStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF ScperPolicyStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Internet On Hold Statistics for each of the entities. - - This Table is obsolete.Instead of this table use nsSvcGroup.serviceScpolicyTable or nsVserverGroup.vserverScpolicyTable." - ::= { scStatistics 2 } - -scperPolicyStatisticsEntry OBJECT-TYPE - SYNTAX ScperPolicyStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Internet On Hold Statistics for each of the entities. - - This Entry is obsolete.Instead of this entry use nsSvcGroup.serviceScpolicyEntry or nsVserverGroup.vserverScpolicyEntry." - INDEX { policydevno } - ::= { scperPolicyStatisticsTable 1 } - -ScperPolicyStatisticsEntry ::= SEQUENCE { - policydevno Integer32, - primaryserviceIp IpAddress, - primaryserviceport Integer32, - destserviceIp IpAddress, - destserviceport Integer32, - transactiontime Integer32, - totaltransaction Integer32, - totalopenconnection Integer32 -} - -policydevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each physical Service inside - a NetScaler. - - This object is obsolete." - ::= { scperPolicyStatisticsEntry 1 } - -primaryserviceIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " ip address of primary service. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyPrimaryIPAddress." - ::= { scperPolicyStatisticsEntry 2 } - -primaryserviceport OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " port number of primary service. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyPrimaryPort or vserverScpolicyTable.vsvrscpolicyPrimaryPort." - ::= { scperPolicyStatisticsEntry 3 } - -destserviceIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " ip address of destination physical service. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyDesIpAddress or vserverScpolicyTable.vsvrscpolicyDesIpAddress." - ::= { scperPolicyStatisticsEntry 4 } - -destserviceport OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " port number of destination physical service. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyDestPort or vserverScpolicyTable.vsvrscpolicyDestPort." - ::= { scperPolicyStatisticsEntry 5 } - -transactiontime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " transaction time. - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyAvgServerTransactionTime or vserverScpolicyTable.vsvrscpolicyAvgServerTransactionTime." - ::= { scperPolicyStatisticsEntry 6 } - -totaltransaction OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " total number of transactions . - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyTotClientTransaction or vserverScpolicyTable.vsvrscpolicyTotClientTransaction." - ::= { scperPolicyStatisticsEntry 7 } - -totalopenconnection OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " total number of open connections for this policy . - - This object is obsolete.It can be measured through serviceScpolicyTable.svcscpolicyTotOpenConn or vserverScpolicyTable.vsvrscpolicyTotOpenConn." - ::= { scperPolicyStatisticsEntry 8 } - -scGlobalStats OBJECT IDENTIFIER - ::= { scStatistics 3 } - -scUrlHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times we matched an - incoming request with a Configured sureconnect policy . - - This object is obsolete.It can be measured through scPolicyStatistics.scPolicyUrlHits." - ::= { scGlobalStats 1 } - -popUps OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times we served the - in-memory java script which throws up the pop up window. - - This object is obsolete.It can be measured through scPolicyStatistics.scPopUps." - ::= { scGlobalStats 2 } - -altContUrls OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the total number of requests which - came with the onhold cookie. So, this gives the number requests - which are required to load the alternate content in the pop up - window. - - This object is obsolete.It can be measured through scPolicyStatistics.scAltContUrls." - - ::= { scGlobalStats 3 } - -sessReqs OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number requests which came in a - SureConnect session. - - This object is obsolete.It can be measured through scPolicyStatistics.scSessionReqs." - ::= {scGlobalStats 4 } - -postReqs OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times a post request - triggered SureConnect. - - This object is obsolete.It can be measured through scPolicyStatistics.scPostReqs." - ::= { scGlobalStats 5 } - -thresholdFail OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " this Counter gives the number of times we did not serve the - in-memory response because the thresholds conditions had failed. - - This object is obsolete.It can be measured through scPolicyStatistics.scThresholdFail. " - ::= { scGlobalStats 6} - -faultyCookies OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times we encountered - corrupted SureConnect Cookies. - - This object is obsolete.It can be measured through scPolicyStatistics.scFaultyCookies." - ::= { scGlobalStats 7} - -unSupBrow OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times requests came from - unsupported browsers. For a list of browsers supported by - SureConnect, please check the Functional Spec. - - This object is obsolete.It can be measured through scPolicyStatistics.scUnSupBrow." - ::= { scGlobalStats 8} - -resetStats OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This gives the number of times delay stats were reset. - Delay stats are reset when there is no traffic to the configured - url for more than 10 minutes. - - This object is obsolete.It can be measured through scPolicyStatistics.scResetStats." - ::= { scGlobalStats 9} - -scConfig OBJECT IDENTIFIER - ::= { sureConnect 2 } - -scPolicyconfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF ScPolicyconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Internet On Hold Statistics for each of the entities. - - This Table is obsolete.Instead of this table use nsScPolicyGroup.scPolicyConfigTable. " - ::= { scConfig 1 } - -scPolicyconfigEntry OBJECT-TYPE - SYNTAX ScPolicyconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Internet On Hold Statistics for each of the entities. - - This Entry is obsolete.Instead of this entry use nsScPolicyGroup.scPolicyConfigEntry." - INDEX { policyIndex } - ::= { scPolicyconfigTable 1 } - -ScPolicyconfigEntry ::= SEQUENCE { - policyIndex Integer32, - policyName OCTET STRING, - scPolicyUrl OCTET STRING, - delayThreshold INTEGER, - maxConnections INTEGER, - actionType INTEGER, - alternatecontentServicename OCTET STRING, - ruleName OCTET STRING, - alternatecontentPath OCTET STRING -} - -policyIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each On Hold Policy inside - a NetScaler. - - This object is obsolete." - ::= { scPolicyconfigEntry 1 } - -policyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the Physical Service. - - This object is obsolete.It can be measured through scPolicyConfigTable.scPolicyName." - ::= { scPolicyconfigEntry 2 } - -scPolicyUrl OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The URL in the IOH Policy. - - This object is obsolete.It can be measured through scPolicyConfigTable.scPolUrl." - ::= { scPolicyconfigEntry 3 } - -delayThreshold OBJECT-TYPE - SYNTAX INTEGER { notconfigured(-1) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The delay threshold. - - This object is obsolete.It can be measured through scPolicyConfigTable.scDelayThreshold." - ::= { scPolicyconfigEntry 4 } - -maxConnections OBJECT-TYPE - SYNTAX INTEGER { notconfigured(-1) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The max connections. - - This object is obsolete.It can be measured through scPolicyConfigTable.scMaxConnections." - ::= { scPolicyconfigEntry 5 } - -actionType OBJECT-TYPE - SYNTAX INTEGER { ns (0), acs (1), noAction(4) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The type of action that NetScaler takes when initiating on-hold. - - This object is obsolete.It can be measured through scPolicyConfigTable.scActionType." - ::= { scPolicyconfigEntry 6} - -alternatecontentServicename OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The alternate service name for the content. - - This object is obsolete.It can be measured through scPolicyConfigTable.scAlternateContentServiceName. " - ::= { scPolicyconfigEntry 7 } - -ruleName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " Rule Name . - - This object is obsolete.It can be measured through scPolicyConfigTable.scRuleName." - ::= { scPolicyconfigEntry 8 } - -alternatecontentPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The alternate path for the content. - - This object is obsolete.It can be measured through scPolicyConfigTable.scAlternateContentPath. " - ::= { scPolicyconfigEntry 9 } - -contentSwitching OBJECT IDENTIFIER - ::= { nsRoot 5 } - -cswStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CswStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Content Switching Statistics for each of the entities. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverTable." - ::= { contentSwitching 1 } - -cswStatisticsEntry OBJECT-TYPE - SYNTAX CswStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Content Switching Statistics for each of the entities. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverEntry." - INDEX { cswIndex } - ::= { cswStatisticsTable 1 } - -CswStatisticsEntry ::= SEQUENCE { - cswIndex Integer32, - cswVsIpAddress IpAddress, - cswVsPort Integer32, - cswProtocolType INTEGER, - virServiceName OCTET STRING, - vsHits Integer32, - vsMiss Integer32 -} - -cswIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each virtual Service inside - a NetScaler. - - This object is obsolete." - ::= { cswStatisticsEntry 1 } - -cswVsIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrIpAddress." - ::= { cswStatisticsEntry 2 } - -cswVsPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrPort." - ::= { cswStatisticsEntry 3 } - -cswProtocolType OBJECT-TYPE - SYNTAX INTEGER { http(0), ftp(1), tcp(2), udp(3), sslBridge(4), - monitor(5), monitorUdp(6), nntp(7), httpserver(8), - httpclient(9), rpcserver(10), rpcclient(11), ssf(12), - nat(13), any(14), ssl(15), dns(16), adns(17), - snmp(18), ha(19), monitorPing(20), - serviceUnknown(21) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The protocol type of the Virtual Server. - - This object is obsolete.It can be measured through vserverTable.vsvrType." - ::= { cswStatisticsEntry 4 } - -virServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the CSW Virtual server. - - This object is obsolete.It can be measured through vserverTable.vsvrName. " - ::= { cswStatisticsEntry 5 } - -vsHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total hits on all the policies bound to this virtual server. - - This object is obsolete.It can be measured through vserverTable.vsvrTotalRequests." - ::= { cswStatisticsEntry 6 } - -vsMiss OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total Miss on all the policies bound to this virtual server. - - This object is obsolete.It can be measured through vserverTable.vsvrTotalMiss." - ::= { cswStatisticsEntry 7 } - -cswConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CswConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CSW configuration information for each of the entities. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverCspolicyTable." - ::= { contentSwitching 2 } - -cswConfigEntry OBJECT-TYPE - SYNTAX CswConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CSW configuration information for each of the entities. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverCspolicyEntry." - INDEX { cswVsId, policyId } - ::= { cswConfigTable 1 } - -CswConfigEntry ::= SEQUENCE { - cswVsId Integer32, - policyId Integer32, - vServerName OCTET STRING, - policyname OCTET STRING, - policyvalue OCTET STRING, - policyHits Integer32, - domain OCTET STRING -} - -cswVsId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each CSW Vserver inside - a NetScaler. - - This object is obsolete." - ::= { cswConfigEntry 1 } - -policyId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each CSW Policy inside - a NetScaler. - - This object is obsolete." - ::= { cswConfigEntry 2 } - -vServerName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the CSW Virtual Server. - - This object is obsolete." - ::= { cswConfigEntry 3 } - -policyname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the policy binding to a Virtual Server. - - This object is obsolete.It can be measured through vserverCspolicyTable.cspolicyName." - ::= { cswConfigEntry 4 } - -policyvalue OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The value of the policy. - - This object is obsolete." - ::= { cswConfigEntry 5 } - -policyHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The hits on the Policy in the Virtual Service. - - This object is obsolete.It can be measured through vserverCspolicyTable.cspolicyHits." - ::= { cswConfigEntry 6 } - -domain OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The domain hosted by the CSW vserver. - - This object is obsolete." - ::= { cswConfigEntry 7 } - -cacheRedirection OBJECT IDENTIFIER - ::= { nsRoot 6 } - -crStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CrStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Cache Redirection Statistics for each of the entities. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverTable." - ::= { cacheRedirection 1 } - -crStatisticsEntry OBJECT-TYPE - SYNTAX CrStatisticsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Cache Redirection Statistics for each of the entities. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverEntry." - INDEX { crVsIndex } - ::= { crStatisticsTable 1 } - -CrStatisticsEntry ::= SEQUENCE { - crVsIndex Integer32, - crVsIpAddress IpAddress, - crVsPort Integer32, - crProtocolType INTEGER, - crVirServiceName OCTET STRING, - crVsHits Integer32, - crVsMiss Integer32 -} - -crVsIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each virtual Service inside - a NetScaler. - - This object is obsolete." - ::= { crStatisticsEntry 1 } - -crVsIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The IP address in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrIpAddress." - ::= { crStatisticsEntry 2 } - -crVsPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port in the Virtual Service. - - This object is obsolete.It can be measured through vserverTable.vsvrPort." - ::= { crStatisticsEntry 3 } - -crProtocolType OBJECT-TYPE - SYNTAX INTEGER { http(0), ftp(1), tcp(2), udp(3), sslBridge(4), - monitor(5), monitorUdp(6), nntp(7), httpserver(8), - httpclient(9), rpcserver(10), rpcclient(11), ssf(12), - nat(13), any(14), ssl(15), dns(16), adns(17), - snmp(18), ha(19), monitorPing(20), - serviceUnknown(21) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The protocol type in the Physical Service. - - This object is obsolete.It can be measured through vserverTable.vsvrType." - ::= { crStatisticsEntry 4 } - -crVirServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the CSW Virtual server. - - This object is obsolete.It can be measured through vserverTable.vsvrName. " - ::= { crStatisticsEntry 5 } - -crVsHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total hits on the policies. - - This object is obsolete.It can be measured through vserverTable.vsvrTotalRequests." - ::= { crStatisticsEntry 6 } - -crVsMiss OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total Miss on the policy. - - This object is obsolete.It can be measured through vserverTable.vsvrTotMiss." - ::= { crStatisticsEntry 7 } - -crConfig OBJECT IDENTIFIER - ::= { cacheRedirection 2 } - -crPolBindConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CrPolBindConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CR policy binding configuration information for each of the entry. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverCrpolicyTable." - ::= { crConfig 1 } - -crPolBindConfigEntry OBJECT-TYPE - SYNTAX CrPolBindConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CR policy binding configuration information for each of the entry. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverCrpolicyEntry." - INDEX { bindId } - ::= { crPolBindConfigTable 1 } - -CrPolBindConfigEntry ::= SEQUENCE { - bindId Integer32, - crbVServerName OCTET STRING, - crbPolicyname OCTET STRING, - crbPolicyvalue OCTET STRING, - crbPolicyHits Integer32 -} - -bindId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The unique binding Id for each CR Policy inside - a NetScaler. - - This object is obsolete." - ::= { crPolBindConfigEntry 1 } - -crbVServerName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the CR Virtual Server. - - This object is obsolete." - ::= { crPolBindConfigEntry 2 } - -crbPolicyname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the policy binding to a Virtual Server. - - This object is obsolete.It can be measured through vserverCrpolicyTable.crpolicyName." - ::= { crPolBindConfigEntry 3 } - -crbPolicyvalue OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The value of the policy. - - This object is obsolete." - ::= { crPolBindConfigEntry 4 } - -crbPolicyHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The hits on the Policy in the Virtual Service. - - This object is obsolete.It can be measured through vserverCrpolicyTable.crpolicyHits." - ::= { crPolBindConfigEntry 5 } - -crMapBindConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CrMapBindConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CR map policy binding configuration information for each of the entry. - - This Table is obsolete." - ::= { crConfig 2 } - -crMapBindConfigEntry OBJECT-TYPE - SYNTAX CrMapBindConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CR map policy binding configuration information for each of the entry. - - This Entry is obsolete." - INDEX { mapbindId } - ::= { crMapBindConfigTable 1 } - -CrMapBindConfigEntry ::= SEQUENCE { - mapbindId Integer32, - mapName OCTET STRING, - mapHits Integer32, - vserverName OCTET STRING -} - -mapbindId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The unique binding Id for each CR Map Policy inside - a NetScaler. - - This object is obsolete." - ::= { crMapBindConfigEntry 1 } - -mapName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the map policy bound to CR Virtual Server. - - This object is obsolete." - ::= { crMapBindConfigEntry 2 } - -mapHits OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The hits on the Map Policy in the Virtual Service. - - This object is obsolete." - ::= { crMapBindConfigEntry 3 } - -vserverName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the CR vserver. - - This object is obsolete." - ::= { crMapBindConfigEntry 4 } - -crMapConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CrMapConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CR map configuration information for each of the entry. - - This Table is obsolete.Instead of this table use nsSysGroup.crConfigGroup.crPolicyMapConfigTable." - ::= { crConfig 3 } - -crMapConfigEntry OBJECT-TYPE - SYNTAX CrMapConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CR map configuration information for each of the entry. - - This Entry is obsolete.Instead of this entry use nsSysGroup.crConfigGroup.crPolicyMapConfigEntry." - INDEX { crmIndex } - ::= { crMapConfigTable 1 } - -CrMapConfigEntry ::= SEQUENCE { - crmIndex Integer32, - crmMapName OCTET STRING, - srcDomain OCTET STRING, - dstDomain OCTET STRING, - srcUrl OCTET STRING, - dstUrl OCTET STRING -} - -crmIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The unique Id for each CR Map inside - a NetScaler. - - This object is obsolete." - ::= { crMapConfigEntry 1 } - -crmMapName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the map policy. - - This object is obsolete.It can be measured through crPolicyMapConfigTable.crMapName." - ::= { crMapConfigEntry 2 } - -srcDomain OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the source domain hosted by the map. - - This object is obsolete.It can be measured through crPolicyMapConfigTable.crMapSrcName." - ::= { crMapConfigEntry 3 } - -dstDomain OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the destination domain after the mapping is applied. - - This object is obsolete.It can be measured through crPolicyMapConfigTable.crMapDstName." - ::= { crMapConfigEntry 4 } - -srcUrl OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Url to be modified under the given source domain. - - This object is obsolete.It can be measured through crPolicyMapConfigTable.crMapSrcUrl." - ::= { crMapConfigEntry 5 } - -dstUrl OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Url after mapping. - - This object is obsolete.It can be measured through crPolicyMapConfigTable.crMapDstUrl." - ::= { crMapConfigEntry 6 } - -compression OBJECT IDENTIFIER - ::= { nsRoot 7 } - -compressionStats OBJECT IDENTIFIER - ::= { compression 1 } - -cmpTotRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " Number of compression requests done" - ::= { compressionStats 1 } - -cmpTotTxbytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " Number of compressed bytes transmitted" - ::= { compressionStats 2 } - -cmpTotRxbytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " Number of compressible bytes received" - ::= { compressionStats 3 } - -cmpTotTxpkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " Number of compressed packets transmitted" - ::= { compressionStats 4 } - -cmpTotRxpkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " Number of compressible packets received" - ::= { compressionStats 5 } - -compressionRatio OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " ratio of compressible data received vs compressed data transmitted" - ::= { compressionStats 6 } - -totalDataCompressionRatio OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " ratio of total data received to total data transmitted" - ::= { compressionStats 7 } - -vlan OBJECT IDENTIFIER - ::= { nsRoot 8 } - -vlanstatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF VlanstatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Vlan Statistics for each of the entities." - ::= { vlan 1 } - -vlanstatsEntry OBJECT-TYPE - SYNTAX VlanstatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Vlan Statistics for each of the entities." - INDEX { vlansDevno } - ::= { vlanstatsTable 1 } - -VlanstatsEntry ::= SEQUENCE { - vlansDevno Integer32, - totalrxpkts Counter32, - totaltxpkts Counter32, - totalrxbytes Counter32, - totaltxbytes Counter32, - totaldroppedpkts Counter32, - totalbroadcastpackets Counter32 -} - -vlansDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each vlan inside - netscaler" - ::= { vlanstatsEntry 1 } - -totalrxpkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total Number of packets received in this vlan " - ::= { vlanstatsEntry 2 } - -totaltxpkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total Number of packets transmitted in this vlan" - ::= { vlanstatsEntry 3 } - -totalrxbytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total Number of bytes received in this vlan " - ::= { vlanstatsEntry 4 } - -totaltxbytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total Number of bytes transmitted in this vlan" - ::= { vlanstatsEntry 5 } - -totaldroppedpkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total Number of dropped packets in this vlan" - ::= { vlanstatsEntry 6 } - -totalbroadcastpackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total Number of broadcasted packets in this vlan" - ::= { vlanstatsEntry 7 } - -vlanconfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF VlanconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Vlan config Statistics for each of the entities. - - This Table is obsolete.Instead of this table use nsSysGroup.vlanTable." - ::= { vlan 2 } - -vlanconfigEntry OBJECT-TYPE - SYNTAX VlanconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Vlan config Statistics for each of the entities. - - This Entry is obsolete.Instead of this entry use nsSysGroup.vlanEntry." - INDEX { vlancDevno } - ::= { vlanconfigTable 1 } - -VlanconfigEntry ::= SEQUENCE { - vlancDevno Integer32, - tagId Integer32, - vlancInterfaces OCTET STRING, - ipaddress IpAddress, - netmask IpAddress, - tagging OCTET STRING -} - -vlancDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each vlan inside - netscaler. - - This object is obsolete." - ::= { vlanconfigEntry 1 } - -tagId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The unique tag Id for each vlan inside - NetScaler. - - This object is obsolete.It can be measured through vlanTable.vlanId." - ::= { vlanconfigEntry 2 } - -vlancInterfaces OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The port number associated to each vlan inside - netscaler. - - This object is obsolete.It can be measured through vlanTable.vlanMemberInterfaces." - ::= { vlanconfigEntry 3 } - -ipaddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The ipaddress for each vlan inside - netscaler. - - This object is obsolete.It can be measured through vlanTable.vlanBindIpAddress." - ::= { vlanconfigEntry 4 } - -netmask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The netmask corresponding to ipaddress for each vlan inside - netscaler. - - This object is obsolete.It can be measured through vlanTable.vlanBindIpNetmask." - ::= { vlanconfigEntry 5 } - -tagging OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Tagged member interfaces of this vlan. - - This object is obsolete." - ::= { vlanconfigEntry 6 } - -domainNameService OBJECT IDENTIFIER - ::= { nsRoot 9 } - -dnsServer OBJECT IDENTIFIER - ::= { domainNameService 1 } - -dnsServerStatistics OBJECT IDENTIFIER - ::= { dnsServer 1 } - -totQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for any kind of DNS Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotQueries. " - ::= { dnsServerStatistics 1 } - -totAnswers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for a name server Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotAnswers. " - ::= { dnsServerStatistics 2 } - -totAuthAns OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of queries which were authoritatively answered. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotAuthAns." - ::= { dnsServerStatistics 3 } - -totAuthNoNames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of queries for which `authoritative no such name' - responses were made. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotAuthNoNames." - ::= { dnsServerStatistics 4 } - -totAuthNoDataResps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of queries for which `authoritative no such data' - (empty answer) responses were made. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotAuthNoDataResps." - ::= { dnsServerStatistics 5 } - -totNonAuthDatas OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of queries which were non-authoritatively - answered (cached data). - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotStrayAnswer." - ::= { dnsServerStatistics 6 } - -totNonAuthNoDatas OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of queries which were non-authoritatively - answered with no data (empty answer). - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotNonAuthNoDatas." - ::= { dnsServerStatistics 7 } - -totReqRefusals OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of DNS requests refused by the server. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotReqRefusals." - ::= { dnsServerStatistics 8 } - -totReqUnparses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of requests received which were unparseable. - - This object is obsolete." - ::= { dnsServerStatistics 9 } - -totOtherErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of requests which were aborted for other (local) - server errors. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotOtherErrors." - ::= { dnsServerStatistics 10 } - -aRecQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for an Address Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotArecQueries. " - ::= { dnsServerStatistics 11 } - -nsRecQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for a name server Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotNSrecQueries." - ::= { dnsServerStatistics 12 } - -mxRecQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for an mail exchanger Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotMXrecQueries." - ::= { dnsServerStatistics 13 } - -soaRecQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for an SOA Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotSOArecQueries." - ::= { dnsServerStatistics 14 } - -cnameRecQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for an CNAME Record. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotCNAMErecQueries. " - ::= { dnsServerStatistics 15 } - -totUnsupportedQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "this Counter gives the number of times NetScaler as a - name server received a query for an unsupported Record type. - - This object is obsolete.It can be measured through nsDomainServiceName.dnsTotUnsupportedQueries." - ::= { dnsServerStatistics 16 } - -dnsServerConfig OBJECT IDENTIFIER - ::= { dnsServer 2 } - -dnsServerRecursion OBJECT-TYPE - SYNTAX INTEGER { available(1), restricted(2), unavailable(3) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This represents the recursion services offered by this - name server. The values that can be read are: - - available(1) - performs recursion on requests from - clients. - - restricted(2) - recursion is performed on requests only - from certain clients, for example; clients on an access - control list. - - unavailable(3) - recursion is not available. - - This object is obsolete." - ::= { dnsServerConfig 1 } - -dnsServerZoneTable OBJECT-TYPE - SYNTAX SEQUENCE OF DnsServerZoneEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has the configuration information - for each zone for which NetScaler is authoritative. - - This Table is obsolete." - ::= { dnsServerConfig 2 } - -dnsServerZoneEntry OBJECT-TYPE - SYNTAX DnsServerZoneEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Zone information for each domain as an entry. - - This Entry is obsolete." - INDEX { zoneIndex } - ::= { dnsServerZoneTable 1 } - -DnsServerZoneEntry ::= SEQUENCE { - zoneIndex Integer32, - zoneName OCTET STRING -} - -zoneIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each zone on NetScaler. - - This object is obsolete." - ::= { dnsServerZoneEntry 1 } - -zoneName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The domain name. - - This object is obsolete." - ::= { dnsServerZoneEntry 2 } - -globalServerLB OBJECT IDENTIFIER - ::= { nsRoot 10 } - -gslbStatistics OBJECT IDENTIFIER - ::= { globalServerLB 1 } - -gslbDomainStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF GslbDomainStatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has statistics for each gslb domain - on netscaler.OBSOLETE" - ::= { gslbStatistics 1 } - -gslbDomainStatsEntry OBJECT-TYPE - SYNTAX GslbDomainStatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The gslb statistics table entry. OBSOLETE" - INDEX { gslbDomainIndex } - ::= { gslbDomainStatsTable 1 } - -GslbDomainStatsEntry ::= SEQUENCE { - gslbDomainIndex Integer32, - domainname OCTET STRING, - gslbDomainQueries Counter32 -} - -gslbDomainIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each gslb Domain on NetScaler. OBSOLETE" - ::= { gslbDomainStatsEntry 1 } - -domainname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The domain name that has gslb feature enabled. OBSOLETE" - ::= { gslbDomainStatsEntry 2 } - -gslbDomainQueries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "number of times a dns query against this gslb domain - was received by the netscaler. OBSOLETE" - ::= { gslbDomainStatsEntry 3 } - -gslbConfig OBJECT IDENTIFIER - ::= { globalServerLB 2 } - -gslbDomainConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF GslbDomainConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has configuration for each gslb domain - on netscaler.OBSOLETE" - ::= { gslbConfig 1 } - -gslbDomainConfigEntry OBJECT-TYPE - SYNTAX GslbDomainConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The gslb statistics table entry. OBSOLETE" - INDEX { gslbcDomainIndex } - ::= { gslbDomainConfigTable 1 } - -GslbDomainConfigEntry ::= SEQUENCE { - gslbcDomainIndex Integer32, - gslbcDomainName OCTET STRING, - gslbVipName OCTET STRING, - reOrderInterval TimeTicks -} - -gslbcDomainIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for each gslb Domain on NetScaler.OBSOLETE" - ::= { gslbDomainConfigEntry 1 } - -gslbcDomainName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The domain name that has gslb feature enabled.OBSOLETE" - ::= { gslbDomainConfigEntry 2 } - -gslbVipName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The LB VIP thats bound to the gslb domain name. All the - IP addresses for the gslb domain are bound to this VIP. - The characteristics for this VIP should be found in the - LoadBalancing Group Mib. OBSOLETE" - ::= { gslbDomainConfigEntry 3 } - -reOrderInterval OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The interval in which metrics are exchanged among the - NetScalers and a decision made about which is the best - IP address at that point for the gslb domain name. OBSOLETE" - ::= { gslbDomainConfigEntry 4 } - -pq OBJECT IDENTIFIER - ::= { nsRoot 11 } - -pqstatistics OBJECT IDENTIFIER - ::= { pq 1 } - -pqStatsperLBVipTable OBJECT-TYPE - SYNTAX SEQUENCE OF PqStatsperLBVipEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has statistics for each LB Vip - on netscaler. - - This Table is obsolete." - ::= { pqstatistics 1 } - -pqStatsperLBVipEntry OBJECT-TYPE - SYNTAX PqStatsperLBVipEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The PQ statistics per Load Balancing VIP entry. - - This Entry is obsolete." - INDEX { pqDevno } - ::= { pqStatsperLBVipTable 1 } - -PqStatsperLBVipEntry ::= SEQUENCE { - pqDevno Integer32, - totclienttransactiontime Counter32, - totclienttransaction Counter32, - dropped Counter32, - qdepth Counter32 -} - -pqDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing id for the LoadBalancing Vserver. - - This object is obsolete." - ::= { pqStatsperLBVipEntry 1 } - -totclienttransactiontime OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total client transaction time. - - This object is obsolete. " - ::= { pqStatsperLBVipEntry 2 } - -totclienttransaction OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of client transaction. - - This object is obsolete. " - ::= { pqStatsperLBVipEntry 3 } - -dropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of dropped transactions. - - This object is obsolete. " - ::= { pqStatsperLBVipEntry 4 } - -qdepth OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of waiting clients . - - This object is obsolete." - ::= { pqStatsperLBVipEntry 5 } - -pqStatsperpqpolicyandperLBVipTable OBJECT-TYPE - SYNTAX SEQUENCE OF PqStatsperpqpolicyandperLBVipEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has statistics for each LB Vip - on netscaler. - - This Table is obsolete.Instead of this table use nsVserverGroup.vserverPqpolicyTable." - ::= { pqstatistics 2 } - -pqStatsperpqpolicyandperLBVipEntry OBJECT-TYPE - SYNTAX PqStatsperpqpolicyandperLBVipEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The PQ statistics per Load Balancing VIP entry. - - This Entry is obsolete.Instead of this entry use nsVserverGroup.vserverPqpolicyEntry." - INDEX { pqvsdevno, pqpoldevno } - ::= { pqStatsperpqpolicyandperLBVipTable 1 } - -PqStatsperpqpolicyandperLBVipEntry ::= SEQUENCE { - pqvsdevno Integer32, - pqpoldevno Integer32, - pqtotclienttransactiontime Counter32, - pqtotclienttransaction Counter32, - pqDropped Counter32, - pqQdepth Counter32 -} - -pqvsdevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing id for the LoadBalancing Vservice. - - This object is obsolete." - ::= { pqStatsperpqpolicyandperLBVipEntry 1 } - -pqpoldevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing id for the PQ policy. - - This object is obsolete." - ::= { pqStatsperpqpolicyandperLBVipEntry 2 } - -pqtotclienttransactiontime OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total client transaction time. - - This object is obsolete.It can be measured through vserverPqpolicyTable.pqpolicyTotClientTransactionTime. " - ::= { pqStatsperpqpolicyandperLBVipEntry 3 } - -pqtotclienttransaction OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of client transaction. - - This object is obsolete.It can be measured through vserverPqpolicyTable.pqpolicyTotClientTransactions. " - ::= { pqStatsperpqpolicyandperLBVipEntry 4 } - -pqDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of dropped transactions. - - This object is obsolete.It can be measured through vserverPqpolicyTable.pqpolicyDropped. " - ::= { pqStatsperpqpolicyandperLBVipEntry 5 } - -pqQdepth OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of waiting clients. - - This object is obsolete.It can be measured through vserverPqpolicyTable.pqpolicyQdepth. " - ::= { pqStatsperpqpolicyandperLBVipEntry 6 } - -pqconfig OBJECT IDENTIFIER - ::= { pq 2 } - -pqpolicyconfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF PqpolicyconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has configuration statistics for each PQ - policy on netscaler. - - This Table is obsolete.Instead of this table use nsPqPolicyGroup.pqPolicyConfigTable." - ::= { pqconfig 1 } - -pqpolicyconfigEntry OBJECT-TYPE - SYNTAX PqpolicyconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The PQ config statistics per policy. - - This Entry is obsolete.Instead of this entry use nsPqPolicyGroup.pqPolicyConfigEntry." - INDEX { pqPolDevno } - ::= { pqpolicyconfigTable 1 } - -PqpolicyconfigEntry ::= SEQUENCE { - pqPolDevno Integer32, - pqpolicyname OCTET STRING, - rulename OCTET STRING, - qdepthThreshval Integer32, - polqdepthThreshval Integer32, - priority Integer32, - pqPolWeight Integer32 -} - -pqPolDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing id for the policy. - - This object is obsolete." - ::= { pqpolicyconfigEntry 1 } - -pqpolicyname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name for PQ policyi. - - This object is obsolete.It can be measured through pqPolicyConfigTable.pqName." - ::= { pqpolicyconfigEntry 2 } - -rulename OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The rule name. - - This object is obsolete.It can be measured through pqPolicyConfigTable.pqRuleName." - ::= { pqpolicyconfigEntry 3 } - -qdepthThreshval OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The threshold value for qdepth. - - This object is obsolete.It can be measured through pqPolicyConfigTable.pqQdepthThreshval." - ::= { pqpolicyconfigEntry 4 } - -polqdepthThreshval OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The threshold value for policyqdepth. - - This object is obsolete.It can be measured through pqPolicyConfigTable.pqPolQdepthThreshval." - ::= { pqpolicyconfigEntry 5 } - -priority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The priority for this pq policy. - - This object is obsolete.It can be measured through pqPolicyConfigTable.pqPriority." - ::= { pqpolicyconfigEntry 6 } - -pqPolWeight OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The weight for the priority. - - This object is obsolete.It can be measured through pqPolicyConfigTable.pqPolicyWeight." - ::= { pqpolicyconfigEntry 7 } - -dos OBJECT IDENTIFIER - ::= { nsRoot 12 } - -dosstatistics OBJECT IDENTIFIER - ::= { dos 1 } - -dosservicestatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF DosservicestatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has statistics for each LB Vip. - - This Table is obsolete.Instead of this table use nsSvcGroup.serviceTable." - ::= { dosstatistics 1 } - -dosservicestatsEntry OBJECT-TYPE - SYNTAX DosservicestatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The DOS service statistics per Load Balancing VIP entry. - - This Entry is obsolete.Instead of this entry use nsSvcGroup.serviceEntry." - INDEX { dosDevno } - ::= { dosservicestatsTable 1 } - -DosservicestatsEntry ::= SEQUENCE { - dosDevno Integer32, - surgecnt Counter32, - dosqdepth Counter32, - totaljstransaction Counter32 -} - -dosDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing id for the LoadBalancing Vserver. - - This object is obsolete." - ::= { dosservicestatsEntry 1 } - -surgecnt OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The qdepth on this service. - - This object is obsolete.It can be measured through serviceTable.svcSurgeCount." - ::= { dosservicestatsEntry 2 } - -dosqdepth OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The number of genuine clients on this service. - - This object is obsolete.It can be measured through serviceTable.svcdosQDepth." - ::= { dosservicestatsEntry 3 } - -totaljstransaction OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of javascripts sent to genuine clients. - - This object is obsolete.It can be measured through serviceTable.svctotalJsTransaction. " - ::= { dosservicestatsEntry 4 } - -dosconfig OBJECT IDENTIFIER - ::= { dos 2 } - -dospolicyconfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF DospolicyconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has statistics for each policy - on netscaler. - - This Table is obsolete.Instead of this table use nsDosPolicyGroup.dosPolicyTable." - ::= { dosconfig 1 } - -dospolicyconfigEntry OBJECT-TYPE - SYNTAX DospolicyconfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The entry for DOS policy configuration. - - This Entry is obsolete.Instead of this entry use nsDosPolicyGroup.dosPolicyEntry." - INDEX { dosPolDevno } - ::= { dospolicyconfigTable 1 } - -DospolicyconfigEntry ::= SEQUENCE { - dosPolDevno Integer32, - dospolicyname OCTET STRING, - thresholdvalue Integer32 -} - -dosPolDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing id for the configured DOS policies. - - This object is obsolete." - ::= { dospolicyconfigEntry 1 } - -dospolicyname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the DOS policy. - - This object is obsolete.It can be measured through dosPolicyTable.dosPolicyName." - ::= { dospolicyconfigEntry 2 } - -thresholdvalue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The value of qdepth at which DOS protection gets triggered. - - This object is obsolete.It can be measured through dosPolicyTable.thresholdValue." - ::= { dospolicyconfigEntry 3 } - -ssloffloading OBJECT IDENTIFIER - ::= { nsRoot 13 } - -sslstatistics OBJECT IDENTIFIER - ::= { ssloffloading 1 } - -sslglobalstats OBJECT IDENTIFIER - ::= { sslstatistics 1 } - -currSPS OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "SSL session/second between client and NetScaler" - ::= { sslglobalstats 1 } - -sslV2TxCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of SSL v2 Transactions" - ::= { sslglobalstats 2 } - -sslV3TxCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of SSL v3 Transactions" - ::= { sslglobalstats 3 } - -tlsV1TxCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of TLS v1 Transactions" - ::= { sslglobalstats 4 } - -keyExRSA512 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of 512 bit RSA key exchange" - ::= { sslglobalstats 5 } - -keyExRSA1024 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of 1024 bit RSA key exchange" - ::= { sslglobalstats 6 } - -keyExDH512 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of 512 bit DH key exchange" - ::= { sslglobalstats 7 } - -keyExDH1024 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of 1024 bit DH key exchange" - ::= { sslglobalstats 8 } - -authRSA OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RSA authentication" - ::= { sslglobalstats 9 } - -authDH OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of DH authentication" - ::= { sslglobalstats 10 } - -authDS OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of DS authentication" - ::= { sslglobalstats 11 } - -cipher40BitRC4 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC4-40 cipher used" - ::= { sslglobalstats 12 } - -cipher56BitRC4 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC4-56 cipher used" - ::= { sslglobalstats 13 } - -cipher64BitRC4 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC4-64 cipher used" - ::= { sslglobalstats 14 } - -cipher128BitRC4 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC4-128 cipher used" - ::= { sslglobalstats 15 } - - -cipher40BitDES OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of DES-40 cipher used" - ::= { sslglobalstats 16 } - -cipher56BitDES OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of DES-56 cipher used" - ::= { sslglobalstats 17 } - - -cipher168Bit3DES OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of 3DES-168 cipher used" - ::= { sslglobalstats 18 } - - -cipher40BitRC2 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC2-40 cipher used" - ::= { sslglobalstats 19 } - -cipher56BitRC2 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC2-56 cipher used" - ::= { sslglobalstats 20 } - - -cipher128BitRC2 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of RC2-128 cipher used" - ::= { sslglobalstats 21 } - -cipher128BitIDEA OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of IDEA-128 cipher used" - ::= { sslglobalstats 22 } - -hashMD5 OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of HASH-MD5 hash used" - ::= { sslglobalstats 23 } - -hashSHA OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Total number of HASH_SHA hash used" - ::= { sslglobalstats 24 } - -sslConfig OBJECT IDENTIFIER - ::= { ssloffloading 2 } - -certKeyTable OBJECT-TYPE - SYNTAX SEQUENCE OF CertKeyEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the configuration information for - each certificate key pair. - - This Table is obsolete.Instead of this table use nsSslConfigGroup.sslCertKeyTable." - ::= { sslConfig 1 } - -certKeyEntry OBJECT-TYPE - SYNTAX CertKeyEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The certificate key pair information for each entry. - - This Entry is obsolete.Instead of this entry use nsSslConfigGroup.sslCertKeyEntry." - INDEX { certKeyId } - ::= { certKeyTable 1 } - -CertKeyEntry ::= SEQUENCE { - certKeyId Integer32, - certKeyName OCTET STRING, - certPath OCTET STRING, - keyPath OCTET STRING, - inputFormat INTEGER -} - -certKeyId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each certificate key pair in NetScaler. - - This object is obsolete." - ::= { certKeyEntry 1 } - -certKeyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The certificate key pair Name. - - This object is obsolete.It can be measured through sslCertKeyTable.sslCertKeyName." - ::= { certKeyEntry 2 } - -certPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The certificate path. - - This object is obsolete.It can be measured through sslCertKeyTable.sslCertPath." - ::= { certKeyEntry 3 } - -keyPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The private key path. - - This object is obsolete.It can be measured through sslCertKeyTable.sslKeyPath." - ::= { certKeyEntry 4 } - -inputFormat OBJECT-TYPE - SYNTAX INTEGER { der(1), pem(3) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The input format of the certificate key pair. - - This object is obsolete.It can be measured through sslCertKeyTable.sslInputFormat." - ::= { certKeyEntry 5 } - -crlTable OBJECT-TYPE - SYNTAX SEQUENCE OF CrlEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the configuration - information for each CRL in NetScaler. - - This Table is obsolete.Instead of this table use nsSslConfigGroup.sslCrlTable." - ::= { sslConfig 2 } - -crlEntry OBJECT-TYPE - SYNTAX CrlEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The CRL information for each entry. - - This Entry is obsolete.Instead of this entry use nsSslConfigGroup.sslCrlEntry." - INDEX { crlId } - ::= { crlTable 1 } - -CrlEntry ::= SEQUENCE { - crlId Integer32, - crlName OCTET STRING, - crlPath OCTET STRING, - crlInputFormat INTEGER -} - -crlId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each CRL in NetScaler. - - This object is obsolete." - ::= { crlEntry 1 } - - -crlName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of CRL. - - This object is obsolete.It can be measured through sslCrlTable.sslCrlName." - ::= { crlEntry 2 } - - -crlPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The CRL path. - - This object is obsolete.It can be measured through sslCrlTable.sslCrlPath." - ::= { crlEntry 3 } - - -crlInputFormat OBJECT-TYPE - SYNTAX INTEGER { der(1), pem(3) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The input format of CRL. - - This object is obsolete.It can be measured through sslCrlTable.sslCrlInputFormat." - ::= { crlEntry 4 } - -cipherGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF CipherGroupEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the configuration information - for each cipher group in NetScaler. - - This Table is obsolete.Instead of this table use nsSslConfigGroup.sslCipherGroupTable." - ::= { sslConfig 3 } - -cipherGroupEntry OBJECT-TYPE - SYNTAX CipherGroupEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The Cipher group information for each entry. - - This Entry is obsolete.Instead of this entry use sslCipherGroupTable.sslCipherGroupEntry." - INDEX { cipherGroupId, cipherId } - ::= { cipherGroupTable 1 } - -CipherGroupEntry ::= SEQUENCE { - cipherGroupId Integer32, - cipherId Integer32, - cipherGroupName OCTET STRING, - cipherName OCTET STRING, - cipherDesc OCTET STRING -} - -cipherGroupId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each Cipher group in NetScaler. - - This object is obsolete." - ::= { cipherGroupEntry 1 } - -cipherId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each Cipher in NetScaler. - - This object is obsolete." - ::= { cipherGroupEntry 2 } - -cipherGroupName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Cipher group name. - - This object is obsolete.It can not be measured through sslCipherGroupTable.sslCipherGroupName. " - ::= { cipherGroupEntry 3 } - -cipherName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Cipher name. - - This object is obsolete.It can not be measured through sslCipherGroupTable.sslCipherName." - ::= { cipherGroupEntry 4 } - -cipherDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Cipher description. - - This object is obsolete.It can not be measured through sslCipherGroupTable.sslCipherDesc." - ::= { cipherGroupEntry 5 } - -advanceSSLConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF AdvanceSSLConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the advance SSL configuration - information for each virtual/physical service in NetScaler. - - This Table is obsolete.Instead of this table use nsSvcGroup.serviceAdvanceSslConfigTable or nsVserverGroup.vserverAdvanceSslConfigTable." - ::= { sslConfig 4 } - -advanceSSLConfigEntry OBJECT-TYPE - SYNTAX AdvanceSSLConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The advance SSL configuration for each entry. - - This Entry is obsolete.Instead of this entry use nsSvcGroup.serviceAdvanceSslConfigEntry or nsVserverGroup.vserverAdvanceSslConfigEntry." - INDEX { id } - ::= { advanceSSLConfigTable 1 } - -AdvanceSSLConfigEntry ::= SEQUENCE { - id Integer32, - serviceName OCTET STRING, - dh INTEGER, - dhCount Integer32, - dhFile OCTET STRING, - eRSA INTEGER, - eRSACount Integer32, - certHeader INTEGER, - certHeaderTag OCTET STRING, - sessHeader INTEGER, - sessHeaderTag OCTET STRING, - sslv2 INTEGER, - sslv3 INTEGER, - tlsv1 INTEGER, - owaSupport INTEGER, - sslRedirect INTEGER, - clearTextPort Integer32, - serviceType INTEGER -} - -id OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each SSL virtual/physical service in NetScaler. - - This object is obsolete." - ::= { advanceSSLConfigEntry 1 } - -serviceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The service name. - - This object is obsolete.It can be measured." - ::= { advanceSSLConfigEntry 2 } - -dh OBJECT-TYPE - SYNTAX INTEGER {disabled(1),enabled(2)} - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Whether DH is enabled/disabled. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslDH or vserverAdvanceSslConfigTable.vsvrSslDH." - ::= { advanceSSLConfigEntry 3 } - -dhCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The DH refresh count to re-generate public/private key. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslDHCount or vserverAdvanceSslConfigTable.vsvrSslDHCount." - ::= { advanceSSLConfigEntry 4 } - -dhFile OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The DH file path name. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslDHFilePath or vserverAdvanceSslConfigTable.vsvrSslDHFilePath." - ::= { advanceSSLConfigEntry 5 } - -eRSA OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The ephimeral RSA support for service. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSsleRSA or vserverAdvanceSslConfigTable.vsvrSsleRSA." - ::= { advanceSSLConfigEntry 6 } - -eRSACount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The eRSA refresh count to re-generate RSA temporary key. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSsleRSACount or vserverAdvanceSslConfigTable.vsvrSsleRSACount." - ::= { advanceSSLConfigEntry 7 } - -certHeader OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The certificate insertion in HTTP request. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslCertHeader or vserverAdvanceSslConfigTable.vsvrSslCertHeader." - ::= { advanceSSLConfigEntry 8 } - -certHeaderTag OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The certificate tag name in HTTP request. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslCertHeaderTag or vserverAdvanceSslConfigTable.vsvrSslCertHeaderTag." - ::= { advanceSSLConfigEntry 9 } - -sessHeader OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The session id insertion in HTTP request. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslSessionHeader or vserverAdvanceSslConfigTable.vsvrSslSessionHeader." - ::= { advanceSSLConfigEntry 10 } - -sessHeaderTag OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The session id tag name in HTTP request. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslSessionHeaderTag or vserverAdvanceSslConfigTable.vsvrSslSessionHeaderTag." - ::= { advanceSSLConfigEntry 11 } - -sslv2 OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The support for SSLv2 protocol for service. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslv2Protocol or vserverAdvanceSslConfigTable.vsvrSslv2Protocol." - ::= { advanceSSLConfigEntry 12 } - -sslv3 OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The support for SSLv3 protocol for service. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslv3Protocol or vserverAdvanceSslConfigTable.vsvrSslv3Protocol." - ::= { advanceSSLConfigEntry 13 } - -tlsv1 OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The support for TLSv1 protocol for service. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslTLSv1Protocol or vserverAdvanceSslConfigTable.vsvrSslTLSv1Protocol." - ::= { advanceSSLConfigEntry 14 } - -owaSupport OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The support for outlook web access for service. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSsloutlookSupport or vserverAdvanceSslConfigTable.vsvrSsloutlookSupport." - ::= { advanceSSLConfigEntry 15 } - -sslRedirect OBJECT-TYPE - SYNTAX INTEGER { disabled(1), enabled(2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The support for ssl redirect for service. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslRedirectSupport or vserverAdvanceSslConfigTable.vsvrSslRedirectSupport." - ::= { advanceSSLConfigEntry 16 } - -clearTextPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The clear text port on the backend webserver. - - This object is obsolete.It can be measured through serviceAdvanceSslConfigTable.svcSslClearTextPort or vserverAdvanceSslConfigTable.vsvrSslClearTextPort." - ::= { advanceSSLConfigEntry 17 } - -serviceType OBJECT-TYPE - SYNTAX INTEGER { virtualserver(0), physicalservice(1) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The type of the service virtual/ real. - - This object is obsolete." - ::= { advanceSSLConfigEntry 18 } - -certBindingConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CertBindingConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the certificate configuration - for each service in NetScaler. - - This Table is obsolete." - ::= { sslConfig 5 } - -certBindingConfigEntry OBJECT-TYPE - SYNTAX CertBindingConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The certificate bindings for each entry. - - This Entry is obsolete." - INDEX { certBindId, certKeyID, certType } - ::= { certBindingConfigTable 1 } - -CertBindingConfigEntry ::= SEQUENCE { - certBindId Integer32, - certKeyID Integer32, - certType INTEGER, - certBindServiceName OCTET STRING, - certBindKeyName OCTET STRING, - certBindServiceType INTEGER -} - -certBindId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each SSL virtual/real service in NetScaler. - - This object is obsolete." - ::= { certBindingConfigEntry 1 } - -certKeyID OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The Distinguish ID for each certificate key pair in NetScaler. - - This object is obsolete." - ::= { certBindingConfigEntry 2 } - -certType OBJECT-TYPE - SYNTAX INTEGER { serverCertificate(1), caCertificate (2) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Whether certificate key pair is CA or not. - - This object is obsolete." - ::= { certBindingConfigEntry 3 } - -certBindServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The service name. - - This object is obsolete." - ::= { certBindingConfigEntry 4 } - -certBindKeyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The certificate key pair name. - - This object is obsolete." - ::= { certBindingConfigEntry 5 } - -certBindServiceType OBJECT-TYPE - SYNTAX INTEGER { virtualserver(0), physicalservice(1) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The type of the service virtual/ real. - - This object is obsolete." - ::= { certBindingConfigEntry 6 } - -cipherBindingConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CipherBindingConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the cipher configuration for - each service in NetScaler. - - This Table is obsolete.Instead of this table use nsSvcGroup.serviceCipherBindingTable or nsVserverGroup.vserverCipherBindingTable." - ::= { sslConfig 6 } - -cipherBindingConfigEntry OBJECT-TYPE - SYNTAX CipherBindingConfigEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The cipher bindings for each entry. - - This Entry is obsolete.Instead of this entry use nsSvcGroup.serviceCipherBindingEntry or nsVserverGroup.vserverCipherBindingEntry." - INDEX { cipherBindId, cipherID } - ::= { cipherBindingConfigTable 1 } - -CipherBindingConfigEntry ::= SEQUENCE { - cipherBindId Integer32, - cipherID Integer32, - cipherBindServiceName OCTET STRING, - cipherbName OCTET STRING, - cipherbDesc OCTET STRING, - cipherBindServiceType INTEGER -} - -cipherBindId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing ID for each SSL virtual/real service in NetScaler. - - This object is obsolete." - ::= { cipherBindingConfigEntry 1 } - -cipherID OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing ID for each cipher in NetScaler. - - This object is obsolete." - ::= { cipherBindingConfigEntry 2 } - -cipherBindServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the physical or virtual service. - - This object is obsolete." - ::= { cipherBindingConfigEntry 3 } - -cipherbName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The cipher name. - - This object is obsolete.It can be measured through serviceCipherBindingTable.svcSslCipherBindName or vserverCipherBindingTable.vsvrSslCipherBindName." - ::= { cipherBindingConfigEntry 4 } - -cipherbDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The cipher description. - - This object is obsolete.It can be measured through serviceCipherBindingTable.svcSslCipherBindDesc or vserverCipherBindingTable.vsvrSslCipherBindDesc." - ::= { cipherBindingConfigEntry 5 } - -cipherBindServiceType OBJECT-TYPE - SYNTAX INTEGER { virtualserver(0), physicalservice(1) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The type of the service virtual/ real. - - This object is obsolete." - ::= { cipherBindingConfigEntry 6 } - -cpe OBJECT IDENTIFIER - ::= { nsRoot 14 } - -cpestatistics OBJECT IDENTIFIER - ::= { cpe 1 } - -cpestatspolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpestatspolicyEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the policy stats for - each virtual service in NetScaler." - ::= { cpestatistics 1 } - -cpestatspolicyEntry OBJECT-TYPE - SYNTAX CpestatspolicyEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The policy items for each entry." - INDEX { cpesDevno } - ::= { cpestatspolicyTable 1 } - -CpestatspolicyEntry ::= SEQUENCE { - cpesDevno Integer32, - cpesPolicyname OCTET STRING, - cpesPolicyhits Counter32 -} - -cpesDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The unique identifier for the policy" - ::= { cpestatspolicyEntry 1 } - -cpesPolicyname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The name of the policy " - ::= { cpestatspolicyEntry 2 } - -cpesPolicyhits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of times that the policy condition has been met by NetScaler" - ::= { cpestatspolicyEntry 3 } - -cpestatsactionTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpestatsactionEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the action stats for - each virtual service in NetScaler." - ::= { cpestatistics 2 } - -cpestatsactionEntry OBJECT-TYPE - SYNTAX CpestatsactionEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The action items for each entry." - INDEX { cpeaDevno } - ::= { cpestatsactionTable 1 } - -CpestatsactionEntry ::= SEQUENCE { - cpeaDevno Integer32, - actionname OCTET STRING, - actionhits Counter32 -} - -cpeaDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The unique identifier for the action" - ::= { cpestatsactionEntry 1 } - -actionname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The name of the action " - ::= { cpestatsactionEntry 2 } - -actionhits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "Number of times that the action has been made by NetScaler" - ::= { cpestatsactionEntry 3 } - -cpeconfig OBJECT IDENTIFIER - ::= { cpe 2 } - -cpeconfigpolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpeconfigpolicyEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the policy stats for - each virtual service in NetScaler." - ::= { cpeconfig 1 } - -cpeconfigpolicyEntry OBJECT-TYPE - SYNTAX CpeconfigpolicyEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The policy items for each entry." - INDEX { cpecDevno } - ::= { cpeconfigpolicyTable 1 } - -CpeconfigpolicyEntry ::= SEQUENCE { - cpecDevno Integer32, - cpecPolicyname OCTET STRING, - reqrule OCTET STRING, - reqaction OCTET STRING -} - -cpecDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The unique identifier for the policy" - ::= { cpeconfigpolicyEntry 1 } - -cpecPolicyname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The name of the policy " - ::= { cpeconfigpolicyEntry 2 } - -reqrule OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "user defined request rule for the policy from client to NetScaler" - ::= { cpeconfigpolicyEntry 3 } - -reqaction OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "user defined request action for the policy from client to NetScaler" - ::= { cpeconfigpolicyEntry 4 } - -cpeconfigactionTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpeconfigactionEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The table that has all the action configurations for - each virtual service in NetScaler." - ::= { cpeconfig 2 } - -cpeconfigactionEntry OBJECT-TYPE - SYNTAX CpeconfigactionEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "The action items for each entry." - INDEX { cpecaDevno } - ::= { cpeconfigactionTable 1 } - -CpeconfigactionEntry ::= SEQUENCE { - cpecaDevno Integer32, - cpecaActionname OCTET STRING, - directive INTEGER, - qualifier INTEGER, - value OCTET STRING, - page OCTET STRING, - server OCTET STRING -} - -cpecaDevno OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The unique identifier for the action" - ::= { cpeconfigactionEntry 1 } - -cpecaActionname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The name of the action " - ::= { cpeconfigactionEntry 2 } - -directive OBJECT-TYPE - SYNTAX INTEGER { unknown(0), reset(1), drop(2), httpec(3), - cmp(4), add(5), mod(6), del(7), cor(8), forward(9), - noComparison(10), last(11) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The name of the directive associated with this action " - ::= { cpeconfigactionEntry 3 } - -qualifier OBJECT-TYPE - SYNTAX INTEGER { unknown(0), http(1), header(2), query(3) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The name of the qualifier associated with this action " - ::= { cpeconfigactionEntry 4 } - -value OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The value associated with this action . The value depends on - the directive . If the directive is RESPONSE , then the - value returned is status. Similarly , if the directive is - either ADD or MOD or DEL , then the value returned is header. - If the directive is RST or CMP, then NULL is returned" - ::= { cpeconfigactionEntry 5 } - -page OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The value of this depends on the value of directive. If value of - directive is RESPONSE , then the page is returned, and if directive - is MOD , then the header is returned , - otherwise NULL is returned" - ::= { cpeconfigactionEntry 6 } - -server OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - " The server name associated with this action based on the directive. - If the directive is FORWARD , then the server returns the name of the - service , otherwise returns empty string" - ::= { cpeconfigactionEntry 7 } - -cpeExprConfigStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpeExprConfigStatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "This table contains configuration information for each of - the expressions on the Netscaler - - This Table is obsolete.Instead of this table use nsSysGroup.nsExpressionTable." - ::= { cpe 3 } - -cpeExprConfigStatsEntry OBJECT-TYPE - SYNTAX CpeExprConfigStatsEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "This table contains configuration information for each of - the expressions on the Netscaler - - This Entry is obsolete.Instead of this entry use nsSysGroup.nsExpressionEntry." - INDEX { cpeeIndex } - ::= { cpeExprConfigStatsTable 1 } - -CpeExprConfigStatsEntry ::= SEQUENCE { - cpeeIndex Integer32, - exprName OCTET STRING, - cpeeQualifier INTEGER, - operator INTEGER, - hdrName OCTET STRING, - cpeeValue OCTET STRING, - length Integer32, - offset Integer32, - cpeeNetmask Integer32 -} - -cpeeIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The distinguishing Id for expression. - - This object is obsolete." - ::= { cpeExprConfigStatsEntry 1 } - -exprName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The name of the expression. - - This object is obsolete.It can be measured through nsExpressionTable.expressionName." - ::= { cpeExprConfigStatsEntry 2 } - -cpeeQualifier OBJECT-TYPE - SYNTAX INTEGER { unknownQualifier(-1), method(0), - urlPrefix(1), urlSuffix(2), urlTokens(3), - version(4), header(5), urlQuery(6), url(7), - urllen(8), urlquerylen(9), domain(10), sourceIp(11), - sourcePort(12), destinationIp(13), - destinationPort(14), compoundExpression(15), - evaluatePredefined(16) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The qualifier of the expression." - ::= { cpeExprConfigStatsEntry 3 } - -operator OBJECT-TYPE - SYNTAX INTEGER { and(0), or(1), not(2), equal(3), notEqual(4), - greaterThan(5), lessThan(6), - greaterThanOrEqualTo(7), - lessThanOrEqualTo(8), exists(9), notExists(10), - contains(11), notContains(12), contents(13) } - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The operator in the expression." - ::= { cpeExprConfigStatsEntry 4 } - -hdrName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The http header in the expression when the - value of qualifier is HEADER , otherwise empty string" - ::= { cpeExprConfigStatsEntry 5 } - -cpeeValue OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The value of the expression. - - This object is obsolete.It can be measured through nsExpressionTable.expressionValue." - ::= { cpeExprConfigStatsEntry 6 } - -length OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The length , which is an optional value , used in - the expression . This has value only when the qualifier is - CONTAINS or CONTENTS" - ::= { cpeExprConfigStatsEntry 7 } - -offset OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The offset , which is an optional value , used in - the expression . This has value only when the qualifier is - CONTAINS or CONTENTS" - ::= { cpeExprConfigStatsEntry 8 } - -cpeeNetmask OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The netmask , which is an optional value , used in - the expression . This has value only when the qualifier is - SOURCEIP" - ::= { cpeExprConfigStatsEntry 9 } - -EntityProtocolType ::= - INTEGER{ http(0), ftp(1), tcp(2), udp(3), sslBridge(4), monitor(5), monitorUdp(6), nntp(7), httpserver(8), httpclient(9), rpcserver(10), rpcclient(11), nat(12), any(13), ssl(14), dns(16), adns(17), snmp(18), ha(19), monitorPing(20), sslOtherTcp(21), aaa(22), secureMonitor(23), sslvpnUdp(24), rip(25), dnsClient(26), rpcServer(27), rpcClient(28), dhcrpa(36), sipudp(39), siptcp(40), siptls(41), dnstcp(48), adnstcp(49), rtsp(50), push(52), sslPush(53), dhcpClient(54), radius(55), rdp(61), mysql(62), mssql(63), diameter(73), sslDiameter(74), tftp(75), tftp(90), pptp(91), gre(92), fix(95), sslFix(96), serviceUnknown(99) } - -EntityState ::= - INTEGER{ down(1), unknown(2), busy(3), outOfService(4), transitionToOutOfService(5), up(7), transitionToOutOfServiceDown(8) } - -MepStatus ::= - INTEGER{ mepDown(0), mepUp(1) } - -SiteType ::= - INTEGER{ localSite(1), remoteSite(2) } - -MetricExchange ::= - INTEGER{ disabled(3), enabled(4) } - -AdminStatus ::= - INTEGER{ disabled(1), enabled(2) } - -HAMode ::= - INTEGER{ standalone(0), primary(1), secondary(2), unknown(3) } - -HAState ::= - INTEGER{ unknown(0), init(1), down(2), up(3), partialFail(4), monitorFail(5), monitorOk(6), completeFail(7), dumb(8), disabled(9), partialFailSsl(10), routemonitorFail(11) } - -HAON ::= - INTEGER{ no(0), yes(1) } - -ClusterAdminState ::= - INTEGER{ active(1), spare(2), passive(3) } - -ClusterMasterState ::= - INTEGER{ inactive(0), active(1), unknown(2) } - -ClusterCurHealth ::= - INTEGER{ unknown(0), init(1), down(2), up(3), partialFail(4), completeFail(5), partialFailSsl(6), routemonitorFail(7), lbStateSyncInprog(8), bkplaneFail(9), clagFail(10), dhtSyncInprog(11), syncookieSyncInprog(12), unkwnBadHlth(14) } - -ClusterEffHealth ::= - INTEGER{ up(1), notup(2), unknown(3), init(4) } - -ClusterSyncState ::= - INTEGER{ enabled(1), success(2), inprog(3), failure(4), incsyncdisabled(5), disabled(6), unknown(7) } - -FeatureStatus ::= - INTEGER{ notLicensed(0), licensedButDisabled(1), licensedAndEnabled(2) } - -FeaturePlatform ::= - INTEGER{ ns(0), agee(1), nsva(2) } - -ModeStatus ::= - INTEGER{ disabled(0), enabled(1) } - -LbPolicy ::= - INTEGER{ weightedRoundRobin(1), leastConnections(2), leastResponse(3), asynchronousMAC(4), urlHashed(5), domainHashed(6), destinationIPHashed(7), sourceIPHashed(8), leastBandwidth(9), leastPackets(10), customLoad(11), token(12), staticProximity(13), rdp(14), leastreq(15), rtt(16), sourceIPDestinationIPHashed(17), sourceIPSourcePort(18), lrtm(19), callIDHashed(20) } - -PersistanceType ::= - INTEGER{ none(0), sourceIp(1), cookieInsert(2), cookieDelete(3), cookieRead(4), cookieHash(5), sessionId(6), server(7), rule(8), urlPassive(9), customServerID(10), groupSourceID(11), groupCookieInsert(12), groupRule(13), destinationIP(14), spillOver(15), sourceIPdestinationIP(16), callerID(17), gslbBackup(18), rtspSessionID(19), diameter(20), fixSession(21) } - -ActionType ::= - INTEGER{ ns(1), acs(2), noAction(3) } - -InputFormat ::= - INTEGER{ der(1), pem(3) } - -IpAddressType ::= - INTEGER{ netScalerIp(1), mappedIp(2), subnetIp(4), vserverIp(8), clusterIp(2048) } - -IpAddressMode ::= - INTEGER{ active(1), passive(2) } - -AuthorizationStatus ::= - INTEGER{ authorized(1), notAuthorized(2) } - -CommandExecutionStatus ::= - INTEGER{ failed(1), successful(2) } - -MonitorType ::= - INTEGER{ ping(1), tcp(2), http(3), tcpEcv(4), httpEcv(5), udpEcv(6), dns(7), ftp(8), https(9), tcps(10), ldnsPing(11), ldnsTcp(12), ldnsDns(13), radius(14), dbsResolver(15), user(16), httpInline(17), sipUdp(18), sipTcp(19), ftpExtended(20), smtp(21), snmp(22), nntp(23), mysql(24), ldap(25), pop3(26), load(27), citrixXmlService(28), citrixWebInterface(29), citrixStaService(30), citrixStaServiceNhop(31), dnsTcp(32), rtsp(33), arp(34), citrixAg(35), citrixAacLoginPage(36), citrixAacLas(37), citrixXdDdc(38), nd6(39), mysqlEcv(40), mssqlEcv(41), citrixWiExtended(42), diameter(44), radiusaccounting(46), storeFront(47), tftpExtended(48), appc(49), smpp(50), citrixXncEcv(52), citrixXdm(53) } - -MonitorState ::= - INTEGER{ monitorStateNotProbed(0), monitorStateDown(1), monitorStateUnknown(2), monitorStateDisabled(6), monitorStateUp(7) } - -ServiceGroupState ::= - INTEGER{ disabled(0), enabled(1) } - -VServerType ::= - INTEGER{ unknown(0), loadbalancing(1), loadbalancinggroup(2), sslvpn(3), contentswitching(4), cacheredirection(5) } - -SvcEntityType ::= - INTEGER{ service(0), serviceGroupMember(1) } - -ActiveActiveState ::= - INTEGER{ notApplicable(0), active(1), backup(2) } - -nsProducts OBJECT IDENTIFIER - ::= { netScaler 4 } - -rs9000 OBJECT IDENTIFIER - ::= { nsProducts 1 } - -nsSysGroup OBJECT IDENTIFIER - ::= { rs9000 1 } - -sysBuildVersion OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This shows the version of the kernel build running on the netscaler." - ::= { nsSysGroup 1 } - -sysIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This shows the configured ipaddress of the NetScaler" - ::= { nsSysGroup 2 } - -sysNetmask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This shows the configured netmask of the NetScaler" - ::= { nsSysGroup 3 } - -sysMappedIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The mapped IP address of the system. This object is now obsolete. All mapped IPs configured on the system are available in the nsIpAddrTable." - ::= { nsSysGroup 4 } - -sysMappedIpAddressRange OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSysGroup 5 } - -sysHighAvailabilityMode OBJECT-TYPE - SYNTAX HAMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This shows whether NetScaler is in standalone mode or whether it is primary or secondary in case of failover mode." - ::= { nsSysGroup 6 } - -sysGateway OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the default gateway configured on the NetScaler" - ::= { nsSysGroup 7 } - -sysCurMappedIpCount OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the number of Mapped IPs currently configured on the NetScaler system" - ::= { nsSysGroup 8 } - -sysCustomID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Configurable Identifier for the system" - ::= { nsSysGroup 9 } - -sysHardwareVersionId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The hardware version ID of the NetScaler system" - ::= { nsSysGroup 10 } - -sysHardwareVersionDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The hardware version description of the NetScaler system" - ::= { nsSysGroup 11 } - -sysTotConfigChanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times a configuration change was made on the NetScaler appliance." - ::= { nsSysGroup 12 } - -sysTotSaveConfigs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the system configuration was saved on the NetScaler appliance." - ::= { nsSysGroup 13 } - -sysHardwareSerialNumber OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The serial number of the NetScaler system." - ::= { nsSysGroup 14 } - -sysHardwareEncodedSerialNumber OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The encoded serial no of the NetScaler system." - ::= { nsSysGroup 15 } - -sysModelId OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The model ID is populated if the system is such that it is license controlled. If the system does not support license based models, then the model id will be zero." - ::= { nsSysGroup 16 } - -nsFeatureInfo OBJECT IDENTIFIER - ::= { nsSysGroup 20 } - -featureWebLogging OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether webLogging feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 1 } - -featureSurgeProtection OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether surgeProtection feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 2 } - -featureLoadBalancing OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether LoadBalancing feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 3 } - -featureContentSwitching OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether contentSwitching feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 4 } - -featureCacheRedirection OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether cacheRedirection feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 5 } - -featureSureConnect OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether sureConnect feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 6 } - -featureCompression OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether compression feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 7 } - -featurePriorityQueuing OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether priorityQueuing feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 8 } - -featureSslOffloading OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether sslOffloading feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 9 } - -featureGslb OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether gslb feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 10 } - -featureHttpDosProtection OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether httpDosProtection feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 11 } - -featureDynamicRouting OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsFeatureInfo 12 } - -featureContentFiltering OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether contentFiltering feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 13 } - -featureInternalCaching OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether internalCaching feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 14 } - -featureSSLVPN OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether SSL VPN feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 15 } - -featureOSPF OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether OSPF feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 16 } - -featureRIP OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether RIP feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 17 } - -featureBGP OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether BGP feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 18 } - -featureRewrite OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Rewrite feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 19 } - -featureDeltaCompression OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Delta Compression feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 20 } - -featureGSLBProximity OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether GSLB Proximity feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 21 } - -featureIPv6ProtocolTranslation OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether IPv6 Protocol Translation feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 22 } - -featureApplicationFirewall OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Application Firewall feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 23 } - -featureResponder OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Responder feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 24 } - -featureHtmlInjection OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Html Injection feature is enabled or disabled on Netscaler." - ::= { nsFeatureInfo 25 } - -featureAGEE OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether AGEE feature of SSLVPN is enabled or disabled on Netscaler." - ::= { nsFeatureInfo 50 } - -featureAAA OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Authentication, Authorization and Auditing features for Traffic Management vservers are enabled or disabled on NetScaler." - ::= { nsFeatureInfo 51 } - -featurePLATFORM OBJECT-TYPE - SYNTAX FeaturePlatform - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This gives platform information AGEE 1 NSVA 2 etc" - ::= { nsFeatureInfo 60 } - -featureAPPFLOW OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether APPFLOW feature is enabled or disable on NetScaler." - ::= { nsFeatureInfo 61 } - -featureISIS OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether ISIS feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 62 } - -featureContentAdapation OBJECT-TYPE - SYNTAX FeatureStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether ContentAccelerator feature is enabled or disabled on NetScaler." - ::= { nsFeatureInfo 63 } - -nsModeInfo OBJECT IDENTIFIER - ::= { nsSysGroup 21 } - -modeFastRamp OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether fastRamp mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 1 } - -l2Mode OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether l2Mode mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 2 } - -modeUseSrcIp OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether useSrcIp mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 3 } - -modeClientKeepAlive OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether clientKeepAlive mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 4 } - -modeTcpBuffering OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether tcpBuffering mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 5 } - -modeMacBasedForwarding OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether macBasedForwarding mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 6 } - -modeUseSubnetIp OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Use Subnet IP mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 7 } - -modeEdgeConfiguration OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Edge Configuration mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 8 } - -l3mode OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether l3 mode (ip forwarding) is enabled or disabled on NetScaler." - ::= { nsModeInfo 9 } - -modePathMTUDiscovery OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether path MTU discovery mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 10 } - -modeStaticRouteAdv OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether static route advertisement mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 11 } - -modeDirectRouteAdv OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether direct route advertisement mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 12 } - -modeIntranetRouteAdv OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether intranet route advertisement mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 13 } - -brgBpdu OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Bridging of BPDU is enabled or disabled on NetScaler." - ::= { nsModeInfo 14 } - -modeIpv6StaticRouteAdv OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Ipv6 static route advertisement mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 15 } - -modeIpv6DirectRouteAdv OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether Ipv6 direct route advertisement mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 16 } - -mediaclassification OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents whether mediaclassification mode is enabled or disabled on NetScaler." - ::= { nsModeInfo 17 } - -nsFiltersGroup OBJECT IDENTIFIER - ::= { nsSysGroup 22 } - -aclStatsGroup OBJECT IDENTIFIER - ::= { nsFiltersGroup 1 } - -aclTotPktsBridgedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 1 } - -aclTotPktsBridgedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 2 } - -aclTotPktsDeniedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 3 } - -aclTotPktsDeniedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 4 } - -aclTotPktsAllowedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 5 } - -aclTotPktsAllowedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 6 } - -aclTotPktsReusedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 7 } - -aclTotPktsReusedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { aclStatsGroup 8 } - -aclTotPktsBridged OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a bridge ACL, which is in transparent mode and bypasses service processing." - ::= { aclStatsGroup 9 } - -aclTotPktsDenied OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped because they match ACLs with processing mode set to DENY." - ::= { aclStatsGroup 10 } - -aclTotPktsAllowed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching ACLs with processing mode set to ALLOW. NetScaler processes these packets." - ::= { aclStatsGroup 11 } - -aclTotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching an ACL." - ::= { aclStatsGroup 12 } - -aclTotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets not matching any ACL." - ::= { aclStatsGroup 13 } - -aclTotPktsNAT OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a NAT ACL, resulting in a NAT session." - ::= { aclStatsGroup 14 } - -nsAclTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsAclEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains all the ACLs configured" - ::= { aclStatsGroup 20 } - -nsAclEntry OBJECT-TYPE - SYNTAX NsAclEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { aclName } - ::= { nsAclTable 1 } - -NsAclEntry ::= SEQUENCE { - aclName OCTET STRING, - aclPriority Integer32, - aclHits Counter64, - aclperHits Counter64, - aclFullName OCTET STRING -} - -aclName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the ACL" - ::= { nsAclEntry 1 } - -aclPriority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The priority of the ACL" - ::= { nsAclEntry 2 } - -aclHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsAclEntry 3 } - -aclperHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the acl was hit" - ::= { nsAclEntry 4 } - -aclFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the ACL" - ::= { nsAclEntry 5 } - -aclTotCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of ACL rules configured." - ::= { aclStatsGroup 21 } - -contentFiltersTable OBJECT-TYPE - SYNTAX SEQUENCE OF ContentFiltersEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsFiltersGroup 2 } - -contentFiltersEntry OBJECT-TYPE - SYNTAX ContentFiltersEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - INDEX { contentFilterName } - ::= { contentFiltersTable 1 } - -ContentFiltersEntry ::= SEQUENCE { - contentFilterName OCTET STRING, - contentFilterHitsLow Counter32, - contentFilterHitsHigh Counter32, - contentFilterHits Counter64 -} - -contentFilterName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { contentFiltersEntry 1 } - -contentFilterHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { contentFiltersEntry 2 } - -contentFilterHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { contentFiltersEntry 3 } - -contentFilterHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { contentFiltersEntry 4 } - -saclStatsGroup OBJECT IDENTIFIER - ::= { nsFiltersGroup 3 } - -saclTotPktsBridged OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched a SimpleACL with action BRIDGE and got bridged by NetScaler." - ::= { saclStatsGroup 1 } - -saclTotPktsDenied OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped because they match SimpleACL (Access Control List) with processing mode set to DENY." - ::= { saclStatsGroup 2 } - -saclTotPktsAllowed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched a SimpleACL with action ALLOW and got consumed by NetScaler." - ::= { saclStatsGroup 3 } - -saclTotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a SimpleACL." - ::= { saclStatsGroup 4 } - -saclTotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets not matching any SimpleACL." - ::= { saclStatsGroup 5 } - -saclsCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SimpleACLs configured." - ::= { saclStatsGroup 6 } - -acl6StatsGroup OBJECT IDENTIFIER - ::= { nsFiltersGroup 4 } - -nsAcl6Table OBJECT-TYPE - SYNTAX SEQUENCE OF NsAcl6Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains all the ACLs6 configured" - ::= { acl6StatsGroup 20 } - -nsAcl6Entry OBJECT-TYPE - SYNTAX NsAcl6Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { acAclName } - ::= { nsAcl6Table 1 } - -NsAcl6Entry ::= SEQUENCE { - acAclName OCTET STRING, - acl6Priority Integer32, - acl6perHits Counter64, - acl6FullName OCTET STRING -} - -acAclName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the ACL6" - ::= { nsAcl6Entry 1 } - -acl6Priority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The priority of the ACL6" - ::= { nsAcl6Entry 2 } - -acl6perHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the acl6 was hit" - ::= { nsAcl6Entry 3 } - -acl6FullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the ACL6" - ::= { nsAcl6Entry 4 } - -acl6TotPktsBridged OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a bridge IPv6 ACL, which is in transparent mode and bypasses service processing." - ::= { acl6StatsGroup 21 } - -acl6TotPktsDenied OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped because they match IPv6 ACLs with processing mode set to DENY." - ::= { acl6StatsGroup 22 } - -acl6TotPktsAllowed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching IPv6 ACLs with processing mode set to ALLOW. NetScaler processes these packets." - ::= { acl6StatsGroup 23 } - -acl6TotPktsNAT OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a NAT ACL6, resulting in a NAT session." - ::= { acl6StatsGroup 24 } - -acl6TotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching an IPv6 ACL." - ::= { acl6StatsGroup 25 } - -acl6TotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets not matching any IPv6 ACL." - ::= { acl6StatsGroup 26 } - -acl6TotPktsNAT64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a NAT64 ACL6, resulting in a NAT64 translation." - ::= { acl6StatsGroup 27 } - -acl6TotCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of ACL6 rules configured." - ::= { acl6StatsGroup 28 } - -pbrStatsGroup OBJECT IDENTIFIER - ::= { nsFiltersGroup 5 } - -nsPbrTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsPbrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains all the PBRs configured" - ::= { pbrStatsGroup 20 } - -nsPbrEntry OBJECT-TYPE - SYNTAX NsPbrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { pbrName } - ::= { nsPbrTable 1 } - -NsPbrEntry ::= SEQUENCE { - pbrName OCTET STRING, - pbrFullName OCTET STRING, - pbrPriority Integer32, - pbrperHits Counter64 -} - -pbrName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the PBR" - ::= { nsPbrEntry 1 } - -pbrFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Full name of the PBR" - ::= { nsPbrEntry 2 } - -pbrPriority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The priority of the PBR" - ::= { nsPbrEntry 3 } - -pbrperHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the pbr was hit" - ::= { nsPbrEntry 4 } - -pbrTotPktsAllowed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched the PBR (Policy-Based Routes) with action ALLOW " - ::= { pbrStatsGroup 21 } - -pbrTotPktsDenied OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched the PBR with action DENY " - ::= { pbrStatsGroup 22 } - -pbrTotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched one of the configured PBR" - ::= { pbrStatsGroup 23 } - -pbrTotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that did not match any PBR" - ::= { pbrStatsGroup 24 } - -pbrTotNullDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that are dropped due to null nexthop" - ::= { pbrStatsGroup 25 } - -sacl6StatsGroup OBJECT IDENTIFIER - ::= { nsFiltersGroup 6 } - -sacl6TotPktsBridged OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched a SimpleACL6 with action BRIDGE and got bridged by NetScaler." - ::= { sacl6StatsGroup 1 } - -sacl6TotPktsDenied OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped because they match SimpleACL6 with processing mode set to DENY." - ::= { sacl6StatsGroup 2 } - -sacl6TotPktsAllowed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched a SimpleACL6 with action ALLOW and got consumed by NetScaler." - ::= { sacl6StatsGroup 3 } - -sacl6TotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets matching a SimpleACL6." - ::= { sacl6StatsGroup 4 } - -sacl6TotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets not matching any SimpleACL6." - ::= { sacl6StatsGroup 5 } - -sacl6sCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SimpleACL6s configured." - ::= { sacl6StatsGroup 6 } - -pbr6StatsGroup OBJECT IDENTIFIER - ::= { nsFiltersGroup 7 } - -nsPbr6Table OBJECT-TYPE - SYNTAX SEQUENCE OF NsPbr6Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains all the PBRs configured" - ::= { pbr6StatsGroup 20 } - -nsPbr6Entry OBJECT-TYPE - SYNTAX NsPbr6Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { acPbrName } - ::= { nsPbr6Table 1 } - -NsPbr6Entry ::= SEQUENCE { - acPbrName OCTET STRING, - pbr6FullName OCTET STRING, - pbr6Priority Integer32, - pbr6perHits Counter64 -} - -acPbrName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the PBR6" - ::= { nsPbr6Entry 1 } - -pbr6FullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the PBR6" - ::= { nsPbr6Entry 2 } - -pbr6Priority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The priority of the PBR6" - ::= { nsPbr6Entry 3 } - -pbr6perHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the pbr6 was hit" - ::= { nsPbr6Entry 4 } - -pbr6TotPktsAllowed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched the PBR6 with action ALLOW " - ::= { pbr6StatsGroup 21 } - -pbr6TotPktsDenied OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched PBR6 with action DENY " - ::= { pbr6StatsGroup 22 } - -pbr6TotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that matched one of the configured PBR6" - ::= { pbr6StatsGroup 23 } - -pbr6TotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that did not match any PBR6" - ::= { pbr6StatsGroup 24 } - -pbr6TotNullDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total packets that are dropped due to null next hop" - ::= { pbr6StatsGroup 25 } - -nsHighAvailabilityGroup OBJECT IDENTIFIER - ::= { nsSysGroup 23 } - -haPeerId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The unique identifier to represent the failover peer NetScaler" - ::= { nsHighAvailabilityGroup 1 } - -haPeerIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the ipaddress of the failover peer NetScaler(Only for HA over IPv4). For HA over IPv6 (as well as IPv4) haPeerInetAddr will contain this information." - ::= { nsHighAvailabilityGroup 2 } - -haPeerState OBJECT-TYPE - SYNTAX HAMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the state of the failover peer NetScaler whether Primary or Secondary" - ::= { nsHighAvailabilityGroup 3 } - -haTotStateTransitions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of master state changes that the NetScaler appliance has made from primary to secondary and vice-versa." - ::= { nsHighAvailabilityGroup 4 } - -haTimeofLastStateTransition OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the time since the NetScaler underwent a state change from primary to secondary or vice-versa" - ::= { nsHighAvailabilityGroup 5 } - -haTotStateFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times state changed to PARTIAL_FAIL/PARTIAL_FAIL_SSL/ROUTEMONITOR_FAIL/COMPLETE_FAIL." - ::= { nsHighAvailabilityGroup 6 } - -haErrSyncFailure OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the configuration of the primary and secondary nodes failed to synchronize since that last transition. A synchronization failure results in mismatched configuration. It can be caused by a mismatch in the Remote Procedural Call (RPC) password on the two nodes forming the high availability pair." - ::= { nsHighAvailabilityGroup 7 } - -haErrTotNodeDown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of heart-beats missed while the peer node was DOWN." - ::= { nsHighAvailabilityGroup 8 } - -haErrPropMemFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times memory allocation failed during command propagation." - ::= { nsHighAvailabilityGroup 9 } - -haErrNsbMemFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times memory allocation failed while sending heartbeats." - ::= { nsHighAvailabilityGroup 10 } - -haErrPortSilent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times heartbeat packets were not received on any enabled interface for the duration of the Dead Interval." - ::= { nsHighAvailabilityGroup 11 } - -haTotTimerRecoveries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times HA engine recovered from tight loops. (i.e., Total number of times HA timers are not called for MAX down time)." - ::= { nsHighAvailabilityGroup 12 } - -haErrSwMonitorFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHighAvailabilityGroup 13 } - -haNicsMonitorFailed OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interfaces on which HA heartbeats are not being seen" - ::= { nsHighAvailabilityGroup 14 } - -haLastMasterStateTransitionReason OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The reason for the last master state transition. This gives the conditions under which this node assumed the current state. The current state is available at the oid sysHighAvailabilityMode.0" - ::= { nsHighAvailabilityGroup 15 } - -haPeerSystemState OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "HA peer system state" - ::= { nsHighAvailabilityGroup 16 } - -haErrPropTimeout OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times propagation timed out." - ::= { nsHighAvailabilityGroup 17 } - -haCurDerivedInc OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Derived incarnation based on IOCTLs received." - ::= { nsHighAvailabilityGroup 18 } - -haCurPeerInc OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The peer's incarnation as seen from heartbeats." - ::= { nsHighAvailabilityGroup 19 } - -haErrMasterDispute OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HA master disputes." - ::= { nsHighAvailabilityGroup 20 } - -haTotPktTx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of heartbeat packets sent to the peer node. Heartbeats are sent at regular intervals (default is 200 milliseconds) to determine the state of the peer node." - ::= { nsHighAvailabilityGroup 21 } - -haTotPktRx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of heartbeat packets received from the peer node. Heartbeats are sent at regular intervals (default is 200 milliseconds) to determine the state of the peer node." - ::= { nsHighAvailabilityGroup 22 } - -haCurStatus OBJECT-TYPE - SYNTAX HAON - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether a NetScaler appliance is configured for high availability. Possible values are YES and NO. If the value is NO, the high availability statistics below are invalid." - ::= { nsHighAvailabilityGroup 23 } - -haCurState OBJECT-TYPE - SYNTAX HAState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "State of the HA node, based on its health, in a high availability setup. Possible values are: -UP Indicates that the node is accessible and can function as either a primary or secondary node. -DISABLED Indicates that the high availability status of the node has been manually disabled. Synchronization and propagation cannot take place between the peer nodes. -INIT Indicates that the node is in the process of becoming part of the high availability configuration. -PARTIALFAIL Indicates that one of the high availability monitored interfaces has failed because of a card or link failure. This state triggers a failover. -COMPLETEFAIL Indicates that all the interfaces of the node are unusable, because the interfaces on which high availability monitoring is enabled are not connected or are manually disabled. This state triggers a failover. -DUMB Indicates that the node is in listening mode. It does not participate in high availability transitions or transfer configuration from the peer node. This is a configured value, not a statistic. -PARTIALFAILSSL Indicates that the SSL card has failed. This state triggers a failover. -ROUTEMONITORFAIL Indicates that the route monitor has failed. This state triggers a failover." - ::= { nsHighAvailabilityGroup 24 } - -haPeerInetAddrType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of haPeerInetAddr" - ::= { nsHighAvailabilityGroup 25 } - -haPeerInetAddr OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the Internet Address of the failover peer NetScaler" - ::= { nsHighAvailabilityGroup 26 } - -haNicMonitorSucceeded OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "Heartbeat succeeded on this nic." - ::= { nsHighAvailabilityGroup 27 } - -haLastNicMonitorFailed OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "Heartbeat failed on this nic." - ::= { nsHighAvailabilityGroup 28 } - -vlanTable OBJECT-TYPE - SYNTAX SEQUENCE OF VlanEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vlan related statistics Table." - ::= { nsSysGroup 24 } - -vlanEntry OBJECT-TYPE - SYNTAX VlanEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vlanId } - ::= { vlanTable 1 } - -VlanEntry ::= SEQUENCE { - vlanId Integer32, - vlanMemberInterfaces OCTET STRING, - vlanTaggedInterfaces OCTET STRING, - vlanTotRxPktsLow Counter32, - vlanTotRxPktsHigh Counter32, - vlanTotRxBytesLow Counter32, - vlanTotRxBytesHigh Counter32, - vlanTotTxPktsLow Counter32, - vlanTotTxPktsHigh Counter32, - vlanTotTxBytesLow Counter32, - vlanTotTxBytesHigh Counter32, - vlanTotDroppedPktsLow Counter32, - vlanTotDroppedPktsHigh Counter32, - vlanTotBroadcastPktsLow Counter32, - vlanTotBroadcastPktsHigh Counter32, - vlanTotRxPkts Counter64, - vlanTotRxBytes Counter64, - vlanTotTxPkts Counter64, - vlanTotTxBytes Counter64, - vlanTotDroppedPkts Counter64, - vlanTotBroadcastPkts Counter64, - vlanBindIpAddress IpAddress, - vlanBindIpNetmask IpAddress, - vlanBridgeGroup Integer32, - vlanAliasName OCTET STRING -} - -vlanId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the unique id of the vlan" - ::= { vlanEntry 1 } - -vlanMemberInterfaces OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the list of interfaces on the NetScaler that are members of the vlan " - ::= { vlanEntry 2 } - -vlanTaggedInterfaces OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the list of interfaces on the NetScaler that are members of the vlan that carry tagged packets" - ::= { vlanEntry 3 } - -vlanTotRxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 4 } - -vlanTotRxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 5 } - -vlanTotRxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 6 } - -vlanTotRxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 7 } - -vlanTotTxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 8 } - -vlanTotTxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 9 } - -vlanTotTxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 10 } - -vlanTotTxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 11 } - -vlanTotDroppedPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 12 } - -vlanTotDroppedPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 13 } - -vlanTotBroadcastPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 14 } - -vlanTotBroadcastPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 15 } - -vlanTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received on the VLAN." - ::= { vlanEntry 16 } - -vlanTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of data received on the VLAN." - ::= { vlanEntry 17 } - -vlanTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets transmitted on the VLAN." - ::= { vlanEntry 18 } - -vlanTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of data transmitted on the VLAN." - ::= { vlanEntry 19 } - -vlanTotDroppedPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Inbound packets dropped by the VLAN upon reception." - ::= { vlanEntry 20 } - -vlanTotBroadcastPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Broadcast packets sent and received on the VLAN." - ::= { vlanEntry 21 } - -vlanBindIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 22 } - -vlanBindIpNetmask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vlanEntry 23 } - -vlanBridgeGroup OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the bridge group to which this vlan is bound." - ::= { vlanEntry 24 } - -vlanAliasName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is vlan alias name if configured" - ::= { vlanEntry 25 } - -nsIpAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsIpAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about the IP addresses configured on the NetScaler." - ::= { nsSysGroup 26 } - -nsIpAddrEntry OBJECT-TYPE - SYNTAX NsIpAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { ipAddr } - ::= { nsIpAddrTable 1 } - -NsIpAddrEntry ::= SEQUENCE { - ipAddr IpAddress, - ipNetmask IpAddress, - ipType IpAddressType, - ipMode IpAddressMode, - ipFreePorts Gauge32, - ipVlan OCTET STRING, - ipBridgeGroup OCTET STRING, - ipVxlan OCTET STRING -} - -ipAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents an IP address configured on the NetScaler" - ::= { nsIpAddrEntry 1 } - -ipNetmask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the Netmask" - ::= { nsIpAddrEntry 2 } - -ipType OBJECT-TYPE - SYNTAX IpAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address type" - ::= { nsIpAddrEntry 3 } - -ipMode OBJECT-TYPE - SYNTAX IpAddressMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address mode" - ::= { nsIpAddrEntry 4 } - -ipFreePorts OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the number of unused ports free on this IP" - ::= { nsIpAddrEntry 5 } - -ipVlan OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vlan to which this ip address is bound." - ::= { nsIpAddrEntry 6 } - -ipBridgeGroup OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The bridge group to which this ip address is bound." - ::= { nsIpAddrEntry 7 } - -ipVxlan OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vxlan to which this ip address is bound." - ::= { nsIpAddrEntry 8 } - -nsResourceGroup OBJECT IDENTIFIER - ::= { nsSysGroup 41 } - -resCpuUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "CPU utilization percentage." - ::= { nsResourceGroup 1 } - -resMemUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of memory utilization on NetScaler." - ::= { nsResourceGroup 2 } - -numCPUs OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of active CPUs." - ::= { nsResourceGroup 3 } - -memSizeMB OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total amount of system memory, in megabytes." - ::= { nsResourceGroup 4 } - -numSSLCards OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL Cards on the system" - ::= { nsResourceGroup 5 } - -nsCPUTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsCPUEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about each CPU in NetScaler." - ::= { nsResourceGroup 6 } - -nsCPUEntry OBJECT-TYPE - SYNTAX NsCPUEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { nsCPUname } - ::= { nsCPUTable 1 } - -NsCPUEntry ::= SEQUENCE { - nsCPUname OCTET STRING, - nsCPUusage Gauge32 -} - -nsCPUname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the CPU." - ::= { nsCPUEntry 1 } - -nsCPUusage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "CPU utilization percentage." - ::= { nsCPUEntry 2 } - -nsSysHealthTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsSysHealthEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about the System Health status of the NetScaler." - ::= { nsResourceGroup 7 } - -nsSysHealthEntry OBJECT-TYPE - SYNTAX NsSysHealthEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { sysHealthCounterName } - ::= { nsSysHealthTable 1 } - -NsSysHealthEntry ::= SEQUENCE { - sysHealthCounterName OCTET STRING, - sysHealthCounterValue Integer32 -} - -sysHealthCounterName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the health counter name. The counter name is composed with the type of the counter and what it is intended to carry. All voltage counters stats with 'v', fan counters starts with 'fan' and temperature counters starts with 't'. Eg:'v50p' is a voltage counter that carries the value of the +5v counter." - ::= { nsSysHealthEntry 1 } - -sysHealthCounterValue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The health counters value. The units are 'mv', RPM and degrees Celsius for voltage, fan and temperatures respectively." - ::= { nsSysHealthEntry 2 } - -nsSysHealthDiskTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsSysHealthDiskEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about the disk space of the NetScaler." - ::= { nsResourceGroup 8 } - -nsSysHealthDiskEntry OBJECT-TYPE - SYNTAX NsSysHealthDiskEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { sysHealthDiskName } - ::= { nsSysHealthDiskTable 1 } - -NsSysHealthDiskEntry ::= SEQUENCE { - sysHealthDiskName OCTET STRING, - sysHealthDiskSize Gauge32, - sysHealthDiskAvail Gauge32, - sysHealthDiskUsed Gauge32, - sysHealthDiskPerusage Gauge32 -} - -sysHealthDiskName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The disk name. Disk name always starts with the 'disk' keyword. Eg: disk0, disk1. Currently disk0 is mapped to /flash and disk1 mapped to /var partitions." - ::= { nsSysHealthDiskEntry 1 } - -sysHealthDiskSize OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total disk space in MBytes (includes available and used spaces also)." - ::= { nsSysHealthDiskEntry 2 } - -sysHealthDiskAvail OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total disk space available in MBytes." - ::= { nsSysHealthDiskEntry 3 } - -sysHealthDiskUsed OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total disk space used in MBytes." - ::= { nsSysHealthDiskEntry 4 } - -sysHealthDiskPerusage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Percentage of the disk space used." - ::= { nsSysHealthDiskEntry 5 } - -cpuSpeedMHz OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "CPU speed in MHz." - ::= { nsResourceGroup 15 } - -numPEs OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Netscaler number of PEs running" - ::= { nsResourceGroup 16 } - -sysStatisticsTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This gives the timestamp of the statistics returned by SNMP counter values. This can be used for calculating the rate of increments for Counter and Counter64 type of OIDs." - ::= { nsResourceGroup 17 } - -nsIpStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 43 } - -ipTotRxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 1 } - -ipTotRxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 2 } - -ipTotRxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 3 } - -ipTotRxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 4 } - -ipTotRxMbitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 5 } - -ipTotRxMbitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 6 } - -ipTotTxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 7 } - -ipTotTxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 8 } - -ipTotTxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 9 } - -ipTotTxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 10 } - -ipTotTxMbitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 11 } - -ipTotTxMbitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 12 } - -ipTotFragmentsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 13 } - -ipTotFragmentsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 14 } - -ipTotBadlensLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 15 } - -ipTotBadlensHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 16 } - -ipTotBadMacAddrsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 17 } - -ipTotBadMacAddrsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 18 } - -ipTotMaxClientsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 19 } - -ipTotMaxClientsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 20 } - -ipTotUnknownSvcsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 21 } - -ipTotUnknownSvcsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 22 } - -ipTotLandattacksLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 23 } - -ipTotLandattacksHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIpStatsGroup 24 } - -ipTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP packets received." - ::= { nsIpStatsGroup 25 } - -ipTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of IP data received." - ::= { nsIpStatsGroup 26 } - -ipTotRxMbits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Megabits of IP data received." - ::= { nsIpStatsGroup 27 } - -ipTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP packets transmitted." - ::= { nsIpStatsGroup 28 } - -ipTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of IP data transmitted." - ::= { nsIpStatsGroup 29 } - -ipTotTxMbits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Megabits of IP data transmitted." - ::= { nsIpStatsGroup 30 } - -ipTotFragments OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP fragments received." - ::= { nsIpStatsGroup 31 } - -ipTotBadlens OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received with a length greater than the normal maximum transmission unit of 1514 bytes." - ::= { nsIpStatsGroup 32 } - -ipTotBadMacAddrs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP packets transmitted with a bad MAC address." - ::= { nsIpStatsGroup 33 } - -ipTotMaxClients OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Attempts to open a new connection to a service for which the maximum limit has been exceeded. Default value, 0, applies no limit." - ::= { nsIpStatsGroup 34 } - -ipTotUnknownSvcs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received on a port or service that is not configured." - ::= { nsIpStatsGroup 35 } - -ipTotLandattacks OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Land-attack packets received. The source and destination addresses are the same." - ::= { nsIpStatsGroup 36 } - -ipTotBadChecksums OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received with an IP checksum error." - ::= { nsIpStatsGroup 37 } - -ipTotReassemblyAttempt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP packets that the NetScaler attempts to reassemble. If one of the fragments is missing, the whole packet is dropped." - ::= { nsIpStatsGroup 38 } - -ipTotSuccReassembly OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Fragmented IP packets successfully reassembled on the NetScaler." - ::= { nsIpStatsGroup 39 } - -ipTotUnsuccReassembly OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received that could not be reassembled. This can occur when there is a checksum failure, an identification field mismatch, or when one of the fragments is missing." - ::= { nsIpStatsGroup 40 } - -ipTotTooBig OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received for which the reassembled data exceeds the Ethernet packet data length of 1500 bytes." - ::= { nsIpStatsGroup 41 } - -ipTotZeroFragmentLen OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received with a fragment length of 0 bytes." - ::= { nsIpStatsGroup 42 } - -ipTotDupFragments OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Duplicate IP fragments received. This can occur when the acknowledgement was not received within the expected time." - ::= { nsIpStatsGroup 43 } - -ipTotOutOfOrderFrag OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Fragments received that are out of order." - ::= { nsIpStatsGroup 44 } - -ipTotUnknownDstRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received in which the destination IP address was not reachable or not owned by the NetScaler." - ::= { nsIpStatsGroup 45 } - -ipTotBadTransport OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received in which the protocol specified in the IP header is unknown to the NetScaler." - ::= { nsIpStatsGroup 46 } - -ipTotVIPDown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received for which the VIP is down. This can occur when all the services bound to the VIP are down or the VIP is manually disabled." - ::= { nsIpStatsGroup 47 } - -ipTotFixHeaderFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received that contain an error in one or more components of the IP header." - ::= { nsIpStatsGroup 48 } - -ipTotAddrLookup OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address lookups performed by the NetScaler. When a packet is received on a non-established session, the NetScaler checks if the destination IP address is one of the NetScaler owned IP addresses." - ::= { nsIpStatsGroup 49 } - -ipTotAddrLookupFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address lookups performed by the NetScaler that have failed because the destination IP address of the packet does not match any of the NetScaler owned IP addresses." - ::= { nsIpStatsGroup 50 } - -ipTotUDPfragmentsFwd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "UDP fragments forwarded to the client or the server." - ::= { nsIpStatsGroup 51 } - -ipTotTCPfragmentsFwd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP fragments forwarded to the client or the server." - ::= { nsIpStatsGroup 52 } - -ipTotFragPktsGen OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Fragmented packets created by the NetScaler." - ::= { nsIpStatsGroup 53 } - -ipTotInvalidHeaderSz OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received in which an invalid data length is specified, or the value in the length field and the actual data length do not match. The range for the Ethernet packet data length is 0-1500 bytes." - ::= { nsIpStatsGroup 54 } - -ipTotInvalidPacketSize OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets received by NetScaler with invalid IP packet size." - ::= { nsIpStatsGroup 55 } - -ipTotTruncatedPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Truncated IP packets received. An overflow in the routers along the path can truncate IP packets." - ::= { nsIpStatsGroup 56 } - -ipTotZeroNextHop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received that contain a 0 value in the next hop field. These packets are dropped." - ::= { nsIpStatsGroup 57 } - -ipTotTtlExpired OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets for which the time-to-live (TTL) expired during transit. These packets are dropped." - ::= { nsIpStatsGroup 58 } - -nonIpTotTruncatedPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Truncated non-IP packets received." - ::= { nsIpStatsGroup 59 } - -nsIcmpStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 44 } - -icmpTotRxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 1 } - -icmpTotRxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 2 } - -icmpTotRxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 3 } - -icmpTotRxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 4 } - -icmpTotTxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 5 } - -icmpTotTxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 6 } - -icmpTotTxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 7 } - -icmpTotTxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 8 } - -icmpTotRxEchoReplyLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 9 } - -icmpTotRxEchoReplyHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 10 } - -icmpTotTxEchoReplyLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 11 } - -icmpTotTxEchoReplyHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 12 } - -icmpTotRxEchoLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 13 } - -icmpTotRxEchoHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 14 } - -icmpTotPktsDroppedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 15 } - -icmpTotPktsDroppedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 16 } - -icmpCurRateThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Limit for ICMP packets handled every 10 milliseconds. Default value, 0, applies no limit. -This is a configurable value using the set rateControl command. - " - ::= { nsIcmpStatsGroup 17 } - -icmpCurRateThresholdInterval OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 18 } - -icmpCurRateCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 19 } - -icmpTotThresholdExceedsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 20 } - -icmpTotThresholdExceedsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsIcmpStatsGroup 21 } - -icmpTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP packets received." - ::= { nsIcmpStatsGroup 22 } - -icmpTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of ICMP data received." - ::= { nsIcmpStatsGroup 23 } - -icmpTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP packets transmitted." - ::= { nsIcmpStatsGroup 24 } - -icmpTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of ICMP data transmitted." - ::= { nsIcmpStatsGroup 25 } - -icmpTotRxEchoReply OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Ping echo replies received." - ::= { nsIcmpStatsGroup 26 } - -icmpTotTxEchoReply OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Ping echo replies transmitted." - ::= { nsIcmpStatsGroup 27 } - -icmpTotRxEcho OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Ping Echo Request and Echo Reply packets received." - ::= { nsIcmpStatsGroup 28 } - -icmpTotPktsDropped OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP packets dropped because the rate threshold has been exceeded." - ::= { nsIcmpStatsGroup 29 } - -icmpTotThresholdExceeds OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Times the ICMP rate threshold is exceeded. If this counter continuously increases, first make sure the ICMP packets received are genuine. If they are, increase the current rate threshold." - ::= { nsIcmpStatsGroup 30 } - -icmpTotPortUnreachableRx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Port Unreachable error messages received. This error is generated when there is no service is running on the port." - ::= { nsIcmpStatsGroup 31 } - -icmpTotPortUnreachableTx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Port Unreachable error messages generated. This error is generated when there is no service is running on the port." - ::= { nsIcmpStatsGroup 32 } - -icmpTotBadChecksum OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received with an ICMP checksum error." - ::= { nsIcmpStatsGroup 33 } - -icmpTotNeedFragRx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received for packets that need to be fragmented but for which Don't Fragment is specified the header." - ::= { nsIcmpStatsGroup 34 } - -icmpTotNonFirstIpFrag OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received that were generated by an IP fragment other than the first one." - ::= { nsIcmpStatsGroup 35 } - -icmpTotInvalidBodyLen OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received that specified an invalid body length." - ::= { nsIcmpStatsGroup 36 } - -icmpTotNoTcpConn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Need Fragmentation error messages received for TCP packets. The state of the connection for these packets is not maintained on the NetScaler." - ::= { nsIcmpStatsGroup 37 } - -icmpTotNoUdpConn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Need Fragmentation error messages received for UDP packets. The state of the connection for these packets is not maintained on the NetScaler." - ::= { nsIcmpStatsGroup 38 } - -icmpTotInvalidTcpSeqno OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received for packets that contain an invalid TCP address." - ::= { nsIcmpStatsGroup 39 } - -icmpTotInvalidNextMTUval OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received in which the Maximum Transmission Unit (MTU) for the next hop is out of range. The range for the MTU is 576-1500." - ::= { nsIcmpStatsGroup 40 } - -icmpTotDstIpLookup OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of MTU lookup on destination IP info received on a need fragmentation ICMP error message failed." - ::= { nsIcmpStatsGroup 41 } - -icmpTotBigNextMTU OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received in which the value for the next MTU is higher than that of the current MTU." - ::= { nsIcmpStatsGroup 42 } - -icmpTotInvalidProtocol OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received that contain a protocol other than TCP and UDP." - ::= { nsIcmpStatsGroup 43 } - -icmpTotBadPMTUIpChecksum OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received with an IP checksum error." - ::= { nsIcmpStatsGroup 44 } - -icmpTotPMTUnoLink OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Fragmentation Needed error messages received on a Protocol Control Block (PCB) with no link. The PCB maintains the state of the connection." - ::= { nsIcmpStatsGroup 45 } - -icmpTotPMTUDiscoveryDisabled OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP Need Fragmentation error messages received when the PMTU Discovery mode is not enabled." - ::= { nsIcmpStatsGroup 46 } - -nsUdpStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 45 } - -udpTotUnknownSvcPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 1 } - -udpTotUnknownSvcPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 2 } - -udpTotRxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 3 } - -udpTotRxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 4 } - -udpTotRxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 5 } - -udpTotRxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 6 } - -udpTotTxPktsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 7 } - -udpTotTxPktsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 8 } - -udpTotTxBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 9 } - -udpTotTxBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 10 } - -udpCurRateThreshold OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Limit for UDP packets handled every 10 milliseconds. Default value, 0, applies no limit. -This is a configurable value using the set rateControl command. - " - ::= { nsUdpStatsGroup 11 } - -udpRateInterval OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 12 } - -udpCurRateCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 13 } - -udpCurRateThresholdExceedsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 14 } - -udpCurRateThresholdExceedsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsUdpStatsGroup 15 } - -udpTotUnknownSvcPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Stray UDP packets dropped due to no configured listening service." - ::= { nsUdpStatsGroup 16 } - -udpTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of UDP packets received." - ::= { nsUdpStatsGroup 17 } - -udpTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of UDP data received in bytes." - ::= { nsUdpStatsGroup 18 } - -udpTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of UDP packets transmitted." - ::= { nsUdpStatsGroup 19 } - -udpTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of UDP data transmitted in bytes." - ::= { nsUdpStatsGroup 20 } - -udpCurRateThresholdExceeds OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the UDP rate threshold is exceeded. If this counter continuously increases, first make sure the UDP packets received are genuine. - If they are, increase the current rate threshold. This is a configurable value using the set rateControl command. - " - ::= { nsUdpStatsGroup 21 } - -udpBadChecksum OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received with a UDP checksum error." - ::= { nsUdpStatsGroup 22 } - -nsTcpStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 46 } - -tcpCurServerConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server connections, including connections in the Opening, Established, and Closing state." - ::= { nsTcpStatsGroup 1 } - -tcpCurClientConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client connections, including connections in the Opening, Established, and Closing state." - ::= { nsTcpStatsGroup 2 } - -tcpCurPendingConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsTcpStatsGroup 3 } - -tcpCurResetCount OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsTcpStatsGroup 4 } - -tcpMaxServerConnections OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsTcpStatsGroup 5 } - -tcpMaxReqsperConn OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsTcpStatsGroup 6 } - -tcpMaxPerSrvrReusePool OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsTcpStatsGroup 7 } - -tcpActiveServerConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connections to a server currently responding to requests." - ::= { nsTcpStatsGroup 8 } - -tcpCurClientConnClosing OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client connections in the Closing state, which indicates that the connection termination process has initiated but is not complete." - ::= { nsTcpStatsGroup 9 } - -tcpCurServerConnEstablished OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current server connections in the Established state, which indicates that data transfer can occur between the NetScaler and the server." - ::= { nsTcpStatsGroup 10 } - -tcpCurClientConnOpening OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client connections in the Opening state, which indicates that the handshakes are not yet complete." - ::= { nsTcpStatsGroup 11 } - -tcpCurClientConnEstablished OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current client connections in the Established state, which indicates that data transfer can occur between the NetScaler and the client." - ::= { nsTcpStatsGroup 12 } - -tcpCurServerConnClosing OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server connections in the Closing state, which indicates that the connection termination process has initiated but is not complete." - ::= { nsTcpStatsGroup 13 } - -tcpSpareConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Spare connections available. To save time and resources in establishing another connection for a new client, the connection on the server is not closed after completing the request from the first client and is available for serving future requests." - ::= { nsTcpStatsGroup 14 } - -tcpSurgeQueueLen OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connections in the surge queue. When the NetScaler cannot open a connection to the server, for example when maximum connections have been reached, the NetScaler queues these requests." - ::= { nsTcpStatsGroup 15 } - -tcpCurServerConnOpening OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server connections in the Opening state, which indicates that the handshakes are not yet complete." - ::= { nsTcpStatsGroup 16 } - -tcpTotServerConnOpened OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server connections initiated by the NetScaler since startup. This counter is reset when the NetScaler is restarted." - ::= { nsTcpStatsGroup 17 } - -tcpTotServerConnClosed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of closed server connections" - ::= { nsTcpStatsGroup 18 } - -tcpTotClientConnOpened OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client connections opened by the NetScaler since startup (after three-way handshake). This counter is reset when the NetScaler is restarted." - ::= { nsTcpStatsGroup 19 } - -tcpTotClientConnClosed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of closed client connections" - ::= { nsTcpStatsGroup 20 } - -tcpTotSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets received" - ::= { nsTcpStatsGroup 21 } - -tcpTotSynProbe OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Probes from the NetScaler to a server. The NetScaler sends a SYN packet to the server to check its availability and expects a SYN_ACK packet from the server before a specified response timeout." - ::= { nsTcpStatsGroup 22 } - -tcpTotSvrFin OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "FIN packets received from the server." - ::= { nsTcpStatsGroup 23 } - -tcpTotCltFin OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "FIN packets received from the clients." - ::= { nsTcpStatsGroup 24 } - -tcpWaitToSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets (packets used to initiate a TCP connection) received on connections that are in the TIME_WAIT state. Packets cannot be transferred on a connection in this state." - ::= { nsTcpStatsGroup 25 } - -tcpTotZombieCltConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client connections that are flushed because the client has been idle for some time." - ::= { nsTcpStatsGroup 26 } - -tcpTotZombieSvrConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server connections that are flushed because there have been no client requests in the queue for some time." - ::= { nsTcpStatsGroup 27 } - -tcpTotZombieHalfOpenCltConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Half-opened client connections that are flushed because the three-way handshakes are not complete." - ::= { nsTcpStatsGroup 28 } - -tcpTotZombieHalfOpenSvrConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Half-opened server connections that are flushed because the three-way handshakes are not complete." - ::= { nsTcpStatsGroup 29 } - -tcpTotZombieActiveHalfCloseCltConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Active half-closed client connections that are flushed because the client has closed the connection and there has been no activity on the connection." - ::= { nsTcpStatsGroup 30 } - -tcpTotZombieActiveHalfCloseSvrConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Active half-closed server connections that are flushed because the server has closed the connection and there has been no activity on the connection." - ::= { nsTcpStatsGroup 31 } - -tcpTotZombiePassiveHalfCloseCltConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Passive half-closed client connections that are flushed because the NetScaler has closed the connection and there has been no activity on the connection." - ::= { nsTcpStatsGroup 32 } - -tcpTotZombiePassiveHalfCloseSrvConnFlushed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Passive half-closed server connections that are flushed because the NetScaler has closed the connection and there has been no activity on the connection." - ::= { nsTcpStatsGroup 33 } - -tcpErrBadCheckSum OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received with a TCP checksum error." - ::= { nsTcpStatsGroup 34 } - -tcpErrSynInSynRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets received on a connection that is in the SYN_RCVD state. A connection goes into the SYN_RCVD state after receiving a SYN packet." - ::= { nsTcpStatsGroup 35 } - -tcpErrSynInEst OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets received on a connection that is in the ESTABLISHED state. A SYN packet is not expected on an ESTABLISHED connection." - ::= { nsTcpStatsGroup 36 } - -tcpErrSynGiveUp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Attempts to establish a connection on the NetScaler that timed out." - ::= { nsTcpStatsGroup 37 } - -tcpErrSynSentBadAck OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Incorrect ACK packets received on a connection that is in the SYN_SENT state. An incorrect ACK packet is the third packet in the three-way handshake that has an incorrect sequence number." - ::= { nsTcpStatsGroup 38 } - -tcpErrSynRetry OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets resent to a server." - ::= { nsTcpStatsGroup 39 } - -tcpErrFinRetry OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "FIN packets resent to a server or a client." - ::= { nsTcpStatsGroup 40 } - -tcpErrFinGiveUp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connections that were timed out by the NetScaler because of not receiving the ACK packet after retransmitting the FIN packet four times." - ::= { nsTcpStatsGroup 41 } - -tcpErrFinDup OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of duplicate FIN packets recieved" - ::= { nsTcpStatsGroup 42 } - -tcpErrRst OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reset packets received from a client or a server." - ::= { nsTcpStatsGroup 43 } - -tcpErrRstNonEst OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reset packets received on a connection that is not in the ESTABLISHED state." - ::= { nsTcpStatsGroup 44 } - -tcpErrRstOutOfWindow OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reset packets received on a connection that is out of the current TCP window." - ::= { nsTcpStatsGroup 45 } - -tcpErrRstInTimewait OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reset packets received on a connection that is in the TIME_WAIT state. Packets cannot be transferred on a connection in the TIME_WAIT state." - ::= { nsTcpStatsGroup 46 } - -tcpErrSvrRetrasmit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted by a server. This usually occurs because the acknowledgement from the NetScaler has not reached the server." - ::= { nsTcpStatsGroup 47 } - -tcpErrCltRetrasmit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted by a client. This usually occurs because the acknowledgement from the NetScaler has not reached the client." - ::= { nsTcpStatsGroup 48 } - -tcpErrFullRetrasmit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Full packets retransmitted by the client or the server." - ::= { nsTcpStatsGroup 49 } - -tcpErrPartialRetrasmit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Partial packet retransmits by a client or server due to congestion on the connection. This usually occurs because the window advertised by the NetScaler is not big enough to hold the full packet." - ::= { nsTcpStatsGroup 50 } - -tcpErrSvrOutOfOrder OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Out of order TCP packets received from a server. " - ::= { nsTcpStatsGroup 51 } - -tcpErrCltOutOfOrder OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Out of order TCP packets received from a client." - ::= { nsTcpStatsGroup 52 } - -tcpErrCltHole OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP holes created on a client connection. When out of order packets are received from a client, a hole is created on the NetScaler for each group of missing packets." - ::= { nsTcpStatsGroup 53 } - -tcpErrSvrHole OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP holes created on a server connection. When out of order packets are received from a server, a hole is created on the NetScaler for each group of missing packets." - ::= { nsTcpStatsGroup 54 } - -tcpErrCookiePktSeqReject OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN cookie packets rejected because they contain an incorrect sequence number." - ::= { nsTcpStatsGroup 55 } - -tcpErrCookiePktSigReject OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN cookie packets rejected because they contain an incorrect signature." - ::= { nsTcpStatsGroup 56 } - -tcpErrCookiePktSeqDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN cookie packets dropped because the sequence number specified in the packets is outside the current window." - ::= { nsTcpStatsGroup 57 } - -tcpErrCookiePktMssReject OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN cookie packets rejected because the maximum segment size (MSS) specified in the packets is incorrect." - ::= { nsTcpStatsGroup 58 } - -tcpErrRetransmit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP packets retransmitted. The NetScaler attempts to retransmit the packet up to seven times, after which it resets the other half of the TCP connection." - ::= { nsTcpStatsGroup 59 } - -tcpErrRetransmitGiveUp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times NetScaler terminates a connection after retransmitting the packet seven times on that connection.Retrasnmission happens when recieving end doesn't acknowledges the packet." - ::= { nsTcpStatsGroup 60 } - -tcpTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP packets received." - ::= { nsTcpStatsGroup 61 } - -tcpTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of TCP data received." - ::= { nsTcpStatsGroup 62 } - -tcpTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP packets transmitted." - ::= { nsTcpStatsGroup 63 } - -tcpTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of TCP data transmitted." - ::= { nsTcpStatsGroup 64 } - -pcbTotZombieCall OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Times the Zombie cleanup function is called. Every time a connection is flushed, it is marked for cleanup. The Zombie cleanup function clears all these connections at predefined intervals." - ::= { nsTcpStatsGroup 65 } - -tcpTotSynHeld OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets held on the NetScaler that are waiting for a server connection." - ::= { nsTcpStatsGroup 66 } - -tcpTotSynFlush OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets flushed on the NetScaler because of no response from the server for three or more seconds." - ::= { nsTcpStatsGroup 67 } - -tcpTotFinWaitClosed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connections closed on the NetScaler because the number of connections in the TIME_WAIT state has exceeded the default value of 7000." - ::= { nsTcpStatsGroup 68 } - -tcpErrAnyPortFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port allocations that have failed on a mapped IP address because the maximum limit of 65536 has been exceeded." - ::= { nsTcpStatsGroup 69 } - -tcpErrIpPortFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port allocations that have failed on a subnet IP address or vserver IP address because the maximum limit of 65536 has been exceeded." - ::= { nsTcpStatsGroup 70 } - -tcpErrSentRst OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reset packets sent to a client or a server." - ::= { nsTcpStatsGroup 71 } - -tcpErrBadStateConn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connections that are not in a valid TCP state." - ::= { nsTcpStatsGroup 72 } - -tcpErrFastRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP packets on which the NetScaler performs a fast retransmission in response to three duplicate acknowledgements or a partial acknowledgement. The NetScaler assumes that the packet is lost and retransmits the packet before its time-out." - ::= { nsTcpStatsGroup 73 } - -tcpErrFirstRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted once by the NetScaler." - ::= { nsTcpStatsGroup 74 } - -tcpErrSecondRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted twice by the NetScaler." - ::= { nsTcpStatsGroup 75 } - -tcpErrThirdRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted three times by the NetScaler." - ::= { nsTcpStatsGroup 76 } - -tcpErrForthRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted four times by the NetScaler." - ::= { nsTcpStatsGroup 77 } - -tcpErrFifthRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted five times by the NetScaler." - ::= { nsTcpStatsGroup 78 } - -tcpErrSixthRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted six times by the NetScaler." - ::= { nsTcpStatsGroup 79 } - -tcpErrSeventhRetransmissions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets retransmitted seven times by the NetScaler. If this fails, the NetScaler terminates the connection." - ::= { nsTcpStatsGroup 80 } - -tcpErrDataAfterFin OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received following a connection termination request. This error is usually caused by a reordering of packets during transmission." - ::= { nsTcpStatsGroup 81 } - -tcpErrRstThreshold OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reset packets dropped because the default threshold of 100 resets per 10 milliseconds has been exceeded. This is a configurable value using the set rateControl command." - ::= { nsTcpStatsGroup 82 } - -tcpErrOutOfWindowPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received that are out of the current advertised window." - ::= { nsTcpStatsGroup 83 } - -tcpErrSynDroppedCongestion OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SYN packets dropped because of network congestion." - ::= { nsTcpStatsGroup 84 } - -tcpCurPhysicalServers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of physical servers that Netscaler has open connections with." - ::= { nsTcpStatsGroup 85 } - -tcpReuseHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of client transactions found the server connection in the reuse-pool." - ::= { nsTcpStatsGroup 86 } - -tcpWaitToData OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of data received on connections that are in the TIME_WAIT state. Data cannot be transferred on a connection that is in this state." - ::= { nsTcpStatsGroup 87 } - -tcpErrStrayPkt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of stray or misrouted packets." - ::= { nsTcpStatsGroup 88 } - -tcpTotClientConnOpenRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which connections are opened in the system per second." - ::= { nsTcpStatsGroup 89 } - -tcpCurRateThreshold OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current threshold for TCP rate control. By default, there is no rate control for TCP." - ::= { nsTcpStatsGroup 90 } - -freeConnHalfClosed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of half-closed connections that were freed." - ::= { nsTcpStatsGroup 91 } - -freeConnFlushMarked OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of connections freed that were already marked for flush." - ::= { nsTcpStatsGroup 92 } - -freeConnEstd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of established and active connections freed." - ::= { nsTcpStatsGroup 93 } - -flushThresReached OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times we reached connection flush threshold." - ::= { nsTcpStatsGroup 94 } - -memFailFlushTrigger OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of flushes triggered through memory failure." - ::= { nsTcpStatsGroup 95 } - -mptcpCurMpcapableSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of current mptcp sessions." - ::= { nsTcpStatsGroup 96 } - -mptcpCurSFConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of current mptcp subflow connections." - ::= { nsTcpStatsGroup 97 } - -mptcpCurPendingJoin OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of current mptcp subflow connections in pending state." - ::= { nsTcpStatsGroup 98 } - -mptcpErrInvalCookie OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP invalid cookie received on mp capable final ack." - ::= { nsTcpStatsGroup 99 } - -mptcpErrUnknownToken OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP invalid token received on mp join request." - ::= { nsTcpStatsGroup 100 } - -mptcpErrAddridExist OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Mp join request on existing address id." - ::= { nsTcpStatsGroup 101 } - -mptcpErrMaxSF OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP new mp join request after maximum configured subflows are established." - ::= { nsTcpStatsGroup 102 } - -mptcpErrInvalMAC OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP invalid MAC on mp join final ack." - ::= { nsTcpStatsGroup 103 } - -mptcpErrBadCksum OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP checksum failed. Connection will fallback to regular tcp." - ::= { nsTcpStatsGroup 104 } - -mptcpErrAddrId0 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Mp join request on address id 0." - ::= { nsTcpStatsGroup 105 } - -mptcpErrfastclose OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP FAST CLOSE sent." - ::= { nsTcpStatsGroup 106 } - -mptcpErrJoinThreshold OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Global pending mp join threshold limit is reached, new mp join request will be dropped sending RST" - ::= { nsTcpStatsGroup 107 } - -mptcpErrInvalOpts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP invalid mptcp option is received and is dropped." - ::= { nsTcpStatsGroup 108 } - -mptcpErrInvalRemAddr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP remove address request received on invalid/unknown address id." - ::= { nsTcpStatsGroup 109 } - -mptcpErrVersionNotSupported OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Mp capable request from unsupported mptcp client." - ::= { nsTcpStatsGroup 110 } - -mptcpErrCryptoNotSupported OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP client crypto algorithm not supported." - ::= { nsTcpStatsGroup 111 } - -mptcpErrExtnFlagSet OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Mp capable extension flag is set on mp capable request." - ::= { nsTcpStatsGroup 112 } - -mptcpErrResFlagSet OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP One or more reserved bits are set on mp capable request." - ::= { nsTcpStatsGroup 113 } - -mptcpErrJoinAfterFallback OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP New join request received after fallback to regular tcp." - ::= { nsTcpStatsGroup 114 } - -mptcpErrDataFinpassive OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Data FIN received on passive subflow" - ::= { nsTcpStatsGroup 115 } - -mptcpErrFastClosepassive OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Fast close received on passive subflow." - ::= { nsTcpStatsGroup 116 } - -mptcpErrFastClose OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Fast close received on a subflow." - ::= { nsTcpStatsGroup 117 } - -mptcpErrFastCloseKey OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Fast close received with invalid key and the packet is dropped." - ::= { nsTcpStatsGroup 118 } - -mptcpPlainackFallback OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Fallback to regular tcp on receiving plain ack for DSS." - ::= { nsTcpStatsGroup 119 } - -mptcpPlainackRST OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Sent RST on receiving plain ack for DSS." - ::= { nsTcpStatsGroup 120 } - -mptcpMPFailSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Total mp fail sent due to checksum failure." - ::= { nsTcpStatsGroup 121 } - -mptcpMPFailRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Total mpfail received and fallback to regular tcp." - ::= { nsTcpStatsGroup 122 } - -mptcpInfiniteMapRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Received and set infinite map and fallen back to regular tcp." - ::= { nsTcpStatsGroup 123 } - -mptcpTotMpCapSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP total mpcapable syn received" - ::= { nsTcpStatsGroup 124 } - -mptcpTotMpJoinSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP total mpjoin syn received" - ::= { nsTcpStatsGroup 125 } - -mptcpTotMpcapSession OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP total mpcapable session created" - ::= { nsTcpStatsGroup 126 } - -mptcpTotSFConn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP total mpjoin connections created" - ::= { nsTcpStatsGroup 127 } - -mptcpTotEstSFReplaced OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Total established subflows replaced due to new join." - ::= { nsTcpStatsGroup 128 } - -mptcpTotPendSFReplaced OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "MPTCP Total pending subflows replaced due to new join." - ::= { nsTcpStatsGroup 129 } - -mptcpCurSessWithoutSFs OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current Multipath TCP sessions without any subflows" - ::= { nsTcpStatsGroup 130 } - -tcpOptimizationEnabled OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of connections with TCP optimzation." - ::= { nsTcpStatsGroup 131 } - -tcpOptimizationBypassed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of connections that bypassed TCP optimzation." - ::= { nsTcpStatsGroup 132 } - -nsSslStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 47 } - -sslCardStatus OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Status of the SSL card(s). The value should be interpreted in binary form, with each set bit indicates a card as UP." - ::= { nsSslStatsGroup 1 } - -sslEngineStatus OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "State of the SSL Engine (1=UP/0=DOWN). This state is decided based on SSL Feature/License status and minimum number of cards UP." - ::= { nsSslStatsGroup 2 } - -sslSessionsPerSec OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SSL sessions per second between client and NetScaler appliance." - ::= { nsSslStatsGroup 3 } - -sslTotTransactionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 11 } - -sslTotTransactionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 12 } - -sslTotSSLv2TransactionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 13 } - -sslTotSSLv2TransactionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 14 } - -sslTotSSLv3TransactionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 15 } - -sslTotSSLv3TransactionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 16 } - -sslTotTLSv1TransactionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 17 } - -sslTotTLSv1TransactionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 18 } - -sslTotSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 19 } - -sslTotSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 20 } - -sslTotSSLv2SessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 21 } - -sslTotSSLv2SessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 22 } - -sslTotSSLv3SessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 23 } - -sslTotSSLv3SessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 24 } - -sslTotTLSv1SessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 25 } - -sslTotTLSv1SessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 26 } - -sslTotExpiredSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 27 } - -sslTotExpiredSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 28 } - -sslTotNewSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 29 } - -sslTotNewSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 30 } - -sslTotSessionHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 31 } - -sslTotSessionHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 32 } - -sslTotSessionMissLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 33 } - -sslTotSessionMissHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 34 } - -sslTotRenegSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 35 } - -sslTotRenegSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 36 } - -sslTotSSLv3RenegSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 37 } - -sslTotSSLv3RenegSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 38 } - -sslTotTLSv1RenegSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 39 } - -sslTotTLSv1RenegSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 40 } - -sslTotSSLv2HandshakesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 41 } - -sslTotSSLv2HandshakesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 42 } - -sslTotSSLv3HandshakesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 43 } - -sslTotSSLv3HandshakesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 44 } - -sslTotTLSv1HandshakesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 45 } - -sslTotTLSv1HandshakesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 46 } - -sslTotSSLv2ClientAuthenticationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 47 } - -sslTotSSLv2ClientAuthenticationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 48 } - -sslTotSSLv3ClientAuthenticationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 49 } - -sslTotSSLv3ClientAuthenticationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 50 } - -sslTotTLSv1ClientAuthenticationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 51 } - -sslTotTLSv1ClientAuthenticationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 52 } - -sslTotRSA512keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 53 } - -sslTotRSA512keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 54 } - -sslTotRSA1024keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 55 } - -sslTotRSA1024keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 56 } - -sslTotRSA2048keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 57 } - -sslTotRSA2048keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 58 } - -sslTotDH512keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 59 } - -sslTotDH512keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 60 } - -sslTotDH1024keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 61 } - -sslTotDH1024keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 62 } - -sslTotDH2048keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 63 } - -sslTotDH2048keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 64 } - -sslTotRSAAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 65 } - -sslTotRSAAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 66 } - -sslTotDHAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 67 } - -sslTotDHAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 68 } - -sslTotDSSAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 69 } - -sslTotDSSAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 70 } - -sslTotNULLAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 71 } - -sslTotNULLAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 72 } - -sslTot40BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 73 } - -sslTot40BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 74 } - -sslTot56BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 75 } - -sslTot56BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 76 } - -sslTot64BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 77 } - -sslTot64BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 78 } - -sslTot128BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 79 } - -sslTot128BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 80 } - -sslTot40BitDESCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 81 } - -sslTot40BitDESCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 82 } - -sslTot56BitDESCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 83 } - -sslTot56BitDESCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 84 } - -sslTot168Bit3DESCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 85 } - -sslTot168Bit3DESCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 86 } - -sslTot40BitRC2CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 87 } - -sslTot40BitRC2CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 88 } - -sslTot56BitRC2CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 89 } - -sslTot56BitRC2CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 90 } - -sslTot128BitRC2CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 91 } - -sslTot128BitRC2CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 92 } - -sslTot128BitIDEACiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 93 } - -sslTot128BitIDEACiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 94 } - -sslTotNULLCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 95 } - -sslTotNULLCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 96 } - -sslTotMD5MacLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 97 } - -sslTotMD5MacHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 98 } - -sslTotSHAMacLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 99 } - -sslTotSHAMacHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 100 } - -sslTotOffloadBulkDESLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 101 } - -sslTotOffloadBulkDESHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 102 } - -sslTotOffloadRSAKeyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 103 } - -sslTotOffloadRSAKeyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 104 } - -sslTotOffloadDHKeyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 105 } - -sslTotOffloadDHKeyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 106 } - -sslTotOffloadSignRSALow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 107 } - -sslTotOffloadSignRSAHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 108 } - -sslBeTotSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 120 } - -sslBeTotSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 121 } - -sslBeTotSSLv3SessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 122 } - -sslBeTotSSLv3SessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 123 } - -sslBeTotTLSv1SessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 124 } - -sslBeTotTLSv1SessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 125 } - -sslBeExpiredSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 126 } - -sslBeTotExpiredSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 127 } - -sslBeTotSessionMultiplexAttemptsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 128 } - -sslBeTotSessionMultiplexAttemptsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 129 } - -sslBeTotSessionMultiplexAttemptSuccessLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 130 } - -sslBeTotSessionMultiplexAttemptSuccessHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 131 } - -sslBeTotSessionMultiplexAttemptFailsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 132 } - -sslBeTotSessionMultiplexAttemptFailsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 133 } - -sslBeMaxMultiplexedSessionsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 134 } - -sslBeMaxMultiplexedSessionsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 135 } - -sslBeSessionsReplacedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 136 } - -sslBeSessionsReplacedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 137 } - -sslBeTotSSLv3HandshakesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 138 } - -sslBeTotSSLv3HandshakesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 139 } - -sslBeTotTLSv1HandshakesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 140 } - -sslBeTotTLSv1HandshakesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 141 } - -sslBeTotSSLv3ClientAuthenticationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 142 } - -sslBeTotSSLv3ClientAuthenticationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 143 } - -sslBeTotTLSv1ClientAuthenticationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 144 } - -sslBeTotTLSv1ClientAuthenticationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 145 } - -sslBeTotRSA512keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 146 } - -sslBeTotRSA512keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 147 } - -sslBeTotRSA1024keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 148 } - -sslBeTotRSA1024keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 149 } - -sslBeTotRSA2048keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 150 } - -sslBeTotRSA2048keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 151 } - -sslBeTotDH512keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 152 } - -sslBeTotDH512keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 153 } - -sslBeTotDH1024keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 154 } - -sslBeTotDH1024keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 155 } - -sslBeTotDH2048keyExchangesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 156 } - -sslBeTotDH2048keyExchangesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 157 } - -sslBeTotRSAAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 158 } - -sslBeTotRSAAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 159 } - -sslBeTotDHAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 160 } - -sslBeTotDHAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 161 } - -sslBeTotDSSAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 162 } - -sslBeTotDSSAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 163 } - -sslBeTotNULLAuthorizationsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 164 } - -sslBeTotNULLAuthorizationsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 165 } - -sslBeTot40BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 166 } - -sslBeTot40BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 167 } - -sslBeTot56BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 168 } - -sslBeTot56BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 169 } - -sslBeTot64BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 170 } - -sslBeTot64BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 171 } - -sslBeTot128BitRC4CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 172 } - -sslBeTot128BitRC4CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 173 } - -sslBeTot40BitDESCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 174 } - -sslBeTot40BitDESCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 175 } - -sslBeTot56BitDESCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 176 } - -sslBeTot56BitDESCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 177 } - -sslBeTot168Bit3DESCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 178 } - -sslBeTot168Bit3DESCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 179 } - -sslBeTot40BitRC2CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 180 } - -sslBeTot40BitRC2CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 181 } - -sslBeTot56BitRC2CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 182 } - -sslBeTot56BitRC2CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 183 } - -sslBeTot128BitRC2CiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 184 } - -sslBeTot128BitRC2CiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 185 } - -sslBeTot128BitIDEACiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 186 } - -sslBeTot128BitIDEACiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 187 } - -sslBeTotNULLCiphersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 188 } - -sslBeTotNULLCiphersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 189 } - -sslBeTotMD5MacLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 190 } - -sslBeTotMD5MacHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 191 } - -sslBeTotSHAMacLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 192 } - -sslBeTotSHAMacHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsSslStatsGroup 193 } - -sslTotTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL transactions on the NetScaler appliance." - ::= { nsSslStatsGroup 200 } - -sslTotSSLv2Transactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSLv2 transactions on the NetScaler appliance." - ::= { nsSslStatsGroup 201 } - -sslTotSSLv3Transactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of SSLv3 transactions on the NetScaler appliance." - ::= { nsSslStatsGroup 202 } - -sslTotTLSv1Transactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TLSv1 transactions on the NetScaler appliance." - ::= { nsSslStatsGroup 203 } - -sslTotSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 204 } - -sslTotSSLv2Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSLv2 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 205 } - -sslTotSSLv3Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSLv3 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 206 } - -sslTotTLSv1Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TLSv1 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 207 } - -sslTotExpiredSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of expired SSL sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 208 } - -sslTotNewSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of new SSL sessions created on the NetScaler appliance." - ::= { nsSslStatsGroup 209 } - -sslTotSessionHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL session reuse hits on the NetScaler appliance." - ::= { nsSslStatsGroup 210 } - -sslTotSessionMiss OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL session reuse misses on the NetScaler appliance." - ::= { nsSslStatsGroup 211 } - -sslTotRenegSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL session renegotiations on the NetScaler appliance." - ::= { nsSslStatsGroup 212 } - -sslTotSSLv3RenegSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of session renegotiations done on SSLv3." - ::= { nsSslStatsGroup 213 } - -sslTotTLSv1RenegSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL session renegotiations done on TLSv1." - ::= { nsSslStatsGroup 214 } - -sslTotSSLv2Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of handshakes on SSLv2 on the NetScaler appliance." - ::= { nsSslStatsGroup 215 } - -sslTotSSLv3Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of handshakes on SSLv3 on the NetScaler appliance." - ::= { nsSslStatsGroup 216 } - -sslTotTLSv1Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL handshakes on TLSv1 on the NetScaler appliance." - ::= { nsSslStatsGroup 217 } - -sslTotSSLv2ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client authentications done on SSLv2." - ::= { nsSslStatsGroup 218 } - -sslTotSSLv3ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client authentications done on SSLv3." - ::= { nsSslStatsGroup 219 } - -sslTotTLSv1ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client authentications done on TLSv1." - ::= { nsSslStatsGroup 220 } - -sslTotRSA512keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA 512-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 221 } - -sslTotRSA1024keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA 1024-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 222 } - -sslTotRSA2048keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA 2048-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 223 } - -sslTotDH512keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Diffie-Helman 512-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 224 } - -sslTotDH1024keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Diffie-Helman 1024-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 225 } - -sslTotDH2048keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Diffie-Helman 2048-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 226 } - -sslTotRSAAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 227 } - -sslTotDHAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Diffie-Helman authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 228 } - -sslTotDSSAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times DSS authorization is used on the NetScaler appliance." - ::= { nsSslStatsGroup 229 } - -sslTotNULLAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Null authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 230 } - -sslTot40BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC4 40-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 231 } - -sslTot56BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC4 56-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 232 } - -sslTot64BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC4 64-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 233 } - -sslTot128BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC4 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 234 } - -sslTot40BitDESCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DES 40-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 235 } - -sslTot56BitDESCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DES 56-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 236 } - -sslTot168Bit3DESCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DES 168-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 237 } - -sslTot40BitRC2Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC2 40-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 238 } - -sslTot56BitRC2Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC2 56-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 239 } - -sslTot128BitRC2Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC2 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 240 } - -sslTot128BitIDEACiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of IDEA 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 241 } - -sslTotNULLCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Null cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 242 } - -sslTotMD5Mac OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of MD5 hashes on the NetScaler appliance." - ::= { nsSslStatsGroup 243 } - -sslTotSHAMac OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SHA hashes on the NetScaler appliance." - ::= { nsSslStatsGroup 244 } - -sslTotOffloadBulkDES OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DES encryptions offloaded to the cryptography card." - ::= { nsSslStatsGroup 245 } - -sslTotOffloadRSAKeyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA key exchanges offloaded to the cryptography card." - ::= { nsSslStatsGroup 246 } - -sslTotOffloadDHKeyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DH key exchanges offloaded to the cryptography card.d" - ::= { nsSslStatsGroup 247 } - -sslTotOffloadSignRSA OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA sign operations offloaded to the cryptography card." - ::= { nsSslStatsGroup 248 } - -sslBeTotSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSL sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 260 } - -sslBeTotSSLv3Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSLv3 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 261 } - -sslBeTotTLSv1Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 262 } - -sslBeExpiredSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end export sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 263 } - -sslBeTotSessionMultiplexAttempts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSL session multiplex attempts on the NetScaler appliance." - ::= { nsSslStatsGroup 264 } - -sslBeTotSessionMultiplexAttemptSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSL session multiplex successes on the NetScaler appliance." - ::= { nsSslStatsGroup 265 } - -sslBeTotSessionMultiplexAttemptFails OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSL session multiplex failures on the NetScaler appliance." - ::= { nsSslStatsGroup 266 } - -sslBeMaxMultiplexedSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSL sessions reused on the NetScaler appliance." - ::= { nsSslStatsGroup 267 } - -sslBeTotSSLv3Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSLv3 handshakes on the NetScaler appliance." - ::= { nsSslStatsGroup 268 } - -sslBeTotTLSv1Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1 handshakes on the NetScaler appliance." - ::= { nsSslStatsGroup 269 } - -sslBeTotSSLv3ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSLv3 client authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 270 } - -sslBeTotTLSv1ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1 client authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 271 } - -sslBeTotRSA512keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RSA 512-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 272 } - -sslBeTotRSA1024keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RSA 1024-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 273 } - -sslBeTotRSA2048keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RSA 2048-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 274 } - -sslBeTotDH512keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DH 512-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 275 } - -sslBeTotDH1024keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DH 1024-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 276 } - -sslBeTotDH2048keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DH 2048-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 277 } - -sslBeTotRSAAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RSA authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 278 } - -sslBeTotDHAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DH authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 279 } - -sslBeTotDSSAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DSS authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 280 } - -sslBeTotNULLAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end null authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 281 } - -sslBeTot40BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC4 40-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 282 } - -sslBeTot56BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC4 56-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 283 } - -sslBeTot64BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC4 64-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 284 } - -sslBeTot128BitRC4Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC4 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 285 } - -sslBeTot40BitDESCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DES 40-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 286 } - -sslBeTot56BitDESCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end DES 56-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 287 } - -sslBeTot168Bit3DESCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end 3DES 168-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 288 } - -sslBeTot40BitRC2Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC2 40-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 289 } - -sslBeTot56BitRC2Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC2 56-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 290 } - -sslBeTot128BitRC2Ciphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end RC2 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 291 } - -sslBeTot128BitIDEACiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end IDEA 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 292 } - -sslBeTotNULLCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end null cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 293 } - -sslBeTotMD5Mac OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end MD5 hashes on the NetScaler appliance." - ::= { nsSslStatsGroup 294 } - -sslBeTotSHAMac OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SHA hashes on the NetScaler appliance." - ::= { nsSslStatsGroup 295 } - -sslCurSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active SSL sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 296 } - -sslTotOffloadBulkAES OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AES encryptions offloaded to the cryptography card." - ::= { nsSslStatsGroup 297 } - -sslTotOffloadBulkRC4 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RC4 encryptions offloaded to the cryptography card." - ::= { nsSslStatsGroup 298 } - -sslNumCardsUP OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL cards that are UP. If the number of cards UP is lower than a threshold, a failover is initiated." - ::= { nsSslStatsGroup 299 } - -sslCards OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL crypto cards present on the NetScaler appliance." - ::= { nsSslStatsGroup 300 } - -sslTotBkendSessionReNegotiate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSL session renegotiations on the NetScaler appliance." - ::= { nsSslStatsGroup 301 } - -sslTotCipherAES128 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AES 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 302 } - -sslTotBkendSslV3Renego OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end SSLv3 session renegotiations on the NetScaler appliance." - ::= { nsSslStatsGroup 303 } - -sslTotBkendTlSvlRenego OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1 session renegotiations on the NetScaler appliance." - ::= { nsSslStatsGroup 304 } - -sslTotCipherAES256 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AES 256-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 305 } - -sslTotBkendCipherAES128 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Back-end AES 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 306 } - -sslTotBkendCipherAES256 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Back-end AES 256-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 307 } - -sslTotHwEncBE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted in hardware on the back end." - ::= { nsSslStatsGroup 308 } - -sslTotDec OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted on the NetScaler appliance." - ::= { nsSslStatsGroup 309 } - -sslTotSwEncFE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted in software on the front end." - ::= { nsSslStatsGroup 310 } - -sslTotEncFE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted on the front end." - ::= { nsSslStatsGroup 311 } - -sslTotEnc OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted on the NetScaler appliance." - ::= { nsSslStatsGroup 312 } - -sslTotDecHw OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted in hardware." - ::= { nsSslStatsGroup 313 } - -sslTotSwDecBE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted in software on back-end" - ::= { nsSslStatsGroup 314 } - -sslTotHwDecFE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted in hardware on the front end." - ::= { nsSslStatsGroup 315 } - -sslTotEncHw OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted in hardware." - ::= { nsSslStatsGroup 316 } - -sslTotDecSw OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted in software." - ::= { nsSslStatsGroup 317 } - -sslTotSwEncBE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted in software on the back end." - ::= { nsSslStatsGroup 318 } - -sslTotEncSw OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted in software." - ::= { nsSslStatsGroup 319 } - -sslTotSwDecFE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted in software on the front end." - ::= { nsSslStatsGroup 320 } - -sslTotEncBE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted on the back end." - ::= { nsSslStatsGroup 321 } - -sslTotDecBE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted on the back end." - ::= { nsSslStatsGroup 322 } - -sslTotHwDecBE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted in hardware on the back end." - ::= { nsSslStatsGroup 323 } - -sslTotDecFE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes decrypted on the front end." - ::= { nsSslStatsGroup 324 } - -sslTotHwEncFE OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes encrypted in hardware on the front end." - ::= { nsSslStatsGroup 325 } - -sslTotRSA4096keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of RSA 4096-bit key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 326 } - -sslCurQSize OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current queue size" - ::= { nsSslStatsGroup 327 } - -sslChipReinitCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of all reinitialize event for all SSL crypto chips." - ::= { nsSslStatsGroup 328 } - -sslTotECDHE224keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 224 Elliptical Curve Diffie-Helman on the NetScaler appliance." - ::= { nsSslStatsGroup 329 } - -sslTotECDHE256keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 256 Elliptical Curve Diffie-Helman on the NetScaler appliance." - ::= { nsSslStatsGroup 330 } - -sslTotECDHE384keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 384 Elliptical Curve Diffie-Helman on the NetScaler appliance." - ::= { nsSslStatsGroup 331 } - -sslTotECDHE521keyExchanges OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 521 Elliptical Curve Diffie-Helman on the NetScaler appliance." - ::= { nsSslStatsGroup 332 } - -sslTotTransactionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SSL Transactions rate per second." - ::= { nsSslStatsGroup 333 } - -sslTotSSLv2TransactionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SSLv2 Transactions rate per second." - ::= { nsSslStatsGroup 334 } - -sslTotSSLv3TransactionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SSLv3 Transactions rate per second." - ::= { nsSslStatsGroup 335 } - -sslTotTLSv1TransactionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TLSv1 Transactions rate per second." - ::= { nsSslStatsGroup 336 } - -sslBeTotEcdheCurve521 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end ECDHE 521 curve Key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 337 } - -sslBeTotEcdheCurve384 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end ECDHE 384 curve Key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 338 } - -sslBeTotEcdheCurve256 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end ECDHE 256 curve Key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 339 } - -sslBeTotEcdheCurve224 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end ECDHE 224 curve Key exchanges on the NetScaler appliance." - ::= { nsSslStatsGroup 340 } - -sslTotTLSv11Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL handshakes on TLSv1.1 on the NetScaler appliance." - ::= { nsSslStatsGroup 341 } - -sslTotTLSv12Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL handshakes on TLSv1.2 on the NetScaler appliance." - ::= { nsSslStatsGroup 342 } - -sslTotTLSv11Transactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TLSv1.1 transactions on the NetScaler appliance." - ::= { nsSslStatsGroup 343 } - -sslTotTLSv12Transactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TLSv1.2 transactions on the NetScaler appliance." - ::= { nsSslStatsGroup 344 } - -sslTotTLSv11Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TLSv1.1 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 345 } - -sslTotTLSv12Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TLSv1.2 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 346 } - -sslTotTLSv11RenegSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL session renegotiations done on TLSv1.1." - ::= { nsSslStatsGroup 347 } - -sslTotTLSv12RenegSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL session renegotiations done on TLSv1.2." - ::= { nsSslStatsGroup 348 } - -sslTotTLSv11ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client authentications done on TLSv1.1." - ::= { nsSslStatsGroup 349 } - -sslTotTLSv12ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client authentications done on TLSv1.2." - ::= { nsSslStatsGroup 350 } - -sslTotTLSv11TransactionRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TLSv1.1 Transactions rate per second." - ::= { nsSslStatsGroup 351 } - -sslTotTLSv12TransactionRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TLSv1.2 Transactions rate per second." - ::= { nsSslStatsGroup 352 } - -sslTot128BitAESGCMCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AEC-GCM 128-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 353 } - -sslTot256BitAESGCMCiphers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AEC-GCM 256-bit cipher encryptions on the NetScaler appliance." - ::= { nsSslStatsGroup 354 } - -sslTotOffloadBulkAESGCM128 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AES-GCM 128-bit encryptions offloaded to the cryptography card." - ::= { nsSslStatsGroup 355 } - -sslTotOffloadBulkAESGCM256 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of AES-GCM 256-bit encryptions offloaded to the cryptography card." - ::= { nsSslStatsGroup 356 } - -sslBeTotTLSv11Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.1 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 357 } - -sslBeTotTLSv12Sessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.2 sessions on the NetScaler appliance." - ::= { nsSslStatsGroup 358 } - -sslBeTotTLSv11Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.1 handshakes on the NetScaler appliance." - ::= { nsSslStatsGroup 359 } - -sslBeTotTLSv12Handshakes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.2 handshakes on the NetScaler appliance." - ::= { nsSslStatsGroup 360 } - -sslBeTotTLSv11ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.1 client authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 361 } - -sslBeTotTLSv12ClientAuthentications OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.2 client authentications on the NetScaler appliance." - ::= { nsSslStatsGroup 362 } - -sslTotBkendTlSv11Renego OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.1 session renegotiations on the NetScaler appliance." - ::= { nsSslStatsGroup 363 } - -sslTotBkendTlSv12Renego OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of back-end TLSv1.2 session renegotiations on the NetScaler appliance." - ::= { nsSslStatsGroup 364 } - -sslCryptoUtilization OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Utilization of the hardware crypto resource. Only valid values are 0-100%. Only works for platform with N3 chips A value of 4294967295 is displayed for a platform without a N3 chip" - ::= { nsSslStatsGroup 365 } - -sslTotECDSAAuthorizations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times ECDSA authorization is used on the NetScaler appliance." - ::= { nsSslStatsGroup 366 } - -nsHttpStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 48 } - -httpTotGetsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 1 } - -httpTotGetsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 2 } - -httpTotPostsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 3 } - -httpTotPostsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 4 } - -httpTotOthersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 5 } - -httpTotOthersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 6 } - -httpTotRxRequestBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 7 } - -httpTotRxRequestBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 8 } - -httpTotRxResponseBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 9 } - -httpTotRxResponseBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 10 } - -httpTotTxRequestBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 11 } - -httpTotTxRequestBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 12 } - -httpTotTxResponseBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 13 } - -httpTotTxResponseBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 14 } - -httpTotHTTP10reqLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 15 } - -httpTotHTTP10reqHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 16 } - -httpTotResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 17 } - -httpTotResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 18 } - -httpTot10ResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 19 } - -httpTot10ResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 20 } - -httpTotClenResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 21 } - -httpTotClenResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 22 } - -httpTotChunkedResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 23 } - -httpTotChunkedResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 24 } - -httpErrIncompleteRequestsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 25 } - -httpErrIncompleteRequestsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 26 } - -httpErrIncompleteResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 27 } - -httpErrIncompleteResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 28 } - -httpErrPipelinedRequestsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 29 } - -httpErrPipelinedRequestsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 30 } - -httpErrIncompleteHeadersLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 31 } - -httpErrIncompleteHeadersHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 32 } - -httpErrServerBusyLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 33 } - -httpErrServerBusyHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 34 } - -httpTotChunkedReqLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 35 } - -httpTotChunkedReqHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 36 } - -httpTotClenReqLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 37 } - -httpTotClenReqHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 38 } - -httpErrLargeContentLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 39 } - -httpErrLargeContentHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 40 } - -httpErrLargeCtlenLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 41 } - -httpErrLargeCtlenHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 42 } - -httpErrLargeChunkLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 43 } - -httpErrLargeChunkHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 44 } - -httpTotGets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests received with the GET method." - ::= { nsHttpStatsGroup 45 } - -httpTotPosts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests received with the POST method." - ::= { nsHttpStatsGroup 46 } - -httpTotOthers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests received with methods other than GET and POST. Some of the other well-defined HTTP methods are HEAD, PUT, DELETE, OPTIONS, and TRACE. User-defined methods are also allowed." - ::= { nsHttpStatsGroup 47 } - -httpTotRxRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes of HTTP request data received." - ::= { nsHttpStatsGroup 48 } - -httpTotRxResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes of HTTP response data received." - ::= { nsHttpStatsGroup 49 } - -httpTotTxRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes of HTTP request data transmitted." - ::= { nsHttpStatsGroup 50 } - -httpTotTxResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes of HTTP response data transmitted." - ::= { nsHttpStatsGroup 51 } - -httpTot10Requests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP/1.0 requests received." - ::= { nsHttpStatsGroup 52 } - -httpTotResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP responses sent." - ::= { nsHttpStatsGroup 53 } - -httpTot10Responses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP/1.0 responses sent." - ::= { nsHttpStatsGroup 54 } - -httpTotClenResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP responses sent in which the Content-length field of the HTTP header has been set. Content-length specifies the length of the content, in bytes, in the associated HTTP body." - ::= { nsHttpStatsGroup 55 } - -httpTotChunkedResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP responses sent in which the Transfer-Encoding field of the HTTP header has been set to chunked. This setting is used when the server wants to start sending the response before knowing its total length. The server breaks the response into chunks and sends them in sequence, inserting the length of each chunk before the actual data. The message ends with a chunk of size zero." - ::= { nsHttpStatsGroup 56 } - -httpErrIncompleteRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests received in which the header spans more than one packet." - ::= { nsHttpStatsGroup 57 } - -httpErrIncompleteResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP responses received in which the header spans more than one packet." - ::= { nsHttpStatsGroup 58 } - -httpErrPipelinedRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsHttpStatsGroup 59 } - -httpErrIncompleteHeaders OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests and responses received in which the HTTP header spans more than one packet." - ::= { nsHttpStatsGroup 60 } - -httpErrServerBusy OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP error responses received. Some of the error responses are: -500 Internal Server Error -501 Not Implemented -502 Bad Gateway -503 Service Unavailable -504 Gateway Timeout -505 HTTP Version Not Supported" - ::= { nsHttpStatsGroup 61 } - -httpTotChunkedRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests in which the Transfer-Encoding field of the HTTP header has been set to chunked." - ::= { nsHttpStatsGroup 62 } - -httpTotClenRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests in which the Content-length field of the HTTP header has been set. Content-length specifies the length of the content, in bytes, in the associated HTTP body." - ::= { nsHttpStatsGroup 63 } - -httpErrLargeContent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests and responses received with large body." - ::= { nsHttpStatsGroup 64 } - -httpErrLargeCtlen OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received with large content, in which the Content-length field of the HTTP header has been set. Content-length specifies the length of the content, in bytes, in the associated HTTP body." - ::= { nsHttpStatsGroup 65 } - -httpErrLargeChunk OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received with large chunk size, in which the Transfer-Encoding field of the HTTP header has been set to chunked." - ::= { nsHttpStatsGroup 66 } - -httpTotRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP requests received." - ::= { nsHttpStatsGroup 67 } - -httpTot11Requests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP/1.1 requests received." - ::= { nsHttpStatsGroup 68 } - -httpTot11Responses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP/1.1 responses sent." - ::= { nsHttpStatsGroup 69 } - -httpTotNoClenChunkResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of FIN-terminated responses sent. In FIN-terminated responses, the server finishes sending the data and closes the connection." - ::= { nsHttpStatsGroup 70 } - -httpErrNoreuseMultipart OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP multi-part responses sent. In multi-part responses, one or more entities are encapsulated within the body of a single message." - ::= { nsHttpStatsGroup 71 } - -spdy2TotStreams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object has been obsoleted. Can be obtained from spdyTotStreams." - ::= { nsHttpStatsGroup 72 } - -spdyTotStreams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received over SPDYv2 and SPDYv3" - ::= { nsHttpStatsGroup 73 } - -spdyv2TotStreams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received over SPDYv2" - ::= { nsHttpStatsGroup 74 } - -spdyv3TotStreams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received over SPDYv3" - ::= { nsHttpStatsGroup 75 } - -httpTotRequestsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which HTTP Requests are received in the system per second." - ::= { nsHttpStatsGroup 76 } - -httpTotResposesRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which HTTP Responses are received in the system per second." - ::= { nsHttpStatsGroup 77 } - -nsCacheStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 49 } - -cacheMaxMemoryKB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Largest amount of memory the NetScaler can dedicate to caching, up to 50% of available memory. A 0 value disables caching, but the caching module continues to run. " - ::= { nsCacheStatsGroup 1 } - -cacheUtilizedMemoryKB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Amount of memory the integrated cache is currently using." - ::= { nsCacheStatsGroup 2 } - -cacheNumCached OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Responses currently in integrated cache. Includes responses fully downloaded, in the process of being downloaded, and expired or flushed but not yet removed." - ::= { nsCacheStatsGroup 3 } - -cacheErrMemAllocLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 4 } - -cacheErrMemAllocHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 5 } - -cacheTotRequestsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 6 } - -cacheTotRequestsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 7 } - -cacheTotHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 8 } - -cacheTotHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 9 } - -cacheTotMissesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 10 } - -cacheTotMissesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 11 } - -cachePercentHit OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Cache hits as percentage of the total number of requests" - ::= { nsCacheStatsGroup 12 } - -cacheRecentPercentHit OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Recently recorded cache hit ratio expressed as percentage" - ::= { nsCacheStatsGroup 13 } - -cacheCurHits OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This number should be close to the number of hits being served currently." - ::= { nsCacheStatsGroup 14 } - -cacheCurMisses OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Responses fetched from the origin and served from the cache. Should approximate storable misses. Does not include non-storable misses." - ::= { nsCacheStatsGroup 15 } - -cacheTot304HitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 16 } - -cacheTot304HitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 17 } - -cacheTotNon304HitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 18 } - -cacheTotNon304HitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 19 } - -cachePercent304Hits OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "304 responses as a percentage of all responses that the NetScaler served." - ::= { nsCacheStatsGroup 20 } - -cacheRecentPercent304Hits OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Recently recorded ratio of 304 hits to all hits expressed as percentage" - ::= { nsCacheStatsGroup 21 } - -cacheTotStoreAbleMissesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 22 } - -cacheTotStoreAbleMissesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 23 } - -cacheTotNonStoreAbleMissesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 24 } - -cacheTotNonStoreAbleMissesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 25 } - -cachePercentStoreAbleMiss OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Responses that were fetched from the origin, stored in the cache, and then served to the client, as a percentage of all cache misses." - ::= { nsCacheStatsGroup 26 } - -cacheRecentPercentStoreAbleMiss OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Recently recorded ratio of store-able misses to all misses expressed as percentage." - ::= { nsCacheStatsGroup 27 } - -cacheTotRevalidationMissLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 28 } - -cacheTotRevalidationMissHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 29 } - -cacheTotFullToConditionalRequestLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 30 } - -cacheTotFullToConditionalRequestHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 31 } - -cacheTotSuccessfulRevalidationLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 32 } - -cacheTotSuccessfulRevalidationHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 33 } - -cachePercentSuccessfulRevalidation OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of times stored content was successfully revalidated by a 304 (Object Not Modifed) response rather than by a full response" - ::= { nsCacheStatsGroup 34 } - -cacheRecentPercentSuccessfulRevalidation OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Recently recorded percentage of times stored content was successfully revalidated by a 304 response rather than by a full response" - ::= { nsCacheStatsGroup 35 } - -cacheBytesServedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 36 } - -cacheBytesServedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 37 } - -cacheCompressedBytesServedLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 38 } - -cacheCompressedBytesServedHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsCacheStatsGroup 39 } - -cachePercentByteHit OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes served from the cache divided by total bytes served to the client. If compression is On in the NetScaler, this ratio may not reflect the bytes served by the compression module. If the compression is Off, this ratio is the same as cachePercentOriginBandwidthSaved." - ::= { nsCacheStatsGroup 40 } - -cacheRecentPercentByteHit OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Recently recorded cache byte hit ratio expressed as percentage. Here we define byte hit ratio as ((number of bytes served from the cache)/(total number of bytes served to the client)). This is the standard definition of Byte Hit Ratio. If compression is turned ON in NS then this ratio doesn't mean much. This might under or over estimate the origin-to-cache bandwidth saving (depending upon whether bytes served by CMP in NetScaler are more or less than compressed bytes served from the cache). If CMP is turned OFF in NS then this ratio is same as cacheRecentPercentOriginBandwidthSaved." - ::= { nsCacheStatsGroup 41 } - -cachePercentOriginBandwidthSaved OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of origin bandwidth saved, expressed as number of bytes served from the integrated cache divided by all bytes served. The assumption is that all compression is done in the NetScaler." - ::= { nsCacheStatsGroup 42 } - -cacheRecentPercentOriginBandwidthSaved OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes served from cache divided by total bytes served to client. This ratio can be greater than 1 because of the assumption that all compression has been done in the NetScaler." - ::= { nsCacheStatsGroup 43 } - -cacheErrMemAlloc OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times the cache failed to allocate memory to store responses." - ::= { nsCacheStatsGroup 44 } - -cacheTotRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cache hits plus total cache misses." - ::= { nsCacheStatsGroup 45 } - -cacheTotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Responses served from the integrated cache. These responses match a policy with a CACHE action." - ::= { nsCacheStatsGroup 46 } - -cacheTotMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Intercepted HTTP requests requiring fetches from origin server." - ::= { nsCacheStatsGroup 47 } - -cacheTot304Hits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Object not modified responses served from the cache. (Status code 304 served instead of the full response.)" - ::= { nsCacheStatsGroup 48 } - -cacheTotNon304Hits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of full (non-304) responses served from the cache. A 304 status code indicates that a response has not been modified since the last time it was served" - ::= { nsCacheStatsGroup 49 } - -cacheTotStoreAbleMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Cache misses for which the fetched response is stored in the cache before serving it to the client. Storable misses conform to a built-in or user-defined caching policy that contains a CACHE action." - ::= { nsCacheStatsGroup 50 } - -cacheTotNonStoreAbleMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Cache misses for which the fetched response is not stored in the cache. These responses match policies with a NOCACHE action or are affected by Poll Every Time." - ::= { nsCacheStatsGroup 51 } - -cacheTotRevalidationMiss OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Responses that an intervening cache revalidated with the integrated cache before serving, as determined by a Cache-Control: Max-Age header configurable in the integrated cache" - ::= { nsCacheStatsGroup 52 } - -cacheTotFullToConditionalRequest OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of user-agent requests for a cached Poll Every Time (PET) response that were sent to the origin server as conditional requests. " - ::= { nsCacheStatsGroup 53 } - -cacheTotSuccessfulRevalidation OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times stored content was successfully revalidated by a 304 Not Modified response from the origin." - ::= { nsCacheStatsGroup 54 } - -cacheTotResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP response bytes served by NetScaler from both the origin and the cache" - ::= { nsCacheStatsGroup 55 } - -cacheBytesServed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of bytes served from the integrated cache" - ::= { nsCacheStatsGroup 56 } - -cacheCompressedBytesServed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of compressed bytes served from the cache" - ::= { nsCacheStatsGroup 57 } - -cacheTotPetRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Requests that triggered a search of a content group that has Poll Every Time (PET) enabled (always consult the origin server before serving cached data)." - ::= { nsCacheStatsGroup 58 } - -cacheTotPetHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times a cache hit was found during a search of a content group that has Poll Every Time enabled." - ::= { nsCacheStatsGroup 59 } - -cachePercentPetHits OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of cache hits in content groups that have Poll Every Time enabled, relative to all searches of content groups with Poll Every Time enabled. " - ::= { nsCacheStatsGroup 60 } - -cacheTotParameterizedRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests where the content group has hit and invalidation parameters or selectors." - ::= { nsCacheStatsGroup 61 } - -cacheTotParameterizedHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Parameterized requests resulting in either a 304 or non-304 hit." - ::= { nsCacheStatsGroup 62 } - -cacheTotParameterizedNon304Hits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Parameterized requests resulting in a full response (not status code 304: Object Not Updated) served from the cache." - ::= { nsCacheStatsGroup 63 } - -cacheTotParameterized304Hits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Parameterized requests resulting in an object not modified (status code 304) response. " - ::= { nsCacheStatsGroup 64 } - -cachePercentParameterized304Hits OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of parameterized 304 hits relative to all parameterized hits." - ::= { nsCacheStatsGroup 65 } - -cacheRecentPercentParameterizedHits OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Recently recorded ratio of parameterized 304 hits to all parameterized hits expressed as a percentage" - ::= { nsCacheStatsGroup 66 } - -cacheTotInvalidationRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Requests that match an invalidation policy and result in expiration of specific cached responses or entire content groups." - ::= { nsCacheStatsGroup 67 } - -cacheTotNonParameterizedInvalidationRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Requests that match an invalidation policy where the invalGroups parameter is configured and expires one or more content groups." - ::= { nsCacheStatsGroup 68 } - -cacheTotParameterizedInvalidationRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Requests matching a policy with an invalidation (INVAL) action and a content group that uses an invalidation selector or parameters." - ::= { nsCacheStatsGroup 69 } - -cacheLargestResponseReceived OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Size, in bytes, of largest response sent to client from the cache or the origin server." - ::= { nsCacheStatsGroup 70 } - -cacheTotFlashcacheMisses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests to a content group with flash cache enabled that were cache misses. Flash cache distributes the response to all the clients in aqueue." - ::= { nsCacheStatsGroup 71 } - -cacheTotFlashcacheHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests to a content group with flash cache enabled that were cache hits. The flash cache setting queues requests that arrive simultaneously and distributes the response to all the clients in the queue." - ::= { nsCacheStatsGroup 72 } - -cacheTotExpireAtLastByte OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Instances of content expiring immediately after receiving the last body byte due to the Expire at Last Byte setting for the content group." - ::= { nsCacheStatsGroup 73 } - -cacheNumMarker OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Marker objects created when a response exceeds the maximum or minimum size for entries in its content group or has not yet received the minimum number of hits required for items in its content group." - ::= { nsCacheStatsGroup 74 } - -cacheMaxMemoryActiveKB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently active value of maximum memory" - ::= { nsCacheStatsGroup 75 } - -cache64MaxMemoryKB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Largest amount of memory the NetScaler can dedicate to caching, up to 50% of available memory. A 0 value disables caching, but the caching module continues to run. " - ::= { nsCacheStatsGroup 76 } - -cacheNumObjSavedOnDisk OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Cached responses currently saved on disk. Includes responses fully saved to disk, and expired or flushed but not yet removed." - ::= { nsCacheStatsGroup 77 } - -cacheNumMBSavedOnDisk OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Size (MB) of cached responses currently saved on disk. Includes responses fully saved to disk, and expired or flushed but not yet removed." - ::= { nsCacheStatsGroup 78 } - -cacheNumMBReadFromDisk OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total Number of MB read from disk since last reboot." - ::= { nsCacheStatsGroup 79 } - -cacheNumMBWrittenToDisk OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total Number of MB written to disk since last reboot." - ::= { nsCacheStatsGroup 80 } - -cacheTotSqlHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "sql response served from cache" - ::= { nsCacheStatsGroup 81 } - -nsCompressionStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 50 } - -compTotalRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTTP compression requests the NetScaler receives for which the response is successfully compressed. For example, after you enable compression and configure services, if you send HTTP requests to the NetScaler using a HTTP client that supports compression, and NetScaler compresses the corresponding response, this counter is incremented." - ::= { nsCompressionStatsGroup 1 } - -compTotalTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes the NetScaler sends to the client after compressing the response from the server." - ::= { nsCompressionStatsGroup 2 } - -compTotalRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes that can be compressed, which the NetScaler receives from the server. This gives the content length of the response that the NetScaler receives from server." - ::= { nsCompressionStatsGroup 3 } - -compTotalTxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTTP packets that the NetScaler sends to the client after compressing the response from the server." - ::= { nsCompressionStatsGroup 4 } - -compTotalRxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTTP packets that can be compressed, which the NetScaler receives from the server." - ::= { nsCompressionStatsGroup 5 } - -compRatio OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Ratio of compressible data received to compressed data transmitted expressed as percentage." - ::= { nsCompressionStatsGroup 6 } - -compTotalDataCompressionRatio OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Ratio of total HTTP data received to total HTTP data transmitted expressed as percentage." - ::= { nsCompressionStatsGroup 7 } - -compTcpTotalTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes that the NetScaler sends to the client after compressing the response from the server." - ::= { nsCompressionStatsGroup 8 } - -compTcpTotalRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes that can be compressed, which the NetScaler receives from the server. This gives the content length of the response that the NetScaler receives from server." - ::= { nsCompressionStatsGroup 9 } - -compTcpTotalTxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TCP packets that the NetScaler sends to the client after compressing the response from the server." - ::= { nsCompressionStatsGroup 10 } - -compTcpTotalRxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of compressible packets received by NetScaler." - ::= { nsCompressionStatsGroup 11 } - -compTcpTotalQuantum OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NetScaler compresses a quantum of data. NetScaler buffers the data received from the server till it reaches the quantum size and then compresses the buffered data and transmits to the client." - ::= { nsCompressionStatsGroup 12 } - -compTcpTotalPush OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NetScaler compresses data on receiving a TCP PUSH flag from the server. The PUSH flag ensures that data is compressed immediately without waiting for the buffered data size to reach the quantum size." - ::= { nsCompressionStatsGroup 13 } - -compTcpTotalEoi OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NetScaler compresses data on receiving End Of Input (FIN packet). When the NetScaler receives End Of Input (FIN packet), it compresses the buffered data immediately without waiting for the buffered data size to reach the quantum size." - ::= { nsCompressionStatsGroup 14 } - -compTcpTotalTimer OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NetScaler compresses data on expiration of data accumulation timer. The timer expires if the server response is very slow and consequently, the NetScaler does not receive response for a certain amount of time. Under such a condition, the NetScaler compresses the buffered data immediately without waiting for the buffered data size to reach the quantum size." - ::= { nsCompressionStatsGroup 15 } - -compTcpRatio OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Ratio of compressible data received to compressed data transmitted expressed as percentage." - ::= { nsCompressionStatsGroup 16 } - -compTcpBandwidthSaving OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bandwidth saving from TCP compression expressed as percentage." - ::= { nsCompressionStatsGroup 17 } - -deCompTcpRxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of compressed packets received by NetScaler." - ::= { nsCompressionStatsGroup 18 } - -deCompTcpTxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of decompressed packets transmitted by NetScaler." - ::= { nsCompressionStatsGroup 19 } - -deCompTcpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of compressed bytes received by NetScaler." - ::= { nsCompressionStatsGroup 20 } - -deCompTcpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of decompressed bytes transmitted by NetScaler." - ::= { nsCompressionStatsGroup 21 } - -deCompTcpErrData OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of data errors encountered while decompressing." - ::= { nsCompressionStatsGroup 22 } - -deCompTcpErrLessData OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times NetScaler received less data than declared by protocol." - ::= { nsCompressionStatsGroup 23 } - -deCompTcpErrMoreData OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times NetScaler received more data than declared by protocol." - ::= { nsCompressionStatsGroup 24 } - -deCompTcpErrMemory OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times memory failures occurred while decompressing." - ::= { nsCompressionStatsGroup 25 } - -deCompTcpErrUnknown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times unknown errors occurred while decompressing." - ::= { nsCompressionStatsGroup 26 } - -deCompTcpRatio OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Ratio of decompressed data transmitted to compressed data received expressed as percentage." - ::= { nsCompressionStatsGroup 27 } - -deCompTcpBandwidthSaving OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bandwidth saving from compression expressed as percentage." - ::= { nsCompressionStatsGroup 28 } - -delCompTotalRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of delta compression requests received by NetScaler." - ::= { nsCompressionStatsGroup 29 } - -delCompFirstAccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of delta compression first accesses." - ::= { nsCompressionStatsGroup 30 } - -delCompDone OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of delta compressions done by NetScaler." - ::= { nsCompressionStatsGroup 31 } - -delCompTcpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of delta-compressible bytes received by NetScaler." - ::= { nsCompressionStatsGroup 32 } - -delCompTcpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of delta-compressed bytes transmitted by NetScaler." - ::= { nsCompressionStatsGroup 33 } - -delCompTcpRxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of delta-compressible packets received." - ::= { nsCompressionStatsGroup 34 } - -delCompTcpTxPackets OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of delta-compressed packets transmitted by NetScaler." - ::= { nsCompressionStatsGroup 35 } - -delCompBaseServed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of basefile requests served by NetScaler." - ::= { nsCompressionStatsGroup 36 } - -delCompBaseTcpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of basefile bytes transmitted by NetScaler." - ::= { nsCompressionStatsGroup 37 } - -delCompErrBypassed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times delta-compression bypassed by NetScaler." - ::= { nsCompressionStatsGroup 39 } - -delCompErrBFileWHdrFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times basefile could not be updated in NetScaler cache." - ::= { nsCompressionStatsGroup 40 } - -delCompErrNostoreMiss OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times basefile was not found in NetScaler cache." - ::= { nsCompressionStatsGroup 41 } - -delCompErrReqinfoToobig OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times basefile request URL was too large." - ::= { nsCompressionStatsGroup 42 } - -delCompErrReqinfoAllocfail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times requested basefile could not be allocated." - ::= { nsCompressionStatsGroup 43 } - -delCompErrSessallocFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times delta compression session could not be allocated." - ::= { nsCompressionStatsGroup 44 } - -delCmpRatio OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Ratio of compressible data received to compressed data transmitted expressed as percentage." - ::= { nsCompressionStatsGroup 45 } - -delBwSaving OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bandwidth saving from delta compression expressed as percentage." - ::= { nsCompressionStatsGroup 46 } - -compHttpBandwidthSaving OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bandwidth saving from TCP compression expressed as percentage." - ::= { nsCompressionStatsGroup 47 } - -nsGslbGroup OBJECT IDENTIFIER - ::= { nsSysGroup 51 } - -gslbGlobalStats OBJECT IDENTIFIER - ::= { nsGslbGroup 1 } - -customEntries OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the number of custom locations" - ::= { gslbGlobalStats 1 } - -staticEntries OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the number of static locations" - ::= { gslbGlobalStats 2 } - -gslbGlobalInfo OBJECT IDENTIFIER - ::= { nsGslbGroup 2 } - -gslbSitesTable OBJECT-TYPE - SYNTAX SEQUENCE OF GslbSitesEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains gslb sites information" - ::= { gslbGlobalInfo 1 } - -gslbSitesEntry OBJECT-TYPE - SYNTAX GslbSitesEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { siteName } - ::= { gslbSitesTable 1 } - -GslbSitesEntry ::= SEQUENCE { - siteName OCTET STRING, - siteIp IpAddress, - siteType SiteType, - siteMetricExchange MetricExchange, - siteMepStatus MepStatus, - sitePublicIp IpAddress, - siteTotalRequests Counter64, - siteTotalRequestBytes Counter64, - siteTotalResponses Counter64, - siteTotalResponseBytes Counter64, - siteCurSrvrConnections Gauge32, - siteCurClntConnections Gauge32, - siteMetricMepStatus MepStatus, - nwMetricMepStatus MepStatus, - nwMetricExchange MetricExchange, - persExchange MetricExchange, - gslbSiteInetAddressType InetAddressType, - gslbSiteInetAddress InetAddress, - gslbSitePublicInetAddressType InetAddressType, - gslbSitePublicInetAddress InetAddress -} - -siteName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This is the name of the gslb site" - ::= { gslbSitesEntry 1 } - -siteIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The private IP address of this GSLB site." - ::= { gslbSitesEntry 2 } - -siteType OBJECT-TYPE - SYNTAX SiteType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether this GSLB site is local or remote." - ::= { gslbSitesEntry 3 } - -siteMetricExchange OBJECT-TYPE - SYNTAX MetricExchange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether metric exchange is enabled or disabled at this GSLB site." - ::= { gslbSitesEntry 4 } - -siteMepStatus OBJECT-TYPE - SYNTAX MepStatus - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { gslbSitesEntry 5 } - -sitePublicIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The public IP address of this GSLB site." - ::= { gslbSitesEntry 6 } - -siteTotalRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received by the virtual servers represented by all GSLB services associated with this GSLB site." - ::= { gslbSitesEntry 7 } - -siteTotalRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of request bytes received by the virtual servers represented by all GSLB services associated with this GSLB site." - ::= { gslbSitesEntry 8 } - -siteTotalResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of responses received by the virtual servers represented by all GSLB services associated with this GSLB site." - ::= { gslbSitesEntry 9 } - -siteTotalResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of response bytes received by the virtual servers represented by all GSLB services associated with this GSLB site." - ::= { gslbSitesEntry 10 } - -siteCurSrvrConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current connections to the real servers behind the virtual servers represented by all GSLB services associated with this GSLB site." - ::= { gslbSitesEntry 11 } - -siteCurClntConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current client connections to the virtual servers represented by all GSLB services associated with this GSLB site." - ::= { gslbSitesEntry 12 } - -siteMetricMepStatus OBJECT-TYPE - SYNTAX MepStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the status of the site metric Metric Exchange connection at this GSLB site. " - ::= { gslbSitesEntry 13 } - -nwMetricMepStatus OBJECT-TYPE - SYNTAX MepStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the status of the network metric Metric Exchange connection at this GSLB site. " - ::= { gslbSitesEntry 14 } - -nwMetricExchange OBJECT-TYPE - SYNTAX MetricExchange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether network metric exchange is enabled or disabled at this GSLB site." - ::= { gslbSitesEntry 15 } - -persExchange OBJECT-TYPE - SYNTAX MetricExchange - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether Persistence entries exchange is enabled or disabled at this GSLB site." - ::= { gslbSitesEntry 16 } - -gslbSiteInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of gslbSiteInetAddress" - ::= { gslbSitesEntry 17 } - -gslbSiteInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The internet address of the gslb site." - ::= { gslbSitesEntry 18 } - -gslbSitePublicInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of gslbSitePublicInetAddress" - ::= { gslbSitesEntry 19 } - -gslbSitePublicInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The internet address of the gslb site public IP." - ::= { gslbSitesEntry 20 } - -gslbPoliciesTable OBJECT-TYPE - SYNTAX SEQUENCE OF GslbPoliciesEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "This object is now obsolete as the gslb command is not supported" - ::= { gslbGlobalInfo 2 } - -gslbPoliciesEntry OBJECT-TYPE - SYNTAX GslbPoliciesEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - INDEX { gslbPolicyName } - ::= { gslbPoliciesTable 1 } - -GslbPoliciesEntry ::= SEQUENCE { - gslbPolicyName OCTET STRING, - totalHits Counter32 -} - -gslbPolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete as the gslb command is not supported." - ::= { gslbPoliciesEntry 1 } - -totalHits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete as the gslb command is not supported.." - ::= { gslbPoliciesEntry 2 } - -gslbDomainStats OBJECT IDENTIFIER - ::= { nsGslbGroup 3 } - -nsDomainTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsDomainEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about the Hits on the Domains." - ::= { gslbDomainStats 1 } - -nsDomainEntry OBJECT-TYPE - SYNTAX NsDomainEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { domainName } - ::= { nsDomainTable 1 } - -NsDomainEntry ::= SEQUENCE { - domainName OCTET STRING, - dnsTotalQueries Counter64, - domainNameFull OCTET STRING -} - -domainName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The domain name" - ::= { nsDomainEntry 1 } - -dnsTotalQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS queries received." - ::= { nsDomainEntry 2 } - -domainNameFull OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Full Domain name string" - ::= { nsDomainEntry 3 } - -nsPolicyEngineGroup OBJECT IDENTIFIER - ::= { nsSysGroup 52 } - -nsPolicyStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsPolicyStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains the statistics for all policies" - ::= { nsPolicyEngineGroup 1 } - -nsPolicyStatsEntry OBJECT-TYPE - SYNTAX NsPolicyStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { pengPolicyName } - ::= { nsPolicyStatsTable 1 } - -NsPolicyStatsEntry ::= SEQUENCE { - pengPolicyName OCTET STRING, - pengPolicyHits Counter32, - pengBytesIn Counter32, - pengBytesOut Counter32, - pengPolicyFullName OCTET STRING -} - -pengPolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Encoded name of the policy" - ::= { nsPolicyStatsEntry 1 } - -pengPolicyHits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total policy hits count" - ::= { nsPolicyStatsEntry 2 } - -pengBytesIn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Input traffic of a compression policy" - ::= { nsPolicyStatsEntry 3 } - -pengBytesOut OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Output traffic of a compression policy" - ::= { nsPolicyStatsEntry 4 } - -pengPolicyFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Full name of the policy" - ::= { nsPolicyStatsEntry 5 } - -nsDomainNameServiceGroup OBJECT IDENTIFIER - ::= { nsSysGroup 53 } - -nsDnsServerStatsGroup OBJECT IDENTIFIER - ::= { nsDomainNameServiceGroup 1 } - -dnsTotQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS queries received." - ::= { nsDnsServerStatsGroup 1 } - -dnsTotAnswers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS responses received." - ::= { nsDnsServerStatsGroup 2 } - -dnsTotArecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 3 } - -dnsTotAresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 4 } - -dnsTotNSrecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 5 } - -dnsTotNSresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 6 } - -dnsTotMXrecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 7 } - -dnsTotMXresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 8 } - -dnsTotSOArecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 9 } - -dnsTotSOAresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 10 } - -dnsTotCNAMErecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 11 } - -dnsTotCNAMEresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 12 } - -dnsTotUnsupportedResponseClass OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of responses for which response types were unsupported." - ::= { nsDnsServerStatsGroup 13 } - -dnsTotUnsupportedResponseType OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of responses for which response type requested was unsupported." - ::= { nsDnsServerStatsGroup 14 } - -dnsTotUnsupportedQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests for which query type requested was unsupported." - ::= { nsDnsServerStatsGroup 15 } - -dnsTotUnsupportedQueryClass OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of queries for which query class was unsupported." - ::= { nsDnsServerStatsGroup 16 } - -dnsTotInvalidQueryFormat OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of queries whose format was invalid." - ::= { nsDnsServerStatsGroup 17 } - -dnsTotNonAuthNoDatas OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of responses for which there was a format error." - ::= { nsDnsServerStatsGroup 18 } - -dnsTotMultiQuery OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of Multi Query request received." - ::= { nsDnsServerStatsGroup 19 } - -dnsTotStrayAnswer OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of stray answers." - ::= { nsDnsServerStatsGroup 20 } - -dnsTotCacheFlush OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times cache was flushed." - ::= { nsDnsServerStatsGroup 21 } - -dnsTotCacheEntriesFlush OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of cache entries flushed." - ::= { nsDnsServerStatsGroup 22 } - -dnsTotServerQuery OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of Server queries sent." - ::= { nsDnsServerStatsGroup 23 } - -dnsTotServerResponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of Server responses received." - ::= { nsDnsServerStatsGroup 24 } - -dnsTotArecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 25 } - -dnsTotNSrecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 26 } - -dnsTotMXrecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 27 } - -dnsTotCNAMErecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 28 } - -dnsTotArecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 29 } - -dnsTotNSrecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 30 } - -dnsTotMXrecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 31 } - -dnsTotSOArecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 32 } - -dnsTotCNAMErecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 33 } - -dnsTotRecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of record updates." - ::= { nsDnsServerStatsGroup 34 } - -dnsTotMultiQueryDisableError OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times a multi query was disabled and received a multi query." - ::= { nsDnsServerStatsGroup 35 } - -dnsCurArecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 36 } - -dnsCurNSrecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 37 } - -dnsCurMXrecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 38 } - -dnsCurSOArecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 39 } - -dnsCurCNAMErecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 40 } - -dnsCurAuthEntries OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of authoritative entries." - ::= { nsDnsServerStatsGroup 41 } - -dnsCurNoAuthEntries OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of non-authoritative entries." - ::= { nsDnsServerStatsGroup 42 } - -dnsTotAuthAns OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of queries which were authoritatively answered." - ::= { nsDnsServerStatsGroup 43 } - -dnsTotAuthNoNames OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of queries for which no record was found." - ::= { nsDnsServerStatsGroup 44 } - -dnsTotNoDataResps OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DNS responses received without answer." - ::= { nsDnsServerStatsGroup 45 } - -dnsTotResponseBadLen OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DNS responses received with invalid resoure data length." - ::= { nsDnsServerStatsGroup 46 } - -dnsTotReqRefusals OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DNS requests refused." - ::= { nsDnsServerStatsGroup 47 } - -dnsTotOtherErrors OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of other errors. " - ::= { nsDnsServerStatsGroup 48 } - -dnsTotPTRrecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 49 } - -dnsTotPTRresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 50 } - -dnsTotPTRrecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 51 } - -dnsTotPTRrecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 52 } - -dnsCurPTRrecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 53 } - -dnsTotSRVrecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 54 } - -dnsTotSRVresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 55 } - -dnsTotSRVrecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 56 } - -dnsTotSRVrecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 57 } - -dnsCurSRVrecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 58 } - -dnsTotAAAArecQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 59 } - -dnsTotAAAAresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 60 } - -dnsTotAAAArecUpdate OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 61 } - -dnsTotAAAArecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 62 } - -dnsCurAAAArecord OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 63 } - -dnsTotANYqueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 64 } - -dnsTotANYresponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 65 } - -dnsTotANYrecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 66 } - -dnsTotSOArecFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { nsDnsServerStatsGroup 67 } - -dns64TotQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS64 queries recieved." - ::= { nsDnsServerStatsGroup 68 } - -dns64TotAnswers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS64 answers served." - ::= { nsDnsServerStatsGroup 69 } - -dns64TotsvrAQueries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of Queries sent by DNS64 module to backend." - ::= { nsDnsServerStatsGroup 70 } - -dnsErrNullAttack OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of queries received where all the counts are 0." - ::= { nsDnsServerStatsGroup 71 } - -nsdnsRegisterTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsdnsRegisterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains statistics about each DNS record type" - ::= { nsDomainNameServiceGroup 2 } - -nsdnsRegisterEntry OBJECT-TYPE - SYNTAX NsdnsRegisterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { dnsRecordType } - ::= { nsdnsRegisterTable 1 } - -NsdnsRegisterEntry ::= SEQUENCE { - dnsRecordType OCTET STRING, - dnsTotEntries Counter64, - dnsTotUpdates Counter64, - dnsTotResponses Counter64, - dnsTotRequests Counter64, - dnsTotErrLimits Counter64, - dnsTotErrRespForm Counter64, - dnsTotErrAliasEx Counter64, - dnsTotErrNoDomains Counter64, - dnsCurEntries Gauge32, - dnsCurRecords Gauge32 -} - -dnsRecordType OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "DNS record type" - ::= { nsdnsRegisterEntry 1 } - -dnsTotEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS record entries" - ::= { nsdnsRegisterEntry 2 } - -dnsTotUpdates OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS proactive updates" - ::= { nsdnsRegisterEntry 3 } - -dnsTotResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS server responses" - ::= { nsdnsRegisterEntry 4 } - -dnsTotRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DNS queries recieved" - ::= { nsdnsRegisterEntry 5 } - -dnsTotErrLimits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times we have recieved dns record with more entries than we support" - ::= { nsdnsRegisterEntry 6 } - -dnsTotErrRespForm OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times we have recieved malformed responses from the backend" - ::= { nsdnsRegisterEntry 7 } - -dnsTotErrAliasEx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times we have recieved non-cname record for a domain for which an alias exists" - ::= { nsdnsRegisterEntry 8 } - -dnsTotErrNoDomains OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of cache misses" - ::= { nsdnsRegisterEntry 9 } - -dnsCurEntries OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of DNS entries" - ::= { nsdnsRegisterEntry 10 } - -dnsCurRecords OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of DNS Records" - ::= { nsdnsRegisterEntry 11 } - -nsIfStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsIfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The interface related statistics Table." - ::= { nsSysGroup 54 } - -nsIfStatsEntry OBJECT-TYPE - SYNTAX NsIfStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { ifName } - ::= { nsIfStatsTable 1 } - -NsIfStatsEntry ::= SEQUENCE { - ifName OCTET STRING, - ifMedia OCTET STRING, - ifTotRxBytes Counter64, - ifRxAvgBandwidthUsage Gauge32, - ifTotRxPkts Counter64, - ifRxAvgPacketRate Gauge32, - ifTotTxBytes Counter64, - ifTxAvgBandwidthUsage Gauge32, - ifTotTxPkts Counter64, - ifTxAvgPacketRate Gauge32, - ifRxCRCErrors Counter64, - ifRxFrameErrors Counter64, - ifRxAlignmentErrors Counter64, - ifTxCollisions Counter64, - ifTxExcessCollisions Counter64, - ifTxLateCollisions Counter64, - ifTxMultiCollisionErrors Counter64, - ifTxCarrierError Counter64, - ifTotRxMbits Counter64, - ifTotTxMbits Counter64, - ifTotNetScalerPkts Counter64, - ifErrDroppedRxPkts Counter64, - ifErrLinkHangs Counter32, - ifLinkReinits Counter32, - ifErrDuplexMismatch Counter32, - ifErrCongestedPktsDrops Counter64, - ifErrCongestionLimitPktDrops Counter64, - ifErrPktRx Counter64, - ifErrRxFIFO Counter64, - ifErrRxNoBuffs Counter64, - ifErrTxNoNSB Counter64, - ifErrRxFCS Counter64, - ifErrPktTx Counter64, - ifErrTxFIFO Counter64, - ifErrTxHeartBeat Counter64, - ifErrTxOverflow Counter64, - ifErrTxDeferred Counter64, - ifErrDroppedTxPkts Counter64, - ifTotRxXonPause Counter64, - ifTotRxXoffPause Counter64, - ifTotXoffStateEntered Counter64, - ifTotXonSent Counter64, - ifTotXoffSent Counter64, - ifnicStsStalls Counter32, - ifnicTxStalls Counter32, - ifnicRxStalls Counter32, - ifnicErrDisables Counter32, - ifThroughput Gauge32, - ifMinThroughput Integer32, - ifErrDroppedRxPktsRl Counter64, - ifErrRxNoNSB Counter64, - ifInterfaceAlias OCTET STRING -} - -ifName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the interface." - ::= { nsIfStatsEntry 1 } - -ifMedia OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The media type of the interface." - ::= { nsIfStatsEntry 2 } - -ifTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes received by an interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 3 } - -ifRxAvgBandwidthUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The average bandwidth, in bits per second, at which the specified interface has been receiving packets since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 4 } - -ifTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets received by an interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 5 } - -ifRxAvgPacketRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average rate, in packets per second, of incoming packets on the specified interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 6 } - -ifTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes transmitted by an interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 7 } - -ifTxAvgBandwidthUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The average bandwidth, in bits per second, at which the specified interface has been transmitting packets since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 8 } - -ifTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets transmitted by an interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 9 } - -ifTxAvgPacketRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average rate, in packets per second, of outgoing packets on the specified interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 10 } - -ifRxCRCErrors OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets received with the wrong checksum by the specified interface since the NetScaler appliance was started or the interface statistics were cleared. This indicates the number of Jabber frames received instead of CRC errors on the 10G data ports of NetScaler 12000-10G platform and the data ports of NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 11 } - -ifRxFrameErrors OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Jumbo frames(frame size greater than 1518 bytes) received by the specified interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 12 } - -ifRxAlignmentErrors OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets received with an alignment error (an error that occurs when the total number of bits of a received frame is not divisible by eight) by the specified interface. Since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 13 } - -ifTxCollisions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete" - ::= { nsIfStatsEntry 14 } - -ifTxExcessCollisions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete" - ::= { nsIfStatsEntry 15 } - -ifTxLateCollisions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete" - ::= { nsIfStatsEntry 16 } - -ifTxMultiCollisionErrors OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete" - ::= { nsIfStatsEntry 17 } - -ifTxCarrierError OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Carrier Sense errors that occur when an interface attempts to transmit a frame but is unable to do so as no carrier is detected. This statistic is applicable only to half-duplex transmissions and is available only on 1G data ports of the NetScaler 12000 platform and management ports of NetScaler MPX 15000 and 17000 platforms. - (1) Loop back interface (LO) of all platforms indicates PE fails to send packets to BSD stack because of lack of resources in BSD stack. - (2) Number of non Cisco Heart beat packet drop on internal interface. Applicable for internal interface(which is used to communicate between NXOS-NSVSB) of VPX's running on Cisco Nexus platform" - ::= { nsIfStatsEntry 18 } - -ifTotRxMbits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total data, in megabits, received by an interface since the NetScaler appliance was started or the interface statistics were cleared. This statistic also includes the Ethernet overhead bytes, i.e. preamble, inter-packet gap, and CRC." - ::= { nsIfStatsEntry 19 } - -ifTotTxMbits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total data, in megabits, transmitted by an interface since the NetScaler appliance was started or the interface statistics were cleared. This statistic also includes the Ethernet overhead bytes, i.e. preamble, inter-packet gap, and CRC." - ::= { nsIfStatsEntry 20 } - -ifTotNetScalerPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets, destined to the NetScaler, received by an interface since the NetScaler appliance was started or the interface statistics were cleared. The packets destined to NetScaler are those that have the same MAC address as that of an interface or a VMAC address owned by the NetScaler." - ::= { nsIfStatsEntry 21 } - -ifErrDroppedRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of inbound packets dropped by the specified interface. Commonly dropped packets are multicast frames, spanning tree BPDUs, packets destined to a MAC not owned by the NetScaler when L2 mode is disabled, or packets tagged for a VLAN that is not bound to the interface. This statistic will increment in most healthy networks at a steady rate regardless of traffic load. If a sharp spike in dropped packets occurs, it generally indicates an issue with connected L2 switches, such as a forwarding database overflow resulting in packets being broadcast on all ports." - ::= { nsIfStatsEntry 22 } - -ifErrLinkHangs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the specified interface detected hangs in the transmit and receive paths since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 23 } - -ifLinkReinits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the link has been re-initialized. A re-initialization occurs due to link state change, configuration parameter change, or administrative reset operation." - ::= { nsIfStatsEntry 24 } - -ifErrDuplexMismatch OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times duplex mismatches were detected on the specified interface since the NetScaler appliance was started or the interface statistics were cleared. A mismatch will occur if the duplex mode is not identically set on both ends of the link. This statistic is only available on the NetScaler Classic edition." - ::= { nsIfStatsEntry 25 } - -ifErrCongestedPktsDrops OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of outbound packets dropped from the normal and low-priority transmit (Tx) overflow queues, during congestion on the specified interface, since the NetScaler appliance was started or the interface statistics were cleared. This could be caused by one of the following: - 1) Packets that have been in the overflow queue for more than 10 milliseconds. - 2) Shortage of free receive buffers on the NetScaler." - ::= { nsIfStatsEntry 26 } - -ifErrCongestionLimitPktDrops OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of transmit (Tx) packets dropped from normal and low-priority transmit overflow queues, during congestion on the specified interface, since the NetScaler appliance was started or the interface statistics were cleared. This is caused when the overflow queue limits are exceeded." - ::= { nsIfStatsEntry 27 } - -ifErrPktRx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of inbound packets dropped by the hardware on a specified interface once the NetScaler appliance starts or the interface statistics are cleared. This happens due to following reasons: - 1) The hardware receives packets at a rate higher rate than that at which the software is processing packets. In this case, the hardware FIFO overruns and starts dropping the packets . - 2) The specified interface fails to receive inbound packets from the appliance because of insufficient memory. - 3) The specified interface receives packets with CRC errors (Alignment or Frame Check Sequence). - 4) The specified interface receives overly long packets. - 5) The specified interface receives packets with alignment errors. - 6) The software does less buffering because it is running out of available memory. When hardware detects that there is no space into which to push newly arrived packets, it starts dropping them. - 7) The specified interface receives packets with Frame Check Sequence (FCS) errors. - 8) The specified interface receives packets smaller than 64 bytes. - 9) The specified interface discards error-free inbound packets because of insufficient resources. For example: NIC buffers. - 10) Packets are missed because of collision detection, link lost, physical decoding error, or MAC abort." - ::= { nsIfStatsEntry 28 } - -ifErrRxFIFO OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number packet drops due to insufficient space in the receive queue, on the specified interface, since the NetScaler appliance was started or the interface statistics were cleared. This statistic is only available on the data ports of the NetScaler 12000 platform and the NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 29 } - -ifErrRxNoBuffs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NIC hardware reported an error, due to packets drops caused by lack of buffers. This statistic is available on: - (1) All ports except management ports on NetScaler MPX 15000 and 17000 platforms. - (2) All 1G ports on NetScaler MPX 7500, 9500, 10500, 12500, 15500, 17500, 19500, and 21500 platforms." - ::= { nsIfStatsEntry 30 } - -ifErrTxNoNSB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object has been obsoleted. This was wrongly included as snmp object for nic_err_rx_nonsb counter." - ::= { nsIfStatsEntry 31 } - -ifErrRxFCS OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets received with Frame Check Sequence(FCS) errors, on the specified interface, since the NetScaler appliance was started or the interface statistics were cleared. This statistic is available only on data ports of the NetScaler 12000 platform and NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 32 } - -ifErrPktTx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of outbound packets dropped by the hardware on a specified interface since the NetScaler appliance was started or the interface statistics were cleared. This could happen due to length (undersize or oversize) errors and lack of resources. This statistic is available only for: - (1) Loop back interface (LO) of all platforms. - (2) All data ports on the NetScaler 12000 platform. - (3) Management ports on the MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 33 } - -ifErrTxFIFO OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the hardware reported an error in accumulating packets for transmission on the specified interface. This statistic is only available on 10G ports of the NetScaler 12000-10G platform and data ports of the NetScaler MPX 15000 and 17000 platforms. - (1) Loop back interfaces (LO) of all platform indicates packets crossed allowed limit, which is 10K PPS on LO interface" - ::= { nsIfStatsEntry 34 } - -ifErrTxHeartBeat OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 10Mb link heartbeats on the specified interface. This counter is deprecated now. (Informational - 10MbMb half-duplex only)" - ::= { nsIfStatsEntry 35 } - -ifErrTxOverflow OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets that have passed through the overflow queues, during transmission on the specified interface, since the NetScaler appliance was started or the interface statistics were cleared. This gets incremented only on congested ports." - ::= { nsIfStatsEntry 36 } - -ifErrTxDeferred OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "This object is now obsolete" - ::= { nsIfStatsEntry 37 } - -ifErrDroppedTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets dropped in transmission by the specified interface due to one of the following reasons. - (1) VLAN mismatch. - (2) Oversized packets. - (3) Interface congestion. - (4) Loopback packets sent on non loop back interface." - ::= { nsIfStatsEntry 38 } - -ifTotRxXonPause OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Pause frames received on the specified interface with pause time set to zero. This statistic is not available on 10G ports of the NetScaler 12000-10G platform and data ports of the NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 39 } - -ifTotRxXoffPause OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Pause frames received by the specified interface with the pause time greater than zero. This statistic is only available on 10G ports of the NetScaler 12000-10G platform and data ports of the NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 40 } - -ifTotXoffStateEntered OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times transmission was stopped on the specified interface due to the receipt of Pause frames. This statistic is only available on 10G ports of the NetScaler 12000-10G platform and data ports of the NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 41 } - -ifTotXonSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of pause frames, sent by the specified interface, with pause time set to zero to restart transmission. This statistic is not available on 10G ports of the NetScaler 12000-10G platform and data ports of the NetScaler MPX 15000 and 17000 platforms." - ::= { nsIfStatsEntry 42 } - -ifTotXoffSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Pause frames sent by the specified interface with the pause time greater than zero. This statistic is only available on 10G ports of the NetScaler 12000-10G platform and data ports of the NetScaler MPX 15000 and 17000 platforms. This statistic also includes the Pause frames with pause time equal to zero." - ::= { nsIfStatsEntry 43 } - -ifnicStsStalls OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the status updates for a specified interface were stalled since the NetScaler appliance was started or the interface statistics were cleared. A status stall is detected when the status of the interface is not updated by the NIC hardware within 0.8 seconds of the last update." - ::= { nsIfStatsEntry 44 } - -ifnicTxStalls OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the interface stalled, when transmitting packets, since the NetScaler appliance was started or the interface statistics were cleared. Transmit (Tx) stalls are detected when a packet posted for transmission is not transmitted in 4 seconds." - ::= { nsIfStatsEntry 45 } - -ifnicRxStalls OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the interface stalled, when receiving packets, since the NetScaler appliance was started or the interface statistics were cleared. Receive (Rx) stalls are detected when the following conditions are met: - (1)The link is up for more than 10 minutes. - (2)Packets are transmitted, but no packets is received for 16 seconds." - ::= { nsIfStatsEntry 46 } - -ifnicErrDisables OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the specified interface is disabled by the NetScaler, due to continuous Receive (Rx) or Transmit (Tx) stalls, since the NetScaler appliance was started or the interface statistics were cleared. The NetScaler disables an interface when one of the following conditions is met: - (1) Three consecutive transmit stalls occurs with at most gap of 10 seconds between any two stalls. - (2) Three consecutive receive stalls occurs with at most gap of 120 seconds between any two stalls." - ::= { nsIfStatsEntry 47 } - -ifThroughput OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface throughput in Mbps" - ::= { nsIfStatsEntry 48 } - -ifMinThroughput OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface minimum throughput in Mbps" - ::= { nsIfStatsEntry 49 } - -ifErrDroppedRxPktsRl OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of packets dropped due to license limit on the specified interface." - ::= { nsIfStatsEntry 50 } - -ifErrRxNoNSB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NetScaler failed to allocate buffers, for inbound packets, for the specified interface since the NetScaler appliance was started or the interface statistics were cleared." - ::= { nsIfStatsEntry 51 } - -ifInterfaceAlias OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Alias Name for the Interface" - ::= { nsIfStatsEntry 52 } - -nsScPolicyGroup OBJECT IDENTIFIER - ::= { nsSysGroup 55 } - -scPolicyStatistics OBJECT IDENTIFIER - ::= { nsScPolicyGroup 1 } - -scPolicyUrlHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of incoming requests that matched configured sureconnect policies." - ::= { scPolicyStatistics 1 } - -scPopUps OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of in-memory java script served which throws the pop-up window." - ::= { scPolicyStatistics 2 } - -scAltContUrls OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of alternate content served which throws the pop-up window." - ::= { scPolicyStatistics 3 } - -scSessionReqs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests that were handled in a single SureConnect session." - ::= { scPolicyStatistics 4 } - -scPostReqs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of HTTP POST requests that triggered SureConnect feature." - ::= { scPolicyStatistics 5 } - -scThresholdFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of times SureConnect was not triggered because the thresholds conditions failed." - ::= { scPolicyStatistics 6 } - -scFaultyCookies OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of corrupted SureConnect cookies." - ::= { scPolicyStatistics 7 } - -scUnSupBrow OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests that came from all unsupported browsers." - ::= { scPolicyStatistics 8 } - -scResetStats OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Toal number of times that SureConnect statistics were reset." - ::= { scPolicyStatistics 9 } - -scTotCondTriggered OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times that SureConnect conditions were triggered." - ::= { scPolicyStatistics 10 } - -scTotReissuedRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of reissued SureConnect requests." - ::= { scPolicyStatistics 11 } - -scPolicyConfig OBJECT IDENTIFIER - ::= { nsScPolicyGroup 2 } - -scPolicyConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF ScPolicyConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The sure connect policy configuration table" - ::= { scPolicyConfig 1 } - -scPolicyConfigEntry OBJECT-TYPE - SYNTAX ScPolicyConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { scPolicyName } - ::= { scPolicyConfigTable 1 } - -ScPolicyConfigEntry ::= SEQUENCE { - scPolicyName OCTET STRING, - scPolUrl OCTET STRING, - scDelayThreshold Integer32, - scMaxConnections Integer32, - scActionType ActionType, - scAlternateContentServiceName OCTET STRING, - scRuleName OCTET STRING, - scAlternateContentPath OCTET STRING -} - -scPolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of Sure Connect policy." - ::= { scPolicyConfigEntry 1 } - -scPolUrl OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The URL in the IOH Policy." - ::= { scPolicyConfigEntry 2 } - -scDelayThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The delay threshold for sc policy." - ::= { scPolicyConfigEntry 3 } - -scMaxConnections OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The max connections for sc policy." - ::= { scPolicyConfigEntry 4 } - -scActionType OBJECT-TYPE - SYNTAX ActionType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of action that NetScaler takes when initiating on-hold." - ::= { scPolicyConfigEntry 5 } - -scAlternateContentServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The alternate service name for the content." - ::= { scPolicyConfigEntry 6 } - -scRuleName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The rule that the NetScaler matches with the incoming request." - ::= { scPolicyConfigEntry 7 } - -scAlternateContentPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The alternate path for the content." - ::= { scPolicyConfigEntry 8 } - -nsSslConfigGroup OBJECT IDENTIFIER - ::= { nsSysGroup 56 } - -sslCertKeyTable OBJECT-TYPE - SYNTAX SEQUENCE OF SslCertKeyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The ssl certificate key pair configuration information" - ::= { nsSslConfigGroup 1 } - -sslCertKeyEntry OBJECT-TYPE - SYNTAX SslCertKeyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { sslCertKeyName } - ::= { sslCertKeyTable 1 } - -SslCertKeyEntry ::= SEQUENCE { - sslCertKeyName OCTET STRING, - sslCertPath OCTET STRING, - sslKeyPath OCTET STRING, - sslInputFormat InputFormat, - sslDaysToExpire Integer32 -} - -sslCertKeyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The certificate key pair Name." - ::= { sslCertKeyEntry 1 } - -sslCertPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The certificate path." - ::= { sslCertKeyEntry 2 } - -sslKeyPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The private key path." - ::= { sslCertKeyEntry 3 } - -sslInputFormat OBJECT-TYPE - SYNTAX InputFormat - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The input format of the certificate key pair." - ::= { sslCertKeyEntry 4 } - -sslDaysToExpire OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of days remaining for the certificate to expire." - ::= { sslCertKeyEntry 5 } - -sslCrlTable OBJECT-TYPE - SYNTAX SEQUENCE OF SslCrlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The ssl CRL configuration information" - ::= { nsSslConfigGroup 2 } - -sslCrlEntry OBJECT-TYPE - SYNTAX SslCrlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { sslCrlName } - ::= { sslCrlTable 1 } - -SslCrlEntry ::= SEQUENCE { - sslCrlName OCTET STRING, - sslCrlPath OCTET STRING, - sslCrlInputFormat InputFormat -} - -sslCrlName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of CRL." - ::= { sslCrlEntry 1 } - -sslCrlPath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The CRL path." - ::= { sslCrlEntry 2 } - -sslCrlInputFormat OBJECT-TYPE - SYNTAX InputFormat - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The input format of CRL." - ::= { sslCrlEntry 3 } - -sslCipherGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF SslCipherGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The Cipher group configuration information" - ::= { nsSslConfigGroup 3 } - -sslCipherGroupEntry OBJECT-TYPE - SYNTAX SslCipherGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { sslCipherGroupName , sslCipherName } - ::= { sslCipherGroupTable 1 } - -SslCipherGroupEntry ::= SEQUENCE { - sslCipherGroupName OCTET STRING, - sslCipherName OCTET STRING, - sslCipherDesc OCTET STRING -} - -sslCipherGroupName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Cipher group name." - ::= { sslCipherGroupEntry 1 } - -sslCipherName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Cipher name." - ::= { sslCipherGroupEntry 2 } - -sslCipherDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Cipher description." - ::= { sslCipherGroupEntry 3 } - -nsDosPolicyGroup OBJECT IDENTIFIER - ::= { nsSysGroup 57 } - -dosPolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF DosPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The dos policy configuration table" - ::= { nsDosPolicyGroup 1 } - -dosPolicyEntry OBJECT-TYPE - SYNTAX DosPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { dosPolicyName } - ::= { dosPolicyTable 1 } - -DosPolicyEntry ::= SEQUENCE { - dosPolicyName OCTET STRING, - thresholdValue Integer32 -} - -dosPolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of the policy" - ::= { dosPolicyEntry 1 } - -thresholdValue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Threshold surge count to detect an attack, for this DosPolicy" - ::= { dosPolicyEntry 2 } - -dosPolicyStatistics OBJECT IDENTIFIER - ::= { nsDosPolicyGroup 2 } - -dosTotConditionTriggered OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the NetScaler appliance triggered the DOS JavaScript due to a condition match." - ::= { dosPolicyStatistics 1 } - -dosTotValidCookies OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients from whom the NetScaler appliance received a valid DOS cookie." - ::= { dosPolicyStatistics 2 } - -dosTotDosPriorityClients OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of valid clients that were given DOS priority." - ::= { dosPolicyStatistics 3 } - -dosAvgValidClients OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average number of DOS clients that returned a valid DOS cookie." - ::= { dosPolicyStatistics 4 } - -dosAvgDospriClients OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average number of clients that were given DOS priority." - ::= { dosPolicyStatistics 5 } - -nsExpressionTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsExpressionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Expression related configuration" - ::= { nsSysGroup 58 } - -nsExpressionEntry OBJECT-TYPE - SYNTAX NsExpressionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { expressionName } - ::= { nsExpressionTable 1 } - -NsExpressionEntry ::= SEQUENCE { - expressionName OCTET STRING, - expressionTotalHits Counter64 -} - -expressionName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of the expression." - ::= { nsExpressionEntry 1 } - -expressionTotalHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of hits to this expression. " - ::= { nsExpressionEntry 2 } - -nsPqPolicyGroup OBJECT IDENTIFIER - ::= { nsSysGroup 59 } - -pqPolicyConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF PqPolicyConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The priority queuing policy configuration table" - ::= { nsPqPolicyGroup 1 } - -pqPolicyConfigEntry OBJECT-TYPE - SYNTAX PqPolicyConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { pqName } - ::= { pqPolicyConfigTable 1 } - -PqPolicyConfigEntry ::= SEQUENCE { - pqName OCTET STRING, - pqRuleName OCTET STRING, - pqQdepthThreshold Integer32, - pqPolQdepthThreshold Integer32, - pqPriority Integer32, - pqPolicyWeight Integer32 -} - -pqName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the PQ policy bound to Load Balancing vserver." - ::= { pqPolicyConfigEntry 1 } - -pqRuleName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Rule Name configuration for PQ policy." - ::= { pqPolicyConfigEntry 2 } - -pqQdepthThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vip threshold value for qdepth in PQ policy." - ::= { pqPolicyConfigEntry 3 } - -pqPolQdepthThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The policy threshold value for qdepth in PQ policy." - ::= { pqPolicyConfigEntry 4 } - -pqPriority OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The priority of this PQ policy." - ::= { pqPolicyConfigEntry 5 } - -pqPolicyWeight OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The weight of this PQ policy." - ::= { pqPolicyConfigEntry 6 } - -pqPolicyStatistics OBJECT IDENTIFIER - ::= { nsPqPolicyGroup 2 } - -pqTotalPolicyMatches OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the Netscaler appliance matched an incoming request using any priority queuing policy." - ::= { pqPolicyStatistics 1 } - -pqTotalThresholdFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the Netscaler appliance failed to match an incoming request to any of priority queing policy." - ::= { pqPolicyStatistics 2 } - -pqPriority1Requests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of priority 1 requests that the Netscaler appliance received." - ::= { pqPolicyStatistics 3 } - -pqPriority2Requests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of priority 2 requests that the Netscaler appliance received." - ::= { pqPolicyStatistics 4 } - -pqPriority3Requests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of priority 3 requests that the Netscaler appliance received." - ::= { pqPolicyStatistics 5 } - -crConfigGroup OBJECT IDENTIFIER - ::= { nsSysGroup 60 } - -crPolicyMapConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF CrPolicyMapConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The CR map configuration information " - ::= { crConfigGroup 1 } - -crPolicyMapConfigEntry OBJECT-TYPE - SYNTAX CrPolicyMapConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { crMapName } - ::= { crPolicyMapConfigTable 1 } - -CrPolicyMapConfigEntry ::= SEQUENCE { - crMapName OCTET STRING, - crMapSrcName OCTET STRING, - crMapDstName OCTET STRING, - crMapSrcUrl OCTET STRING, - crMapDstUrl OCTET STRING -} - -crMapName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the map policy." - ::= { crPolicyMapConfigEntry 1 } - -crMapSrcName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the source domain hosted by the map." - ::= { crPolicyMapConfigEntry 2 } - -crMapDstName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the destination domain hosted by the map." - ::= { crPolicyMapConfigEntry 3 } - -crMapSrcUrl OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Url to be modified under the given source domain." - ::= { crPolicyMapConfigEntry 4 } - -crMapDstUrl OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Url after mapping." - ::= { crPolicyMapConfigEntry 5 } - -monitorCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of monitors defined on this NetScaler appliance." - ::= { nsSysGroup 61 } - -monitorBindCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of monitor bindings defined on this NetScaler appliance." - ::= { nsSysGroup 62 } - -htmlInjectionStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 63 } - -htmlInjectedBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes injected during HTML injection." - ::= { htmlInjectionStatsGroup 1 } - -htmlInjectionSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { htmlInjectionStatsGroup 2 } - -htmlInjectionTotalSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { htmlInjectionStatsGroup 3 } - -htmlInjectMemAllocFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times memory allocation failed during configuration of HTML injection." - ::= { htmlInjectionStatsGroup 4 } - -htmlInitFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { htmlInjectionStatsGroup 5 } - -appFirewallGroup OBJECT IDENTIFIER - ::= { nsSysGroup 64 } - -appFirewallStatistics OBJECT IDENTIFIER - ::= { appFirewallGroup 1 } - -appFirewallRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HTTP/HTTPS requests sent to your protected web servers via the Application Firewall." - ::= { appFirewallStatistics 1 } - -appFirewallResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HTTP/HTTPS responses sent by your protected web servers via the Application Firewall." - ::= { appFirewallStatistics 2 } - -appFirewallAborts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Incomplete HTTP/HTTPS requests aborted by the client before the Application Firewall could finish processing them." - ::= { appFirewallStatistics 3 } - -appFirewallRedirects OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HTTP/HTTPS requests redirected by the Application Firewall to a different Web page or web server. (HTTP 302)" - ::= { appFirewallStatistics 4 } - -appFirewallViolStartURL OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Start URL security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 5 } - -appFirewallViolDenyURL OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Deny URL security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 6 } - -appFirewallViolBufferOverflow OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Buffer Overflow security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 7 } - -appFirewallViolCookie OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Cookie Consistency security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 8 } - -appFirewallViolXSS OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTML Cross-Site Scripting security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 9 } - -appFirewallViolSQL OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTML SQL Injection security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 10 } - -appFirewallViolFieldformat OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Field Format security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 11 } - -appFirewallViolFieldConsistency OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Field Consistency security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 12 } - -appFirewallViolCreditCard OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Credit Card security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 13 } - -appFirewallViolSafeObject OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Safe Object security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 14 } - -appFirewallTotalViol OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 15 } - -appFirewallViolWellformednessViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Format security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 16 } - -appFirewallViolXdosViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Denial-of-Service security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 17 } - -appFirewallViolMsgValViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Message Validation security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 18 } - -appFirewallViolWSIViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Web Services Interoperability (WS-I) security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 19 } - -appFirewallViolXmlSqlViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML SQL Injection security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 20 } - -appFirewallViolXmlXssViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Cross-Site Scripting (XSS) security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 21 } - -appFirewallViolXmlAttachmentViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Attachment security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 22 } - -appFirewallViolCSRFtag OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Cross Site Request Forgery form tag security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 23 } - -appFirewallViolRefererHeader OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Referer Header security check violations seen by the Application Firewall." - ::= { appFirewallStatistics 24 } - -appFirewallViolXmlSoapFaultViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning soap:fault from the backend server" - ::= { appFirewallStatistics 25 } - -appFirewallRet4xx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning HTTP 4xx from the backend server" - ::= { appFirewallStatistics 26 } - -appFirewallRet5xx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning HTTP 5xx from the backend server" - ::= { appFirewallStatistics 27 } - -appFirewallReqBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes transfered for requests" - ::= { appFirewallStatistics 28 } - -appFirewallResBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes transfered for responses" - ::= { appFirewallStatistics 29 } - -appFirewallLongAvgRespTime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average backend response time in milliseconds since reboot" - ::= { appFirewallStatistics 30 } - -appFirewallShortAvgRespTime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average backend response time in milliseconds over the last 7 seconds" - ::= { appFirewallStatistics 31 } - -appFirewallViolXmlGenViolations OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning XML generic error from the backend server" - ::= { appFirewallStatistics 32 } - -appFirewallViolSignature OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Signature violations seen by the Application Firewall." - ::= { appFirewallStatistics 33 } - -appFirewallTrapsDropped OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "AppFirewall SNMP traps dropped due to time limit." - ::= { appFirewallStatistics 34 } - -appfwProfileTable OBJECT-TYPE - SYNTAX SEQUENCE OF AppfwProfileEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "" - ::= { appFirewallGroup 2 } - -appfwProfileEntry OBJECT-TYPE - SYNTAX AppfwProfileEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { appfwprofileName } - ::= { appfwProfileTable 1 } - -AppfwProfileEntry ::= SEQUENCE { - appfwprofileName OCTET STRING, - appfwappFirewallRequestsPerProfile Counter64, - appfwappFirewallResponsesPerProfile Counter64, - appfwappFirewallAbortsPerProfile Counter64, - appfwappFirewallRedirectsPerProfile Counter64, - appfwappFirewallViolStartURLPerProfile Counter64, - appfwappFirewallViolDenyURLPerProfile Counter64, - appfwappFirewallViolRefererHeaderPerProfile Counter64, - appfwappFirewallViolBufferOverflowPerProfile Counter64, - appfwappFirewallViolCSRFtagPerProfile Counter64, - appfwappFirewallViolCookiePerProfile Counter64, - appfwappFirewallViolXSSPerProfile Counter64, - appfwappFirewallViolSQLPerProfile Counter64, - appfwappFirewallViolFieldformatPerProfile Counter64, - appfwappFirewallViolFieldConsistencyPerProfile Counter64, - appfwappFirewallViolCreditCardPerProfile Counter64, - appfwappFirewallViolSafeObjectPerProfile Counter64, - appfwappFirewallViolWellformednessViolationsPerProfile Counter64, - appfwappFirewallViolXdosViolationsPerProfile Counter64, - appfwappFirewallViolMsgValViolationsPerProfile Counter64, - appfwappFirewallViolWSIViolationsPerProfile Counter64, - appfwappFirewallViolXmlSqlViolationsPerProfile Counter64, - appfwappFirewallViolXmlXssViolationsPerProfile Counter64, - appfwappFirewallViolXmlAttachmentViolationsPerProfile Counter64, - appfwappFirewallTotalViolPerProfile Counter64, - appfwappFirewallRet4xxPerProfile Counter64, - appfwappFirewallRet5xxPerProfile Counter64, - appfwappFirewallViolXmlSoapFaultViolationsPerProfile Counter64, - appfwappFirewallReqBytesPerProfile Counter64, - appfwappFirewallResBytesPerProfile Counter64, - appfwappFirewallLongAvgRespTimePerProfile Counter64, - appfwappFirewallShortAvgRespTimePerProfile Counter64, - appfwappFirewallViolXmlGenericViolationsPerProfile Counter64, - appfwappFirewallViolSignaturePerProfile Counter64 -} - -appfwprofileName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the Application Firewall profile" - ::= { appfwProfileEntry 1 } - -appfwappFirewallRequestsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HTTP/HTTPS requests sent to your protected web servers via the Application Firewall." - ::= { appfwProfileEntry 2 } - -appfwappFirewallResponsesPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HTTP/HTTPS responses sent by your protected web servers via the Application Firewall." - ::= { appfwProfileEntry 3 } - -appfwappFirewallAbortsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Incomplete HTTP/HTTPS requests aborted by the client before the Application Firewall could finish processing them." - ::= { appfwProfileEntry 4 } - -appfwappFirewallRedirectsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HTTP/HTTPS requests redirected by the Application Firewall to a different Web page or web server. (HTTP 302)" - ::= { appfwProfileEntry 5 } - -appfwappFirewallViolStartURLPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Start URL security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 6 } - -appfwappFirewallViolDenyURLPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Deny URL security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 7 } - -appfwappFirewallViolRefererHeaderPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Referer Header security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 8 } - -appfwappFirewallViolBufferOverflowPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Buffer Overflow security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 9 } - -appfwappFirewallViolCSRFtagPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Cross Site Request Forgery form tag security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 10 } - -appfwappFirewallViolCookiePerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Cookie Consistency security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 11 } - -appfwappFirewallViolXSSPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTML Cross-Site Scripting security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 12 } - -appfwappFirewallViolSQLPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of HTML SQL Injection security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 13 } - -appfwappFirewallViolFieldformatPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Field Format security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 14 } - -appfwappFirewallViolFieldConsistencyPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Field Consistency security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 15 } - -appfwappFirewallViolCreditCardPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Credit Card security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 16 } - -appfwappFirewallViolSafeObjectPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Safe Object security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 17 } - -appfwappFirewallViolWellformednessViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Format security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 18 } - -appfwappFirewallViolXdosViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Denial-of-Service security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 19 } - -appfwappFirewallViolMsgValViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Message Validation security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 20 } - -appfwappFirewallViolWSIViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Web Services Interoperability (WS-I) security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 21 } - -appfwappFirewallViolXmlSqlViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML SQL Injection security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 22 } - -appfwappFirewallViolXmlXssViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Cross-Site Scripting (XSS) security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 23 } - -appfwappFirewallViolXmlAttachmentViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of XML Attachment security check violations seen by the Application Firewall." - ::= { appfwProfileEntry 24 } - -appfwappFirewallTotalViolPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of violations seen by the application firewall on per profile basis" - ::= { appfwProfileEntry 25 } - -appfwappFirewallRet4xxPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning HTTP 4xx from the backend server" - ::= { appfwProfileEntry 26 } - -appfwappFirewallRet5xxPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning HTTP 5xx from the backend server" - ::= { appfwProfileEntry 27 } - -appfwappFirewallViolXmlSoapFaultViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning soap:fault from the backend server" - ::= { appfwProfileEntry 28 } - -appfwappFirewallReqBytesPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes transfered for requests" - ::= { appfwProfileEntry 29 } - -appfwappFirewallResBytesPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of bytes transfered for responses" - ::= { appfwProfileEntry 30 } - -appfwappFirewallLongAvgRespTimePerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average backend response time in milliseconds since reboot" - ::= { appfwProfileEntry 31 } - -appfwappFirewallShortAvgRespTimePerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average backend response time in milliseconds over the last 7 seconds" - ::= { appfwProfileEntry 32 } - -appfwappFirewallViolXmlGenericViolationsPerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests returning XML generic violation from the backend server" - ::= { appfwProfileEntry 33 } - -appfwappFirewallViolSignaturePerProfile OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Signature violations seen by the Application Firewall." - ::= { appfwProfileEntry 34 } - -nsRnatStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 65 } - -nsRnatGlobalStats OBJECT IDENTIFIER - ::= { nsRnatStatsGroup 1 } - -rnatTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes received during RNAT sessions." - ::= { nsRnatGlobalStats 1 } - -rnatTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes sent during RNAT sessions." - ::= { nsRnatGlobalStats 2 } - -rnatTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received during RNAT sessions." - ::= { nsRnatGlobalStats 3 } - -rnatTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets sent during RNAT sessions." - ::= { nsRnatGlobalStats 4 } - -rnatTotTxSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Requests for connections sent during RNAT sessions." - ::= { nsRnatGlobalStats 5 } - -rnatCurSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently active RNAT sessions." - ::= { nsRnatGlobalStats 6 } - -nsRnatPerIPStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsRnatPerIPStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains statistics related to rnat for the natip" - ::= { nsRnatStatsGroup 2 } - -nsRnatPerIPStatsEntry OBJECT-TYPE - SYNTAX NsRnatPerIPStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { ipAddr } - ::= { nsRnatPerIPStatsTable 1 } - -NsRnatPerIPStatsEntry ::= SEQUENCE { - ipRnatTotRxBytes Counter64, - ipRnatTotTxBytes Counter64, - ipRnatTotRxPkts Counter64, - ipRnatTotTxPkts Counter64, - ipRnatTotTxSyn Counter64, - ipRnatCurSessions Gauge32 -} - -ipRnatTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes received on this IP address during RNAT sessions." - ::= { nsRnatPerIPStatsEntry 1 } - -ipRnatTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes sent from this IP address during RNAT sessions." - ::= { nsRnatPerIPStatsEntry 2 } - -ipRnatTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received on this IP address during RNAT sessions." - ::= { nsRnatPerIPStatsEntry 3 } - -ipRnatTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets sent from this IP address during RNAT sessions." - ::= { nsRnatPerIPStatsEntry 4 } - -ipRnatTotTxSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Requests for connections sent from this IP address during RNAT sessions." - ::= { nsRnatPerIPStatsEntry 5 } - -ipRnatCurSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently active RNAT sessions started from this IP address." - ::= { nsRnatPerIPStatsEntry 6 } - -nsSslVpnStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 66 } - -indexHtmlHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests for VPN login page." - ::= { nsSslVpnStatsGroup 1 } - -indexHtmlNoServed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failures to display VPN login page." - ::= { nsSslVpnStatsGroup 2 } - -cfgHtmlServed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client configuration requests received by VPN server." - ::= { nsSslVpnStatsGroup 3 } - -dnsReqHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of DNS queries resolved by VPN server." - ::= { nsSslVpnStatsGroup 4 } - -winsRequestHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of WINS queries resolved by VPN server." - ::= { nsSslVpnStatsGroup 5 } - -csRequestHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SSL VPN tunnels formed between VPN server and client." - ::= { nsSslVpnStatsGroup 6 } - -csNonHttpProbeHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of probes from VPN to back-end non-HTTP servers that have been accessed by the VPN client." - ::= { nsSslVpnStatsGroup 7 } - -csHttpProbeHit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of probes from VPN to back-end HTTP servers that have been accessed by the VPN client." - ::= { nsSslVpnStatsGroup 8 } - -totalCsConnSucc OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of successful probes to all back-end servers." - ::= { nsSslVpnStatsGroup 9 } - -totalFsRequest OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of file system requests received by VPN server." - ::= { nsSslVpnStatsGroup 10 } - -iipDisabledMIPdisabled OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Both IIP and SNIP is disabled." - ::= { nsSslVpnStatsGroup 11 } - -iipFailedMIPdisabled OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times IIP assignment failed and SNIP is disabled." - ::= { nsSslVpnStatsGroup 12 } - -iipDisabledMIPused OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times SNIP is used as IIP is disabled." - ::= { nsSslVpnStatsGroup 13 } - -iipFailedMIPused OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times SNIP is used as IIP assignment failed." - ::= { nsSslVpnStatsGroup 14 } - -socksMethReqRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of received SOCKS method request." - ::= { nsSslVpnStatsGroup 15 } - -socksMethReqSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of sent SOCKS method request." - ::= { nsSslVpnStatsGroup 16 } - -socksMethRespRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of received SOCKS method response." - ::= { nsSslVpnStatsGroup 17 } - -socksMethRespSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of sent SOCKS method response." - ::= { nsSslVpnStatsGroup 18 } - -socksConnReqRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of received SOCKS connect request." - ::= { nsSslVpnStatsGroup 19 } - -socksConnReqSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of sent SOCKS connect request." - ::= { nsSslVpnStatsGroup 20 } - -socksConnRespRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of received SOCKS connect response." - ::= { nsSslVpnStatsGroup 21 } - -socksConnRespSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of sent SOCKS connect response." - ::= { nsSslVpnStatsGroup 22 } - -socksServerError OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SOCKS server error." - ::= { nsSslVpnStatsGroup 23 } - -socksClientError OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of SOCKS client error." - ::= { nsSslVpnStatsGroup 24 } - -staConnSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA connection success." - ::= { nsSslVpnStatsGroup 25 } - -staConnFailure OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA connection failure." - ::= { nsSslVpnStatsGroup 26 } - -cpsConnSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of CPS connection success." - ::= { nsSslVpnStatsGroup 27 } - -cpsConnFailure OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of CPS connection failure." - ::= { nsSslVpnStatsGroup 28 } - -staRequestSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA request sent." - ::= { nsSslVpnStatsGroup 29 } - -staResponseRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA response received." - ::= { nsSslVpnStatsGroup 30 } - -icaLicenseFailure OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICA license failure." - ::= { nsSslVpnStatsGroup 31 } - -staRenewSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA renew requests sent." - ::= { nsSslVpnStatsGroup 32 } - -staRenewRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA renew response received." - ::= { nsSslVpnStatsGroup 33 } - -staReassErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA response reassembly errors." - ::= { nsSslVpnStatsGroup 34 } - -staRnewNoClnt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA renew repsonse for missing clients." - ::= { nsSslVpnStatsGroup 35 } - -staRenewNoRfsh OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA renew response missing refesh values." - ::= { nsSslVpnStatsGroup 36 } - -staValidNoClnt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA validate response for clients that have already closed." - ::= { nsSslVpnStatsGroup 37 } - -staValidNoEst OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA validate responses for clients not in TCP ESTABLISHED state." - ::= { nsSslVpnStatsGroup 38 } - -staMonSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA monitor requests sent." - ::= { nsSslVpnStatsGroup 39 } - -staMonRcvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA monitor responses recieved." - ::= { nsSslVpnStatsGroup 40 } - -staMonSucc OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA monitor successful responses." - ::= { nsSslVpnStatsGroup 41 } - -staMonFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA monitor failed responses." - ::= { nsSslVpnStatsGroup 42 } - -iipSpilloverMIPused OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times SNIP is used on IIP Spillover." - ::= { nsSslVpnStatsGroup 43 } - -iPv6tov4FindIPv6MapErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of IPv6toIPv4 find IPv6 mapping errors." - ::= { nsSslVpnStatsGroup 44 } - -iPv6toV4MapInsertErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Ipv6 to Ipv4 mapping Insert Errors." - ::= { nsSslVpnStatsGroup 45 } - -parseIPv6AddressErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Errors in parsing for Ipv6 address from address string." - ::= { nsSslVpnStatsGroup 46 } - -dtlsStaValidation OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA validation requests on DTLS" - ::= { nsSslVpnStatsGroup 47 } - -dtlsStaValidationError OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA validation request errors on DTLS" - ::= { nsSslVpnStatsGroup 48 } - -dtlsStaReconnectTktReq OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of STA Reconnet ticket requests on DTLS" - ::= { nsSslVpnStatsGroup 49 } - -dtlsStaPostResponseSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Successfull STA Validations done on DTLS" - ::= { nsSslVpnStatsGroup 50 } - -dtlsStaPostResponseError OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of errors during STA Validations on DTLS" - ::= { nsSslVpnStatsGroup 51 } - -nsAaaStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 67 } - -aaaAuthFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of authentication failures." - ::= { nsAaaStatsGroup 1 } - -aaaAuthSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of authentication successes." - ::= { nsAaaStatsGroup 2 } - -aaaAuthNonHttpFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of non HTTP connections that failed authorization." - ::= { nsAaaStatsGroup 3 } - -aaaAuthOnlyHttpFail OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of HTTP connections that failed authorization." - ::= { nsAaaStatsGroup 4 } - -aaaAuthNonHttpSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of non HTTP connections that succeeded authorization." - ::= { nsAaaStatsGroup 5 } - -aaaAuthOnlyHttpSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of HTTP connections that succeeded authorization." - ::= { nsAaaStatsGroup 6 } - -aaaTotSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of all AAA sessions." - ::= { nsAaaStatsGroup 7 } - -aaaTotSessionTimeout OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of AAA sessions that have timed out." - ::= { nsAaaStatsGroup 8 } - -aaaCurSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of current AAA sessions." - ::= { nsAaaStatsGroup 9 } - -aaaCurICASessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of current ICA only sessions." - ::= { nsAaaStatsGroup 10 } - -aaaCurTMSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of current AAATM sessions." - ::= { nsAaaStatsGroup 11 } - -aaaTotTMSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of all AAATM sessions." - ::= { nsAaaStatsGroup 12 } - -aaaCurICAOnlyConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of current ICA only connections." - ::= { nsAaaStatsGroup 13 } - -aaaCurICAConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of current ICA connections." - ::= { nsAaaStatsGroup 14 } - -nsGlobalConfigSettings OBJECT IDENTIFIER - ::= { nsSysGroup 68 } - -webServerHttpPorts OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The HTTP ports on the Web server. System performs connection off-load for any client request that has a destination port matching one of these configured ports. " - ::= { nsGlobalConfigSettings 1 } - -maxTcpConnections OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of connections that will be made from the system to the web server(s) attached to it. This value is applied globally to all attached servers." - ::= { nsGlobalConfigSettings 2 } - -maxReqPerConnection OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of requests that the system can pass on a particular connection between the system and a server attached to it. If the Value is zero, then it allows an unlimited number of requests to be passed." - ::= { nsGlobalConfigSettings 3 } - -cipInsertionStatus OBJECT-TYPE - SYNTAX ModeStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the option to control (enable or disable) the insertion of the actual client IP address into the HTTP header request passed from the client to any of the servers attached to the system. The passed address can then be accessed through a minor modification to the server. If cipHeader is specified, it will be used as the client IP header. If it is not specified, then the value that has been set by the set ns config CLI command will be used as the client IP header." - ::= { nsGlobalConfigSettings 4 } - -cipInsertionHeader OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the text that will be used as the client IP header." - ::= { nsGlobalConfigSettings 5 } - -cookieVersionInserted OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The version of the cookie inserted by the system." - ::= { nsGlobalConfigSettings 6 } - -minPathMTU OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum Path MTU of the system." - ::= { nsGlobalConfigSettings 7 } - -mtuEntryTimeoutValue OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The timeout value of MTU entries." - ::= { nsGlobalConfigSettings 8 } - -ftpPortRange OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Port range configured for FTP services." - ::= { nsGlobalConfigSettings 9 } - -nsPolicyInfrastructureGroup OBJECT IDENTIFIER - ::= { nsSysGroup 69 } - -piPolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF PiPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The policy relationship table" - ::= { nsPolicyInfrastructureGroup 1 } - -piPolicyEntry OBJECT-TYPE - SYNTAX PiPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { piPolName } - ::= { piPolicyTable 1 } - -PiPolicyEntry ::= SEQUENCE { - piPolName OCTET STRING, - piPolicyHits Counter64, - piPolicyUndefHits Counter64, - piPolFullName OCTET STRING -} - -piPolName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Encoded name of the PI policy" - ::= { piPolicyEntry 1 } - -piPolicyHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of hits on the policy" - ::= { piPolicyEntry 2 } - -piPolicyUndefHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of undef hits on the policy" - ::= { piPolicyEntry 3 } - -piPolFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Full name of the PI policy" - ::= { piPolicyEntry 4 } - -nsInetAddressTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsInetAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about the IPv6 addresses configured on the NetScaler." - ::= { nsSysGroup 70 } - -nsInetAddressEntry OBJECT-TYPE - SYNTAX NsInetAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { nsInetAddressType , nsInetAddress } - ::= { nsInetAddressTable 1 } - -NsInetAddressEntry ::= SEQUENCE { - nsInetAddressType InetAddressType, - nsInetAddress InetAddress, - nsInetMaskLenth Gauge32, - nsInetType IpAddressType, - nsInetMode IpAddressMode, - nsInetFreePorts Gauge32, - nsInetVlan OCTET STRING, - nsInetBridgeGroup OCTET STRING, - nsInetVxlan OCTET STRING -} - -nsInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of nsInetAddress" - ::= { nsInetAddressEntry 1 } - -nsInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents an IPv4/v6 address configured on the NetScaler" - ::= { nsInetAddressEntry 2 } - -nsInetMaskLenth OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents netmask length." - ::= { nsInetAddressEntry 3 } - -nsInetType OBJECT-TYPE - SYNTAX IpAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address type" - ::= { nsInetAddressEntry 4 } - -nsInetMode OBJECT-TYPE - SYNTAX IpAddressMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address mode" - ::= { nsInetAddressEntry 5 } - -nsInetFreePorts OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the number of unused ports free on this IP" - ::= { nsInetAddressEntry 6 } - -nsInetVlan OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vlan to which this ip address is bound." - ::= { nsInetAddressEntry 7 } - -nsInetBridgeGroup OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The bridge group to which this ip address is bound." - ::= { nsInetAddressEntry 8 } - -nsInetVxlan OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vxlan to which this ip address is bound." - ::= { nsInetAddressEntry 9 } - -nsNicStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 71 } - -allNicTotRxMbits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of megabits received by the NetScaler appliance." - ::= { nsNicStatsGroup 1 } - -allNicTotTxMbits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of megabits transmitted by the NetScaler appliance." - ::= { nsNicStatsGroup 2 } - -clusterTable OBJECT-TYPE - SYNTAX SEQUENCE OF ClusterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The cluster table." - ::= { nsSysGroup 72 } - -clusterEntry OBJECT-TYPE - SYNTAX ClusterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { clnodeID } - ::= { clusterTable 1 } - -ClusterEntry ::= SEQUENCE { - clnodeID OCTET STRING, - clPeerIP IpAddress, - clNodeIP IpAddress, - clAdminState ClusterAdminState, - clMasterState ClusterMasterState, - clNodeHealth ClusterCurHealth, - clNodeEffectiveHealth ClusterEffHealth, - clSyncState ClusterSyncState, - clNodeViewQuorum OCTET STRING, - clNodeHealthReason OCTET STRING -} - -clnodeID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the unique id of the cluster node" - ::= { clusterEntry 1 } - -clPeerIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address of the cluster node " - ::= { clusterEntry 2 } - -clNodeIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the ip of the cluster node for which notification is being sent" - ::= { clusterEntry 3 } - -clAdminState OBJECT-TYPE - SYNTAX ClusterAdminState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Admin State of the node in the cluster." - ::= { clusterEntry 4 } - -clMasterState OBJECT-TYPE - SYNTAX ClusterMasterState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Operational state of the cluster node." - ::= { clusterEntry 5 } - -clNodeHealth OBJECT-TYPE - SYNTAX ClusterCurHealth - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Health of the node in the cluster." - ::= { clusterEntry 6 } - -clNodeEffectiveHealth OBJECT-TYPE - SYNTAX ClusterEffHealth - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Health of the cluster node." - ::= { clusterEntry 7 } - -clSyncState OBJECT-TYPE - SYNTAX ClusterSyncState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Sync state of the cluster node." - ::= { clusterEntry 8 } - -clNodeViewQuorum OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents whether the node view of cluster has quorum or not" - ::= { clusterEntry 9 } - -clNodeHealthReason OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the reason for bad health of the cluster node" - ::= { clusterEntry 10 } - -nsClusterStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 73 } - -clViewLeader OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "NSIP address of the Configuration Coordinator of the cluster." - ::= { nsClusterStatsGroup 1 } - -nsInatStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 74 } - -nsInatGlobalStats OBJECT IDENTIFIER - ::= { nsInatStatsGroup 1 } - -nat46TotTcp46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total TCP packets translated (V4->v6)." - ::= { nsInatGlobalStats 1 } - -nat46TotUdp46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total UDP packets translated (V4->v6)." - ::= { nsInatGlobalStats 2 } - -nat46TotIcmp46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total ICMP packets translated (V4->v6)." - ::= { nsInatGlobalStats 3 } - -nat46TotDrop46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total IPV4 packets dropped." - ::= { nsInatGlobalStats 4 } - -nat46TotTcp64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total TCP packets translated (V6->v4)." - ::= { nsInatGlobalStats 5 } - -nat46TotUdp64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total UDP packets translated (V6->v4)." - ::= { nsInatGlobalStats 6 } - -nat46TotIcmp64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total ICMP packets translated (V6->v4)." - ::= { nsInatGlobalStats 7 } - -nat46TotDrop64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total IPV6 packets dropped." - ::= { nsInatGlobalStats 8 } - -nsInatPerNat46StatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsInatPerNat46StatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This provides statistics related to per nat46 rule" - ::= { nsInatStatsGroup 2 } - -nsInatPerNat46StatsEntry OBJECT-TYPE - SYNTAX NsInatPerNat46StatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { inatname } - ::= { nsInatPerNat46StatsTable 1 } - -NsInatPerNat46StatsEntry ::= SEQUENCE { - inatname OCTET STRING, - inatNat46Tcp46 Counter64, - inatNat46Udp46 Counter64, - inatNat46Icmp46 Counter64, - inatNat46Drop46 Counter64, - inatNat46Tcp64 Counter64, - inatNat46Udp64 Counter64, - inatNat46Icmp64 Counter64, - inatNat46Drop64 Counter64 -} - -inatname OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the INAT" - ::= { nsInatPerNat46StatsEntry 1 } - -inatNat46Tcp46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP packets translated (V4->v6)." - ::= { nsInatPerNat46StatsEntry 2 } - -inatNat46Udp46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "UDP packets translated (V4->v6)." - ::= { nsInatPerNat46StatsEntry 3 } - -inatNat46Icmp46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP packets translated (V4->v6)." - ::= { nsInatPerNat46StatsEntry 4 } - -inatNat46Drop46 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPV4 packets dropped." - ::= { nsInatPerNat46StatsEntry 5 } - -inatNat46Tcp64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP packets translated (V6->v4)." - ::= { nsInatPerNat46StatsEntry 6 } - -inatNat46Udp64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "UDP packets translated (V6->v4)." - ::= { nsInatPerNat46StatsEntry 7 } - -inatNat46Icmp64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ICMP packets translated (V6->v4)." - ::= { nsInatPerNat46StatsEntry 8 } - -inatNat46Drop64 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPV6 packets dropped." - ::= { nsInatPerNat46StatsEntry 9 } - -nsInatPerNatStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsInatPerNatStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This provides statistics related to per inat session" - ::= { nsInatStatsGroup 3 } - -nsInatPerNatStatsEntry OBJECT-TYPE - SYNTAX NsInatPerNatStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { inat44name } - ::= { nsInatPerNatStatsTable 1 } - -NsInatPerNatStatsEntry ::= SEQUENCE { - inat44name OCTET STRING, - inatTotHits Counter64, - inatCurSessions Counter64, - inatTotReceiveBytes Counter64, - inatTotSentBytes Counter64, - inatTotpktreceived Counter64, - inatTotpktsent Counter64 -} - -inat44name OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the INAT" - ::= { nsInatPerNatStatsEntry 1 } - -inatTotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "INAT total sessions" - ::= { nsInatPerNatStatsEntry 2 } - -inatCurSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "INAT current sessions" - ::= { nsInatPerNatStatsEntry 3 } - -inatTotReceiveBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "INAT total Received Bytes" - ::= { nsInatPerNatStatsEntry 4 } - -inatTotSentBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "INAT total Sent Bytes" - ::= { nsInatPerNatStatsEntry 5 } - -inatTotpktreceived OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "INAT total Packets Received" - ::= { nsInatPerNatStatsEntry 6 } - -inatTotpktsent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "INAT total Packets Sent" - ::= { nsInatPerNatStatsEntry 7 } - -nsNat64StatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 75 } - -nsNat64GlobalStats OBJECT IDENTIFIER - ::= { nsNat64StatsGroup 1 } - -nat64TotUdpSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of UDP sessions created by NAT64." - ::= { nsNat64GlobalStats 1 } - -nat64TotTcpSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of TCP sessions created by NAT64." - ::= { nsNat64GlobalStats 2 } - -nat64TotSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of sessions created by NAT64." - ::= { nsNat64GlobalStats 3 } - -nat64TotIcmpSessions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of ICMP sessions created by NAT64." - ::= { nsNat64GlobalStats 4 } - -nsIp6StatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 76 } - -ipv6TotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPv6 packets received." - ::= { nsIp6StatsGroup 1 } - -ipv6TotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPv6 packets transmitted" - ::= { nsIp6StatsGroup 2 } - -ipv6TotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of IPv6 data received." - ::= { nsIp6StatsGroup 3 } - -ipv6TotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of IPv6 data transmitted." - ::= { nsIp6StatsGroup 4 } - -ipv6FragTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPv6 fragments received." - ::= { nsIp6StatsGroup 5 } - -ipv6FragTotPktsForward OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPv6 fragments forwarded to the client or server without reassembly." - ::= { nsIp6StatsGroup 6 } - -ipv6FragTotPktsProcessNoReass OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPv6 fragments processed without reassembly." - ::= { nsIp6StatsGroup 7 } - -ipv6ErrHdr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received that contain an error in one or more components of the IPv6 header." - ::= { nsIp6StatsGroup 8 } - -ipv6LandAttack OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Land-attack packets received. The source and destination addresses are the same. If not dropped, these packets can lock up the appliance." - ::= { nsIp6StatsGroup 9 } - -ipv6FragZeroLenPkt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received with a fragment length of 0 bytes." - ::= { nsIp6StatsGroup 10 } - -ipv6TotIcmpFragPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMPV6 fragmented packets." - ::= { nsIp6StatsGroup 11 } - -ipv6TotLookupDone OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of nd6 lookup done." - ::= { nsIp6StatsGroup 12 } - -ipv6TotLookupFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of nd6 lookup failed." - ::= { nsIp6StatsGroup 13 } - -ipv6TotStaticRoutes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of static ipv6 routes." - ::= { nsIp6StatsGroup 14 } - -ipv6TotDynamicRoutes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of dynamic ipv6 routes." - ::= { nsIp6StatsGroup 15 } - -ipv6TotNeigborDiscovered OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of nd6 entries both dynamic and static." - ::= { nsIp6StatsGroup 16 } - -ipv6TotIpv6To4Conversions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of ipv6 to v4 conversion done." - ::= { nsIp6StatsGroup 17 } - -ipv6TotIpv4To6Conversions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of ipv4 to v6 conversion done." - ::= { nsIp6StatsGroup 18 } - -ipv6TotTcpConnection OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP connections over IPv6." - ::= { nsIp6StatsGroup 19 } - -ipv6TotNonTcpConnection OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Non TCP connections over IPv6." - ::= { nsIp6StatsGroup 20 } - -nsTdInetAddressTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsTdInetAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about the non-default Td IP Addresses configured on the NetScaler." - ::= { nsSysGroup 77 } - -nsTdInetAddressEntry OBJECT-TYPE - SYNTAX NsTdInetAddressEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { nsTdInetId , nsTdInetAddressType , nsTdInetAddress } - ::= { nsTdInetAddressTable 1 } - -NsTdInetAddressEntry ::= SEQUENCE { - nsTdInetId Integer32, - nsTdInetAddressType InetAddressType, - nsTdInetAddress InetAddress, - nsTdInetMaskLength Gauge32, - nsTdInetType IpAddressType, - nsTdInetMode IpAddressMode, - nsTdInetFreePorts Gauge32, - nsTdInetVlan OCTET STRING, - nsTdInetBridgeGroup OCTET STRING, - nsTdInetVxlan OCTET STRING -} - -nsTdInetId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents a traffic domain ID" - ::= { nsTdInetAddressEntry 1 } - -nsTdInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of nsTdInetAddress" - ::= { nsTdInetAddressEntry 2 } - -nsTdInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents an IPv4/v6 address configured on the NetScaler" - ::= { nsTdInetAddressEntry 3 } - -nsTdInetMaskLength OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents netmask length." - ::= { nsTdInetAddressEntry 4 } - -nsTdInetType OBJECT-TYPE - SYNTAX IpAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address type" - ::= { nsTdInetAddressEntry 5 } - -nsTdInetMode OBJECT-TYPE - SYNTAX IpAddressMode - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the IP address mode" - ::= { nsTdInetAddressEntry 6 } - -nsTdInetFreePorts OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the number of unused ports free on this IP" - ::= { nsTdInetAddressEntry 7 } - -nsTdInetVlan OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vlan to which this ip address is bound." - ::= { nsTdInetAddressEntry 8 } - -nsTdInetBridgeGroup OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The bridge group to which this ip address is bound." - ::= { nsTdInetAddressEntry 9 } - -nsTdInetVxlan OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vxlan to which this ip address is bound." - ::= { nsTdInetAddressEntry 10 } - -nsCaStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 78 } - -caTotaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 1 } - -caTotgetobjreq OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 2 } - -caTotlookuphit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This number should be close to the number of hits being served currently." - ::= { nsCaStatsGroup 3 } - -caTotlookupnostoremiss OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 4 } - -caTotRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 5 } - -caTotlookupstoremiss OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 6 } - -caTotobjstored OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 7 } - -caTotvideo OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 8 } - -caTotother OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 9 } - -caTotputobjreq OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 10 } - -caTotrespbytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsCaStatsGroup 11 } - -caMsftSmthStrmVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming requests served by NS" - ::= { nsCaStatsGroup 12 } - -cacMsftSmthStrmVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming requests served from cache" - ::= { nsCaStatsGroup 13 } - -caMsftSmthStrmVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming bytes served by NS " - ::= { nsCaStatsGroup 14 } - -caMicrosoftSmoothStreamingVidCacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming bytes served from cache." - ::= { nsCaStatsGroup 15 } - -caMsftSmthStrVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming Playlist requests served by NS" - ::= { nsCaStatsGroup 16 } - -cacMsftSmthStrmPlVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming Playlist requests served from cache" - ::= { nsCaStatsGroup 17 } - -caMsftSmthStrmPlVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming Playlist bytes served by NS " - ::= { nsCaStatsGroup 18 } - -caMicrosoftSmoothStreamingPlaylistVidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MicrosoftSmoothStreaming Playlist bytes served from cache" - ::= { nsCaStatsGroup 19 } - -cacApleLiveStrmngVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive requests served by NS" - ::= { nsCaStatsGroup 20 } - -cacAppleLiveStreamingVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive requests served from cache" - ::= { nsCaStatsGroup 21 } - -caAppleLiveStreamingVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive bytes served by NS " - ::= { nsCaStatsGroup 22 } - -caAppleLiveStreamingVidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive bytes served from cache" - ::= { nsCaStatsGroup 23 } - -cacAppleLiveStrmngVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive Playlist requests served by NS" - ::= { nsCaStatsGroup 24 } - -cacAppleLiveStreamingPlaylistVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive Playlist requests served from cache" - ::= { nsCaStatsGroup 25 } - -caAppleLiveStreamingPlaylistVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive Playlist bytes served by NS " - ::= { nsCaStatsGroup 26 } - -caAppleLiveStreamingPlaylistVidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive Playlist bytes served from cache" - ::= { nsCaStatsGroup 27 } - -caADTSaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of ADTS requests served by NS" - ::= { nsCaStatsGroup 28 } - -cacADTSaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of ADTS requests served from cache" - ::= { nsCaStatsGroup 29 } - -caADTSaudioBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of ADTS bytes served by NS " - ::= { nsCaStatsGroup 30 } - -caADTSaudiocacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of ADTS bytes served from cache" - ::= { nsCaStatsGroup 31 } - -caAACaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AAC requests served by NS" - ::= { nsCaStatsGroup 32 } - -cacAACaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AAC requests served from cache" - ::= { nsCaStatsGroup 33 } - -caAACaudiobytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AAC bytes served by NS " - ::= { nsCaStatsGroup 34 } - -caAACaudiocachebytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AAC bytes served from cache" - ::= { nsCaStatsGroup 35 } - -caFLVVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of FLV requests served by NS" - ::= { nsCaStatsGroup 36 } - -cacFLVVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of FLV requests served from cache" - ::= { nsCaStatsGroup 37 } - -caFLVVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of FLV bytes served by NS " - ::= { nsCaStatsGroup 38 } - -caFLVVidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of FLV bytes served from cache" - ::= { nsCaStatsGroup 39 } - -caMP4Vid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MP4 requests served by NS" - ::= { nsCaStatsGroup 40 } - -cacMP4Vid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MP4 requests served from cache" - ::= { nsCaStatsGroup 41 } - -caMP4VidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MP4 bytes served by NS " - ::= { nsCaStatsGroup 42 } - -caMP4VidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MP4 bytes served from cache" - ::= { nsCaStatsGroup 43 } - -ca3PVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of 3GP requests served by NS" - ::= { nsCaStatsGroup 44 } - -ca3GPVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of 3GP requests served from cache" - ::= { nsCaStatsGroup 45 } - -ca3GPVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of 3GP bytes served by NS " - ::= { nsCaStatsGroup 46 } - -ca3GPVidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of 3GP bytes served from cache" - ::= { nsCaStatsGroup 47 } - -caMsftSmthStrmVidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of MicrosoftSmoothStreaming requests" - ::= { nsCaStatsGroup 48 } - -cacMsftSmthStrmPlVidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of MicrosoftSmoothStreaming Playlist requests" - ::= { nsCaStatsGroup 49 } - -cacAppleLiveStreamingVidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of AppleLive requests" - ::= { nsCaStatsGroup 50 } - -cacAppleLiveStreamingPlaylistVidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of AppleLive Playlist requests" - ::= { nsCaStatsGroup 51 } - -cacADTSaudioHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the Hit Ratio of ADTS requests" - ::= { nsCaStatsGroup 52 } - -cacAACaudioHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of AAC requests" - ::= { nsCaStatsGroup 53 } - -cacFLVVidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of FLV requests" - ::= { nsCaStatsGroup 54 } - -cacMP4VidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of MP4 requests" - ::= { nsCaStatsGroup 55 } - -ca3GPVidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of 3GP requests" - ::= { nsCaStatsGroup 56 } - -caMsftSmthStrmngVidCaBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the Bytes hit ratio of MicrosoftSmoothStreaming bytes ." - ::= { nsCaStatsGroup 57 } - -caMsftSmthStrmngPlVidcaBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the byte hit ratio of MicrosoftSmoothStreaming Playlist bytes " - ::= { nsCaStatsGroup 58 } - -caAppleLiveStrmngVidcacheBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive bytes " - ::= { nsCaStatsGroup 59 } - -caApleLiveStrmngPlVidcacheBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the byte hit ratio of AppleLive Playlist bytes " - ::= { nsCaStatsGroup 60 } - -caADTSaudiocacheBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the byte hit ratio of ADTS bytes " - ::= { nsCaStatsGroup 61 } - -caAACaudiocachebytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio AAC bytes served" - ::= { nsCaStatsGroup 62 } - -caFLVVidcacheBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of FLV bytes" - ::= { nsCaStatsGroup 63 } - -caMP4VidcacheBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of MP4 bytes" - ::= { nsCaStatsGroup 64 } - -ca3GPVidcacheBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of 3GP bytes" - ::= { nsCaStatsGroup 65 } - -caAndroid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of android requests to netscaler" - ::= { nsCaStatsGroup 66 } - -caLaptopDesktp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of laptop/desktop requests to netscaler" - ::= { nsCaStatsGroup 67 } - -caIos OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of iOs requests to netscaler" - ::= { nsCaStatsGroup 68 } - -caOther OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of other mobile device requests to netscaler" - ::= { nsCaStatsGroup 69 } - -caUnidentified OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of unidentified requests to netscaler" - ::= { nsCaStatsGroup 70 } - -caAndroidcache OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells android requests served from cache" - ::= { nsCaStatsGroup 71 } - -caIoscache OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells iOS requests served from cache" - ::= { nsCaStatsGroup 72 } - -caOthercache OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells Other device requests served from cache" - ::= { nsCaStatsGroup 73 } - -calaptopDesktpcache OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells laptop/desktop requests served from cache" - ::= { nsCaStatsGroup 74 } - -caUnidentifiedcache OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells unidentified device requests served from cache" - ::= { nsCaStatsGroup 75 } - -caAndroidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Android bytes served by NS " - ::= { nsCaStatsGroup 76 } - -caIosBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of IOS bytes served by NS " - ::= { nsCaStatsGroup 77 } - -caOtherBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Other mobile device bytes served by NS " - ::= { nsCaStatsGroup 78 } - -caAlptopDsktpBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Laptop/desktop bytes served by NS " - ::= { nsCaStatsGroup 79 } - -caUnidentifiedBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of unidentified device bytes served by NS " - ::= { nsCaStatsGroup 80 } - -caAndroididcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Android bytes served from cache" - ::= { nsCaStatsGroup 81 } - -caIosidcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of IOS bytes served from cache" - ::= { nsCaStatsGroup 82 } - -caOtherididcacheBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of other device bytes served from cache" - ::= { nsCaStatsGroup 83 } - -caLaptpdektpBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Laptop/desktop bytes served from cache" - ::= { nsCaStatsGroup 84 } - -caAunindentifiedBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of unindentified device bytes served from cache" - ::= { nsCaStatsGroup 85 } - -caAndroidHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of android requests " - ::= { nsCaStatsGroup 86 } - -calaptopDesktpHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of laptop/desktop requests" - ::= { nsCaStatsGroup 87 } - -caotherHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of other mobile device requests " - ::= { nsCaStatsGroup 88 } - -caIosHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of ios requests" - ::= { nsCaStatsGroup 89 } - -caUnidentifiedHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of android requests" - ::= { nsCaStatsGroup 90 } - -caAndroidBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of 3GP bytes" - ::= { nsCaStatsGroup 91 } - -caLaptpdsktpBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of laptop_desktop bytes" - ::= { nsCaStatsGroup 92 } - -caotherBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of Other device" - ::= { nsCaStatsGroup 93 } - -caiosBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of IOS bytes" - ::= { nsCaStatsGroup 94 } - -caAunindentifiedBytesHR OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the hit ratio of unindentified bytes" - ::= { nsCaStatsGroup 95 } - -nsvPathStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 79 } - -vPathTotL2DataRx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of non-fragmented vPath data packets decapsulated in L2 adjacency" - ::= { nsvPathStatsGroup 1 } - -vPathTotL3DataRx OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of non-fragmented vPath data packets decapsulated in L3 adjacency" - ::= { nsvPathStatsGroup 2 } - -vPathTotL2CntrlPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of vPath control packets received in L2 adjacency" - ::= { nsvPathStatsGroup 3 } - -vPathTotL3CntrlPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of vPath control packets received in L3 adjacency" - ::= { nsvPathStatsGroup 4 } - -vPathTotFragPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of vPath fragments received" - ::= { nsvPathStatsGroup 5 } - -vPathTotL2EncapPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of L2 vPath encapsulated packets injected to VEM" - ::= { nsvPathStatsGroup 6 } - -vPathTotL3EncapPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of L3 vPath encapsulated packets injected to VEM" - ::= { nsvPathStatsGroup 7 } - -vPathTotFragEncapPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of fragmented vPath packets transmitted" - ::= { nsvPathStatsGroup 8 } - -vPathTotOffload OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of offloaded vPath packets transmitted" - ::= { nsvPathStatsGroup 9 } - -nsLLDPGroup OBJECT IDENTIFIER - ::= { nsSysGroup 80 } - -nsLLDPConfigGroup OBJECT IDENTIFIER - ::= { nsLLDPGroup 1 } - -lldpMessageTxInterval OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TIme interval at which lldp packets will be sent." - ::= { nsLLDPConfigGroup 1 } - -lldpMessageTxHoldMultiplier OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time-to-live value expressed as a multiple of the lldpMessageTxInterval and lldpMessageTxHoldMultiplier." - ::= { nsLLDPConfigGroup 2 } - -nsLLDPStatsGroup OBJECT IDENTIFIER - ::= { nsLLDPGroup 2 } - -nsLLDPStatsTxPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLLDPStatsTxPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about statistics of LLDP packets transmission. " - ::= { nsLLDPStatsGroup 1 } - -nsLLDPStatsTxPortEntry OBJECT-TYPE - SYNTAX NsLLDPStatsTxPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lldpStatsTxPortNum } - ::= { nsLLDPStatsTxPortTable 1 } - -NsLLDPStatsTxPortEntry ::= SEQUENCE { - lldpStatsTxPortNum OCTET STRING, - lldpStatsTxPortFramesTotal Counter64 -} - -lldpStatsTxPortNum OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface number" - ::= { nsLLDPStatsTxPortEntry 1 } - -lldpStatsTxPortFramesTotal OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total LLDP Packets transmitted" - ::= { nsLLDPStatsTxPortEntry 2 } - -nsLLDPStatsRxPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLLDPStatsRxPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains information about statistics of recieved LLDP packets. " - ::= { nsLLDPStatsGroup 2 } - -nsLLDPStatsRxPortEntry OBJECT-TYPE - SYNTAX NsLLDPStatsRxPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lldpStatsRxPortNum } - ::= { nsLLDPStatsRxPortTable 1 } - -NsLLDPStatsRxPortEntry ::= SEQUENCE { - lldpStatsRxPortNum OCTET STRING, - lldpStatsRxPortTLVsDiscardedTotal Counter64, - lldpStatsRxPortFramesErrors Counter64, - lldpStatsRxPortFramesTotal Counter64, - lldpStatsRxPortTLVsUnrecognizedTotal Counter64 -} - -lldpStatsRxPortNum OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface number" - ::= { nsLLDPStatsRxPortEntry 1 } - -lldpStatsRxPortTLVsDiscardedTotal OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total discarded LLDP packets." - ::= { nsLLDPStatsRxPortEntry 2 } - -lldpStatsRxPortFramesErrors OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total errors in LLDP packets." - ::= { nsLLDPStatsRxPortEntry 3 } - -lldpStatsRxPortFramesTotal OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total LLDP Packets received." - ::= { nsLLDPStatsRxPortEntry 4 } - -lldpStatsRxPortTLVsUnrecognizedTotal OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total TLVs not Recognised." - ::= { nsLLDPStatsRxPortEntry 5 } - -lldpStatsRemTablesLastChangeTime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time stamp at which last change in Remote table seen." - ::= { nsLLDPStatsGroup 3 } - -lldpStatsRemTablesInserts OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total inserts in Remote LLDP table." - ::= { nsLLDPStatsGroup 4 } - -lldpStatsRemTablesDeletes OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total deletes in Remote LLDP table." - ::= { nsLLDPStatsGroup 5 } - -lldpStatsRemTablesAgeouts OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total Aged out entries in Remote LLDP table." - ::= { nsLLDPStatsGroup 6 } - -nsLLDPLocSystemsGroup OBJECT IDENTIFIER - ::= { nsLLDPGroup 3 } - -nsLLDPLocPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLLDPLocPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This Table contains LLDP information of local port. " - ::= { nsLLDPLocSystemsGroup 1 } - -nsLLDPLocPortEntry OBJECT-TYPE - SYNTAX NsLLDPLocPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lldpLocPortNum } - ::= { nsLLDPLocPortTable 1 } - -NsLLDPLocPortEntry ::= SEQUENCE { - lldpLocPortNum OCTET STRING, - lldpLocPortIdSubtype Integer32, - lldpLocPortId OCTET STRING -} - -lldpLocPortNum OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface Number" - ::= { nsLLDPLocPortEntry 1 } - -lldpLocPortIdSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Local port id sub type" - ::= { nsLLDPLocPortEntry 2 } - -lldpLocPortId OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Local port id" - ::= { nsLLDPLocPortEntry 3 } - -nsLLDPLocManAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLLDPLocManAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This Table contains LLDP information of local management address. " - ::= { nsLLDPLocSystemsGroup 2 } - -nsLLDPLocManAddrEntry OBJECT-TYPE - SYNTAX NsLLDPLocManAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lldpLocManAddrSubtype } - ::= { nsLLDPLocManAddrTable 1 } - -NsLLDPLocManAddrEntry ::= SEQUENCE { - lldpLocManAddrSubtype Integer32, - lldpLocManAddr OCTET STRING, - lldpLocManAddrIfSubtype Integer32, - lldpLocManAddrIfId Integer32, - lldpLocManAddrOID OCTET STRING -} - -lldpLocManAddrSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Management address subtype of Remote System" - ::= { nsLLDPLocManAddrEntry 1 } - -lldpLocManAddr OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Management address of Local System" - ::= { nsLLDPLocManAddrEntry 2 } - -lldpLocManAddrIfSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface subtype" - ::= { nsLLDPLocManAddrEntry 3 } - -lldpLocManAddrIfId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "interface id" - ::= { nsLLDPLocManAddrEntry 4 } - -lldpLocManAddrOID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Management address OID" - ::= { nsLLDPLocManAddrEntry 5 } - -lldpLocChassisIdSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Local chassis Id type" - ::= { nsLLDPLocSystemsGroup 3 } - -lldpLocChassisId OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Local chassis Id" - ::= { nsLLDPLocSystemsGroup 4 } - -lldpLocSysName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Local Sytem Name" - ::= { nsLLDPLocSystemsGroup 5 } - -lldpLocSysDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Sytem description" - ::= { nsLLDPLocSystemsGroup 6 } - -lldpLocSysCapSupported OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Capabilities supported by local system" - ::= { nsLLDPLocSystemsGroup 7 } - -lldpLocSysCapEnabled OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Capabilities enabled on local system" - ::= { nsLLDPLocSystemsGroup 8 } - -nsLLDPRemSystemsGroup OBJECT IDENTIFIER - ::= { nsLLDPGroup 4 } - -nsLLDPRemTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLLDPRemEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains lldp information of neighbors. " - ::= { nsLLDPRemSystemsGroup 1 } - -nsLLDPRemEntry OBJECT-TYPE - SYNTAX NsLLDPRemEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lldpRemLocalPortNum } - ::= { nsLLDPRemTable 1 } - -NsLLDPRemEntry ::= SEQUENCE { - lldpRemTimeMark Integer32, - lldpRemLocalPortNum OCTET STRING, - lldpRemChassisIdSubtype Integer32, - lldpRemChassisId OCTET STRING, - lldpRemPortIdSubtype Integer32, - lldpRemPortId OCTET STRING, - lldpRemPortDesc OCTET STRING, - lldpRemSysName OCTET STRING, - lldpRemSysDesc OCTET STRING, - lldpRemSysCapSupported Integer32, - lldpRemSysCapEnabled Integer32 -} - -lldpRemTimeMark OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time mark when lldp info recieved" - ::= { nsLLDPRemEntry 1 } - -lldpRemLocalPortNum OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "local nic no" - ::= { nsLLDPRemEntry 2 } - -lldpRemChassisIdSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ChassisId subtype of remote system" - ::= { nsLLDPRemEntry 3 } - -lldpRemChassisId OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Chassiss id of remote system" - ::= { nsLLDPRemEntry 4 } - -lldpRemPortIdSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "port id subtype of remote system" - ::= { nsLLDPRemEntry 5 } - -lldpRemPortId OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "port id of remote system" - ::= { nsLLDPRemEntry 6 } - -lldpRemPortDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "port description of remote system" - ::= { nsLLDPRemEntry 7 } - -lldpRemSysName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "remote system name" - ::= { nsLLDPRemEntry 8 } - -lldpRemSysDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "remote system description" - ::= { nsLLDPRemEntry 9 } - -lldpRemSysCapSupported OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "remote system capabilities" - ::= { nsLLDPRemEntry 10 } - -lldpRemSysCapEnabled OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "enabled capabilities of system" - ::= { nsLLDPRemEntry 11 } - -nsLLDPRemManAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLLDPRemManAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains LLDP information about management address of neighbors. " - ::= { nsLLDPRemSystemsGroup 2 } - -nsLLDPRemManAddrEntry OBJECT-TYPE - SYNTAX NsLLDPRemManAddrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lldpRemLocalPortNum , lldpRemManAddr } - ::= { nsLLDPRemManAddrTable 1 } - -NsLLDPRemManAddrEntry ::= SEQUENCE { - lldpRemManAddrSubtype Integer32, - lldpRemManAddr OCTET STRING, - lldpRemManAddrIfSubtype Integer32, - lldpRemManAddrIfId Integer32, - lldpRemManAddrOID OCTET STRING -} - -lldpRemManAddrSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Management address subtype of Remote System" - ::= { nsLLDPRemManAddrEntry 1 } - -lldpRemManAddr OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Management address of Remote System" - ::= { nsLLDPRemManAddrEntry 2 } - -lldpRemManAddrIfSubtype OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interface subtype" - ::= { nsLLDPRemManAddrEntry 3 } - -lldpRemManAddrIfId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "interface id" - ::= { nsLLDPRemManAddrEntry 4 } - -lldpRemManAddrOID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Management address OID" - ::= { nsLLDPRemManAddrEntry 5 } - -vxlanTable OBJECT-TYPE - SYNTAX SEQUENCE OF VxlanEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vxlan related statistics table." - ::= { nsSysGroup 81 } - -vxlanEntry OBJECT-TYPE - SYNTAX VxlanEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vxlanVNId } - ::= { vxlanTable 1 } - -VxlanEntry ::= SEQUENCE { - vxlanVNId Integer32, - vxlanTotRxPkts Counter64, - vxlanTotRxBytes Counter64, - vxlanTotTxPkts Counter64, - vxlanTotTxBytes Counter64 -} - -vxlanVNId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the VNID of the vxlan" - ::= { vxlanEntry 1 } - -vxlanTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets received on the VXLAN." - ::= { vxlanEntry 2 } - -vxlanTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of data received on the VXLAN." - ::= { vxlanEntry 3 } - -vxlanTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets transmitted on the VXLAN." - ::= { vxlanEntry 4 } - -vxlanTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bytes of data transmitted on the VXLAN." - ::= { vxlanEntry 5 } - -cacheGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF CacheGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Content Group Table" - ::= { nsSysGroup 82 } - -cacheGroupEntry OBJECT-TYPE - SYNTAX CacheGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { cachegroupName } - ::= { cacheGroupTable 1 } - -CacheGroupEntry ::= SEQUENCE { - cachegroupName OCTET STRING, - groupnon304hit Counter32, - group304hit Counter32, - totcell Gauge32, - totmarkercell Gauge32, - timesflushed Counter32, - totmemory Gauge32, - maxmemory Gauge32 -} - -cachegroupName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Encoded name of the cache group" - ::= { cacheGroupEntry 1 } - -groupnon304hit OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Non304 hits for ContentGroup" - ::= { cacheGroupEntry 2 } - -group304hit OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "304 hits for ContentGroup" - ::= { cacheGroupEntry 3 } - -totcell OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of objects in contentgroup" - ::= { cacheGroupEntry 4 } - -totmarkercell OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of marker objects in contentgroup" - ::= { cacheGroupEntry 5 } - -timesflushed OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times contentgroup is flushed" - ::= { cacheGroupEntry 6 } - -totmemory OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "current memory usage" - ::= { cacheGroupEntry 7 } - -maxmemory OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "maximum memory usage limit" - ::= { cacheGroupEntry 8 } - -nsLsnStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 83 } - -nsLsnGlobalStatsGroup OBJECT IDENTIFIER - ::= { nsLsnStatsGroup 1 } - -lsnTotRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN rx pkts." - ::= { nsLsnGlobalStatsGroup 1 } - -lsnTotRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN rx bytes." - ::= { nsLsnGlobalStatsGroup 2 } - -lsnTotTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN tx pkts." - ::= { nsLsnGlobalStatsGroup 3 } - -lsnTotTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN tx bytess." - ::= { nsLsnGlobalStatsGroup 4 } - -lsnCurSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN sessions." - ::= { nsLsnGlobalStatsGroup 5 } - -lsnCurSubscribers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN subscribers." - ::= { nsLsnGlobalStatsGroup 6 } - -lsnTotTcpRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN TCP Received packets." - ::= { nsLsnGlobalStatsGroup 7 } - -lsnTotTcpTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN TCP Transmitted packets." - ::= { nsLsnGlobalStatsGroup 8 } - -lsnTotUdpRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN UDP Received packets." - ::= { nsLsnGlobalStatsGroup 9 } - -lsnTotUdpTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN UDP Transmitted packets." - ::= { nsLsnGlobalStatsGroup 10 } - -lsnTotIcmpRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN ICMP Received packets." - ::= { nsLsnGlobalStatsGroup 11 } - -lsnTotIcmpTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN ICMP Transmitted packets." - ::= { nsLsnGlobalStatsGroup 12 } - -lsnTotTcpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN TCP Received bytes." - ::= { nsLsnGlobalStatsGroup 13 } - -lsnTotTcpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN TCP Transmitted bytes." - ::= { nsLsnGlobalStatsGroup 14 } - -lsnTotUdpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN UDP Received bytes." - ::= { nsLsnGlobalStatsGroup 15 } - -lsnTotUdpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN UDP Transmitted bytes." - ::= { nsLsnGlobalStatsGroup 16 } - -lsnTotIcmpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN ICMP Received bytes." - ::= { nsLsnGlobalStatsGroup 17 } - -lsnTotIcmpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN ICMP Transmitted bytes." - ::= { nsLsnGlobalStatsGroup 18 } - -lsnTotDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Tot number of LSN Dropped packets." - ::= { nsLsnGlobalStatsGroup 19 } - -lsnTotTcpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN TCP Dropped packets." - ::= { nsLsnGlobalStatsGroup 20 } - -lsnTotUdpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN UDP Dropped packets." - ::= { nsLsnGlobalStatsGroup 21 } - -lsnTotIcmpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN ICMP Dropped packets." - ::= { nsLsnGlobalStatsGroup 22 } - -lsnCurTcpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN TCP Current Sessions." - ::= { nsLsnGlobalStatsGroup 23 } - -lsnCurUdpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN UDP Current Sessions." - ::= { nsLsnGlobalStatsGroup 24 } - -lsnCurIcmpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN ICMP Current Sessions." - ::= { nsLsnGlobalStatsGroup 25 } - -lsnSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN sessions are opened per second." - ::= { nsLsnGlobalStatsGroup 26 } - -lsnTcpSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN sessions are opened per second." - ::= { nsLsnGlobalStatsGroup 27 } - -lsnUdpSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN sessions are opened per second." - ::= { nsLsnGlobalStatsGroup 28 } - -lsnIcmpSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN sessions are opened per second." - ::= { nsLsnGlobalStatsGroup 29 } - -nsLsnGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF NsLsnGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains statistics related to LSN group" - ::= { nsLsnStatsGroup 2 } - -nsLsnGroupEntry OBJECT-TYPE - SYNTAX NsLsnGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { lsnGrpName } - ::= { nsLsnGroupTable 1 } - -NsLsnGroupEntry ::= SEQUENCE { - lsnGrpName OCTET STRING, - lsnGrpTotTranslPkts Counter64, - lsnGrpTotTranslBytes Counter64, - lsnGrpCurSessions Gauge32, - lsnGrpCurSubscribers Gauge32, - lsnGrpTotTcpTranslPkts Counter64, - lsnGrpTotUdpTranslPkts Counter64, - lsnGrpTotIcmpTranslPkts Counter64, - lsnGrpTotTcpTranslBytes Counter64, - lsnGrpTotUdpTranslBytes Counter64, - lsnGrpTotIcmpTranslBytes Counter64, - lsnGrpTotTcpDrpPkts Counter64, - lsnGrpTotUdpDrpPkts Counter64, - lsnGrpTotIcmpDrpPkts Counter64, - lsnGrpTotTcpDrpBytes Counter64, - lsnGrpTotUdpDrpBytes Counter64, - lsnGrpTotIcmpDrpBytes Counter64, - lsnGrpCurTcpSessions Gauge32, - lsnGrpCurUdpSessions Gauge32, - lsnGrpCurIcmpSessions Gauge32, - lsnGrpSessRate Gauge32, - lsnGrpTcpSessRate Gauge32, - lsnGrpUdpSessRate Gauge32, - lsnGrpIcmpSessRate Gauge32 -} - -lsnGrpName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the LSN Group" - ::= { nsLsnGroupEntry 1 } - -lsnGrpTotTranslPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Translated Pkts for LSN group" - ::= { nsLsnGroupEntry 2 } - -lsnGrpTotTranslBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Translated Bytes for LSN group" - ::= { nsLsnGroupEntry 3 } - -lsnGrpCurSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Current Sessions for LSN group" - ::= { nsLsnGroupEntry 4 } - -lsnGrpCurSubscribers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMP Current Sessions for LSN group" - ::= { nsLsnGroupEntry 5 } - -lsnGrpTotTcpTranslPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TCP Translated Pkts for LSN group" - ::= { nsLsnGroupEntry 6 } - -lsnGrpTotUdpTranslPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of UDP Translated Pkts for LSN group" - ::= { nsLsnGroupEntry 7 } - -lsnGrpTotIcmpTranslPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMP Translated Pkts for LSN group" - ::= { nsLsnGroupEntry 8 } - -lsnGrpTotTcpTranslBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TCP Translated Bytes for LSN group" - ::= { nsLsnGroupEntry 9 } - -lsnGrpTotUdpTranslBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of UDP Translated Bytes for LSN group" - ::= { nsLsnGroupEntry 10 } - -lsnGrpTotIcmpTranslBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMP Translated Bytes for LSN group" - ::= { nsLsnGroupEntry 11 } - -lsnGrpTotTcpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TCP Dropped Pkts for LSN group" - ::= { nsLsnGroupEntry 12 } - -lsnGrpTotUdpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of UDP Dropped Pkts for LSN group" - ::= { nsLsnGroupEntry 13 } - -lsnGrpTotIcmpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMP Dropped Pkts for LSN group" - ::= { nsLsnGroupEntry 14 } - -lsnGrpTotTcpDrpBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TCP Dropped Bytes for LSN group" - ::= { nsLsnGroupEntry 15 } - -lsnGrpTotUdpDrpBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of UDP Dropped Bytes for LSN group" - ::= { nsLsnGroupEntry 16 } - -lsnGrpTotIcmpDrpBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMP Dropped Bytes for LSN group" - ::= { nsLsnGroupEntry 17 } - -lsnGrpCurTcpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of TCP Current Sessions for LSN group" - ::= { nsLsnGroupEntry 18 } - -lsnGrpCurUdpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of UDP Current Sessions for LSN group" - ::= { nsLsnGroupEntry 19 } - -lsnGrpCurIcmpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of ICMP Current Sessions for LSN group" - ::= { nsLsnGroupEntry 20 } - -lsnGrpSessRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which LSN sessions of group are opened per second." - ::= { nsLsnGroupEntry 21 } - -lsnGrpTcpSessRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which LSN TCP sessions of group are opened per second." - ::= { nsLsnGroupEntry 22 } - -lsnGrpUdpSessRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which LSN UDP sessions of group are opened per second." - ::= { nsLsnGroupEntry 23 } - -lsnGrpIcmpSessRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which LSN ICMP sessions of group are opened per second." - ::= { nsLsnGroupEntry 24 } - -nsPPTPStatsGroup OBJECT IDENTIFIER - ::= { nsLsnStatsGroup 3 } - -pptpCurCtrlSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of currrent PPTP control sessions." - ::= { nsPPTPStatsGroup 1 } - -pptpTotCtrlSessions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of PPTP control sessions." - ::= { nsPPTPStatsGroup 2 } - -pptpTotGRESessions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of PPTP GRE sessions." - ::= { nsPPTPStatsGroup 3 } - -pptpCurGRESessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of current PPTP GRE sessions." - ::= { nsPPTPStatsGroup 4 } - -pptpStrtCtrlConnReply OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP start control connection replies." - ::= { nsPPTPStatsGroup 5 } - -pptpStpCtrlConnReply OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP stop control connection replies." - ::= { nsPPTPStatsGroup 6 } - -pptpOutCallReply OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP out call replies." - ::= { nsPPTPStatsGroup 7 } - -pptpCtlErrNoCallidMap OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP control no callid map." - ::= { nsPPTPStatsGroup 8 } - -pptpInCallReq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP in call request." - ::= { nsPPTPStatsGroup 9 } - -pptpInCallConn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP in call connected." - ::= { nsPPTPStatsGroup 10 } - -pptpCallDisNotify OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP call disconnect notification." - ::= { nsPPTPStatsGroup 11 } - -pptpWanErrNotify OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP WAN Error notification." - ::= { nsPPTPStatsGroup 12 } - -pptpSetLinkInfo OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP set link information." - ::= { nsPPTPStatsGroup 13 } - -pptpEchoReq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP echo request." - ::= { nsPPTPStatsGroup 14 } - -pptpEchoRep OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP echo reply." - ::= { nsPPTPStatsGroup 15 } - -pptpStrtCtrlConnReq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP start Control Connection request." - ::= { nsPPTPStatsGroup 16 } - -pptpStpCtrlConnReq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP stop Control Connection request." - ::= { nsPPTPStatsGroup 17 } - -pptpOutCallReq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP out call request." - ::= { nsPPTPStatsGroup 18 } - -pptpInCallRep OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP in call reply." - ::= { nsPPTPStatsGroup 19 } - -pptpCallClrReq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP call Clear request." - ::= { nsPPTPStatsGroup 20 } - -pptpCntlOcreq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP control ocreq error create callid map." - ::= { nsPPTPStatsGroup 21 } - -pptpCntlIcreq OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of PPTP icreq control error create callid map." - ::= { nsPPTPStatsGroup 22 } - -nsLsnDSLiteGlobalStatsGroup OBJECT IDENTIFIER - ::= { nsLsnStatsGroup 4 } - -lsnTotDSLiteRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN DS-Lite rx pkts." - ::= { nsLsnDSLiteGlobalStatsGroup 1 } - -lsnTotDSLiteRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN DS-Lite rx bytes." - ::= { nsLsnDSLiteGlobalStatsGroup 2 } - -lsnTotDSLiteTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN DS-Lite tx pkts." - ::= { nsLsnDSLiteGlobalStatsGroup 3 } - -lsnTotDSLiteTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN DS-Lite tx bytes." - ::= { nsLsnDSLiteGlobalStatsGroup 4 } - -lsnCurDSLiteSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN DS-Lite sessions." - ::= { nsLsnDSLiteGlobalStatsGroup 5 } - -lsnDSLiteCurSubscribers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN DS-Lite subscribers." - ::= { nsLsnDSLiteGlobalStatsGroup 6 } - -nsLsnLogStatsGroup OBJECT IDENTIFIER - ::= { nsLsnStatsGroup 5 } - -nsLsnMappingLogStatsGroup OBJECT IDENTIFIER - ::= { nsLsnLogStatsGroup 1 } - -lsnLogTotMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mapping entires logged." - ::= { nsLsnMappingLogStatsGroup 1 } - -lsnLogTotMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-mapping entires logged." - ::= { nsLsnMappingLogStatsGroup 2 } - -lsnLogTotAPDMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mappings of addrport dependent logged." - ::= { nsLsnMappingLogStatsGroup 3 } - -lsnLogTotAPDMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total no of delete-mappings of address port dependent type logged." - ::= { nsLsnMappingLogStatsGroup 4 } - -lsnLogTotADMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mappings of Address dependent type logged." - ::= { nsLsnMappingLogStatsGroup 5 } - -lsnLogTotADMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total no of delete-mappings of Address dependent type logged." - ::= { nsLsnMappingLogStatsGroup 6 } - -lsnLogTotEIMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mappings of Endpoint-Independent type logged." - ::= { nsLsnMappingLogStatsGroup 7 } - -lsnLogTotEIMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total no of delete-mappings of Endpoint Independent type logged." - ::= { nsLsnMappingLogStatsGroup 8 } - -lsnLogTotTcpMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mappings for TCP logged." - ::= { nsLsnMappingLogStatsGroup 9 } - -lsnLogTotTcpMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-mappings for TCP logged." - ::= { nsLsnMappingLogStatsGroup 10 } - -lsnLogTotUdpMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mappings for UDP logged." - ::= { nsLsnMappingLogStatsGroup 11 } - -lsnLogTotUdpMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-mappings for UDP logged." - ::= { nsLsnMappingLogStatsGroup 12 } - -lsnLogTotIcmpMappingCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-mappings for ICMP logged." - ::= { nsLsnMappingLogStatsGroup 13 } - -lsnLogTotIcmpMappingDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-mappings for ICMP logged." - ::= { nsLsnMappingLogStatsGroup 14 } - -lsnLogTotWrongMappingFlagEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of time wrong mapping-type was encountered while logging." - ::= { nsLsnMappingLogStatsGroup 15 } - -nsLsnSessionLogStatsGroup OBJECT IDENTIFIER - ::= { nsLsnLogStatsGroup 2 } - -lsnLogTotSessionCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total no of create-sessions logged." - ::= { nsLsnSessionLogStatsGroup 1 } - -lsnLogTotSessionDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total no of delete-sessions logged." - ::= { nsLsnSessionLogStatsGroup 2 } - -lsnLogTotTcpSessionCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-sessions for TCP logged." - ::= { nsLsnSessionLogStatsGroup 3 } - -lsnLogTotTcpSessionDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-sessions for TCP logged." - ::= { nsLsnSessionLogStatsGroup 4 } - -lsnLogTotUdpSessionCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-sessions for UDP logged." - ::= { nsLsnSessionLogStatsGroup 5 } - -lsnLogTotUdpSessionDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-sessions for UDP logged." - ::= { nsLsnSessionLogStatsGroup 6 } - -lsnLogTotIcmpSessionCreateEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total create-sessions for ICMP logged." - ::= { nsLsnSessionLogStatsGroup 7 } - -lsnLogTotIcmpSessionDeleteEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total delete-sessions for ICMP logged." - ::= { nsLsnSessionLogStatsGroup 8 } - -lsnLogTotEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total session/mapping entries logged." - ::= { nsLsnLogStatsGroup 3 } - -lsnLogTotDeterministicAllocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total deterministic NAT allocations logged." - ::= { nsLsnLogStatsGroup 4 } - -lsnLogTotDeterministicDeallocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total determistic NAT deletions logged" - ::= { nsLsnLogStatsGroup 5 } - -lsnLogTotPortblockAllocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total portblock NAT allocations logged." - ::= { nsLsnLogStatsGroup 6 } - -lsnLogTotPortblockDeallocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total portblock NAT deallocations logged." - ::= { nsLsnLogStatsGroup 7 } - -lsnLogTotTcpPortblockAllocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total portblock NAT allocations for tcp logged." - ::= { nsLsnLogStatsGroup 8 } - -lsnLogTotTcpPortblockDeallocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total portblock NAT deallocations for tcp logged." - ::= { nsLsnLogStatsGroup 9 } - -lsnLogTotNontcpPortblockAllocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total portblock NAT allocations for udp and icmp logged." - ::= { nsLsnLogStatsGroup 10 } - -lsnLogTotNontcpPortblockDeallocs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total portblock NAT deallocations for udp and icmp logged." - ::= { nsLsnLogStatsGroup 11 } - -lsnLogTotWrongFlags OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total no of times incorrect flag(neither create nor delete) encountered while logging." - ::= { nsLsnLogStatsGroup 12 } - -lsnLogTotWrongProtocols OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Wrong protocol popped up in logentry." - ::= { nsLsnLogStatsGroup 13 } - -nsLsnNAT64GlobalStatsGroup OBJECT IDENTIFIER - ::= { nsLsnStatsGroup 6 } - -lsnTotNAT64RxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN NAT64 rx pkts." - ::= { nsLsnNAT64GlobalStatsGroup 1 } - -lsnTotNAT64RxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN NAT64 rx bytes." - ::= { nsLsnNAT64GlobalStatsGroup 2 } - -lsnTotNAT64TxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN NAT64 tx pkts." - ::= { nsLsnNAT64GlobalStatsGroup 3 } - -lsnTotNAT64TxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LSN NAT64 tx bytes." - ::= { nsLsnNAT64GlobalStatsGroup 4 } - -lsnCurNAT64sessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN NAT64 sessions." - ::= { nsLsnNAT64GlobalStatsGroup 5 } - -lsnNAT64CurSubscribers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of LSN NAT64 subscribers." - ::= { nsLsnNAT64GlobalStatsGroup 6 } - -lsnTotNAT64TcpRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 TCP Received packets." - ::= { nsLsnNAT64GlobalStatsGroup 7 } - -lsnTotNAT64TcpTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 TCP Transmitted packets." - ::= { nsLsnNAT64GlobalStatsGroup 8 } - -lsnTotNAT64UdpRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 UDP Received packets." - ::= { nsLsnNAT64GlobalStatsGroup 9 } - -lsnTotNAT64UdpTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 UDP Transmitted packets." - ::= { nsLsnNAT64GlobalStatsGroup 10 } - -lsnTotNAT64IcmpRxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 ICMP Received packets." - ::= { nsLsnNAT64GlobalStatsGroup 11 } - -lsnTotNAT64IcmpTxPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 ICMP Transmitted packets." - ::= { nsLsnNAT64GlobalStatsGroup 12 } - -lsnTotNAT64TcpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 TCP Received bytes." - ::= { nsLsnNAT64GlobalStatsGroup 13 } - -lsnTotNAT64TcpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 TCP Transmitted bytes." - ::= { nsLsnNAT64GlobalStatsGroup 14 } - -lsnTotNAT64UdpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 UDP Received bytes." - ::= { nsLsnNAT64GlobalStatsGroup 15 } - -lsnTotNAT64UdpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 UDP Transmitted bytes." - ::= { nsLsnNAT64GlobalStatsGroup 16 } - -lsnTotNAT64IcmpRxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 ICMP Received bytes." - ::= { nsLsnNAT64GlobalStatsGroup 17 } - -lsnTotNAT64IcmpTxBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 ICMP Transmitted bytes." - ::= { nsLsnNAT64GlobalStatsGroup 18 } - -lsnTotNAT64TcpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 TCP Dropped packets." - ::= { nsLsnNAT64GlobalStatsGroup 19 } - -lsnTotNAT64UdpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 UDP Dropped packets." - ::= { nsLsnNAT64GlobalStatsGroup 20 } - -lsnTotnat64IcmpDrpPkts OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 ICMP Dropped packets." - ::= { nsLsnNAT64GlobalStatsGroup 21 } - -lsnCurNAT64TcpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 TCP Current Sessions." - ::= { nsLsnNAT64GlobalStatsGroup 22 } - -lsnCurNAT64UdpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 UDP Current Sessions." - ::= { nsLsnNAT64GlobalStatsGroup 23 } - -lsnCurNAT64IcmpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of LSN NAT64 ICMP Current Sessions." - ::= { nsLsnNAT64GlobalStatsGroup 24 } - -lsnNAT64SessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN NAT64 sessions are opened per second." - ::= { nsLsnNAT64GlobalStatsGroup 25 } - -lsnNAT64TcpSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN NAT64 sessions are opened per second." - ::= { nsLsnNAT64GlobalStatsGroup 26 } - -lsnNAT64UdpSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN NAT64 sessions are opened per second." - ::= { nsLsnNAT64GlobalStatsGroup 27 } - -lsnNAT64IcmpSessionsRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which total LSN sessions are opened per second." - ::= { nsLsnNAT64GlobalStatsGroup 28 } - -nsmcStatsGroup OBJECT IDENTIFIER - ::= { nsSysGroup 84 } - -mcTotaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsmcStatsGroup 1 } - -mcTotvideo OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsmcStatsGroup 2 } - -mcTotother OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsmcStatsGroup 3 } - -mcMsSmthStrmVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Microsoft SmoothStreaming videos served by NS" - ::= { nsmcStatsGroup 4 } - -mcMsSmthStrmVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Microsoft SmoothStreaming video bytes served by NS " - ::= { nsmcStatsGroup 5 } - -mcMsSmthStrVidpl OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Microsoft SmoothStreaming playlist served by NS" - ::= { nsmcStatsGroup 6 } - -mcMsSmthStrmPlVidBytespl OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of Microsoft SmoothStreaming playlist bytes served by NS " - ::= { nsmcStatsGroup 7 } - -mccApleLiveStrmngVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive videos served by NS" - ::= { nsmcStatsGroup 8 } - -mcAppleLiveStreamingVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive video bytes served by NS " - ::= { nsmcStatsGroup 9 } - -mccAppleLiveStrmngVidpl OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive Playlist served by NS" - ::= { nsmcStatsGroup 10 } - -mcAppleLiveStreamingPlaylistVidBytespl OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AppleLive Playlist bytes served by NS " - ::= { nsmcStatsGroup 11 } - -mcADTSaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of ADTS audios served by NS" - ::= { nsmcStatsGroup 12 } - -mcADTSaudioBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of ADTS audio bytes served by NS " - ::= { nsmcStatsGroup 13 } - -mcAACaudio OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AAC audios served by NS" - ::= { nsmcStatsGroup 14 } - -mcAACaudiobytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of AAC bytes served by NS " - ::= { nsmcStatsGroup 15 } - -mcFLVVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of FLV videos served by NS" - ::= { nsmcStatsGroup 16 } - -mcFLVVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of FLV bytes served by NS " - ::= { nsmcStatsGroup 17 } - -mcMP4Vid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MP4 videos served by NS" - ::= { nsmcStatsGroup 18 } - -mcMP4VidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of MP4 video bytes served by NS " - ::= { nsmcStatsGroup 19 } - -mc3PVid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of 3GP videos served by NS" - ::= { nsmcStatsGroup 20 } - -mc3GPVidBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of 3GP bytes served by NS " - ::= { nsmcStatsGroup 21 } - -mcTotResponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "" - ::= { nsmcStatsGroup 22 } - -mcAndroid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of android requests to netscaler" - ::= { nsmcStatsGroup 23 } - -mcLaptopDesktp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of laptop/desktop requests to netscaler" - ::= { nsmcStatsGroup 24 } - -mcIos OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of IOS requests to netscaler" - ::= { nsmcStatsGroup 25 } - -mcUnidentified OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of unidentified requests to netscaler" - ::= { nsmcStatsGroup 26 } - -mcOther OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of other mobile device requests to netscaler" - ::= { nsmcStatsGroup 27 } - -mcYoutubedash OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of YouTube DASH served by NS" - ::= { nsmcStatsGroup 28 } - -mcYoutubedashBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This tells the total number of YouTube DASH bytes served by NS " - ::= { nsmcStatsGroup 29 } - -mcEncVideo OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of encrypted video streams" - ::= { nsmcStatsGroup 30 } - -mcEncHls OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of encrypted AppleLive video streams" - ::= { nsmcStatsGroup 31 } - -mcEncDASH OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of encrypted Youtube DASH video streams" - ::= { nsmcStatsGroup 32 } - -mcEncOthStream OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of non-AppleLive, non-DASH encrypted streams" - ::= { nsmcStatsGroup 33 } - -mcEncAndroid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of encrypted video streams requested by Android devices" - ::= { nsmcStatsGroup 34 } - -mcEncIos OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of encrypted video streams requested by IOS devices" - ::= { nsmcStatsGroup 35 } - -mcEncOther OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of encrypted video streams requested by non-Android and non-IOS devices" - ::= { nsmcStatsGroup 36 } - -nsSvcGroup OBJECT IDENTIFIER - ::= { rs9000 2 } - -serviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The netscaler services table" - ::= { nsSvcGroup 1 } - -serviceEntry OBJECT-TYPE - SYNTAX ServiceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcServiceName } - ::= { serviceTable 1 } - -ServiceEntry ::= SEQUENCE { - svcServiceName OCTET STRING, - svcIpAddress IpAddress, - svcPort Integer32, - svcServiceType EntityProtocolType, - svcState EntityState, - svcMaxReqPerConn Integer32, - svcAvgTransactionTime Integer32, - svcEstablishedConn Gauge32, - svcActiveConn Gauge32, - svcSurgeCount Gauge32, - svcTotalRequestsLow Counter32, - svcTotalRequestsHigh Counter32, - svcTotalRequestBytesLow Counter32, - svcTotalRequestBytesHigh Counter32, - svcTotalResponsesLow Counter32, - svcTotalResponsesHigh Counter32, - svcTotalResponseBytesLow Counter32, - svcTotalResponseBytesHigh Counter32, - svcTotalPktsRecvdLow Counter32, - svcTotalPktsRecvdHigh Counter32, - svcTotalPktsSentLow Counter32, - svcTotalPktsSentHigh Counter32, - svcTotalSynsRecvdLow Counter32, - svcTotalSynsRecvdHigh Counter32, - svcTotalRequests Counter64, - svcTotalRequestBytes Counter64, - svcTotalResponses Counter64, - svcTotalResponseBytes Counter64, - svcTotalPktsRecvd Counter64, - svcTotalPktsSent Counter64, - svcTotalSynsRecvd Counter64, - svcGslbSiteName OCTET STRING, - svcAvgSvrTTFB Gauge32, - svctotalJsTransactions Counter64, - svcdosQDepth Gauge32, - svcCurClntConnections Gauge32, - svcRequestRate OCTET STRING, - svcRxBytesRate OCTET STRING, - svcTxBytesRate OCTET STRING, - svcSynfloodRate OCTET STRING, - svcTicksSinceLastStateChange TimeTicks, - svcTotalClients Counter64, - svcTotalServers Counter64, - svcMaxClients Integer32, - svcActiveTransactions Gauge32, - svcServiceFullName OCTET STRING, - svcInetAddressType InetAddressType, - svcInetAddress InetAddress, - svcTdId Integer32, - svcGslbState EntityState, - svcCurSrvrConnections Gauge32 -} - -svcServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service." - ::= { serviceEntry 1 } - -svcIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ip address at which the service is running." - ::= { serviceEntry 2 } - -svcPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port at which the service is running." - ::= { serviceEntry 3 } - -svcServiceType OBJECT-TYPE - SYNTAX EntityProtocolType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The protocol type of the service" - ::= { serviceEntry 4 } - -svcState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current state of the server. Possible values are UP, DOWN, UNKNOWN, OFS(Out of Service), TROFS(Transition Out of Service), TROFS_DOWN(Down When going Out of Service)" - ::= { serviceEntry 5 } - -svcMaxReqPerConn OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Maximum requests per connection allowed on this service. " - ::= { serviceEntry 6 } - -svcAvgTransactionTime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average transaction time in microseconds between netscaler and the service behind it." - ::= { serviceEntry 7 } - -svcEstablishedConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of connections in ESTABLISHED state." - ::= { serviceEntry 8 } - -svcActiveConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of connections that are currently active. " - ::= { serviceEntry 9 } - -svcSurgeCount OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests in the surge queue." - ::= { serviceEntry 10 } - -svcTotalRequestsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 11 } - -svcTotalRequestsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 12 } - -svcTotalRequestBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 13 } - -svcTotalRequestBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 14 } - -svcTotalResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 15 } - -svcTotalResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 16 } - -svcTotalResponseBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 17 } - -svcTotalResponseBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 18 } - -svcTotalPktsRecvdLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 19 } - -svcTotalPktsRecvdHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 20 } - -svcTotalPktsSentLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 21 } - -svcTotalPktsSentHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 22 } - -svcTotalSynsRecvdLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 23 } - -svcTotalSynsRecvdHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceEntry 24 } - -svcTotalRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received on this service or virtual server. (This applies to HTTP/SSL services and servers.)" - ::= { serviceEntry 30 } - -svcTotalRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of request bytes received on this service or virtual server." - ::= { serviceEntry 31 } - -svcTotalResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of responses received on this service or virtual server. (This applies to HTTP/SSL services and servers.)" - ::= { serviceEntry 32 } - -svcTotalResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of response bytes received by this service or virtual server." - ::= { serviceEntry 33 } - -svcTotalPktsRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets received by this service or virtual server." - ::= { serviceEntry 34 } - -svcTotalPktsSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets sent." - ::= { serviceEntry 35 } - -svcTotalSynsRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of SYN packets received from clients on this service (only when directly accessed) or virtual server." - ::= { serviceEntry 36 } - -svcGslbSiteName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the gslb site on which this service is defined." - ::= { serviceEntry 37 } - -svcAvgSvrTTFB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average TTFB between the NetScaler appliance and the server.TTFB is the time interval between sending the request packet to a service and receiving the first response from the service" - ::= { serviceEntry 38 } - -svctotalJsTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of javascripts sent to geniune clients." - ::= { serviceEntry 39 } - -svcdosQDepth OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients waiting currently in priority queue" - ::= { serviceEntry 40 } - -svcCurClntConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current client connections." - ::= { serviceEntry 41 } - -svcRequestRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Request rate in requests per second for this service or virtual server." - ::= { serviceEntry 42 } - -svcRxBytesRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Request rate in bytes per second fot this service or virtual server." - ::= { serviceEntry 43 } - -svcTxBytesRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Response rate in bytes per second for this service or virtual server." - ::= { serviceEntry 44 } - -svcSynfloodRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate of unacknowledged SYN packets for this service or virtual server." - ::= { serviceEntry 45 } - -svcTicksSinceLastStateChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time (in 10 milliseconds) since the last state change." - ::= { serviceEntry 47 } - -svcTotalClients OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of established client connections." - ::= { serviceEntry 48 } - -svcTotalServers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of established server connections." - ::= { serviceEntry 49 } - -svcMaxClients OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Maximum open connections allowed on this service." - ::= { serviceEntry 52 } - -svcActiveTransactions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active transactions handled by this service. (Including those in the surge queue.) - Active Transaction means number of transactions currently served by the server including those waiting in the SurgeQ" - ::= { serviceEntry 53 } - -svcServiceFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service." - ::= { serviceEntry 54 } - -svcInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of svcInetAddress" - ::= { serviceEntry 55 } - -svcInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Internet address at which the service is running." - ::= { serviceEntry 56 } - -svcTdId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Traffic Domain ID of this service." - ::= { serviceEntry 57 } - -svcGslbState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Effective state of the gslb service. Possible values are UP, DOWN, UNKNOWN, OFS(Out of Service), TROFS(Transition Out of Service), TROFS_DOWN(Down When going Out of Service)" - ::= { serviceEntry 58 } - -svcCurSrvrConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current connections to the actual servers behind the virtual server." - ::= { serviceEntry 59 } - -serverTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServerEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The servers table." - ::= { nsSvcGroup 2 } - -serverEntry OBJECT-TYPE - SYNTAX ServerEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { serverName } - ::= { serverTable 1 } - -ServerEntry ::= SEQUENCE { - serverName OCTET STRING, - serverIpAddress IpAddress, - serverState EntityState, - serverDelay Integer32, - serverFullName OCTET STRING, - serverInetAddressType InetAddressType, - serverInetAddress InetAddress, - serverTdId Integer32 -} - -serverName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the server." - ::= { serverEntry 1 } - -serverIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP address of the server." - ::= { serverEntry 2 } - -serverState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The state of the server." - ::= { serverEntry 3 } - -serverDelay OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Specifies time in seconds after which all services in this server are brought down." - ::= { serverEntry 4 } - -serverFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the server." - ::= { serverEntry 5 } - -serverInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of serverInetAddress" - ::= { serverEntry 6 } - -serverInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Internet address of the server." - ::= { serverEntry 7 } - -serverTdId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Traffic Domain ID of this server." - ::= { serverEntry 8 } - -serviceScpolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceScpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The service sure connect policy relationship table" - ::= { nsSvcGroup 3 } - -serviceScpolicyEntry OBJECT-TYPE - SYNTAX ServiceScpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcServiceName , scPolicyName } - ::= { serviceScpolicyTable 1 } - -ServiceScpolicyEntry ::= SEQUENCE { - svcscpolicyPrimaryIPAddress IpAddress, - svcscpolicyPrimaryPort Integer32, - svcscpolicyDesIpAddress IpAddress, - svcscpolicyDestPort Integer32, - svcscpolicyAvgServerTransactionTime Gauge32, - svcscpolicyTotClientTransaction Counter64, - svcscpolicyTotOpenConn Counter32, - svcscpolicydesIpAddress IpAddress, - svcscpolicydestPort Integer32, - svcscpolicyavgServerTransactionTime Gauge32, - svcscpolicytotClientTransaction Counter64, - svcscpolicytotOpenConn Gauge32, - svcscpolicyscPhysicalServiceIP IpAddress, - svcscpolicyscPhysicalServicePort Integer32, - svcscpolicyscCurrentWaitingTime Gauge32, - svcscpolicyscCurrentClientConnections Gauge32, - svcscpolicyscTotalClientConnections Counter64, - svcscpolicyscTotalServerConnections Counter64, - svcscpolicyscTotalRequestsReceived Counter64, - svcscpolicyscTotalRequestBytes Counter64, - svcscpolicyscTotalResponsesReceived Counter64, - svcscpolicyscTotalResponseBytes Counter64, - svcscpolicyscCurrentSurgeQClients Gauge32, - svcscpolicyscCurrentWaitingClients Gauge32, - svcscpolicyscTotalServerTransactions Counter64, - svcscpolicyscTotalServerTTFBTransactions Counter64, - svcscpolicyscTotalServerTTLB Counter64, - svcscpolicyscTotalClientTTLB Counter64, - svcscpolicyscTotalServerTTFB Counter64, - svcscpolicyscAverageClientTTLB Gauge32, - svcscpolicyscAverageServerTTFB Gauge32 -} - -svcscpolicyPrimaryIPAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP address of the service or virtual server to which the policy is bound." - ::= { serviceScpolicyEntry 3 } - -svcscpolicyPrimaryPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port of the service or virtual server to which the policy is bound." - ::= { serviceScpolicyEntry 4 } - -svcscpolicyDesIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceScpolicyEntry 5 } - -svcscpolicyDestPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceScpolicyEntry 6 } - -svcscpolicyAvgServerTransactionTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceScpolicyEntry 7 } - -svcscpolicyTotClientTransaction OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceScpolicyEntry 8 } - -svcscpolicyTotOpenConn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { serviceScpolicyEntry 9 } - -svcscpolicydesIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the destination service." - ::= { serviceScpolicyEntry 10 } - -svcscpolicydestPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port number of the destination service." - ::= { serviceScpolicyEntry 11 } - -svcscpolicyavgServerTransactionTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average server transaction time in seconds for this SureConnect Policy." - ::= { serviceScpolicyEntry 12 } - -svcscpolicytotClientTransaction OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of client transactions processed by this SureConnect policy." - ::= { serviceScpolicyEntry 13 } - -svcscpolicytotOpenConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of open connections to the servers matching this policy." - ::= { serviceScpolicyEntry 14 } - -svcscpolicyscPhysicalServiceIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the service for which these statistics are maintained." - ::= { serviceScpolicyEntry 15 } - -svcscpolicyscPhysicalServicePort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port of the service for which these statistics are maintained." - ::= { serviceScpolicyEntry 16 } - -svcscpolicyscCurrentWaitingTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Value of the currently estimated waiting time in seconds for the configured URL." - ::= { serviceScpolicyEntry 17 } - -svcscpolicyscCurrentClientConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients currently allowed a server connection by this SureConnect policy." - ::= { serviceScpolicyEntry 18 } - -svcscpolicyscTotalClientConnections OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of clients that were allowed a server connection by this SureConnect policy." - ::= { serviceScpolicyEntry 19 } - -svcscpolicyscTotalServerConnections OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of server connections that were established through this SureConnect policy." - ::= { serviceScpolicyEntry 20 } - -svcscpolicyscTotalRequestsReceived OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received by this SureConnect policy." - ::= { serviceScpolicyEntry 21 } - -svcscpolicyscTotalRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of request bytes received by this SureConnect policy." - ::= { serviceScpolicyEntry 22 } - -svcscpolicyscTotalResponsesReceived OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of server responses received by this SureConnect policy." - ::= { serviceScpolicyEntry 23 } - -svcscpolicyscTotalResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of response bytes received by this SureConnect policy." - ::= { serviceScpolicyEntry 24 } - -svcscpolicyscCurrentSurgeQClients OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients currently matching the SureConnect policy, but are in the surge queue." - ::= { serviceScpolicyEntry 25 } - -svcscpolicyscCurrentWaitingClients OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of SureConnect priority clients that are waiting for a server connection." - ::= { serviceScpolicyEntry 26 } - -svcscpolicyscTotalServerTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 200 OK responses received from the web server by this SureConnect policy." - ::= { serviceScpolicyEntry 27 } - -svcscpolicyscTotalServerTTFBTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Time-To-First-Byte transcations from the web server for this SureConnect policy." - ::= { serviceScpolicyEntry 28 } - -svcscpolicyscTotalServerTTLB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server Time-To-Last-Byte in seconds calculated for this SureConnect policy." - ::= { serviceScpolicyEntry 29 } - -svcscpolicyscTotalClientTTLB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client Time-To-Last-Byte in seconds calculated for this SureConnect policy." - ::= { serviceScpolicyEntry 30 } - -svcscpolicyscTotalServerTTFB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server Time-To-First-Byte in seconds calculated for this SureConnect policy." - ::= { serviceScpolicyEntry 31 } - -svcscpolicyscAverageClientTTLB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average value of the client Time-To-Last-Byte in seconds for this SureConnect policy." - ::= { serviceScpolicyEntry 32 } - -svcscpolicyscAverageServerTTFB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average value of the server Time-To-First-Byte in seconds for this SureConnect policy." - ::= { serviceScpolicyEntry 33 } - -serviceAdvanceSslConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceAdvanceSslConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The service advance SSL configuration" - ::= { nsSvcGroup 4 } - -serviceAdvanceSslConfigEntry OBJECT-TYPE - SYNTAX ServiceAdvanceSslConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcServiceName } - ::= { serviceAdvanceSslConfigTable 1 } - -ServiceAdvanceSslConfigEntry ::= SEQUENCE { - svcSslDH AdminStatus, - svcSslDHCount Integer32, - svcSslDHFilePath OCTET STRING, - svcSsleRSA AdminStatus, - svcSsleRSACount Integer32, - svcSslv2Protocol AdminStatus, - svcSslv3Protocol AdminStatus, - svcSslTLSv1Protocol AdminStatus, - svcSslRedirectSupport AdminStatus, - svcSslClearTextPort Integer32 -} - -svcSslDH OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether DH is enabled/disabled." - ::= { serviceAdvanceSslConfigEntry 1 } - -svcSslDHCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DH refresh count to re-generate public/private key." - ::= { serviceAdvanceSslConfigEntry 2 } - -svcSslDHFilePath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DH file path name." - ::= { serviceAdvanceSslConfigEntry 3 } - -svcSsleRSA OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ephimeral RSA support for service." - ::= { serviceAdvanceSslConfigEntry 4 } - -svcSsleRSACount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The eRSA refresh count to re-generate RSA temporary key." - ::= { serviceAdvanceSslConfigEntry 5 } - -svcSslv2Protocol OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for SSLv2 protocol for service." - ::= { serviceAdvanceSslConfigEntry 6 } - -svcSslv3Protocol OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for SSLv3 protocol for service." - ::= { serviceAdvanceSslConfigEntry 7 } - -svcSslTLSv1Protocol OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for TLSv1 protocol for service." - ::= { serviceAdvanceSslConfigEntry 8 } - -svcSslRedirectSupport OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for ssl redirect for service." - ::= { serviceAdvanceSslConfigEntry 9 } - -svcSslClearTextPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The clear text port on the backend webserver." - ::= { serviceAdvanceSslConfigEntry 10 } - -serviceCipherBindingTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceCipherBindingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The service cipher bindings" - ::= { nsSvcGroup 5 } - -serviceCipherBindingEntry OBJECT-TYPE - SYNTAX ServiceCipherBindingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcServiceName , svcSslCipherBindName } - ::= { serviceCipherBindingTable 1 } - -ServiceCipherBindingEntry ::= SEQUENCE { - svcSslCipherBindName OCTET STRING, - svcSslCipherBindDesc OCTET STRING -} - -svcSslCipherBindName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The cipher name bound to this service." - ::= { serviceCipherBindingEntry 1 } - -svcSslCipherBindDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Cipher description." - ::= { serviceCipherBindingEntry 2 } - -serviceGlobalStatsGroup OBJECT IDENTIFIER - ::= { nsSvcGroup 6 } - -svcCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of services defined on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 1 } - -serverCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of servers defined on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 2 } - -svcgroupCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of service groups defined on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 3 } - -svcgroupmemCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of service group members defined on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 4 } - -syssvcCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of services configured on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 5 } - -sysupsvcCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of configured services which are up on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 6 } - -sysupsvcitmCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of configured service items which are up on this NetScaler appliance." - ::= { serviceGlobalStatsGroup 7 } - -serviceGroupMemberTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceGroupMemberEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The service group member bindings" - ::= { nsSvcGroup 7 } - -serviceGroupMemberEntry OBJECT-TYPE - SYNTAX ServiceGroupMemberEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcGrpMemberGroupName , svcGrpMemberName } - ::= { serviceGroupMemberTable 1 } - -ServiceGroupMemberEntry ::= SEQUENCE { - svcGrpMemberGroupName OCTET STRING, - svcGrpMemberName OCTET STRING, - svcGrpMemberPrimaryIPAddress IpAddress, - svcGrpMemberPrimaryPort Integer32, - svcGrpMemberServiceType EntityProtocolType, - svcGrpMemberState EntityState, - svcGrpMemberWeight Integer32, - svcGrpMemberMaxReqPerConn Integer32, - svcGrpMemberAvgTransactionTime Integer32, - svcGrpMemberEstablishedConn Gauge32, - svcGrpMemberActiveConn Gauge32, - svcGrpMemberSurgeCount Gauge32, - svcGrpMemberTotalRequests Counter64, - svcGrpMemberTotalRequestBytes Counter64, - svcGrpMemberTotalResponses Counter64, - svcGrpMemberTotalResponseBytes Counter64, - svcGrpMemberTotalPktsRecvd Counter64, - svcGrpMemberTotalPktsSent Counter64, - svcGrpMemberTotalSynsRecvd Counter64, - svcGrpMemberGslbSiteName OCTET STRING, - svcGrpMemberAvgSvrTTFB Gauge32, - svcGrpMembertotalJsTransactions Counter64, - svcGrpMemberdosQDepth Gauge32, - svcGrpMemberCurClntConnections Gauge32, - svcGrpMemberRequestRate OCTET STRING, - svcGrpMemberRxBytesRate OCTET STRING, - svcGrpMemberTxBytesRate OCTET STRING, - svcGrpMemberSynfloodRate OCTET STRING, - svcGrpMemberTicksSinceLastStateChange TimeTicks, - svcGrpMemberGroupFullName OCTET STRING, - svcGrpMemberFullName OCTET STRING, - svcGrpMemberPrimaryInetAddressType InetAddressType, - svcGrpMemberPrimaryInetAddress InetAddress, - svcGrpMemberServerName OCTET STRING, - svcGrpMemberTdId Integer32 -} - -svcGrpMemberGroupName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service Group" - ::= { serviceGroupMemberEntry 1 } - -svcGrpMemberName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service group member" - ::= { serviceGroupMemberEntry 2 } - -svcGrpMemberPrimaryIPAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP address on which the service is running." - ::= { serviceGroupMemberEntry 3 } - -svcGrpMemberPrimaryPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port on which the service is running." - ::= { serviceGroupMemberEntry 4 } - -svcGrpMemberServiceType OBJECT-TYPE - SYNTAX EntityProtocolType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The service type of this service.Possible values are ADNS, DNS, MYSQL, RTSP, SSL_DIAMETER, ADNS_TCP, DNS_TCP, NNTP, SIP_UDP, SSL_TCP, ANY, FTP, RADIUS, SNMP, TCP, DHCPRA, HTTP, RDP, SSL, TFTP, DIAMETER, MSSQL, RPCSVR, SSL_BRIDGE, UDP" - ::= { serviceGroupMemberEntry 5 } - -svcGrpMemberState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current state of the server. Possible values are UP, DOWN, UNKNOWN, OFS(Out of Service), TROFS(Transition Out of Service), TROFS_DOWN(Down When going Out of Service)" - ::= { serviceGroupMemberEntry 6 } - -svcGrpMemberWeight OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The weight of the service group member tied to the vserver." - ::= { serviceGroupMemberEntry 7 } - -svcGrpMemberMaxReqPerConn OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Maximum requests per connection allowed on this service. " - ::= { serviceGroupMemberEntry 8 } - -svcGrpMemberAvgTransactionTime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average transaction time in microseconds between netscaler and the service behind it." - ::= { serviceGroupMemberEntry 9 } - -svcGrpMemberEstablishedConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of connections in ESTABLISHED state." - ::= { serviceGroupMemberEntry 10 } - -svcGrpMemberActiveConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of connections that are currently active. " - ::= { serviceGroupMemberEntry 11 } - -svcGrpMemberSurgeCount OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests in the surge queue." - ::= { serviceGroupMemberEntry 12 } - -svcGrpMemberTotalRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received on this service or virtual server. (This applies to HTTP/SSL services and servers.)" - ::= { serviceGroupMemberEntry 13 } - -svcGrpMemberTotalRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of request bytes received on this service or virtual server." - ::= { serviceGroupMemberEntry 14 } - -svcGrpMemberTotalResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of responses received on this service or virtual server. (This applies to HTTP/SSL services and servers.)" - ::= { serviceGroupMemberEntry 15 } - -svcGrpMemberTotalResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of response bytes received by this service or virtual server." - ::= { serviceGroupMemberEntry 16 } - -svcGrpMemberTotalPktsRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets received by this service or virtual server." - ::= { serviceGroupMemberEntry 17 } - -svcGrpMemberTotalPktsSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets sent." - ::= { serviceGroupMemberEntry 18 } - -svcGrpMemberTotalSynsRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of SYN packets received from clients on this service (only when directly accessed) or virtual server." - ::= { serviceGroupMemberEntry 19 } - -svcGrpMemberGslbSiteName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the gslb site on which this service is defined." - ::= { serviceGroupMemberEntry 20 } - -svcGrpMemberAvgSvrTTFB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average TTFB between the NetScaler appliance and the server.TTFB is the time interval between sending the request packet to a service and receiving the first response from the service" - ::= { serviceGroupMemberEntry 21 } - -svcGrpMembertotalJsTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of javascripts sent to geniune clients." - ::= { serviceGroupMemberEntry 22 } - -svcGrpMemberdosQDepth OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients waiting currently in priority queue" - ::= { serviceGroupMemberEntry 23 } - -svcGrpMemberCurClntConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current client connections." - ::= { serviceGroupMemberEntry 24 } - -svcGrpMemberRequestRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Request rate in requests per second for this service or virtual server." - ::= { serviceGroupMemberEntry 25 } - -svcGrpMemberRxBytesRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Request rate in bytes per second fot this service or virtual server." - ::= { serviceGroupMemberEntry 26 } - -svcGrpMemberTxBytesRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Response rate in bytes per second for this service or virtual server." - ::= { serviceGroupMemberEntry 27 } - -svcGrpMemberSynfloodRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate of unacknowledged SYN packets for this service or virtual server." - ::= { serviceGroupMemberEntry 28 } - -svcGrpMemberTicksSinceLastStateChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time (in 10 milliseconds) since the last state change." - ::= { serviceGroupMemberEntry 31 } - -svcGrpMemberGroupFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service Group" - ::= { serviceGroupMemberEntry 32 } - -svcGrpMemberFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service group member" - ::= { serviceGroupMemberEntry 33 } - -svcGrpMemberPrimaryInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of svcGrpMemberPrimaryInetAddress" - ::= { serviceGroupMemberEntry 34 } - -svcGrpMemberPrimaryInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Internet address at which the service is running." - ::= { serviceGroupMemberEntry 35 } - -svcGrpMemberServerName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the server of the servicegroup member" - ::= { serviceGroupMemberEntry 36 } - -svcGrpMemberTdId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Traffic Domain ID of this service group member." - ::= { serviceGroupMemberEntry 37 } - -serviceDospolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceDospolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The service DOS policy relationship table" - ::= { nsSvcGroup 8 } - -serviceDospolicyEntry OBJECT-TYPE - SYNTAX ServiceDospolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcServiceName , dosPolicyName } - ::= { serviceDospolicyTable 1 } - -ServiceDospolicyEntry ::= SEQUENCE { - svcdospolicydosTotJSSent Counter64, - svcdospolicydosTotJSBytesSent Counter64, - svcdospolicydosTotJSRefused Counter64, - svcdospolicydosTotNonGetPostRequests Counter64, - svcdospolicydosPhysicalServiceIP IpAddress, - svcdospolicydosPhysicalServicePort Integer32, - svcdospolicydosCurrentQueueSize Gauge32, - svcdospolicydosCurrentJSRate Gauge32, - svcdospolicydosTotValidClients Counter64, - svcdospolicydosCurServerRespRate Gauge32 -} - -svcdospolicydosTotJSSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DoS JavaScript transactions performed for this policy." - ::= { serviceDospolicyEntry 1 } - -svcdospolicydosTotJSBytesSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of DoS JavaScript bytes sent for this policy." - ::= { serviceDospolicyEntry 2 } - -svcdospolicydosTotJSRefused OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times the DoS JavaScript was not sent because the set JavaScript rate was not met for this policy." - ::= { serviceDospolicyEntry 3 } - -svcdospolicydosTotNonGetPostRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of non-GET and non-POST requests for which DOS JavaScript was sent." - ::= { serviceDospolicyEntry 4 } - -svcdospolicydosPhysicalServiceIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the service to which this policy is bound." - ::= { serviceDospolicyEntry 5 } - -svcdospolicydosPhysicalServicePort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port address of the service to which this policy is bound." - ::= { serviceDospolicyEntry 6 } - -svcdospolicydosCurrentQueueSize OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current queue size of the server to which this policy is bound." - ::= { serviceDospolicyEntry 7 } - -svcdospolicydosCurrentJSRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current rate at which JavaScript is being sent in response to client requests." - ::= { serviceDospolicyEntry 8 } - -svcdospolicydosTotValidClients OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of valid DoS cookies received for this policy." - ::= { serviceDospolicyEntry 9 } - -svcdospolicydosCurServerRespRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current rate at which the server to which this policy is bound is responding." - ::= { serviceDospolicyEntry 10 } - -monitorMemberTable OBJECT-TYPE - SYNTAX SEQUENCE OF MonitorMemberEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The monitor table" - ::= { nsSvcGroup 9 } - -monitorMemberEntry OBJECT-TYPE - SYNTAX MonitorMemberEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { monitorName } - ::= { monitorMemberTable 1 } - -MonitorMemberEntry ::= SEQUENCE { - monitorName OCTET STRING, - responseTimeoutThreshold Integer32, - monitorType MonitorType, - monitorInterval Integer32, - monitorResponseTimeout Integer32, - monitorDowntime Integer32, - monitorRetrys Integer32, - destinationIP IpAddress, - destinationPort Integer32, - drtmDeviation Integer32, - drtmActiveMonitors Integer32, - drtmCumResponseTimeout Gauge32, - alarmProbeFailedRetries Integer32, - destinationInetAddressType InetAddressType, - destinationInetAddress InetAddress -} - -monitorName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Monitor name" - ::= { monitorMemberEntry 1 } - -responseTimeoutThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Monitor Response timeout threshold, above which snmp trap will be fired.It is expressed in milliseconds." - ::= { monitorMemberEntry 2 } - -monitorType OBJECT-TYPE - SYNTAX MonitorType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Type of the monitor." - ::= { monitorMemberEntry 3 } - -monitorInterval OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Interval between monitoring probes.It is expressed in milliseconds." - ::= { monitorMemberEntry 4 } - -monitorResponseTimeout OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Maximum time a monitor probe can take to respond.It is expressed in milliseconds." - ::= { monitorMemberEntry 5 } - -monitorDowntime OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time for which the monitor probes are not fired once it is down.It is expressed in milliseconds." - ::= { monitorMemberEntry 6 } - -monitorRetrys OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed attempts to make server DOWN." - ::= { monitorMemberEntry 7 } - -destinationIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination IP address that is used for monitoring." - ::= { monitorMemberEntry 8 } - -destinationPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination port that is used for monitoring." - ::= { monitorMemberEntry 9 } - -drtmDeviation OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Tolerable Deviation of response time for DRTM.It is expressed in milliseconds." - ::= { monitorMemberEntry 10 } - -drtmActiveMonitors OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of monitors contributing to DRTM average." - ::= { monitorMemberEntry 11 } - -drtmCumResponseTimeout OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total cumulative response time of all active DRTM monitors.It is expressed in milliseconds." - ::= { monitorMemberEntry 12 } - -alarmProbeFailedRetries OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed attempts to generate snmp trap." - ::= { monitorMemberEntry 13 } - -destinationInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The address type of destinationInetAddress" - ::= { monitorMemberEntry 14 } - -destinationInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Destination Internet address that is used for monitoring." - ::= { monitorMemberEntry 15 } - -monServiceMemberTable OBJECT-TYPE - SYNTAX SEQUENCE OF MonServiceMemberEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The moninfo table, bindings of monitors to services." - ::= { nsSvcGroup 10 } - -monServiceMemberEntry OBJECT-TYPE - SYNTAX MonServiceMemberEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { monServiceName , monitorName } - ::= { monServiceMemberTable 1 } - -MonServiceMemberEntry ::= SEQUENCE { - monServiceName OCTET STRING, - monitorRTO Gauge32, - monitorState MonitorState, - drtmRTO Gauge32, - drtmLearningProbes Gauge32, - monitorCurFailedCount Gauge32, - monitorWeight Integer32, - alarmMonrespto Gauge32, - monitorProbes Counter32, - monitorFailed Counter32, - monitorMaxClient Counter32, - monitorFailedCon Counter32, - monitorFailedCode Counter32, - monitorFailedStr Counter32, - monitorFailedTimeout Counter32, - monitorFailedSend Counter32, - monitorFailedFTP Counter32, - monitorFailedPort Counter32, - monitorFailedResponse Counter32, - monitorFailedId Counter32, - monitorProbesNoChange Counter32, - monitorResponseTimeoutThreshExceed Counter32 -} - -monServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service to which the monitor is bound." - ::= { monServiceMemberEntry 1 } - -monitorRTO OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Response time in micro-seconds. (Calculated using LRTM.)" - ::= { monServiceMemberEntry 2 } - -monitorState OBJECT-TYPE - SYNTAX MonitorState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "State of the specified monitor. Possible states are UP, OUT OF SERVICE, DOWN, GOING OUT OF SERVICE, and DOWN WHEN GOING OUT OF SERVICE." - ::= { monServiceMemberEntry 3 } - -drtmRTO OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Monitor probe time in milli-seconds for DRTM monitors. (Round trip time)" - ::= { monServiceMemberEntry 4 } - -drtmLearningProbes OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of pending DRTM monitoring probes." - ::= { monServiceMemberEntry 5 } - -monitorCurFailedCount OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current, continuous monitoring probe failure count. (Reset on success only.)" - ::= { monServiceMemberEntry 6 } - -monitorWeight OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Weight assigned to the monitor binding." - ::= { monServiceMemberEntry 7 } - -alarmMonrespto OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the response time taken for the current monitor probe." - ::= { monServiceMemberEntry 8 } - -monitorProbes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of monitoring probes sent." - ::= { monServiceMemberEntry 9 } - -monitorFailed OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes." - ::= { monServiceMemberEntry 10 } - -monitorMaxClient OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of monitoring probes that were not sent due to MaxClients." - ::= { monServiceMemberEntry 11 } - -monitorFailedCon OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to failed connections." - ::= { monServiceMemberEntry 12 } - -monitorFailedCode OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to improper response code." - ::= { monServiceMemberEntry 13 } - -monitorFailedStr OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to invalid response string." - ::= { monServiceMemberEntry 14 } - -monitorFailedTimeout OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to timeout." - ::= { monServiceMemberEntry 15 } - -monitorFailedSend OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to inability to send the data." - ::= { monServiceMemberEntry 16 } - -monitorFailedFTP OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to ftp protocol violation." - ::= { monServiceMemberEntry 17 } - -monitorFailedPort OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to port unreachable response." - ::= { monServiceMemberEntry 18 } - -monitorFailedResponse OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to invalid response." - ::= { monServiceMemberEntry 19 } - -monitorFailedId OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of failed monitoring probes due to response id mismatch." - ::= { monServiceMemberEntry 20 } - -monitorProbesNoChange OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of monitoring probes which did not change the state." - ::= { monServiceMemberEntry 21 } - -monitorResponseTimeoutThreshExceed OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - " Number of times the response time has exceeded the configured threshold." - ::= { monServiceMemberEntry 22 } - -serviceGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The netscaler services group table" - ::= { nsSvcGroup 11 } - -serviceGroupEntry OBJECT-TYPE - SYNTAX ServiceGroupEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcgrpSvcGroupName } - ::= { serviceGroupTable 1 } - -ServiceGroupEntry ::= SEQUENCE { - svcgrpSvcGroupName OCTET STRING, - svcgrpSvcGroupType EntityProtocolType, - svcgrpSvcGroupState ServiceGroupState, - svcgrpSvcGroupFullName OCTET STRING, - svcgrpTdId Integer32 -} - -svcgrpSvcGroupName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service Group" - ::= { serviceGroupEntry 1 } - -svcgrpSvcGroupType OBJECT-TYPE - SYNTAX EntityProtocolType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of the service Group." - ::= { serviceGroupEntry 2 } - -svcgrpSvcGroupState OBJECT-TYPE - SYNTAX ServiceGroupState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the service Group" - ::= { serviceGroupEntry 3 } - -svcgrpSvcGroupFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the service Group" - ::= { serviceGroupEntry 4 } - -svcgrpTdId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Traffic Domain ID of this service group." - ::= { serviceGroupEntry 5 } - -nsVserverGroup OBJECT IDENTIFIER - ::= { rs9000 3 } - -vserverTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vservers table" - ::= { nsVserverGroup 1 } - -vserverEntry OBJECT-TYPE - SYNTAX VserverEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName } - ::= { vserverTable 1 } - -VserverEntry ::= SEQUENCE { - vsvrName OCTET STRING, - vsvrIpAddress IpAddress, - vsvrPort Integer32, - vsvrType EntityProtocolType, - vsvrState EntityState, - vsvrMaxReqPerConn Counter32, - vsvrCurClntConnections Gauge32, - vsvrCurSrvrConnections Gauge32, - vsvrAvgTransactionTime TimeTicks, - vsvrSurgeCount Gauge32, - vsvrTotalRequestsLow Counter32, - vsvrTotalRequestsHigh Counter32, - vsvrTotalRequestBytesLow Counter32, - vsvrTotalRequestBytesHigh Counter32, - vsvrTotalResponsesLow Counter32, - vsvrTotalResponsesHigh Counter32, - vsvrTotalResponseBytesLow Counter32, - vsvrTotalResponseBytesHigh Counter32, - vsvrTotalPktsRecvdLow Counter32, - vsvrTotalPktsRecvdHigh Counter32, - vsvrTotalPktsSentLow Counter32, - vsvrTotalPktsSentHigh Counter32, - vsvrTotalSynsRecvdLow Counter32, - vsvrTotalSynsRecvdHigh Counter32, - vsvrTotalRequests Counter64, - vsvrTotalRequestBytes Counter64, - vsvrTotalResponses Counter64, - vsvrTotalResponseBytes Counter64, - vsvrTotalPktsRecvd Counter64, - vsvrTotalPktsSent Counter64, - vsvrTotalSynsRecvd Counter64, - vsvrCurServicesDown Gauge32, - vsvrCurServicesUnKnown Gauge32, - vsvrCurServicesOutOfSvc Gauge32, - vsvrCurServicesTransToOutOfSvc Gauge32, - vsvrCurServicesUp Gauge32, - vsvrTotMiss Counter64, - vsvrRequestRate OCTET STRING, - vsvrRxBytesRate OCTET STRING, - vsvrTxBytesRate OCTET STRING, - vsvrSynfloodRate OCTET STRING, - vsvrIp6Address Ipv6Address, - vsvrTotHits Counter64, - vsvrTotSpillOvers Counter32, - vsvrTotalClients Counter64, - vsvrClientConnOpenRate OCTET STRING, - vsvrFullName OCTET STRING, - vsvrCurSslVpnUsers Gauge32, - vsvrTotalServicesBound Gauge32, - vsvrHealth Integer32, - vsvrTicksSinceLastStateChange TimeTicks, - vsvrEntityType VServerType, - vsvrTotalServers Counter64, - vsvrActiveActiveState ActiveActiveState, - vsvrInvalidRequestResponse Counter64, - vsvrInvalidRequestResponseDropped Counter64, - vsvrTdId Integer32, - vsvrSoThreshold Gauge32, - vsvrEstablishedConn Gauge32, - vsvrCurTotalVpnUsers Gauge32, - vsvrCurMptcpSessions Gauge32, - vsvrCursubflowConn Gauge32, - vsvrCurEffState EntityState -} - -vsvrName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the vserver" - ::= { vserverEntry 1 } - -vsvrIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the vserver" - ::= { vserverEntry 2 } - -vsvrPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "the port of the vserver" - ::= { vserverEntry 3 } - -vsvrType OBJECT-TYPE - SYNTAX EntityProtocolType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Protocol associated with the vserver" - ::= { vserverEntry 4 } - -vsvrState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current state of the server. Possible values are UP, DOWN, UNKNOWN, OFS(Out of Service), TROFS(Transition Out of Service), TROFS_DOWN(Down When going Out of Service)" - ::= { vserverEntry 5 } - -vsvrMaxReqPerConn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 6 } - -vsvrCurClntConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current client connections." - ::= { vserverEntry 7 } - -vsvrCurSrvrConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of current connections to the actual servers behind the virtual server." - ::= { vserverEntry 8 } - -vsvrAvgTransactionTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 9 } - -vsvrSurgeCount OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of requests in the surge queue." - ::= { vserverEntry 10 } - -vsvrTotalRequestsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 11 } - -vsvrTotalRequestsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 12 } - -vsvrTotalRequestBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 13 } - -vsvrTotalRequestBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 14 } - -vsvrTotalResponsesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 15 } - -vsvrTotalResponsesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 16 } - -vsvrTotalResponseBytesLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 17 } - -vsvrTotalResponseBytesHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 18 } - -vsvrTotalPktsRecvdLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 19 } - -vsvrTotalPktsRecvdHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 20 } - -vsvrTotalPktsSentLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 21 } - -vsvrTotalPktsSentHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 22 } - -vsvrTotalSynsRecvdLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 23 } - -vsvrTotalSynsRecvdHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverEntry 24 } - -vsvrTotalRequests OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received on this service or virtual server. (This applies to HTTP/SSL services and servers.)" - ::= { vserverEntry 30 } - -vsvrTotalRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of request bytes received on this service or virtual server." - ::= { vserverEntry 31 } - -vsvrTotalResponses OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of responses received on this service or virtual server. (This applies to HTTP/SSL services and servers.)" - ::= { vserverEntry 32 } - -vsvrTotalResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of response bytes received by this service or virtual server." - ::= { vserverEntry 33 } - -vsvrTotalPktsRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets received by this service or virtual server." - ::= { vserverEntry 34 } - -vsvrTotalPktsSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of packets sent." - ::= { vserverEntry 35 } - -vsvrTotalSynsRecvd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of SYN packets received from clients on this service (only when directly accessed) or virtual server." - ::= { vserverEntry 36 } - -vsvrCurServicesDown OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of services which are bound to this vserver and are in the state 'down'." - ::= { vserverEntry 37 } - -vsvrCurServicesUnKnown OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of services which are bound to this vserver and are in the state 'unKnown'." - ::= { vserverEntry 38 } - -vsvrCurServicesOutOfSvc OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of services which are bound to this vserver and are in the state 'outOfService'." - ::= { vserverEntry 39 } - -vsvrCurServicesTransToOutOfSvc OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of services which are bound to this vserver and are in the state 'transitionToOutOfService'." - ::= { vserverEntry 40 } - -vsvrCurServicesUp OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of services which are bound to this vserver and are in the state 'up'." - ::= { vserverEntry 41 } - -vsvrTotMiss OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total vserver misses" - ::= { vserverEntry 42 } - -vsvrRequestRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Request rate in requests per second for this service or virtual server." - ::= { vserverEntry 43 } - -vsvrRxBytesRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Request rate in bytes per second fot this service or virtual server." - ::= { vserverEntry 44 } - -vsvrTxBytesRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Response rate in bytes per second for this service or virtual server." - ::= { vserverEntry 45 } - -vsvrSynfloodRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate of unacknowledged SYN packets for this service or virtual server." - ::= { vserverEntry 46 } - -vsvrIp6Address OBJECT-TYPE - SYNTAX Ipv6Address - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IPv6 address of the v server" - ::= { vserverEntry 47 } - -vsvrTotHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total vserver hits" - ::= { vserverEntry 48 } - -vsvrTotSpillOvers OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times vserver experienced spill over." - ::= { vserverEntry 54 } - -vsvrTotalClients OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of established client connections." - ::= { vserverEntry 56 } - -vsvrClientConnOpenRate OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Rate at which connections are opened for this virtual server per second." - ::= { vserverEntry 58 } - -vsvrFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the vserver" - ::= { vserverEntry 59 } - -vsvrCurSslVpnUsers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of aaa sessions on this vserver" - ::= { vserverEntry 60 } - -vsvrTotalServicesBound OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of services which are bound to this vserver." - ::= { vserverEntry 61 } - -vsvrHealth OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The percentage of UP services bound to this vserver." - ::= { vserverEntry 62 } - -vsvrTicksSinceLastStateChange OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time (in 10 milliseconds) since the last state change." - ::= { vserverEntry 63 } - -vsvrEntityType OBJECT-TYPE - SYNTAX VServerType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of the vserver." - ::= { vserverEntry 64 } - -vsvrTotalServers OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of established server connections." - ::= { vserverEntry 65 } - -vsvrActiveActiveState OBJECT-TYPE - SYNTAX ActiveActiveState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The state of the vserver based on ActiveActive configuration." - ::= { vserverEntry 66 } - -vsvrInvalidRequestResponse OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number invalid requests/responses on this vserver" - ::= { vserverEntry 67 } - -vsvrInvalidRequestResponseDropped OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number invalid requests/responses dropped on this vserver" - ::= { vserverEntry 68 } - -vsvrTdId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Traffic Domain of the vserver" - ::= { vserverEntry 69 } - -vsvrSoThreshold OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Spill Over Threshold set on the VServer." - ::= { vserverEntry 70 } - -vsvrEstablishedConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of client connections in ESTABLISHED state." - ::= { vserverEntry 71 } - -vsvrCurTotalVpnUsers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of total users on this vserver" - ::= { vserverEntry 72 } - -vsvrCurMptcpSessions OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current Multipath TCP sessions" - ::= { vserverEntry 73 } - -vsvrCursubflowConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current Multipath TCP subflows" - ::= { vserverEntry 74 } - -vsvrCurEffState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current Effective state of vserver" - ::= { vserverEntry 75 } - -vserverServiceTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverServiceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver service relationship table" - ::= { nsVserverGroup 2 } - -vserverServiceEntry OBJECT-TYPE - SYNTAX VserverServiceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName , vsvrServiceName } - ::= { vserverServiceTable 1 } - -VserverServiceEntry ::= SEQUENCE { - serviceHitsLow Counter32, - serviceHitsHigh Counter32, - servicePersistentHitsLow Counter32, - servicePersistentHitsHigh Counter32, - vsvrServiceHits Counter64, - servicePersistentHits Counter64, - serviceWeight Integer32, - vsvrServiceName OCTET STRING, - vsvrServiceFullName OCTET STRING, - vserverFullName OCTET STRING, - vsvrServiceEntityType SvcEntityType -} - -serviceHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverServiceEntry 1 } - -serviceHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverServiceEntry 2 } - -servicePersistentHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverServiceEntry 3 } - -servicePersistentHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverServiceEntry 4 } - -vsvrServiceHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times that the service has been provided." - ::= { vserverServiceEntry 5 } - -servicePersistentHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of persistent hits." - ::= { vserverServiceEntry 6 } - -serviceWeight OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The weight of the service tied to the vserver." - ::= { vserverServiceEntry 7 } - -vsvrServiceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the service to which the vserver is bound." - ::= { vserverServiceEntry 8 } - -vsvrServiceFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Full name of the service to which the vserver is bound." - ::= { vserverServiceEntry 9 } - -vserverFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the vserver." - ::= { vserverServiceEntry 10 } - -vsvrServiceEntityType OBJECT-TYPE - SYNTAX SvcEntityType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The entity type of the service: service group member or service." - ::= { vserverServiceEntry 11 } - -vserverCspolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverCspolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver content switching policy relationship table for PE CS Policy" - ::= { nsVserverGroup 3 } - -vserverCspolicyEntry OBJECT-TYPE - SYNTAX VserverCspolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName , cspolicyName } - ::= { vserverCspolicyTable 1 } - -VserverCspolicyEntry ::= SEQUENCE { - cspolicyName OCTET STRING, - cspolicyDestVserverName OCTET STRING, - cspolicyHitsLow Counter32, - cspolicyHitsHigh Counter32, - cspolicyHits Counter64, - csIndexVserverFullName OCTET STRING -} - -cspolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the name of the CS PE policy bound to content switching vserver " - ::= { vserverCspolicyEntry 1 } - -cspolicyDestVserverName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the name of the destination vserver to which the request has to be directed to if the content switching policy evaluates to true." - ::= { vserverCspolicyEntry 2 } - -cspolicyHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverCspolicyEntry 3 } - -cspolicyHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverCspolicyEntry 4 } - -cspolicyHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of hits on this content switching policy." - ::= { vserverCspolicyEntry 5 } - -csIndexVserverFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the cs vserver to which this policy belongs." - ::= { vserverCspolicyEntry 6 } - -vserverCrpolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverCrpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver cache redirection policy relationship table" - ::= { nsVserverGroup 4 } - -vserverCrpolicyEntry OBJECT-TYPE - SYNTAX VserverCrpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName , crpolicyName } - ::= { vserverCrpolicyTable 1 } - -VserverCrpolicyEntry ::= SEQUENCE { - crpolicyName OCTET STRING, - crpolicyHitsLow Counter32, - crpolicyHitsHigh Counter32, - crpolicyHits Counter64, - crIndexVserverFullName OCTET STRING -} - -crpolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the name of the policy bound to cache-redirection vserver " - ::= { vserverCrpolicyEntry 1 } - -crpolicyHitsLow OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverCrpolicyEntry 2 } - -crpolicyHitsHigh OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverCrpolicyEntry 3 } - -crpolicyHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Hits on the cache redirection policy." - ::= { vserverCrpolicyEntry 4 } - -crIndexVserverFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the cr vserver to which this policy belongs." - ::= { vserverCrpolicyEntry 5 } - -vserverGlobalStatsGroup OBJECT IDENTIFIER - ::= { nsVserverGroup 5 } - -curConfigVservers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of vservers configured on the NetScaler." - ::= { vserverGlobalStatsGroup 1 } - -vsvrBindCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of virtual server bindings on this NetScaler appliance." - ::= { vserverGlobalStatsGroup 2 } - -vsvrSvcGrpBindCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of virtual server, service group bindings on this NetScaler appliance." - ::= { vserverGlobalStatsGroup 3 } - -curConfigLbVservers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of LB vservers configured on the NetScaler." - ::= { vserverGlobalStatsGroup 4 } - -curConfigGslbVservers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of GSLB vservers configured on the NetScaler." - ::= { vserverGlobalStatsGroup 5 } - -totSpilloverCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total count of spillovers." - ::= { vserverGlobalStatsGroup 6 } - -lbvserverTable OBJECT-TYPE - SYNTAX SEQUENCE OF LbvserverEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table for LB specific configuration" - ::= { nsVserverGroup 6 } - -lbvserverEntry OBJECT-TYPE - SYNTAX LbvserverEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName } - ::= { lbvserverTable 1 } - -LbvserverEntry ::= SEQUENCE { - lbvsvrLBMethod LbPolicy, - lbvsvrPersistanceType PersistanceType, - lbvsvrPersistenceTimeOut Integer32, - lbvsvrActiveConn Gauge32, - lbvsvrAvgSvrTTFB Gauge32, - lbvsvrRdpCookieParsed Counter64 -} - -lbvsvrLBMethod OBJECT-TYPE - SYNTAX LbPolicy - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Policy used for Load Balancing." - ::= { lbvserverEntry 1 } - -lbvsvrPersistanceType OBJECT-TYPE - SYNTAX PersistanceType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of persistence used." - ::= { lbvserverEntry 2 } - -lbvsvrPersistenceTimeOut OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The timeout set for persistence." - ::= { lbvserverEntry 3 } - -lbvsvrActiveConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of connections that are currently active. " - ::= { lbvserverEntry 4 } - -lbvsvrAvgSvrTTFB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average TTFB between the NetScaler appliance and the server.TTFB is the time interval between sending the request packet to a service and receiving the first response from the service" - ::= { lbvserverEntry 5 } - -lbvsvrRdpCookieParsed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of times MSTS RDP Cookie got parsed on this vserver" - ::= { lbvserverEntry 6 } - -vserverPqpolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverPqpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver priority queuing policy relationship table" - ::= { nsVserverGroup 7 } - -vserverPqpolicyEntry OBJECT-TYPE - SYNTAX VserverPqpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName , pqName } - ::= { vserverPqpolicyTable 1 } - -VserverPqpolicyEntry ::= SEQUENCE { - pqpolicyTotClientTransactionTime Counter64, - pqpolicyTotClientTransactions Counter64, - pqpolicyDropped Counter64, - pqpolicyQdepth Counter32, - pqpolicytotClientTransactionTime Counter64, - pqpolicytotClientTransactions Counter64, - pqpolicypqDropped Counter64, - pqpolicypqQdepth Gauge32, - pqpolicypqAvgClientTransactionTime Gauge32, - pqpolicypqVserverIP IpAddress, - pqpolicypqVserverPort Integer32, - pqpolicypqCurrentClientConnections Gauge32, - pqpolicypqTotQueueDepth Counter64, - pqpolicypqTotClientConnections Counter64, - pqpolicypqTotQueueWaitTime Counter64, - pqpolicypqTotAvgQueueDepth Gauge32, - pqpolicypqTotAvgQueueWaitTime Gauge32, - pqpolicytotClientTransactionTimems Counter64, - pqpolicypqAvgClientTransactionTimems Gauge32 -} - -pqpolicyTotClientTransactionTime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverPqpolicyEntry 1 } - -pqpolicyTotClientTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverPqpolicyEntry 2 } - -pqpolicyDropped OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverPqpolicyEntry 3 } - -pqpolicyQdepth OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverPqpolicyEntry 4 } - -pqpolicytotClientTransactionTime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total client transaction time in micro-seconds for this priority queuing policy. " - ::= { vserverPqpolicyEntry 5 } - -pqpolicytotClientTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of client transactions for this priority queuing policy." - ::= { vserverPqpolicyEntry 6 } - -pqpolicypqDropped OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of dropped transactions for this priority queuing policy." - ::= { vserverPqpolicyEntry 7 } - -pqpolicypqQdepth OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients waiting currently for this priority queuing policy." - ::= { vserverPqpolicyEntry 8 } - -pqpolicypqAvgClientTransactionTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average time taken by a priority queuing client to complete its transaction for this priority queuing policy." - ::= { vserverPqpolicyEntry 9 } - -pqpolicypqVserverIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the virtual server to which this priority queuing policy is bound." - ::= { vserverPqpolicyEntry 10 } - -pqpolicypqVserverPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port number of the virtual server to which this priority queuing policy is bound." - ::= { vserverPqpolicyEntry 11 } - -pqpolicypqCurrentClientConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of server connections established for serving clients for this priority queuing policy." - ::= { vserverPqpolicyEntry 12 } - -pqpolicypqTotQueueDepth OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of waiting clients for this priority queuing policy." - ::= { vserverPqpolicyEntry 13 } - -pqpolicypqTotClientConnections OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of server connections established for serving clients for this priority queuing policy." - ::= { vserverPqpolicyEntry 14 } - -pqpolicypqTotQueueWaitTime OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Amount of time spent by priority queuing clients waiting in the priority queue." - ::= { vserverPqpolicyEntry 15 } - -pqpolicypqTotAvgQueueDepth OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average number of waiting clients for this priority queuing policy." - ::= { vserverPqpolicyEntry 16 } - -pqpolicypqTotAvgQueueWaitTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average wait time for clients for this priority queuing policy." - ::= { vserverPqpolicyEntry 17 } - -pqpolicytotClientTransactionTimems OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total client transaction time in microsec for this priority queuing policy." - ::= { vserverPqpolicyEntry 18 } - -pqpolicypqAvgClientTransactionTimems OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average time taken by a priority queuing client to complete its transaction for this priority queuing policy." - ::= { vserverPqpolicyEntry 19 } - -vserverScpolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverScpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver sure connect policy relationship table" - ::= { nsVserverGroup 8 } - -vserverScpolicyEntry OBJECT-TYPE - SYNTAX VserverScpolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { svcServiceName , scPolicyName } - ::= { vserverScpolicyTable 1 } - -VserverScpolicyEntry ::= SEQUENCE { - vsvrscpolicyPrimaryIPAddress IpAddress, - vsvrscpolicyPrimaryPort Integer32, - vsvrscpolicyDesIpAddress IpAddress, - vsvrscpolicyDestPort Integer32, - vsvrscpolicyAvgServerTransactionTime Gauge32, - vsvrscpolicyTotClientTransaction Counter64, - vsvrscpolicyTotOpenConn Counter32, - vsvrscpolicydesIpAddress IpAddress, - vsvrscpolicydestPort Integer32, - vsvrscpolicyavgServerTransactionTime Gauge32, - vsvrscpolicytotClientTransaction Counter64, - vsvrscpolicytotOpenConn Gauge32, - vsvrscpolicyscPhysicalServiceIP IpAddress, - vsvrscpolicyscPhysicalServicePort Integer32, - vsvrscpolicyscCurrentWaitingTime Gauge32, - vsvrscpolicyscCurrentClientConnections Gauge32, - vsvrscpolicyscTotalClientConnections Counter64, - vsvrscpolicyscTotalServerConnections Counter64, - vsvrscpolicyscTotalRequestsReceived Counter64, - vsvrscpolicyscTotalRequestBytes Counter64, - vsvrscpolicyscTotalResponsesReceived Counter64, - vsvrscpolicyscTotalResponseBytes Counter64, - vsvrscpolicyscCurrentSurgeQClients Gauge32, - vsvrscpolicyscCurrentWaitingClients Gauge32, - vsvrscpolicyscTotalServerTransactions Counter64, - vsvrscpolicyscTotalServerTTFBTransactions Counter64, - vsvrscpolicyscTotalServerTTLB Counter64, - vsvrscpolicyscTotalClientTTLB Counter64, - vsvrscpolicyscTotalServerTTFB Counter64, - vsvrscpolicyscAverageClientTTLB Gauge32, - vsvrscpolicyscAverageServerTTFB Gauge32 -} - -vsvrscpolicyPrimaryIPAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP address of the service or virtual server to which the policy is bound." - ::= { vserverScpolicyEntry 1 } - -vsvrscpolicyPrimaryPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The port of the service or virtual server to which the policy is bound." - ::= { vserverScpolicyEntry 2 } - -vsvrscpolicyDesIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverScpolicyEntry 3 } - -vsvrscpolicyDestPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverScpolicyEntry 4 } - -vsvrscpolicyAvgServerTransactionTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverScpolicyEntry 5 } - -vsvrscpolicyTotClientTransaction OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverScpolicyEntry 6 } - -vsvrscpolicyTotOpenConn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { vserverScpolicyEntry 7 } - -vsvrscpolicydesIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the destination service." - ::= { vserverScpolicyEntry 8 } - -vsvrscpolicydestPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port number of the destination service." - ::= { vserverScpolicyEntry 9 } - -vsvrscpolicyavgServerTransactionTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average server transaction time in seconds for this SureConnect Policy." - ::= { vserverScpolicyEntry 10 } - -vsvrscpolicytotClientTransaction OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of client transactions processed by this SureConnect policy." - ::= { vserverScpolicyEntry 11 } - -vsvrscpolicytotOpenConn OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of open connections to the servers matching this policy." - ::= { vserverScpolicyEntry 12 } - -vsvrscpolicyscPhysicalServiceIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP address of the service for which these statistics are maintained." - ::= { vserverScpolicyEntry 13 } - -vsvrscpolicyscPhysicalServicePort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Port of the service for which these statistics are maintained." - ::= { vserverScpolicyEntry 14 } - -vsvrscpolicyscCurrentWaitingTime OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Value of the currently estimated waiting time in seconds for the configured URL." - ::= { vserverScpolicyEntry 15 } - -vsvrscpolicyscCurrentClientConnections OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients currently allowed a server connection by this SureConnect policy." - ::= { vserverScpolicyEntry 16 } - -vsvrscpolicyscTotalClientConnections OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of clients that were allowed a server connection by this SureConnect policy." - ::= { vserverScpolicyEntry 17 } - -vsvrscpolicyscTotalServerConnections OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of server connections that were established through this SureConnect policy." - ::= { vserverScpolicyEntry 18 } - -vsvrscpolicyscTotalRequestsReceived OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of requests received by this SureConnect policy." - ::= { vserverScpolicyEntry 19 } - -vsvrscpolicyscTotalRequestBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of request bytes received by this SureConnect policy." - ::= { vserverScpolicyEntry 20 } - -vsvrscpolicyscTotalResponsesReceived OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of server responses received by this SureConnect policy." - ::= { vserverScpolicyEntry 21 } - -vsvrscpolicyscTotalResponseBytes OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of response bytes received by this SureConnect policy." - ::= { vserverScpolicyEntry 22 } - -vsvrscpolicyscCurrentSurgeQClients OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of clients currently matching the SureConnect policy, but are in the surge queue." - ::= { vserverScpolicyEntry 23 } - -vsvrscpolicyscCurrentWaitingClients OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current number of SureConnect priority clients that are waiting for a server connection." - ::= { vserverScpolicyEntry 24 } - -vsvrscpolicyscTotalServerTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of 200 OK responses received from the web server by this SureConnect policy." - ::= { vserverScpolicyEntry 25 } - -vsvrscpolicyscTotalServerTTFBTransactions OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of Time-To-First-Byte transcations from the web server for this SureConnect policy." - ::= { vserverScpolicyEntry 26 } - -vsvrscpolicyscTotalServerTTLB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server Time-To-Last-Byte in seconds calculated for this SureConnect policy." - ::= { vserverScpolicyEntry 27 } - -vsvrscpolicyscTotalClientTTLB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Client Time-To-Last-Byte in seconds calculated for this SureConnect policy." - ::= { vserverScpolicyEntry 28 } - -vsvrscpolicyscTotalServerTTFB OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Server Time-To-First-Byte in seconds calculated for this SureConnect policy." - ::= { vserverScpolicyEntry 29 } - -vsvrscpolicyscAverageClientTTLB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average value of the client Time-To-Last-Byte in seconds for this SureConnect policy." - ::= { vserverScpolicyEntry 30 } - -vsvrscpolicyscAverageServerTTFB OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average value of the server Time-To-First-Byte in seconds for this SureConnect policy." - ::= { vserverScpolicyEntry 31 } - -vserverAdvanceSslConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverAdvanceSslConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver advance SSL configuration" - ::= { nsVserverGroup 9 } - -vserverAdvanceSslConfigEntry OBJECT-TYPE - SYNTAX VserverAdvanceSslConfigEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName } - ::= { vserverAdvanceSslConfigTable 1 } - -VserverAdvanceSslConfigEntry ::= SEQUENCE { - vsvrSslDH AdminStatus, - vsvrSslDHCount Integer32, - vsvrSslDHFilePath OCTET STRING, - vsvrSsleRSA AdminStatus, - vsvrSsleRSACount Integer32, - vsvrSslv2Protocol AdminStatus, - vsvrSslv3Protocol AdminStatus, - vsvrSslTLSv1Protocol AdminStatus, - vsvrSslRedirectSupport AdminStatus, - vsvrSslClearTextPort Integer32 -} - -vsvrSslDH OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether DH is enabled/disabled." - ::= { vserverAdvanceSslConfigEntry 1 } - -vsvrSslDHCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DH refresh count to re-generate public/private key." - ::= { vserverAdvanceSslConfigEntry 2 } - -vsvrSslDHFilePath OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The DH file path name." - ::= { vserverAdvanceSslConfigEntry 3 } - -vsvrSsleRSA OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ephimeral RSA support for service." - ::= { vserverAdvanceSslConfigEntry 4 } - -vsvrSsleRSACount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The eRSA refresh count to re-generate RSA temporary key." - ::= { vserverAdvanceSslConfigEntry 5 } - -vsvrSslv2Protocol OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for SSLv2 protocol for service." - ::= { vserverAdvanceSslConfigEntry 6 } - -vsvrSslv3Protocol OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for SSLv3 protocol for service." - ::= { vserverAdvanceSslConfigEntry 7 } - -vsvrSslTLSv1Protocol OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for TLSv1 protocol for service." - ::= { vserverAdvanceSslConfigEntry 8 } - -vsvrSslRedirectSupport OBJECT-TYPE - SYNTAX AdminStatus - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The support for ssl redirect for service." - ::= { vserverAdvanceSslConfigEntry 9 } - -vsvrSslClearTextPort OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The clear text port on the backend webserver." - ::= { vserverAdvanceSslConfigEntry 10 } - -vserverCipherBindingTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverCipherBindingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver cipher bindings table" - ::= { nsVserverGroup 10 } - -vserverCipherBindingEntry OBJECT-TYPE - SYNTAX VserverCipherBindingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName , vsvrSslCipherBindName } - ::= { vserverCipherBindingTable 1 } - -VserverCipherBindingEntry ::= SEQUENCE { - vsvrSslCipherBindName OCTET STRING, - vsvrSslCipherBindDesc OCTET STRING -} - -vsvrSslCipherBindName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The cipher name bound to this service." - ::= { vserverCipherBindingEntry 1 } - -vsvrSslCipherBindDesc OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Cipher description." - ::= { vserverCipherBindingEntry 2 } - -vserverCsPiPolicyTable OBJECT-TYPE - SYNTAX SEQUENCE OF VserverCsPiPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The vserver content switching policy relationship table for PI CS Policy" - ::= { nsVserverGroup 11 } - -vserverCsPiPolicyEntry OBJECT-TYPE - SYNTAX VserverCsPiPolicyEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "..." - INDEX { vsvrName , csPipolicyName } - ::= { vserverCsPiPolicyTable 1 } - -VserverCsPiPolicyEntry ::= SEQUENCE { - csPipolicyName OCTET STRING, - csPipolicyDestVserverName OCTET STRING, - piPolicyBindingHits Counter64, - csPiIndexVserverFullName OCTET STRING, - cspolicyActionName OCTET STRING -} - -csPipolicyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the name of the CS PI policy bound to content switching vserver " - ::= { vserverCsPiPolicyEntry 1 } - -csPipolicyDestVserverName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This represents the name of the destination vserver to which the request has to be directed to if the content switching policy evaluates to true." - ::= { vserverCsPiPolicyEntry 2 } - -piPolicyBindingHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of hits on the policy on this binding" - ::= { vserverCsPiPolicyEntry 3 } - -csPiIndexVserverFullName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The full name of the cs vserver to which this policy belongs." - ::= { vserverCsPiPolicyEntry 4 } - -cspolicyActionName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the CS PI policy action." - ::= { vserverCsPiPolicyEntry 5 } - -nsSnmpEventsGroup OBJECT IDENTIFIER - ::= { rs9000 10 } - -snmpTrapVarBindOidsGroup OBJECT IDENTIFIER - ::= { nsSnmpEventsGroup 2 } - -alarmHighThreshold OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the high threshold value configured for this alarm. When this threshold is crossed an SNMP alarm is generated." - ::= { snmpTrapVarBindOidsGroup 1 } - -alarmNormalThreshold OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the normal threshold configured for this alarm which triggers the return-to-normal alarm." - ::= { snmpTrapVarBindOidsGroup 2 } - -entityName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the name of the entity whose state has changed." - ::= { snmpTrapVarBindOidsGroup 3 } - -nsUserName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the name of the system user." - ::= { snmpTrapVarBindOidsGroup 4 } - -configurationCmd OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the configuartion command that was issued." - ::= { snmpTrapVarBindOidsGroup 5 } - -authorizationStatus OBJECT-TYPE - SYNTAX AuthorizationStatus - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the authorization status for an attempted configuration change." - ::= { snmpTrapVarBindOidsGroup 6 } - -commandExecutionStatus OBJECT-TYPE - SYNTAX CommandExecutionStatus - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the command execution status for the attempted configuration change." - ::= { snmpTrapVarBindOidsGroup 7 } - -unackSynCount OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The number of un-acknowledged SYNs NetScaler has received in the past synFlood time-interval." - ::= { snmpTrapVarBindOidsGroup 8 } - -alarmLowThreshold OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the low threshold value configured for this alarm. When this threshold is crossed an SNMP alarm is generated." - ::= { snmpTrapVarBindOidsGroup 9 } - -alarmProbeFailedErrorString OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This string represents the error occured on the last monitor probe failure." - ::= { snmpTrapVarBindOidsGroup 10 } - -alarmVipRhiIpAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the VIP whose RHI state has changed." - ::= { snmpTrapVarBindOidsGroup 11 } - -alarmVipRhiState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the changed RHI state of the VIP." - ::= { snmpTrapVarBindOidsGroup 12 } - -alarmRateLmtThresholdExceeded OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This specifies the name of the rate limit identifier that exceeded the threshold." - ::= { snmpTrapVarBindOidsGroup 13 } - -ipAddressGathered OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This specifies the list of ip addresses that may have been gathered during the expression evaluation." - ::= { snmpTrapVarBindOidsGroup 14 } - -stringComputed OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This contains the string computed during the expression evaluation." - ::= { snmpTrapVarBindOidsGroup 15 } - -alarmEntityCurState OBJECT-TYPE - SYNTAX EntityState - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the state of vserver, physicalservice or servicegroup." - ::= { snmpTrapVarBindOidsGroup 16 } - -sysHealthPowerSupplyStatus OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This text represents the status of power supply unit" - ::= { snmpTrapVarBindOidsGroup 17 } - -alarmCurrentValue OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the current value of the entity when high or normal threshold trap is sent." - ::= { snmpTrapVarBindOidsGroup 18 } - -alarmVipRhiInetAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The address type of alarmVipRhiInetAddress" - ::= { snmpTrapVarBindOidsGroup 19 } - -alarmVipRhiInetAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the VIP whose RHI state has changed." - ::= { snmpTrapVarBindOidsGroup 20 } - -alarmVsvrOldName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { snmpTrapVarBindOidsGroup 21 } - -alarmVsvrNewName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS obsolete - DESCRIPTION - "...OBSOLETE" - ::= { snmpTrapVarBindOidsGroup 22 } - -nsClientIPAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the IP Address of the machine trying to access / connected to Netscaler." - ::= { snmpTrapVarBindOidsGroup 23 } - -ipConflictAddr OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The IP configured in netscaler conflicting in the network." - ::= { snmpTrapVarBindOidsGroup 24 } - -appfwLogMsg OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the log message of appfw check violation." - ::= { snmpTrapVarBindOidsGroup 25 } - -dnskeyName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The name of the DNS key that is due for expiry." - ::= { snmpTrapVarBindOidsGroup 26 } - -dnskeyTimeToExpire OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The amount of time for the key to expire" - ::= { snmpTrapVarBindOidsGroup 27 } - -dnskeyUnitsOfExpiry OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "the units of the time of expiry" - ::= { snmpTrapVarBindOidsGroup 28 } - -entityNewName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the entity newName after name was changed." - ::= { snmpTrapVarBindOidsGroup 29 } - -entityOldName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the entity Name before name was changed." - ::= { snmpTrapVarBindOidsGroup 30 } - -platformRateLimitPacketDropCount OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This counter has the number of packets dropped due to platform rate limiting since the last check." - ::= { snmpTrapVarBindOidsGroup 31 } - -haLicenseMatchState OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "the state of HA License check" - ::= { snmpTrapVarBindOidsGroup 32 } - -sslCardStatusMsg OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the interpretation details of sslCardStatus." - ::= { snmpTrapVarBindOidsGroup 33 } - -callHomeUploadEventStatusMsg OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the status of CallHome Upload Event." - ::= { snmpTrapVarBindOidsGroup 34 } - -oldCCOIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the old Configuration Coordinator IP." - ::= { snmpTrapVarBindOidsGroup 35 } - -newCCOIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the new Configuration Coordinator IP." - ::= { snmpTrapVarBindOidsGroup 36 } - -oldOVS OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the old cluster Operational View Set." - ::= { snmpTrapVarBindOidsGroup 37 } - -newOVS OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the new Cluster Operational View Set." - ::= { snmpTrapVarBindOidsGroup 38 } - -qosdVersion OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This counter tells the QOSD version" - ::= { snmpTrapVarBindOidsGroup 39 } - -brVersion OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This counter tells the BR version" - ::= { snmpTrapVarBindOidsGroup 40 } - -sslChipName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the name of a Crypto device ." - ::= { snmpTrapVarBindOidsGroup 41 } - -vrid OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the VRID." - ::= { snmpTrapVarBindOidsGroup 42 } - -vridBoundVIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the VRID bound VIP." - ::= { snmpTrapVarBindOidsGroup 43 } - -newVridPriority OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the new priority of VRID" - ::= { snmpTrapVarBindOidsGroup 44 } - -oldVridPriority OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS accessible-for-notify - STATUS obsolete - DESCRIPTION - "This object has been obsoleted. This was wrongly added assuming that vridStatChange trap will also send old VRID priority, but it wont. It will send effective VRID priority" - ::= { snmpTrapVarBindOidsGroup 45 } - -effectiveVridPriority OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the effective priority of VRID" - ::= { snmpTrapVarBindOidsGroup 46 } - -dstip OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the dstip for which the port allocation has failed." - ::= { snmpTrapVarBindOidsGroup 47 } - -platformLicensedThroughput OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the platform licensed throughput." - ::= { snmpTrapVarBindOidsGroup 48 } - -platformLicensedPPS OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the platform licensed packets per seconds." - ::= { snmpTrapVarBindOidsGroup 49 } - -commandFailureReason OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the error string displayed in cli when the command fails." - ::= { snmpTrapVarBindOidsGroup 50 } - -nsIPAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The address type of nsIPAddress" - ::= { snmpTrapVarBindOidsGroup 51 } - -nsIPAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the IPV6 or IPV4 address." - ::= { snmpTrapVarBindOidsGroup 52 } - -lsnSubscrIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the LSN Subscriber IP." - ::= { snmpTrapVarBindOidsGroup 53 } - -lsnSubscrTD OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the LSN Subscriber TD." - ::= { snmpTrapVarBindOidsGroup 54 } - -protocol OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the IP Protocol." - ::= { snmpTrapVarBindOidsGroup 55 } - -vsvrCurSoValue OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "vserver spillover value." - ::= { snmpTrapVarBindOidsGroup 56 } - -vsvrSoMethod OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "vserver spillover method." - ::= { snmpTrapVarBindOidsGroup 57 } - -vsvrSoThresh OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "vserver spillover threshold." - ::= { snmpTrapVarBindOidsGroup 58 } - -lsnSessLimitExceededBy OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the entity(group/subscriber) which has exceeded the quota." - ::= { snmpTrapVarBindOidsGroup 59 } - -nsPartitionName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This is the partition name of the source of the trap" - ::= { snmpTrapVarBindOidsGroup 60 } - -operation OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the operation like add,remove etc" - ::= { snmpTrapVarBindOidsGroup 61 } - -fromPartition OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the partition name from where switch happened" - ::= { snmpTrapVarBindOidsGroup 62 } - -toPartition OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the partition name to where switch happened" - ::= { snmpTrapVarBindOidsGroup 63 } - -clPeerID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the unique ids of the cluster nodes from where heartbeats are not received on backplane" - ::= { snmpTrapVarBindOidsGroup 64 } - -lsnDSLiteB4Address OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the IPv6 address of the B4 device in DS-Lite environment." - ::= { snmpTrapVarBindOidsGroup 65 } - -ipConflictMacAddr OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The MAC address of the machine having the conflicting IP configured in the network." - ::= { snmpTrapVarBindOidsGroup 66 } - -gslbSite OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the GSLB site name." - ::= { snmpTrapVarBindOidsGroup 67 } - -siteIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the GSLB site IP Address." - ::= { snmpTrapVarBindOidsGroup 68 } - -lsnNAT64SubscrIPV6 OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "This represents the LSN Subscriber IPV6 address." - ::= { snmpTrapVarBindOidsGroup 69 } - -netScalerEventsV2 OBJECT-IDENTITY - STATUS current - DESCRIPTION - "The events for NetScaler" - ::= { netScalerEvents 0 } - -changeToPrimary NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the netscaler is now operating in the primary mode." - ::= { netScalerEventsV2 1 } - -changeToSecondary NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the netscaler is now operating in the Secondary mode." - ::= { netScalerEventsV2 2 } - -cpuUtilization NOTIFICATION-TYPE - OBJECTS { nsCPUusage , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the CPU utilization has exceeded the high threshold" - ::= { netScalerEventsV2 3 } - -linkUp NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 4 } - -linkDown NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 5 } - -discoverFailure NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 6 } - -memUtilization NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 7 } - -entitydown NOTIFICATION-TYPE - OBJECTS { entityName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the state of entities such as an interface, vserver, physicalservice or servicegroup changes to DOWN" - ::= { netScalerEventsV2 8 } - -entityup NOTIFICATION-TYPE - OBJECTS { entityName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the state of entities such as an interface, vserver, physicalservice or servicegroup changes to UP" - ::= { netScalerEventsV2 9 } - -synflood NOTIFICATION-TYPE - OBJECTS { unackSynCount , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the rate at which unacknowledged SYNs are received cross a threshold value" - ::= { netScalerEventsV2 10 } - -cpuUtilizationNormal NOTIFICATION-TYPE - OBJECTS { nsCPUusage , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the CPU utilization has come back to normal" - ::= { netScalerEventsV2 11 } - -synfloodNormal NOTIFICATION-TYPE - OBJECTS { unackSynCount , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the rate at which unacknowledged SYNs are received returns to normal" - ::= { netScalerEventsV2 12 } - -memoryUtilization NOTIFICATION-TYPE - OBJECTS { resMemUsage , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the memory utilization of the system exceeds the threshold value" - ::= { netScalerEventsV2 13 } - -memoryUtilizationNormal NOTIFICATION-TYPE - OBJECTS { resMemUsage , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the memory utilization of the system returns to normal" - ::= { netScalerEventsV2 14 } - -vServerRequestRate NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrRequestRate , alarmHighThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request rate on a vServer exceeds a threshold value" - ::= { netScalerEventsV2 15 } - -vServerRequestRateNormal NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrRequestRate , alarmNormalThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request rate on a vServer returns to normal" - ::= { netScalerEventsV2 16 } - -serviceRequestRate NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcRequestRate , alarmHighThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request rate on a service exceeds a threshold value" - ::= { netScalerEventsV2 17 } - -serviceRequestRateNormal NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcRequestRate , alarmNormalThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request rate on a service returns to normal" - ::= { netScalerEventsV2 18 } - -entityRxRate NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 19 } - -entityRxRateNormal NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 20 } - -entityTxRate NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 21 } - -entityTxRateNormal NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 22 } - -entitySynflood NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 23 } - -entitySynfloodNormal NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "OBSOLETE..." - ::= { netScalerEventsV2 24 } - -netScalerConfigChange NOTIFICATION-TYPE - OBJECTS { nsUserName , configurationCmd , authorizationStatus , commandExecutionStatus , nsClientIPAddr , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the configuration on the NetScaler is changed." - ::= { netScalerEventsV2 25 } - -maxClients NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcEstablishedConn , alarmHighThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of clients hits the maxClients value for a service" - ::= { netScalerEventsV2 26 } - -maxClientsNormal NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcEstablishedConn , alarmNormalThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of clients falls below 70% of maxClients value for a service." - ::= { netScalerEventsV2 27 } - -netScalerConfigSave NOTIFICATION-TYPE - OBJECTS { nsUserName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the configuration on the NetScaler is saved." - ::= { netScalerEventsV2 28 } - -serviceRxBytesRate NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcRxBytesRate , alarmHighThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request bytes/s of a service exceeds a threshold value." - ::= { netScalerEventsV2 29 } - -serviceRxBytesRateNormal NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcRxBytesRate , alarmNormalThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request bytes/s of a service returns to normal." - ::= { netScalerEventsV2 30 } - -vserverRxBytesRate NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrRxBytesRate , alarmHighThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request bytes/s of a vserver exceeds a threshold value." - ::= { netScalerEventsV2 31 } - -vserverRxBytesRateNormal NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrRxBytesRate , alarmNormalThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request bytes/s of a vServer returns to normal." - ::= { netScalerEventsV2 32 } - -serviceTxBytesRate NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcTxBytesRate , alarmHighThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response bytes/s of a service exceeds a threshold value." - ::= { netScalerEventsV2 33 } - -serviceTxBytesRateNormal NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcTxBytesRate , alarmNormalThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response bytes/s of a service returns to normal." - ::= { netScalerEventsV2 34 } - -vserverTxBytesRate NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrTxBytesRate , alarmHighThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response bytes/s of a vserver exceeds a threshold value." - ::= { netScalerEventsV2 35 } - -vserverTxBytesRateNormal NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrTxBytesRate , alarmNormalThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response bytes/s of a vServer returns to normal." - ::= { netScalerEventsV2 36 } - -serviceSynfloodRate NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcSynfloodRate , alarmHighThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of unacknowledged syns for a service exceeds a threshold value." - ::= { netScalerEventsV2 37 } - -serviceSynfloodNormal NOTIFICATION-TYPE - OBJECTS { svcServiceName , svcSynfloodRate , alarmNormalThreshold , svcServiceFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of unacknowledged syns for a service returns to normal." - ::= { netScalerEventsV2 38 } - -vserverSynfloodRate NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrSynfloodRate , alarmHighThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of unacknowledged syns for a vserver exceeds a threshold value." - ::= { netScalerEventsV2 39 } - -vserverSynfloodNormal NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrSynfloodRate , alarmNormalThreshold , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of unacknowledged syns for a vserver returns to normal." - ::= { netScalerEventsV2 40 } - -svcGroupMemberRequestRate NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberRequestRate , alarmHighThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request rate on a service group member exceeds a threshold value" - ::= { netScalerEventsV2 41 } - -svcGroupMemberRequestRateNormal NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberRequestRate , alarmNormalThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request rate on a service group member returns to normal" - ::= { netScalerEventsV2 42 } - -svcGroupMemberRxBytesRate NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberRxBytesRate , alarmHighThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request bytes/s of a service group exceeds a threshold value." - ::= { netScalerEventsV2 43 } - -svcGroupMemberRxBytesRateNormal NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberRxBytesRate , alarmNormalThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the request bytes/s of a service group returns to normal." - ::= { netScalerEventsV2 44 } - -svcGroupMemberTxBytesRate NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberTxBytesRate , alarmHighThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response bytes/s of a service group exceeds a threshold value." - ::= { netScalerEventsV2 45 } - -svcGroupMemberTxBytesRateNormal NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberTxBytesRate , alarmNormalThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response bytes/s of a service group returns to normal." - ::= { netScalerEventsV2 46 } - -svcGroupMemberSynfloodRate NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberSynfloodRate , alarmHighThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of unacknowledged syns for a service group exceeds a threshold value." - ::= { netScalerEventsV2 47 } - -svcGroupMemberSynfloodNormal NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberSynfloodRate , alarmNormalThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of unacknowledged syns for a service group returns to normal." - ::= { netScalerEventsV2 48 } - -svcGroupMemberMaxClients NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberEstablishedConn , alarmHighThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of clients hits the maxClients value for a service group member" - ::= { netScalerEventsV2 49 } - -svcGroupMemberMaxClientsNormal NOTIFICATION-TYPE - OBJECTS { svcGrpMemberName , svcGrpMemberEstablishedConn , alarmNormalThreshold , svcGrpMemberFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the number of clients falls below 70% of maxClients value for a service group member." - ::= { netScalerEventsV2 50 } - -averageCpuUtilization NOTIFICATION-TYPE - OBJECTS { resCpuUsage , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the average CPU usage in the multi-processor NetScaler system has exceeded the high threshold." - ::= { netScalerEventsV2 51 } - -averageCpuUtilizationNormal NOTIFICATION-TYPE - OBJECTS { resCpuUsage , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the average CPU usage in the multi-processor NetScaler system has come back to normal." - ::= { netScalerEventsV2 52 } - -monRespTimeoutAboveThresh NOTIFICATION-TYPE - OBJECTS { monServiceName , monitorName , responseTimeoutThreshold , alarmMonrespto , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response timeout for a monitor probe exceeds the configured threshold." - ::= { netScalerEventsV2 53 } - -monRespTimeoutBelowThresh NOTIFICATION-TYPE - OBJECTS { monServiceName , monitorName , responseTimeoutThreshold , alarmMonrespto , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the response timeout for a monitor probe comes back to normal, less than the threshold set." - ::= { netScalerEventsV2 54 } - -netScalerLoginFailure NOTIFICATION-TYPE - OBJECTS { nsUserName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when a login attempt to the NetScaler fails." - ::= { netScalerEventsV2 55 } - -sslCertificateExpiry NOTIFICATION-TYPE - OBJECTS { sslCertKeyName , sslDaysToExpire , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent as an advance notification when an SSL certificate is due to expire." - ::= { netScalerEventsV2 56 } - -fanSpeedLow NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmLowThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a fan speed has gone below an alarm threshold." - ::= { netScalerEventsV2 57 } - -fanSpeedNormal NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a fan speed has returned to normal." - ::= { netScalerEventsV2 58 } - -voltageLow NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmLowThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a voltage has gone low." - ::= { netScalerEventsV2 59 } - -voltageNormal NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a voltage has returned to normal." - ::= { netScalerEventsV2 60 } - -voltageHigh NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a voltage has gone high." - ::= { netScalerEventsV2 61 } - -temperatureHigh NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a temperature has gone high." - ::= { netScalerEventsV2 62 } - -temperatureNormal NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a temperature has returned to normal." - ::= { netScalerEventsV2 63 } - -diskUsageHigh NOTIFICATION-TYPE - OBJECTS { sysHealthDiskName , sysHealthDiskPerusage , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that disk usage has gone high." - ::= { netScalerEventsV2 64 } - -diskUsageNormal NOTIFICATION-TYPE - OBJECTS { sysHealthDiskName , sysHealthDiskPerusage , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that disk usage has returned to normal." - ::= { netScalerEventsV2 65 } - -interfaceThroughputLow NOTIFICATION-TYPE - OBJECTS { ifName , ifThroughput , ifMinThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that interface throughput is low." - ::= { netScalerEventsV2 66 } - -interfaceThroughputNormal NOTIFICATION-TYPE - OBJECTS { ifName , ifThroughput , ifMinThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that interface throughput has returned to normal." - ::= { netScalerEventsV2 67 } - -haVersionMismatch NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that there is a mismatch in the OS version of the netscalers participating in HA. " - ::= { netScalerEventsV2 68 } - -haSyncFailure NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that config synchronization has failed on secondary. " - ::= { netScalerEventsV2 69 } - -haNoHeartbeats NOTIFICATION-TYPE - OBJECTS { haNicsMonitorFailed , haLastNicMonitorFailed , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that HA heartbeats are not received from the secondary. " - ::= { netScalerEventsV2 70 } - -haBadSecState NOTIFICATION-TYPE - OBJECTS { haPeerSystemState , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the secondary is in DOWN/UNKNOWN/STAY SECONDARY state. " - ::= { netScalerEventsV2 71 } - -interfaceBWUseHigh NOTIFICATION-TYPE - OBJECTS { ifName , alarmHighThreshold , alarmCurrentValue , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the bandwidth usage of any of the interfaces of the system exceeds the threshold value (configured in Mbits/second)" - ::= { netScalerEventsV2 72 } - -interfaceBWUseNormal NOTIFICATION-TYPE - OBJECTS { ifName , alarmNormalThreshold , alarmCurrentValue , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the bandwidth usage of any of the interfaces of the system returns to normal" - ::= { netScalerEventsV2 73 } - -aggregateBWUseHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the aggregate bandwidth usage of the system exceeds the threshold value (configured in Mbits/second) " - ::= { netScalerEventsV2 74 } - -aggregateBWUseNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the aggregate bandwidth usage of the system returns to normal." - ::= { netScalerEventsV2 75 } - -vserverRhiStateChange NOTIFICATION-TYPE - OBJECTS { alarmVipRhiState , alarmVipRhiInetAddressType , alarmVipRhiInetAddress , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the vserver RHI state changes." - ::= { netScalerEventsV2 76 } - -rateLmtThresholdExceed NOTIFICATION-TYPE - OBJECTS { alarmRateLmtThresholdExceeded , ipAddressGathered , stringComputed , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the client exceeds the ratelimit threshold. " - ::= { netScalerEventsV2 77 } - -monProbeFailed NOTIFICATION-TYPE - OBJECTS { monServiceName , monitorName , alarmProbeFailedRetries , monitorRetrys , alarmProbeFailedErrorString , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the monitor probe fails for configured number of retries in given max retries attempts." - ::= { netScalerEventsV2 78 } - -temperatureCpuHigh NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a CPU temperature has gone high." - ::= { netScalerEventsV2 79 } - -temperatureCpuNormal NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , alarmNormalThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that a CPU temperature has returned to normal." - ::= { netScalerEventsV2 80 } - -entityofs NOTIFICATION-TYPE - OBJECTS { entityName , alarmEntityCurState , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the state of entities such as vserver, physicalservice or servicegroup changes to OUT OF SERVICE" - ::= { netScalerEventsV2 81 } - -powerSupplyFailed NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , sysHealthPowerSupplyStatus , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when power supply has failed or disconnected from the system" - ::= { netScalerEventsV2 82 } - -powerSupplyNormal NOTIFICATION-TYPE - OBJECTS { sysHealthCounterName , sysHealthCounterValue , sysHealthPowerSupplyStatus , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when power supply status returned back to normal" - ::= { netScalerEventsV2 83 } - -entityNameChanged NOTIFICATION-TYPE - OBJECTS { entityName , entityOldName , entityNewName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when vserver/service/sgroup/lbgroup/server entity is renamed" - ::= { netScalerEventsV2 84 } - -haPropFailure NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that config propagation has failed on secondary. " - ::= { netScalerEventsV2 85 } - -ipConflict NOTIFICATION-TYPE - OBJECTS { ipConflictAddr , ipConflictMacAddr , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that ip conflict is present with another device in the network. " - ::= { netScalerEventsV2 86 } - -appfwStartUrl NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Start URL violation occurred." - ::= { netScalerEventsV2 87 } - -appfwDenyUrl NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Deny URL violation occurred." - ::= { netScalerEventsV2 88 } - -appfwRefererHeader NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Referer Header violation occurred." - ::= { netScalerEventsV2 89 } - -appfwCSRFTag NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall CSRF Tag violation occurred." - ::= { netScalerEventsV2 90 } - -appfwCookie NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Cookie violation occurred." - ::= { netScalerEventsV2 91 } - -appfwFieldConsistency NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Field Consistency violation occurred." - ::= { netScalerEventsV2 92 } - -appfwBufferOverflow NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Buffer Overflow violation occurred." - ::= { netScalerEventsV2 93 } - -appfwFieldFormat NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Field Format violation occurred." - ::= { netScalerEventsV2 94 } - -appfwSafeCommerce NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Safe Commerce violation occurred." - ::= { netScalerEventsV2 95 } - -appfwSafeObject NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Safe Object violation occurred." - ::= { netScalerEventsV2 96 } - -appfwPolicyHit NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Policy Hit occurred." - ::= { netScalerEventsV2 97 } - -appfwXSS NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Cross Site Scripting violation occurred." - ::= { netScalerEventsV2 98 } - -appfwXMLXSS NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML Cross Site Scripting violation occurred." - ::= { netScalerEventsV2 99 } - -appfwSQL NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall SQL violation occurred." - ::= { netScalerEventsV2 100 } - -appfwXMLSQL NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML SQL violation occurred." - ::= { netScalerEventsV2 101 } - -appfwXMLAttachment NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML Attachment violation occurred." - ::= { netScalerEventsV2 102 } - -appfwXMLDos NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML DoS violation occurred." - ::= { netScalerEventsV2 103 } - -appfwXMLValidation NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML Validation violation occurred." - ::= { netScalerEventsV2 104 } - -appfwXMLWSI NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML WSI violation occurred." - ::= { netScalerEventsV2 105 } - -appfwXMLSchemaCompile NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML Schema Compile violation occurred." - ::= { netScalerEventsV2 106 } - -appfwXMLSoapFault NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall XML Soap Fault violation occurred." - ::= { netScalerEventsV2 107 } - -dnskeyExpiry NOTIFICATION-TYPE - OBJECTS { dnskeyName , dnskeyTimeToExpire , dnskeyUnitsOfExpiry , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent as an advance notification when an DNSKEY is due to expire." - ::= { netScalerEventsV2 108 } - -platformRateLimitThresholdHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the platform rate limit (in Mbps) has exceeded the threshold" - ::= { netScalerEventsV2 109 } - -platformRateLimitThresholdNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the platform rate limit (in Mbps) has come back to normal" - ::= { netScalerEventsV2 110 } - -platformPpsLimitThresholdHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , platformLicensedPPS , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the platform packets per second (pps) limit has exceeded the threshold" - ::= { netScalerEventsV2 111 } - -platformPpsLimitThresholdNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , platformLicensedPPS , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the platform packets per second (pps) limit has come back to normal" - ::= { netScalerEventsV2 112 } - -platformRateLimitPktDrop NOTIFICATION-TYPE - OBJECTS { platformRateLimitPacketDropCount , platformLicensedThroughput , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when packets are dropped due to platform rate limit (in Mbps) being reached" - ::= { netScalerEventsV2 113 } - -platformPpsLimitPktDrop NOTIFICATION-TYPE - OBJECTS { platformRateLimitPacketDropCount , platformLicensedPPS , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when packets are dropped due to platform packets per second (pps) limit being reached" - ::= { netScalerEventsV2 114 } - -dataStreamRateLimitHit NOTIFICATION-TYPE - STATUS obsolete - DESCRIPTION - "DateStream Rate-Limiting is Removed. So, this trap is not required." - ::= { netScalerEventsV2 115 } - -haLicenseCheck NOTIFICATION-TYPE - OBJECTS { haLicenseMatchState , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the NetScaler comes up and tells the state HA license check whether it is matched or mismatched" - ::= { netScalerEventsV2 116 } - -sslCardFailed NOTIFICATION-TYPE - OBJECTS { sslCardStatusMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when SSL Card has failed" - ::= { netScalerEventsV2 117 } - -sslCardNormal NOTIFICATION-TYPE - OBJECTS { sslCardStatusMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when SSL Card status returned back to normal" - ::= { netScalerEventsV2 118 } - -warmRestartEvent NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when a Warm Restart Event occurred" - ::= { netScalerEventsV2 119 } - -hardDiskDriveErrors NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when Hard Disk Drive Errors are seen on the system" - ::= { netScalerEventsV2 120 } - -compactFlashErrors NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when Compact Flash Errors are seen on the system" - ::= { netScalerEventsV2 121 } - -callHomeUploadEvent NOTIFICATION-TYPE - OBJECTS { callHomeUploadEventStatusMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when an attempt to upload Show Tech Support Archive has been made" - ::= { netScalerEventsV2 122 } - -rsa1024KeyExThresholdHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when RSA 1024 key exchange limit has exceeded the threshold" - ::= { netScalerEventsV2 123 } - -rsa1024KeyExThresholdNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when RSA 1024 key exchange limit returns back to normal" - ::= { netScalerEventsV2 124 } - -rsa2048KeyExThresholdHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when RSA 2048 key exchange rate limit has exceeded the threshold" - ::= { netScalerEventsV2 125 } - -rsa2048KeyExThresholdNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when RSA 2048 key exchange rate limit returns back to normal" - ::= { netScalerEventsV2 126 } - -rsa4096KeyExThresholdHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when RSA 4096 key exchange rate limit has exceeded the threshold" - ::= { netScalerEventsV2 127 } - -rsa4096KeyExThresholdNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when RSA 4096 key exchange rate limit returns back to normal" - ::= { netScalerEventsV2 128 } - -sslCurSessionInUseHigh NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when SSL current session in use has exceeded the threshold" - ::= { netScalerEventsV2 129 } - -sslCurSessionInUseNormal NOTIFICATION-TYPE - OBJECTS { alarmNormalThreshold , alarmCurrentValue , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when SSL current session in use returns back to normal" - ::= { netScalerEventsV2 130 } - -clusterNodeHealth NOTIFICATION-TYPE - OBJECTS { clNodeIP , clNodeEffectiveHealth , clNodeHealthReason , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent by all cluster nodes when their health state changes. This trap is also sent when a peer node goes down." - ::= { netScalerEventsV2 131 } - -clusterNodeQuorum NOTIFICATION-TYPE - OBJECTS { clNodeViewQuorum , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates whether the node view of cluster has quorum or not." - ::= { netScalerEventsV2 132 } - -clusterVersionMismatch NOTIFICATION-TYPE - OBJECTS { clNodeIP , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when there is a version mismatch among the cluster nodes." - ::= { netScalerEventsV2 133 } - -clusterCCOChange NOTIFICATION-TYPE - OBJECTS { oldCCOIP , newCCOIP , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the Configuration Coordinator of the cluster changes." - ::= { netScalerEventsV2 134 } - -clusterOVSChange NOTIFICATION-TYPE - OBJECTS { oldOVS , newOVS , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when cluster operational view set(OVS) changes." - ::= { netScalerEventsV2 135 } - -clusterSyncFailure NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent by cluster nodes when there is a sync failure." - ::= { netScalerEventsV2 136 } - -clusterPropFailure NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when cluster propagation of configurations fails/times out." - ::= { netScalerEventsV2 137 } - -stickyPrimary NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when max flips are completed and we do not give up primary ownership inspite of route monitor failure." - ::= { netScalerEventsV2 138 } - -inbandProtocolVersionMismatch NOTIFICATION-TYPE - OBJECTS { qosdVersion , brVersion , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when there is inband protocol mismatch between Qosd and BR. " - ::= { netScalerEventsV2 139 } - -sslChipReinit NOTIFICATION-TYPE - OBJECTS { sslChipName , sslChipReinitCount , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when a SSL chip reinitialize occurs." - ::= { netScalerEventsV2 140 } - -appfwViolations NOTIFICATION-TYPE - OBJECTS { appfwLogMsg , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that AppFirewall Unknow Content-Type violation occurred." - ::= { netScalerEventsV2 141 } - -vridStateChange NOTIFICATION-TYPE - OBJECTS { vrid , vridBoundVIP , newVridPriority , effectiveVridPriority , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the state of VRID changes in ACTIVE/ACTIVE setup" - ::= { netScalerEventsV2 142 } - -portAllocFailed NOTIFICATION-TYPE - OBJECTS { dstip , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent on port allocation failure" - ::= { netScalerEventsV2 143 } - -lldpRemTablesChange NOTIFICATION-TYPE - OBJECTS { lldpRemLocalPortNum , lldpRemChassisId , lldpRemPortId , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent on any insert/delete in lldpRemManAddrTable" - ::= { netScalerEventsV2 144 } - -ipv6AddressDuplicated NOTIFICATION-TYPE - OBJECTS { nsIPAddressType , nsIPAddress , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that ipv6 address got duplicated in the network. " - ::= { netScalerEventsV2 145 } - -lsnPortAllocFailed NOTIFICATION-TYPE - OBJECTS { lsnGrpName , lsnSubscrTD , protocol , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when a LSN Subscriber is unable to allocate port" - ::= { netScalerEventsV2 146 } - -lsnPortQuotaExceed NOTIFICATION-TYPE - OBJECTS { lsnGrpName , lsnSubscrTD , protocol , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when a LSN Subscriber exceeds its Port Quota" - ::= { netScalerEventsV2 147 } - -lsnSessionQuotaExceed NOTIFICATION-TYPE - OBJECTS { lsnGrpName , lsnSubscrTD , protocol , lsnSessLimitExceededBy , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when a LSN Subscriber exceeds its Session Quota" - ::= { netScalerEventsV2 148 } - -haVersionMatched NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the mismatched OS version of the netscalers in HA has been corrected." - ::= { netScalerEventsV2 149 } - -haSyncSucceded NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that config synchronization has succeded on secondary." - ::= { netScalerEventsV2 150 } - -haSecondaryStateNormal NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the secondary has come back to normal UP state." - ::= { netScalerEventsV2 151 } - -haHeartbeatsRecvd NOTIFICATION-TYPE - OBJECTS { haNicMonitorSucceeded , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that Heartbeats have been received on the specified interface." - ::= { netScalerEventsV2 152 } - -vserverSpillOver NOTIFICATION-TYPE - OBJECTS { vsvrName , vsvrCurSoValue , vsvrSoMethod , vsvrSoThresh , vsvrFullName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the entity(client connections,health,bandwidth etc.) corresponding to the configured spillover method hits the spillover threshold on a vserver" - ::= { netScalerEventsV2 153 } - -haPropSuccess NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that config propagation has succeeded on secondary after a previous failure. " - ::= { netScalerEventsV2 154 } - -partitionConfigEvent NOTIFICATION-TYPE - OBJECTS { nsPartitionName , operation , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent on partition addition or removal" - ::= { netScalerEventsV2 155 } - -partitionSwitched NOTIFICATION-TYPE - OBJECTS { fromPartition , toPartition , nsUserName , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent on partition switching" - ::= { netScalerEventsV2 156 } - -partitionCONNLimitExceeded NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the current connection count for the partition has exceeded the configured limit." - ::= { netScalerEventsV2 157 } - -partitionCONNLimitNormal NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap indicates that the partition can now accept a new connection as per configured limit." - ::= { netScalerEventsV2 158 } - -partitionBWLimitExceeded NOTIFICATION-TYPE - OBJECTS { alarmHighThreshold , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the bandwidth usage of the partition exceeds the configured limit." - ::= { netScalerEventsV2 159 } - -clusterBackplaneHBMissing NOTIFICATION-TYPE - OBJECTS { clPeerID , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when heartbeat is missing on backplane of cluster node" - ::= { netScalerEventsV2 160 } - -pooledLicenseGraceStarted NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when pooled license is running on grace" - ::= { netScalerEventsV2 161 } - -pooledLicenseGraceNormal NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when pooled license was running on grace and now it's normal" - ::= { netScalerEventsV2 162 } - -pooledLicenseGracePeriodOver NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when pooled license was running on grace and it's time period is over" - ::= { netScalerEventsV2 163 } - -pooledLicenseCapacityPartial NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when system is running on partial capacity" - ::= { netScalerEventsV2 164 } - -pooledLicenseCapacityNormal NOTIFICATION-TYPE - OBJECTS { sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when system was running on partial capacity and now it has returned to normal" - ::= { netScalerEventsV2 165 } - -gslbSiteMEPflap NOTIFICATION-TYPE - OBJECTS { gslbSite , siteIP , sysIpAddress } - STATUS current - DESCRIPTION - "This trap is sent when the GSLB site MEP flaps." - ::= { netScalerEventsV2 166 } - -END -- end of module NS-ROOT-MIB. diff --git a/mibs/orig/P-BRIDGE-MIB b/mibs/orig/P-BRIDGE-MIB deleted file mode 100644 index 54f4f20..0000000 --- a/mibs/orig/P-BRIDGE-MIB +++ /dev/null @@ -1,1102 +0,0 @@ -P-BRIDGE-MIB DEFINITIONS ::= BEGIN - --- ------------------------------------------------------------- --- MIB for IEEE 802.1p devices --- ------------------------------------------------------------- - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64 - FROM SNMPv2-SMI - TruthValue, TimeInterval, MacAddress, TEXTUAL-CONVENTION - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP - FROM SNMPv2-CONF - dot1dTp, dot1dTpPort, dot1dBridge, - dot1dBasePortEntry, dot1dBasePort - FROM BRIDGE-MIB; - - - - - - - - -pBridgeMIB MODULE-IDENTITY - LAST-UPDATED "9908250000Z" - ORGANIZATION "IETF Bridge MIB Working Group" - CONTACT-INFO - " Les Bell - Postal: 3Com Europe Ltd. - 3Com Centre, Boundary Way - Hemel Hempstead, Herts. HP2 7YU - UK - Phone: +44 1442 438025 - Email: Les_Bell@3Com.com - - Andrew Smith - Postal: Extreme Networks - 3585 Monroe St. - Santa Clara CA 95051 - USA - Phone: +1 408 579 2821 - Email: andrew@extremenetworks.com - - Paul Langille - Postal: Newbridge Networks - 5 Corporate Drive - Andover, MA 01810 - USA - Phone: +1 978 691 4665 - Email: langille@newbridge.com - - Anil Rijhsinghani - Postal: Cabletron Systems - 50 Minuteman Road - Andover, MA 01810 - USA - Phone: +1 978 684 1295 - Email: anil@cabletron.com - - Keith McCloghrie - Postal: cisco Systems, Inc. - 170 West Tasman Drive - San Jose, CA 95134-1706 - USA - Phone: +1 408 526 5260 - Email: kzm@cisco.com" - - DESCRIPTION - "The Bridge MIB Extension module for managing Priority - and Multicast Filtering, defined by IEEE 802.1D-1998." - - - - - - --- revision history - - REVISION "9908250000Z" - DESCRIPTION - "Initial version, published as RFC 2674." - - ::= { dot1dBridge 6 } - -pBridgeMIBObjects OBJECT IDENTIFIER ::= { pBridgeMIB 1 } - --- ------------------------------------------------------------- --- Textual Conventions --- ------------------------------------------------------------- - -EnabledStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A simple status value for the object." - SYNTAX INTEGER { enabled(1), disabled(2) } - --- ------------------------------------------------------------- - --- ------------------------------------------------------------- --- groups in the P-BRIDGE MIB --- ------------------------------------------------------------- - -dot1dExtBase OBJECT IDENTIFIER ::= { pBridgeMIBObjects 1 } -dot1dPriority OBJECT IDENTIFIER ::= { pBridgeMIBObjects 2 } -dot1dGarp OBJECT IDENTIFIER ::= { pBridgeMIBObjects 3 } -dot1dGmrp OBJECT IDENTIFIER ::= { pBridgeMIBObjects 4 } - --- ------------------------------------------------------------- - --- ------------------------------------------------------------- --- the dot1dExtBase group --- ------------------------------------------------------------- - -dot1dDeviceCapabilities OBJECT-TYPE - SYNTAX BITS { - dot1dExtendedFilteringServices(0), - -- can perform filtering of - -- individual multicast addresses - -- controlled by GMRP. - dot1dTrafficClasses(1), - -- can map user priority to - -- multiple traffic classes. - - - - - - - - dot1qStaticEntryIndividualPort(2), - -- dot1qStaticUnicastReceivePort & - -- dot1qStaticMulticastReceivePort - -- can represent non-zero entries. - dot1qIVLCapable(3), -- Independent VLAN Learning. - dot1qSVLCapable(4), -- Shared VLAN Learning. - dot1qHybridCapable(5), - -- both IVL & SVL simultaneously. - dot1qConfigurablePvidTagging(6), - -- whether the implementation - -- supports the ability to - -- override the default PVID - -- setting and its egress status - -- (VLAN-Tagged or Untagged) on - -- each port. - dot1dLocalVlanCapable(7) - -- can support multiple local - -- bridges, outside of the scope - -- of 802.1Q defined VLANs. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the optional parts of IEEE 802.1D and 802.1Q - that are implemented by this device and are manageable - through this MIB. Capabilities that are allowed on a - per-port basis are indicated in dot1dPortCapabilities." - REFERENCE - "ISO/IEC 15802-3 Section 5.2, - IEEE 802.1Q/D11 Section 5.2, 12.10.1.1.3/b/2" - ::= { dot1dExtBase 1 } - -dot1dTrafficClassesEnabled OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The value true(1) indicates that Traffic Classes are - enabled on this bridge. When false(2), the bridge - operates with a single priority level for all traffic." - DEFVAL { true } - ::= { dot1dExtBase 2 } - -dot1dGmrpStatus OBJECT-TYPE - SYNTAX EnabledStatus - MAX-ACCESS read-write - STATUS current - DESCRIPTION - - - - - - "The administrative status requested by management for - GMRP. The value enabled(1) indicates that GMRP should - be enabled on this device, in all VLANs, on all ports - for which it has not been specifically disabled. When - disabled(2), GMRP is disabled, in all VLANs, on all - ports and all GMRP packets will be forwarded - transparently. This object affects both Applicant and - Registrar state machines. A transition from disabled(2) - to enabled(1) will cause a reset of all GMRP state - machines on all ports." - DEFVAL { enabled } - ::= { dot1dExtBase 3 } - --- ------------------------------------------------------------- --- Port Capabilities Table --- ------------------------------------------------------------- - -dot1dPortCapabilitiesTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dPortCapabilitiesEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains capabilities information about - every port that is associated with this bridge." - ::= { dot1dExtBase 4 } - -dot1dPortCapabilitiesEntry OBJECT-TYPE - SYNTAX Dot1dPortCapabilitiesEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of capabilities information about this port - indexed by dot1dBasePort." - AUGMENTS { dot1dBasePortEntry } - ::= { dot1dPortCapabilitiesTable 1 } - -Dot1dPortCapabilitiesEntry ::= - SEQUENCE { - dot1dPortCapabilities - BITS - } - -dot1dPortCapabilities OBJECT-TYPE - SYNTAX BITS { - dot1qDot1qTagging(0), -- supports 802.1Q VLAN tagging of - -- frames and GVRP. - dot1qConfigurableAcceptableFrameTypes(1), - -- allows modified values of - - - - - - -- dot1qPortAcceptableFrameTypes. - dot1qIngressFiltering(2) - -- supports the discarding of any - -- frame received on a Port whose - -- VLAN classification does not - -- include that Port in its Member - -- set. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the parts of IEEE 802.1D and 802.1Q that are - optional on a per-port basis that are implemented by - this device and are manageable through this MIB." - REFERENCE - "ISO/IEC 15802-3 Section 5.2, - IEEE 802.1Q/D11 Section 5.2" - ::= { dot1dPortCapabilitiesEntry 1 } - --- ------------------------------------------------------------- --- the dot1dPriority group --- ------------------------------------------------------------- - --- ------------------------------------------------------------- --- Port Priority Table --- ------------------------------------------------------------- - -dot1dPortPriorityTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dPortPriorityEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains information about every port that - is associated with this transparent bridge." - ::= { dot1dPriority 1 } - -dot1dPortPriorityEntry OBJECT-TYPE - SYNTAX Dot1dPortPriorityEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of Default User Priorities for each port of a - transparent bridge. This is indexed by dot1dBasePort." - AUGMENTS { dot1dBasePortEntry } - ::= { dot1dPortPriorityTable 1 } - -Dot1dPortPriorityEntry ::= - SEQUENCE { - - - - - - dot1dPortDefaultUserPriority - INTEGER, - dot1dPortNumTrafficClasses - INTEGER - } - -dot1dPortDefaultUserPriority OBJECT-TYPE - SYNTAX INTEGER (0..7) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The default ingress User Priority for this port. This - only has effect on media, such as Ethernet, that do not - support native User Priority." - ::= { dot1dPortPriorityEntry 1 } - -dot1dPortNumTrafficClasses OBJECT-TYPE - SYNTAX INTEGER (1..8) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The number of egress traffic classes supported on this - port. This object may optionally be read-only." - ::= { dot1dPortPriorityEntry 2 } - --- ------------------------------------------------------------- --- User Priority Regeneration Table --- ------------------------------------------------------------- - -dot1dUserPriorityRegenTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dUserPriorityRegenEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of Regenerated User Priorities for each received - User Priority on each port of a bridge. The Regenerated - User Priority value may be used to index the Traffic - Class Table for each input port. This only has effect - on media that support native User Priority. The default - values for Regenerated User Priorities are the same as - the User Priorities." - REFERENCE - "ISO/IEC 15802-3 Section 6.4" - ::= { dot1dPriority 2 } - - - - - - - - - -dot1dUserPriorityRegenEntry OBJECT-TYPE - SYNTAX Dot1dUserPriorityRegenEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A mapping of incoming User Priority to a Regenerated - User Priority." - INDEX { dot1dBasePort, dot1dUserPriority } - ::= { dot1dUserPriorityRegenTable 1 } - -Dot1dUserPriorityRegenEntry ::= - SEQUENCE { - dot1dUserPriority - INTEGER, - dot1dRegenUserPriority - INTEGER - } - -dot1dUserPriority OBJECT-TYPE - SYNTAX INTEGER (0..7) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The User Priority for a frame received on this port." - ::= { dot1dUserPriorityRegenEntry 1 } - -dot1dRegenUserPriority OBJECT-TYPE - SYNTAX INTEGER (0..7) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Regenerated User Priority the incoming User - Priority is mapped to for this port." - ::= { dot1dUserPriorityRegenEntry 2 } - --- ------------------------------------------------------------- --- Traffic Class Table --- ------------------------------------------------------------- - -dot1dTrafficClassTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dTrafficClassEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table mapping evaluated User Priority to Traffic - Class, for forwarding by the bridge. Traffic class is a - number in the range (0..(dot1dPortNumTrafficClasses-1))." - REFERENCE - - - - - - "ISO/IEC 15802-3 Table 7-2" - ::= { dot1dPriority 3 } - -dot1dTrafficClassEntry OBJECT-TYPE - SYNTAX Dot1dTrafficClassEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "User Priority to Traffic Class mapping." - INDEX { dot1dBasePort, dot1dTrafficClassPriority } - ::= { dot1dTrafficClassTable 1 } - -Dot1dTrafficClassEntry ::= - SEQUENCE { - dot1dTrafficClassPriority - INTEGER, - dot1dTrafficClass - INTEGER - } - -dot1dTrafficClassPriority OBJECT-TYPE - SYNTAX INTEGER (0..7) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The Priority value determined for the received frame. - This value is equivalent to the priority indicated in - the tagged frame received, or one of the evaluated - priorities, determined according to the media-type. - - For untagged frames received from Ethernet media, this - value is equal to the dot1dPortDefaultUserPriority value - for the ingress port. - - For untagged frames received from non-Ethernet media, - this value is equal to the dot1dRegenUserPriority value - for the ingress port and media-specific user priority." - ::= { dot1dTrafficClassEntry 1 } - -dot1dTrafficClass OBJECT-TYPE - SYNTAX INTEGER (0..7) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Traffic Class the received frame is mapped to." - ::= { dot1dTrafficClassEntry 2 } - --- ------------------------------------------------------------- - - - - - --- Outbound Access Priority Table --- ------------------------------------------------------------- - -dot1dPortOutboundAccessPriorityTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dPortOutboundAccessPriorityEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table mapping Regenerated User Priority to Outbound - Access Priority. This is a fixed mapping for all port - types, with two options for 802.5 Token Ring." - REFERENCE - "ISO/IEC 15802-3 Table 7-3" - ::= { dot1dPriority 4 } - -dot1dPortOutboundAccessPriorityEntry OBJECT-TYPE - SYNTAX Dot1dPortOutboundAccessPriorityEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Regenerated User Priority to Outbound Access Priority - mapping." - INDEX { dot1dBasePort, dot1dRegenUserPriority } - ::= { dot1dPortOutboundAccessPriorityTable 1 } - -Dot1dPortOutboundAccessPriorityEntry ::= - SEQUENCE { - dot1dPortOutboundAccessPriority - INTEGER - } - -dot1dPortOutboundAccessPriority OBJECT-TYPE - SYNTAX INTEGER (0..7) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Outbound Access Priority the received frame is - mapped to." - ::= { dot1dPortOutboundAccessPriorityEntry 1 } - --- ------------------------------------------------------------- --- the dot1dGarp group --- ------------------------------------------------------------- - --- ------------------------------------------------------------- --- The GARP Port Table --- ------------------------------------------------------------- - - - - - - -dot1dPortGarpTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dPortGarpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of GARP control information about every bridge - port. This is indexed by dot1dBasePort." - ::= { dot1dGarp 1 } - -dot1dPortGarpEntry OBJECT-TYPE - SYNTAX Dot1dPortGarpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "GARP control information for a bridge port." - AUGMENTS { dot1dBasePortEntry } - ::= { dot1dPortGarpTable 1 } - -Dot1dPortGarpEntry ::= - SEQUENCE { - dot1dPortGarpJoinTime - TimeInterval, - dot1dPortGarpLeaveTime - TimeInterval, - dot1dPortGarpLeaveAllTime - TimeInterval - } - -dot1dPortGarpJoinTime OBJECT-TYPE - SYNTAX TimeInterval - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The GARP Join time, in centiseconds." - DEFVAL { 20 } - ::= { dot1dPortGarpEntry 1 } - -dot1dPortGarpLeaveTime OBJECT-TYPE - SYNTAX TimeInterval - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The GARP Leave time, in centiseconds." - DEFVAL { 60 } - ::= { dot1dPortGarpEntry 2 } - - - - - - - - -dot1dPortGarpLeaveAllTime OBJECT-TYPE - SYNTAX TimeInterval - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The GARP LeaveAll time, in centiseconds." - DEFVAL { 1000 } - ::= { dot1dPortGarpEntry 3 } - --- ------------------------------------------------------------- --- The GMRP Port Configuration and Status Table --- ------------------------------------------------------------- - -dot1dPortGmrpTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dPortGmrpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of GMRP control and status information about - every bridge port. Augments the dot1dBasePortTable." - ::= { dot1dGmrp 1 } - -dot1dPortGmrpEntry OBJECT-TYPE - SYNTAX Dot1dPortGmrpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "GMRP control and status information for a bridge port." - AUGMENTS { dot1dBasePortEntry } - ::= { dot1dPortGmrpTable 1 } - -Dot1dPortGmrpEntry ::= - SEQUENCE { - dot1dPortGmrpStatus - EnabledStatus, - dot1dPortGmrpFailedRegistrations - Counter32, - dot1dPortGmrpLastPduOrigin - MacAddress - } - -dot1dPortGmrpStatus OBJECT-TYPE - SYNTAX EnabledStatus - MAX-ACCESS read-write - STATUS current - - - - - - - - - DESCRIPTION - "The administrative state of GMRP operation on this port. The - value enabled(1) indicates that GMRP is enabled on this port - in all VLANs as long as dot1dGmrpStatus is also enabled(1). - A value of disabled(2) indicates that GMRP is disabled on - this port in all VLANs: any GMRP packets received will - be silently discarded and no GMRP registrations will be - propagated from other ports. Setting this to a value of - enabled(1) will be stored by the agent but will only take - effect on the GMRP protocol operation if dot1dGmrpStatus - also indicates the value enabled(1). This object affects - all GMRP Applicant and Registrar state machines on this - port. A transition from disabled(2) to enabled(1) will - cause a reset of all GMRP state machines on this port." - DEFVAL { enabled } - ::= { dot1dPortGmrpEntry 1 } - -dot1dPortGmrpFailedRegistrations OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of failed GMRP registrations, for any - reason, in all VLANs, on this port." - ::= { dot1dPortGmrpEntry 2 } - -dot1dPortGmrpLastPduOrigin OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Source MAC Address of the last GMRP message - received on this port." - ::= { dot1dPortGmrpEntry 3 } - --- ------------------------------------------------------------- --- High Capacity Port Table for Transparent Bridges --- ------------------------------------------------------------- - -dot1dTpHCPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dTpHCPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains information about every high - capacity port that is associated with this transparent - bridge." - ::= { dot1dTp 5 } - - - - - -dot1dTpHCPortEntry OBJECT-TYPE - SYNTAX Dot1dTpHCPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Statistics information for each high capacity port of a - transparent bridge." - INDEX { dot1dTpPort } - ::= { dot1dTpHCPortTable 1 } - -Dot1dTpHCPortEntry ::= - SEQUENCE { - dot1dTpHCPortInFrames - Counter64, - dot1dTpHCPortOutFrames - Counter64, - dot1dTpHCPortInDiscards - Counter64 - } - -dot1dTpHCPortInFrames OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of frames that have been received by this - port from its segment. Note that a frame received on - the interface corresponding to this port is only counted - by this object if and only if it is for a protocol being - processed by the local bridging function, including - bridge management frames." - REFERENCE - "ISO/IEC 15802-3 Section 14.6.1.1.3" - ::= { dot1dTpHCPortEntry 1 } - -dot1dTpHCPortOutFrames OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of frames that have been transmitted by this - port to its segment. Note that a frame transmitted on - the interface corresponding to this port is only counted - by this object if and only if it is for a protocol being - processed by the local bridging function, including - bridge management frames." - - - - - - - - REFERENCE - "ISO/IEC 15802-3 Section 14.6.1.1.3" - ::= { dot1dTpHCPortEntry 2 } - -dot1dTpHCPortInDiscards OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Count of valid frames that have been received by this - port from its segment which were discarded (i.e., - filtered) by the Forwarding Process." - REFERENCE - "ISO/IEC 15802-3 Section 14.6.1.1.3" - ::= { dot1dTpHCPortEntry 3 } - --- ---------------------------------------------------- --- Upper part of High Capacity Port Table for Transparent Bridges --- ---------------------------------------------------- - -dot1dTpPortOverflowTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dot1dTpPortOverflowEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table that contains the most-significant bits of - statistics counters for ports that are associated with this - transparent bridge that are on high capacity interfaces, as - defined in the conformance clauses for this table. This table - is provided as a way to read 64-bit counters for agents which - support only SNMPv1. - - Note that the reporting of most-significant and - least-significant counter bits separately runs the risk of - missing an overflow of the lower bits in the interval between - sampling. The manager must be aware of this possibility, even - within the same varbindlist, when interpreting the results of - a request or asynchronous notification." - ::= { dot1dTp 6 } - -dot1dTpPortOverflowEntry OBJECT-TYPE - SYNTAX Dot1dTpPortOverflowEntry - MAX-ACCESS not-accessible - - - - - - - - - - - STATUS current - DESCRIPTION - "The most significant bits of statistics counters for a high - capacity interface of a transparent bridge. Each object is - associated with a corresponding object in dot1dTpPortTable - which indicates the least significant bits of the counter." - INDEX { dot1dTpPort } - ::= { dot1dTpPortOverflowTable 1 } - -Dot1dTpPortOverflowEntry ::= - SEQUENCE { - dot1dTpPortInOverflowFrames - Counter32, - dot1dTpPortOutOverflowFrames - Counter32, - dot1dTpPortInOverflowDiscards - Counter32 - } - -dot1dTpPortInOverflowFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times the associated dot1dTpPortInFrames - counter has overflowed." - REFERENCE - "ISO/IEC 15802-3 Section 14.6.1.1.3" - ::= { dot1dTpPortOverflowEntry 1 } - -dot1dTpPortOutOverflowFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times the associated dot1dTpPortOutFrames - counter has overflowed." - REFERENCE - "ISO/IEC 15802-3 Section 14.6.1.1.3" - ::= { dot1dTpPortOverflowEntry 2 } - -dot1dTpPortInOverflowDiscards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - - - - - - - - - DESCRIPTION - "The number of times the associated - dot1dTpPortInDiscards counter has overflowed." - REFERENCE - "ISO/IEC 15802-3 Section 14.6.1.1.3" - ::= { dot1dTpPortOverflowEntry 3 } - --- ------------------------------------------------------------- --- IEEE 802.1p MIB - Conformance Information --- ------------------------------------------------------------- - -pBridgeConformance OBJECT IDENTIFIER ::= { pBridgeMIB 2 } - -pBridgeGroups OBJECT IDENTIFIER ::= { pBridgeConformance 1 } - -pBridgeCompliances OBJECT IDENTIFIER - ::= { pBridgeConformance 2 } - --- ------------------------------------------------------------- --- units of conformance --- ------------------------------------------------------------- - -pBridgeExtCapGroup OBJECT-GROUP - OBJECTS { - dot1dDeviceCapabilities, - dot1dPortCapabilities - } - STATUS current - DESCRIPTION - "A collection of objects indicating the optional - capabilites of the device." - ::= { pBridgeGroups 1 } - -pBridgeDeviceGmrpGroup OBJECT-GROUP - OBJECTS { - dot1dGmrpStatus - } - STATUS current - DESCRIPTION - "A collection of objects providing device-level control - for the Multicast Filtering extended bridge services." - ::= { pBridgeGroups 2 } - - - - - - - - - - - -pBridgeDevicePriorityGroup OBJECT-GROUP - OBJECTS { - dot1dTrafficClassesEnabled - } - STATUS current - DESCRIPTION - "A collection of objects providing device-level control - for the Priority services." - ::= { pBridgeGroups 3 } - -pBridgeDefaultPriorityGroup OBJECT-GROUP - OBJECTS { - dot1dPortDefaultUserPriority - } - STATUS current - DESCRIPTION - "A collection of objects defining the User Priority - applicable to each port for media which do not support - native User Priority." - ::= { pBridgeGroups 4 } - -pBridgeRegenPriorityGroup OBJECT-GROUP - OBJECTS { - dot1dRegenUserPriority - } - STATUS current - DESCRIPTION - "A collection of objects defining the User Priorities - applicable to each port for media which support native - User Priority." - ::= { pBridgeGroups 5 } - -pBridgePriorityGroup OBJECT-GROUP - OBJECTS { - dot1dPortNumTrafficClasses, - dot1dTrafficClass - } - STATUS current - DESCRIPTION - "A collection of objects defining the traffic classes - within a bridge for each evaluated User Priority." - ::= { pBridgeGroups 6 } - - - - - - - - - - - -pBridgeAccessPriorityGroup OBJECT-GROUP - OBJECTS { - dot1dPortOutboundAccessPriority - } - STATUS current - DESCRIPTION - "A collection of objects defining the media dependent - outbound access level for each priority." - ::= { pBridgeGroups 7 } - -pBridgePortGarpGroup OBJECT-GROUP - OBJECTS { - dot1dPortGarpJoinTime, - dot1dPortGarpLeaveTime, - dot1dPortGarpLeaveAllTime - } - STATUS current - DESCRIPTION - "A collection of objects providing port level control - and status information for GARP operation." - ::= { pBridgeGroups 8 } - -pBridgePortGmrpGroup OBJECT-GROUP - OBJECTS { - dot1dPortGmrpStatus, - dot1dPortGmrpFailedRegistrations, - dot1dPortGmrpLastPduOrigin - } - STATUS current - DESCRIPTION - "A collection of objects providing port level control - and status information for GMRP operation." - ::= { pBridgeGroups 9 } - -pBridgeHCPortGroup OBJECT-GROUP - OBJECTS { - dot1dTpHCPortInFrames, - dot1dTpHCPortOutFrames, - dot1dTpHCPortInDiscards - } - STATUS current - DESCRIPTION - "A collection of objects providing 64-bit statistics - counters for high capacity bridge ports." - ::= { pBridgeGroups 10 } - - - - - - - - -pBridgePortOverflowGroup OBJECT-GROUP - OBJECTS { - dot1dTpPortInOverflowFrames, - dot1dTpPortOutOverflowFrames, - dot1dTpPortInOverflowDiscards - } - STATUS current - DESCRIPTION - "A collection of objects providing overflow statistics - counters for high capacity bridge ports." - ::= { pBridgeGroups 11 } - --- ------------------------------------------------------------- --- compliance statements --- ------------------------------------------------------------- - -pBridgeCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for device support of Priority - and Multicast Filtering extended bridging services." - - MODULE - MANDATORY-GROUPS { pBridgeExtCapGroup } - - GROUP pBridgeDeviceGmrpGroup - DESCRIPTION - "This group is mandatory for devices supporting the GMRP - application, defined by IEEE 802.1D Extended Filtering - Services." - - GROUP pBridgeDevicePriorityGroup - DESCRIPTION - "This group is mandatory only for devices supporting - the priority forwarding operations defined by IEEE - 802.1D." - - GROUP pBridgeDefaultPriorityGroup - DESCRIPTION - "This group is mandatory only for devices supporting - the priority forwarding operations defined by the - extended bridge services with media types, such as - Ethernet, that do not support native User Priority." - - - - - - - - - - - GROUP pBridgeRegenPriorityGroup - DESCRIPTION - "This group is mandatory only for devices supporting - the priority forwarding operations defined by IEEE 802.1D - and which have interface media types that support - native User Priority e.g. IEEE 802.5." - - GROUP pBridgePriorityGroup - DESCRIPTION - "This group is mandatory only for devices supporting - the priority forwarding operations defined by IEEE 802.1D." - - GROUP pBridgeAccessPriorityGroup - DESCRIPTION - "This group is optional and is relevant only for devices - supporting the priority forwarding operations defined by - IEEE 802.1D and which have interface media types that support - native Access Priority e.g. IEEE 802.5." - - GROUP pBridgePortGarpGroup - DESCRIPTION - "This group is mandatory for devices supporting any - of the GARP applications: e.g. GMRP, defined by the - extended filtering services of 802.1D; or GVRP, - defined by 802.1Q (refer to the Q-BRIDGE-MIB for - conformance statements for GVRP)." - - GROUP pBridgePortGmrpGroup - DESCRIPTION - "This group is mandatory for devices supporting the - GMRP application, as defined by IEEE 802.1D Extended - Filtering Services." - - GROUP pBridgeHCPortGroup - DESCRIPTION - "Support for this group in a device is mandatory for those - bridge ports which map to network interfaces that have the - value of the corresponding instance of ifSpeed - greater than 650,000,000 bits/second." - - GROUP pBridgePortOverflowGroup - DESCRIPTION - "Support for this group in a device is mandatory for those - bridge ports which map to network interfaces that have the - value of the corresponding instance of ifSpeed - greater than 650,000,000 bits/second." - - - - - - - - OBJECT dot1dPortNumTrafficClasses - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT dot1dTrafficClass - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - OBJECT dot1dRegenUserPriority - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - - ::= { pBridgeCompliances 1 } - -END diff --git a/mibs/orig/PAN-COMMON-MIB b/mibs/orig/PAN-COMMON-MIB deleted file mode 100644 index ae6eeec..0000000 --- a/mibs/orig/PAN-COMMON-MIB +++ /dev/null @@ -1,2629 +0,0 @@ --- *********************************************** --- PAN-COMMON-MIB.my --- --- MIB for the common MIB objects implemented by all --- Palo Alto devices. --- *********************************************** - -PAN-COMMON-MIB DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-IDENTITY, - OBJECT-TYPE, NOTIFICATION-TYPE, - Integer32 - FROM SNMPv2-SMI --- MODULE-COMPLIANCE, OBJECT-GROUP --- FROM SNMPv2-CONF - TEXTUAL-CONVENTION - FROM SNMPv2-TC - DisplayString, TruthValue, TimeStamp - FROM SNMPv2-TC - TcChassisType - FROM PAN-GLOBAL-TC - panModules, panCommonMib - FROM PAN-GLOBAL-REG; - - panCommonMibModule MODULE-IDENTITY - LAST-UPDATED "201409040000Z" - ORGANIZATION "Palo Alto Networks" - CONTACT-INFO " - Customer Support - Palo Alto Networks - 4401 Great America Pkwy - Santa Clara, CA 95054-1211 - - +1 866-898-9087 - support at paloaltonetworks dot com" - - DESCRIPTION " - A MIB module containing definitions of managed objects - implemented by all Palo Alto Networks' products." - REVISION "201406300000Z" - DESCRIPTION " - Rev 2.3 - Added entries for Log Collector." - REVISION "201409040000Z" - DESCRIPTION " - Rev 2.2 - Added entries for Wildfire content versions. - Added entry for new platform PA 3060." - REVISION "201403060000Z" - DESCRIPTION " - Rev 2.1 - Fixed a capitalization error with PanVsysEntry." - REVISION "201303010000Z" - DESCRIPTION " - Rev 2.0 - Updated with panGlobalProtect and panVsysTable." - REVISION "201102091610Z" - DESCRIPTION " - Rev 1.0 - Initial version of MIB module PAN-COMMON-MIB." - - ::= { panModules 3 } - - FloatValue ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d-2" - STATUS current - DESCRIPTION - " This data type is used to represent Float values." - SYNTAX OCTET STRING (SIZE(0..64)) - - panCommonConfMib OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for MIB conformance statements." - ::= { panCommonMib 1 } - - panCommonObjs OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common MIB objects." - ::= { panCommonMib 2 } - - panCommonEvents OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common MIB events." - ::= { panCommonMib 3 } - - -- Top level groups - - panSys OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common system objects." - ::= { panCommonObjs 1 } - - panChassis OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common chassis information." - ::= { panCommonObjs 2 } - - panSession OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common session information." - ::= { panCommonObjs 3 } - - panMgmt OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common Management plane information." - ::= { panCommonObjs 4 } - - panGlobalProtect OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common GlobalProtect information." - ::= { panCommonObjs 5 } - - panLogCollector OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common Log Collector information." - ::= { panCommonObjs 6 } - - panDeviceLogging OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common Device information." - ::= { panCommonObjs 7 } - - panSSLBroker OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree to capture ssl broker statistics." - ::= { panCommonObjs 8 } - - panGlobalCounters OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common Global counters." - ::= { panSys 19 } - - ---------------------------------------------------------------------- - -- System objects - - panSysSwVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Full software version. The first two components of the full - version are the major and minor versions. The third component - indicates the maintenance release number and the fourth, - the build number." - ::= { panSys 1 } - - panSysHwVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Hardware version of the unit." - ::= { panSys 2 } - - panSysSerialNumber OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The serial number of the unit. If not available, - an empty string is returned." - ::= { panSys 3 } - - panSysTimeZoneOffset OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The offset in seconds from UTC of the system's time zone. - Values are negative for locations west of UTC and positive - for locations east of UTC." - ::= { panSys 4 } - - panSysDaylightSaving OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Whether daylight savings are in currently in effect for the - system's time zone." - ::= { panSys 5 } - - panSysVpnClientVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed VPN client package version. If - package is not installed, 0.0.0 is returned." - ::= { panSys 6 } - - panSysAppVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed application definition version. If - no application definition is found, 0 is returned." - ::= { panSys 7 } - - panSysAvVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed antivirus version. If no antivirus - is found, 0 is returned." - ::= { panSys 8 } - - panSysThreatVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed threat definition version. If no - threat definition is found, 0 is returned." - ::= { panSys 9 } - - panSysUrlFilteringVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed URL filtering version. If no URL - filtering is installed, 0 is returned." - ::= { panSys 10 } - - panSysHAState OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current high-availability state." - ::= { panSys 11 } - - panSysHAPeerState OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current peer high-availability state." - ::= { panSys 12 } - - panSysHAMode OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current high-availability mode (disabled, - active-passive, or active-active)." - ::= { panSys 13 } - - panSysUrlFilteringDatabase OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current installed URL filtering database - (surfcontrol, brightcloud, etc)" - ::= { panSys 14 } - - panSysGlobalProtectClientVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed global-protect client package version. - If package is not installed, 0.0.0 is returned." - ::= { panSys 15 } - - panSysOpswatDatafileVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed opswat database version. - If package is not installed, 0 is returned." - ::= { panSys 16 } - - panSysWildfireVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed wildfire content version. If no wildfire content - is found, 0 is returned." - ::= { panSys 17 } - - panSysWildfirePrivateCloudVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed wildfire private cloud content version. If no wpc - is found, 0 is returned." - ::= { panSys 18 } - - panSysAppReleaseDate OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed application definition release date. If - no release date is found, unknown is returned." - ::= { panSys 20 } - - panSysThreatReleaseDate OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed threat release date. If - no release date is found, unknown is returned." - ::= { panSys 21 } - - panSysAvReleaseDate OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed antivirus release date. If - no release date is found, unknown is returned." - ::= { panSys 22 } - - panSysWfReleaseDate OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Currently installed WildFire release date. If - no release date is found, unknown is returned." - ::= { panSys 23 } - - ---------------------------------------------------------------------- - -- Chassis - - panChassisType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Chassis type for this Palo Alto device." - ::= { panChassis 1 } - - panMSeriesMode OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Series Mode for this Palo Alto device." - ::= { panChassis 2 } - - - ---------------------------------------------------------------------- - -- Session - - panSessionUtilization OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session table utilization percentage. Values should - be between 0 and 100." - ::= { panSession 1 } - - panSessionMax OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of sessions supported." - ::= { panSession 2 } - - panSessionActive OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of active sessions." - ::= { panSession 3 } - - panSessionActiveTcp OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of active TCP sessions." - ::= { panSession 4 } - - panSessionActiveUdp OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of active UDP sessions." - ::= { panSession 5 } - - panSessionActiveICMP OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of active ICMP sessions." - ::= { panSession 6 } - - panSessionActiveSslProxy OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of active SSL proxy sessions." - ::= { panSession 7 } - - panSessionSslProxyUtilization OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "SSL proxy Session utilization percentage. Values should - be between 0 and 100." - ::= { panSession 8 } - - panVsysTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanVsysEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "VSYS table" - ::= { panSession 9 } - - panZoneTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanZoneEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for the current active connectionsPerSecond (CPS) values - for each zone present." - ::= { panSession 10 } - - panIfTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanIfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for the current active connectionsPerSecond (CPS) values - for each interface present." - ::= { panSession 11 } - - - ---------------------------------------------------------------------- - -- VsysTable - - panVsysEntry OBJECT-TYPE - SYNTAX PanVsysEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when the Vsys's are added to the - entVsysTable." - INDEX { panVsysId } - ::= { panVsysTable 1 } - - PanVsysEntry ::= SEQUENCE { - panVsysId Integer32, - panVsysName DisplayString, - panVsysSessionUtilizationPct Integer32, - panVsysActiveSessions Integer32, - panVsysMaxSessions Integer32, - panVsysActiveTcpCps Integer32, - panVsysActiveUdpCps Integer32, - panVsysActiveOtherIpCps Integer32 - } - - panVsysId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Vsys id" - ::= { panVsysEntry 1 } - - panVsysName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "User assigned vsys name (empty string if not available)" - ::= { panVsysEntry 2 } - - panVsysSessionUtilizationPct OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Vsys utilization percentage, if session limit is configured. - If session limit is not configured, this value is '0'" - ::= { panVsysEntry 3 } - - panVsysActiveSessions OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Active sessions on this Vsys" - ::= { panVsysEntry 4 } - - panVsysMaxSessions OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Max sessions on this Vsys, if session limit is configured. - If session limit is not configured, this value is '0'" - ::= { panVsysEntry 5 } - - panVsysActiveTcpCps OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active Tcp Connections per second for thie vSys." - ::= { panVsysEntry 6 } - - panVsysActiveUdpCps OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active Udp Connections per second for thie vSys." - ::= { panVsysEntry 7 } - - panVsysActiveOtherIpCps OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active Other IP Connections per second for thie vSys." - ::= { panVsysEntry 8 } - - ---------------------------------------------------------------------- - -- Mgmt - - panMgmtPanoramaConnected OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current Connection status to Panorama Server (connected, not-connected)" - ::= { panMgmt 1 } - - panMgmtPanorama2Connected OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Current Connection status to Panorama2 Server (connected, not-connected)" - ::= { panMgmt 2 } - - ---------------------------------------------------------------------- - -- GlobalProtect - - panGPGatewayUtilization OBJECT-IDENTITY - STATUS current - DESCRIPTION - "GlobalProtect gateway utilization" - ::= { panGlobalProtect 1 } - - ---------------------------------------------------------------------- - -- GlobalProtect gateway utilization - - panGPGWUtilizationPct OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "GlobalProtect Gateway utilization percentage" - ::= { panGPGatewayUtilization 1 } - - panGPGWUtilizationMaxTunnels OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Max tunnels allowed" - ::= { panGPGatewayUtilization 2 } - - panGPGWUtilizationActiveTunnels OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active tunnels" - ::= { panGPGatewayUtilization 3 } - - -------------------------------------------------------------------- - -- Device Logging MIB - panDeviceLoggingLogRate OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for Device Logging Rate statistics." - ::= { panDeviceLogging 1 } - - panDeviceLoggingLogTypeStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanDeviceLoggingLogTypeStatEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for the statistics for different log types on the Device." - ::= { panDeviceLogging 2 } - - panDeviceLoggingLogUsageTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanDeviceLoggingLogUsageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for Log Usage and days retained for different log types on the Device. - Log Disk Usage is avaiable as MB (in use)." - ::= { panDeviceLogging 3 } - - panDeviceLoggingExtFwd OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for tracking dropped logs as ther are forwarded from device." - ::= { panDeviceLogging 4 } - - panDeviceLoggingCollectorConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanDeviceLoggingCollectorConnectionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for tracking various log collection entities connected to device." - ::= { panDeviceLogging 5 } - - - --------------------------------------------------------------------------- - -- panSSLBroker - panSSLBrokerStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanSSLBrokerStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Sub-tree for capturing ssl broker statistics and status." - ::= { panSSLBroker 1 } - - panSSLBrokerStatsEntry OBJECT-TYPE - SYNTAX PanSSLBrokerStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entry of ssl broker statistics and status." - INDEX { index } - ::= { panSSLBrokerStatsTable 1 } - - PanSSLBrokerStatsEntry ::= SEQUENCE { - index Integer32, - chainName DisplayString, - avgLatency Integer32, - sessionCount Integer32 - } - - index OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Index of the ssl broker stats entry" - ::= { panSSLBrokerStatsEntry 1 } - - chainName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of ssl broker chain object" - ::= { panSSLBrokerStatsEntry 2 } - - avgLatency OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Average latency value" - ::= { panSSLBrokerStatsEntry 3 } - - sessionCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active sessions" - ::= { panSSLBrokerStatsEntry 4 } - - --------------------------------------------------------------------------- - -- panDeviceLoggingLogRate - - panDeviceIncomingLogRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The incoming rate in logs/s on the Device." - ::= { panDeviceLoggingLogRate 1 } - - panDeviceWriteLogRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The write rate in logs/s on the Device." - ::= { panDeviceLoggingLogRate 2 } - - --------------------------------------------------------------------------- - -- panDeviceLoggingLogTypeStatTable - - panDeviceLoggingLogTypeStatEntry OBJECT-TYPE - SYNTAX PanDeviceLoggingLogTypeStatEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when the panLcLogUsage are added to the panLcLogUsageTable." - INDEX { panDeviceLoggingDevice, panDeviceLoggingLogType } - ::= { panDeviceLoggingLogTypeStatTable 1 } - - PanDeviceLoggingLogTypeStatEntry ::= SEQUENCE { - panDeviceLoggingDevice DisplayString, - panDeviceLoggingDeviceIndex Integer32, - panDeviceLoggingLogType DisplayString, - panDeviceLoggingLogLastLogCreated TimeStamp, - panDeviceLoggingLogLastLogFwded TimeStamp, - panDeviceLoggingLogLastSeqNumberFwded Counter64, - panDeviceLoggingLogLastSeqNumberAck Counter64, - panDeviceLoggingLogTotalLogsFwded Counter64 - } - - panDeviceLoggingDevice OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Device Information (Name or Serial Number)." - ::= { panDeviceLoggingLogTypeStatEntry 1 } - - panDeviceLoggingDeviceIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Index as mentioned in panDeviceLoggingCollectorConnection table." - ::= { panDeviceLoggingLogTypeStatEntry 2 } - - panDeviceLoggingLogType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Type of log." - ::= { panDeviceLoggingLogTypeStatEntry 3 } - - panDeviceLoggingLogLastLogCreated OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time of the last log creation." - ::= { panDeviceLoggingLogTypeStatEntry 4 } - - panDeviceLoggingLogLastLogFwded OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time at which last log was forwarded." - ::= { panDeviceLoggingLogTypeStatEntry 5 } - - panDeviceLoggingLogLastSeqNumberFwded OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Sequence number of the last log that was forwarded." - ::= { panDeviceLoggingLogTypeStatEntry 6 } - - panDeviceLoggingLogLastSeqNumberAck OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Sequence number of the last log that was acknowledged." - ::= { panDeviceLoggingLogTypeStatEntry 7 } - - panDeviceLoggingLogTotalLogsFwded OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total number of logs forwarded." - ::= { panDeviceLoggingLogTypeStatEntry 8 } - - -------------------------------------------------------------------- - -- PanDeviceLoggingLogUsageEntry - - panDeviceLoggingLogUsageEntry OBJECT-TYPE - SYNTAX PanDeviceLoggingLogUsageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when the panDeviceLoggingLogUsage are added to the panDeviceLoggingLogUsageTable." - INDEX { panDeviceLoggingLogUsageLogType } - ::= { panDeviceLoggingLogUsageTable 1 } - - PanDeviceLoggingLogUsageEntry ::= SEQUENCE { - panDeviceLoggingLogUsageLogType DisplayString, - panDeviceLoggingDiskUsageDiskSpace FloatValue, - panDeviceLoggingDiskUsageRetention Unsigned32, - panDeviceLoggingDiskQuotaPct FloatValue, - panDeviceLoggingDiskQuota FloatValue - } - - panDeviceLoggingLogUsageLogType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log type for Device. " - ::= { panDeviceLoggingLogUsageEntry 1 } - - panDeviceLoggingDiskUsageDiskSpace OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Usage (MB) for particular log type for Device. " - ::= { panDeviceLoggingLogUsageEntry 2 } - - panDeviceLoggingDiskUsageRetention OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log Rentention for particular log type for Device. " - ::= { panDeviceLoggingLogUsageEntry 3 } - - panDeviceLoggingDiskQuotaPct OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Quota percentage for particular log type for Device. " - ::= { panDeviceLoggingLogUsageEntry 4 } - - panDeviceLoggingDiskQuota OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Quota for particular log type for Device. " - ::= { panDeviceLoggingLogUsageEntry 5 } - - ---------------------------------------------------------------------- - -- panDeviceLoggingExtFwd - - panDeviceLoggingExtFwdCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total count for logs forwarded." - ::= { panDeviceLoggingExtFwd 1 } - - panDeviceLoggingExtFwdQueueDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for logs dropped due to queue being full." - ::= { panDeviceLoggingExtFwd 2 } - - panDeviceLoggingExtFwdStatsSendErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for logs discarded due to sending error." - ::= { panDeviceLoggingExtFwd 3 } - - panDeviceLoggingExtFwdStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanDeviceLoggingExtFwdStatsEntry - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This table shows the status of logs as they are forwarded via syslog, Traps, email and - http/https from this Device." - ::= { panDeviceLoggingExtFwd 4 } - - -------------------------------------------------------------------- - -- panDeviceLoggingExtFwdStatsTable - panDeviceLoggingExtFwdStatsEntry OBJECT-TYPE - SYNTAX PanDeviceLoggingExtFwdStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panDeviceLoggingExtFwdStats are added to panDeviceLoggingExtFwdStatsTable." - INDEX { panDeviceLoggingExtFwdStatsTableType } - ::= { panDeviceLoggingExtFwdStatsTable 1 } - - PanDeviceLoggingExtFwdStatsEntry ::= SEQUENCE { - panDeviceLoggingExtFwdStatsTableType DisplayString, - panDeviceLoggingExtFwdStatsTableEnqueueCount Counter64, - panDeviceLoggingExtFwdStatsTableSendCount Counter64, - panDeviceLoggingExtFwdStatsTableDropCount Counter64, - panDeviceLoggingExtFwdStatsTableQueueDepth Counter64, - panDeviceLoggingExtFwdStatsTable1minAvgSendRate Unsigned32 - } - - panDeviceLoggingExtFwdStatsTableType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of method used to forward logs." - ::= { panDeviceLoggingExtFwdStatsEntry 1 } - - panDeviceLoggingExtFwdStatsTableEnqueueCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for number of logs enqueued." - ::= { panDeviceLoggingExtFwdStatsEntry 2 } - - panDeviceLoggingExtFwdStatsTableSendCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for number of logs sent." - ::= { panDeviceLoggingExtFwdStatsEntry 3 } - - panDeviceLoggingExtFwdStatsTableDropCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for number of logs dropped." - ::= { panDeviceLoggingExtFwdStatsEntry 4 } - - panDeviceLoggingExtFwdStatsTableQueueDepth OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for depth of queue." - ::= { panDeviceLoggingExtFwdStatsEntry 5 } - - panDeviceLoggingExtFwdStatsTable1minAvgSendRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for average send rate over 1 minute interval." - ::= { panDeviceLoggingExtFwdStatsEntry 6 } - - ------------------------------------------------------------------- - -- panDeviceLoggingCollectorConnectionTable - - panDeviceLoggingCollectorConnectionEntry OBJECT-TYPE - SYNTAX PanDeviceLoggingCollectorConnectionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when the panDeviceLogging are added to the panDeviceLoggingCollectorConnectionTable." - INDEX { panDeviceLoggingCollectorConnectionIP } - ::= { panDeviceLoggingCollectorConnectionTable 1 } - - PanDeviceLoggingCollectorConnectionEntry ::= SEQUENCE { - panDeviceLoggingCollectorConnectionType DisplayString, - panDeviceLoggingCollectorConnectionIP DisplayString, - panDeviceLoggingCollectorConnectionHostname DisplayString, - panDeviceLoggingCollectorConnectionStatus DisplayString - } - - panDeviceLoggingCollectorConnectionType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Type of log collection entity (CMS/LC)." - ::= { panDeviceLoggingCollectorConnectionEntry 1 } - - panDeviceLoggingCollectorConnectionIP OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP of log collection entity (CMS/LC) for non-7K and Gryphon. - Will display connection ID for 7K and Gryphon." - ::= { panDeviceLoggingCollectorConnectionEntry 2 } - - panDeviceLoggingCollectorConnectionHostname OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Hostname of log collection entity (CMS/LC)." - ::= { panDeviceLoggingCollectorConnectionEntry 3 } - - panDeviceLoggingCollectorConnectionStatus OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connection status of log collection entity (CMS/LC)." - ::= { panDeviceLoggingCollectorConnectionEntry 4 } - - ---------------------------------------------------------------------- - -- LogCollector - - panLcStat OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for the Log collection statistics." - ::= { panLogCollector 1 } - - ---------------------------------------------------------------------- - -- LogCollector Stats - - panLcLogRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The write rate in logs/s on the Log Collection" - ::= { panLcStat 1 } - - panLcLogDuration OBJECT-IDENTITY - STATUS deprecated - DESCRIPTION " - Sub-tree for the Log Duration on the Log Collector. Log - Duration is Expressed in Days of storage." - ::= { panLcStat 2 } - - panLcDiskUsageTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLcDiskUsageEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION " - Sub-tree for the Log Disk Usage on the Log Collector. Log - Disk Usage is available as MB in use." - ::= { panLcStat 3 } - - panLcLogUsageTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLcLogUsageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for the Log Usage and data retention on the Log Collector(non localDB). - Log Disk Usage is available as MB in use." - ::= { panLcStat 4 } - - panLocalLogUsageTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLocalLogUsageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for the Log Usage and data retention on the Log Collector(localDB). - Log Disk Usage is available as MB in use." - ::= { panLcStat 5 } - - panLcDiskIOPSTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLcDiskIOPSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " - Sub-tree for Log Disk I/O throughput on the Log Collector and Panorama." - ::= { panLcStat 6 } - - panLcLogDurationTraffic OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the traffic logs on the Log Collector" - ::= { panLcLogDuration 1 } - - panLcLogDurationConfig OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the config logs on the Log Collector" - ::= { panLcLogDuration 2 } - - panLcLogDurationSystem OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the system logs on the Log Collector" - ::= { panLcLogDuration 3 } - - panLcLogDurationThreat OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the threat logs on the Log Collector" - ::= { panLcLogDuration 4 } - - panLcLogDurationAppstat OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the appstat logs on the Log Collector" - ::= { panLcLogDuration 5 } - - panLcLogDurationTrsum OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the trsum logs on the Log Collector" - ::= { panLcLogDuration 6 } - - panLcLogDurationThsum OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the thsum logs on the Log Collector" - ::= { panLcLogDuration 7 } - - panLcLogDurationEvent OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the event logs on the Log Collector" - ::= { panLcLogDuration 8 } - - panLcLogDurationAlarm OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the alarm logs on the Log Collector" - ::= { panLcLogDuration 9 } - - panLcLogDurationHipmatch OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the hipmatch logs on the Log Collector" - ::= { panLcLogDuration 10 } - - panLcLogDurationUserid OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log duration (in days) for the userid logs on the Log Collector" - ::= { panLcLogDuration 11 } - - panLcDiskUsageEntry OBJECT-TYPE - SYNTAX PanLcDiskUsageEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Entries are created when the panLcDiskUsage are added to the - panLcDiskUsageTable." - INDEX { panLcDiskUsageId } - ::= { panLcDiskUsageTable 1 } - - PanLcDiskUsageEntry ::= SEQUENCE { - panLcDiskUsageId Integer32, - panLcDiskUsage Unsigned32 - } - - panLocalLogUsageEntry OBJECT-TYPE - SYNTAX PanLocalLogUsageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when the panLocalLogUsage are added to the panLocalLogUsageTable." - INDEX { panLcLogType } - ::= { panLocalLogUsageTable 1 } - - PanLocalLogUsageEntry ::= SEQUENCE { - panLocalLogType DisplayString, - panLocalDiskUsageDiskSpace FloatValue, - panLocalDiskUsageRetention Unsigned32, - panLocalDiskQuota FloatValue, - panLocalDiskQuotaPct FloatValue - } - - panLocalLogType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log type for Log Collector. " - ::= { panLocalLogUsageEntry 1 } - - panLocalDiskUsageDiskSpace OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Usage (in MB) for particular log type for Log Collector. " - ::= { panLocalLogUsageEntry 2 } - - panLocalDiskUsageRetention OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log Rentention for particular log type for Log Collector. " - ::= { panLocalLogUsageEntry 3 } - - panLocalDiskQuota OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Quota (in MB) for particular log type for Log Collector. " - ::= { panLocalLogUsageEntry 4 } - - panLocalDiskQuotaPct OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Quota Percentage for particular log type for Log Collector. " - ::= { panLocalLogUsageEntry 5 } - - - panLcDiskIOPSEntry OBJECT-TYPE - SYNTAX PanLcDiskIOPSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panLcDiskIOPSEntry are added to the panLcDiskIOPSTable." - INDEX { panLcDiskIOPSId } - ::= { panLcDiskIOPSTable 1 } - - PanLcDiskIOPSEntry ::= SEQUENCE { - panLcDiskIOPSId DisplayString, - panLcDiskIORead5min Counter64, - panLcDiskIOWrite5min Counter64 - } - - panLcDiskIOPSId OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk number for Log Collector or Panorama. " - ::= { panLcDiskIOPSEntry 1 } - - panLcDiskIORead5min OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk read rate over a span of 5 minute interval." - ::= { panLcDiskIOPSEntry 2 } - - panLcDiskIOWrite5min OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk write rate over a span of 5 minute interval." - ::= { panLcDiskIOPSEntry 3 } - - panLcLogUsageEntry OBJECT-TYPE - SYNTAX PanLcLogUsageEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when the panLcLogUsage are added to the panLcLogUsageTable." - INDEX { panLcLogType } - ::= { panLcLogUsageTable 1 } - - PanLcLogUsageEntry ::= SEQUENCE { - panLcLogType DisplayString, - panLcDiskUsageDiskSpacePct FloatValue, - panLcDiskUsageRetention Unsigned32, - panLcDiskQuotaPct FloatValue - } - - panLcLogType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log type for Log Collector. " - ::= { panLcLogUsageEntry 1 } - - panLcDiskUsageDiskSpacePct OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Usage Percentage for particular log type for Log Collector - aggregated over all disks. " - ::= { panLcLogUsageEntry 2 } - - panLcDiskUsageRetention OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log Rentention for particular log type for Log Collector. " - ::= { panLcLogUsageEntry 3 } - - panLcDiskQuotaPct OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Disk Quota Percentage for particular log type for Log Collector - aggregated over all disks. " - ::= { panLcLogUsageEntry 4 } - - panLcDiskUsageId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log disk id" - ::= { panLcDiskUsageEntry 1 } - - panLcDiskUsage OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The Log disk usage on the Log Collector" - ::= { panLcDiskUsageEntry 2 } - - panLcIsRedundancyMember OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "True value indicates this Log Collector is part of a Collector Group with Redundancy is enabled" - ::= { panLogCollector 2 } - - panLcLogFwdStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLcLogFwdStatsEntry - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This table shows the status of logs as they are forwarded via syslog, Traps, email and - http/https from this Log Collector." - ::= { panLogCollector 3 } - ------------------------------------------------------------------ - -- panLcLogFwdStatsTable - - panLcLogFwdStatsEntry OBJECT-TYPE - SYNTAX PanLcLogFwdStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panLcLogFwdStats are added to panLcLogFwdStatsTable." - INDEX { panLcLogFwdStatsTableType } - ::= { panLcLogFwdStatsTable 1 } - - PanLcLogFwdStatsEntry ::= SEQUENCE { - panLcLogFwdStatsTableType DisplayString, - panLcLogFwdStatsTableEnqueueCount Counter64, - panLcLogFwdStatsTableSendCount Counter64, - panLcLogFwdStatsTableDropCount Counter64, - panLcLogFwdStatsTableQueueDepth Counter64 - } - - panLcLogFwdStatsTableType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of method used to forward logs." - ::= { panLcLogFwdStatsEntry 1 } - - panLcLogFwdStatsTableEnqueueCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for number of logs enqueued." - ::= { panLcLogFwdStatsEntry 2 } - - panLcLogFwdStatsTableSendCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for number of logs sent." - ::= { panLcLogFwdStatsEntry 3 } - - panLcLogFwdStatsTableDropCount OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for number of logs dropped." - ::= { panLcLogFwdStatsEntry 4 } - - panLcLogFwdStatsTableQueueDepth OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Counter for depth of queue." - ::= { panLcLogFwdStatsEntry 5 } - - -- panLcLoggingConnectedDeviceTable - - panLcLoggingConnectedDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLcLoggingConnectedDeviceEntry - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This table shows the details of all devices logging to this Log Collector." - ::= { panLogCollector 4 } - - panLcLoggingConnectedDeviceEntry OBJECT-TYPE - SYNTAX PanLcLoggingConnectedDeviceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panLcLoggingConnectedDevice are added to panLcLoggingConnectedDeviceTable." - INDEX { panLcLoggingConnectedDeviceConnectionId } - ::= { panLcLoggingConnectedDeviceTable 1 } - - PanLcLoggingConnectedDeviceEntry ::= SEQUENCE { - panLcLoggingConnectedDeviceName DisplayString, - panLcLoggingConnectedDeviceConnectionId DisplayString, - panLcLoggingConnectedIdLogRate Unsigned32 - } - - panLcLoggingConnectedDeviceName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Name of the device being polled." - ::= { panLcLoggingConnectedDeviceEntry 1 } - - panLcLoggingConnectedDeviceConnectionId OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connection id of the device being polled." - ::= { panLcLoggingConnectedDeviceEntry 2 } - - panLcLoggingConnectedIdLogRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Logging rate for the connection." - ::= { panLcLoggingConnectedDeviceEntry 3 } - - -- panLcLoggingDeviceTable - - panLcLoggingDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF PanLcLoggingDeviceEntry - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This table shows the details of logs forwarded by devices logging to this Log Collector." - ::= { panLogCollector 5 } - - panLcLoggingDeviceEntry OBJECT-TYPE - SYNTAX PanLcLoggingDeviceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panLcLoggingDevice are added to panLcLoggingDeviceTable." - INDEX { panLcLoggingDeviceConnectionId, - panLcLoggingLogType } - ::= { panLcLoggingDeviceTable 1 } - - PanLcLoggingDeviceEntry ::= SEQUENCE { - panLcLoggingDeviceConnectionId DisplayString, - panLcLoggingLogType DisplayString, - panLcLogTypeLastLogRecd TimeStamp, - panLcLogTypeLastSeqNumRecd Counter64, - panLcLogTypeLastLogGen TimeStamp - } - - panLcLoggingDeviceConnectionId OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Connection id of the device being polled." - ::= { panLcLoggingDeviceEntry 1 } - - panLcLoggingLogType OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Log Type of the log being polled." - ::= { panLcLoggingDeviceEntry 2 } - - panLcLogTypeLastLogRecd OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time at which the last log was received." - ::= { panLcLoggingDeviceEntry 3 } - - panLcLogTypeLastSeqNumRecd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Last sequence number received for a type of log." - ::= { panLcLoggingDeviceEntry 4 } - - panLcLogTypeLastLogGen OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Time at which the last log was generated." - ::= { panLcLoggingDeviceEntry 5 } - - ---------------------------------------------------------------------- - -- Events - - panCommonEventObjs OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Branch for objects meant only to be sent in event varbinds." - ::= { panCommonEvents 1 } - - panCommonEventEvents OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Branch for the events themselves." - ::= { panCommonEvents 2 } - - panCommonEventEventsV2 OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Branch for SNMPv2 events. The OIDs for SNMPv2 events should - have a zero as the next-to-last sub-identifier (as specified - in RFC1902)." - ::= { panCommonEventEvents 0 } - - -- Objects sent only in events - - panCommonEventDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "String that provides a textual description of the event." - ::= { panCommonEventObjs 1 } - - -- Event descriptions - - panCommonEventLog NOTIFICATION-TYPE - OBJECTS { panCommonEventDescr } - STATUS current - DESCRIPTION - "A config/system/firewall/threat log" - ::= { panCommonEventEventsV2 1 } - - ---------------------------------------------------------------------- - -- GlobalCounters - - panAhoSw OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total usage of software for AHO" - ::= { panGlobalCounters 1 } - - panDfaSw OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of dfa match using software" - ::= { panGlobalCounters 2 } - - panFlowHostServiceAllow OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Device management session allowed" - ::= { panGlobalCounters 3 } - - panHaPathmonSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "HA path-monitoring packets sent" - ::= { panGlobalCounters 4 } - - panAhoFpga OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total requests to FPGA for AHO" - ::= { panGlobalCounters 5 } - - panDfaFpga OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total requests to FPGA for DFA" - ::= { panGlobalCounters 6 } - - panFpgaPkt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The packets held because of requests to FPGA" - ::= { panGlobalCounters 7 } - - panGlobalCountersDOSCounters OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Sub-tree for Global DOS counters" - ::= { panGlobalCounters 8 } - - panGlobalCountersDropCounters OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Sub-tree for Global Drop counters" - ::= { panGlobalCounters 9 } - - panGlobalCountersIPFragmentationCounters OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Sub-tree for Global IPFragmentation counters" - ::= { panGlobalCounters 10 } - - panGlobalCountersTCPState OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Sub-tree for Global TCPState counters" - ::= { panGlobalCounters 11 } - - panGlobalCountersTunnelInspect OBJECT-IDENTITY - STATUS current - DESCRIPTION - "Sub-tree for Global Tunnel (GRE, IPSEC and GTP) counters" - ::= { panGlobalCounters 12 } - - - ---------------------------------------------------------------------- - -- Global DOS Counters - - panFlowDosAgMaxSessLimit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session limit reached for aggregate profile, drop session" - ::= { panGlobalCountersDOSCounters 1 } - - panFlowDosBlkNumEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of entries in DOS block table" - ::= { panGlobalCountersDOSCounters 2 } - - panFlowDosClMaxSessLimit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session limit reached for classified profile, drop session" - ::= { panGlobalCountersDOSCounters 3 } - - panFlowDosClSyncookieAckErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP SYN cookies: Invalid ACKs received, classified profile" - ::= { panGlobalCountersDOSCounters 4 } - - panFlowDosClSyncookieAckRcv OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP SYN cookies: ACKs to cookies received, classified profile" - ::= { panGlobalCountersDOSCounters 5 } - - panFlowDosClSyncookieBlkDur OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Flagged for blocking and under block duration for cl" - ::= { panGlobalCountersDOSCounters 6 } - - panFlowDosClSyncookieMax OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packet dropped: SYN cookies maximum threshold reached, classified pro" - ::= { panGlobalCountersDOSCounters 7 } - - panFlowDosClSyncookieSent OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP SYN cookies: cookies sent, classified profile" - ::= { panGlobalCountersDOSCounters 8 } - - panFlowMeterVsysThrottle OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session metering: sessions throttled by vsys configuration" - ::= { panGlobalCountersDOSCounters 9 } - - - panFlowPolicyDeny OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session setup: denied by policy" - ::= { panGlobalCountersDOSCounters 10 } - - panFlowPolicyNat OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session setup: source NAT IP/port allocation error" - ::= { panGlobalCountersDOSCounters 11 } - - panFlowScanDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session setup: denied by scan detection" - ::= { panGlobalCountersDOSCounters 12 } - - panFlowDosDropIpBlocked OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Flagged for blocking and under block duration by oth" - ::= { panGlobalCountersDOSCounters 13 } - - panFlowDosRedIcmp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Zone protection protocol 'icmp' RED" - ::= { panGlobalCountersDOSCounters 14 } - - panFlowDosRedIcmp6 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Zone protection protocol 'icmpv6' RED" - ::= { panGlobalCountersDOSCounters 15 } - - - panFlowDosRedIp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Zone protection protocol 'other-ip' RED" - ::= { panGlobalCountersDOSCounters 16 } - - panFlowDosRedTcp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Zone protection protocol 'tcp-syn' RED" - ::= { panGlobalCountersDOSCounters 17 } - - panFlowDosRedUdp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Zone protection protocol 'udp' RED" - ::= { panGlobalCountersDOSCounters 18 } - - panFlowDosRuleAgBlkDur OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Flagged for blocking and under block duration for ag" - ::= { panGlobalCountersDOSCounters 19 } - - panFlowDosRuleAgRedAct OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Activate aggregate RED threshold reached, random ear" - ::= { panGlobalCountersDOSCounters 20 } - - panFlowDosRuleAgRedMax OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Maximal aggregate RED threshold reached" - ::= { panGlobalCountersDOSCounters 21 } - - panFlowDosRuleDeny OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Denied action by DoS policy" - ::= { panGlobalCountersDOSCounters 22 } - - panFlowDosRuleDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Rate limited or IP blocked" - ::= { panGlobalCountersDOSCounters 23 } - - panFlowDosRuleDropAggr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: due to aggregate rate limiting" - ::= { panGlobalCountersDOSCounters 24 } - - panFlowDosRuleDropClBlkDur OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Flagged for blocking and under block duration for cl" - ::= { panGlobalCountersDOSCounters 25 } - - panFlowDosRuleDropClRedAct OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Activate classified RED threshold reached, random ea" - ::= { panGlobalCountersDOSCounters 26 } - - panFlowDosRuleDropClRedMax OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Maximal classified RED threshold reached" - ::= { panGlobalCountersDOSCounters 27 } - - panFlowDosRuleDropClassified OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: due to classified rate limiting" - ::= { panGlobalCountersDOSCounters 28 } - - panFlowDosSyncookieBlkDur OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Flagged for blocking and under block duration for ag" - ::= { panGlobalCountersDOSCounters 29 } - - panFlowDosSyncookieMax OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packet dropped: SYN cookies maximum threshold reached, aggregate prof" - ::= { panGlobalCountersDOSCounters 30 } - - panFlowDosZoneRedAct OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Activate zone RED threshold reached, random early dr" - ::= { panGlobalCountersDOSCounters 31 } - - panFlowDosZoneRedMax OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: Maximal zone RED threshold reached" - ::= { panGlobalCountersDOSCounters 32 } - - panFlowDosBlkSwEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of entries in DOS Software block table" - ::= { panGlobalCountersDOSCounters 33 } - - panFlowDosBlkHwEntries OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of entries in DOS Hardware block table" - ::= { panGlobalCountersDOSCounters 34 } - - panFlowDosSyncookieNotTcpSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP SYN cookies:TCP SYN cookie not SYN" - ::= { panGlobalCountersDOSCounters 35 } - - panFlowDosSyncookieNotTcpSynAck OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP SYN cookies:TCP SYN cookie not SYN-ACK" - ::= { panGlobalCountersDOSCounters 36 } - - panFlowDosPfIpspoof OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-ip-spoof'" - ::= { panGlobalCountersDOSCounters 37 } - - panFlowDosPfIpfrag OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-ip-frag'" - ::= { panGlobalCountersDOSCounters 38 } - - panFlowDosPfPing0 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-icmp-ping-zero-id'" - ::= { panGlobalCountersDOSCounters 39 } - - panFlowDosPfIcmpfrag OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-icmp-frag'" - ::= { panGlobalCountersDOSCounters 40 } - - panFlowDosPfIcmplpkt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-icmp-large-packet'" - ::= { panGlobalCountersDOSCounters 41 } - - panFlowDosPfIcmperr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-icmp-error'" - ::= { panGlobalCountersDOSCounters 42 } - - panFlowDosPfNoreplyttl OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'suppress-icmp-timeexceeded'" - ::= { panGlobalCountersDOSCounters 43 } - - panFlowDosPfNoreplyneedfrag OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'suppress-icmp-needfrag'" - ::= { panGlobalCountersDOSCounters 44 } - - panFlowDosPfStrictsource OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-strict-source-routing'" - ::= { panGlobalCountersDOSCounters 45 } - - panFlowDosPfLoosesource OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-loose-source-routing'" - ::= { panGlobalCountersDOSCounters 46 } - - panFlowDosPfTimestamp OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-timestamp'" - ::= { panGlobalCountersDOSCounters 47 } - - panFlowDosPfRecordroute OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-record-route'" - ::= { panGlobalCountersDOSCounters 48 } - - panFlowDosPfSecurity OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-security'" - ::= { panGlobalCountersDOSCounters 49 } - - panFlowDosPfSatnetid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-stream-id'" - ::= { panGlobalCountersDOSCounters 50 } - - panFlowDosPfUnknown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-unknown-option'" - ::= { panGlobalCountersDOSCounters 51 } - - panFlowDosPfBadoption OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-malformed-option'" - ::= { panGlobalCountersDOSCounters 52 } - - panFlowDosPfTcpoverlappingmismatch OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-overlapping-tcp-segment-mismatch'" - ::= { panGlobalCountersDOSCounters 53 } - - panFlowDosPfStrictip OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'strict-ip-check'" - ::= { panGlobalCountersDOSCounters 54 } - - panFlowDosPfTcpsplithandshake OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-tcp-split-handshake'" - ::= { panGlobalCountersDOSCounters 55 } - - panFlowDosPfTcpsyndata OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-tcp-syn-with-data'" - ::= { panGlobalCountersDOSCounters 56 } - - panFlowDosPfTcpsynackdata OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'discard-tcp-synack-with-data'" - ::= { panGlobalCountersDOSCounters 57 } - - panFlowDosIp6Route0 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-0'" - ::= { panGlobalCountersDOSCounters 58 } - - panFlowDosIp6Route1 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-1'" - ::= { panGlobalCountersDOSCounters 59 } - - panFlowDosIp6Route3 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-3'" - ::= { panGlobalCountersDOSCounters 60 } - - panFlowDosIp6Route4to252 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-4-252'" - ::= { panGlobalCountersDOSCounters 61 } - - panFlowDosIp6Route253 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-253'" - ::= { panGlobalCountersDOSCounters 62 } - - panFlowDosIp6Route254 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-254'" - ::= { panGlobalCountersDOSCounters 63 } - - panFlowDosIp6Route255 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-header-255'" - ::= { panGlobalCountersDOSCounters 64 } - - panFlowDosIp6Ip4cmpt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'ipv4-compatible-address'" - ::= { panGlobalCountersDOSCounters 65 } - - panFlowDosIp6Acast OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'anycast-source'" - ::= { panGlobalCountersDOSCounters 66 } - - panFlowDosIp6OptionsInvalidIPv6 OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'options-invalid-ipv6-discard'" - ::= { panGlobalCountersDOSCounters 67 } - - panFlowDosIp6Icmpv6ErrorInvalid OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'icmpv6-too-big-small-mtu-discard'" - ::= { panGlobalCountersDOSCounters 68 } - - panFlowDosIp6NeedlessIpv6FragHdr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'needless-fragment-hdr'" - ::= { panGlobalCountersDOSCounters 69 } - - panFlowDosIp6RsvdSet OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'reserved-field-set-discard'" - ::= { panGlobalCountersDOSCounters 70 } - - panFlowDosIPv6ExtHdrHopByHop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'hop-by-hop-hdr'" - ::= { panGlobalCountersDOSCounters 71 } - - panFlowDosip6IPv6ExtHdrRouting OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'routing-hdr'" - ::= { panGlobalCountersDOSCounters 72 } - - panFlowDosIp6IPv6ExtHdrDestOpt OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Zone protection option 'dest-option-hdr'" - ::= { panGlobalCountersDOSCounters 73 } - - panFlowDosPbpDrop OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped:Dropped by packet buffer protection RED" - ::= { panGlobalCountersDOSCounters 74 } - - panFlowDosCurrSessIncrFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Unable to increment current session count on session create" - ::= { panGlobalCountersDOSCounters 75 } - - panFlowDosCurrSessDecrFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Unable to decrement current session count on session delete" - ::= { panGlobalCountersDOSCounters 76 } - - - ------------------------------------------------------------------------------------------------------- - -- Pan Global Drop Counters - - panFlowFwdL3TtlZero OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packets dropped: IP TTL reaches zero" - ::= { panGlobalCountersDropCounters 1 } - - panFlowMeterHostThrottle OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session metering: sessions throttled by management session threshold" - ::= { panGlobalCountersDropCounters 2 } - - panFlowHostServiceDeny OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Device management session denied" - ::= { panGlobalCountersDropCounters 3 } - - panFlowHostServiceUnknown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session discarded: unknown application to control plane" - ::= { panGlobalCountersDropCounters 4 } - - panPktAllocFailure OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packet allocation error" - ::= { panGlobalCountersDropCounters 5 } - - panPktAllocFailureCos OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packet allocation error due to QoS control" - ::= { panGlobalCountersDropCounters 6 } - - panSessionDiscard OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Session set to discard by security policy check" - ::= { panGlobalCountersDropCounters 7 } - - ------------------------------------------------------------------------------------------------------ - -- Pan Global IPFragmentation Counters - - panFlowIpfragFragErr OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Packet dropped: IP fragmentation error" - ::= { panGlobalCountersIPFragmentationCounters 1 } - - panFlowIpfragRecv OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "IP fragments received" - ::= { panGlobalCountersIPFragmentationCounters 2 } - ------------------------------------------------------------------------------------------------------- --- Pan Global TCP State Counters - - panTcpAllocWqeFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "wqe allocation failure in tcp" - ::= { panGlobalCountersTCPState 1 } - - panTcpDeny OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "session denied because of failure in tcp reassembly" - ::= { panGlobalCountersTCPState 2 } - - panTcpDropOutOfWnd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "out-of-window packets dropped" - ::= { panGlobalCountersTCPState 3 } - - panTcpDropPacket OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "packets dropped because of failure in tcp reassembly" - ::= { panGlobalCountersTCPState 4 } - - panFlowActionClose OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP sessions closed via injecting RST" - ::= { panGlobalCountersTCPState 5 } - - panFlowActionReset OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "TCP clients reset via responding RST" - ::= { panGlobalCountersTCPState 6 } - - panFlowTcpNonSyn OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Non-SYN TCP packets without session match" - ::= { panGlobalCountersTCPState 7 } - - - panTcpExceedSegLimit OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "packets dropped due to the limitation on global tcp out-of-order pack" - ::= { panGlobalCountersTCPState 8 } - - ------------------------------------------------------------------------------------------------------ - -- Pan Global Tunnel State Counters - - panFlowTciGreDecapSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total GRE sessions tunnel inspected" - ::= { panGlobalCountersTunnelInspect 1 } - - panFlowTciGreDecapFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total GRE sessions for failed tunnel inspected" - ::= { panGlobalCountersTunnelInspect 2 } - - panFlowTciGreDecapUnknown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total unknown tunnel inspection packets in GRE tunnel [passed|dropped]" - ::= { panGlobalCountersTunnelInspect 3 } - - panFlowTciIpsecDecapSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total Ipsec sessions tunnel inspected" - ::= { panGlobalCountersTunnelInspect 4 } - - panFlowTciIpsecDecapFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total IPSEC sessions for failed tunnel inspected" - ::= { panGlobalCountersTunnelInspect 5 } - - panFlowTciIpsecDecapUnknown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total unknown tunnel inspection packets in IPSEC tunnel [passed|dropped]" - ::= { panGlobalCountersTunnelInspect 6 } - - panFlowTciGtpDecapSuccess OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total GTP sessions tunnel inspected" - ::= { panGlobalCountersTunnelInspect 7 } - - panFlowTciGtpDecapFailed OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total GTP sessions for failed tunnel inspected" - ::= { panGlobalCountersTunnelInspect 8 } - - panFlowTciGtpDecapUnknown OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total unknown tunnel inspection packets in GTP tunnel[passed|dropped]" - ::= { panGlobalCountersTunnelInspect 9 } - - --------------------------------------------------------------- - -- panIfTable - - panIfEntry OBJECT-TYPE - SYNTAX PanIfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panIfCPS are added to the panIfCPSTable." - INDEX { ifIndex } - ::= { panIfTable 1 } - - PanIfEntry ::= SEQUENCE { - ifIndex Unsigned32, - ifDescr DisplayString, - panIfActiveTcpCps Unsigned32, - panIfActiveUdpCps Unsigned32, - panIfActiveOtherIpCps Unsigned32 - } - - ifIndex OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Index of the interface" - ::= { panIfEntry 1 } - - ifDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Description (name) of the interface" - ::= { panIfEntry 2 } - - panIfActiveTcpCps OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active TCP connections per second for this interface." - ::= { panIfEntry 3 } - - panIfActiveUdpCps OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active UDP connections per second for this interface." - ::= { panIfEntry 4 } - - panIfActiveOtherIpCps OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active Other IP connections per second for this interface." - ::= { panIfEntry 5 } - - --------------------------------------------------------------- - -- panZoneTable - - panZoneEntry OBJECT-TYPE - SYNTAX PanZoneEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entries are created when panZoneCPS are added to the panZoneCPSTable." - INDEX { ifIndex } - ::= { panZoneTable 1 } - - PanZoneEntry ::= SEQUENCE { - panZoneName DisplayString, - panZoneActiveTcpCps Unsigned32, - panZoneActiveUdpCps Unsigned32, - panZoneActiveOtherIpCps Unsigned32 - } - - panZoneName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Zone name for the interface" - ::= { panZoneEntry 1 } - - panZoneActiveTcpCps OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active TCP connections per second for this zone." - ::= { panZoneEntry 2 } - - panZoneActiveUdpCps OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active UDP connections per second for this zone." - ::= { panZoneEntry 3 } - - panZoneActiveOtherIpCps OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of active Other IP connections per second for this zone." - ::= { panZoneEntry 4 } - - --------------------------------------------------------------------------------------------------------- -END diff --git a/mibs/orig/PAN-GLOBAL-REG b/mibs/orig/PAN-GLOBAL-REG deleted file mode 100644 index 7803d81..0000000 --- a/mibs/orig/PAN-GLOBAL-REG +++ /dev/null @@ -1,84 +0,0 @@ --- *********************************************** --- PAN-GLOBAL-REG-MIB.my --- --- Palo Alto Networks Global Definitions. --- *********************************************** - -PAN-GLOBAL-REG DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-IDENTITY, - enterprises - FROM SNMPv2-SMI; - - panGlobalRegModule MODULE-IDENTITY - LAST-UPDATED "201106271040Z" - ORGANIZATION "Palo Alto Networks" - CONTACT-INFO " - Customer Support - Palo Alto Networks - 4401 Great America Pkwy - Santa Clara, CA 95054-1211 - - +1 866-898-9087 - support at paloaltonetworks dot com" - - DESCRIPTION " - A MIB module containing top-level OID definitions - for various sub-trees for Palo Alto Networks' enterprise MIB modules." - - REVISION "201102091610Z" - DESCRIPTION " - Rev 1.0 - Initial version of MIB module PAN-GLOBAL-REG." - - ::= { panModules 1 } - - panRoot OBJECT-IDENTITY - STATUS current - DESCRIPTION " - The root of the OID sub-tree assigned to Palo Alto Networks assigned by - the Internet Assigned Numbers Authority (IANA)." - ::= { enterprises 25461 } - - panReg OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for registrations - identification of modules and logical and - physical components." - ::= { panRoot 1 } - - panModules OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for module registrations." - ::= { panReg 1 } - - panMibs OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for all Palo Alto object and event definitions." - ::= { panRoot 2 } - - -- Sub-trees for Palo Alto managed objects - - panCommonMib OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for common Palo Alto object and event definitions. - These would be implemented by all Palo Alto products." - ::= { panMibs 1 } - - panSpecificMib OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for specific Palo Alto object and event definitions." - ::= { panMibs 2 } - - panProductsMibs OBJECT-IDENTITY - STATUS current - DESCRIPTION " - Sub-tree for all Palo Alto product specific definitions." - ::= { panMibs 3 } - -END diff --git a/mibs/orig/PAN-GLOBAL-TC b/mibs/orig/PAN-GLOBAL-TC deleted file mode 100644 index 52fe9af..0000000 --- a/mibs/orig/PAN-GLOBAL-TC +++ /dev/null @@ -1,68 +0,0 @@ --- *********************************************** --- PAN-GLOBAL-TC-MIB.my --- --- Palo Alto Networks Global Textual Conventions. --- *********************************************** - -PAN-GLOBAL-TC DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY - FROM SNMPv2-SMI - TEXTUAL-CONVENTION - FROM SNMPv2-TC - panModules - FROM PAN-GLOBAL-REG; - - panGlobalTcModule MODULE-IDENTITY - LAST-UPDATED "201106271040Z" - ORGANIZATION "Palo Alto Networks" - CONTACT-INFO " - Customer Support - Palo Alto Networks - 4401 Great America Pkwy - Santa Clara, CA 95054-1211 - - +1 866-898-9087 - support at paloaltonetworks dot com" - - DESCRIPTION " - A MIB module containing textual conventions - for Palo Alto Networks' enterprise MIB modules. - These textual conventions are used across all Palo Alto products." - - REVISION "201102091610Z" - DESCRIPTION " - Rev 1.0 - Initial version of MIB module PAN-GLOBAL-TC." - - ::= { panModules 2 } - - -- No Palo Alto textual conventions yet! - - TcAppaname ::= TEXTUAL-CONVENTION - DISPLAY-HINT "64a" - STATUS current - DESCRIPTION " - Represents the name of an application. - - This has all the restrictions of the DisplayString textual - convention with the following additional ones: - - - Only the following characters/character ranges are allowed: - 0-9 - A-Z - a-z - :./#$&_-+()' - - - Any object defined using this syntax may not exceed 64 - characters in length." - SYNTAX OCTET STRING (SIZE (0..64)) - - TcChassisType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION " - Enumerates all possible chassis types for Palo Alto devices." - SYNTAX OCTET STRING (SIZE (0..64)) -END diff --git a/mibs/orig/POWER-ETHERNET-MIB b/mibs/orig/POWER-ETHERNET-MIB deleted file mode 100644 index dfb0673..0000000 --- a/mibs/orig/POWER-ETHERNET-MIB +++ /dev/null @@ -1,629 +0,0 @@ --- ***************************************************************** --- POWER-ETHERNET-MIB --- --- This mib was extracted from RFC 3621 --- --- Copyright (c) 2006, 2009 by Cisco Systems, Inc. --- All rights reserved. --- ***************************************************************** -POWER-ETHERNET-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, mib-2, OBJECT-TYPE, Integer32, - Gauge32, Counter32, NOTIFICATION-TYPE - FROM SNMPv2-SMI - TruthValue - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB; - - powerEthernetMIB MODULE-IDENTITY - - LAST-UPDATED "200311240000Z" -- November 24, 2003 - ORGANIZATION "IETF Ethernet Interfaces and Hub MIB - Working Group" - - CONTACT-INFO - " - WG Charter: - http://www.ietf.org/html.charters/hubmib-charter.html - - Mailing lists: - General Discussion: hubmib@ietf.org - To Subscribe: hubmib-requests@ietf.org - In Body: subscribe your_email_address - - Chair: Dan Romascanu - Avaya - Tel: +972-3-645-8414 - Email: dromasca@avaya.com - - Editor: Avi Berger - PowerDsine Inc. - Tel: 972-9-7755100 Ext 307 - Fax: 972-9-7755120 - E-mail: avib@PowerDsine.com - " - - DESCRIPTION - "The MIB module for managing Power Source Equipment - (PSE) working according to the IEEE 802.af Powered - Ethernet (DTE Power via MDI) standard. - - The following terms are used throughout this - MIB module. For complete formal definitions, - the IEEE 802.3 standards should be consulted - wherever possible: - - Group - A recommended, but optional, entity - defined by the IEEE 802.3 management standard, - in order to support a modular numbering scheme. - The classical example allows an implementor to - represent field-replaceable units as groups of - ports, with the port numbering matching the - modular hardware implementation. - - Port - This entity identifies the port within the group - for which this entry contains information. The numbering - scheme for ports is implementation specific. - - Copyright (c) The Internet Society (2003). This version - of this MIB module is part of RFC 3621; See the RFC - itself for full legal notices." - - REVISION "200311240000Z" -- November 24, 2003 - DESCRIPTION "Initial version, published as RFC 3621." - ::= { mib-2 105 } - -pethNotifications OBJECT IDENTIFIER ::= { powerEthernetMIB 0 } -pethObjects OBJECT IDENTIFIER ::= { powerEthernetMIB 1 } -pethConformance OBJECT IDENTIFIER ::= { powerEthernetMIB 2 } - --- PSE Objects - - pethPsePortTable OBJECT-TYPE - SYNTAX SEQUENCE OF PethPsePortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of objects that display and control the power - characteristics of power Ethernet ports on a Power Source - Entity (PSE) device. This group will be implemented in - managed power Ethernet switches and mid-span devices. - Values of all read-write objects in this table are - persistent at restart/reboot." - ::= { pethObjects 1 } - - pethPsePortEntry OBJECT-TYPE - SYNTAX PethPsePortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of objects that display and control the power - characteristics of a power Ethernet PSE port." - INDEX { pethPsePortGroupIndex , pethPsePortIndex } - ::= { pethPsePortTable 1 } - - PethPsePortEntry ::= SEQUENCE { - pethPsePortGroupIndex - Integer32, - pethPsePortIndex - Integer32, - pethPsePortAdminEnable - TruthValue, - pethPsePortPowerPairsControlAbility - TruthValue, - pethPsePortPowerPairs - INTEGER, - pethPsePortDetectionStatus - INTEGER, - pethPsePortPowerPriority - INTEGER, - pethPsePortMPSAbsentCounter - Counter32, - pethPsePortType - SnmpAdminString, - pethPsePortPowerClassifications - INTEGER, - pethPsePortInvalidSignatureCounter - Counter32, - pethPsePortPowerDeniedCounter - Counter32, - pethPsePortOverLoadCounter - Counter32, - pethPsePortShortCounter - Counter32 - } - - pethPsePortGroupIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This variable uniquely identifies the group - containing the port to which a power Ethernet PSE is - connected. Group means box in the stack, module in a - rack and the value 1 MUST be used for non-modular devices. - Furthermore, the same value MUST be used in this variable, - pethMainPseGroupIndex, and pethNotificationControlGroupIndex - to refer to a given box in a stack or module in the rack." - ::= { pethPsePortEntry 1 } - - pethPsePortIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This variable uniquely identifies the power Ethernet PSE - port within group pethPsePortGroupIndex to which the - power Ethernet PSE entry is connected." - ::= { pethPsePortEntry 2 } - - pethPsePortAdminEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "true (1) An interface which can provide the PSE functions. - false(2) The interface will act as it would if it had no PSE - function." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.2 aPSEAdminState" - ::= { pethPsePortEntry 3 } - - pethPsePortPowerPairsControlAbility OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Describes the capability of controlling the power pairs - functionality to switch pins for sourcing power. - The value true indicate that the device has the capability - to control the power pairs. When false the PSE Pinout - Alternative used cannot be controlled through the - PethPsePortAdminEnable attribute." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.3 - aPSEPowerPairsControlAbility" - ::= { pethPsePortEntry 4 } - - pethPsePortPowerPairs OBJECT-TYPE - SYNTAX INTEGER { - signal(1), - spare(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Describes or controls the pairs in use. If the value of - pethPsePortPowerPairsControl is true, this object is - writable. - A value of signal(1) means that the signal pairs - only are in use. - A value of spare(2) means that the spare pairs - only are in use." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.4 aPSEPowerPairs" - ::= { pethPsePortEntry 5 } - - pethPsePortDetectionStatus OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - searching(2), - deliveringPower(3), - fault(4), - test(5), - otherFault(6) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Describes the operational status of the port PD detection. - A value of disabled(1)- indicates that the PSE State diagram - is in the state DISABLED. - A value of deliveringPower(3) - indicates that the PSE State - diagram is in the state POWER_ON for a duration greater than - tlim max (see IEEE Std 802.3af Table 33-5 tlim). - A value of fault(4) - indicates that the PSE State diagram is - in the state TEST_ERROR. - A value of test(5) - indicates that the PSE State diagram is - in the state TEST_MODE. - A value of otherFault(6) - indicates that the PSE State - diagram is in the state IDLE due to the variable - error_conditions. - A value of searching(2)- indicates the PSE State diagram is - in a state other than those listed above." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.5 - aPSEPowerDetectionStatus" - ::= { pethPsePortEntry 6 } - - pethPsePortPowerPriority OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - high(2), - low(3) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object controls the priority of the port from the point - of view of a power management algorithm. The priority that - is set by this variable could be used by a control mechanism - that prevents over current situations by disconnecting first - ports with lower power priority. Ports that connect devices - critical to the operation of the network - like the E911 - telephones ports - should be set to higher priority." - ::= { pethPsePortEntry 7 } - - pethPsePortMPSAbsentCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This counter is incremented when the PSE state diagram - transitions directly from the state POWER_ON to the - state IDLE due to tmpdo_timer_done being asserted." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.11 - aPSEMPSAbsentCounter" - ::= { pethPsePortEntry 8 } - - pethPsePortType OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "A manager will set the value of this variable to indicate - the type of powered device that is connected to the port. - The default value supplied by the agent if no value has - ever been set should be a zero-length octet string." - ::= { pethPsePortEntry 9 } - - pethPsePortPowerClassifications OBJECT-TYPE - SYNTAX INTEGER { - class0(1), - class1(2), - class2(3), - class3(4), - class4(5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Classification is a way to tag different terminals on the - Power over LAN network according to their power consumption. - Devices such as IP telephones, WLAN access points and others, - will be classified according to their power requirements. - - The meaning of the classification labels is defined in the - IEEE specification. - - This variable is valid only while a PD is being powered, - that is, while the attribute pethPsePortDetectionStatus - is reporting the enumeration deliveringPower." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.6 - aPSEPowerClassification" - ::= { pethPsePortEntry 10 } - - pethPsePortInvalidSignatureCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This counter is incremented when the PSE state diagram - enters the state SIGNATURE_INVALID." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.7 - aPSEInvalidSignatureCounter" - ::= { pethPsePortEntry 11 } - - pethPsePortPowerDeniedCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This counter is incremented when the PSE state diagram - enters the state POWER_DENIED." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.8 - aPSEPowerDeniedCounter" - ::= { pethPsePortEntry 12 } - - pethPsePortOverLoadCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This counter is incremented when the PSE state diagram - enters the state ERROR_DELAY_OVER." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.9 - aPSEOverLoadCounter" - ::= { pethPsePortEntry 13 } - - pethPsePortShortCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This counter is incremented when the PSE state diagram - enters the state ERROR_DELAY_SHORT." - REFERENCE - "IEEE Std 802.3af Section 30.9.1.1.10 - aPSEShortCounter" - ::= { pethPsePortEntry 14 } - --- Main PSE Objects - -pethMainPseObjects OBJECT IDENTIFIER ::= { pethObjects 3 } - -pethMainPseTable OBJECT-TYPE - SYNTAX SEQUENCE OF PethMainPseEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of objects that display and control attributes - of the main power source in a PSE device. Ethernet - switches are one example of boxes that would support - these objects. - Values of all read-write objects in this table are - persistent at restart/reboot." - ::= { pethMainPseObjects 1 } - - pethMainPseEntry OBJECT-TYPE - SYNTAX PethMainPseEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of objects that display and control the Main - power of a PSE. " - INDEX { pethMainPseGroupIndex } - ::= { pethMainPseTable 1 } - - PethMainPseEntry ::= SEQUENCE { - pethMainPseGroupIndex - Integer32, - pethMainPsePower - Gauge32 , - pethMainPseOperStatus - INTEGER, - pethMainPseConsumptionPower - Gauge32, - pethMainPseUsageThreshold - Integer32 - } - pethMainPseGroupIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This variable uniquely identifies the group to which - power Ethernet PSE is connected. Group means (box in - the stack, module in a rack) and the value 1 MUST be - used for non-modular devices. Furthermore, the same - value MUST be used in this variable, pethPsePortGroupIndex, - and pethNotificationControlGroupIndex to refer to a - given box in a stack or module in a rack." - ::= { pethMainPseEntry 1 } - - pethMainPsePower OBJECT-TYPE - SYNTAX Gauge32 (1..65535) - UNITS "Watts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The nominal power of the PSE expressed in Watts." - ::= { pethMainPseEntry 2 } - - pethMainPseOperStatus OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2), - faulty(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The operational status of the main PSE." - ::= { pethMainPseEntry 3 } - - pethMainPseConsumptionPower OBJECT-TYPE - SYNTAX Gauge32 - UNITS "Watts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Measured usage power expressed in Watts." - ::= { pethMainPseEntry 4 } - - pethMainPseUsageThreshold OBJECT-TYPE - SYNTAX Integer32 (1..99) - UNITS "%" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The usage threshold expressed in percents for - comparing the measured power and initiating - an alarm if the threshold is exceeded." - ::= { pethMainPseEntry 5 } - --- Notification Control Objects - -pethNotificationControl OBJECT IDENTIFIER ::= { pethObjects 4 } - -pethNotificationControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF PethNotificationControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of objects that display and control the - Notification on a PSE device. - Values of all read-write objects in this table are - persistent at restart/reboot." - ::= { pethNotificationControl 1 } - - pethNotificationControlEntry OBJECT-TYPE - SYNTAX PethNotificationControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of objects that control the Notification events." - INDEX { pethNotificationControlGroupIndex } - ::= { pethNotificationControlTable 1 } - - PethNotificationControlEntry ::= SEQUENCE { - pethNotificationControlGroupIndex - Integer32, - pethNotificationControlEnable - TruthValue - } - pethNotificationControlGroupIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This variable uniquely identifies the group. Group - means box in the stack, module in a rack and the value - 1 MUST be used for non-modular devices. Furthermore, - the same value MUST be used in this variable, - pethPsePortGroupIndex, and - pethMainPseGroupIndex to refer to a given box in a - stack or module in a rack. " - ::= { pethNotificationControlEntry 1 } - - pethNotificationControlEnable OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object controls, on a per-group basis, whether - or not notifications from the agent are enabled. The - value true(1) means that notifications are enabled; the - value false(2) means that they are not." - ::= { pethNotificationControlEntry 2 } - --- --- Notifications Section --- --- - - pethPsePortOnOffNotification NOTIFICATION-TYPE - OBJECTS { pethPsePortDetectionStatus } - STATUS current - DESCRIPTION - " This Notification indicates if Pse Port is delivering or - not power to the PD. This Notification SHOULD be sent on - every status change except in the searching mode. - At least 500 msec must elapse between notifications - being emitted by the same object instance." - ::= { pethNotifications 1 } - - pethMainPowerUsageOnNotification NOTIFICATION-TYPE - OBJECTS { pethMainPseConsumptionPower } - STATUS current - DESCRIPTION - " This Notification indicate PSE Threshold usage - indication is on, the usage power is above the - threshold. At least 500 msec must elapse between - notifications being emitted by the same object - instance." - ::= { pethNotifications 2 } - - pethMainPowerUsageOffNotification NOTIFICATION-TYPE - OBJECTS { pethMainPseConsumptionPower } - STATUS current - DESCRIPTION - " This Notification indicates PSE Threshold usage indication - off, the usage power is below the threshold. - At least 500 msec must elapse between notifications being - emitted by the same object instance." - ::= { pethNotifications 3 } - --- --- Conformance Section --- -pethCompliances OBJECT IDENTIFIER ::= { pethConformance 1 } -pethGroups OBJECT IDENTIFIER ::= { pethConformance 2 } - -pethCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "Describes the requirements for conformance to the - Power Ethernet MIB." - - MODULE -- this module - MANDATORY-GROUPS { pethPsePortGroup, - pethPsePortNotificationGroup, - pethNotificationControlGroup - } - GROUP pethMainPseGroup - DESCRIPTION - "The pethMainPseGroup is mandatory for PSE systems - that implement a main power supply." - GROUP pethMainPowerNotificationGroup - DESCRIPTION - "The pethMainPowerNotificationGroup is mandatory for - PSE systems that implement a main power supply." - ::= { pethCompliances 1 } - -pethPsePortGroup OBJECT-GROUP - OBJECTS { - pethPsePortAdminEnable, - pethPsePortPowerPairsControlAbility, - pethPsePortPowerPairs, - pethPsePortDetectionStatus, - pethPsePortPowerPriority, - pethPsePortMPSAbsentCounter, - pethPsePortInvalidSignatureCounter, - pethPsePortPowerDeniedCounter, - pethPsePortOverLoadCounter, - pethPsePortShortCounter, - pethPsePortType, - pethPsePortPowerClassifications - } - STATUS current - DESCRIPTION - "PSE Port objects." - ::= { pethGroups 1 } - -pethMainPseGroup OBJECT-GROUP - OBJECTS { - pethMainPsePower, - pethMainPseOperStatus, - pethMainPseConsumptionPower, - pethMainPseUsageThreshold - } - STATUS current - DESCRIPTION - "Main PSE Objects. " - ::= { pethGroups 2 } - -pethNotificationControlGroup OBJECT-GROUP - OBJECTS { - pethNotificationControlEnable - } - STATUS current - DESCRIPTION - "Notification Control Objects. " - ::= { pethGroups 3 } - -pethPsePortNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { pethPsePortOnOffNotification} - STATUS current - DESCRIPTION "Pse Port Notifications." - ::= { pethGroups 4 } - - pethMainPowerNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { pethMainPowerUsageOnNotification, - pethMainPowerUsageOffNotification} - STATUS current - DESCRIPTION "Main PSE Notifications." - ::= { pethGroups 5 } - -END - diff --git a/mibs/orig/PowerNet-MIB b/mibs/orig/PowerNet-MIB deleted file mode 100644 index 8254e81..0000000 --- a/mibs/orig/PowerNet-MIB +++ /dev/null @@ -1,78619 +0,0 @@ --- ************************************************************************* --- AMERICAN POWER CONVERSION PowerNet-MIB --- ************************************************************************* --- Copyright (c) 2016 American Power Conversion, Inc. --- PowerNet is a Trademark of American Power Conversion Corp. --- --- Title: APC TOP LEVEL PowerNet MIB --- --- Version : 4.2.1 --- --- Generated by script: tomib.awk --- --- Input File: powernetPS.mib --- --- Created: Monday, November, 07, 2016 --- --- Revision History: --- ************************************************************************* - --- - v3.2.0 Added functionality for MasterSwitch Plus --- - v3.3.0 Added functionality for MX28B (dcDM3) and 3-phase UPS --- - v3.3.2 New traps for Symmetra PX UPS --- 07/15/01 - v3.4.0 Added transfer switch --- - v3.4.3 Added functionality for External and Integrated Environmental Monitor --- 06/14/02 - v3.4.4 Added dcmim2(Siemens) branch, Battery Manager(Reading) traps, and --- Psx Traps for PDU and RM-PDU and Netlock branch/traps --- 12/13/02 - v3.5.0 netlock - Initial support for netlock (nl). Traps 261-265 added. --- rPDU - Initial support for rPDU. Traps 266-283 added. --- rARU - Initial support for rARU. --- gateway - Initial support for gateway (gw). Traps 230-260, 284-297 added. --- ups - upsSyncCtrlGroup and upsState sections added. --- 02/19/03 - v3.6.0 ups - UpsOutletGroups section added. Traps 298-299 added. --- smw - Traps 300-305 added. --- rPDU - General OID description cleanups. --- gw - Updated SNMP support for gw. --- 05/21/03 - v3.6.1 ups - Updated SNMP support for ups. --- ems - Environmental Management System OIDs renamed from gateway (gw). --- raru - Updated SNMP support for raru. --- 06/13/03 - v3.6.3 airFM - Initial support for airFM. Traps 306-311 added. --- nl - Traps 261-265 removed. --- 11/26/03 - v3.6.4 xPDU - Initial support for xPDU. Traps 312-344 added. --- airPA - Initial support for airPA. Traps 306-311 modified for airPA use. --- airFM - AirFMStatus OIDs cleaned up. --- 03/19/04 - v3.6.5 rPDU - Updated SNMP support for rPDU. --- airFM - AirFMGroup section added. --- 05/13/04 - v3.6.6 ups - Added several upsAdvBattery OIDs. --- ems - Added emsStatusHardwareStatus and emsHardwareState traps 345-346. --- aru - Trap 228 redefined to aruDeviceConfigChange. --- 08/04/04 - v3.6.7 ups - Added upsAdvConfigNumExternalBatteries and --- upsAdvConfigSimpleSignalShutdowns. --- ce - Custom Event traps 347-352 added. --- 11/22/04 - v3.6.8 ems - Many emsProbeConfig and emsProbeStatus OIDs added. --- ups - Traps 353-358 added. --- env - Traps 359-374 added. --- 01/26/05 - v3.6.9 battman - Initial support for battman, traps 375-380 added. --- xATS - Initial support for xATS, traps 381-478 added. --- generator - Initial support for generator. --- rPDU - Trap edits. --- xPDU - Trap edits. --- 05/26/05 - v3.7.0 consolePortServer - Initial support for consolePortServer (cpsAP930x). --- xPDU - Cleaned up many descriptions. --- xATS - Cleaned up many descriptions. --- ups - Added several upsAdvConfig OIDs. --- 09/28/05 - v3.8.0 modEnvMgr - Initial support for modEnvMgr (mem). --- rARU - Added functionality for Gen 2 ARU. --- ups/aru/mem - Traps 500-569 added. --- all - General cleanup on typos and spelling errors. --- 01/04/06 - v3.8.1 rARU - Added functionality for Gen 2 ARU --- 02/22/06 - v3.8.2 accessControl - Initial support for accessControl. --- Traps 570-592 added. --- accessPX - Initial support for accessPX. --- airIR - Initial support for airIR and airIRAlarms. --- airIRRC - Initial support for airIRRC. --- 05/24/06 - v3.8.4 apcLocalDisplay - Initial support for apcLocalDisplay. --- ups - UpsAdvOutputRedundancy, upsAdvOutputKVACapacity, --- upsAdvConfigBasicSignalLowBatteryDuration, and --- upsAdvConfigBypassPhaseLockRequired OIDs added. --- UpsAdvConfigMinReturnRuntime SYNTAX changed. --- UPS trap numbers 600-623 added. --- em - New emConfigProbe, emConfigContact, emStatusProbe OIDs added. --- iem - New iemConfigProbe, iemConfigContact, iemStatusProbe OIDs added. --- 08/31/06 - v3.8.5 airIRSC - Initial support for airIRSC. --- XPDU - XPDUBranchBreaker OIDs and xPDUBranchCurrent traps added. --- 11/03/06 - v3.8.6 rPDU - Updated SNMP support for rPDU. --- accessPX - accessPXConfigCardFormat OID added. --- airIRSC - airIRSCUnitStatusCompressor added. --- 01/03/07 - v3.8.7 airIRRP - Initial support for airIRRP100 and airIRRP500. --- 04/06/07 - v3.8.8 battMan - Updated SNMP support for Battery Manager, --- battManConfigApplication OID deprecated. --- airIRRP - Added HeatAssistEnable to airIRRP100 and airIRRP500. --- ups - Added several upsDiagSubSys OIDs. --- iem - Added iemStatusProbeLocation OID. --- all - Cleaned up version history section. --- 12/19/07 - v3.9.1 airFM - Added full SNMP support, deprecating some existing OIDs in --- favor of new structure. --- 12/19/07 - v3.9.2 Added new OIDs for isxModularDistribution, isxModularPdu, airInRoomPerimeter --- airIRGen2, symmetraPX IDs, isxServers IDs, upsAdvConfig, upsDiagSubSysNetworkComCard, --- memInputsCommStatus, airIRRP100GroupSetpoints. Added new SNMP Traps for --- ISX Modular Distribution, and xATS. --- 08/13/08 - v3.9.3 Added new OIDs for UPS HighPrec OIDs: --- upsHighPrecBattery, upsHighPrecInput, and upsHighPrecOutput. --- Added new OIDs for the 10kW the AIR IR Gen2: --- airIRG2RDT2ConfigUnitRoleOverride, airIRG2RDT2RunHoursUnit, --- airIRG2GroupConfigNumberofBackupUnits, airIRG2GroupConfigRuntimeBalancingEnable, --- and airIRG2GroupConfigLoadAssistEnable for use by 10kW application. --- Added new traps apcInternalCommunicationFault and apcInternalCommunicationFaultCleared --- for use by the SUMX application. --- Updated descriptions in existing OIDs. --- 09/25/08 - v3.9.4 Added new OIDs for Symmetra PX: --- upsParallelSystem, upsPhysicalLayout, upsAdvConfigMainsSetting, upsAdvConfigACWiringSetting, --- upsAdvConfigUpperOutputVoltTolerance, upsAdvConfigLowerOutputVoltTolerance, upsAdvConfigUpperBypassVoltTolerance --- upsAdvConfigLowerBypassVoltTolerance, upsAdvConfigOutofSyncBypassTransferDelay, upsAdvTestDiagnosticTime --- upsAdvTestDiagnosticDay, upsDiagSwitchGearBypassInputSwitchStatus, upsDiagSubFeedBreakerTable, --- upsDiagSubFeedBreakerTable, upsSideCarFrameLayoutTable, upsPowerFrameLayoutTable --- Added new OIDs for UPSs: --- upsBasicSystemStatus, upsAdvControlFlashAndBeep (appended new list options) --- Added new OIDs for the AC RP10kW: --- airIRG2RDT2ConfigUnitIdleOnCoolFail --- Added new OID for isxModularPDU device: --- isxModularPduDeviceTransformerPresent (appended new list option) --- 02/24/09 - v3.9.5 Added new OIDs for the UPS Integrated ATS product, Air IRSC product, added new Traps for UPS support --- and fixed MIB compilier warnings. --- 02/24/09 - v3.9.6 Added new Traps and mtrapargs for the ISXC Trap Notification support. --- 09/18/09 - v3.9.8 Added new OIDs for the InRoom C7000 Air product. --- 04/14/10 - v3.9.9 Added new rPDU2 device and modified some rPDU OIDs. --- 06/22/10 - v4.0.0 Added traps 638 through 651 to support ATS. --- Updated control OIDs for rPDU2g --- Updates to support PX100kW UPS. --- Added traps 756 and 757 to support PX100kW UPS. --- Added upsAdvBattery, upsHighPrecBattery, and upsDiagBattery OIDs to support PX250kW/PX500kW UPS. --- 06/30/10 - v4.0.1 Added new OID's upsAdvBatteryFullCapacity, upsAdvInputNominalFrequency, upsAdvInputNominalVoltage, --- upsAdvInputBypassNominalFrequency, upsAdvInputBypassNominalVoltage, upsBasicSystemInternalTemperature, --- upsAdvOutputNominalFrequency, upsAdvOutputActivePower and upsAdvOutputApparentPower. --- Added traps 734 to 739 to support Galaxy 300 and Galaxy 7000 UPS. --- Added SyOid's galaxy300UPS10kVA33, galaxy300UPS15kVA33, galaxy300UPS20kVA33, --- galaxy300UPS30kVA33, galaxy300UPS40kVA33, galaxy300UPS10kVA31, galaxy300UPS15kVA31, --- galaxy300UPS20kVA31 and galaxy300UPS30kVA31,galaxy7000UPS200kVA,galaxy7000UPS250kVA, --- galaxy7000UPS300kVA,galaxy7000UPS400kVA,galaxy7000UPS500kVA,galaxy7000SSC800kVA, --- galaxy7000SSC1200kVA and galaxy7000SSC2000kVA. --- 10/27/10 - v4.0.2 Added Idle on Cool Fail and Fan Speed Control OIDs for the InRow ACRC. --- Added new OID's for Odin UPS upsAdvInputStatisticsTable, upsAdvInputApparentPower, --- upsAdvInputVoltageTHD, upsAdvInputBypassVoltageTHD, upsAdvInputPeakCurrent, upsAdvInputBypassPeakCurrent, --- upsAdvOutputStatisticsTable, upsAdvOutputPeakCurrent, upsAdvOutputCurrentTHD, upsAdvOutputCrestFactor, --- upsAdvStateTotaltimeonbattery, upsAdvStateTotaltimeonbypass, upsAdvStateTotaltimeonNormal, --- upsAdvStateNumberoftimesonbattery, upsAdvStateNumberoftimesbypass, upsAdvStateNumberoftimesNormal, --- subfeedBreakerUpperAcceptPowerCritical, upsParallelInputMaximumCurrent, upsParallelTotalOutputPower, --- upsParallelTotalOutputApparentPower, upsParallelInputCurrent, upsParallelInputActivePower, --- upsParallelInputApparentPower, upsParallelInputVoltage, upsParallelInputMaxVoltage, --- upsParallelInputMaxCurrent, upsParallelInputTotalActivePower, upsParallelInputTotalApparentPower, --- upsParallelOutputCurrent, upsParallelOutputLoad, upsParallelOutputPercentLoad, upsParallelOutputPower, --- upsParallelOutputApparentPower, upsParallelDiagSubSysBreakerStatus, upsParallelDiagSubSysBreakerName --- and upsParallelOutputTotalPercentLoad. --- Modified the OID upsAdvConfigOutputFreqRange and upsParallelSysRedundancy. --- 01/13/11 - v4.0.3 Added new oids, upsHighPrecOutputEfficiency and upsHighPrecOutputEnergyUsage. --- Added green mode for bit 51 of upsBasicStateOutputState. --- Added traps 758 to 763 to support UPS firmware update. --- Deprecated all OIDs off branch mfiletransfer --- Added rPDU2 Metered Outlet Data --- 08/17/11 - v4.0.4 Updated several rPDU2 and rPDU OIDs. --- 12/07/11 - v4.0.5 Added new OID's for SYPX upsPhaseOutputPowerFactor and symmetraPxDisplay. --- Added SYS OID's for different Caphorn models galaxy5000UPS20KVA, galaxy5000UPS30KVA, galaxy5000UPS40KVA --- galaxy5000UPS50KVA, galaxy5000UPS60KVA , galaxy5000UPS80KVA, galaxy5000UPS100KVA, galaxy5000UPS120KVA --- galaxy5000UPS130KVA, galaxy5500UPS20KVA, galaxy5500UPS30KVA, galaxy5500UPS40KVA, galaxy5500UPS50KVA --- galaxy5500UPS60KVA, galaxy5500UPS80KVA, galaxy5500UPS100KVA, galaxy5500UPS120KVA, galaxy5500UPS130KVA --- and new OID upsAdvStateEcomode --- 06/05/12 - v4.0.6 Added new OID rPDUIdentDeviceLineToNeutralVoltage for AP7823 Rack PDU. --- 06/20/12 - v4.0.6 Added new rPDU2Group OID table for AP84xx, AP86xx, AP88xx, AP89xx Rack PDUs. --- 08/10/12 - v4.0.6 Added new OIDs for SYPX 250/500 upsAdvConfigWarningAlarmDelay, upsAdvConfigInformationalAlarmDelay, upsDiagSwitchGearInstallationLoadPct, --- upsParallelOutputActivePowerTable,upsParallelSysSwitchGearInstallationLoadPct, upsParallelSysRedundancyStatus and upsParallelSysName. --- Modified the description for upsBasicBatteryLastReplaceDate and bit 51 of upsBasicStateOutputState. --- Updated upsBasicOutputStatus and upsBasicSystemStatus. --- 08/10/12 - v4.0.6 Added SYS OIDs for different Caphorn models galaxy9000UPS, galaxy9000SSC, galaxy9000UPSWithSSC, galaxy9000FreqConverter, eps6000UPS, --- eps6000SSC, eps6000UPSWithSSC, eps6000FreqConverter, eps7000UPS, eps7000SSC, eps7000UPSWithSSC, --- eps7000FreqConverter, eps8000UPS, eps8000SSC, eps8000UPSWithSSC, eps8000FreqConverter. --- Modified the description for bits 53 to 56 of upsBasicStateOutputState. --- 02/22/13 -v4.0.8 Added OIDs upsAdvBatteryInternalSKU, upsAdvBatteryExternalSKU, upsAdvBatteryRecommendedReplaceDate, --- upsAdvConfigGreenMode, upsAdvConfigLCDLocalLanguage, upsAdvConfigLCDLockOut, --- upsAdvConfigChargerRate, and upsAdvConfigBatterySelection for the SUMX application. --- 04/10/13 -v4.0.9 Added new SYS OID for sPDU masterSwitchsPDU --- 10/18/13 -v4.1.0 Added new cooling section of OIDs for second generation cooling products. --- 02/17/14 -v4.1.1 Added the OIDs for Valhal(Galaxy VM)UPS. --- 08/11/14 -v4.1.2 Added upsHighPrecBatteryPacks category. --- Added upsHighPrecInputBypassVoltage and upsHighPrecInputBypassFrequency OIDs. --- Added traps upsLocalDisplayButtonFault, upsLocalDisplayButtonFaultCleared, upsNeedsFactorySetupFault, --- upsNeedsFactorySetupFaultCleared, upsEPOActive, upsEPOActiveCleared, upsFirmwareMismatch, upsFirmwareMismatchCleared, --- upsOscillatorFailed, and upsOscillatorFailedCleared --- Updated the description for upsHighPrecOutputEfficiency to display all currently defined error conditions. --- 11/25/14 -v4.1.4 Changes for IRRP100 and IRRP500: --- 1.New OIDs added to support Active Flow Controller: --- airIRRP100GroupStatusActiveFlowControlStatus, airIRRP100GroupSetpointsActiveFlowControlBias, airIRRP100GroupConfigNumberOfActiveFlowControllers, --- airIRRP100GroupConfigActiveFlowControllerLampTest, airIRRP100GroupConfigAltitudeUS, airIRRP100GroupConfigAltitudeMetric, --- airIRRP500GroupStatusActiveFlowControlStatus, airIRRP500GroupSetpointsActiveFlowControlBias, airIRRP500GroupConfigNumberOfActiveFlowControllers, --- airIRRP500GroupConfigActiveFlowControllerLampTest, airIRRP500GroupConfigAltitudeUS, airIRRP500GroupConfigAltitudeMetric. --- 2.Updated OIDs airIRRP100GroupConfigConfigurationType and airIRRP500GroupConfigConfigurationType to support CACS strategy. --- 3.Added OIDs airIRRP100UnitConfigSecondaryPowerFeedCapability and airIRRP500UnitConfigSecondaryPowerFeedCapability --- to support secondary power feed capability. --- 4.Added OIDs airIRRP100UnitConfigIdleOnCoolFail and airIRRP500UnitConfigIdleOnCoolFail to support Idle on Cool Fail setting. --- 5.Added OIDs airIRRP100GroupStatusDewPointTempUS, airIRRP100GroupStatusDewPointTempMetric, airIRRP500GroupStatusDewPointTempUS --- and airIRRP500GroupStatusDewPointTempMetric to support the group dew point temperature. --- 6.Added OIDs airIRRP100UnitStatusLeakSensor and airIRRP500UnitStatusLeakSensor to support leak sensor status. --- 05/06/15 -v4.1.5 Added configurable contact OID rPDU2DeviceConfigContact. --- Added enums for the chargerSpotmode, inverterSpotmode state in upsBasicOutputStatus OID and StaticBypassStandby state in the upsBasicSystemStatus OID. --- Added new OIDs to support Active Flow Controller for airIRSC: --- airIRSCGroupConfigNumberOfActiveFlowControllers, airIRSCGroupConfigActiveFlowControllerLampTest, --- airIRSCGroupStatusActiveFlowControlStatus, airIRSCGroupSetpointsActiveFlowControlBias, airIRSCUnitStatusLeakSensor --- 07/13/15 -v4.1.6 Changes for airIR Gen2 RD: --- 1. Updated airIRG2GroupConfigConfigurationType to support CACS strategy. --- 2. Added airIRG2RDT2StatusLeakSensor to support leak sensor status. --- 3. Added OIDs to support Active Flow Controller: --- airIRG2GroupStatusActiveFlowControlStatus,airIRG2GroupSetpointsActiveFlowControlBias,airIRG2GroupConfigNumberOfActiveFlowControllers, --- airIRG2GroupConfigActiveFlowControllerLampTest,airIRG2GroupConfigAltitudeUS,airIRG2GroupConfigAltitudeMetric. --- 08/05/15 -v4.1.7 Changes for SUMX and SY: --- 1. Added upsAdvConfigBatteryHealthAlarmWarningTime and upsAdvConfigBatteryHealthAlarmSleepTime OIDs. --- 2. Added upsDCOutput OIDs to support UPSes with DC outputs --- 3. Added upsOnBatteryDueToFault and upsOnBatteryDueToFaultCleared for Symmetra UPSes. --- 04/27/16 -v4.1.8 Changes for Galaxy VX: --- 1. Added SYSOIDs for various models of Galaxy VX galaxyVXUPS500kVA, galaxyVXUPS625kVA, galaxyVXUPS750kVA, galaxyVXUPS1000kVA, --- galaxyVXUPS1250kVA and galaxyVXUPS1500kVA --- 2. Added New OIDs upsAdvInputEnergyUsage, upsAdvOutputEnergyUsage, upsDiagnosticPowerCabinet and upsDiagSwitchgearAmbientTemperature. --- 3. Replaced the options "batteryBreaker1" and "batteryBreaker2" from "switchgearBreakerType" in OID upsDiagSwitchGearBreakerTable with --- "batteryBreaker" and "bypassBackFeedBreaker". --- 05/11/16 -v4.1.8 Added SYSOID for Air Economizer. --- 07/01/16 -v4.1.9 Added support for PowerChute Network Shutdown. --- 08/18/16 -v4.2.0 Added description "Minor or Environment Alarm" for bit 60 of OID upsBasicStateOutputState. --- 09/08/16 -v4.2.0 Added support for AP7xxxB series Rack PDUs --- 09/08/16 -v4.2.0 Added the following tables for NB250: --- 1.emsInputStateSensorConfig, emsInputStateSensorStatus, memInputStateSensors --- 2.Added wireless entry under environmentalMonitor. --- 09/30/16 -v4.2.1 Changes for SUMX: --- Added upsAdvConfigSignalFlashVoltage and upsAdvConfigBatteryTemperatureCompensation. --- Added upsIntegratedUIO and subtree upsOutputRelays. --- Added configuration oids for universal input / output ports and associated sensors. --- Added upsHighPrecBatteryHealth. --- Added upsOutletGroupStatusGroupFullState in upsOutletGroupStatusTable. --- Added trap for temporary bypass. --- Updated fault list for upsDCOutputStatusAbnormalConditions. --- --- ******************************************************************************************** --- ******************************************************************************************** --- PowerNet-MIB { iso org(3) dod(6) internet(1) private(4) --- enterprises(1) apc(318) } - -PowerNet-MIB DEFINITIONS ::= BEGIN - -IMPORTS - enterprises, IpAddress, Gauge, TimeTicks FROM RFC1155-SMI - DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212 - TRAP-TYPE FROM RFC-1215 - Integer32, Unsigned32 FROM SNMPv2-SMI; --- IMPORTS End - -apc OBJECT IDENTIFIER ::= { enterprises 318 } - -products OBJECT IDENTIFIER ::= { apc 1 } -apcmgmt OBJECT IDENTIFIER ::= { apc 2 } - -hardware OBJECT IDENTIFIER ::= { products 1 } -software OBJECT IDENTIFIER ::= { products 2 } -system OBJECT IDENTIFIER ::= { products 3 } -experimental OBJECT IDENTIFIER ::= { products 4 } - -mconfig OBJECT IDENTIFIER ::= { apcmgmt 1 } -mcontrol OBJECT IDENTIFIER ::= { apcmgmt 2 } -mtrapargs OBJECT IDENTIFIER ::= { apcmgmt 3 } -mfiletransfer OBJECT IDENTIFIER ::= { apcmgmt 4 } - -mconfigClock OBJECT IDENTIFIER ::= { mconfig 6 } - -mfiletransferStatus OBJECT IDENTIFIER ::= { mfiletransfer 1 } -mfiletransferConfig OBJECT IDENTIFIER ::= { mfiletransfer 2 } -mfiletransferControl OBJECT IDENTIFIER ::= { mfiletransfer 3 } - -mfiletransferConfigSettings OBJECT IDENTIFIER ::= { mfiletransferConfig 1 } -mfiletransferConfigTFTP OBJECT IDENTIFIER ::= { mfiletransferConfig 2 } -mfiletransferConfigFTP OBJECT IDENTIFIER ::= { mfiletransferConfig 3 } - -ups OBJECT IDENTIFIER ::= { hardware 1 } -measureUps OBJECT IDENTIFIER ::= { hardware 2 } -miniSNMPadapter OBJECT IDENTIFIER ::= { hardware 3 } -masterswitch OBJECT IDENTIFIER ::= { hardware 4 } -masterswitchVM OBJECT IDENTIFIER ::= { hardware 5 } -masterswitchMSP OBJECT IDENTIFIER ::= { hardware 6 } -dcDM3 OBJECT IDENTIFIER ::= { hardware 7 } -automaticTransferSwitch OBJECT IDENTIFIER ::= { hardware 8 } -dc2 OBJECT IDENTIFIER ::= { hardware 9 } -environmentalMonitor OBJECT IDENTIFIER ::= { hardware 10 } -netlock OBJECT IDENTIFIER ::= { hardware 11 } -rPDU OBJECT IDENTIFIER ::= { hardware 12 } -airConditioners OBJECT IDENTIFIER ::= { hardware 13 } -rARU OBJECT IDENTIFIER ::= { hardware 14 } -xPDU OBJECT IDENTIFIER ::= { hardware 15 } -battMan OBJECT IDENTIFIER ::= { hardware 16 } -xATS OBJECT IDENTIFIER ::= { hardware 17 } -generator OBJECT IDENTIFIER ::= { hardware 18 } -consolePortServer OBJECT IDENTIFIER ::= { hardware 19 } -accessControl OBJECT IDENTIFIER ::= { hardware 20 } -apcLocalDisplay OBJECT IDENTIFIER ::= { hardware 21 } -isxModularDistribution OBJECT IDENTIFIER ::= { hardware 22 } -isxModularPdu OBJECT IDENTIFIER ::= { hardware 23 } - - -universalInputOutput OBJECT IDENTIFIER ::= { hardware 25 } - -rPDU2 OBJECT IDENTIFIER ::= { hardware 26 } - - -cooling OBJECT IDENTIFIER ::= { hardware 27 } - - -powerNetSubAgent OBJECT IDENTIFIER ::= { software 1 } - -struxureWareOperations OBJECT IDENTIFIER ::= { software 2 } - -powerChuteNetworkShutdown OBJECT IDENTIFIER ::= { software 3 } - - -struxureWareOperationsStatus OBJECT IDENTIFIER ::= { struxureWareOperations 1 } - -powerNetSoftwareSystem OBJECT IDENTIFIER ::= { powerNetSubAgent 1 } -powerNetSoftwareConfig OBJECT IDENTIFIER ::= { powerNetSubAgent 2 } - -backUPS OBJECT IDENTIFIER ::= { system 1 } -smartUPS OBJECT IDENTIFIER ::= { system 2 } -matrixUPS OBJECT IDENTIFIER ::= { system 3 } -masterSwitch OBJECT IDENTIFIER ::= { system 4 } -symmetraUPS OBJECT IDENTIFIER ::= { system 5 } -dp100E OBJECT IDENTIFIER ::= { system 6 } -dp300E OBJECT IDENTIFIER ::= { system 7 } -monitors OBJECT IDENTIFIER ::= { system 8 } -redundantSwitch OBJECT IDENTIFIER ::= { system 9 } -dcPower OBJECT IDENTIFIER ::= { system 10 } -automaticXferSwitch OBJECT IDENTIFIER ::= { system 11 } -netLock OBJECT IDENTIFIER ::= { system 12 } -symmetra3PhaseUPS OBJECT IDENTIFIER ::= { system 13 } -networkAir OBJECT IDENTIFIER ::= { system 14 } -infraStruXurePDU OBJECT IDENTIFIER ::= { system 15 } -ais5000UPS OBJECT IDENTIFIER ::= { system 16 } -smartUPS3Phase OBJECT IDENTIFIER ::= { system 17 } -battManager OBJECT IDENTIFIER ::= { system 18 } -infraStruXureATS OBJECT IDENTIFIER ::= { system 19 } -conPortServ OBJECT IDENTIFIER ::= { system 20 } -gutor OBJECT IDENTIFIER ::= { system 21 } -accControl OBJECT IDENTIFIER ::= { system 22 } -symmetraPX OBJECT IDENTIFIER ::= { system 23 } -isxModDistribution OBJECT IDENTIFIER ::= { system 24 } -isxServers OBJECT IDENTIFIER ::= { system 25 } -smartUPS2 OBJECT IDENTIFIER ::= { system 27 } -galaxy OBJECT IDENTIFIER ::= { system 28 } - -eps OBJECT IDENTIFIER ::= { system 30 } - -pcns OBJECT IDENTIFIER ::= { system 31 } - - -battManIdent OBJECT IDENTIFIER ::= { battMan 1 } -battManSystemCalib OBJECT IDENTIFIER ::= { battMan 2 } -battManUnitCalib OBJECT IDENTIFIER ::= { battMan 3 } -battManStringCalib OBJECT IDENTIFIER ::= { battMan 4 } -battManBatteryCalib OBJECT IDENTIFIER ::= { battMan 5 } -battManConfig OBJECT IDENTIFIER ::= { battMan 6 } -battManAlarm OBJECT IDENTIFIER ::= { battMan 7 } -battManSystemStatus OBJECT IDENTIFIER ::= { battMan 8 } -battManStringStatus OBJECT IDENTIFIER ::= { battMan 9 } -battManBatteryStatus OBJECT IDENTIFIER ::= { battMan 10 } -battManInputContactStatus OBJECT IDENTIFIER ::= { battMan 11 } -battManControl OBJECT IDENTIFIER ::= { battMan 12 } -battManTestResults OBJECT IDENTIFIER ::= { battMan 13 } -battManUnitStatus OBJECT IDENTIFIER ::= { battMan 14 } - -xPDUIdent OBJECT IDENTIFIER ::= { xPDU 1 } -xPDUDevice OBJECT IDENTIFIER ::= { xPDU 2 } -xPDUACMonitoringPoint OBJECT IDENTIFIER ::= { xPDU 3 } -xPDUCircuitBreakers OBJECT IDENTIFIER ::= { xPDU 4 } -xPDUInputContacts OBJECT IDENTIFIER ::= { xPDU 5 } -xPDUOutputRelays OBJECT IDENTIFIER ::= { xPDU 6 } -xPDUMiscGroup OBJECT IDENTIFIER ::= { xPDU 7 } - -xPDUMainInput OBJECT IDENTIFIER ::= { xPDUACMonitoringPoint 1 } -xPDUBypassInput OBJECT IDENTIFIER ::= { xPDUACMonitoringPoint 2 } -xPDUUPSInput OBJECT IDENTIFIER ::= { xPDUACMonitoringPoint 3 } -xPDUSystemOutput OBJECT IDENTIFIER ::= { xPDUACMonitoringPoint 4 } -xPDUGroundMonitorPoint OBJECT IDENTIFIER ::= { xPDUACMonitoringPoint 5 } - -xPDUSystemBreakers OBJECT IDENTIFIER ::= { xPDUCircuitBreakers 1 } -xPDUBranchBreakers OBJECT IDENTIFIER ::= { xPDUCircuitBreakers 2 } - -xATSIdent OBJECT IDENTIFIER ::= { xATS 1 } -xATSDevice OBJECT IDENTIFIER ::= { xATS 2 } -xATSSwitch OBJECT IDENTIFIER ::= { xATS 3 } -xATSACMonitoringPoint OBJECT IDENTIFIER ::= { xATS 4 } -xATSTesting OBJECT IDENTIFIER ::= { xATS 5 } -xATSInputContacts OBJECT IDENTIFIER ::= { xATS 6 } -xATSOutputRelays OBJECT IDENTIFIER ::= { xATS 7 } -xATSMisc OBJECT IDENTIFIER ::= { xATS 8 } - -xATSSwitchStatus OBJECT IDENTIFIER ::= { xATSSwitch 1 } -xATSSwitchSettings OBJECT IDENTIFIER ::= { xATSSwitch 2 } -xATSSwitchTimers OBJECT IDENTIFIER ::= { xATSSwitch 3 } -xATSSwitchBlockMap OBJECT IDENTIFIER ::= { xATSSwitch 4 } -xATSSwitchStatistics OBJECT IDENTIFIER ::= { xATSSwitch 5 } - -xATSSource1 OBJECT IDENTIFIER ::= { xATSACMonitoringPoint 1 } -xATSSource2 OBJECT IDENTIFIER ::= { xATSACMonitoringPoint 2 } -xATSSystemOutput OBJECT IDENTIFIER ::= { xATSACMonitoringPoint 3 } - -xATSTestingStatus OBJECT IDENTIFIER ::= { xATSTesting 1 } -xATSTestingResults OBJECT IDENTIFIER ::= { xATSTesting 2 } -xATSTestingSchedule OBJECT IDENTIFIER ::= { xATSTesting 3 } -xATSTestingSimulatePowerFail OBJECT IDENTIFIER ::= { xATSTesting 4 } - -xATSGenerator OBJECT IDENTIFIER ::= { generator 1 } - -xATSGeneratorIdent OBJECT IDENTIFIER ::= { xATSGenerator 1 } -xATSGeneratorStatus OBJECT IDENTIFIER ::= { xATSGenerator 2 } -xATSGeneratorAdvStatus OBJECT IDENTIFIER ::= { xATSGenerator 3 } -xATSGeneratorOutput OBJECT IDENTIFIER ::= { xATSGenerator 4 } -xATSGeneratorSettings OBJECT IDENTIFIER ::= { xATSGenerator 5 } -xATSGeneratorService OBJECT IDENTIFIER ::= { xATSGenerator 6 } -xATSGeneratorFuelSystem OBJECT IDENTIFIER ::= { xATSGenerator 7 } - -cpsAP930x OBJECT IDENTIFIER ::= { consolePortServer 1 } - -cpsAP930xSys OBJECT IDENTIFIER ::= { cpsAP930x 1 } -cpsAP930xConf OBJECT IDENTIFIER ::= { cpsAP930x 2 } -cpsAP930xInfo OBJECT IDENTIFIER ::= { cpsAP930x 3 } -cpsAP930xAdm OBJECT IDENTIFIER ::= { cpsAP930x 4 } - - - -smartUPS250 OBJECT IDENTIFIER ::= { smartUPS 1 } -smartUPS400 OBJECT IDENTIFIER ::= { smartUPS 2 } -smartUPS600 OBJECT IDENTIFIER ::= { smartUPS 3 } -smartUPS900 OBJECT IDENTIFIER ::= { smartUPS 4 } -smartUPS1250 OBJECT IDENTIFIER ::= { smartUPS 5 } -smartUPS2000 OBJECT IDENTIFIER ::= { smartUPS 6 } - -smartUPS450 OBJECT IDENTIFIER ::= { smartUPS 7 } -smartUPS700 OBJECT IDENTIFIER ::= { smartUPS 8 } -smartUPS1000 OBJECT IDENTIFIER ::= { smartUPS 9 } -smartUPS1400 OBJECT IDENTIFIER ::= { smartUPS 10 } -smartUPS2200 OBJECT IDENTIFIER ::= { smartUPS 11 } -smartUPS3000 OBJECT IDENTIFIER ::= { smartUPS 12 } -smartUPS5000 OBJECT IDENTIFIER ::= { smartUPS 13 } -smartUPS7500 OBJECT IDENTIFIER ::= { smartUPS 14 } -smartUPS10000 OBJECT IDENTIFIER ::= { smartUPS 15 } -smartUPS1500 OBJECT IDENTIFIER ::= { smartUPS 16 } -smartUPS3000DSP OBJECT IDENTIFIER ::= { smartUPS 17 } -smartUPS5000DSP OBJECT IDENTIFIER ::= { smartUPS 18 } -smartUPS8000 OBJECT IDENTIFIER ::= { smartUPS 19 } - -matrixUPS3000 OBJECT IDENTIFIER ::= { matrixUPS 1 } -matrixUPS5000 OBJECT IDENTIFIER ::= { matrixUPS 2 } - -masterSwitchV1 OBJECT IDENTIFIER ::= { masterSwitch 1} -masterSwitchV2 OBJECT IDENTIFIER ::= { masterSwitch 2} -masterSwitchVM OBJECT IDENTIFIER ::= { masterSwitch 3} -masterSwitchMSP OBJECT IDENTIFIER ::= { masterSwitch 4} -masterSwitchrPDU OBJECT IDENTIFIER ::= { masterSwitch 5} -masterSwitchrPDU2 OBJECT IDENTIFIER ::= { masterSwitch 6} -masterSwitchsPDU OBJECT IDENTIFIER ::= { masterSwitch 7} -masterSwitchrPDUB OBJECT IDENTIFIER ::= { masterSwitch 8} - -symmetraUPS4kVA OBJECT IDENTIFIER ::= { symmetraUPS 1 } -symmetraUPS8kVA OBJECT IDENTIFIER ::= { symmetraUPS 2 } -symmetraUPS12kVA OBJECT IDENTIFIER ::= { symmetraUPS 3 } -symmetraUPS16kVA OBJECT IDENTIFIER ::= { symmetraUPS 4 } - -environmental OBJECT IDENTIFIER ::= { monitors 1 } -environmentalMgtSystem OBJECT IDENTIFIER ::= { monitors 2 } -emu2 OBJECT IDENTIFIER ::= { monitors 3 } -mem OBJECT IDENTIFIER ::= { monitors 4 } - -dm3 OBJECT IDENTIFIER ::= { dcPower 1 } -dcmim2 OBJECT IDENTIFIER ::= { dcPower 2 } - -symmetra3PhaseUPS40kVA OBJECT IDENTIFIER ::= { symmetra3PhaseUPS 1 } -symmetra3PhaseUPS60kVA OBJECT IDENTIFIER ::= { symmetra3PhaseUPS 2 } -symmetra3PhaseUPS80kVA OBJECT IDENTIFIER ::= { symmetra3PhaseUPS 3 } -symmetra3PhaseUPS20kVA OBJECT IDENTIFIER ::= { symmetra3PhaseUPS 4 } - -airFMSeries OBJECT IDENTIFIER ::= { networkAir 1 } -rackAirRemovalUnit OBJECT IDENTIFIER ::= { networkAir 2 } -airPASeries OBJECT IDENTIFIER ::= { networkAir 3 } -airIRSC100Series OBJECT IDENTIFIER ::= { networkAir 4 } -airIRRC100Series OBJECT IDENTIFIER ::= { networkAir 5 } -airIRRP100Series OBJECT IDENTIFIER ::= { networkAir 6 } -airIRRP500Series OBJECT IDENTIFIER ::= { networkAir 7 } -airIRRD100Series OBJECT IDENTIFIER ::= { networkAir 8 } -airInRoomPerimeter OBJECT IDENTIFIER ::= { networkAir 9 } -airACRC300Series OBJECT IDENTIFIER ::= { networkAir 10 } -airLESeries OBJECT IDENTIFIER ::= { networkAir 11 } -airIRRDU OBJECT IDENTIFIER ::= { networkAir 12 } -airEcoBreeze OBJECT IDENTIFIER ::= { networkAir 13 } -airLELSeries OBJECT IDENTIFIER ::= { networkAir 14 } -airACRC600Series OBJECT IDENTIFIER ::= { networkAir 15 } -airACRD600Series OBJECT IDENTIFIER ::= { networkAir 16 } -airEconomizer OBJECT IDENTIFIER ::= { networkAir 17 } - -ais5000UPS10kVA OBJECT IDENTIFIER ::= { ais5000UPS 1 } -ais5000UPS20kVA OBJECT IDENTIFIER ::= { ais5000UPS 2 } -ais5000UPS30kVA OBJECT IDENTIFIER ::= { ais5000UPS 3 } -ais5000UPS40kVA OBJECT IDENTIFIER ::= { ais5000UPS 4 } -ais5000UPS60kVA OBJECT IDENTIFIER ::= { ais5000UPS 5 } -ais5000UPS80kVA OBJECT IDENTIFIER ::= { ais5000UPS 6 } -ais5000UPS100kVA OBJECT IDENTIFIER ::= { ais5000UPS 7 } - -smartUPS3Phase10kVA OBJECT IDENTIFIER ::= { smartUPS3Phase 1 } -smartUPS3Phase15kVA OBJECT IDENTIFIER ::= { smartUPS3Phase 2 } -smartUPS3Phase20kVA OBJECT IDENTIFIER ::= { smartUPS3Phase 3 } -smartUPS3Phase30kVA OBJECT IDENTIFIER ::= { smartUPS3Phase 4 } -smartUPS3Phase40kVA OBJECT IDENTIFIER ::= { smartUPS3Phase 5 } - -galaxy7000UPS200kVA OBJECT IDENTIFIER ::= { galaxy 1 } -galaxy7000UPS250kVA OBJECT IDENTIFIER ::= { galaxy 2 } -galaxy7000UPS300kVA OBJECT IDENTIFIER ::= { galaxy 3 } -galaxy7000UPS400kVA OBJECT IDENTIFIER ::= { galaxy 4 } -galaxy7000UPS500kVA OBJECT IDENTIFIER ::= { galaxy 5 } -galaxy7000SSC800kVA OBJECT IDENTIFIER ::= { galaxy 6 } -galaxy7000SSC1200kVA OBJECT IDENTIFIER ::= { galaxy 7 } -galaxy7000SSC2000kVA OBJECT IDENTIFIER ::= { galaxy 8 } -galaxy300UPS10kVA33 OBJECT IDENTIFIER ::= { galaxy 9 } -galaxy300UPS15kVA33 OBJECT IDENTIFIER ::= { galaxy 10 } -galaxy300UPS20kVA33 OBJECT IDENTIFIER ::= { galaxy 11 } -galaxy300UPS30kVA33 OBJECT IDENTIFIER ::= { galaxy 12 } -galaxy300UPS40kVA33 OBJECT IDENTIFIER ::= { galaxy 13 } -galaxy300UPS10kVA31 OBJECT IDENTIFIER ::= { galaxy 14 } -galaxy300UPS15kVA31 OBJECT IDENTIFIER ::= { galaxy 15 } -galaxy300UPS20kVA31 OBJECT IDENTIFIER ::= { galaxy 16 } -galaxy300UPS30kVA31 OBJECT IDENTIFIER ::= { galaxy 17 } - -galaxy5000UPS20KVA OBJECT IDENTIFIER ::= { galaxy 18 } -galaxy5000UPS30KVA OBJECT IDENTIFIER ::= { galaxy 19 } -galaxy5000UPS40KVA OBJECT IDENTIFIER ::= { galaxy 20 } -galaxy5000UPS50KVA OBJECT IDENTIFIER ::= { galaxy 21 } -galaxy5000UPS60KVA OBJECT IDENTIFIER ::= { galaxy 22 } -galaxy5000UPS80KVA OBJECT IDENTIFIER ::= { galaxy 23 } -galaxy5000UPS100KVA OBJECT IDENTIFIER ::= { galaxy 24 } -galaxy5000UPS120KVA OBJECT IDENTIFIER ::= { galaxy 25 } -galaxy5000UPS130KVA OBJECT IDENTIFIER ::= { galaxy 26 } -galaxy5500UPS20KVA OBJECT IDENTIFIER ::= { galaxy 27 } -galaxy5500UPS30KVA OBJECT IDENTIFIER ::= { galaxy 28 } -galaxy5500UPS40KVA OBJECT IDENTIFIER ::= { galaxy 29 } -galaxy5500UPS50KVA OBJECT IDENTIFIER ::= { galaxy 30 } -galaxy5500UPS60KVA OBJECT IDENTIFIER ::= { galaxy 31 } -galaxy5500UPS80KVA OBJECT IDENTIFIER ::= { galaxy 32 } -galaxy5500UPS100KVA OBJECT IDENTIFIER ::= { galaxy 33 } -galaxy5500UPS120KVA OBJECT IDENTIFIER ::= { galaxy 34 } -galaxy5500UPS130KVA OBJECT IDENTIFIER ::= { galaxy 35 } - - - -galaxyVMUPS50kVA OBJECT IDENTIFIER ::= { galaxy 36 } -galaxyVMUPS60kVA OBJECT IDENTIFIER ::= { galaxy 37 } -galaxyVMUPS80kVA OBJECT IDENTIFIER ::= { galaxy 38 } -galaxyVMUPS90kVA OBJECT IDENTIFIER ::= { galaxy 39 } -galaxyVMUPS100kVA OBJECT IDENTIFIER ::= { galaxy 40 } -galaxyVMUPS110kVA OBJECT IDENTIFIER ::= { galaxy 41 } -galaxyVMUPS120kVA OBJECT IDENTIFIER ::= { galaxy 42 } -galaxyVMUPS130kVA OBJECT IDENTIFIER ::= { galaxy 43 } -galaxyVMUPS160kVA OBJECT IDENTIFIER ::= { galaxy 44 } -galaxyVMUPS180kVA OBJECT IDENTIFIER ::= { galaxy 45 } -galaxyVMUPS200kVA OBJECT IDENTIFIER ::= { galaxy 46 } -galaxyVMUPS225kVA OBJECT IDENTIFIER ::= { galaxy 47 } - - -galaxy9000UPS OBJECT IDENTIFIER ::= { galaxy 48 } -galaxy9000SSC OBJECT IDENTIFIER ::= { galaxy 49 } -galaxy9000UPSWithSSC OBJECT IDENTIFIER ::= { galaxy 50 } -galaxy9000FreqConverter OBJECT IDENTIFIER ::= { galaxy 51 } - - -galaxyVXUPS625kVA OBJECT IDENTIFIER ::= { galaxy 56 } -galaxyVXUPS750kVA OBJECT IDENTIFIER ::= { galaxy 57 } -galaxyVXUPS1000kVA OBJECT IDENTIFIER ::= { galaxy 58 } -galaxyVXUPS1250kVA OBJECT IDENTIFIER ::= { galaxy 59 } -galaxyVXUPS1500kVA OBJECT IDENTIFIER ::= { galaxy 60 } - - -galaxyVXUPS500kVA OBJECT IDENTIFIER ::= { galaxy 63 } - -eps6000UPS OBJECT IDENTIFIER ::= { eps 1 } -eps6000SSC OBJECT IDENTIFIER ::= { eps 2 } -eps6000UPSWithSSC OBJECT IDENTIFIER ::= { eps 3 } -eps6000FreqConverter OBJECT IDENTIFIER ::= { eps 4 } -eps7000UPS OBJECT IDENTIFIER ::= { eps 5 } -eps7000SSC OBJECT IDENTIFIER ::= { eps 6 } -eps7000UPSWithSSC OBJECT IDENTIFIER ::= { eps 7 } -eps7000FreqConverter OBJECT IDENTIFIER ::= { eps 8 } -eps8000UPS OBJECT IDENTIFIER ::= { eps 9 } -eps8000SSC OBJECT IDENTIFIER ::= { eps 10 } -eps8000UPSWithSSC OBJECT IDENTIFIER ::= { eps 11 } -eps8000FreqConverter OBJECT IDENTIFIER ::= { eps 12 } - - - -pcns4 OBJECT IDENTIFIER ::= { pcns 1 } - -pcnsIdent OBJECT IDENTIFIER ::= { powerChuteNetworkShutdown 1 } -pcnsNetworking OBJECT IDENTIFIER ::= { powerChuteNetworkShutdown 2 } -pcnsNMC OBJECT IDENTIFIER ::= { powerChuteNetworkShutdown 3 } -pcnsEvents OBJECT IDENTIFIER ::= { powerChuteNetworkShutdown 4 } -pcnsShutdown OBJECT IDENTIFIER ::= { powerChuteNetworkShutdown 5 } -pcnsAlarms OBJECT IDENTIFIER ::= { powerChuteNetworkShutdown 6 } - -pcnsLoggingLevel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..6)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Override the Root Logging level for PCNS. Possible Values: CLEAR, DEBUG" - ::= { powerChuteNetworkShutdown 7 } - - - -conPortServAP930x OBJECT IDENTIFIER ::= { conPortServ 1 } - -gutorPEW OBJECT IDENTIFIER ::= { gutor 1 } -gutorPDW OBJECT IDENTIFIER ::= { gutor 2 } -gutorWEW OBJECT IDENTIFIER ::= { gutor 3 } -gutorWDW OBJECT IDENTIFIER ::= { gutor 4 } -gutorSDC OBJECT IDENTIFIER ::= { gutor 5 } - -upsIdent OBJECT IDENTIFIER ::= { ups 1 } -upsBattery OBJECT IDENTIFIER ::= { ups 2 } -upsInput OBJECT IDENTIFIER ::= { ups 3 } -upsOutput OBJECT IDENTIFIER ::= { ups 4 } -upsConfig OBJECT IDENTIFIER ::= { ups 5 } -upsControl OBJECT IDENTIFIER ::= { ups 6 } -upsTest OBJECT IDENTIFIER ::= { ups 7 } -upsComm OBJECT IDENTIFIER ::= { ups 8 } -upsPhase OBJECT IDENTIFIER ::= { ups 9 } -upsSyncCtrlGroup OBJECT IDENTIFIER ::= { ups 10 } -upsState OBJECT IDENTIFIER ::= { ups 11 } -upsOutletGroups OBJECT IDENTIFIER ::= { ups 12 } -upsDiagnostics OBJECT IDENTIFIER ::= { ups 13 } -upsParallelSystem OBJECT IDENTIFIER ::= { ups 14 } -upsPhysicalLayout OBJECT IDENTIFIER ::= { ups 15 } -upsIntegratedATS OBJECT IDENTIFIER ::= { ups 16 } -upsDCOutput OBJECT IDENTIFIER ::= { ups 17 } -upsIntegratedUIO OBJECT IDENTIFIER ::= { ups 18 } - -upsBasicIdent OBJECT IDENTIFIER ::= { upsIdent 1 } -upsAdvIdent OBJECT IDENTIFIER ::= { upsIdent 2 } - -upsBasicBattery OBJECT IDENTIFIER ::= { upsBattery 1 } -upsAdvBattery OBJECT IDENTIFIER ::= { upsBattery 2 } -upsHighPrecBattery OBJECT IDENTIFIER ::= { upsBattery 3 } - -upsBasicInput OBJECT IDENTIFIER ::= { upsInput 1 } -upsAdvInput OBJECT IDENTIFIER ::= { upsInput 2 } -upsHighPrecInput OBJECT IDENTIFIER ::= { upsInput 3 } - -upsBasicOutput OBJECT IDENTIFIER ::= { upsOutput 1 } -upsAdvOutput OBJECT IDENTIFIER ::= { upsOutput 2 } -upsHighPrecOutput OBJECT IDENTIFIER ::= { upsOutput 3 } - -upsBasicConfig OBJECT IDENTIFIER ::= { upsConfig 1 } -upsAdvConfig OBJECT IDENTIFIER ::= { upsConfig 2 } - - -upsBasicControl OBJECT IDENTIFIER ::= { upsControl 1 } -upsAdvControl OBJECT IDENTIFIER ::= { upsControl 2 } - -upsBasicTest OBJECT IDENTIFIER ::= { upsTest 1 } -upsAdvTest OBJECT IDENTIFIER ::= { upsTest 2 } - -upsPhaseResetValues OBJECT IDENTIFIER ::= { upsPhase 1 } -upsPhaseInput OBJECT IDENTIFIER ::= { upsPhase 2 } -upsPhaseOutput OBJECT IDENTIFIER ::= { upsPhase 3 } - -upsSyncCtrlGroupConfig OBJECT IDENTIFIER ::= { upsSyncCtrlGroup 1 } -upsSyncCtrlGroupStatus OBJECT IDENTIFIER ::= { upsSyncCtrlGroup 2 } - -upsBasicState OBJECT IDENTIFIER ::= { upsState 1 } -upsAdvState OBJECT IDENTIFIER ::= { upsState 2 } - -upsOutletGroupStatus OBJECT IDENTIFIER ::= { upsOutletGroups 1 } -upsOutletGroupConfig OBJECT IDENTIFIER ::= { upsOutletGroups 2 } -upsOutletGroupControl OBJECT IDENTIFIER ::= { upsOutletGroups 3 } - -upsDiagnosticIM OBJECT IDENTIFIER ::= { upsDiagnostics 1 } -upsDiagnosticPowerModules OBJECT IDENTIFIER ::= { upsDiagnostics 2 } -upsDiagnosticBatteries OBJECT IDENTIFIER ::= { upsDiagnostics 3 } -upsDiagnosticSubsystem OBJECT IDENTIFIER ::= { upsDiagnostics 4 } -upsDiagnosticExternalDevices OBJECT IDENTIFIER ::= { upsDiagnostics 5 } -upsDiagnosticComBus OBJECT IDENTIFIER ::= { upsDiagnostics 6 } -upsDiagnosticPowerCabinet OBJECT IDENTIFIER ::= { upsDiagnostics 7 } - -upsDiagSwitchGear OBJECT IDENTIFIER ::= { upsDiagnosticExternalDevices 1 } -upsDiagMCCBBox OBJECT IDENTIFIER ::= { upsDiagnosticExternalDevices 2 } -upsDiagTransformer OBJECT IDENTIFIER ::= { upsDiagnosticExternalDevices 3 } - -upsDiagFlyWheel OBJECT IDENTIFIER ::= { upsDiagnosticExternalDevices 4 } - -upsOutputRelays OBJECT IDENTIFIER ::= { upsIntegratedUIO 1 } - - -mUpsEnviron OBJECT IDENTIFIER ::= { measureUps 1 } -mUpsContact OBJECT IDENTIFIER ::= { measureUps 2 } - -serialPort OBJECT IDENTIFIER ::= { miniSNMPadapter 1} - -serialPort1 OBJECT IDENTIFIER ::= { serialPort 1} -serialPort2 OBJECT IDENTIFIER ::= { serialPort 2} - -serialPort2Config OBJECT IDENTIFIER ::= { serialPort2 1} -serialPort2Control OBJECT IDENTIFIER ::= { serialPort2 2} - -sPDUIdent OBJECT IDENTIFIER ::= { masterswitch 1 } -sPDUMasterControl OBJECT IDENTIFIER ::= { masterswitch 2 } -sPDUMasterConfig OBJECT IDENTIFIER ::= { masterswitch 3 } -sPDUOutletControl OBJECT IDENTIFIER ::= { masterswitch 4 } -sPDUOutletConfig OBJECT IDENTIFIER ::= { masterswitch 5 } - -sPDUIdentVM OBJECT IDENTIFIER ::= { masterswitchVM 1 } -sPDUMasterControlVM OBJECT IDENTIFIER ::= { masterswitchVM 2 } -sPDUMasterConfigVM OBJECT IDENTIFIER ::= { masterswitchVM 3 } -sPDUMasterStatusVM OBJECT IDENTIFIER ::= { masterswitchVM 4 } -sPDUOutletControlVM OBJECT IDENTIFIER ::= { masterswitchVM 5 } -sPDUOutletConfigVM OBJECT IDENTIFIER ::= { masterswitchVM 6 } -sPDUOutletStatusVM OBJECT IDENTIFIER ::= { masterswitchVM 7 } - -sPDUIdentMSP OBJECT IDENTIFIER ::= { masterswitchMSP 1 } -sPDUMasterControlMSP OBJECT IDENTIFIER ::= { masterswitchMSP 2 } -sPDUMasterConfigMSP OBJECT IDENTIFIER ::= { masterswitchMSP 3 } -sPDUMasterStatusMSP OBJECT IDENTIFIER ::= { masterswitchMSP 4 } -sPDUOutletControlMSP OBJECT IDENTIFIER ::= { masterswitchMSP 5 } -sPDUOutletConfigMSP OBJECT IDENTIFIER ::= { masterswitchMSP 6 } -sPDUOutletStatusMSP OBJECT IDENTIFIER ::= { masterswitchMSP 7 } - -sPDUOutletConfigMSPall OBJECT IDENTIFIER ::= { sPDUOutletConfigMSP 1 } -sPDUOutletConfigMSPgs OBJECT IDENTIFIER ::= { sPDUOutletConfigMSP 2 } -sPDUOutletConfigMSPannun OBJECT IDENTIFIER ::= { sPDUOutletConfigMSP 3 } -sPDUOutletConfigMSPmups OBJECT IDENTIFIER ::= { sPDUOutletConfigMSP 4 } - -rPDUIdent OBJECT IDENTIFIER ::= { rPDU 1 } -rPDULoad OBJECT IDENTIFIER ::= { rPDU 2 } -rPDUOutlet OBJECT IDENTIFIER ::= { rPDU 3 } -rPDUPowerSupply OBJECT IDENTIFIER ::= { rPDU 4 } -rPDUStatus OBJECT IDENTIFIER ::= { rPDU 5 } - -rPDULoadDevice OBJECT IDENTIFIER ::= { rPDULoad 1 } -rPDULoadPhaseConfig OBJECT IDENTIFIER ::= { rPDULoad 2 } -rPDULoadStatus OBJECT IDENTIFIER ::= { rPDULoad 3 } -rPDULoadBankConfig OBJECT IDENTIFIER ::= { rPDULoad 4 } - -rPDUOutletDevice OBJECT IDENTIFIER ::= { rPDUOutlet 1 } -rPDUOutletPhase OBJECT IDENTIFIER ::= { rPDUOutlet 2 } -rPDUOutletControl OBJECT IDENTIFIER ::= { rPDUOutlet 3 } -rPDUOutletConfig OBJECT IDENTIFIER ::= { rPDUOutlet 4 } -rPDUOutletStatus OBJECT IDENTIFIER ::= { rPDUOutlet 5 } -rPDUOutletBank OBJECT IDENTIFIER ::= { rPDUOutlet 6 } - -rPDUPowerSupplyDevice OBJECT IDENTIFIER ::= { rPDUPowerSupply 1 } - -dm3Ident OBJECT IDENTIFIER ::= { dcDM3 1 } -dm3Config OBJECT IDENTIFIER ::= { dcDM3 2 } -dm3Status OBJECT IDENTIFIER ::= { dcDM3 3 } - -dm3IdentSystem OBJECT IDENTIFIER ::= { dm3Ident 1} - -dm3ConfigSystem OBJECT IDENTIFIER ::= { dm3Config 1 } -dm3ConfigLVD OBJECT IDENTIFIER ::= { dm3Config 2 } -dm3ConfigBattery OBJECT IDENTIFIER ::= { dm3Config 3 } -dm3ConfigPowerModules OBJECT IDENTIFIER ::= { dm3Config 4 } -dm3ConfigRelays OBJECT IDENTIFIER ::= { dm3Config 5 } -dm3ConfigDistribution OBJECT IDENTIFIER ::= { dm3Config 6 } - -dm3ConfigRectifier OBJECT IDENTIFIER ::= { dm3ConfigPowerModules 1 } -dm3ConfigConverter OBJECT IDENTIFIER ::= { dm3ConfigPowerModules 2 } - -dm3ConfigRectThresh OBJECT IDENTIFIER ::= { dm3ConfigRectifier 1 } -dm3ConfigRectAlarms OBJECT IDENTIFIER ::= { dm3ConfigRectifier 2 } - -dm3ConfigConvThresh OBJECT IDENTIFIER ::= { dm3ConfigConverter 1 } -dm3ConfigConvAlarms OBJECT IDENTIFIER ::= { dm3ConfigConverter 2 } - -dm3ConfigOutputRelays OBJECT IDENTIFIER ::= { dm3ConfigRelays 1 } -dm3ConfigInputRelays OBJECT IDENTIFIER ::= { dm3ConfigRelays 2 } - -dm3ConfigBreakers OBJECT IDENTIFIER ::= { dm3ConfigDistribution 1 } -dm3ConfigFuses OBJECT IDENTIFIER ::= { dm3ConfigDistribution 2 } - -dm3StatusSystem OBJECT IDENTIFIER ::= { dm3Status 1 } -dm3StatusAlarms OBJECT IDENTIFIER ::= { dm3Status 2 } -dm3StatusBattery OBJECT IDENTIFIER ::= { dm3Status 3 } -dm3StatusOEM OBJECT IDENTIFIER ::= { dm3Status 4 } -dm3StatusLVD OBJECT IDENTIFIER ::= { dm3Status 5 } -dm3StatusPowerModules OBJECT IDENTIFIER ::= { dm3Status 6 } -dm3StatusRelays OBJECT IDENTIFIER ::= { dm3Status 7 } -dm3StatusDistribution OBJECT IDENTIFIER ::= { dm3Status 8 } - -dm3StatusRectifier OBJECT IDENTIFIER ::= { dm3StatusPowerModules 1 } -dm3StatusConverter OBJECT IDENTIFIER ::= { dm3StatusPowerModules 2 } - -dm3StatusOutputRelays OBJECT IDENTIFIER ::= { dm3StatusRelays 1 } -dm3StatusInputRelays OBJECT IDENTIFIER ::= { dm3StatusRelays 2 } - -dm3StatusBreakers OBJECT IDENTIFIER ::= { dm3StatusDistribution 1 } -dm3StatusFuses OBJECT IDENTIFIER ::= { dm3StatusDistribution 2 } - -atsIdent OBJECT IDENTIFIER ::= { automaticTransferSwitch 1 } -atsCalibration OBJECT IDENTIFIER ::= { automaticTransferSwitch 2 } -atsControl OBJECT IDENTIFIER ::= { automaticTransferSwitch 3 } -atsConfig OBJECT IDENTIFIER ::= { automaticTransferSwitch 4 } -atsStatus OBJECT IDENTIFIER ::= { automaticTransferSwitch 5 } - -atsCalibrationInput OBJECT IDENTIFIER ::= { atsCalibration 1 } -atsCalibrationPowerSupply OBJECT IDENTIFIER ::= { atsCalibration 2 } -atsCalibrationOutput OBJECT IDENTIFIER ::= { atsCalibration 3 } - -atsStatusDeviceStatus OBJECT IDENTIFIER ::= { atsStatus 1 } -atsStatusResetValues OBJECT IDENTIFIER ::= { atsStatus 2 } -atsStatusInput OBJECT IDENTIFIER ::= { atsStatus 3 } -atsStatusOutput OBJECT IDENTIFIER ::= { atsStatus 4 } - -dcmim2Ident OBJECT IDENTIFIER ::= { dc2 1 } -dcmim2Control OBJECT IDENTIFIER ::= { dc2 2 } -dcmim2Config OBJECT IDENTIFIER ::= { dc2 3 } -dcmim2Status OBJECT IDENTIFIER ::= { dc2 4 } - -dcmim2IdentSystem OBJECT IDENTIFIER ::= { dcmim2Ident 1 } - -dcmim2ControlSystem OBJECT IDENTIFIER ::= { dcmim2Control 1 } - -dcmim2ConfigSystem OBJECT IDENTIFIER ::= { dcmim2Config 1 } -dcmim2ConfigBattery OBJECT IDENTIFIER ::= { dcmim2Config 2 } -dcmim2ConfigLVD OBJECT IDENTIFIER ::= { dcmim2Config 3 } - -dcmim2StatusSystem OBJECT IDENTIFIER ::= { dcmim2Status 1 } -dcmim2StatusRectifier OBJECT IDENTIFIER ::= { dcmim2Status 2 } -dcmim2StatusBattery OBJECT IDENTIFIER ::= { dcmim2Status 3 } -dcmim2StatusLVD OBJECT IDENTIFIER ::= { dcmim2Status 4 } -dcmim2StatusAlarms OBJECT IDENTIFIER ::= { dcmim2Status 5 } - -external OBJECT IDENTIFIER ::= { environmentalMonitor 1 } -integrated OBJECT IDENTIFIER ::= { environmentalMonitor 2 } -envMgtSystem OBJECT IDENTIFIER ::= { environmentalMonitor 3 } -modEnvMgr OBJECT IDENTIFIER ::= { environmentalMonitor 4 } -envWireless OBJECT IDENTIFIER ::= { environmentalMonitor 5 } - -emIdent OBJECT IDENTIFIER ::= { external 1 } -emConfig OBJECT IDENTIFIER ::= { external 2 } -emStatus OBJECT IDENTIFIER ::= { external 3 } - -iemIdent OBJECT IDENTIFIER ::= { integrated 1 } -iemConfig OBJECT IDENTIFIER ::= { integrated 2 } -iemStatus OBJECT IDENTIFIER ::= { integrated 3 } - -emsIdent OBJECT IDENTIFIER ::= { envMgtSystem 1 } - -emsOutputRelayControl OBJECT IDENTIFIER ::= { envMgtSystem 2 } -emsOutletControl OBJECT IDENTIFIER ::= { envMgtSystem 3 } -emsSensorControl OBJECT IDENTIFIER ::= { envMgtSystem 4 } -emsAlarmDeviceControl OBJECT IDENTIFIER ::= { envMgtSystem 5 } - -emsConfig OBJECT IDENTIFIER ::= { envMgtSystem 6 } -emsProbeConfig OBJECT IDENTIFIER ::= { envMgtSystem 7 } -emsInputContactConfig OBJECT IDENTIFIER ::= { envMgtSystem 8 } -emsOutputRelayConfig OBJECT IDENTIFIER ::= { envMgtSystem 9 } -emsOutletConfig OBJECT IDENTIFIER ::= { envMgtSystem 10 } -emsSensorConfig OBJECT IDENTIFIER ::= { envMgtSystem 11 } - -emsStatus OBJECT IDENTIFIER ::= { envMgtSystem 12 } -emsProbeStatus OBJECT IDENTIFIER ::= { envMgtSystem 13 } -emsInputContactStatus OBJECT IDENTIFIER ::= { envMgtSystem 14 } -emsOutputRelayStatus OBJECT IDENTIFIER ::= { envMgtSystem 15 } -emsOutletStatus OBJECT IDENTIFIER ::= { envMgtSystem 16 } -emsAlarmDeviceStatus OBJECT IDENTIFIER ::= { envMgtSystem 17 } -emsSensorStatus OBJECT IDENTIFIER ::= { envMgtSystem 18 } -emsInputStateSensorConfig OBJECT IDENTIFIER ::= { envMgtSystem 19 } -emsInputStateSensorStatus OBJECT IDENTIFIER ::= { envMgtSystem 20 } - -memModules OBJECT IDENTIFIER ::= { modEnvMgr 1 } -memSensors OBJECT IDENTIFIER ::= { modEnvMgr 2 } -memInputs OBJECT IDENTIFIER ::= { modEnvMgr 3 } -memOutputs OBJECT IDENTIFIER ::= { modEnvMgr 4 } -memOutlets OBJECT IDENTIFIER ::= { modEnvMgr 5 } -memBeacons OBJECT IDENTIFIER ::= { modEnvMgr 6 } -memInputStateSensors OBJECT IDENTIFIER ::= { modEnvMgr 7 } - -wirelessSensorStatus OBJECT IDENTIFIER ::= { envWireless 1 } -wirelessSensorPodStatus OBJECT IDENTIFIER ::= { envWireless 2 } -wirelessSensorConfig OBJECT IDENTIFIER ::= { envWireless 3 } -wirelessSensorPodConfig OBJECT IDENTIFIER ::= { envWireless 4 } - -nlIdent OBJECT IDENTIFIER ::= { netlock 1 } -nlStatus OBJECT IDENTIFIER ::= { netlock 2 } - -airFM OBJECT IDENTIFIER ::= { airConditioners 1 } -airFMIdent OBJECT IDENTIFIER ::= { airFM 1 } -airFMStatus OBJECT IDENTIFIER ::= { airFM 2 } -airFMGroup OBJECT IDENTIFIER ::= { airFM 3 } -airFMSystem OBJECT IDENTIFIER ::= { airFM 4 } -airFMModule OBJECT IDENTIFIER ::= { airFM 5 } -airFMAlarms OBJECT IDENTIFIER ::= { airFM 6 } - -airFMGroupSysRoles OBJECT IDENTIFIER ::= { airFMGroup 4 } -airFMGroupCfg OBJECT IDENTIFIER ::= { airFMGroup 5 } -airFMGroupLoadShare OBJECT IDENTIFIER ::= { airFMGroup 6 } -airFMGroupFailover OBJECT IDENTIFIER ::= { airFMGroup 7 } - -airFMGroupFailoverSys OBJECT IDENTIFIER ::= { airFMGroupFailover 1 } -airFMGroupFailoverMod OBJECT IDENTIFIER ::= { airFMGroupFailover 2 } - -airFMSysStatus OBJECT IDENTIFIER ::= { airFMSystem 1 } -airFMSysDemands OBJECT IDENTIFIER ::= { airFMSystem 2 } -airFMSysSetup OBJECT IDENTIFIER ::= { airFMSystem 3 } -airFMSysConfig OBJECT IDENTIFIER ::= { airFMSystem 4 } -airFMSysCooling OBJECT IDENTIFIER ::= { airFMSystem 5 } -airFMSysHumidify OBJECT IDENTIFIER ::= { airFMSystem 6 } -airFMSysDehumidify OBJECT IDENTIFIER ::= { airFMSystem 7 } -airFMSysReheat OBJECT IDENTIFIER ::= { airFMSystem 8 } -airFMSysThresholds OBJECT IDENTIFIER ::= { airFMSystem 9 } -airFMSysInputs OBJECT IDENTIFIER ::= { airFMSystem 10 } -airFMSysOutputs OBJECT IDENTIFIER ::= { airFMSystem 11 } -airFMSysAlarmMap OBJECT IDENTIFIER ::= { airFMSystem 12 } - -airFMSysAlarmMapSys OBJECT IDENTIFIER ::= { airFMSysAlarmMap 1 } -airFMSysAlarmMapMainMod OBJECT IDENTIFIER ::= { airFMSysAlarmMap 2 } -airFMSysAlarmMapExpMod1 OBJECT IDENTIFIER ::= { airFMSysAlarmMap 3 } -airFMSysAlarmMapExpMod2 OBJECT IDENTIFIER ::= { airFMSysAlarmMap 4 } -airFMSysAlarmMapInput OBJECT IDENTIFIER ::= { airFMSysAlarmMap 5 } -airFMSysAlarmMapOutput OBJECT IDENTIFIER ::= { airFMSysAlarmMap 6 } - -airFMModIdent OBJECT IDENTIFIER ::= { airFMModule 1 } -airFMModStatus OBJECT IDENTIFIER ::= { airFMModule 2 } -airFMModProperties OBJECT IDENTIFIER ::= { airFMModule 3 } -airFMModCooling OBJECT IDENTIFIER ::= { airFMModule 4 } -airFMModHumidity OBJECT IDENTIFIER ::= { airFMModule 5 } -airFMModBlower1 OBJECT IDENTIFIER ::= { airFMModule 6 } -airFMModBlower2 OBJECT IDENTIFIER ::= { airFMModule 7 } -airFMModRunHours OBJECT IDENTIFIER ::= { airFMModule 8 } -airFMModServIntervals OBJECT IDENTIFIER ::= { airFMModule 9 } -airFMModServIntResets OBJECT IDENTIFIER ::= { airFMModule 10 } - - -airPA OBJECT IDENTIFIER ::= { airConditioners 2 } -airPAIdent OBJECT IDENTIFIER ::= { airPA 1 } -airPAStatus OBJECT IDENTIFIER ::= { airPA 2 } - -airIR OBJECT IDENTIFIER ::= { airConditioners 3 } -airIRAlarms OBJECT IDENTIFIER ::= { airIR 1 } -airIRRC OBJECT IDENTIFIER ::= { airIR 2 } -airIRRP OBJECT IDENTIFIER ::= { airIR 3 } -airIRSC OBJECT IDENTIFIER ::= { airIR 4 } - -airIRRCGroup OBJECT IDENTIFIER ::= { airIRRC 1 } -airIRRCUnit OBJECT IDENTIFIER ::= { airIRRC 2 } - -airIRRCGroupStatus OBJECT IDENTIFIER ::= { airIRRCGroup 1 } -airIRRCGroupSetpoints OBJECT IDENTIFIER ::= { airIRRCGroup 2 } -airIRRCGroupConfig OBJECT IDENTIFIER ::= { airIRRCGroup 3 } - -airIRRCUnitIdent OBJECT IDENTIFIER ::= { airIRRCUnit 1 } -airIRRCUnitStatus OBJECT IDENTIFIER ::= { airIRRCUnit 2 } -airIRRCUnitRunHours OBJECT IDENTIFIER ::= { airIRRCUnit 3 } -airIRRCUnitServiceIntervals OBJECT IDENTIFIER ::= { airIRRCUnit 4 } -airIRRCUnitThresholds OBJECT IDENTIFIER ::= { airIRRCUnit 5 } -airIRRCUnitConfig OBJECT IDENTIFIER ::= { airIRRCUnit 6 } - --- Series 100 DX Air Conditioners -airIRRP100 OBJECT IDENTIFIER ::= { airIRRP 1 } --- Series 500 CW Air Conditioners -airIRRP500 OBJECT IDENTIFIER ::= { airIRRP 2 } - -airIRRP100Group OBJECT IDENTIFIER ::= { airIRRP100 1 } -airIRRP100Unit OBJECT IDENTIFIER ::= { airIRRP100 2 } - -airIRRP100GroupStatus OBJECT IDENTIFIER ::= { airIRRP100Group 1 } -airIRRP100GroupSetpoints OBJECT IDENTIFIER ::= { airIRRP100Group 2 } -airIRRP100GroupConfig OBJECT IDENTIFIER ::= { airIRRP100Group 3 } - -airIRRP100UnitIdent OBJECT IDENTIFIER ::= { airIRRP100Unit 1 } -airIRRP100UnitStatus OBJECT IDENTIFIER ::= { airIRRP100Unit 2 } -airIRRP100UnitRunHours OBJECT IDENTIFIER ::= { airIRRP100Unit 3 } -airIRRP100UnitServiceIntervals OBJECT IDENTIFIER ::= { airIRRP100Unit 4 } -airIRRP100UnitThresholds OBJECT IDENTIFIER ::= { airIRRP100Unit 5 } -airIRRP100UnitConfig OBJECT IDENTIFIER ::= { airIRRP100Unit 6 } - -airIRRP500Group OBJECT IDENTIFIER ::= { airIRRP500 1 } -airIRRP500Unit OBJECT IDENTIFIER ::= { airIRRP500 2 } - -airIRRP500GroupStatus OBJECT IDENTIFIER ::= { airIRRP500Group 1 } -airIRRP500GroupSetpoints OBJECT IDENTIFIER ::= { airIRRP500Group 2 } -airIRRP500GroupConfig OBJECT IDENTIFIER ::= { airIRRP500Group 3 } - -airIRRP500UnitIdent OBJECT IDENTIFIER ::= { airIRRP500Unit 1 } -airIRRP500UnitStatus OBJECT IDENTIFIER ::= { airIRRP500Unit 2 } -airIRRP500UnitRunHours OBJECT IDENTIFIER ::= { airIRRP500Unit 3 } -airIRRP500UnitServiceIntervals OBJECT IDENTIFIER ::= { airIRRP500Unit 4 } -airIRRP500UnitThresholds OBJECT IDENTIFIER ::= { airIRRP500Unit 5 } -airIRRP500UnitConfig OBJECT IDENTIFIER ::= { airIRRP500Unit 6 } - - -airIRSCUnit OBJECT IDENTIFIER ::= { airIRSC 1 } - -airIRSCUnitIdent OBJECT IDENTIFIER ::= { airIRSCUnit 1 } -airIRSCUnitStatus OBJECT IDENTIFIER ::= { airIRSCUnit 2 } -airIRSCUnitRunHours OBJECT IDENTIFIER ::= { airIRSCUnit 3 } -airIRSCUnitServiceIntervals OBJECT IDENTIFIER ::= { airIRSCUnit 4 } -airIRSCUnitThresholds OBJECT IDENTIFIER ::= { airIRSCUnit 5 } -airIRSCUnitSetpoints OBJECT IDENTIFIER ::= { airIRSCUnit 6 } -airIRSCUnitConfig OBJECT IDENTIFIER ::= { airIRSCUnit 7 } - -airIRSCGroup OBJECT IDENTIFIER ::= { airIRSC 2 } - -airIRSCGroupStatus OBJECT IDENTIFIER ::= { airIRSCGroup 1 } -airIRSCGroupSetpoints OBJECT IDENTIFIER ::= { airIRSCGroup 2 } -airIRSCGroupConfig OBJECT IDENTIFIER ::= { airIRSCGroup 3 } - - -airIRGen2 OBJECT IDENTIFIER ::= { airConditioners 4 } - -airIRG2Ident OBJECT IDENTIFIER ::= { airIRGen2 1 } -airIRG2Group OBJECT IDENTIFIER ::= { airIRGen2 2 } -airIRG2Alarms OBJECT IDENTIFIER ::= { airIRGen2 3 } -airIRG2RC OBJECT IDENTIFIER ::= { airIRGen2 4 } -airIRG2RD OBJECT IDENTIFIER ::= { airIRGen2 5 } -airIRG2SC OBJECT IDENTIFIER ::= { airIRGen2 6 } -airIRG2RA OBJECT IDENTIFIER ::= { airIRGen2 7 } - --- airIR Gen2 Group data -airIRG2GroupStatus OBJECT IDENTIFIER ::= { airIRG2Group 1 } -airIRG2GroupSetpoints OBJECT IDENTIFIER ::= { airIRG2Group 2 } -airIRG2GroupConfig OBJECT IDENTIFIER ::= { airIRG2Group 3 } - --- airIR Gen2 RD Unit data -airIRG2RDType1 OBJECT IDENTIFIER ::= { airIRG2RD 1 } -airIRG2RDType2 OBJECT IDENTIFIER ::= { airIRG2RD 2 } -airIRG2RDT2Status OBJECT IDENTIFIER ::= { airIRG2RDType2 1 } -airIRG2RDT2RunHours OBJECT IDENTIFIER ::= { airIRG2RDType2 2 } -airIRG2RDT2ServiceIntervals OBJECT IDENTIFIER ::= { airIRG2RDType2 3 } -airIRG2RDT2Thresholds OBJECT IDENTIFIER ::= { airIRG2RDType2 4 } -airIRG2RDT2Setpoints OBJECT IDENTIFIER ::= { airIRG2RDType2 5 } -airIRG2RDT2Config OBJECT IDENTIFIER ::= { airIRG2RDType2 6 } - -airInRoom OBJECT IDENTIFIER ::= { airConditioners 5 } - -airIRmIdent OBJECT IDENTIFIER ::= { airInRoom 1 } -airIRmAlarms OBJECT IDENTIFIER ::= { airInRoom 2 } -airIRmPerimeter OBJECT IDENTIFIER ::= { airInRoom 3 } - -airIRmPmCommon1 OBJECT IDENTIFIER ::= { airIRmPerimeter 2 } -airIRmPmCommon2 OBJECT IDENTIFIER ::= { airIRmPerimeter 3 } -airIRmPmCommon3 OBJECT IDENTIFIER ::= { airIRmPerimeter 4 } -airIRmPmCommon4 OBJECT IDENTIFIER ::= { airIRmPerimeter 5 } -airIRmPmCommon5 OBJECT IDENTIFIER ::= { airIRmPerimeter 6 } -airIRmPmCompressor1 OBJECT IDENTIFIER ::= { airIRmPerimeter 7 } -airIRmPmCompressor2 OBJECT IDENTIFIER ::= { airIRmPerimeter 8 } -airIRmPmSuctionValve1 OBJECT IDENTIFIER ::= { airIRmPerimeter 9 } -airIRmPmSuctionValve2 OBJECT IDENTIFIER ::= { airIRmPerimeter 10 } -airIRmPmEheating1 OBJECT IDENTIFIER ::= { airIRmPerimeter 11 } -airIRmPmEheating2 OBJECT IDENTIFIER ::= { airIRmPerimeter 12 } -airIRmPmEheating3 OBJECT IDENTIFIER ::= { airIRmPerimeter 13 } -airIRmPmEheating4 OBJECT IDENTIFIER ::= { airIRmPerimeter 14 } -airIRmPmGECWvalve OBJECT IDENTIFIER ::= { airIRmPerimeter 15 } -airIRmPmGvalve OBJECT IDENTIFIER ::= { airIRmPerimeter 16 } -airIRmPmDrycooler1 OBJECT IDENTIFIER ::= { airIRmPerimeter 17 } -airIRmPmDrycooler2 OBJECT IDENTIFIER ::= { airIRmPerimeter 18 } -airIRmPmDrycooler3 OBJECT IDENTIFIER ::= { airIRmPerimeter 19 } -airIRmPmDrycooler4 OBJECT IDENTIFIER ::= { airIRmPerimeter 20 } -airIRmPmPump1 OBJECT IDENTIFIER ::= { airIRmPerimeter 21 } -airIRmPmPump2 OBJECT IDENTIFIER ::= { airIRmPerimeter 22 } -airIRmPmPump3 OBJECT IDENTIFIER ::= { airIRmPerimeter 23 } -airIRmPmPump4 OBJECT IDENTIFIER ::= { airIRmPerimeter 24 } -airIRmPmHotgasHeating OBJECT IDENTIFIER ::= { airIRmPerimeter 25 } -airIRmPmPWWHeating OBJECT IDENTIFIER ::= { airIRmPerimeter 26 } -airIRmPmHumidifier1 OBJECT IDENTIFIER ::= { airIRmPerimeter 27 } -airIRmPmHumidifier2 OBJECT IDENTIFIER ::= { airIRmPerimeter 28 } --- Skipping 29 and 30. -airIRmPmDehumidification OBJECT IDENTIFIER ::= { airIRmPerimeter 31 } -airIRmPmFan1 OBJECT IDENTIFIER ::= { airIRmPerimeter 32 } -airIRmPmFan2 OBJECT IDENTIFIER ::= { airIRmPerimeter 33 } -airIRmPmFan3 OBJECT IDENTIFIER ::= { airIRmPerimeter 34 } -airIRmPmLouver1 OBJECT IDENTIFIER ::= { airIRmPerimeter 35 } -airIRmPmLouver2 OBJECT IDENTIFIER ::= { airIRmPerimeter 36 } -airIRmPmLouver3 OBJECT IDENTIFIER ::= { airIRmPerimeter 37 } -airIRmPmAuxAlarm1 OBJECT IDENTIFIER ::= { airIRmPerimeter 38 } -airIRmPmAuxAlarm2 OBJECT IDENTIFIER ::= { airIRmPerimeter 39 } -airIRmPmAuxAlarm3 OBJECT IDENTIFIER ::= { airIRmPerimeter 40 } -airIRmPmAuxAlarm4 OBJECT IDENTIFIER ::= { airIRmPerimeter 41 } -airIRmPmAuxAlarm5 OBJECT IDENTIFIER ::= { airIRmPerimeter 42 } -airIRmPmAlarmBits OBJECT IDENTIFIER ::= { airIRmPerimeter 43 } -airIRmPmMyZone OBJECT IDENTIFIER ::= { airIRmPerimeter 44 } -airIRmPmGlobalZoneData OBJECT IDENTIFIER ::= { airIRmPerimeter 45 } - -airIRGen3 OBJECT IDENTIFIER ::= { airConditioners 6 } - -airIRG3Ident OBJECT IDENTIFIER ::= { airIRGen3 1 } -airIRG3Group OBJECT IDENTIFIER ::= { airIRGen3 2 } -airIRG3Alarms OBJECT IDENTIFIER ::= { airIRGen3 3 } -airIRG3RDU OBJECT IDENTIFIER ::= { airIRGen3 4 } -airIRG3CM OBJECT IDENTIFIER ::= { airIRGen3 5 } - - -rARUIdent OBJECT IDENTIFIER ::= { rARU 1 } -rARUConfig OBJECT IDENTIFIER ::= { rARU 2 } -rARUStatus OBJECT IDENTIFIER ::= { rARU 3 } -rARUFanStatus OBJECT IDENTIFIER ::= { rARU 4 } -rARUPower OBJECT IDENTIFIER ::= { rARU 5 } -rARUSensors OBJECT IDENTIFIER ::= { rARU 6 } - - -accessPX OBJECT IDENTIFIER ::= { accessControl 1 } - -accessPXIdent OBJECT IDENTIFIER ::= { accessPX 1 } -accessPXConfig OBJECT IDENTIFIER ::= { accessPX 2 } -accessPXConfigFront OBJECT IDENTIFIER ::= { accessPX 3 } -accessPXStatusFront OBJECT IDENTIFIER ::= { accessPX 4 } -accessPXConfigRear OBJECT IDENTIFIER ::= { accessPX 5 } -accessPXStatusRear OBJECT IDENTIFIER ::= { accessPX 6 } -accessPXConfigBeacon OBJECT IDENTIFIER ::= { accessPX 7 } -accessPXStatusBeacon OBJECT IDENTIFIER ::= { accessPX 8 } - -apcLocalDisplayIdent OBJECT IDENTIFIER ::= { apcLocalDisplay 1 } -apcLocalDisplayConfig OBJECT IDENTIFIER ::= { apcLocalDisplay 2 } - -accPX OBJECT IDENTIFIER ::= { accControl 1 } - -isxModularPduIdent OBJECT IDENTIFIER ::= { isxModularPdu 1 } -isxModularPduDevice OBJECT IDENTIFIER ::= { isxModularPdu 2 } -isxModularPduStatus OBJECT IDENTIFIER ::= { isxModularPdu 3 } - -symmetraPx48kVA OBJECT IDENTIFIER ::= { symmetraPX 1 } -symmetraPx160kVA OBJECT IDENTIFIER ::= { symmetraPX 2 } -symmetraPx250kVA OBJECT IDENTIFIER ::= { symmetraPX 3 } -symmetraPx500kVA OBJECT IDENTIFIER ::= { symmetraPX 4 } -symmetraPx100kVA OBJECT IDENTIFIER ::= { symmetraPX 5 } -symmetraPxDisplay OBJECT IDENTIFIER ::= { symmetraPX 6 } - -isx24ModuleHalfRackPdu OBJECT IDENTIFIER ::= { isxModDistribution 1 } -isx6ModuleRackPdu OBJECT IDENTIFIER ::= { isxModDistribution 2 } - -isxModularDistInfo OBJECT IDENTIFIER ::= { isxModularDistribution 1 } -isxModularDistModules OBJECT IDENTIFIER ::= { isxModularDistribution 2 } -isxModularDistSubFeeds OBJECT IDENTIFIER ::= { isxModularDistribution 3 } -isxModularDistTotals OBJECT IDENTIFIER ::= { isxModularDistribution 4 } - -isxModularDistSysVoltage OBJECT IDENTIFIER ::= { isxModularDistTotals 1 } -isxModularDistSysCurrent OBJECT IDENTIFIER ::= { isxModularDistTotals 2 } -isxModularDistSysPower OBJECT IDENTIFIER ::= { isxModularDistTotals 3 } - -isxcBasic OBJECT IDENTIFIER ::= { isxServers 1 } -isxcStandard OBJECT IDENTIFIER ::= { isxServers 2 } -isxcEnterprise OBJECT IDENTIFIER ::= { isxServers 3 } -isxcVirtual OBJECT IDENTIFIER ::= { isxServers 4 } - -uioSensor OBJECT IDENTIFIER ::= { universalInputOutput 1 } -uioInputContact OBJECT IDENTIFIER ::= { universalInputOutput 2 } -uioOutputRelay OBJECT IDENTIFIER ::= { universalInputOutput 3 } - - --- object types - --- the products group --- the experimental group - - - --- the apcmgmt group --- the mconfig group - -mconfigNumTrapReceivers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of managers to send traps to." - ::= { mconfig 1 } - -mconfigTrapReceiverTable OBJECT-TYPE - SYNTAX SEQUENCE OF MconfigTrapReceiverEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of managers to send traps to. The number of - entries is given by the value of mconfigNumTrapReceivers." - ::= { mconfig 2 } - -mconfigTrapReceiverEntry OBJECT-TYPE - SYNTAX MconfigTrapReceiverEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The managers to send traps to." - INDEX { trapIndex} - ::= { mconfigTrapReceiverTable 1 } - -MconfigTrapReceiverEntry ::= - SEQUENCE { - trapIndex - INTEGER, - receiverAddr - IpAddress, - communityString - DisplayString, - severity - INTEGER, - acceptThisReceiver - INTEGER, - receiveTrapType - INTEGER - } - -trapIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to a trap receiver entry." - ::= { mconfigTrapReceiverEntry 1 } - -receiverAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The IP address of the manager to send a trap to." - ::= { mconfigTrapReceiverEntry 2 } - -communityString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The community name to use in the trap when - sent to the manager." - ::= { mconfigTrapReceiverEntry 3 } - -severity OBJECT-TYPE - SYNTAX INTEGER { - information(1), - warning(2), - severe(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "The severity threshold of traps to send to the manager. - traps are labeled in severity as informational(1), warning(2), - severe(3). Only traps of equal or greater severity than - this value are sent to the manager." - ::= { mconfigTrapReceiverEntry 4 } - -acceptThisReceiver OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of yes(1) indicates that trap generation for this manager is enabled. - The value of no(2) indicates that trap generation for this manager is disabled" - ::= { mconfigTrapReceiverEntry 5 } - - -receiveTrapType OBJECT-TYPE - SYNTAX INTEGER { - powernet (1), - ietf (2), - both (3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION - "Type of trap." - ::= { mconfigTrapReceiverEntry 6 } - -mconfigBOOTPEnabled OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of yes(1) indicates the PowerNet Adapter is configured to - obtain its IP configuration parameters from a BOOTP server. - - The value of no(2) indicates adapter will assume IP configuration parameters - values saved in adapter's eeprom, which was originally configured at local - console." - ::= { mconfig 3 } - -mconfigTFTPServerIP OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The IP address of TFTP server. If mconfigBOOTPEnabled is yes(1), then this IP address - is provided by BOOTP server and not allowed to be modified; otherwise, this IP address - can be modified. - - Before using TFTP to load new code image, the image file should be placed in proper - directory of the specified TFTP server. This OID is only supported by APC Network - Management Cards." - ::= { mconfig 4 } - -newCodeAuthentViaTFTP OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - validNewAgentCodeImage (2), - sameAgentCodeImage (3), - invalidAgentCodeImage (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Once mcontrolRestartAgent is set to loadAndExecuteNewAgent (3), PowerNet adapter will - start to load the remote image file, for authentication only, instead of saving the code - into flash memory. Only if a validNewAgentCodeImage (1) is found will the agent reboot - the PowerNet adapter and invoke the loader to load and save new code into the flash memory. - Otherwise, the current agent code will continue to run. - - This OID shows the result of the above authentication process. - validNewAgentCodeImage (1) means the code image on TFTP server - is a valid APC agent code and is different version from the current agent. - Once agent identifies this, loader will start to update flash memory with - the new agent code. - - sameAgentCodeImage (2) means the code image on TFTP server is exactly the - same as the currently running agent. Currently running agent will not invoke - loader to load the same again. - - invalidAgentCodeImage (3) means the code image on TFTP server is NOT a valid - APC agent code. Thus, current agent will not load it into the flash memory. - - The value of this OID will be associated with TRAP codeImageAuthentDone. - This OID is only supported by APC Network Management Cards." - - ::= { mconfig 5 } - -mconfigClockDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The current date in the mm/dd/yyyy format. Example: 01/01/2000." - ::= { mconfigClock 1 } - -mconfigClockTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The current time in the hh:mm:ss am/pm format. Example: 12:00:00 am." - ::= { mconfigClock 2 } - -mcontrolRestartAgent OBJECT-TYPE - SYNTAX INTEGER { - restartCurrentAgent (1), - continueCurrentAgent (2), - loadAndExecuteNewAgent (3), - restartWithoutAgent (4), - resetNetworkAndRestart (5), - resetNetworkLeaveModeAndRestart (6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to restartCurrentAgent (1) will restart the same SNMP - agent code currently saved in flash memory. Setting this OID to - loadAndExecuteNewAgent (3) will enable adapter to load a new agent code - into the flash memory and start to execute this new agent code. - Bootp/tftp is the default protocol. loadAndExecuteNewAgent is only - supported by APC Network Management Cards. Setting - this OID to restartWithoutAgent (4) will restart the system and not - start the agent. The subsequent time the system restarts the agent will - also automatically restart. Setting this OID to - resetNetworkAndRestart (5) will set the Boot Mode, IP Address, Subnet - Mask, and Default Gateway to defaults, expire any existing DHCP lease - and then restart the system. Setting this OID to - resetNetworkLeaveModeAndRestart (6) will leave the Boot Mode at the - current setting, set the IP Address, Subnet Mask, and Default Gateway to - defaults, expire any existing DHCP lease and then restart the system." - - ::= { mcontrol 1 } - --- The mtrapargs group --- These OIDs allows APC traps to be sent with additional arguments --- which may not be defined in the APC MIB. - -mtrapargsInteger OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an integer argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 1 } - -mtrapargsIpAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an IP address argument - that my not be defined in the APC MIB. - - A get of this OID will return 0.0.0.0." - ::= { mtrapargs 2 } - -mtrapargsString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 3 } - -mtrapargsGauge OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with a Gauge argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 4 } - -mtrapargsTimeTicks OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with a TimeTicks argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 5 } - -mtrapargsInteger02 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an integer argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 6 } - -mtrapargsInteger03 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an integer argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 7 } - -mtrapargsIpAddress02 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an IP address argument - that my not be defined in the APC MIB. - - A get of this OID will return 0.0.0.0." - ::= { mtrapargs 8 } - -mtrapargsIpAddress03 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an IP address argument - that my not be defined in the APC MIB. - - A get of this OID will return 0.0.0.0." - ::= { mtrapargs 9 } - -mtrapargsString02 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 10 } - -mtrapargsString03 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 11 } - -mtrapargsGauge02 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with a Gauge argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 12 } - -mtrapargsGauge03 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with a Gauge argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 13 } - -mtrapargsTimeTicks02 OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with a TimeTicks argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 14 } - -mtrapargsTimeTicks03 OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with a TimeTicks argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 15 } - -mtrapargsString04 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 16 } - -mtrapargsString05 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 17 } - -mtrapargsInteger04 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an integer argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 18 } - -mtrapargsInteger05 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an integer argument - that my not be defined in the APC MIB. - - A get of this OID will return 0." - ::= { mtrapargs 19 } - -mtrapargsString06 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 20 } - -mtrapargsString07 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 21 } - -mtrapargsString08 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 22 } - -mtrapargsOctetString OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 23 } - -mtrapargsOctetString02 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 24 } - -mtrapargsOctetString03 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 25 } - -mtrapargsOctetString04 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 26 } - -mtrapargsOctetString05 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 27 } - -mtrapargsOctetString06 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 28 } - -mtrapargsOctetString07 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 29 } - -mtrapargsOctetString08 OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID allows APC traps to be sent with an octet string argument - that my not be defined in the APC MIB. - - A get of this OID will return a NULL string." - ::= { mtrapargs 30 } - --- the mfiletransfer group --- the mfiletransferStatus group -mfiletransferStatusLastTransferResult OBJECT-TYPE - SYNTAX INTEGER { - lastFileTransferResultSuccessful (1), - lastFileTransferResultNotAvailable (2), - lastFileTransferResultFailureUnknown (3), - lastFileTransferResultFailureServerInaccessible (4), - lastFileTransferResultFailureServerAccessDenied (5), - lastFileTransferResultFailureFileNotFound (6), - lastFileTransferResultFailureFileTypeUnknown (7), - lastFileTransferResultFailureFileCorrupted (8) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - Once mfiletransferControlInitiateFileTransfer is set to a value other than doNotInitiateFileTransfer - a file transfer of mfiletransferConfigSettingsFilename will be attempted from either a TFTP or FTP - server. - - This OID shows the last attempted file transfer result. - lastFileTransferResultSuccessful (1) means the file transfer was successful. - lastFileTransferResultNotAvailable (2) means that there have been no previous file transfers. - lastFileTransferResultFailureUnknown (3) means that the last file transfer failed for an unknown reason. - lastFileTransferResultFailureServerInaccessible (4) means that the TFTP or FTP server could not be found on the network. - lastFileTransferResultFailureServerAccessDenied (5) means that the TFTP or FTP server denied access. - lastFileTransferResultFailureFileNotFound (6) means that the file could not be located. - lastFileTransferResultFailureFileTypeUnknown (7) means the file was examined, but the contents were unknown. - lastFileTransferResultFailureFileCorrupt (8) means the transferred file was corrupt." - - ::= { mfiletransferStatus 1 } - --- the mfiletransferConfig group --- the mfiletransferConfigSettings group - -mfiletransferConfigSettingsFilename OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - The path and name of the file to transfer using the mfiletransferControlInitiateFileTransfer OID. - If the file to transfer exists in the default server directory then the path may be omitted." - - ::= { mfiletransferConfigSettings 1 } - --- the mfiletransferConfigTFTP group - -mfiletransferConfigTFTPServerAddress OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - The IP Address in dotted decimal notation of the TFTP server involved in the file transfer." - - ::= { mfiletransferConfigTFTP 1 } - --- the mfiletransferConfigFTP group - -mfiletransferConfigFTPServerAddress OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - The IP Address in dotted decimal notation of the FTP server involved in the file transfer." - - ::= { mfiletransferConfigFTP 1 } - -mfiletransferConfigFTPServerUser OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - The user identification for logging into the FTP server specified with mfiletransferConfigFTPServerAddress." - - ::= { mfiletransferConfigFTP 2 } - -mfiletransferConfigFTPServerPassword OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - The password for logging into the FTP server specified with mfiletransferConfigFTPServerAddress." - - ::= { mfiletransferConfigFTP 3 } - --- the mfiletransferControl group - -mfiletransferControlInitiateFileTransfer OBJECT-TYPE - SYNTAX INTEGER { - doNotInitiateFileTransfer (1), - initiateFileTransferDownloadViaTFTP (2), - initiateFileTransferDownloadViaFTP (3) - } - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated. - - Setting this OID to doNotInitiateFileTransfer (1) will do nothing. - - Setting this OID to initiateFileTransferDownloadViaTFTP (2) will attempt to transfer the file named in - mfiletransferConfigSettingsFilename from the TFTP Server identified in mfiletransferConfigTFTPAddress. - - Setting this OID to initiateFileTransferDownloadViaFTP (3) will attempt to transfer the file named in - mfiletransferConfigSettingsFilename from the FTP Server identified in mfiletransferConfigFTPAddress - using mfiletransferConfigFTPUser and mfiletransferConfigFTPPassword for the FTP Server login process." - - ::= { mfiletransferControl 1 } --- the battManIdent group - -battManIdentProductName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the battery manager." - ::= { battManIdent 1 } - -battManIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager network interface hardware revision. - This value is set at the factory." - ::= { battManIdent 2 } - -battManIdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager network interface firmware revision. - This value is set at the factory and can change with firmware update." - ::= { battManIdent 3 } - -battManIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date the battery manager was manufactured in mm/dd/yyyy format. - This value is set at the factory." - ::= { battManIdent 4 } - -battManIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager model number character string. - This value is set at the factory." - ::= { battManIdent 5 } - -battManIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager serial number character string. - This value is set at the factory." - ::= { battManIdent 6 } - --- the battManCalib group --- system calibration - -battManOhmicValueCorrectionFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The system ohmic value correction factor in percent." - ::= { battManSystemCalib 1 } - --- unit calibration - -battManUnitCalibTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManUnitCalibTable." - ::= { battManUnitCalib 1 } - -battManUnitCalibTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManUnitCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting calibration information from each unit in the system." - ::= { battManUnitCalib 2 } - -battManUnitCalibEntry OBJECT-TYPE - SYNTAX BattManUnitCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { battManUnitCalibIndex } - ::= { battManUnitCalibTable 1 } - -BattManUnitCalibEntry ::= - SEQUENCE { - battManUnitCalibIndex INTEGER, - battManUnitSerialNumber DisplayString, - battManBatteryVoltageZeroCalib INTEGER, - battManBatteryVoltageSpanCalib INTEGER - } - -battManUnitCalibIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of unit calibration entries in the table." - ::= { battManUnitCalibEntry 1 } - -battManUnitSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the unit." - ::= { battManUnitCalibEntry 2 } - -battManBatteryVoltageZeroCalib OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit battery voltage zero calibration in millivolts." - ::= { battManUnitCalibEntry 3 } - -battManBatteryVoltageSpanCalib OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit battery voltage span calibration in hundredths of percent." - ::= { battManUnitCalibEntry 4 } - --- string calibration table - -battManStringCalibTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManStringCalibTable." - ::= { battManStringCalib 1 } - -battManStringCalibTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManStringCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting calibration information from each string in the system." - ::= { battManStringCalib 2 } - -battManStringCalibEntry OBJECT-TYPE - SYNTAX BattManStringCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManStringCalibIndex } - ::= { battManStringCalibTable 1 } - -BattManStringCalibEntry ::= - SEQUENCE { - battManStringCalibIndex INTEGER, - battManDCCurrentZeroCalib INTEGER, - battManACCurrentZeroCalib INTEGER, - battManProbeRange INTEGER - } - -battManStringCalibIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of string calibration entries in the table." - ::= { battManStringCalibEntry 1 } - -battManDCCurrentZeroCalib OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The string DC current zero calibration in tenths of amps." - ::= { battManStringCalibEntry 2 } - -battManACCurrentZeroCalib OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The string AC current zero calibration in tenths of amps." - ::= { battManStringCalibEntry 3 } - -battManProbeRange OBJECT-TYPE - SYNTAX INTEGER { - amps1000 (1), - amps500 (2), - amps100 (3), - amps200 (4), - amps2000 (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The string probe range in amps." - ::= { battManStringCalibEntry 4 } - ---string 1 battery calibration table - -battManString1BatteryCalibTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString1BatteryCalibTable." - ::= { battManBatteryCalib 1 } - -battManString1BatteryCalibTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString1BatteryCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting calibration information from each battery in String 1." - ::= { battManBatteryCalib 2 } - -battManString1BatteryCalibEntry OBJECT-TYPE - SYNTAX BattManString1BatteryCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString1BatteryCalibIndex } - ::= { battManString1BatteryCalibTable 1 } - -BattManString1BatteryCalibEntry ::= - SEQUENCE { - battManString1BatteryCalibIndex INTEGER, - battManString1BatteryInterTierOhmicValue INTEGER - } - -battManString1BatteryCalibIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of battery calibration entries in the table." - ::= { battManString1BatteryCalibEntry 1 } - -battManString1BatteryInterTierOhmicValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The battery inter-tier ohmic value in ohms. This corresponds to the ohmic - value for the positive terminal of the battery." - ::= { battManString1BatteryCalibEntry 2 } - ---string 2 battery calibration table - -battManString2BatteryCalibTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString2BatteryCalibTable." - ::= { battManBatteryCalib 3 } - -battManString2BatteryCalibTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString2BatteryCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting calibration information from each battery in String 2." - ::= { battManBatteryCalib 4 } - -battManString2BatteryCalibEntry OBJECT-TYPE - SYNTAX BattManString2BatteryCalibEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString2BatteryCalibIndex } - ::= { battManString2BatteryCalibTable 1 } - -BattManString2BatteryCalibEntry ::= - SEQUENCE { - battManString2BatteryCalibIndex INTEGER, - battManString2BatteryInterTierOhmicValue INTEGER - } - -battManString2BatteryCalibIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of battery calibration entries in the table." - ::= { battManString2BatteryCalibEntry 1 } - -battManString2BatteryInterTierOhmicValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The battery inter-tier ohmic value in ohms." - ::= { battManString2BatteryCalibEntry 2 } - --- the battManConfig group - -battManConfigApplication OBJECT-TYPE - SYNTAX INTEGER { - silcon (1), - other (2) - } - ACCESS read-write - STATUS deprecated - DESCRIPTION - "This OID has been deprecated." - ::= { battManConfig 1 } - -battManConfigBatteryChemistry OBJECT-TYPE - SYNTAX INTEGER { - leadAcid (1), - nickel-Cadmium (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The battery chemistry of the monitored batteries: - LeadAcid(1) Lead Acid or - Nickel-Cadmium(2) Nickel-Cadmium." - ::= { battManConfig 2 } - -battManConfigBatteryAHCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amp hour capacity of the monitored batteries 5-4000 AH." - ::= { battManConfig 3 } - -battManConfigNumberofStrings OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of strings in the battery manager system." - ::= { battManConfig 4 } - -battManConfigBatteriesperString OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of batteries per string." - ::= { battManConfig 5 } - - -battManConfigCellsperBattery OBJECT-TYPE - SYNTAX INTEGER { - oneCell (1), - twoCells (2), - fourCells (4), - sixCells (6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cells per battery (1, 2, 4 or 6 for lead-acid, 1 or 2 for NiCd." - ::= { battManConfig 6 } - - -battManConfigMinCellVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum battery cell voltage alarm limit in millivolts DC." - ::= { battManConfig 7 } - -battManConfigMaxCellVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum battery cell voltage alarm limit in millivolts DC." - ::= { battManConfig 8 } - -battManConfigMaxPilotTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum pilot battery temperature alarm limit in tenths of degrees Fahrenheit." - ::= { battManConfig 9 } - -battManConfigMaxPilotTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum pilot battery temperature alarm limit in tenths of degrees Celsius." - ::= { battManConfig 10 } - -battManConfigMaxAmbientTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum ambient temperature alarm limit in tenths of degrees Fahrenheit." - ::= { battManConfig 11 } - -battManConfigMaxAmbientTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum ambient temperature alarm limit in tenths of degrees Celsius." - ::= { battManConfig 12 } - -battManConfigMinAmbientTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Minimum Ambient Temperature alarm limit in tenths of degrees Fahrenheit." - ::= { battManConfig 13 } - -battManConfigMinAmbientTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Minimum Ambient Temperature alarm limit in tenths of degrees Celsius." - ::= { battManConfig 14 } - -battManConfigMaxRippleCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum ripple current alarm limit for the monitored battery - strings in percent of AH capacity." - ::= { battManConfig 15 } - -battManConfigMaxCurrentAcceptanceDeviation OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum current acceptance deviation alarm limit in percent." - ::= { battManConfig 16 } - -battManConfigMonitorWireLength OBJECT-TYPE - SYNTAX INTEGER { - fiftyFeetOrLess (1), - moreThanFiftyFeet (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The monitor wire length: - fiftyFeetOrLess (1) indicates that the wire length is less than or equal to 50 feet. - moreThanFiftyFeet (2) indicates that the wire length is greater than 50 feet." - ::= { battManConfig 17 } - -battManConfigDischargeVoltageAlarmLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The discharge voltage alarm level in percent." - ::= { battManConfig 18 } - -battManConfigAutoAnnunciatorReset OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The annunciator output signal reset method: - disabled(1) means the annunciator signal output will be reset when the reset button is pressed. - enabled(2) means the annunciator will stop signaling when all alarm conditions clear." - ::= { battManConfig 19 } - -battManConfigSuspendCellVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This is used along with the number of cells per battery - and the number of batteries per string to determine if - a battery string has violated the low voltage limit. If - so, the Battery Management System will enter suspend mode. - Measured in millivolts DC" - ::= { battManConfig 20 } - -battManConfigOhmicTestWaitTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time in seconds after a discharge event before - data will be collected for the ohmic value calculation." - ::= { battManConfig 21 } - -battManConfigNumberOfBoosts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of consecutive times the Battery Management - System applies a charge to each battery during a boost - cycle. Batteries with a Rated Battery AH Capacity - less than or equal to 120 AH will always have a value - of one for Number of Boosts." - ::= { battManConfig 22 } - --- the battManAlarm group - -battManAlarmManagementController OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Management Controller Alarm is : - normal(1) no alarm conditions identified - alarm(2) an alarm condition exists." - ::= { battManAlarm 1 } - -battManAlarmBatteries OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Batteries Alarm is : - normal(1) no alarm conditions identified - alarm(2) an alarm condition exists." - ::= { battManAlarm 2 } - -battManAlarmCharger OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Charger Alarm is : - normal(1) no alarm conditions identified - alarm(2) an alarm condition exists." - ::= { battManAlarm 3 } - -battManAlarmEnvironment OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Environment Alarm is : - normal(1) no alarm conditions identified - alarm(2) an alarm condition exists." - ::= { battManAlarm 4 } - --- the battManSystemStatus group - --- These are system wide parameters - -battManSystemAmbientTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system ambient temperature in tenths of degrees Celsius." - ::= { battManSystemStatus 1 } - -battManSystemAmbientTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system ambient temperature in tenths of degrees Fahrenheit." - ::= { battManSystemStatus 2 } - -battManSystemPilotTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system pilot temperature in tenths of degrees Celsius." - ::= { battManSystemStatus 3 } - -battManSystemPilotTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system pilot temperature in tenths of degrees Fahrenheit." - ::= { battManSystemStatus 4 } - -battManSystemAmbientHighTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system has a high temperature alarm." - ::= { battManSystemStatus 5 } - -battManSystemAmbientLowTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system has a low temperature alarm." - ::= { battManSystemStatus 6 } - -battManSystemPilotBatteryHighTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system has a pilot battery high temperature alarm." - ::= { battManSystemStatus 7 } - -battManSystemPilotProbeDisconnected OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system pilot probe is disconnected." - ::= { battManSystemStatus 8 } - -battManSystemAmbientProbeDisconnected OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system ambient probe is disconnected." - ::= { battManSystemStatus 9 } - -battManSystemConfigurationInvalid OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system is not configured correctly." - ::= { battManSystemStatus 10 } - -battManSystemSuspendVoltage OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the system has suspended voltage scans." - ::= { battManSystemStatus 11 } - --- This is a table of input contact parameters - -battManInputContactTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManInputContactTable." - ::= { battManInputContactStatus 1 } - -battManInputContactTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManInputContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each contact - in the system. " - ::= { battManInputContactStatus 2 } - -battManInputContactEntry OBJECT-TYPE - SYNTAX BattManInputContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The contact to get data from." - INDEX { battManInputContactIndex } - ::= { battManInputContactTable 1 } - -BattManInputContactEntry ::= - SEQUENCE { - battManInputContactIndex INTEGER, - battManInputContactName DisplayString, - battManInputContactAlarmState INTEGER, - battManInputContactState INTEGER, - battManInputContactNormalState INTEGER, - battManInputContactAlarmDelay INTEGER - } - -battManInputContactIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of contact entries in the table." - ::= { battManInputContactEntry 1 } - -battManInputContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the input contact." - ::= { battManInputContactEntry 2 } - -battManInputContactAlarmState OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the alarm condition is active for this contact." - ::= { battManInputContactEntry 3 } - -battManInputContactState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to open(1), the input contact is in the open state. - When set to closed(2), the input contact is in the closed state." - ::= { battManInputContactEntry 4 } - -battManInputContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When set to open(1), the input contact is normally open. - When set to closed(2), the input contact is normally closed." - ::= { battManInputContactEntry 5 } - -battManInputContactAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The input contact alarm delay time in seconds." - ::= { battManInputContactEntry 6 } - --- This is a table of battery string parameters - -battManStringTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManStringTable." - ::= { battManStringStatus 1 } - -battManStringTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManStringEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each string - in the system. " - ::= { battManStringStatus 2 } - -battManStringEntry OBJECT-TYPE - SYNTAX BattManStringEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManStringIndex } - ::= { battManStringTable 1 } - -BattManStringEntry ::= - SEQUENCE { - battManStringIndex INTEGER, - battManStringCurrent INTEGER, - battManStringRippleCurrent INTEGER, - battManStringChargerHighVoltageAlarm INTEGER, - battManStringChargerLowVoltageAlarm INTEGER, - battManStringCurrentProbeDisconnected INTEGER, - battManStringOnBattery INTEGER, - battManStringHighRippleCurrent INTEGER, - battManStringVoltage INTEGER, - battManStringDischargeLess5Seconds INTEGER, - battManStringDischarge5to10Seconds INTEGER, - battManStringDischarge10to60Seconds INTEGER, - battManStringDischargeMore60Seconds INTEGER - } - -battManStringIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of string entries in the table." - ::= { battManStringEntry 1 } - -battManStringCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The string current in tenths of amps." - ::= { battManStringEntry 2 } - -battManStringRippleCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The string ripple current in tenths of amps." - ::= { battManStringEntry 3 } - -battManStringChargerHighVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the string charger has a high voltage alarm." - ::= { battManStringEntry 4 } - -battManStringChargerLowVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the string charger has a low voltage alarm." - ::= { battManStringEntry 5 } - -battManStringCurrentProbeDisconnected OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the string charger probe is disconnected." - ::= { battManStringEntry 6 } - -battManStringOnBattery OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the string is in the on-battery state." - ::= { battManStringEntry 7 } - -battManStringHighRippleCurrent OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that the string has a high ripple current." - ::= { battManStringEntry 8 } - -battManStringVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sum of the voltages for all of the batteries on a - string in millivolts DC." - ::= { battManStringEntry 9 } - -battManStringDischargeLess5Seconds OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of recorded discharges lasting less than - 5 seconds." - ::= { battManStringEntry 10 } - -battManStringDischarge5to10Seconds OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of recorded discharges lasting between 5 - and 10 seconds." - ::= { battManStringEntry 11 } - -battManStringDischarge10to60Seconds OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of recorded discharges lasting between 10 - and 60 seconds." - ::= { battManStringEntry 12 } - -battManStringDischargeMore60Seconds OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of recorded discharges lasting more than - 60 seconds (1 minute)." - ::= { battManStringEntry 13 } - --- the battManString1BatteryStatus group - -battManString1BatteryTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString1BatteryTable." - ::= { battManBatteryStatus 1 } - -battManString1BatteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString1BatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each string - in the system. " - ::= { battManBatteryStatus 2 } - -battManString1BatteryEntry OBJECT-TYPE - SYNTAX BattManString1BatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString1BatteryIndex } - ::= { battManString1BatteryTable 1 } - -BattManString1BatteryEntry ::= - SEQUENCE { - battManString1BatteryIndex INTEGER, - battManString1BatteryVoltage INTEGER, - battManString1BatteryLowestVoltage INTEGER, - battManString1BatteryCellShorted INTEGER, - battManString1BatteryOpenFuseOrConnection INTEGER, - battManString1BatteryLowCapacity INTEGER, - battManString1BatteryHighOhmicValue INTEGER, - battManString1BatteryThermalRunaway INTEGER, - battManString1BatteryDryout INTEGER, - battManString1BatteryUserHighVoltageAlarm INTEGER, - battManString1BatteryUserLowVoltageAlarm INTEGER, - battManString1BatteryChemHighVoltageAlarm INTEGER, - battManString1BatteryChemLowVoltageAlarm INTEGER, - battManString1BatteryOpenCell INTEGER - } - -battManString1BatteryIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of string entries in the table." - ::= { battManString1BatteryEntry 1 } - -battManString1BatteryVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery voltage in millivolts DC." - ::= { battManString1BatteryEntry 2 } - -battManString1BatteryLowestVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The lowest battery discharge voltage during the last power event in millivolts DC." - ::= { battManString1BatteryEntry 3 } - -battManString1BatteryCellShorted OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that a battery cell is shorted." - ::= { battManString1BatteryEntry 4 } - -battManString1BatteryOpenFuseOrConnection OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that a fuse or connection is open." - ::= { battManString1BatteryEntry 5 } - -battManString1BatteryLowCapacity OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has low capacity." - ::= { battManString1BatteryEntry 6 } - -battManString1BatteryHighOhmicValue OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has a high ohmic value." - ::= { battManString1BatteryEntry 7 } - -battManString1BatteryThermalRunaway OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has a thermal runaway condition." - ::= { battManString1BatteryEntry 8 } - -battManString1BatteryDryout OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has a dryout condition." - ::= { battManString1BatteryEntry 9 } - -battManString1BatteryUserHighVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the user level high voltage limit." - ::= { battManString1BatteryEntry 10 } - -battManString1BatteryUserLowVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the user level low voltage limit." - ::= { battManString1BatteryEntry 11 } - -battManString1BatteryChemHighVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the chemistry level high voltage limit." - ::= { battManString1BatteryEntry 12 } - -battManString1BatteryChemLowVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the chemistry level low voltage limit." - ::= { battManString1BatteryEntry 13 } - -battManString1BatteryOpenCell OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates the battery has an open - cell or an inter-connection is abnormal." - ::= { battManString1BatteryEntry 14 } - - --- the battManString2BatteryStatus group - -battManString2BatteryTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString2BatteryTable." - ::= { battManBatteryStatus 3 } - -battManString2BatteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString2BatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each string - in the system. " - ::= { battManBatteryStatus 4 } - -battManString2BatteryEntry OBJECT-TYPE - SYNTAX BattManString2BatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString2BatteryIndex } - ::= { battManString2BatteryTable 1 } - -BattManString2BatteryEntry ::= - SEQUENCE { - battManString2BatteryIndex INTEGER, - battManString2BatteryVoltage INTEGER, - battManString2BatteryLowestVoltage INTEGER, - battManString2BatteryCellShorted INTEGER, - battManString2BatteryOpenFuseOrConnection INTEGER, - battManString2BatteryLowCapacity INTEGER, - battManString2BatteryHighOhmicValue INTEGER, - battManString2BatteryThermalRunaway INTEGER, - battManString2BatteryDryout INTEGER, - battManString2BatteryUserHighVoltageAlarm INTEGER, - battManString2BatteryUserLowVoltageAlarm INTEGER, - battManString2BatteryChemHighVoltageAlarm INTEGER, - battManString2BatteryChemLowVoltageAlarm INTEGER, - battManString2BatteryOpenCell INTEGER - } - -battManString2BatteryIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of string entries in the table." - ::= { battManString2BatteryEntry 1 } - -battManString2BatteryVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery voltage in millivolts DC." - ::= { battManString2BatteryEntry 2 } - -battManString2BatteryLowestVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The lowest battery discharge voltage during the last power event in millivolts DC." - ::= { battManString2BatteryEntry 3 } - -battManString2BatteryCellShorted OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that a battery cell is shorted." - ::= { battManString2BatteryEntry 4 } - -battManString2BatteryOpenFuseOrConnection OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates that a fuse or connection is open." - ::= { battManString2BatteryEntry 5 } - -battManString2BatteryLowCapacity OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has low capacity." - ::= { battManString2BatteryEntry 6 } - -battManString2BatteryHighOhmicValue OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has a high ohmic value." - ::= { battManString2BatteryEntry 7 } - -battManString2BatteryThermalRunaway OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has a thermal runaway condition." - ::= { battManString2BatteryEntry 8 } - -battManString2BatteryDryout OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has a dryout condition." - ::= { battManString2BatteryEntry 9 } - -battManString2BatteryUserHighVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the user level high voltage limit." - ::= { battManString2BatteryEntry 10 } - -battManString2BatteryUserLowVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the user level low voltage limit." - ::= { battManString2BatteryEntry 11 } - -battManString2BatteryChemHighVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the chemistry level high voltage limit." - ::= { battManString2BatteryEntry 12 } - -battManString2BatteryChemLowVoltageAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates a battery has violated - the chemistry level low voltage limit." - ::= { battManString2BatteryEntry 13 } - -battManString2BatteryOpenCell OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates the battery has an open - cell or an inter-connection is abnormal." - ::= { battManString2BatteryEntry 14 } - --- battery manager control group -battManRemoteAnnunciatorReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset the user interface annunciator. - Getting this OID will do nothing and return the noOperation(1) value." - ::= { battManControl 1 } - -battManResetChargeCurrentDeviationBenchmark OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset the charge current deviation benchmark. - Getting this OID will do nothing and return the noOperation(1) value." - ::= { battManControl 2 } - -battManResetLowestDischargeVoltages OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset the lowest discharge voltages. - Getting this OID will do nothing and return the noOperation(1) value." - ::= { battManControl 3 } - -battManResetDischargeCounters OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset all discharge event counters. - Getting this OID will do nothing and return the noOperation(1) value." - ::= { battManControl 4 } - --- the battManTestResults group - ---string 1 test results table - -battManString1OhmicValueLastDischargeInfo OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Informational text showing the date/time, load, and pilot temperature for the string - during the last discharge when ohmic values were recorded." - ::= { battManTestResults 1 } - -battManString1OhmicValueTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString1OhmicValueTable." - ::= { battManTestResults 2 } - -battManString1OhmicValueTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString1OhmicValueEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting ohmic value information from each battery in String 1." - ::= { battManTestResults 3 } - -battManString1OhmicValueEntry OBJECT-TYPE - SYNTAX BattManString1OhmicValueEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString1OhmicValueIndex } - ::= { battManString1OhmicValueTable 1 } - -BattManString1OhmicValueEntry ::= - SEQUENCE { - battManString1OhmicValueIndex INTEGER, - battManString1OhmicValueData INTEGER - } - -battManString1OhmicValueIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery number." - ::= { battManString1OhmicValueEntry 1 } - -battManString1OhmicValueData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery inter-tier ohmic value in ohms. - Note: Zero or negative values are invalid and may indicate - faulty calibration of ohmic value correction factors." - ::= { battManString1OhmicValueEntry 2 } - -battManString1ResponseTestChangeTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString1ResponseTestChangeTable." - ::= { battManTestResults 4 } - -battManString1ResponseTestChangeTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString1ResponseTestChangeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting response test change information from each battery in String 1." - ::= { battManTestResults 5 } - -battManString1ResponseTestChangeEntry OBJECT-TYPE - SYNTAX BattManString1ResponseTestChangeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString1ResponseTestChangeIndex } - ::= { battManString1ResponseTestChangeTable 1 } - -BattManString1ResponseTestChangeEntry ::= - SEQUENCE { - battManString1ResponseTestChangeIndex INTEGER, - battManString1ResponseTestChangeData INTEGER - } - -battManString1ResponseTestChangeIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the entries in the table." - ::= { battManString1ResponseTestChangeEntry 1 } - -battManString1ResponseTestChangeData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery response test change in percent." - ::= { battManString1ResponseTestChangeEntry 2 } - -battManString2OhmicValueLastDischargeInfo OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Informational text showing the date/time, load, and pilot temperature for the string - during the last discharge when ohmic values were recorded." - ::= { battManTestResults 6 } - -battManString2OhmicValueTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString2OhmicValueTable." - ::= { battManTestResults 7 } - -battManString2OhmicValueTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString2OhmicValueEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting ohmic value information from each battery in String 2." - ::= { battManTestResults 8 } - -battManString2OhmicValueEntry OBJECT-TYPE - SYNTAX BattManString2OhmicValueEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString2OhmicValueIndex } - ::= { battManString2OhmicValueTable 1 } - -BattManString2OhmicValueEntry ::= - SEQUENCE { - battManString2OhmicValueIndex INTEGER, - battManString2OhmicValueData INTEGER - } - -battManString2OhmicValueIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of battery calibration entries in the table." - ::= { battManString2OhmicValueEntry 1 } - -battManString2OhmicValueData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery inter-tier ohmic value in ohms. - Note: Zero or negative values are invalid and may indicate - faulty calibration of ohmic value correction factors." - ::= { battManString2OhmicValueEntry 2 } - -battManString2ResponseTestChangeTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString2ResponseTestChangeTable." - ::= { battManTestResults 9 } - -battManString2ResponseTestChangeTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString2ResponseTestChangeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting response test change information from each battery in String 2." - ::= { battManTestResults 10 } - -battManString2ResponseTestChangeEntry OBJECT-TYPE - SYNTAX BattManString2ResponseTestChangeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString2ResponseTestChangeIndex } - ::= { battManString2ResponseTestChangeTable 1 } - -BattManString2ResponseTestChangeEntry ::= - SEQUENCE { - battManString2ResponseTestChangeIndex INTEGER, - battManString2ResponseTestChangeData INTEGER - } - -battManString2ResponseTestChangeIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the entries in the table." - ::= { battManString2ResponseTestChangeEntry 1 } - -battManString2ResponseTestChangeData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery response test change in percent." - ::= { battManString2ResponseTestChangeEntry 2 } - -battManString1ResponseTestCurrentTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString1ResponseTestCurrentTable." - ::= { battManTestResults 11 } - -battManString1ResponseTestCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString1ResponseTestCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting response test current information from each battery - in String 1." - ::= { battManTestResults 12 } - -battManString1ResponseTestCurrentEntry OBJECT-TYPE - SYNTAX BattManString1ResponseTestCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString1ResponseTestCurrentIndex } - ::= { battManString1ResponseTestCurrentTable 1 } - -BattManString1ResponseTestCurrentEntry ::= - SEQUENCE { - battManString1ResponseTestCurrentIndex INTEGER, - battManString1ResponseTestCurrentData INTEGER - } - -battManString1ResponseTestCurrentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the entries in the table." - ::= { battManString1ResponseTestCurrentEntry 1 } - -battManString1ResponseTestCurrentData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery response test current in milliamps." - ::= { battManString1ResponseTestCurrentEntry 2 } - -battManString2ResponseTestCurrentTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString2ResponseTestCurrentTable." - ::= { battManTestResults 13 } - -battManString2ResponseTestCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString2ResponseTestCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting response test current information from each battery - in String 2." - ::= { battManTestResults 14 } - -battManString2ResponseTestCurrentEntry OBJECT-TYPE - SYNTAX BattManString2ResponseTestCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString2ResponseTestCurrentIndex } - ::= { battManString2ResponseTestCurrentTable 1 } - -BattManString2ResponseTestCurrentEntry ::= - SEQUENCE { - battManString2ResponseTestCurrentIndex INTEGER, - battManString2ResponseTestCurrentData INTEGER - } - -battManString2ResponseTestCurrentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the entries in the table." - ::= { battManString2ResponseTestCurrentEntry 1 } - -battManString2ResponseTestCurrentData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery response test current in milliamps." - ::= { battManString2ResponseTestCurrentEntry 2 } - -battManString1ResponseTestCurrentBenchmarkTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString1ResponseTestCurrentBenchmarkTable." - ::= { battManTestResults 15 } - -battManString1ResponseTestCurrentBenchmarkTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString1ResponseTestCurrentBenchmarkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting response test current benchmark information from - each battery in String 1." - ::= { battManTestResults 16 } - -battManString1ResponseTestCurrentBenchmarkEntry OBJECT-TYPE - SYNTAX BattManString1ResponseTestCurrentBenchmarkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString1ResponseTestCurrentBenchmarkIndex } - ::= { battManString1ResponseTestCurrentBenchmarkTable 1 } - -BattManString1ResponseTestCurrentBenchmarkEntry ::= - SEQUENCE { - battManString1ResponseTestCurrentBenchmarkIndex INTEGER, - battManString1ResponseTestCurrentBenchmarkData INTEGER - } - -battManString1ResponseTestCurrentBenchmarkIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the entries in the table." - ::= { battManString1ResponseTestCurrentBenchmarkEntry 1 } - -battManString1ResponseTestCurrentBenchmarkData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery response test current benchmark in milliamps." - ::= { battManString1ResponseTestCurrentBenchmarkEntry 2 } - -battManString2ResponseTestCurrentBenchmarkTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManString2ResponseTestCurrentBenchmarkTable." - ::= { battManTestResults 17 } - -battManString2ResponseTestCurrentBenchmarkTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManString2ResponseTestCurrentBenchmarkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting response test current benchmark information from - each battery in String 2." - ::= { battManTestResults 18 } - -battManString2ResponseTestCurrentBenchmarkEntry OBJECT-TYPE - SYNTAX BattManString2ResponseTestCurrentBenchmarkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The string to get data from." - INDEX { battManString2ResponseTestCurrentBenchmarkIndex } - ::= { battManString2ResponseTestCurrentBenchmarkTable 1 } - -BattManString2ResponseTestCurrentBenchmarkEntry ::= - SEQUENCE { - battManString2ResponseTestCurrentBenchmarkIndex INTEGER, - battManString2ResponseTestCurrentBenchmarkData INTEGER - } - -battManString2ResponseTestCurrentBenchmarkIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the entries in the table." - ::= { battManString2ResponseTestCurrentBenchmarkEntry 1 } - -battManString2ResponseTestCurrentBenchmarkData OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery response test current benchmark in milliamps." - ::= { battManString2ResponseTestCurrentBenchmarkEntry 2 } - --- battManUnitStatus - -battManUnitStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the battManUnitStatusTable." - ::= { battManUnitStatus 1 } - -battManUnitStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF BattManUnitStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting status information from each unit in the system." - ::= { battManUnitStatus 2 } - -battManUnitStatusEntry OBJECT-TYPE - SYNTAX BattManUnitStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { battManUnitStatusIndex } - ::= { battManUnitStatusTable 1 } - -BattManUnitStatusEntry ::= - SEQUENCE { - battManUnitStatusIndex INTEGER, - battManUnitStatusSerialNumber DisplayString, - battManUnitHardwareRev INTEGER, - battManUnitFirmwareRev INTEGER, - battManUnitCommLoss INTEGER, - battManUnitRelayStuck INTEGER - } - -battManUnitStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of unit status entries in the table." - ::= { battManUnitStatusEntry 1 } - -battManUnitStatusSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager unit serial number character string. - This value is set at the factory." - ::= { battManUnitStatusEntry 2 } - -battManUnitHardwareRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager unit hardware revision. - This value is set at the factory." - ::= { battManUnitStatusEntry 3 } - -battManUnitFirmwareRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery manager unit firmware revision. - This value is set at the factory and can change with firmware update." - ::= { battManUnitStatusEntry 4 } - -battManUnitCommLoss OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates the system has lost - communication with the unit." - ::= { battManUnitStatusEntry 5 } - -battManUnitRelayStuck OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When set to alarm(2), indicates the unit monitor relay - is stuck." - ::= { battManUnitStatusEntry 6 } - - --- the xPDUIdent group - -xPDUIdentProductName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the PDU." - ::= { xPDUIdent 1 } - -xPDUIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the PDU. - This value is set at the factory." - ::= { xPDUIdent 2 } - -xPDUIdentFirmwareAppRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application firmware revision of the PDU." - ::= { xPDUIdent 3 } - -xPDUIdentFirmwareAppOSRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application operating system firmware revision of the PDU." - ::= { xPDUIdent 4 } - -xPDUIdentFirmwareControllerRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the PDU controller firmware revision." - ::= { xPDUIdent 5 } - -xPDUIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the PDU was manufactured in mm/dd/yyyy format. - This value is set at the factory." - ::= { xPDUIdent 6 } - -xPDUIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the model number of - the PDU. This value is set at the factory." - ::= { xPDUIdent 7 } - -xPDUIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of - the PDU. This value is set at the factory." - ::= { xPDUIdent 8 } - --- the xPDUDevice group - -xPDUDeviceNominalMainInputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal main input voltage to the PDU. Measured in Volts, - line-to-line for a 3-wire (delta) service or line-to-neutral for a - 4-wire (wye) service." - ::= { xPDUDevice 1 } - -xPDUDeviceServiceType OBJECT-TYPE - SYNTAX INTEGER { - threeWire (1), - fourWire (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of utility input to the PDU. Either 3 wires (delta), or 4 wires (wye)." - ::= { xPDUDevice 2 } - -xPDUDeviceNominalOutputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal line-to-neutral output voltage to the load measured in Volts." - ::= { xPDUDevice 3 } - -xPDUDeviceMainInputBreakerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rating of the main input breaker measured in Amps." - ::= { xPDUDevice 4 } - -xPDUDevicePanelBreakerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rating of the panel breaker measured in Amps." - ::= { xPDUDevice 5 } - -xPDUDeviceTransformerPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not a transformer is installed in the PDU." - ::= { xPDUDevice 6 } - -xPDUDeviceLoadTieBreakerPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not a load tie breaker is installed in the PDU." - ::= { xPDUDevice 7 } - -xPDUDeviceLoadTestPortPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not a load test port is installed in the PDU." - ::= { xPDUDevice 8 } - -xPDUDeviceFusesPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not the UPS feed from the PDU includes fuses." - ::= { xPDUDevice 9 } - -xPDUDeviceFansPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not cooling fans are installed in the PDU." - ::= { xPDUDevice 10 } - -xPDUDeviceBypassInputPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not the PDU is equipped with a second feed for - the UPS's bypass input." - ::= { xPDUDevice 11 } - -xPDUDeviceCrossTieOutputPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not the PDU is equipped with a cross-tie output." - ::= { xPDUDevice 12 } - -xPDUDeviceEarthGroundMonitorPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not the PDU can provide ground current measurements." - ::= { xPDUDevice 13 } - -xPDUDeviceInfraStruXureType OBJECT-TYPE - SYNTAX INTEGER { - typeB (1), - typeC (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the configuration of this PDU system. - Type-B PDU is in a distributed UPS system and has bypass capabilities. - Type-C PDU receives power from a larger central UPS." - ::= { xPDUDevice 14 } - --- Main Input - -xPDUMainInputOverVoltThreshold OBJECT-TYPE - SYNTAX INTEGER (0..30) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which an input over voltage condition will be generated. - Specified as percent deviation from nominal." - ::= { xPDUMainInput 1 } - -xPDUMainInputUnderVoltThreshold OBJECT-TYPE - SYNTAX INTEGER (0..30) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which an input under voltage condition will be generated. - Specified as percent deviation from nominal. - A value of zero indicates that the threshold is disabled." - ::= { xPDUMainInput 2 } - --- Main Input Voltage Table - -xPDUMainInputVoltageTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Main input voltage entries." - ::= { xPDUMainInput 3 } - -xPDUMainInputVoltagePhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUMainInputVoltagePhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input voltage table entries. The number of - entries are the phase entries. - The number of entries is contained in the - xPDUMainInputVoltageTableSize OID." - ::= { xPDUMainInput 4 } - - xPDUMainInputVoltagePhaseEntry OBJECT-TYPE - SYNTAX XPDUMainInputVoltagePhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular main input voltage phase." - INDEX { xPDUMainInputVoltagePhaseIndex } - ::= { xPDUMainInputVoltagePhaseTable 1 } - - XPDUMainInputVoltagePhaseEntry ::= SEQUENCE { - xPDUMainInputVoltagePhaseIndex INTEGER, - xPDUMainInputVoltageLtoL INTEGER, - xPDUMainInputVoltageLtoN INTEGER - } - - xPDUMainInputVoltagePhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each input phase entry in the table." - ::= { xPDUMainInputVoltagePhaseEntry 1 } - - xPDUMainInputVoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-line PDU input voltage when an isolation transformer is present, - or -1 if no transformer present in this PDU. Measured in tenths of Volts." - ::= { xPDUMainInputVoltagePhaseEntry 2 } - - xPDUMainInputVoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-neutral PDU input voltage when an isolation transformer is not present, - or -1 if a transformer is present in this PDU. Measured in tenths of Volts." - ::= { xPDUMainInputVoltagePhaseEntry 3 } - - -xPDUBypassInputOverVoltThreshold OBJECT-TYPE - SYNTAX INTEGER (0..30) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which a bypass input over voltage condition will be generated. - Specified as percent deviation from nominal." - ::= { xPDUBypassInput 1 } - -xPDUBypassInputUnderVoltThreshold OBJECT-TYPE - SYNTAX INTEGER (0..30) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which an bypass input under voltage condition will be generated. - Specified as percent deviation from nominal. - A value of zero indicates that the threshold is disabled." - ::= { xPDUBypassInput 2 } - --- Bypass Input Voltage Table - -xPDUBypassInputVoltagePhaseTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of bypass input voltage entries." - ::= { xPDUBypassInput 3 } - -xPDUBypassInputVoltagePhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUBypassInputVoltagePhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of - entries are the phase entries. - The number of entries is contained in the - xPDUBypassInputVoltagePhaseTableSize OID." - ::= { xPDUBypassInput 4 } - - xPDUBypassInputVoltagePhaseEntry OBJECT-TYPE - SYNTAX XPDUBypassInputVoltagePhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular bypass input voltage phase." - INDEX { xPDUBypassInputVoltagePhaseIndex } - ::= { xPDUBypassInputVoltagePhaseTable 1 } - - XPDUBypassInputVoltagePhaseEntry ::= SEQUENCE { - xPDUBypassInputVoltagePhaseIndex INTEGER, - xPDUBypassInputVoltageLtoL INTEGER, - xPDUBypassInputVoltageLtoN INTEGER - } - - xPDUBypassInputVoltagePhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of each bypass input phase entry in the table." - ::= { xPDUBypassInputVoltagePhaseEntry 1 } - - xPDUBypassInputVoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-line bypass input voltage, or -1 if no bypass - feed is present in this PDU. Measured in tenths of Volts." - ::= { xPDUBypassInputVoltagePhaseEntry 2 } - - xPDUBypassInputVoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-neutral bypass input voltage, or -1 if no bypass - feed is present in this PDU. Measured in tenths of Volts." - ::= { xPDUBypassInputVoltagePhaseEntry 3 } - --- UPS Input Table - -xPDUUPSInputVoltagePhaseTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of UPS input voltage entries." - ::= { xPDUUPSInput 1 } - -xPDUUPSInputVoltagePhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUUPSInputVoltagePhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of UPS input table entries. The number of - entries are the phase entries. - The number of entries is contained in the - xPDUUPSInputVoltagePhaseTableSize OID." - ::= { xPDUUPSInput 2 } - - xPDUUPSInputVoltagePhaseEntry OBJECT-TYPE - SYNTAX XPDUUPSInputVoltagePhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular UPS input voltage phase." - INDEX { xPDUUPSInputVoltagePhaseIndex } - ::= { xPDUUPSInputVoltagePhaseTable 1 } - - XPDUUPSInputVoltagePhaseEntry ::= SEQUENCE { - xPDUUPSInputVoltagePhaseIndex INTEGER, - xPDUUPSInputVoltageLtoNPresent INTEGER - } - - xPDUUPSInputVoltagePhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each UPS input phase entry in the table." - ::= { xPDUUPSInputVoltagePhaseEntry 1 } - - xPDUUPSInputVoltageLtoNPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not voltage is present at the UPS feed." - ::= { xPDUUPSInputVoltagePhaseEntry 2 } - --- System Output - -xPDUSystemOutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system output frequency in tenths of Hertz." - ::= { xPDUSystemOutput 1 } - -xPDUSystemOutputNeutralCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the neutral current measured at the system output in tenths of Amps." - ::= { xPDUSystemOutput 2 } - -xPDUSystemOutputTotalPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the total system output power in tenths of kW." - ::= { xPDUSystemOutput 3 } - -xPDUSystemOutputTotalApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the total system output power in tenths of kVA." - ::= { xPDUSystemOutput 4 } - -xPDUSystemOutputTotalPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the total power factor of the system output. - A value of 100 representing a unity power factor (1.00). - Measured in hundredths." - ::= { xPDUSystemOutput 5 } - -xPDUSystemOutputFrequencyTolerance OBJECT-TYPE - SYNTAX INTEGER{ - freqToleranceOff (1), - freqTolerancePointTwo (2), - freqTolerancePointFive (3), - freqToleranceOne (4), - freqToleranceOnePointFive (5), - freqToleranceTwo (6), - freqToleranceThree (7), - freqToleranceFour (8), - freqToleranceFive (9), - freqToleranceNine (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Shows the circuit panel output frequency tolerance in Hertz." - ::= { xPDUSystemOutput 6 } - -xPDUSystemOutputMaxKWPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Defines 100% load in kW. - Purpose is to set to match UPS capabilities." - ::= { xPDUSystemOutput 7 } - -xPDUSystemOutputOverVoltThreshold OBJECT-TYPE - SYNTAX INTEGER (0..30) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which an output over voltage condition will be generated. - Specified as percent deviation from nominal." - ::= { xPDUSystemOutput 8 } - -xPDUSystemOutputUnderVoltThreshold OBJECT-TYPE - SYNTAX INTEGER (0..30) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which an output under voltage condition will be generated. - Specified as percent deviation from nominal. - A value of zero indicates that the threshold is disabled." - ::= { xPDUSystemOutput 9 } - - -xPDUSystemOutputOverCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which an over current condition will be generated. - Specified as a percent of the panel breaker rating. - A value of zero indicates that the threshold is disabled." - ::= { xPDUSystemOutput 10 } - -xPDUSystemOutputOverCurrentNeutralThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which an Over current neutral condition will be generated. - Specified as a percent of the panel breaker rating. - A value of zero indicates that the threshold is disabled." - ::= { xPDUSystemOutput 11 } - -xPDUSystemOutputUnderCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which an under current condition will be generated. - Specified as a percent of the panel breaker rating. - A value of zero indicates that the threshold is disabled." - ::= { xPDUSystemOutput 12 } - -xPDUSystemOutputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of System Output phase entries." - ::= { xPDUSystemOutput 13 } - -xPDUSystemOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUSystemOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of system output table entries. - The number of entries is contained in the - xPDUSystemOutputTableSize OID." - ::= { xPDUSystemOutput 14 } - - xPDUSystemOutputPhaseEntry OBJECT-TYPE - SYNTAX XPDUSystemOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular system output phase." - INDEX { xPDUSystemOutputPhaseIndex } - ::= { xPDUSystemOutputPhaseTable 1 } - - XPDUSystemOutputPhaseEntry ::= SEQUENCE { - xPDUSystemOutputPhaseIndex INTEGER, - xPDUSystemOutputVoltageLtoL INTEGER, - xPDUSystemOutputVoltageLtoN INTEGER, - xPDUSystemOutputPhaseCurrent INTEGER, - xPDUSystemOutputPower INTEGER, - xPDUSystemOutputApparentPower INTEGER, - xPDUSystemOutputPowerFactor INTEGER - } - - xPDUSystemOutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each output phase entry in the table." - ::= { xPDUSystemOutputPhaseEntry 1 } - - xPDUSystemOutputVoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-line system output voltage available at the circuit panel. - Measured in tenths of Volts." - ::= { xPDUSystemOutputPhaseEntry 2 } - - xPDUSystemOutputVoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-neutral system output voltage available at the circuit panel. - Measured in tenths of Volts." - ::= { xPDUSystemOutputPhaseEntry 3 } - - - xPDUSystemOutputPhaseCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System load current per phase. Measured in tenths of Amps." - ::= { xPDUSystemOutputPhaseEntry 4 } - - xPDUSystemOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System output power per phase. Measured in tenths of kW." - ::= { xPDUSystemOutputPhaseEntry 5 } - - xPDUSystemOutputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System output power per phase. Measured in tenths of kVA." - ::= { xPDUSystemOutputPhaseEntry 6 } - - xPDUSystemOutputPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the Power Factor of the system output per phase. - A value of 100 representing a unity Power Factor (1.00). - Measured in hundredths." - ::= { xPDUSystemOutputPhaseEntry 7 } - -xPDUGroundCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the current measured in the earth ground conductor. - Measured in tenths of Amps, or -1 if not available." - ::= { xPDUGroundMonitorPoint 1 } - -xPDUGroundCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..50) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which a ground current over current - condition will be generated. Specified in tenths of Amps." - ::= { xPDUGroundMonitorPoint 2 } - --- System Breakers - -xPDUSystemBreakerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of system breaker entries." - ::= { xPDUSystemBreakers 1 } - -xPDUSystemBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUSystemBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of system breaker entries. - The number of entries is contained in the - xPDUSystemBreakerTableSize OID." - ::= { xPDUSystemBreakers 2 } - - xPDUSystemBreakerEntry OBJECT-TYPE - SYNTAX XPDUSystemBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular system breaker." - INDEX { xPDUSystemBreakerTableIndex } - ::= { xPDUSystemBreakerTable 1 } - - XPDUSystemBreakerEntry ::= SEQUENCE { - xPDUSystemBreakerTableIndex INTEGER, - xPDUSystemBreakerDescription DisplayString, - xPDUSystemBreakerPosition INTEGER - } - - xPDUSystemBreakerTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of system breaker entries in the table." - ::= { xPDUSystemBreakerEntry 1 } - -xPDUSystemBreakerDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A brief description of the system breakers." - ::= { xPDUSystemBreakerEntry 2 } - - xPDUSystemBreakerPosition OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether this breaker is open(1) or closed(2)." - ::= { xPDUSystemBreakerEntry 3 } - --- Branch Breakers (Breaker Panel) - -xPDUNumOfBranchBreakers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of branch breakers (panel positions) in the Panel. - returns 42 for a 1-panel or 84 for a 2-panel system." - ::= { xPDUBranchBreakers 1 } - --- Branch Breakers Table - -xPDUBranchBreakerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of branch breaker entries determined by the xPDUNumOfBranchBreakers OID." - ::= { xPDUBranchBreakers 2 } - -xPDUBranchBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUBranchBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of branch breaker table entries. The - number of entries is given by the value of xPDUBranchBreakerTableSize - The number of entries is contained in the xPDUBranchBreakerTableSize OID." - ::= { xPDUBranchBreakers 3 } - - xPDUBranchBreakerEntry OBJECT-TYPE - SYNTAX XPDUBranchBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular branch breaker (panel position)." - INDEX { xPDUBranchBreakerTableIndex } - ::= { xPDUBranchBreakerTable 1 } - - XPDUBranchBreakerEntry ::= SEQUENCE { - xPDUBranchBreakerTableIndex INTEGER, - xPDUBranchBreakerRating INTEGER, - xPDUBranchBreakerRDPFeed INTEGER, - xPDUBranchBreakerTieIndicator INTEGER, - xPDUBranchBreakerCurrent INTEGER, - xPDUBranchBreakerOverCurrentThreshold INTEGER, - xPDUBranchBreakerUnderCurrentThreshold INTEGER, - xPDUBranchBreakerMaxCurrentThreshold INTEGER, - xPDUBranchBreakerMinCurrentThreshold INTEGER, - xPDUBranchBreakerName DisplayString, - xPDUBranchBreakerLocation DisplayString - } - - xPDUBranchBreakerTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of branch breaker entries in the table." - ::= { xPDUBranchBreakerEntry 1 } - - xPDUBranchBreakerRating OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates current rating of this breaker. - 0=Breaker is not present. - 1=Earth leakage connection. - 2=Neutral connection. - A value greater than 2 indicates breaker current rating in Amps. - A value above 60 Amp will signify a remote feed. - The xPDUBranchBreakerRDPFeed OID will indicate which breakers are - configured as a remote drop. - Note: When setting branch circuit thresholds/ratings for an entry, - all positions tied (see the xPDUBranchBreakerTieIndicator OID) - to this entry will inherit the new threshold/rating." - ::= { xPDUBranchBreakerEntry 2 } - - xPDUBranchBreakerRDPFeed OBJECT-TYPE - SYNTAX INTEGER { - remoteDistribution (1), - noRemoteDistribution (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates that a breaker position is feeding a remote - distribution panel." - ::= { xPDUBranchBreakerEntry 3 } - - xPDUBranchBreakerTieIndicator OBJECT-TYPE - SYNTAX INTEGER { - breakerUnTied (1), - breakerTied (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates whether or not the breaker in this position - is logically associated with the breaker immediately below it. - This setting is used grouping the breakers feeding - a multi-pole branch circuit. - Note: When setting an entry's branch breaker tie indicator to breakerTied, - all the positions that are tied to this breaker will take on the rating - and thresholds for this entry of the table." - ::= { xPDUBranchBreakerEntry 4 } - - xPDUBranchBreakerCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the branch current in tenths of Amps or -1 when not available." - ::= { xPDUBranchBreakerEntry 5 } - - xPDUBranchBreakerOverCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which a branch circuit high current - condition will be generated. - Specified as a percent of the branch breaker rating. - A value of zero indicates that the threshold is disabled. - Note: When setting branch circuit thresholds/ratings for an entry, - all positions tied (see the xPDUBranchBreakerTieIndicator OID) - to this entry will inherit the new threshold/rating." - ::= { xPDUBranchBreakerEntry 6 } - - xPDUBranchBreakerUnderCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which a branch circuit low current - condition will be generated. - Specified as a percent of the branch breaker rating. - A value of zero indicates that the threshold is disabled. - Note: When setting branch circuit thresholds/ratings for an entry, - all positions tied (see the xPDUBranchBreakerTieIndicator OID) - to this entry will inherit the new threshold/rating." - ::= { xPDUBranchBreakerEntry 7 } - - xPDUBranchBreakerMaxCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which a branch circuit maximum current - condition will be generated. - Specified as a percent of the branch breaker rating. - A value of zero indicates that the threshold is disabled. - Note: When setting branch circuit thresholds/ratings for an entry, - all positions tied (see the xPDUBranchBreakerTieIndicator OID) - to this entry will inherit the new threshold/rating." - ::= { xPDUBranchBreakerEntry 8 } - - xPDUBranchBreakerMinCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which a branch circuit minimum current - condition will be generated. - Specified as a percent of the branch breaker rating. - A value of zero indicates that the threshold is disabled. - Note: When setting branch circuit thresholds/ratings for an entry, - all positions tied (see the xPDUBranchBreakerTieIndicator OID) - to this entry will inherit the new threshold/rating." - ::= { xPDUBranchBreakerEntry 9 } - - xPDUBranchBreakerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the purpose/use of the breaker." - ::= { xPDUBranchBreakerEntry 10 } - - xPDUBranchBreakerLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the location of the breaker." - ::= { xPDUBranchBreakerEntry 11 } - - --- the xPDUInputContacts group - -xPDUInputContactNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts supported by the PDU." - ::= { xPDUInputContacts 1 } - -xPDUInputContactTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input contact entries." - ::= { xPDUInputContacts 2 } - -xPDUInputContactTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUInputContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the PDU. - The number of entries is contained in the - xPDUInputContactTableSize OID." - ::= { xPDUInputContacts 3 } - -xPDUInputContactEntry OBJECT-TYPE - SYNTAX XPDUInputContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A contact entry containing information for a given contact." - INDEX { xPDUInputContactNumber } - ::= { xPDUInputContactTable 1 } - -XPDUInputContactEntry ::= - SEQUENCE { - xPDUInputContactNumber INTEGER, - xPDUInputContactName DisplayString, - xPDUInputContactNormalState INTEGER, - xPDUInputContactCurrentState INTEGER - } - -xPDUInputContactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index identifying the contact on the PDU." - ::= { xPDUInputContactEntry 1 } - -xPDUInputContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the purpose/use of the contact." - ::= { xPDUInputContactEntry 2 } - -xPDUInputContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal operating position of the contact." - ::= { xPDUInputContactEntry 3 } - -xPDUInputContactCurrentState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the current state of the contact." - ::= { xPDUInputContactEntry 4 } - --- the xPDUOutputRelays group - -xPDUOutputRelaysNumRelays OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output relays supported by the PDU." - ::= { xPDUOutputRelays 1 } - -xPDUOutputRelaysTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output relay entries." - ::= { xPDUOutputRelays 2 } - -xPDUOutputRelayTable OBJECT-TYPE - SYNTAX SEQUENCE OF XPDUOutputRelayEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output relays supported by the PDU. - The number of entries is contained in the - xPDUOutputRelayTableSize OID." - ::= { xPDUOutputRelays 3 } - -xPDUOutputRelayEntry OBJECT-TYPE - SYNTAX XPDUOutputRelayEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A output relay entry containing information for a given contact." - INDEX { xPDUOutputRelayNumber } - ::= { xPDUOutputRelayTable 1 } - -XPDUOutputRelayEntry ::= - SEQUENCE { - xPDUOutputRelayNumber INTEGER, - xPDUOutputRelayName DisplayString, - xPDUOutputRelayNormalState INTEGER, - xPDUOutputRelayCurrentState INTEGER - } - -xPDUOutputRelayNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index identifying the output relay on the PDU." - ::= { xPDUOutputRelayEntry 1 } - -xPDUOutputRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the purpose/use of the output relay." - ::= { xPDUOutputRelayEntry 2 } - -xPDUOutputRelayNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal operating position of the output relay." - ::= { xPDUOutputRelayEntry 3 } - -xPDUOutputRelayCurrentState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the current state of the output relay." - ::= { xPDUOutputRelayEntry 4 } - --- the xPDUMiscGroup - -xPDUEPOMode OBJECT-TYPE - SYNTAX INTEGER { - armed (1), - disarmed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the EPO System is armed(1) or disarmed(2)." - ::= { xPDUMiscGroup 1 } - -xPDUTransformTempStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - overtemp (2), - noTransformerPresent (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the PDU's isolation transformer is over temperature." - ::= { xPDUMiscGroup 2 } - -xPDUCoolingFanStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - failed (2), - noCoolingFansPresent (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if one or more of the PDU's cooling fans have failed." - ::= { xPDUMiscGroup 3 } - --- The xATSIdent group - -xATSIdentProductName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the transfer switch unit." - ::= { xATSIdent 1 } - -xATSIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the transfer switch. - This value is set at the factory." - ::= { xATSIdent 2 } - -xATSIdentFirmwareAppRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application firmware revision of the transfer switch." - ::= { xATSIdent 3 } - -xATSIdentFirmwareAppOSRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application operating system firmware revision of the transfer switch." - ::= { xATSIdent 4 } - -xATSIdentFirmwareControllerRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the transfer switch controller firmware revision." - ::= { xATSIdent 5 } - -xATSIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the transfer switch was manufactured in mm/dd/yyyy format. - This value is set at the factory." - ::= { xATSIdent 6 } - -xATSIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the model number of the transfer switch. - This value is set at the factory." - ::= { xATSIdent 7 } - -xATSIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of the transfer switch. - This value is set at the factory." - ::= { xATSIdent 8 } - --- The xATSDevice group - -xATSDeviceServiceType OBJECT-TYPE - SYNTAX INTEGER { - threeWire (1), - fourWire (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of utility input to the transfer switch. - Either 3 wires (delta), or 4 wires (wye)." - ::= { xATSDevice 1 } - -xATSDeviceNominalVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal line-to-neutral system voltage. - Measured in Volts, line-to-line for a 3-wire service or - line-to-neutral for a 4-wire service. -1 if not available." - ::= { xATSDevice 2 } - -xATSDeviceNominalFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal system frequency. Measured in tenths of Hertz. - -1 if not available." - ::= { xATSDevice 3 } - -xATSDeviceTransferSwitchRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The rating of the transfer switch. - Measured in Amps." - ::= { xATSDevice 4 } - -xATSDeviceDCBackUpPresent OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates if a DC backup is present or not." - ::= { xATSDevice 5 } - --- The xATS Switch Status group - -xATSSwitchStatusSelectedSource OBJECT-TYPE - SYNTAX INTEGER{ - none (1), - source1 (2), - source2 (3), - fault (4), - unknown (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The source which is currently selected, i.e. supplying power to the load." - ::= { xATSSwitchStatus 1 } - -xATSSwitchStatusOperationalMode OBJECT-TYPE - SYNTAX INTEGER{ - automatic (1), - notInAutoAbnormal (2), - notInAuto (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current operating mode of the transfer switch. When the ATS is in - automatic mode, generator starting and ATS transferring is all done automatically - as needed based on the state of source 1. Automatic operation is halted when the - ATS is in either of the notInAuto modes. - A mode of notInAuto indicates that the automatic operation switch is in the - disabled position, as indicated by the xATSSwitchStatusAutomaticOperationSwitch OID. - The notInAutoAbnormal condition indicates that an abnormal - condition has caused the transfer switch to halt automatic operation. - In this case, traps can indicate the exact problem. In the case of - notInAutoAbnormal, refer to the operation manual for details - on how debug the condition and restore automatic operation." - ::= { xATSSwitchStatus 2 } - -xATSSwitchStatusAutomaticOperationSwitch OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - enabled (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the automatic operation switch on the front of the transfer switch." - ::= { xATSSwitchStatus 3 } - -xATSSwitchStatusEngineStartSignal OBJECT-TYPE - SYNTAX INTEGER{ - run (1), - stop (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the Start/Stop contact which signals the generator - engine to start/run. When the ATS is in automatic mode, - generator starting/stopping is under ATS control." - ::= { xATSSwitchStatus 4 } - --- The xATS Switch Setting group - -xATSSwitchSettingsLowVoltageTransferPoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The lowest acceptable voltage condition at source 1. - When any phase of source 1 is lower than this voltage, - source quality is considered bad and the generator run signal - is asserted to begin generator operation. - Specified in volts, line-to-line for a 3-wire service or - line-to-neutral for a 4-wire service. - -1 if not available." - ::= { xATSSwitchSettings 1 } - -xATSSwitchSettingsHighVoltageTransferPoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The highest acceptable voltage condition at source 1. - When any phase of source 1 is greater than this voltage, - source quality is considered bad and the generator run signal - is asserted to begin generator operation. - Specified in volts, line-to-line for a 3-wire service or - line-to-neutral for a 4-wire service. - -1 if not available." - ::= { xATSSwitchSettings 2 } - -xATSSwitchSettingsMaxFrequencyDeviation OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum acceptable frequency deviation condition from nominal at source 1. - When source 1 frequency is outside the specified range, - source quality is considered bad and the generator run signal - is asserted to begin generator operation. - Specified in tenths of Hertz above or below nominal. - A value of zero indicates that frequency is ignored when - determining source quality. - -1 if not available." - ::= { xATSSwitchSettings 3 } - -xATSSwitchSettingsMinPhaseBalance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum required phase balance at source 1. - When the percentage difference between the minimum and maximum - phase voltage measurements at source 1 is greater than this value, - source quality is considered bad and the generator run signal - is asserted to begin generator operation. - Specified as a percentage. A value of zero indicates that phase balance - is ignored when determining source quality. -1 if not available." - ::= { xATSSwitchSettings 4 } - -xATSSwitchSettingsNominalRotation OBJECT-TYPE - SYNTAX INTEGER{ - abc (1), - cba (2), - any (3), - unknown (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The nominal phase rotation (or phase sequence) required by the load. - For certain types of equipment, such as rotating machinery, phase rotation - is critical for proper operation as it determines the direction which motors - will rotate (clockwise or counterclockwise). - Source quality will be seen as bad if the rotation measured at that - ATS input does not match this setting. - If this setting is set to any, phase rotation is ignored." - ::= { xATSSwitchSettings 5 } - -xATSSwitchSettingsAllowClosedTransfer OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2), - unknown (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting enables seamless (closed) transfers between sources. - When possible, both source 1 and source 2 are closed to the output - for a brief time. If closed transfer is not possible within the amount - of time specified by the xATSSwitchSettingsMaxSyncTime OID, - an open transfer will be executed." - ::= { xATSSwitchSettings 6 } - -xATSSwitchSettingsMaxSyncTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When attempting/seeking to perform a closed transfer, this setting defines - the maximum time allowed before the transfer switch will give up and perform - an open transfer. Specified in seconds. - -1 if not available." - ::= { xATSSwitchSettings 7 } - -xATSSwitchSettingsNeutralTransferTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting defines how long both source 1 and source 2 will be - disconnected from the output, during an open transfer. - Specified in seconds. - -1 if not available." - ::= { xATSSwitchSettings 8 } - -xATSSwitchSettingsClearLatchedAlarms OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Clears any latched alarm conditions." - ::= { xATSSwitchSettings 9 } - -xATSSwitchSettingsSetToFactoryDefaults OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sets all transfer switch settings to factory default values." - ::= { xATSSwitchSettings 10 } - - --- The xATSSwitchTimers group - - xATSSwitchTimersTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of transfer switch timer entries." - ::= { xATSSwitchTimers 1 } - - xATSSwitchTimersTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSSwitchTimersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of timers supported by ATS. - The number of entries is contained in the xATSSwitchTimersTableSize OID." - ::= { xATSSwitchTimers 2 } - - xATSSwitchTimersEntry OBJECT-TYPE - SYNTAX XATSSwitchTimersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about an individual ATS timer." - INDEX { xATSSwitchTimersIndex } - ::= { xATSSwitchTimersTable 1 } - - XATSSwitchTimersEntry ::= - SEQUENCE { - xATSSwitchTimersIndex INTEGER, - xATSSwitchTimersName DisplayString, - xATSSwitchTimersAbort INTEGER, - xATSSwitchTimersStatus INTEGER, - xATSSwitchTimersRemainingTime INTEGER, - xATSSwitchTimersDelaySetting INTEGER - } - -xATSSwitchTimersIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of timer entries in the table." - ::= { xATSSwitchTimersEntry 1 } - -xATSSwitchTimersName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Name of the individual timer.Refer to ATS operation manual, - or on-line help, for detailed descriptions of ATS timers." - ::= { xATSSwitchTimersEntry 2 } - -xATSSwitchTimersAbort OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This aborts the individual timer." - ::= { xATSSwitchTimersEntry 3 } - -xATSSwitchTimersStatus OBJECT-TYPE - SYNTAX INTEGER{ - inactive (1), - active (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the individual timer. Designates whether this timer - entry is currently running or inactive." - ::= { xATSSwitchTimersEntry 4 } - -xATSSwitchTimersRemainingTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time remaining for this timer entry. - Specified in seconds." - ::= { xATSSwitchTimersEntry 5 } - -xATSSwitchTimersDelaySetting OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The delay settings associated with this timer entry. - When this timer entry is active, the timer value must exceed this setting - before the ATS behavior associated with this timer is executed. - Refer to ATS operation manual, or on-line help, for detailed - descriptions of ATS timers." - ::= { xATSSwitchTimersEntry 6 } - --- The xATSSwitchBlockMap group - - xATSSwitchBlockMapTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of blocking map entries, or how many ATS actions can be blocked." - ::= { xATSSwitchBlockMap 1 } - - xATSSwitchBlockMapTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSSwitchBlockMapEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of blocking maps supported by the ATS. - The number of entries is contained in the xATSSwitchBlockMapTableSize OID." - ::= { xATSSwitchBlockMap 2 } - - xATSSwitchBlockMapEntry OBJECT-TYPE - SYNTAX XATSSwitchBlockMapEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about a specific ATS blocking map." - INDEX { xATSSwitchBlockMapIndex } - ::= { xATSSwitchBlockMapTable 1 } - - XATSSwitchBlockMapEntry ::= - SEQUENCE { - xATSSwitchBlockMapIndex INTEGER, - xATSSwitchBlockMapName DisplayString, - xATSSwitchBlockMapStatus INTEGER, - xATSSwitchBlockMapSetting INTEGER - } - - xATSSwitchBlockMapIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of blocking map entries in the table." - ::= { xATSSwitchBlockMapEntry 1 } - - xATSSwitchBlockMapName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A string describing the ATS action to be blocked." - ::= { xATSSwitchBlockMapEntry 2 } - - xATSSwitchBlockMapStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Represents the status of this blocking map entry, in bit-mapped format. - A non-zero value indicates that this entry's ATS action is currently being blocked. - The bit(s) set indicate which input(s) are causing the blocking (bit0, bit1, etc). - - bit 0 - Contact 1 - bit 1 - Contact 2 - bit 2 - Contact 3 - bit 3 - Contact 4." - ::= { xATSSwitchBlockMapEntry 3 } - - xATSSwitchBlockMapSetting OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting designates the inputs that block the ATS action - The mapping is specified as a bit-field, where each bit set indicates - the input that blocks the ATS action associated with the entry. - - bit 0 - Contact 1 - bit 1 - Contact 2 - bit 2 - Contact 3 - bit 3 - Contact 4." - ::= { xATSSwitchBlockMapEntry 4 } - --- The xATSSwitchStatistics group - - xATSSwitchStatisticsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of transfer switch statistics entries." - ::= { xATSSwitchStatistics 1 } - - xATSSwitchStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSSwitchStatisticsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of statistics supported by ATS. - The number of entries is contained in the xATSSwitchStatisticsTableSize OID." - ::= { xATSSwitchStatistics 2 } - - xATSSwitchStatisticsEntry OBJECT-TYPE - SYNTAX XATSSwitchStatisticsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about an individual ATS statistic." - INDEX { xATSSwitchStatisticsIndex } - ::= { xATSSwitchStatisticsTable 1 } - - XATSSwitchStatisticsEntry ::= - SEQUENCE { - xATSSwitchStatisticsIndex INTEGER, - xATSSwitchStatisticsName DisplayString, - xATSSwitchStatisticsValue DisplayString, - xATSSwitchStatisticsReset INTEGER - } - - xATSSwitchStatisticsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of ATS statistics entries in the table." - ::= { xATSSwitchStatisticsEntry 1 } - - xATSSwitchStatisticsName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the name of the ATS statistic associated with this entry." - ::= { xATSSwitchStatisticsEntry 2 } - - xATSSwitchStatisticsValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the value of the ATS statistic associated with this entry." - ::= { xATSSwitchStatisticsEntry 3 } - - xATSSwitchStatisticsReset OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This will reset the individual ATS statistic associated with this entry." - ::= { xATSSwitchStatisticsEntry 4 } - --- The xATS Source 1 group - -xATSSource1Name OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "String used to identify source 1." - ::= { xATSSource1 1 } - -xATSSource1Position OBJECT-TYPE - SYNTAX INTEGER{ - open (1), - closed (2), - tripped (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current position of the switch at source 1." - ::= { xATSSource1 2 } - -xATSSource1Frequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frequency at source 1 in tenths of Hertz. - -1 if unavailable." - ::= { xATSSource1 3 } - -xATSSource1Quality OBJECT-TYPE - SYNTAX INTEGER{ - sourceGood (1), - lowVoltage (2), - highVoltage (3), - phaseImbalance (4), - freqOutOfRange (5), - badRotation (6), - unknown (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current line quality of source 1." - ::= { xATSSource1 4 } - -xATSSource1Rotation OBJECT-TYPE - SYNTAX INTEGER{ - abc (1), - cba (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase rotation measured at the source 1 input of the ATS. - The sequence is a reference to the order in which the three phases - pass the zero-crossing boundary in time." - ::= { xATSSource1 5 } - -xATSSource1TableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input voltage entries at the source 1 input of the ATS." - ::= { xATSSource1 6 } - - xATSSource1PhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSSource1PhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of voltage table entries for source 1. The number of - entries are the phase entries. The number of entries is contained in the - xATSSource1TableSize OID." - ::= { xATSSource1 7 } - - xATSSource1PhaseEntry OBJECT-TYPE - SYNTAX XATSSource1PhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input voltage phase at the source 1 input of the ATS." - INDEX { xATSSource1Index } - ::= { xATSSource1PhaseTable 1 } - - XATSSource1PhaseEntry ::= SEQUENCE { - xATSSource1Index INTEGER, - xATSSource1VoltageLtoL INTEGER, - xATSSource1VoltageLtoN INTEGER - } - - xATSSource1Index OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each phase utilized at source 1." - ::= { xATSSource1PhaseEntry 1 } - - xATSSource1VoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Source 1 line-to-line input voltage. - Measured in tenths of Volts." - ::= { xATSSource1PhaseEntry 2 } - - xATSSource1VoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Source 1 line-to-neutral input voltage. - Measured in tenths of Volts. -1 for a 3-wire service type." - ::= { xATSSource1PhaseEntry 3 } - --- The xATS Source 2 group - -xATSSource2Name OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "String used to identify source 2." - ::= { xATSSource2 1 } - -xATSSource2Position OBJECT-TYPE - SYNTAX INTEGER{ - open (1), - closed (2), - tripped (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current position of the switch at source 2." - ::= { xATSSource2 2 } - -xATSSource2Frequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frequency at source 2 in tenths of Hertz. - -1 if not available." - ::= { xATSSource2 3 } - -xATSSource2Quality OBJECT-TYPE - SYNTAX INTEGER{ - sourceGood (1), - lowVoltage (2), - highVoltage (3), - phaseImbalance (4), - freqOutOfRange (5), - badRotation (6), - unknown (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current line quality of source 2." - ::= { xATSSource2 4 } - -xATSSource2Rotation OBJECT-TYPE - SYNTAX INTEGER{ - abc (1), - cba (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase rotation measured at the source 2 input of the ATS. - -1 if not available." - ::= { xATSSource2 5 } - -xATSSource2TableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input voltage entries at the source 2 input of the ATS." - ::= { xATSSource2 6 } - - xATSSource2PhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSSource2PhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of voltage table entries for the source 2. The number of - entries are the phase entries. The number of entries is contained in the - xATSSource2TableSize OID." - ::= { xATSSource2 7 } - - xATSSource2PhaseEntry OBJECT-TYPE - SYNTAX XATSSource2PhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input voltage phase at the source 2 input of the ATS." - INDEX { xATSSource2Index } - ::= { xATSSource2PhaseTable 1 } - - XATSSource2PhaseEntry ::= SEQUENCE { - xATSSource2Index INTEGER, - xATSSource2VoltageLtoL INTEGER, - xATSSource2VoltageLtoN INTEGER - } - - xATSSource2Index OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each phase utilized at the source 2." - ::= { xATSSource2PhaseEntry 1 } - - xATSSource2VoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Source 2 line-to-line input voltage. - Measured in tenths of Volts." - ::= { xATSSource2PhaseEntry 2 } - - xATSSource2VoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Source 2 line-to-neutral input voltage. - Measured in tenths of Volts. -1 for a 3-wire service type." - ::= { xATSSource2PhaseEntry 3 } - --- The xATSSystemOutput - -xATSSystemOutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system output frequency in tenths of Hertz." - ::= { xATSSystemOutput 1 } - -xATSSystemOutputTotalPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the total system output power in tenths of kW." - ::= { xATSSystemOutput 2 } - -xATSSystemOutputTotalApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Shows the total system output power in tenths of kVA." - ::= { xATSSystemOutput 3 } - -xATSSystemOutputTotalPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the total power factor of the system output. - A value of 100 representing a unity power factor (1.00) - Specified in hundredths." - ::= { xATSSystemOutput 4 } - -xATSSystemOutputFrequencyTolerance OBJECT-TYPE - SYNTAX INTEGER{ - freqToleranceOff (1), - freqTolerancePointTwo (2), - freqTolerancePointFive (3), - freqToleranceOne (4), - freqToleranceOnePointFive (5), - freqToleranceTwo (6), - freqToleranceThree (7), - freqToleranceFour (8), - freqToleranceFive (9), - freqToleranceNine (10) - - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Shows the panel output frequency tolerance in +/- Hertz." - ::= { xATSSystemOutput 5 } - -xATSSystemOutputOverVoltThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which an output over voltage condition will be generated. - Specified as tenths of percent deviation from nominal. - A value of zero indicates that the threshold is disabled." - ::= { xATSSystemOutput 6 } - -xATSSystemOutputUnderVoltThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which an output under voltage condition will be generated. - Specified as tenths of percent deviation from nominal. - A value of zero indicates that the threshold is disabled." - ::= { xATSSystemOutput 7 } - -xATSSystemOutputOverCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which an over current condition will be generated. - Specified as a percent of the transfer switch rating (xATSDeviceTransferSwitchRating OID). - A value of zero indicates that the threshold is disabled." - ::= { xATSSystemOutput 8 } - -xATSSystemOutputUnderCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which an under current condition will be generated. - Specified as a percent of the transfer switch rating (xATSDeviceTransferSwitchRating OID). - A value of zero indicates that the threshold is disabled." - ::= { xATSSystemOutput 9 } - -xATSSystemOutputAlarmDelayThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Delay the generation of an output alarm. - Specified in seconds." - ::= { xATSSystemOutput 10 } - -xATSSystemOutputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of system output phase entries." - ::= { xATSSystemOutput 11 } - -xATSSystemOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSSystemOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of system output table entries. - The number of entries is contained in the xATSSystemOutputTableSize OID." - ::= { xATSSystemOutput 12 } - - xATSSystemOutputPhaseEntry OBJECT-TYPE - SYNTAX XATSSystemOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular system output phase." - INDEX { xATSSystemOutputPhaseIndex } - ::= { xATSSystemOutputPhaseTable 1 } - - XATSSystemOutputPhaseEntry ::= SEQUENCE { - xATSSystemOutputPhaseIndex INTEGER, - xATSSystemOutputVoltageLtoL INTEGER, - xATSSystemOutputVoltageLtoN INTEGER, - xATSSystemOutputPhaseCurrent INTEGER, - xATSSystemOutputPower INTEGER, - xATSSystemOutputApparentPower INTEGER, - xATSSystemOutputPowerFactor INTEGER - } - - xATSSystemOutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each system output phase utilized in this device." - ::= { xATSSystemOutputPhaseEntry 1 } - - xATSSystemOutputVoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-line system output voltage available at the circuit panel. - Measured in tenths of Volts. -1 if not available." - ::= { xATSSystemOutputPhaseEntry 2 } - - xATSSystemOutputVoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-neutral system output voltage available at the circuit panel. - Measured in tenths of Volts. -1 for a 3-wire service type or if not available." - ::= { xATSSystemOutputPhaseEntry 3 } - - xATSSystemOutputPhaseCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System load current per phase. Measured in Amps. - -1 if not available." - ::= { xATSSystemOutputPhaseEntry 4 } - - xATSSystemOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System output power per phase. Measured in tenths of kW." - ::= { xATSSystemOutputPhaseEntry 5 } - - xATSSystemOutputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "system output power per phase. Measured in tenths of kVA." - ::= { xATSSystemOutputPhaseEntry 6 } - - xATSSystemOutputPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "indicates the power factor of the system output per phase. - A value of 100 representing a unity power factor (1.00). - Measured in hundredths." - ::= { xATSSystemOutputPhaseEntry 7 } - --- xATS TestingStatus group - -xATSTestingStatusSelectTestProcess OBJECT-TYPE - SYNTAX INTEGER { - engineStartTest (1), - systemLoadTest (2), - generatorHoldTest (3), - cancelTest (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Type of tests that can be selected when no test has been scheduled. - engineStartTest and systemLoadTest may be selected when no tests - are running. Tests that are selected may be canceled manually." - ::= { xATSTestingStatus 1 } - -xATSTestingStatusTestStatus OBJECT-TYPE - SYNTAX INTEGER { - noTestInProcess (1), - testPending (2), - startingEngine (3), - engineWarmingUp (4), - awaitingTransferToS2 (5), - testingWithLoad (6), - awaitingRetransferToS1 (7), - testingWithoutLoad (8), - stoppingEngine (9), - holdingOnGenerator (10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The present system test status/state." - ::= { xATSTestingStatus 2 } - -xATSTestingStatusProfileWarmupTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time that the generator will warm up during a test. - This is portion of the test when the xATSTestingStatusTestStatus - OID returns the value engineWarmingUp. - Specified in seconds." - ::= { xATSTestingStatus 3 } - -xATSTestingStatusProfileLoadedTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time that ATS will apply the system load to the generator - during a system load test. - This is portion of the test when the xATSTestingStatusTestStatus - OID returns the value testingWithLoad. - Specified in minutes." - ::= { xATSTestingStatus 4 } - -xATSTestingStatusProfileUnloadedTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time that the generator will run following the warm up - portion of a start test, or the loaded portion of a load test. - This is portion of the test when the xATSTestingStatusTestStatus - OID returns the value testingWithoutLoad. - Specified in seconds." - ::= { xATSTestingStatus 5 } - --- xATS TestingResults group - -xATSTestingResultsLastDateOfTest OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Date of the last test that was performed, either scheduled or manual. - Test results are available in the xATSTestingResultsLastResult OID. - Specified in the dd/mm/yyyy format, or 'none' if not available." - ::= { xATSTestingResults 1 } - -xATSTestingResultsLastResult OBJECT-TYPE - SYNTAX INTEGER { - noResultsAvailable (1), - startTestPassed (2), - loadTestPassed (3), - startSignalFailure (4), - failedGenNotInAuto (5), - failedGenEmerStop (6), - failedGenShutdown (7), - failedGenDidNotStart (8), - failedS2NeverGood (9), - genFailedDuringWarmup (10), - failureOnXferToS1 (11), - genFailedLoaded (12), - failureOnRexferToS2 (13), - failedOnCooldown (14), - genFailedToStop (15), - failedAtsInternalFault (16), - failedAtsNotInAuto (17), - canceledManualTest (18), - canceledScheduledTest (19) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The result of the last ATS/generator system test." - ::= { xATSTestingResults 2 } - -xATSTestingResultsTestLastTestTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Time of day at which the last test was performed, either scheduled or manual. - Test results are available in the xATSTestingResultsLastResult OID. - Specified in the hh:mm:ss format, or 'none' if not available." - ::= { xATSTestingResults 3 } - -xATSTestingResultsLastCrankDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time spent cranking the generator before it started during the last test. - Specified in seconds, or -1 if not available." - ::= { xATSTestingResults 4 } - -xATSTestingResultsLastWarmupDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time spent in the engineWarmingUp state during the last system test. - Specified in seconds, or -1 if not available." - ::= { xATSTestingResults 5 } - -xATSTestingResultsLastLoadedDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time spent in the testingWithLoad state during the last system test. - Specified in seconds, or -1 if not available." - ::= { xATSTestingResults 6 } - -xATSTestingResultsLastUnloadedDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time spent in the testingWithoutLoad state during the last system test. - Specified in seconds, or -1 if not available." - ::= { xATSTestingResults 7 } - --- xATS TestingSchedule group - -xATSTestingScheduleFrequency OBJECT-TYPE - SYNTAX INTEGER { - never (1), - daily (2), - weekly (3), - monthly (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The frequency of running scheduled tests." - ::= { xATSTestingSchedule 1 } - -xATSTestingScheduleTestDay OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The desired day for the scheduled test. This object applies only - when the xATSTestingScheduleFrequency OID is set to weekly or monthly. - For weekly test frequency, the string is the day the test will be run. - For monthly test frequency, the string indicates the day, - and the instance within the month. - For example, for monthly frequency: 2nd Sunday, 3rd Monday, 4th Tuesday, - for weekly frequency: Sunday, Monday, Tuesday." - ::= { xATSTestingSchedule 2 } - -xATSTestingScheduleTestTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time of day that the scheduled test will occur. - Specified in the format hh:mm." - ::= { xATSTestingSchedule 3 } - -xATSTestingScheduleTestWithLoadInterval OBJECT-TYPE - SYNTAX INTEGER { - applyLoadEveryTest (1), - neverApplyLoad (2), - applyLoadMonthly (3), - applyLoadMonthlyDetailed (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting specifies which system tests should include applying the - load to the generator. The applyLoadMonthlyDetailed entry - in the list will apply load once, for each month represented in the - xATSTestingScheduleTestWithLoadSelectMonth OID." - ::= { xATSTestingSchedule 4 } - -xATSTestingScheduleTestWithLoadSelectMonth OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The detailed selection for testing with load on a month-by-month basis. - This object is applicable when the xATSTestingScheduleTestWithLoadInterval - is set to applyLoadMonthlyDetailed. Otherwise this selection will be ignored. - Format for this string is a comma-separated entry of months. - For example: Jan,Mar,Dec. - The string will return 'No Months Scheduled' if no months have been selected." - ::= { xATSTestingSchedule 5 } - -xATSTestingScheduleNextTestDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the next scheduled test, in the format dd-mmm-yyyy." - ::= { xATSTestingSchedule 6 } - --- xATSTestingSimulatePowerFail group - -xATSTestingSimulatePowerFailTest OBJECT-TYPE - SYNTAX INTEGER{ - cancelSimulation (1), - fiveSecondsSimulation (2), - tenSecondsSimulation (3), - thirtySecondsSimulation (4), - oneMinuteSimulation (5), - threeMinutesSimulation (6), - fiveMinutesSimulation (7), - tenMinutesSimulation (8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object executes a simulated power failure for the duration indicated. - Simulation can be aborted by selecting cancelSimulation." - ::= { xATSTestingSimulatePowerFail 1 } - -xATSTestingSimulatePowerFailTimeRemaining OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the time remaining in seconds, for a simulated power failure. - a value of zero indicates that simulated power failure is not active." - ::= { xATSTestingSimulatePowerFail 2 } - --- The xATS Input Contact group - -xATSInputContactNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts supported by the ATS." - ::= { xATSInputContacts 1 } - -xATSInputContactTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input contact entries." - ::= { xATSInputContacts 2 } - -xATSInputContactTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSInputContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the ATS. - The number of entries is contained in the - xATSInputContactTableSize OID." - ::= { xATSInputContacts 3 } - - xATSInputContactEntry OBJECT-TYPE - SYNTAX XATSInputContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A contact entry containing information for a given contact." - INDEX { xATSInputContactNumber } - ::= { xATSInputContactTable 1 } - - XATSInputContactEntry ::= - SEQUENCE { - xATSInputContactNumber INTEGER, - xATSInputContactName DisplayString, - xATSInputContactNormalState INTEGER, - xATSInputContactCurrentState INTEGER - } - - xATSInputContactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index identifying the contact on the ATS." - ::= { xATSInputContactEntry 1 } - - xATSInputContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the purpose/use of the contact." - ::= { xATSInputContactEntry 2 } - - xATSInputContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal operating position of the contact." - ::= { xATSInputContactEntry 3 } - - xATSInputContactCurrentState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the current state of the contact." - ::= { xATSInputContactEntry 4 } - --- the xATS OutputRelays group - - xATSOutputRelayNumRelays OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output relays supported by the ATS." - ::= { xATSOutputRelays 1 } - - xATSOutputRelayTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output relay entries." - ::= { xATSOutputRelays 2 } - - xATSOutputRelayTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSOutputRelayEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output relays supported by the ATS. - The number of entries is contained in the - xATSOutputRelayTableSize OID." - ::= { xATSOutputRelays 3 } - - xATSOutputRelayEntry OBJECT-TYPE - SYNTAX XATSOutputRelayEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A output relay entry containing information for a given contact." - INDEX { xATSOutputRelayNumber } - ::= { xATSOutputRelayTable 1 } - - XATSOutputRelayEntry ::= - SEQUENCE { - xATSOutputRelayNumber INTEGER, - xATSOutputRelayName DisplayString, - xATSOutputRelayNormalState INTEGER, - xATSOutputRelayCurrentState INTEGER - } - - xATSOutputRelayNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index identifying the output relay on the ATS." - ::= { xATSOutputRelayEntry 1 } - - xATSOutputRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the purpose/use of the output relay." - ::= { xATSOutputRelayEntry 2 } - - xATSOutputRelayNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal operating position of the output relay." - ::= { xATSOutputRelayEntry 3 } - - xATSOutputRelayCurrentState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the current state of the output relay." - ::= { xATSOutputRelayEntry 4 } - --- The xATS Generator Ident group - -xATSGeneratorIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the model number of the generator. - This value is set at the factory." - ::= { xATSGeneratorIdent 1 } - -xATSGeneratorIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of the generator. - This value is set at the factory." - ::= { xATSGeneratorIdent 2 } - -xATSGeneratorIdentDateofManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying when the generator was manufactured in mm/dd/yyyy format. - This value is set at the factory." - ::= { xATSGeneratorIdent 3 } - -xATSGeneratorIdentVoltageConfiguration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage for which the generator's alternator is designed. - Specified in Volts line-to-line." - ::= { xATSGeneratorIdent 4 } - -xATSGeneratorIdentMaxPowerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The max power rating of the generator. Specified in kW." - ::= { xATSGeneratorIdent 5 } - -xATSGeneratorIdentAlternatorFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frequency for which the generator's alternator is designed. - Specified in Hertz." - ::= { xATSGeneratorIdent 6 } - --- The xATS Generator Status group - -xATSGeneratorStatusGeneratorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name or label for the generator connected to the source 2 of the ATS." - ::= { xATSGeneratorStatus 1 } - -xATSGeneratorStatusOperational OBJECT-TYPE - SYNTAX INTEGER{ - nocomm (1), - off (2), - ready (3), - starting (4), - idle (5), - running (6), - normalStop (7), - emergencyStop (8), - notInAuto (9), - shutdown (10), - unknown (11) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The operational status of the generator. unavailable when unrecognized status is received." - ::= { xATSGeneratorStatus 2 } - -xATSGeneratorStatusModeSwitchPosition OBJECT-TYPE - SYNTAX INTEGER{ - off (1), - manual (2), - automatic (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the generator's auto-mode switch. - In automatic mode, the generator is started and stopped via the - remote start contact, which has state indicated in the - xATSGeneratorStatusRemoteStart OID. - In manual mode generator start/stop control is via local command only. - Off prevents the generator from running." - ::= { xATSGeneratorStatus 3 } - -xATSGeneratorStatusRemoteStart OBJECT-TYPE - SYNTAX INTEGER{ - stop (1), - run (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the generator's remote start contact, which is - provided as an output from the transfer switch to start/stop the - generator when in automatic mode." - ::= { xATSGeneratorStatus 4 } - --- The xATS Generator Advanced Status group - -xATSGeneratorAdvStatusBatteryVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage of the generator's starting battery. - Measured in tenths of VDC, or -1 if not available." - ::= { xATSGeneratorAdvStatus 1 } - -xATSGeneratorAdvStatusOilPressure OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The generator's engine oil pressure. - Measured in tenths of Psi or kPa, based on the - value of the xATSGeneratorSettingsMetricUnit OID, - or -1 if not available." - ::= { xATSGeneratorAdvStatus 2 } - -xATSGeneratorAdvStatusCoolantTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current coolant temperature in the generator. - Measured in degrees Celsius or Fahrenheit, based on the - value of the xATSGeneratorSettingsMetricUnit OID, - or -1 if not available." - ::= { xATSGeneratorAdvStatus 3 } - -xATSGeneratorAdvStatusEngineRPM OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current engine speed of the generator. - Measured in RPM, or -1 if not available." - ::= { xATSGeneratorAdvStatus 4 } - -xATSGeneratorAdvStatusOilLevel OBJECT-TYPE - SYNTAX INTEGER{ - ok (1), - low (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates adequate oil level in the generator." - ::= { xATSGeneratorAdvStatus 5 } - -xATSGeneratorAdvStatusCoolantLevel OBJECT-TYPE - SYNTAX INTEGER{ - ok (1), - low (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates adequate coolant level in the generator." - ::= { xATSGeneratorAdvStatus 6 } - --- The xATS Generator Output group - -xATSGeneratorOutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output frequency of the generator. - Measured in tenths of Hertz, or -1 if not available." - ::= { xATSGeneratorOutput 1 } - -xATSGeneratorOutputTotalPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total output power of the generator. - Measured in tenths of tenths of kW, or -1 if not available." - ::= { xATSGeneratorOutput 2 } - -xATSGeneratorOutputTotalApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total output power of the generator. - Measured in tenths of kVA, or -1 if not available." - ::= { xATSGeneratorOutput 3 } - -xATSGeneratorOutputTotalPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the total load power factor of the generator. - A value of 100 representing a unity power factor (1.00), - or -1 when if not available." - ::= { xATSGeneratorOutput 4 } - -xATSGeneratorOutputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of generator output phase entries." - ::= { xATSGeneratorOutput 5 } - - xATSGeneratorOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF XATSGeneratorOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of generator output table entries. - The number of entries is contained in the xATSGeneratorOutputTableSize OID." - ::= { xATSGeneratorOutput 6 } - - xATSGeneratorOutputPhaseEntry OBJECT-TYPE - SYNTAX XATSGeneratorOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular generator output phase." - INDEX { xATSGeneratorOutputPhaseIndex } - ::= { xATSGeneratorOutputPhaseTable 1 } - - XATSGeneratorOutputPhaseEntry ::= SEQUENCE { - xATSGeneratorOutputPhaseIndex INTEGER, - xATSGeneratorOutputVoltageLtoL INTEGER, - xATSGeneratorOutputVoltageLtoN INTEGER, - xATSGeneratorOutputPhaseCurrent INTEGER, - xATSGeneratorOutputPower INTEGER, - xATSGeneratorOutputApparentPower INTEGER, - xATSGeneratorOutputPowerFactor INTEGER - } - - xATSGeneratorOutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each generator output phase utilized in this device." - ::= { xATSGeneratorOutputPhaseEntry 1 } - - xATSGeneratorOutputVoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-line generator output voltage. - Measured in Volts, or -1 if not available." - ::= { xATSGeneratorOutputPhaseEntry 2 } - - xATSGeneratorOutputVoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-neutral generator output voltage. - Measured in volts, or -1 if not available." - ::= { xATSGeneratorOutputPhaseEntry 3 } - - xATSGeneratorOutputPhaseCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Generator load current per phase. - Measured in Amps, or -1 if not available." - ::= { xATSGeneratorOutputPhaseEntry 4 } - - xATSGeneratorOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Generator output power per phase. - Measured in tenths of kW, or -1 if not available." - ::= { xATSGeneratorOutputPhaseEntry 5 } - - xATSGeneratorOutputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Generator output power per phase. - Measured in tenths of kVA, or -1 if not available." - ::= { xATSGeneratorOutputPhaseEntry 6 } - - xATSGeneratorOutputPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the load power factor of the generator output per phase. - A value of 100 representing a unity power factor (1.00), - or -1 if not available." - ::= { xATSGeneratorOutputPhaseEntry 7 } - --- xATS Generator Settings group - -xATSGeneratorSettingsVoltageAdjust OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage adjust of the generator. - Specified in volts line-to-line, - or -1 if not available." - ::= { xATSGeneratorSettings 1 } - -xATSGeneratorSettingsFrequencyAdjust OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frequency adjust of the generator. - Specified in tenths of Hertz." - ::= { xATSGeneratorSettings 2 } - -xATSGeneratorSettingsStartDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The delay, in seconds, after the remote run signal is activated - before the generator's engine will be cranked to start, - or -1 if not available." - ::= { xATSGeneratorSettings 3 } - -xATSGeneratorSettingsStopDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The delay, in seconds, before the generator will stop - after the remote run signal is deactivated, - or -1 if not available." - ::= { xATSGeneratorSettings 4 } - -xATSGeneratorSettingsCrankCycleEnable OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - enabled (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "When Crank Cycle is enabled, the engine will be cranked up to the time - specified by the xATSGeneratorSettingsCrankTime OID. - If the generator's engine does not start, there will be a pause as - specified by the xATSGeneratorSettingsCrankRestTime OID before the - engine will be cranked again. This cycle is repeated as specified by - the xATSGeneratorSettingsNumberCrank OID. - When crank cycle is disabled, the generator's engine will be - cranked continuously until it starts." - ::= { xATSGeneratorSettings 5 } - -xATSGeneratorSettingsCrankTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The duration of engine cranking, in seconds, when starting the generator. - Applicable when the xATSGeneratorSettingsCrankCycleEnable OID is enabled. - -1 if not available." - ::= { xATSGeneratorSettings 6 } - -xATSGeneratorSettingsCrankRestTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The pause duration, in seconds, following an unsuccessful attempt to start the generator. - Applicable when the xATSGeneratorSettingsCrankCycleEnable OID is enabled. - -1 if not available." - ::= { xATSGeneratorSettings 7 } - -xATSGeneratorSettingsNumberCrank OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of failed crank attempts before giving up on starting the generator. - Applicable when the xATSGeneratorSettingsCrankCycleEnable OID is enabled. - -1 if not available." - ::= { xATSGeneratorSettings 8 } - -xATSGeneratorSettingsMetricUnit OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Specifies the use of metric units in generator related OIDs, as well - as on all other interfaces including the generator's local interface." - ::= { xATSGeneratorSettings 9 } - --- xATS generator service group - -xATSGeneratorServiceTotalRunHoursLifetime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total time that the generator engine has been run, - over the life of the generator. Measured in hours. - -1 if not available." - ::= { xATSGeneratorService 1 } - -xATSGeneratorServiceEngineStartsLifetime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of engine starts over the life of the generator. - -1 if not available." - ::= { xATSGeneratorService 2 } - -xATSGeneratorServiceTotalkWhLifetime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total kWh of operation over the life of the generator. - -1 if not available." - ::= { xATSGeneratorService 3 } - -xATSGeneratorServiceTotalRunHoursSinceMaintenance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total time that the generator engine has been run, - since last service maintenance. Measured in tenths of hours. - -1 if not available." - ::= { xATSGeneratorService 4 } - -xATSGeneratorServiceEngineStartsSinceMaintenance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of engine starts since last service maintenance. - -1 if not available." - ::= { xATSGeneratorService 5 } - -xATSGeneratorServiceTotalkWhMaintenance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total kWh of operation since last service maintenance. - -1 if not available." - ::= { xATSGeneratorService 6 } - -xATSGeneratorServiceResetRecord OBJECT-TYPE - SYNTAX INTEGER{ - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Resets the engine start counter, engine run-hours, and kWh values that have - accumulated in the generator since last maintenance. - Also, the last service date will be reset to the current system date, and - any service alarms will be cleared." - ::= { xATSGeneratorService 7 } - -xATSGeneratorServiceRecordResetDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Date at which the generator's service record was reset, in dd-mmm-yyyy format." - ::= { xATSGeneratorService 8 } - -xATSGeneratorServiceNextServiceDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Date at which the next generator service is due in dd-mmm-yyyy format. - Based on the xATSGeneratorServiceCalendarIntervalThreshold OID - or '' if the calendar-based threshold is set to off." - ::= { xATSGeneratorService 9 } - -xATSGeneratorServiceRunHoursUntilServiceDate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Run hours until the next generator service is due, in hours. - Based on the xATSGeneratorServiceRunHoursThreshold OID - or -1 if the run hour-based threshold is set to off." - ::= { xATSGeneratorService 10 } - -xATSGeneratorServiceRunHoursThreshold OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - runThreshold100Hours (2), - runThreshold150Hours (3), - runThreshold200Hours (4), - runThreshold250Hours (5), - runThreshold300Hours (6), - runThreshold400Hours (7), - runThreshold500Hours (8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Run hour-based service interval. When the run-hours since - service surpasses this threshold, generator service is due." - ::= { xATSGeneratorService 11 } - -xATSGeneratorServiceCalendarIntervalThreshold OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - interval1month (2), - interval2month (3), - interval3month (4), - interval6month (5), - intervalyearly (6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Calendar-based service interval. When the next service date, - as indicated by the xATSGeneratorServiceNextServiceDate OID - is in the past, generator is due for service." - ::= { xATSGeneratorService 12 } - --- The xATS Generator Fuel system group - -xATSGeneratorFuelSystemType OBJECT-TYPE - SYNTAX INTEGER{ - diesel (1), - propane (2), - naturalGas (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of fuel used by the generator." - ::= { xATSGeneratorFuelSystem 1 } - -xATSGeneratorFuelSystemTankSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Size of the generator's fuel tank. - Specified in gallons or liters, based on the value of the - xATSGeneratorSettingsMetricUnit OID, or -1 if not available." - ::= { xATSGeneratorFuelSystem 2 } - -xATSGeneratorFuelSystemFuelLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fuel remaining in the generator tank. - Measured in percent of tank fill, or -1 if not available." - ::= { xATSGeneratorFuelSystem 3 } - -xATSGeneratorFuelSystemRuntimePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power value used in the runtime remaining calculation. - Measured in tenths of kW, or -1 if not available." - ::= { xATSGeneratorFuelSystem 4 } - -xATSGeneratorFuelSystemEstimatedRunTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An estimate of available runtime for the generator, based on - available fuel as specified in the xATSGeneratorFuelSystemFuelLevel OID - and kW load as specified in the xATSGeneratorFuelSystemRuntimePower OID. - Measured in tenths of hours, or -1 if not available." - ::= { xATSGeneratorFuelSystem 5 } - -xATSGeneratorFuelSystemLowRunTimeThreshold OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - oneHour (2), - twoHours (3), - threeHours (4), - fourHours (5), - fiveHours (6), - sixHours (7), - twelveHours (8), - oneDay (9), - twoDays (10), - threeDays (11), - fourDays (12), - fiveDays (13), - sixDays (14), - sevenDays (15) - - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which a low runtime alarm will exist." - ::= { xATSGeneratorFuelSystem 6 } - -xATSGeneratorFuelSystemVeryLowRunTimeThreshold OBJECT-TYPE - SYNTAX INTEGER{ - disabled (1), - oneHour (2), - twoHours (3), - threeHours (4), - fourHours (5), - fiveHours (6), - sixHours (7), - twelveHours (8), - oneDay (9), - twoDays (10), - threeDays (11), - fourDays (12), - fiveDays (13), - sixDays (14), - sevenDays (15) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which a very low runtime alarm will exist." - ::= { xATSGeneratorFuelSystem 7 } - -xATSGeneratorFuelSystemLowFuelLevelThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which a low fuel alarm will exist, with a value of 0 indicating disabled. - Specified as percent of tank fill." - ::= { xATSGeneratorFuelSystem 8 } - -xATSGeneratorFuelSystemVeryLowFuelLevelThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold below which a very low fuel alarm will exist, with a value of 0 indicating disabled. - Specified as percent of tank fill." - ::= { xATSGeneratorFuelSystem 9 } - --- The console Port Server AP930x system group - -apCPSpname OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The product's name." -::= { cpsAP930xSys 1 } - -apCPSversion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The firmware's version." -::= {cpsAP930xSys 2} - -apCPSPower OBJECT IDENTIFIER ::= { cpsAP930xSys 3 } - -apCPSPwNum OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of the power supplies." -::= { apCPSPower 1 } - -apCPSPw1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "State of the first power supply. - 0 will indicate not installed, - 1 will indicate power ON, - 2 will indicate power OFF." -::= { apCPSPower 2 } - -apCPSPw2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "State of the second power supply. - 0 will indicate not installed, - 1 will indicate power ON, - 2 will indicate power OFF." -::= { apCPSPower 3 } - -apCPSPcmcia OBJECT IDENTIFIER ::= {cpsAP930xSys 4} - -apCPSNPcmcia OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number of PCMCIA cards available." -::= { apCPSPcmcia 1 } - -cpsCardIdentTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpsCardIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table of PCMCIA card identifications." -::= { apCPSPcmcia 2 } - -cpsCardIdentEntry OBJECT-TYPE - SYNTAX CpsCardIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Identification information for a PCMCIA card." - INDEX { cpsCardIdentIndex } -::= { cpsCardIdentTable 1 } - -CpsCardIdentEntry ::= SEQUENCE { - cpsCardIdentIndex Integer32, - cpsCardIdentProd DisplayString, - cpsCardIdentMan DisplayString , - cpsCardIdentFunc DisplayString, - cpsCardIdentPCI DisplayString -} - -cpsCardIdentIndex OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number to identify the socket Card." -::= { cpsCardIdentEntry 1 } - -cpsCardIdentProd OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Product identification string." -::= { cpsCardIdentEntry 2 } - -cpsCardIdentMan OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Manufacturer ID code." -::= { cpsCardIdentEntry 3 } - -cpsCardIdentFunc OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Function ID code." -::= { cpsCardIdentEntry 4 } - -cpsCardIdentPCI OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "PCI ID" -::= { cpsCardIdentEntry 5 } - -cpsCardConfTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpsCardConfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table of socket configuration information." -::= { apCPSPcmcia 3 } - -cpsCardConfEntry OBJECT-TYPE - SYNTAX CpsCardConfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Configuration information for a socket." - INDEX { cpsCardConfIndex } -::= { cpsCardConfTable 1 } - -CpsCardConfEntry ::= SEQUENCE { - cpsCardConfIndex Integer32, - cpsCardConfPower DisplayString, - cpsCardConfType DisplayString, - cpsCardConfInter DisplayString, - cpsCardConfFunc DisplayString, - cpsCardConfCardv DisplayString, - cpsCardConfPort1 DisplayString, - cpsCardConfPort2 DisplayString -} - -cpsCardConfIndex OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number to identify the socket PCMCIA." -::= { cpsCardConfEntry 1 } - -cpsCardConfPower OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Power Settings." -::= { cpsCardConfEntry 2 } - -cpsCardConfType OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Interface Type." -::= { cpsCardConfEntry 3 } - -cpsCardConfInter OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Interrupt number." -::= { cpsCardConfEntry 4 } - -cpsCardConfFunc OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Function." -::= { cpsCardConfEntry 5 } - -cpsCardConfCardv OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Card values." -::= { cpsCardConfEntry 6 } - -cpsCardConfPort1 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "I/O Port 1." -::= { cpsCardConfEntry 7 } - -cpsCardConfPort2 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "I/O Port 2." -::= { cpsCardConfEntry 8 } - -cpsCardStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpsCardStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table of current socket status information." -::= { apCPSPcmcia 4 } - -cpsCardStatusEntry OBJECT-TYPE - SYNTAX CpsCardStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Current status information for a socket." - INDEX { cpsCardStatusIndex } -::= { cpsCardStatusTable 1 } - -CpsCardStatusEntry ::= SEQUENCE { - cpsCardStatusIndex Integer32, - cpsCardStatusCard DisplayString, - cpsCardStatusFunc DisplayString -} - -cpsCardStatusIndex OBJECT-TYPE - SYNTAX Integer32(0..2) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number to identify the socket PCMCIA." -::= { cpsCardStatusEntry 1 } - -cpsCardStatusCard OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Current Card State." -::= { cpsCardStatusEntry 2 } - -cpsCardStatusFunc OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Current Function." -::= { cpsCardStatusEntry 3 } - -apCPSFlashSize OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "Total amount of flash memory in Mbytes." -::= {cpsAP930xSys 5} - -apCPSRAMSize OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "Total amount of RAM in Mbytes." -::= {cpsAP930xSys 6} - -apCPSCPUfreq OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "CPU clock in MHz." -::= {cpsAP930xSys 7} - -apCPSDevId OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The product's identifier." -::= { cpsAP930xSys 8 } - - --- The console Port Server AP930x configuration group - -cpsHostName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The Host Name." -::= { cpsAP930xConf 1 } - -cpsConsoleBanner OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The console banner." -::= { cpsAP930xConf 2 } - -cpsMotd OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The motd message." -::= { cpsAP930xConf 3 } - -cpsEthItf OBJECT IDENTIFIER ::= { cpsAP930xConf 4 } - -cpsEthDhcpc OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "0 will indicate DHCP inactive, - 1 will indicate DHCP active, - 2 will indicate DHCP active and the last parameter is saved." -::= { cpsEthItf 1 } - -cpsEthIPaddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "This is the IP address of the Ethernet Interface." -::= { cpsEthItf 2 } - -cpsEthIPmask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "The mask for the Ethernet network." -::= { cpsEthItf 3 } - -cpsEthMTU OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "The Maximum Transmission Unit size, which determines - whether packets should be broken up." -::= { cpsEthItf 4 } - -cpsEthIPaddr2 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "The Ethernet secondary IP address." -::= { cpsEthItf 5 } - -cpsEthIPmask2 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "The Ethernet secondary IP mask." -::= { cpsEthItf 6 } - -cpsNameService OBJECT IDENTIFIER ::= { cpsAP930xConf 5 } - -cpsResolverOrder OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..15)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Specifies how host lookups are to be performed. - Valid values : empty, 'hosts', 'bind', 'hosts, bind', - 'bind, hosts' " -::= { cpsNameService 1 } - -cpsMultipleIP OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..3)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Valid values are ON or OFF. If set to ON, the resolve - library will return all valid addresses for a host - that appears in the /etc/hosts file, instead of only - the first. " -::= { cpsNameService 2 } - -cpsDNSserv OBJECT IDENTIFIER ::= { cpsNameService 3 } - -cpsDNSpriserv OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "Internet Address (in dot notation) of primary name - server that the resolver should query." -::= { cpsDNSserv 1 } - -cpsDNSsecserv OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "Internet Address (in dot notation) of secondary name - server that the resolver should query." -::= { cpsDNSserv 2 } - -cpsDNSdomain OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Local domain name." -::= { cpsDNSserv 3 } - -cpsSerialPortConf OBJECT IDENTIFIER ::= { cpsAP930xConf 6 } - -cpsSerialGlobal OBJECT IDENTIFIER ::= { cpsSerialPortConf 1 } - -cpsSerialInclude OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "File used in centralized management." -::= { cpsSerialGlobal 1 } - -cpsSerialNFS OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Remote Network File System where data buffering will be - written instead of the default directory '/var/run/DB'." -::= { cpsSerialGlobal 2 } - -cpsSerialLockDir OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The lock directory." -::= { cpsSerialGlobal 3 } - -cpsSerialRlogin OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Location of the rlogin binary that accepts the -i flag." -::= { cpsSerialGlobal 4 } - -cpsSerialPppd OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Location of the pppd binary." -::= { cpsSerialGlobal 5 } - -cpsSerialTelnet OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Location of the telnet application." -::= { cpsSerialGlobal 6 } - -cpsSerialSsh OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..50)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Location of the ssh application." -::= { cpsSerialGlobal 7 } - -cpsSerialLocalLogins OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "This parameter is only necessary when authentication is - being performed for a port. - This is useful if the Radius authentication server is down. - 0 indicates OFF, - 1 indicates ON." -::= { cpsSerialGlobal 8 } - -cpsSerialFacility OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "This value (0-7) is the Local facility sent to the syslog daemon." -::= { cpsSerialGlobal 9 } - -cpsSerialDBFacility OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "This value (0-7) is the Local facility sent to the syslog daemon." -::= { cpsSerialGlobal 10 } - -cpsSerialGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpsSerialGroupEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "" -::= { cpsSerialGlobal 11 } - -cpsSerialGroupEntry OBJECT-TYPE - SYNTAX CpsSerialGroupEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "" - INDEX { cpsSerialGroupIndex } -::= { cpsSerialGroupTable 1 } - -CpsSerialGroupEntry ::= SEQUENCE { - cpsSerialGroupIndex INTEGER, - cpsSerialGroupName DisplayString, - cpsSerialGroupUsers DisplayString -} - -cpsSerialGroupIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number to identify the group." -::= { cpsSerialGroupEntry 1 } - -cpsSerialGroupName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..20)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The group name." -::= { cpsSerialGroupEntry 2 } - -cpsSerialGroupUsers OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..80)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The user's names." -::= { cpsSerialGroupEntry 3 } - -cpsSerialSpec OBJECT IDENTIFIER ::= { cpsSerialPortConf 2 } - -cpsSerialPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpsSerialPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "This is the specific configuration per serial port." -::= { cpsSerialSpec 1 } - -cpsSerialPortEntry OBJECT-TYPE - SYNTAX CpsSerialPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "One particular serial port configuration." - INDEX { cpsSerialPortNumber } -::= { cpsSerialPortTable 1 } - -CpsSerialPortEntry ::= SEQUENCE { - cpsSerialPortNumber INTEGER, -- 0 == all. X == ttyX sX. - cpsSerialPortTty DisplayString, -- associate device - cpsSerialPortName DisplayString, -- alias name - cpsSerialPortSpeed Integer32, -- physical port configuration - cpsSerialPortDataSize Integer32, - cpsSerialPortStopBits Integer32, - cpsSerialPortParity DisplayString, - cpsSerialPortFlowCtrl DisplayString, - cpsSerialPortDTRdelay Integer32, - cpsSerialPortDCDCtrl INTEGER, - cpsSerialPortLogUtmp INTEGER, -- log into UTMP - cpsSerialPortLogWtmp INTEGER, -- log into WTMP - cpsSerialPortLogform DisplayString, - cpsSerialPortAuthtype DisplayString, -- authentication type - cpsSerialPortAuthSrv1 IpAddress, -- IP address of the primary authentication server - cpsSerialPortAccSrv1 IpAddress, -- IP address of the primary accounting server - cpsSerialPortAuthTmo Integer32, -- time out per authentication query - cpsSerialPortAuthRetr Integer32, -- authentication number of retries - cpsSerialPortAuthSrv2 IpAddress, -- IP address of the secondary authentication server - cpsSerialPortAccSrv2 IpAddress, -- IP address of the secondary accounting server - cpsSerialPortAuthSecret DisplayString, -- secret used in authentication - cpsSerialPortAuthRadP INTEGER, -- accept RADIUS' user without password - cpsSerialPortAuthAcc DisplayString, -- access restriction on Users - cpsSerialPortProtocol DisplayString, -- Profile - cpsSerialPortRemoteIP DisplayString, -- remote IP address - cpsSerialPortSocketPort DisplayString, -- number of socket port - cpsSerialPortRemHost IpAddress, -- IP address of the remote Host - cpsSerialPortBanner DisplayString, -- Banner - cpsSerialPortPrompt DisplayString, -- Login prompt - cpsSerialPortTermType DisplayString, -- terminal type - cpsSerialPortAutomUsr DisplayString, -- automatic user - cpsSerialPortNetMask IpAddress, -- net mask - cpsSerialPortPppMtu Integer32, - cpsSerialPortPppMru Integer32, - cpsSerialPortPppOptions DisplayString, - cpsSerialPortPppFoption DisplayString, - cpsSerialPortModemChat DisplayString, -- initchat send to modem - cpsSerialPortSttyCmd DisplayString, - cpsSerialPortSockTx Integer32, -- socket transmission interval - cpsSerialPortSockPoll Integer32, -- socket polling interval - cpsSerialPortSockIdle Integer32, -- socket idle timeout - cpsSerialPortDBsize Integer32, -- maximum size of the data buffering file - cpsSerialPortDBtime INTEGER, -- data buffering with/without timestamp - cpsSerialPortDBmode DisplayString, -- data bufferinf mode circ or line - cpsSerialPortDBsyslog Integer32, -- size of the data send to syslog - cpsSerialPortDBmenu INTEGER, -- menu of the data buffering - cpsSerialPortDBalarm INTEGER, -- use alarm generating feature - cpsSerialPortSSHbreak DisplayString, -- break sequence (SSH) - cpsSerialPortSniffSess DisplayString, -- sniff session type - cpsSerialPortSniffAdm DisplayString, -- admin users to sniff - cpsSerialPortSniffEsc DisplayString, -- escape char to sniff session - cpsSerialPortSniffMsess DisplayString, -- multiple session - cpsSerialPortTelnetMode INTEGER, -- telnet client mode - cpsSerialPortSysBufSess INTEGER, -- syslog buffering at all times - cpsSerialPortLFSuppress INTEGER, -- LF suppression in socket_server session - cpsSerialPortAutoInput DisplayString, -- Input string to auto answer - cpsSerialPortAutoOutput DisplayString, -- Output string to auto answer - cpsSerialPortBreakInterval Integer32 -- Break interval (in ms) -} - -cpsSerialPortNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number to identify the serial port. Value 0 is ALL." -::= { cpsSerialPortEntry 1 } - -cpsSerialPortTty OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..25)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The device name for the serial port." -::= { cpsSerialPortEntry 2 } - -cpsSerialPortName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Alias name given to the server connected to the serial port." -::= { cpsSerialPortEntry 3 } - -cpsSerialPortSpeed OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "The speed of the serial port. - Supported values are: - 50, 75, 110, 134, 150, 200, 300, 600, - 1200, 1800, 2400, 4800, 9600, 14400, 19200, - 28800, 38400, 57600, 115200, 230400, and 460800" -::= { cpsSerialPortEntry 4 } - -cpsSerialPortDataSize OBJECT-TYPE - SYNTAX Integer32 (4..8) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The data size for the serial port." -::= { cpsSerialPortEntry 5 } - -cpsSerialPortStopBits OBJECT-TYPE - SYNTAX Integer32 (0..2) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The number of stop bits for the serial port." -::= { cpsSerialPortEntry 6 } - -cpsSerialPortParity OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The parity for the serial port." -::= { cpsSerialPortEntry 7 } - -cpsSerialPortFlowCtrl OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The flow control for the serial port." -::= { cpsSerialPortEntry 8 } - -cpsSerialPortDTRdelay OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "This specifies how long (in milliseconds) a DTR signal - will be turned off before it is turned on again." -::= { cpsSerialPortEntry 9 } - -cpsSerialPortDCDCtrl OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "DCD signal controls the connection request. - 0 will indicate nocontrol, - 1 will indicate control." -::= { cpsSerialPortEntry 10 } - -cpsSerialPortLogUtmp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Update the login records in /var/run/utmp file. - 0 will indicate inactive, - 1 will indicate active." -::= { cpsSerialPortEntry 11 } - -cpsSerialPortLogWtmp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Update the login records in /var/run/wtmp file. - 0 will indicate inactive, - 1 will indicate active." -::= { cpsSerialPortEntry 12 } - -cpsSerialPortLogform OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This is the format to write the login record." -::= { cpsSerialPortEntry 13 } - -cpsSerialPortAuthtype OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..25)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Authentication type." -::= { cpsSerialPortEntry 14 } - -cpsSerialPortAuthSrv1 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "IP address of the primary authentication server." -::= { cpsSerialPortEntry 15 } - -cpsSerialPortAccSrv1 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "IP address of the primary accounting server." -::= { cpsSerialPortEntry 16 } - -cpsSerialPortAuthTmo OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "This is the timeout (in seconds) for the authentication - query to be answered." -::= { cpsSerialPortEntry 17 } - -cpsSerialPortAuthRetr OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "This defines the number of times each server is tried - before another is contacted." -::= { cpsSerialPortEntry 18 } - -cpsSerialPortAuthSrv2 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "IP address of the secondary authentication server." -::= { cpsSerialPortEntry 19 } - -cpsSerialPortAccSrv2 OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "IP address of the secondary accounting server." -::= { cpsSerialPortEntry 20 } - -cpsSerialPortAuthSecret OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This is the shared secret with authentication servers." -::= { cpsSerialPortEntry 21 } - -cpsSerialPortAuthRadP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Radius state. - 0 will indicate inactive, - 1 will indicate active." -::= { cpsSerialPortEntry 22 } - -cpsSerialPortAuthAcc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Access restriction." -::= { cpsSerialPortEntry 23 } - -cpsSerialPortProtocol OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Defines the serial port's protocol." -::= { cpsSerialPortEntry 24 } - -cpsSerialPortRemoteIP OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..20)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This is the default IP address of the serial port." -::= { cpsSerialPortEntry 25 } - -cpsSerialPortSocketPort OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This defines an alternative labeling system for the serial port." -::= { cpsSerialPortEntry 26 } - -cpsSerialPortRemHost OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "The IP address of the host to which the serial port will connect." -::= { cpsSerialPortEntry 27 } - -cpsSerialPortBanner OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..250)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This defines the banner." -::= { cpsSerialPortEntry 28 } - -cpsSerialPortPrompt OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..250)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This defines the login prompt to the serial port." -::= { cpsSerialPortEntry 29 } - -cpsSerialPortTermType OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..20)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This defines the terminal type." -::= { cpsSerialPortEntry 30 } - -cpsSerialPortAutomUsr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "This defines the automatic user." -::= { cpsSerialPortEntry 31 } - -cpsSerialPortNetMask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION "The network mask used in dial in connection." -::= { cpsSerialPortEntry 32 } - -cpsSerialPortPppMtu OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "The PPP MTU - dial in connection." -::= { cpsSerialPortEntry 33 } - -cpsSerialPortPppMru OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "The PPP MRU - dial in connection." -::= { cpsSerialPortEntry 34 } - -cpsSerialPortPppOptions OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION "The PPP options when the PPP session is autodetected." -::= { cpsSerialPortEntry 35 } - -cpsSerialPortPppFoption OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION "The PPP forced options when the user has already been authenticated." -::= { cpsSerialPortEntry 36 } - -cpsSerialPortModemChat OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION "The initchat send to modem connected." -::= { cpsSerialPortEntry 37 } - -cpsSerialPortSttyCmd OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..180)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "The tty settings after socket connection is established." -::= { cpsSerialPortEntry 38 } - -cpsSerialPortSockTx OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "Defines the delay (in milliseconds) before transmission to - the Ethernet of data received through a serial port." -::= { cpsSerialPortEntry 39 } - -cpsSerialPortSockPoll OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "Keep-alive timer (milliseconds) for the TCP connection." -::= { cpsSerialPortEntry 40 } - -cpsSerialPortSockIdle OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "The idle timeout in seconds." -::= { cpsSerialPortEntry 41 } - -cpsSerialPortDBsize OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "Maximum size of the data buffering file." -::= { cpsSerialPortEntry 42 } - -cpsSerialPortDBtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Timestamp in data buffering. - 0 will indicate inactive, - 1 will indicate active." -::= { cpsSerialPortEntry 43 } - -cpsSerialPortDBmode OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Data buffering mode : circ or line." -::= { cpsSerialPortEntry 44 } - -cpsSerialPortDBsyslog OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "Size of the data buffer sent to syslog." -::= { cpsSerialPortEntry 45 } - -cpsSerialPortDBmenu OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Menu type for data buffering. - 0 will indicate display Menu, - 1 will indicate inactive, - 2 will indicate DB, - 3 will indicate Parc." -::= { cpsSerialPortEntry 46 } - -cpsSerialPortDBalarm OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Alarm generation status. - 0 will indicate inactive, - 1 will indicate active." -::= { cpsSerialPortEntry 47 } - -cpsSerialPortSSHbreak OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..16)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Break sequence - ssh session." -::= { cpsSerialPortEntry 48 } - -cpsSerialPortSniffSess OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..5)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Sniff session type." -::= { cpsSerialPortEntry 49 } - -cpsSerialPortSniffAdm OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "List of admin users allowed to sniff session." -::= { cpsSerialPortEntry 50 } - -cpsSerialPortSniffEsc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..6)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Escape sequence used in sniff session." -::= { cpsSerialPortEntry 51 } - -cpsSerialPortSniffMsess OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..20)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "" -::= { cpsSerialPortEntry 52 } - -cpsSerialPortTelnetMode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Mode negotiated by client telnet with the server. - 0 will indicate text, - 1 will indicate binary." -::= { cpsSerialPortEntry 53 } - -cpsSerialPortSysBufSess OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Syslog Buffering at all times. - 0 will indicate yes, - 1 will indicate no." -::= { cpsSerialPortEntry 54 } - -cpsSerialPortLFSuppress OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "LF suppression in socket_server session. - 0 will indicate inactive, - 1 will indicate active." -::= { cpsSerialPortEntry 55 } - -cpsSerialPortAutoInput OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Input string used for auto answer." -::= { cpsSerialPortEntry 56 } - -cpsSerialPortAutoOutput OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..40)) - ACCESS read-write - STATUS mandatory - DESCRIPTION "Output string used for auto answer." -::= { cpsSerialPortEntry 57 } - -cpsSerialPortBreakInterval OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-write - STATUS mandatory - DESCRIPTION "The break interval in milliseconds." -::= { cpsSerialPortEntry 58 } - --- The console Port Server AP930x information group - -cpsInfoSerialPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF CpsInfoSerialPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "This is the information of the specific serial port." -::= { cpsAP930xInfo 1 } - -cpsInfoSerialPortEntry OBJECT-TYPE - SYNTAX CpsInfoSerialPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "One particular serial port." - INDEX { cpsInfoSerialPortNumber } -::= { cpsInfoSerialPortTable 1 } - -CpsInfoSerialPortEntry ::= SEQUENCE { - cpsInfoSerialPortNumber INTEGER, -- X == ttyX sX. - cpsInfoSerialPortTty DisplayString, -- associate device - cpsInfoSerialPortName DisplayString, -- alias name - cpsInfoSerialPortSpeed Integer32, - cpsInfoSerialPortTxBytes Integer32, - cpsInfoSerialPortRXBytes Integer32, - cpsInfoSerialPortErrFrame Integer32, - cpsInfoSerialPortErrParity Integer32, - cpsInfoSerialPortErrBreaks Integer32, - cpsInfoSerialPortErrOverrun Integer32, - cpsInfoSerialPortSigDTR INTEGER, - cpsInfoSerialPortSigCD INTEGER, - cpsInfoSerialPortSigDSR INTEGER, - cpsInfoSerialPortSigRTS INTEGER, - cpsInfoSerialPortSigCTS INTEGER, - cpsInfoSerialPortSigRI INTEGER - } - -cpsInfoSerialPortNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number to identify the serial port." -::= { cpsInfoSerialPortEntry 1 } - -cpsInfoSerialPortTty OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The device name for the serial port." -::= { cpsInfoSerialPortEntry 2 } - -cpsInfoSerialPortName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Alias name given to the server connected to the serial port." -::= { cpsInfoSerialPortEntry 3 } - -cpsInfoSerialPortSpeed OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The speed for serial port." -::= { cpsInfoSerialPortEntry 4 } - -cpsInfoSerialPortTxBytes OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of transmitted bytes by the serial port." -::= { cpsInfoSerialPortEntry 5 } - -cpsInfoSerialPortRXBytes OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of received bytes by the serial port." -::= { cpsInfoSerialPortEntry 6 } - -cpsInfoSerialPortErrFrame OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of frame errors." -::= { cpsInfoSerialPortEntry 7 } - -cpsInfoSerialPortErrParity OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of parity errors." -::= { cpsInfoSerialPortEntry 8 } - -cpsInfoSerialPortErrBreaks OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of breaks errors." -::= { cpsInfoSerialPortEntry 9 } - -cpsInfoSerialPortErrOverrun OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of overrun errors." -::= { cpsInfoSerialPortEntry 10 } - -cpsInfoSerialPortSigDTR OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The state of the DTR signal. - 0 will indicate down, - 1 will indicate up." -::= { cpsInfoSerialPortEntry 11 } - -cpsInfoSerialPortSigCD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The state of the DCD signal. - 0 will indicate down, - 1 will indicate up." -::= { cpsInfoSerialPortEntry 12 } - -cpsInfoSerialPortSigDSR OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The state of the DSR signal. - 0 will indicate down, - 1 will indicate up." -::= { cpsInfoSerialPortEntry 13 } - -cpsInfoSerialPortSigRTS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The state of the RTS signal. - 0 will indicate down, - 1 will indicate up." -::= { cpsInfoSerialPortEntry 14 } - -cpsInfoSerialPortSigCTS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The state of the CTS signal. - 0 will indicate down, - 1 will indicate up." -::= { cpsInfoSerialPortEntry 15 } - -cpsInfoSerialPortSigRI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The state of the RI signal. - 0 will indicate down, - 1 will indicate up." -::= { cpsInfoSerialPortEntry 16 } - --- The console Port Server AP930x administrative group - -apCPSSave OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Exec saveconf command. - 0 will indicate don't save, - 1 will indicate save." -::= { cpsAP930xAdm 1 } - -apCPSSerialHUP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION "Exec signal_ras hup command. - 0 will indicate no restart, - 1 will indicate restart." -::= { cpsAP930xAdm 2 } - --- the access PX group - -accessPXIdentAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Access PX alarm status - 1 = Normal - 2 = Warning - 3 = Critical." - ::= { accessPXIdent 1 } - - -accessPXIdentProductNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The product number of the Access PX." - ::= { accessPXIdent 2 } - -accessPXIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision number of the Access PX." - ::= { accessPXIdent 3 } - -accessPXIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of manufacture of the Access PX." - ::= { accessPXIdent 4 } - -accessPXIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Access PX." - ::= { accessPXIdent 5 } - -accessPXConfigCardReaderEnableDisableAction OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Action to disable/enable the card reader." - ::= { accessPXConfig 1 } - -accessPXConfigAutoRelockTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Time (10 - 60) in seconds when the door will automatically relock - after it has been unlocked and the handle has not been opened." - ::= { accessPXConfig 2 } - -accessPXConfigCardFormat OBJECT-TYPE - SYNTAX INTEGER { - hidStd26 (1), - hid37Bit (2), - hid37BitWithFacility (3), - hidCorp1000 (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates and controls the HID card format. - NOTE: This OID is only valid for HID systems." - ::= { accessPXConfig 3 } - -accessPXConfigFrontDoorLockControl OBJECT-TYPE - SYNTAX INTEGER { - unlock (1), - lock (2), - notInstalledReadOnly (3), - disconnectedReadOnly (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Control action (unlock, lock) for the front door. Setting this OID - will unlock or lock the front door. Getting this OID will respond - with the current state of the front door lock which could be - 1 = unlocked, - 2 = locked, - 3 = not installed, - 4 = disconnected." - ::= { accessPXConfigFront 1 } - -accessPXConfigFrontDoorMaxOpenTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Time in minutes, (1 - 120), that the front door can be - allowed to remain open without generating an alarm condition." - ::= { accessPXConfigFront 2 } - -accessPXStatusFrontDoorLock OBJECT-TYPE - SYNTAX INTEGER { - unlocked (1), - locked (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present state of the front door lock: unlocked, locked, - not installed, or disconnected." - ::= { accessPXStatusFront 1 } - -accessPXStatusFrontDoor OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present state of the front door: open, closed, - not installed, or disconnected." - ::= { accessPXStatusFront 2 } - -accessPXStatusFrontDoorHandle OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present state of the front door handle: open, closed, - not installed, or disconnected." - ::= { accessPXStatusFront 3 } - -accessPXStatusFrontDoorMaxOpenTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Time in minutes, (1 - 120), that the front door can be - allowed to remain open without generating an alarm condition." - ::= { accessPXStatusFront 4 } - -accessPXStatusFrontDoorAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Front door alarm status - 1 = Normal - 2 = Warning - 3 = Critical - 4 = Front door not installed." - ::= { accessPXStatusFront 5 } - -accessPXConfigRearDoorLockControl OBJECT-TYPE - SYNTAX INTEGER { - unlock (1), - lock (2), - notInstalledReadOnly (3), - disconnectedReadOnly (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Control action (unlock, lock) for the rear door. Setting this OID - will unlock or lock the rear door. Getting this OID will respond - with the current state of the rear door lock which could be - 1 = unlocked, - 2 = locked, - 3 = not installed, - 4 = disconnected." - ::= { accessPXConfigRear 1 } - -accessPXConfigRearDoorMaxOpenTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Time in minutes, (1 - 120), that the rear door can be - allowed to remain open without generating an alarm condition." - ::= { accessPXConfigRear 2 } - -accessPXStatusRearDoorLock OBJECT-TYPE - SYNTAX INTEGER { - unlocked (1), - locked (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present state of the rear door lock: unlocked, locked, - not installed, or disconnected." - ::= { accessPXStatusRear 1 } - -accessPXStatusRearDoor OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present state of the rear door: open, closed, - not installed, or disconnected." - ::= { accessPXStatusRear 2 } - -accessPXStatusRearDoorHandle OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Present state of the rear door handle: open, closed, - not installed, or disconnected." - ::= { accessPXStatusRear 3 } - -accessPXStatusRearDoorMaxOpenTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Time in minutes, (1 - 120), that the rear door can be - allowed to remain open without generating an alarm condition." - ::= { accessPXStatusRear 4 } - -accessPXStatusRearDoorAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Rear door alarm status - 1 = Normal - 2 = Warning - 3 = Critical - 4 = Rear door not installed." - ::= { accessPXStatusRear 5 } - -accessPXConfigBeaconName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for the Beacon." - ::= { accessPXConfigBeacon 1 } - -accessPXConfigBeaconLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for the location of the Beacon." - ::= { accessPXConfigBeacon 2 } - -accessPXConfigBeaconAction OBJECT-TYPE - SYNTAX INTEGER { - turnOff (1), - turnOn (2), - notInstalledReadOnly (3), - disconnectedReadOnly (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Control action (turnOff, turnOn) for the beacon. Setting this OID - will turn the beacon off or on. Getting this OID will respond - with the current state which could be - 1 = off, - 2 = on, - 3 = not installed, - 4 = disconnected." - ::= { accessPXConfigBeacon 3 } - -accessPXStatusBeaconName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the beacon." - ::= { accessPXStatusBeacon 1 } - -accessPXStatusBeaconLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the location of the beacon." - ::= { accessPXStatusBeacon 2 } - -accessPXStatusBeaconCurrentState OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2), - notInstalled (3), - disconnected (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of the beacon: off, on, - not installed, or disconnected." - ::= { accessPXStatusBeacon 3 } - --- the apcLocalDisplay group - -apcLocalDisplayIdentDisplayType OBJECT-TYPE - SYNTAX INTEGER { - noDisplayFound (1), - powerviewRM (2), - powerviewWW (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Numeric value used to identify the type of display in use." - ::= { apcLocalDisplayIdent 1 } - -apcLocalDisplayIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model number of the local display." - ::= { apcLocalDisplayIdent 2 } - -apcLocalDisplayIdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision number of the local display." - ::= { apcLocalDisplayIdent 3 } - -apcLocalDisplayIdentOptions OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A display-specific string identifying options in the local display." - ::= { apcLocalDisplayIdent 4 } - -apcLocalDisplayIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of manufacture of the local display, if available." - ::= { apcLocalDisplayIdent 5 } - -apcLocalDisplayIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the local display, if available." - ::= { apcLocalDisplayIdent 6 } - -apcLocalDisplayConfigAlarmBeeper OBJECT-TYPE - SYNTAX INTEGER { - beeperDisabled (1), - beeperEnabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The alarm beeper setting for the local display. - When enabled, the alarm beeper will begin to sound whenever - there a new alarm becomes active. The alarm beeper will continue to - periodically sound until a key is pressed on the display." - ::= { apcLocalDisplayConfig 1 } - -apcLocalDisplayConfigBeeperVolume OBJECT-TYPE - SYNTAX INTEGER { - beeperDisabled (1), - beeperLow (2), - beeperMedium (3), - beeperHigh (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The volume setting of the beeper on the local display." - ::= { apcLocalDisplayConfig 2 } - -apcLocalDisplayConfigCheckLogIndicator OBJECT-TYPE - SYNTAX INTEGER { - checklogNotPresent (1), - checklogDisabled (2), - checklogInformational (3), - checklogWarning (4), - checklogCritical (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum level event severity level required to illuminate - the check log light on the local display. - notPresent (1) indicates that the display does not have a check log light." - ::= { apcLocalDisplayConfig 3 } - -apcLocalDisplayConfigKeyClick OBJECT-TYPE - SYNTAX INTEGER { - keyclickDisabled (1), - keyclickEnabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The key click setting of the local display." - ::= { apcLocalDisplayConfig 4 } - -apcLocalDisplayConfigContrast OBJECT-TYPE - SYNTAX INTEGER { - contrast1 (1), - contrast2 (2), - contrast3 (3), - contrast4 (4), - contrast5 (5), - contrast6 (6), - contrast7 (7), - contrast8 (8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The contrast level of the local display." - ::= { apcLocalDisplayConfig 5 } - --- the software group --- the powerNetSubAgent group --- the powerNetSoftwareSystem group - -powerNetSoftwareSystemDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A brief description of the PowerNet sub-agent." - ::= { powerNetSoftwareSystem 1 } - -powerNetSoftwareOid OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The object identifier of the PowerNet sub-agent." - ::= { powerNetSoftwareSystem 2 } - --- powerNetSmuxPeer OBJECT IDENTIFIER ::= { powerNetSoftwareOid 1 } --- powerNetDPIPeer OBJECT IDENTIFIER ::= { powerNetSoftwareOid 2 } - -powerNetSoftwareSystemUpTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time that the sub-agent has been running." - ::= { powerNetSoftwareSystem 3 } - - --- powerNetSoftwareConfig group - -powerNetSoftwareTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of software modules supporting the UPS." - ::= { powerNetSoftwareConfig 1 } - -powerNetSoftwareTable OBJECT-TYPE - SYNTAX SEQUENCE OF PowerNetSoftwareEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of the software monitoring the UPS." - ::= { powerNetSoftwareConfig 2 } - -powerNetSoftwareEntry OBJECT-TYPE - SYNTAX PowerNetSoftwareEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information on a software module." - INDEX { moduleNumber } - ::= { powerNetSoftwareTable 1 } - -PowerNetSoftwareEntry ::= - SEQUENCE { - moduleNumber - INTEGER, - moduleName - DisplayString, - moduleVersion - DisplayString, - moduleDate - DisplayString - } - -moduleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index into the Software Entry Table" - ::= { powerNetSoftwareEntry 1 } - -moduleName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the software module." - ::= { powerNetSoftwareEntry 2 } - -moduleVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..8)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of the software module." - ::= { powerNetSoftwareEntry 3 } - -moduleDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..9)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the software module represented as mm-dd-yy." - ::= { powerNetSoftwareEntry 4 } - --- the StruxureWare Operations group - -serverStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - stopped(2), - running(3), - running-missing(4), - initializing(5), - starting(6), - disaster-recovery(7), - postoffice-inconsistent(8), - missing-jgroups(9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the StruxureWare Operations server: - 1: The status of the application server is unknown. Check Webmin and if - the problem persists, contact Technical Support. - 2: Restart the StruxureWare DC Operation server. If the server was part of - a cluster, see the StruxureWare DC Operation User Assistance about - rejoining the cluster. If the problem persists, contact Technical Support. - 3: No problem. - 4: High availability is lost. The StruxureWare DC Operation Application - server is running but one or more nodes are not available. If the - StruxureWare DC Operation server is part of a cluster, ensure all nodes - are running and there is a network connection between the nodes. If the - problem persists, contact Technical Support. - 5: Wait for the StruxureWare DC Operation Application server to initialize. - If the problem persists, contact Technical Support. - 6: Wait for the StruxureWare DC Operation Application server to finish - starting. - If the problem persists, contact Technical Support. - 7: This node is running in Disaster Recovery mode. - 8: The JBoss postoffice is currently inconsistent. This may be a temporary - issue. If the problem persists for more than 10 minutes, - contact Technical Support. - 9: The JBoss is missing jgroups. This may be a temporary issue. If the - problem persists for more than 10 minutes, contact Technical Support." - ::= { struxureWareOperationsStatus 1 } - -databaseStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - stopped(2), - running(3), - detached(4), - catching-up(5), - attaching(6), - running-master(7), - running-primary-slave(8), - running-slave(9), - running-alone(10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the StruxureWare Operations database: - 1: The status of the database is unknown. Check Webmin and if the problem - persists, contact Technical Support. - 2: Restart the StruxureWare DC Operation server. If the server was part of - a cluster, see the StruxureWare DC Operation User Assistance about - rejoining the cluster. If the problem persists, contact Technical Support. - 3: No problem. - 4: High availability is lost. The database is detached from the cluster - and does not receive updates. See the StruxureWare DC Operation User - Assistance about reattaching the database node to the StruxureWare DC - Operation cluster. - If the problem persists, contact Technical Support. - 5: The database is catching up with the cluster. Wait for the StruxureWare - DC Operation database to retrieve all updates from the master node. - If the problem persists, contact Technical Support. - 6: The database is attaching to the cluster. Wait for the StruxureWare - Operation database to attach to the cluster. If the problem persists, - contact Technical Support. - 7: The database is the master in a cluster. - 8: The database is the primary slave in the cluster. All changes on master - are synchronously replicated to this node. - 9: The database is a secondary slave in the cluster. All changes on - master are asynchronously replicated to this node. - 10: The database does not replicate its changes to other nodes." - ::= { struxureWareOperationsStatus 2 } - -loadBalancerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - stopped(2), - running(3), - running-missing(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the StruxureWare Operations load balancer: - 1: Load Balancer status is unknown. Check Webmin and if the problem - persists, contact Technical Support. - 2: Load Balancer stopped. Restart the StruxureWare DC Operation server. - If the problem persists, contact Technical Support. - 3: Normal status - 4: High availability is lost. The StruxureWare DC Operation Load Balancer - is running but one or more nodes are not available. If the StruxureWare DC - Operation server is part of a cluster, ensure all nodes are running and - there is a network connection between the nodes. If the problem persists, - contact Technical Support." - ::= { struxureWareOperationsStatus 3 } - -essentialServicesStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - stopped(2), - running(3), - time-sync-problems(4), - backup-problems(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the StruxureWare Operations essential services: - 1: Unknown status. Check Webmin and if the problem persists, contact - Technical Support. - 2: Essential services are not running on the StruxureWare DC Operation - server. Reboot the node and monitor the status page in Webmin. If the - problem persists, contact Technical Support. - 3: Normal status - 4: The time difference between the StruxureWare DC Operation slave and the - master node is too big. Correct the time on the slave to match the time on - the master. Consider using an NTP server. If the problem persists, - contact Technical Support. - 5: The last backup that was attempted on the StruxureWare DC Operation - server has failed. Make certain that the system can write to the location - specified as backup location. This is particularly relevant for network - attached storage. If the problem persists, contact Technical Support." - ::= { struxureWareOperationsStatus 4 } - -etlStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - running(2), - failed(3), - paused(4), - stopped(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the StruxureWare Operations ETL services: - 1: Unknown status. Check the network configuration and the server - network settings. If the problem persists, contact - Technical Support (http://www.apc.com/go/direct/index.cfm?tag=support). - 2: Normal status, - 3: ETL Transformations have failed and are subsequently stopped. - Investigate the cause of the failure. If the problem persists, contact - Technical Support (http://www.apc.com/go/direct/index.cfm?tag=support). - 4: ETL Transformations are currently paused. - 5: ETL Transformations are currently stopped." - ::= { struxureWareOperationsStatus 5 } - - --- the software group --- the powerChuteNetworkShutdown group --- the pcnsIdent group - -pcnshostname OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hostname of the PCNS instance." - ::= { pcnsIdent 1 } - -pcnsVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..9)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of PCNS installed. x.x.x" - ::= { pcnsIdent 2 } - -pcnsOS OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of OS PCNS is Installed on." - ::= { pcnsIdent 3 } - -pcnsJavaVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The version of Java PCNS is running on." - ::= { pcnsIdent 4 } - --- the software group --- the powerChuteNetworkShutdown group --- the pcnsNetworking group - -pcnsUIProtocol OBJECT-TYPE - SYNTAX INTEGER { - http(1), - https(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Web Protocol used to connect to the PCNS UI." - ::= { pcnsNetworking 1 } - -pcnsHttpPort OBJECT-TYPE - SYNTAX INTEGER(0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Port used for PCNS http UI." - ::= { pcnsNetworking 2 } - -pcnsHttpsPort OBJECT-TYPE - SYNTAX INTEGER(0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Port used for PCNS https UI." - ::= { pcnsNetworking 3 } - -pcnsNetworkConfig OBJECT-TYPE - SYNTAX INTEGER { - ipV4(1), - ipV6(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Configuration of the TCP Network." - ::= { pcnsNetworking 4 } - -pcnsVirtualInstall OBJECT-TYPE - SYNTAX INTEGER { - none(1), - hyper-V(2), - vmWare(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Virtualization technology in use by PCNS." - ::= { pcnsNetworking 5 } - --- the software group --- the powerChuteNetworkShutdown group --- the pcnsNMC group - -pcnsMode OBJECT-TYPE - SYNTAX INTEGER { - single(1), - redundant(2), - parallel(3), - advanced(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Configuration mode of the UPS(s) which PCNS is monitoring." - ::= { pcnsNMC 1 } - -pcnsNMCPort OBJECT-TYPE - SYNTAX INTEGER(0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Port used to connect to all of the Network Management Card(s)." - ::= { pcnsNMC 2 } - -pcnsNMCProtocol OBJECT-TYPE - SYNTAX INTEGER { - http(1), - https(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Web Protocol used to connect to all of the Network Management Card(s)." - ::= { pcnsNMC 3 } - -pcnsNmcTable OBJECT-TYPE - SYNTAX SEQUENCE OF PCNSNMCEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Network Management Cards in the UPS's which PCNS is monitoring to provide safe shutdown." - ::= { pcnsNMC 4 } - -pcnsNmcEntry OBJECT-TYPE - SYNTAX PCNSNMCEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Details of the NMC." - INDEX { pcnsNmcIndex } - ::= { pcnsNmcTable 1 } - -PCNSNMCEntry ::= - SEQUENCE { - pcnsNmcIndex - Gauge, - pcnsNmcAddr - IpAddress, - pcnsNmcOutlet - Gauge - } - -pcnsNmcIndex OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the NMC within PCNS setup." - ::= { pcnsNmcEntry 1 } - -pcnsNmcAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP address of the NMC." - ::= { pcnsNmcEntry 2 } - -pcnsNmcOutlet OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Outlet Group which PCNS is enrolled with on the NMC." - ::= { pcnsNmcEntry 3 } - --- the software group --- the powerChuteNetworkShutdown group --- the pcnsEvents group - - - -pcnsPowerFailed OBJECT IDENTIFIER ::= { pcnsEvents 1 } - -pcnsPowerFailedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsPowerFailed 1 } - -pcnsPowerFailedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsPowerFailed 2 } - -pcnsPowerFailedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsPowerFailed 3 } - -pcnsPowerFailedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsPowerFailed 4 } - -pcnsPowerFailedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsPowerFailed 5 } - -pcnsPowerFailedEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsPowerFailed 6 } - -pcnsPowerFailedShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsPowerFailed 7 } - -pcnsPowerRestored OBJECT IDENTIFIER ::= { pcnsEvents 2 } - -pcnsPowerRestoredDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsPowerRestored 1 } - -pcnsPowerRestoredEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsPowerRestored 2 } - -pcnsPowerRestoredEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsPowerRestored 3 } - -pcnsPowerRestoredCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsPowerRestored 4 } - -pcnsPowerRestoredCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsPowerRestored 5 } - - -pcnsOverload OBJECT IDENTIFIER ::= { pcnsEvents 3 } - -pcnsOverloadDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsOverload 1 } - -pcnsOverloadEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsOverload 2 } - -pcnsOverloadEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsOverload 3 } - -pcnsOverloadCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsOverload 4 } - -pcnsOverloadCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsOverload 5 } - -pcnsOverloadEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsOverload 6 } - -pcnsOverloadShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsOverload 7 } - -pcnsOverloadSolved OBJECT IDENTIFIER ::= { pcnsEvents 4 } - -pcnsOverloadSolvedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsOverloadSolved 1 } - -pcnsOverloadSolvedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsOverloadSolved 2 } - -pcnsOverloadSolvedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsOverloadSolved 3 } - -pcnsOverloadSolvedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsOverloadSolved 4 } - -pcnsOverloadSolvedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsOverloadSolved 5 } - - -pcnsRunTimeExceeded OBJECT IDENTIFIER ::= { pcnsEvents 5 } - -pcnsRunTimeExceededDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsRunTimeExceeded 1 } - -pcnsRunTimeExceededEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsRunTimeExceeded 2 } - -pcnsRunTimeExceededEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsRunTimeExceeded 3 } - -pcnsRunTimeExceededCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsRunTimeExceeded 4 } - -pcnsRunTimeExceededCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsRunTimeExceeded 5 } - -pcnsRunTimeExceededEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsRunTimeExceeded 6 } - -pcnsRunTimeExceededShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsRunTimeExceeded 7 } - - -pcnsRunTimeWithinRange OBJECT IDENTIFIER ::= { pcnsEvents 6 } - -pcnsRunTimeWithinRangeDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsRunTimeWithinRange 1 } - -pcnsRunTimeWithinRangeEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsRunTimeWithinRange 2 } - -pcnsRunTimeWithinRangeEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsRunTimeWithinRange 3 } - -pcnsRunTimeWithinRangeCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsRunTimeWithinRange 4 } - -pcnsRunTimeWithinRangeCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsRunTimeWithinRange 5 } - - - -pcnsRunTimeBelowThreshold OBJECT IDENTIFIER ::= { pcnsEvents 7 } - -pcnsRunTimeBelowThresholdDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsRunTimeBelowThreshold 1 } - -pcnspcnsRunTimeBelowThresholdEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsRunTimeBelowThreshold 2 } - -pcnsRunTimeBelowThresholdEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsRunTimeBelowThreshold 3 } - -pcnsRunTimeBelowThresholdCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsRunTimeBelowThreshold 4 } - - -pcnsRunTimeBelowThresholdEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsRunTimeBelowThreshold 6 } - - -pcnsRunTimeBelowThresholdCommandFileThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "If the Runtime Remaining falls below this (seconds), the command file will run." - ::= { pcnsRunTimeBelowThreshold 8 } - -pcnsRunTimeBelowThresholdShutdownThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "If the Runtime Remaining falls below this (seconds), the shutdown will begin." - ::= { pcnsRunTimeBelowThreshold 9 } - - - - -pcnsRunTimeAboveThreshold OBJECT IDENTIFIER ::= { pcnsEvents 8 } - -pcnsRunTimeAboveThresholdDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsRunTimeAboveThreshold 1 } - -pcnsRunTimeAboveThresholdEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsRunTimeAboveThreshold 2 } - -pcnsRunTimeAboveThresholdEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsRunTimeAboveThreshold 3 } - -pcnsRunTimeAboveThresholdCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsRunTimeAboveThreshold 4 } - -pcnsRunTimeAboveThresholdCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsRunTimeAboveThreshold 5 } - - - - -pcnsBatteryDischarged OBJECT IDENTIFIER ::= { pcnsEvents 10 } - -pcnsBatteryDischargedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBatteryDischarged 1 } - -pcnsBatteryDischargedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBatteryDischarged 2 } - -pcnsBatteryDischargedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBatteryDischarged 3 } - -pcnsBatteryDischargedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBatteryDischarged 4 } - -pcnsBatteryDischargedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBatteryDischarged 5 } - -pcnsBatteryDischargedEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsBatteryDischarged 6 } - -pcnsBatteryDischargedShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsBatteryDischarged 7 } - - -pcnsBatteryChargeInRange OBJECT IDENTIFIER ::= { pcnsEvents 11 } - -pcnsBatteryChargeInRangeDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBatteryChargeInRange 1 } - -pcnsBatteryChargeInRangeEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBatteryChargeInRange 2 } - -pcnsBatteryChargeInRangeEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBatteryChargeInRange 3 } - -pcnsBatteryChargeInRangeCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBatteryChargeInRange 4 } - -pcnsBatteryChargeInRangeCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBatteryChargeInRange 5 } - - - -pcnsFaultBypassEnabled OBJECT IDENTIFIER ::= { pcnsEvents 12 } - -pcnsFaultBypassEnabledDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsFaultBypassEnabled 1 } - -pcnsFaultBypassEnabledEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsFaultBypassEnabled 2 } - -pcnsFaultBypassEnabledEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsFaultBypassEnabled 3 } - -pcnsFaultBypassEnabledCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsFaultBypassEnabled 4 } - -pcnsFaultBypassEnabledCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsFaultBypassEnabled 5 } - -pcnsFaultBypassEnabledEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsFaultBypassEnabled 6 } - -pcnsFaultBypassEnabledShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsFaultBypassEnabled 7 } - - -pcnsBypassEnabled OBJECT IDENTIFIER ::= { pcnsEvents 13 } - -pcnsBypassEnabledDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBypassEnabled 1 } - -pcnsBypassEnabledEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBypassEnabled 2 } - -pcnsBypassEnabledEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBypassEnabled 3 } - -pcnsBypassEnabledCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBypassEnabled 4 } - -pcnsBypassEnabledCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBypassEnabled 5 } - -pcnsBypassEnabledEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsBypassEnabled 6 } - -pcnsBypassEnabledShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsBypassEnabled 7 } - - -pcnsBypassManualEnabled OBJECT IDENTIFIER ::= { pcnsEvents 14 } - -pcnsBypassManualEnabledDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBypassManualEnabled 1 } - -pcnsBypassManualEnabledEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBypassManualEnabled 2 } - -pcnsBypassManualEnabledEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBypassManualEnabled 3 } - -pcnsBypassManualEnabledCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBypassManualEnabled 4 } - -pcnsBypassManualEnabledCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBypassManualEnabled 5 } - -pcnsBypassManualEnabledEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsBypassManualEnabled 6 } - -pcnsBypassManualEnabledShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsBypassManualEnabled 7 } - -pcnsBypassDisabled OBJECT IDENTIFIER ::= { pcnsEvents 15 } - -pcnsBypassDisabledDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBypassDisabled 1 } - -pcnsBypassDisabledEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBypassDisabled 2 } - -pcnsBypassDisabledEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBypassDisabled 3 } - -pcnsBypassDisabledCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBypassDisabled 4 } - -pcnsBypassDisabledCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBypassDisabled 5 } - - -pcnsBypassContactorFailed OBJECT IDENTIFIER ::= { pcnsEvents 16 } - -pcnsBypassContactorFailedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBypassContactorFailed 1 } - -pcnsBypassContactorFailedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBypassContactorFailed 2 } - -pcnsBypassContactorFailedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBypassContactorFailed 3 } - -pcnsBypassContactorFailedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBypassContactorFailed 4 } - -pcnsBypassContactorFailedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBypassContactorFailed 5 } - -pcnsBypassContactorFailedEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsBypassContactorFailed 6 } - -pcnsBypassContactorFailedShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsBypassContactorFailed 7 } - -pcnsBypassContactorOk OBJECT IDENTIFIER ::= { pcnsEvents 17 } - -pcnsBypassContactorOkDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsBypassContactorOk 1 } - -pcnsBypassContactorOkEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsBypassContactorOk 2 } - -pcnsBypassContactorOkEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsBypassContactorOk 3 } - -pcnsBypassContactorOkCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsBypassContactorOk 4 } - -pcnsBypassContactorOkCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsBypassContactorOk 5 } - - -pcnsCommunicationLostOnBattery OBJECT IDENTIFIER ::= { pcnsEvents 18 } - -pcnsCommunicationLostOnBatteryDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsCommunicationLostOnBattery 1 } - -pcnsCommunicationLostOnBatteryEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsCommunicationLostOnBattery 2 } - -pcnsCommunicationLostOnBatteryEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsCommunicationLostOnBattery 3 } - -pcnsCommunicationLostOnBatteryCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsCommunicationLostOnBattery 4 } - -pcnsCommunicationLostOnBatteryCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsCommunicationLostOnBattery 5 } - -pcnsCommunicationLostOnBatteryEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsCommunicationLostOnBattery 6 } - -pcnsCommunicationLostOnBatteryShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsCommunicationLostOnBattery 7 } - -pcnsCommunicationLost OBJECT IDENTIFIER ::= { pcnsEvents 19 } - -pcnsCommunicationLostDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsCommunicationLost 1 } - -pcnsCommunicationLostEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsCommunicationLost 2 } - -pcnsCommunicationLostEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsCommunicationLost 3 } - -pcnsCommunicationLostCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsCommunicationLost 4 } - -pcnsCommunicationLostCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsCommunicationLost 5 } - -pcnsCommunicationLostEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsCommunicationLost 6 } - -pcnsCommunicationLostShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsCommunicationLost 7 } - -pcnsNetCommunicationLost OBJECT IDENTIFIER ::= { pcnsEvents 20 } - -pcnsNetCommunicationLostDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsNetCommunicationLost 1 } - -pcnsNetCommunicationLostEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsNetCommunicationLost 2 } - -pcnsNetCommunicationLostEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsNetCommunicationLost 3 } - -pcnsNetCommunicationLostCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsNetCommunicationLost 4 } - -pcnsNetCommunicationLostCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsNetCommunicationLost 5 } - -pcnsNetCommunicationLostEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsNetCommunicationLost 6 } - -pcnsNetCommunicationLostShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsNetCommunicationLost 7 } - -pcnsCommunicationEstablished OBJECT IDENTIFIER ::= { pcnsEvents 21 } - -pcnsCommunicationEstablishedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsCommunicationEstablished 1 } - -pcnsCommunicationEstablishedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsCommunicationEstablished 2 } - -pcnsCommunicationEstablishedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsCommunicationEstablished 3 } - -pcnsCommunicationEstablishedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsCommunicationEstablished 4 } - -pcnsCommunicationEstablishedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsCommunicationEstablished 5 } - - -pcnsMinRedundancyLost OBJECT IDENTIFIER ::= { pcnsEvents 22 } - -pcnsMinRedundancyLostDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsMinRedundancyLost 1 } - -pcnsMinRedundancyLostEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsMinRedundancyLost 2 } - -pcnsMinRedundancyLostEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsMinRedundancyLost 3 } - -pcnsMinRedundancyLostCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsMinRedundancyLost 4 } - -pcnsMinRedundancyLostCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsMinRedundancyLost 5 } - -pcnsMinRedundancyLostEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsMinRedundancyLost 6 } - -pcnsMinRedundancyLostShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsMinRedundancyLost 7 } - -pcnsMinRedundancyRegained OBJECT IDENTIFIER ::= { pcnsEvents 23 } - -pcnsMinRedundancyRegainedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsMinRedundancyRegained 1 } - -pcnsMinRedundancyRegainedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsMinRedundancyRegained 2 } - -pcnsMinRedundancyRegainedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsMinRedundancyRegained 3 } - -pcnsMinRedundancyRegainedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsMinRedundancyRegained 4 } - -pcnsMinRedundancyRegainedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsMinRedundancyRegained 5 } - - -pcnsParallelRedundancyLost OBJECT IDENTIFIER ::= { pcnsEvents 24 } - -pcnsParallelRedundancyLostDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsParallelRedundancyLost 1 } - -pcnsParallelRedundancyLostEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsParallelRedundancyLost 2 } - -pcnsParallelRedundancyLostEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsParallelRedundancyLost 3 } - -pcnsParallelRedundancyLostCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsParallelRedundancyLost 4 } - -pcnsParallelRedundancyLostCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsParallelRedundancyLost 5 } - -pcnsParallelRedundancyLostEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsParallelRedundancyLost 6 } - -pcnsParallelRedundancyLostShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsParallelRedundancyLost 7 } - -pcnsParallelRedundancyRegained OBJECT IDENTIFIER ::= { pcnsEvents 25 } - -pcnsParallelRedundancyRegainedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsParallelRedundancyRegained 1 } - -pcnsParallelRedundancyRegainedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsParallelRedundancyRegained 2 } - -pcnsParallelRedundancyRegainedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsParallelRedundancyRegained 3 } - -pcnsParallelRedundancyRegainedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsParallelRedundancyRegained 4 } - -pcnsParallelRedundancyRegainedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsParallelRedundancyRegained 5 } - -pcnsMaxInternalTempExceeded OBJECT IDENTIFIER ::= { pcnsEvents 26 } - -pcnsMaxInternalTempExceededDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsMaxInternalTempExceeded 1 } - -pcnsMaxInternalTempExceededEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsMaxInternalTempExceeded 2 } - -pcnsMaxInternalTempExceededEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsMaxInternalTempExceeded 3 } - -pcnsMaxInternalTempExceededCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsMaxInternalTempExceeded 4 } - -pcnsMaxInternalTempExceededCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsMaxInternalTempExceeded 5 } - -pcnsMaxInternalTempExceededEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsMaxInternalTempExceeded 6 } - -pcnsMaxInternalTempExceededShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsMaxInternalTempExceeded 7 } - -pcnsMaxInternalTempInRange OBJECT IDENTIFIER ::= { pcnsEvents 27 } - -pcnsMaxInternalTempInRangeDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsMaxInternalTempInRange 1 } - -pcnsMaxInternalTempInRangeEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsMaxInternalTempInRange 2 } - -pcnsMaxInternalTempInRangeEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsMaxInternalTempInRange 3 } - -pcnsMaxInternalTempInRangeCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsMaxInternalTempInRange 4 } - -pcnsMaxInternalTempInRangeCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsMaxInternalTempInRange 5 } - - -pcnsMinLoadCapabilityLost OBJECT IDENTIFIER ::= { pcnsEvents 28 } - -pcnsMinLoadCapabilityLostDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsMinLoadCapabilityLost 1 } - -pcnsMinLoadCapabilityLostEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsMinLoadCapabilityLost 2 } - -pcnsMinLoadCapabilityLostEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsMinLoadCapabilityLost 3 } - -pcnsMinLoadCapabilityLostCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsMinLoadCapabilityLost 4 } - -pcnsMinLoadCapabilityLostCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsMinLoadCapabilityLost 5 } - -pcnsMinLoadCapabilityLostEnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsMinLoadCapabilityLost 6 } - -pcnsMinLoadCapabilityLostShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsMinLoadCapabilityLost 7 } - -pcnsMinLoadCapabilityRegained OBJECT IDENTIFIER ::= { pcnsEvents 29 } - -pcnsMinLoadCapabilityRegainedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsMinLoadCapabilityRegained 1 } - -pcnsMinLoadCapabilityRegainedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsMinLoadCapabilityRegained 2 } - -pcnsMinLoadCapabilityRegainedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsMinLoadCapabilityRegained 3 } - -pcnsMinLoadCapabilityRegainedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsMinLoadCapabilityRegained 4 } - -pcnsMinLoadCapabilityRegainedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsMinLoadCapabilityRegained 5 } - - - --- PCNS Environmental Monitoring Card Events -pcnsEnvironmentCommunicationEstablished OBJECT IDENTIFIER ::= { pcnsEvents 30 } - -pcnsEnvironmentCommunicationEstablishedDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsEnvironmentCommunicationEstablished 1 } - -pcnsEnvironmentCommunicationEstablishedEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsEnvironmentCommunicationEstablished 2 } - -pcnsEnvironmentCommunicationEstablishedEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsEnvironmentCommunicationEstablished 3 } - -pcnsEnvironmentCommunicationEstablishedCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsEnvironmentCommunicationEstablished 4 } - -pcnsEnvironmentCommunicationEstablishedCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsEnvironmentCommunicationEstablished 5 } - - - -pcnsEnvironmentCommunicationLost OBJECT IDENTIFIER ::= { pcnsEvents 31 } - -pcnsEnvironmentCommunicationLostDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsEnvironmentCommunicationLost 1 } - -pcnsEnvironmentCommunicationLostEnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsEnvironmentCommunicationLost 2 } - -pcnsEnvironmentCommunicationLostEnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsEnvironmentCommunicationLost 3 } - -pcnsEnvironmentCommunicationLostCommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsEnvironmentCommunicationLost 4 } - -pcnsEnvironmentCommunicationLostCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsEnvironmentCommunicationLost 5 } - -pcnsTempInRangeProbe1 OBJECT IDENTIFIER ::= { pcnsEvents 32 } - -pcnsTempInRangeProbe1Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsTempInRangeProbe1 1 } - -pcnsTempInRangeProbe1EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsTempInRangeProbe1 2 } - -pcnsTempInRangeProbe1EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsTempInRangeProbe1 3 } - -pcnsTempInRangeProbe1CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsTempInRangeProbe1 4 } - -pcnsTempInRangeProbe1CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsTempInRangeProbe1 5 } - - - -pcnsTempOutOfRangeProbe1 OBJECT IDENTIFIER ::= { pcnsEvents 33 } - -pcnsTempOutOfRangeProbe1Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsTempOutOfRangeProbe1 1 } - -pcnsTempOutOfRangeProbe1EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsTempOutOfRangeProbe1 2 } - -pcnsTempOutOfRangeProbe1EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsTempOutOfRangeProbe1 3 } - -pcnsTempOutOfRangeProbe1CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsTempOutOfRangeProbe1 4 } - -pcnsTempOutOfRangeProbe1CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsTempOutOfRangeProbe1 5 } - -pcnsTempOutOfRangeProbe1EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsTempOutOfRangeProbe1 6 } - -pcnsTempOutOfRangeProbe1ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsTempOutOfRangeProbe1 7 } - - -pcnsHumidityInRangeProbe1 OBJECT IDENTIFIER ::= { pcnsEvents 34 } -pcnsHumidityInRangeProbe1Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsHumidityInRangeProbe1 1 } - -pcnsHumidityInRangeProbe1EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsHumidityInRangeProbe1 2 } - -pcnsHumidityInRangeProbe1EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsHumidityInRangeProbe1 3 } - -pcnsHumidityInRangeProbe1CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsHumidityInRangeProbe1 4 } - -pcnsHumidityInRangeProbe1CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsHumidityInRangeProbe1 5 } - - - -pcnsHumidityOutOfRangeProbe1 OBJECT IDENTIFIER ::= { pcnsEvents 35 } - -pcnsHumidityOutOfRangeProbe1Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsHumidityOutOfRangeProbe1 1 } - -pcnsHumidityOutOfRangeProbe1EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsHumidityOutOfRangeProbe1 2 } - -pcnsHumidityOutOfRangeProbe1EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsHumidityOutOfRangeProbe1 3 } - -pcnsHumidityOutOfRangeProbe1CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsHumidityOutOfRangeProbe1 4 } - -pcnsHumidityOutOfRangeProbe1CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsHumidityOutOfRangeProbe1 5 } - -pcnsHumidityOutOfRangeProbe1EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsHumidityOutOfRangeProbe1 6 } - -pcnsHumidityOutOfRangeProbe1ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsHumidityOutOfRangeProbe1 7 } - -pcnsTempInRangeProbe2 OBJECT IDENTIFIER ::= { pcnsEvents 36 } - -pcnsTempInRangeProbe2Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsTempInRangeProbe2 1 } - -pcnsTempInRangeProbe2EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsTempInRangeProbe2 2 } - -pcnsTempInRangeProbe2EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsTempInRangeProbe2 3 } - -pcnsTempInRangeProbe2CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsTempInRangeProbe2 4 } - -pcnsTempInRangeProbe2CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsTempInRangeProbe2 5 } - - - -pcnsTempOutOfRangeProbe2 OBJECT IDENTIFIER ::= { pcnsEvents 37 } - -pcnsTempOutOfRangeProbe2Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsTempOutOfRangeProbe2 1 } - -pcnsTempOutOfRangeProbe2EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsTempOutOfRangeProbe2 2 } - -pcnsTempOutOfRangeProbe2EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsTempOutOfRangeProbe2 3 } - -pcnsTempOutOfRangeProbe2CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsTempOutOfRangeProbe2 4 } - -pcnsTempOutOfRangeProbe2CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsTempOutOfRangeProbe2 5 } - -pcnsTempOutOfRangeProbe2EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsTempOutOfRangeProbe2 6 } - -pcnsTempOutOfRangeProbe2ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsTempOutOfRangeProbe2 7 } - - -pcnsHumidityInRangeProbe2 OBJECT IDENTIFIER ::= { pcnsEvents 38 } - -pcnsHumidityInRangeProbe2Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsHumidityInRangeProbe2 1 } - -pcnsHumidityInRangeProbe2EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsHumidityInRangeProbe2 2 } - -pcnsHumidityInRangeProbe2EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsHumidityInRangeProbe2 3 } - -pcnsHumidityInRangeProbe2CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsHumidityInRangeProbe2 4 } - -pcnsHumidityInRangeProbe2CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsHumidityInRangeProbe2 5 } - - - -pcnsHumidityOutOfRangeProbe2 OBJECT IDENTIFIER ::= { pcnsEvents 39 } - -pcnsHumidityOutOfRangeProbe2Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsHumidityOutOfRangeProbe2 1 } - -pcnsHumidityOutOfRangeProbe2EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsHumidityOutOfRangeProbe2 2 } - -pcnsHumidityOutOfRangeProbe2EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsHumidityOutOfRangeProbe2 3 } - -pcnsHumidityOutOfRangeProbe2CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsHumidityOutOfRangeProbe2 4 } - -pcnsHumidityOutOfRangeProbe2CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsHumidityOutOfRangeProbe2 5 } - -pcnsHumidityOutOfRangeProbe2EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsHumidityOutOfRangeProbe2 6 } - -pcnsHumidityOutOfRangeProbe2ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsHumidityOutOfRangeProbe2 7 } - -pcnsContactFault1 OBJECT IDENTIFIER ::= { pcnsEvents 40 } - -pcnsContactFault1Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactFault1 1 } - -pcnsContactFault1EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactFault1 2 } - -pcnsContactFault1EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactFault1 3 } - -pcnsContactFault1CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactFault1 4 } - -pcnsContactFault1CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactFault1 5 } - -pcnsContactFault1EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsContactFault1 6 } - -pcnsContactFault1ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsContactFault1 7 } - - -pcnsContactFault2 OBJECT IDENTIFIER ::= { pcnsEvents 41 } - -pcnsContactFault2Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactFault2 1 } - -pcnsContactFault2EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactFault2 2 } - -pcnsContactFault2EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactFault2 3 } - -pcnsContactFault2CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactFault2 4 } - -pcnsContactFault2CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactFault2 5 } - -pcnsContactFault2EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsContactFault2 6 } - -pcnsContactFault2ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsContactFault2 7 } - -pcnsContactFault3 OBJECT IDENTIFIER ::= { pcnsEvents 42 } - -pcnsContactFault3Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactFault3 1 } - -pcnsContactFault3EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactFault3 2 } - -pcnsContactFault3EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactFault3 3 } - -pcnsContactFault3CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactFault3 4 } - -pcnsContactFault3CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactFault3 5 } - -pcnsContactFault3EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsContactFault3 6 } - -pcnsContactFault3ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsContactFault3 7 } - -pcnsContactFault4 OBJECT IDENTIFIER ::= { pcnsEvents 43 } - -pcnsContactFault4Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactFault4 1 } - -pcnsContactFault4EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactFault4 2 } - -pcnsContactFault4EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactFault4 3 } - -pcnsContactFault4CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactFault4 4 } - -pcnsContactFault4CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactFault4 5 } - -pcnsContactFault4EnableShutdown OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Perform a graceful shutdown of the server when this event occurs." - ::= { pcnsContactFault4 6 } - -pcnsContactFault4ShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before performing a graceful shutdown of the server (seconds)." - ::= { pcnsContactFault4 7 } - -pcnsContactNormal1 OBJECT IDENTIFIER ::= { pcnsEvents 44 } - -pcnsContactNormal1Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactNormal1 1 } - -pcnsContactNormal1EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactNormal1 2 } - -pcnsContactNormal1EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactNormal1 3 } - -pcnsContactNormal1CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactNormal1 4 } - -pcnsContactNormal1CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactNormal1 5 } - - -pcnsContactNormal2 OBJECT IDENTIFIER ::= { pcnsEvents 45 } - -pcnsContactNormal2Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactNormal2 1 } - -pcnsContactNormal2EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactNormal2 2 } - -pcnsContactNormal2EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactNormal2 3 } - -pcnsContactNormal2CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactNormal2 4 } - -pcnsContactNormal2CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactNormal2 5 } - - -pcnsContactNormal3 OBJECT IDENTIFIER ::= { pcnsEvents 46 } - -pcnsContactNormal3Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactNormal3 1 } - -pcnsContactNormal3EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactNormal3 2 } - -pcnsContactNormal3EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactNormal3 3 } - -pcnsContactNormal3CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactNormal3 4 } - -pcnsContactNormal3CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactNormal3 5 } - - - -pcnsContactNormal4 OBJECT IDENTIFIER ::= { pcnsEvents 47 } - -pcnsContactNormal4Desc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Description of the event." - ::= { pcnsContactNormal4 1 } - -pcnsContactNormal4EnableLogging OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Log occurrences of this event in PCNS log." - ::= { pcnsContactNormal4 2 } - -pcnsContactNormal4EnableCommandFile OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Execute a command file when this event occurs." - ::= { pcnsContactNormal4 3 } - -pcnsContactNormal4CommandFilePath OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Path of command file to execute when this event occurs." - ::= { pcnsContactNormal4 4 } - -pcnsContactNormal4CommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long to wait after event occurs before executing command file (seconds)." - ::= { pcnsContactNormal4 5 } - - - - - - --- the software group --- the powerChuteNetworkShutdown group --- the pcnsShutdown group - -pcnsShutdownCommandFileEnabled OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Run a shutdown command file before performing graceful shutdown." - ::= { pcnsShutdown 1 } - -pcnsShutdownCommandFileDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long in seconds to wait before running a shutdown command file before graceful shutdown." - ::= { pcnsShutdown 2 } - -pcnsShutdownCommandFile OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Full name of the shutdown command file to run before graceful shutdown." - ::= { pcnsShutdown 3 } - -pcnsShutdownCommandFileDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long in seconds shutdown command file takes to run." - ::= { pcnsShutdown 4 } - -pcnsTurnOffUps OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off the UPS when performing a graceful shutdown." - ::= { pcnsShutdown 5 } - -pcnsTurnOffSOG OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off the Outlet Group on the UPS when performing a graceful shutdown." - ::= { pcnsShutdown 6 } - -pcnsRuntimeRemainingThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This defines a threshold for runtime remaining. When the - UPS is running on battery power and the runtime remaining - on the UPS drops below the threshold, PowerChute will trigger - a shutdown sequence." - ::= { pcnsShutdown 7 } - -pcnsRuntimeRemainingCmdFileThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This defines a threshold for runtime remaining. When - runtime remaining drops below this threshold, PowerChute - will execute the command file." - ::= { pcnsShutdown 8 } - -pcnsAdvancedShutdownTable OBJECT-TYPE - SYNTAX SEQUENCE OF PCNSAdvancedShutdownEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Network Management Cards in the UPS's which PCNS is monitoring to provide safe shutdown." - ::= { pcnsShutdown 9 } - -pcnsAdvancedShutdownEntry OBJECT-TYPE - SYNTAX PCNSAdvancedShutdownEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Details of the NMC." - INDEX { pcnsAdvancedGroupNo } - ::= { pcnsAdvancedShutdownTable 1 } - -PCNSAdvancedShutdownEntry ::= - SEQUENCE { - pcnsAdvancedGroupNo Gauge, - pcnsAdvancedGroupName DisplayString, - pcnsAdvancedGroupNMC DisplayString, - pcnsAdvancedShutdownUPSRequiredForLoad INTEGER, - pcnsAdvancedShutdownCommandFileEnabled INTEGER, - pcnsAdvancedShutdownCommandFile DisplayString, - pcnsAdvancedShutdownCommandFileDuration INTEGER, - pcnsAdvancedShutdownPowerchuteServer INTEGER, - pcnsAdvancedShutdownOnLostRedundancy INTEGER, - pcnsAdvancedTurnOffUps INTEGER, - pcnsAdvancedTurnOffSOG INTEGER - } - -pcnsAdvancedGroupNo OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of the Advanced Shutdown Group." - ::= { pcnsAdvancedShutdownEntry 1 } - -pcnsAdvancedGroupName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..32)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Name of the Advanced Shutdown Group." - ::= { pcnsAdvancedShutdownEntry 2 } - -pcnsAdvancedGroupNMC OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "List of NMCs in the Advanced Shutdown Group." - ::= { pcnsAdvancedShutdownEntry 3 } - -pcnsAdvancedShutdownUPSRequiredForLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Number of UPS's required to power load." - ::= { pcnsAdvancedShutdownEntry 4 } - -pcnsAdvancedShutdownCommandFileEnabled OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Run a shutdown command file before performing graceful shutdown." - ::= { pcnsAdvancedShutdownEntry 5 } - -pcnsAdvancedShutdownCommandFile OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Full name of the shutdown command file to run before graceful shutdown." - ::= { pcnsAdvancedShutdownEntry 6 } - -pcnsAdvancedShutdownCommandFileDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "How long in seconds shutdown command file takes to run." - ::= { pcnsAdvancedShutdownEntry 7 } - -pcnsAdvancedShutdownPowerchuteServer OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Shut down PowerChute Server." - ::= { pcnsAdvancedShutdownEntry 8 } - -pcnsAdvancedShutdownOnLostRedundancy OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Shut down if Redundancy lost." - ::= { pcnsAdvancedShutdownEntry 9 } - -pcnsAdvancedTurnOffUps OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off the UPS when performing a graceful shutdown." - ::= { pcnsAdvancedShutdownEntry 10 } - -pcnsAdvancedTurnOffSOG OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turn off the Outlet Group on the UPS when performing a graceful shutdown." - ::= { pcnsAdvancedShutdownEntry 11 } - - --- the software group --- the powerChuteNetworkShutdown group --- the pcnsAlarms group - -pcnsCriticalFlag OBJECT-TYPE - SYNTAX INTEGER { - active (1), - clear (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PowerChute Network Shutdown has begun a safe shutdown of the host." - ::= { pcnsAlarms 1 } - -pcnsCriticalCause OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The reason PowerChute Network Shutdown has begun a safe shutdown." - ::= { pcnsAlarms 2 } - -pcnsNetComsLostFlag OBJECT-TYPE - SYNTAX INTEGER { - active (1), - clear (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PowerChute cannot communicate with NMC." - ::= { pcnsAlarms 3 } - -pcnsNMCComsLostFlag OBJECT-TYPE - SYNTAX INTEGER { - active (1), - clear (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "NMC cannot communicate with UPS." - ::= { pcnsAlarms 4 } - -pcnsUpdateAvailableFlag OBJECT-TYPE - SYNTAX INTEGER { - active (1), - clear (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PowerChute has detected that a newer version is available." - ::= { pcnsAlarms 5 } - -pcnsUpdateDesc OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Details of the newer version of PowerChute." - ::= { pcnsAlarms 6 } - - - --- the ups group --- the upsIdent group --- the upsBasicIdent - -upsBasicIdentModel OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS model name (e.g. 'APC Smart-UPS 600')." - ::= { upsBasicIdent 1 } - -upsBasicIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An 8 byte ID string identifying the UPS. This object - can be set by the administrator." - ::= { upsBasicIdent 2 } - - --- the upsAdvIdent group - -upsAdvIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the UPS system's microprocessor." - ::= { upsAdvIdent 1 } - -upsAdvIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the UPS was manufactured in mm/dd/yy (or yyyy) format." - ::= { upsAdvIdent 2 } - -upsAdvIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An 8-character string identifying the serial number of - the UPS internal microprocessor. This number is set at - the factory. NOTE: This number does NOT correspond to - the serial number on the rear of the UPS." - ::= { upsAdvIdent 3 } - -upsAdvIdentFirmwareRevision2 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of a UPS system co-microprocessor." - ::= { upsAdvIdent 4 } - -upsAdvIdentSkuNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SKU number of a UPS system." - ::= { upsAdvIdent 5 } - --- the upsBattery group --- the upsBasicBattery group - -upsBasicBatteryStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - batteryNormal(2), - batteryLow(3), - batteryInFaultCondition(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the UPS batteries. A batteryLow(3) value - indicates the UPS will be unable to sustain the current - load, and its services will be lost if power is not restored. - The amount of run time in reserve at the time of low battery - can be configured by the upsAdvConfigLowBatteryRunTime. - A batteryInFaultCondition(4)value indicates that a battery - installed has an internal error condition." - ::= { upsBasicBattery 1 } - -upsBasicBatteryTimeOnBattery OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The elapsed time since the UPS has switched to battery - power." - ::= { upsBasicBattery 2 } - -upsBasicBatteryLastReplaceDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The date when the UPS system's batteries were last replaced - in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value - is originally set in the factory. When the UPS batteries - are replaced, this value should be reset by the administrator. - For Symmetra PX 250/500 this OID is read only and is configurable in the local display only." - ::= { upsBasicBattery 3 } - --- the upsAdvBattery group - -upsAdvBatteryCapacity OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remaining battery capacity expressed in - percent of full capacity." - ::= { upsAdvBattery 1 } - -upsAdvBatteryTemperature OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current internal UPS temperature expressed in - Celsius." - ::= { upsAdvBattery 2 } - -upsAdvBatteryRunTimeRemaining OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS battery run time remaining before battery - exhaustion." - ::= { upsAdvBattery 3 } - -upsAdvBatteryReplaceIndicator OBJECT-TYPE - SYNTAX INTEGER { - noBatteryNeedsReplacing(1), - batteryNeedsReplacing(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether the UPS batteries need replacing." - ::= { upsAdvBattery 4 } - -upsAdvBatteryNumOfBattPacks OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of external battery packs connected to the UPS. If - the UPS does not use smart cells then the agent reports - ERROR_NO_SUCH_NAME." - ::= { upsAdvBattery 5 } - -upsAdvBatteryNumOfBadBattPacks OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of external battery packs connected to the UPS that - are defective. If the UPS does not use smart cells then the - agent reports ERROR_NO_SUCH_NAME." - ::= { upsAdvBattery 6 } - -upsAdvBatteryNominalVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal battery voltage in Volts." - ::= { upsAdvBattery 7 } - -upsAdvBatteryActualVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual battery bus voltage in Volts." - ::= { upsAdvBattery 8 } - -upsAdvBatteryCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery current in Amps." - ::= { upsAdvBattery 9 } - -upsAdvTotalDCCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total DC current in Amps." - ::= { upsAdvBattery 10 } - -upsAdvBatteryFullCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The full chargeable capacity of the battery which is - expressed in percentage." - ::= { upsAdvBattery 11 } - --- Advanced Battery Voltage Table - - upsAdvBatteryActualVoltageTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSAdvBatteryActualVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of battery table entries. The number of battery - frames present in UPS." - ::= { upsAdvBattery 12 } - - - upsAdvBatteryActualVoltageEntry OBJECT-TYPE - SYNTAX UPSAdvBatteryActualVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Information applicable to - each of the Battery frames." - INDEX { upsAdvBatteryActualVoltageTableIndex } - ::= { upsAdvBatteryActualVoltageTable 1 } - - UPSAdvBatteryActualVoltageEntry ::= SEQUENCE { - upsAdvBatteryActualVoltageTableIndex INTEGER, - upsAdvBatteryActualVoltagePolarity INTEGER, - upsAdvBatteryFrameActualVoltage INTEGER - } - - upsAdvBatteryActualVoltageTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery Frame identifier. Battery Frame index." - ::= { upsAdvBatteryActualVoltageEntry 1 } - - upsAdvBatteryActualVoltagePolarity OBJECT-TYPE - SYNTAX INTEGER { - positive (0), - negative (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selected Battery Voltage Polarity. - 0 indicates positive polarity. - 1 indicates negative polarity." - ::= { upsAdvBatteryActualVoltageEntry 2 } - - upsAdvBatteryFrameActualVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual battery bus voltage in Volts." - ::= { upsAdvBatteryActualVoltageEntry 3 } - --- Advanced TotalDC Current Table - - upsAdvTotalDCCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSAdvTotalDCCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Battery Frame table entries. The number of entries - is given by the value of Number of Battery Frames." - ::= { upsAdvBattery 13 } - - - upsAdvTotalDCCurrentEntry OBJECT-TYPE - SYNTAX UPSAdvTotalDCCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular Battery Frame." - INDEX { upsAdvTotalDCCurrentTableIndex } - ::= { upsAdvTotalDCCurrentTable 1 } - - UPSAdvTotalDCCurrentEntry ::= SEQUENCE { - upsAdvTotalDCCurrentTableIndex INTEGER, - upsAdvTotalDCCurrentPolarity INTEGER, - upsAdvTotalFrameDCCurrent INTEGER - } - - upsAdvTotalDCCurrentTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery Frame identifier. Total DC Current - Table Index." - ::= { upsAdvTotalDCCurrentEntry 1 } - - upsAdvTotalDCCurrentPolarity OBJECT-TYPE - SYNTAX INTEGER { - positive (0), - negative (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selected Battery Current Polarity. - 0 indicates positive polarity. - 1 indicates negative polarity." - ::= { upsAdvTotalDCCurrentEntry 2 } - - upsAdvTotalFrameDCCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The Total DC Current of battery in Amperes." - ::= { upsAdvTotalDCCurrentEntry 3 } - - - --- Advanced Battery Current Table - - upsAdvBatteryCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSAdvBatteryCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Battery Frame table entries. The number of entries - is given by number of Battery frames present." - ::= { upsAdvBattery 14 } - - upsAdvBatteryCurrentEntry OBJECT-TYPE - SYNTAX UPSAdvBatteryCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular battery frame." - INDEX { upsAdvBatteryCurrentTableIndex, upsAdvBatteryCurrentIndex } - ::= { upsAdvBatteryCurrentTable 1 } - - UPSAdvBatteryCurrentEntry ::= SEQUENCE { - upsAdvBatteryCurrentTableIndex INTEGER, - upsAdvBatteryCurrentIndex INTEGER, - upsAdvBatteryCurrentPolarity INTEGER, - upsAdvBatteryFrameCurrent INTEGER - } - - upsAdvBatteryCurrentTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery Frame identifier. Battery Current - Table Index." - ::= { upsAdvBatteryCurrentEntry 1 } - - upsAdvBatteryCurrentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery frame identifier." - ::= { upsAdvBatteryCurrentEntry 2 } - - upsAdvBatteryCurrentPolarity OBJECT-TYPE - SYNTAX INTEGER { - positive (0), - negative (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selected Battery current polarity. - 0 indicates positive polarity. - 1 indicates negative polarity" - ::= { upsAdvBatteryCurrentEntry 3 } - - upsAdvBatteryFrameCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery current measured in Amperes" - ::= { upsAdvBatteryCurrentEntry 4 } - - - upsAdvBatteryEstimatedChargeTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The estimated remaining time required to charge the UPS to a full state of charge." - ::= { upsAdvBattery 15 } - - upsAdvBatteryPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The measured battery power in kW." - ::= { upsAdvBattery 16 } - - upsAdvBatteryChargerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - inFaultCondition(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the battery charger. If the UPS is unable - to find the state of charger, this variable is set to unknown(1)." - ::= { upsAdvBattery 17 } - - - upsAdvBatteryInternalSKU OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SKU of the internal battery." - ::= { upsAdvBattery 19 } - - upsAdvBatteryExternalSKU OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The SKU of the external battery." - ::= { upsAdvBattery 20 } - - upsAdvBatteryRecommendedReplaceDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The recommended replacement date for the battery based on the UPS internal battery life algorithm." - ::= { upsAdvBattery 21 } - - --- the upsHighPrecBattery group - -upsHighPrecBatteryCapacity OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remaining battery capacity expressed in - tenths of percent of full capacity." - ::= { upsHighPrecBattery 1 } - -upsHighPrecBatteryTemperature OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current internal UPS temperature expressed in - tenths of degrees Celsius." - ::= { upsHighPrecBattery 2 } - -upsHighPrecBatteryNominalVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal battery voltage in tenths of Volts." - ::= { upsHighPrecBattery 3 } - -upsHighPrecBatteryActualVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual battery bus voltage in tenths of Volts." - ::= { upsHighPrecBattery 4 } - -upsHighPrecBatteryCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery current in tenths of Amps." - ::= { upsHighPrecBattery 5 } - -upsHighPrecTotalDCCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total DC current in tenths of Amps." - ::= { upsHighPrecBattery 6 } - - - - --- High Precision Actual Battery Voltage Table - - upsHighPrecBatteryActualVoltageTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSHighPrecBatteryActualVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Battery frame table entries. The number of entries - is given by the number of Battery frames." - ::= { upsHighPrecBattery 7 } - - - upsHighPrecBatteryActualVoltageEntry OBJECT-TYPE - SYNTAX UPSHighPrecBatteryActualVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular battery frame." - INDEX { upsHighPrecBatteryActualVoltageTableIndex } - ::= { upsHighPrecBatteryActualVoltageTable 1 } - - UPSHighPrecBatteryActualVoltageEntry ::= SEQUENCE { - upsHighPrecBatteryActualVoltageTableIndex INTEGER, - upsHighPrecBatteryActualVoltagePolarity INTEGER, - upsHighPrecBatteryVoltage INTEGER - } - - upsHighPrecBatteryActualVoltageTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery Frame identifier. High Precision - Actual Voltage Table Index." - ::= { upsHighPrecBatteryActualVoltageEntry 1 } - - upsHighPrecBatteryActualVoltagePolarity OBJECT-TYPE - SYNTAX INTEGER { - positive (0), - negative (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selected Battery Voltage polarity. - 0 indicates positive polarity. - 1 indicates negative polarity." - ::= { upsHighPrecBatteryActualVoltageEntry 2 } - - upsHighPrecBatteryVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual battery bus voltage expressed - as tenths of Volts. " - ::= { upsHighPrecBatteryActualVoltageEntry 3 } - --- High Precision Total DC Current Table - - upsHighPrecTotalDCCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSHighPrecTotalDCCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Battery Frame table entries. The number of entries - is given by the number of battery frames." - ::= { upsHighPrecBattery 8 } - - - upsHighPrecTotalDCCurrentEntry OBJECT-TYPE - SYNTAX UPSHighPrecTotalDCCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular battery frame." - INDEX { upsHighPrecTotalDCCurrentTableIndex } - ::= { upsHighPrecTotalDCCurrentTable 1 } - - UPSHighPrecTotalDCCurrentEntry ::= SEQUENCE { - upsHighPrecTotalDCCurrentTableIndex INTEGER, - upsHighPrecTotalDCCurrentPolarity INTEGER, - upsHighPrecTotalDCFrameCurrent INTEGER - } - - upsHighPrecTotalDCCurrentTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery Frame identifier. - High precision Total DC Current index." - ::= { upsHighPrecTotalDCCurrentEntry 1 } - - upsHighPrecTotalDCCurrentPolarity OBJECT-TYPE - SYNTAX INTEGER { - positive (0), - negative (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selected Battery Current polarity. - 0 indicates positive polarity. - 1 indicates negative polarity." - ::= { upsHighPrecTotalDCCurrentEntry 2 } - - upsHighPrecTotalDCFrameCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total DC current in tenths of Amperes. " - ::= { upsHighPrecTotalDCCurrentEntry 3 } - - --- HighPrec Battery Current Table - - upsHighPrecBatteryCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSHighPrecBatteryCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Battery Frame table entries. The number of entries - is given by the number of battery frames." - ::= { upsHighPrecBattery 9 } - - upsHighPrecBatteryCurrentEntry OBJECT-TYPE - SYNTAX UPSHighPrecBatteryCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular battery frame." - INDEX { upsHighPrecBatteryCurrentTableIndex, upsHighPrecBatteryCurrentIndex } - ::= { upsHighPrecBatteryCurrentTable 1 } - - UPSHighPrecBatteryCurrentEntry ::= SEQUENCE { - upsHighPrecBatteryCurrentTableIndex INTEGER, - upsHighPrecBatteryCurrentIndex INTEGER, - upsHighPrecBatteryCurrentPolarity INTEGER, - upsHighPrecBatteryFrameCurrent INTEGER - } - - upsHighPrecBatteryCurrentTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery frame identifier. - Battery Frame index." - ::= { upsHighPrecBatteryCurrentEntry 1 } - - upsHighPrecBatteryCurrentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery frame identifier. - Battery Index for each frame." - ::= { upsHighPrecBatteryCurrentEntry 2 } - - upsHighPrecBatteryCurrentPolarity OBJECT-TYPE - SYNTAX INTEGER { - positive (0), - negative (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The selected Battery Current polarity. - 0 indicates positive polarity. - 1 indicates negative polarity." - ::= { upsHighPrecBatteryCurrentEntry 3 } - - upsHighPrecBatteryFrameCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Battery current in tenths of Amperes." - ::= { upsHighPrecBatteryCurrentEntry 4 } - --- High Precision Battery Packs - -upsHighPrecBatteryPacks OBJECT IDENTIFIER ::= { upsHighPrecBattery 10 } - -upsHighPrecBatteryPackTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the upsHighPrecBatteryPacks." - ::= { upsHighPrecBatteryPacks 1 } - - upsHighPrecBatteryPackTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSHighPrecBatteryPackEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Battery Pack table entries. The number of entries - is given by number of Battery Packs present." - ::= { upsHighPrecBatteryPacks 2 } - - upsHighPrecBatteryPackEntry OBJECT-TYPE - SYNTAX UPSHighPrecBatteryPackEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular battery pack." - INDEX { upsHighPrecBatteryPackIndex, upsHighPrecBatteryCartridgeIndex } - ::= { upsHighPrecBatteryPackTable 1 } - - UPSHighPrecBatteryPackEntry ::= SEQUENCE { - upsHighPrecBatteryPackIndex INTEGER, - upsHighPrecBatteryCartridgeIndex INTEGER, - upsHighPrecBatteryPackFirmwareRevision DisplayString, - upsHighPrecBatteryPackSerialNumber DisplayString, - upsHighPrecBatteryPackTemperature INTEGER, - upsHighPrecBatteryPackStatus OCTET STRING, - upsHighPrecBatteryPackCartridgeHealth OCTET STRING, - upsHighPrecBatteryPackCartridgeReplaceDate DisplayString, - upsHighPrecBatteryPackCartridgeInstallDate DisplayString, - upsHighPrecBatteryPackCartridgeStatus OCTET STRING - } - - upsHighPrecBatteryPackIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery pack identifier." - ::= { upsHighPrecBatteryPackEntry 1 } - - upsHighPrecBatteryCartridgeIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery cartridge identifier." - ::= { upsHighPrecBatteryPackEntry 2 } - - upsHighPrecBatteryPackFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery pack firmware revision." - ::= { upsHighPrecBatteryPackEntry 3} - - upsHighPrecBatteryPackSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery pack serial number." - ::= { upsHighPrecBatteryPackEntry 4} - - upsHighPrecBatteryPackTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery pack temperature measured in 10ths of degree Celcius" - ::= { upsHighPrecBatteryPackEntry 5 } - - upsHighPrecBatteryPackStatus OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery status for the pack only. - bit 0 Disconnected - bit 1 Overvoltage - bit 2 NeedsReplacement - bit 3 OvertemperatureCritical - bit 4 Charger - bit 5 TemperatureSensor - bit 6 BusSoftStart - bit 7 OvertemperatureWarning - bit 8 GeneralError - bit 9 Communication - bit 10 DisconnectedFrame - bit 11 FirmwareMismatch - " - ::= { upsHighPrecBatteryPackEntry 6 } - - upsHighPrecBatteryPackCartridgeHealth OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery cartridge health. - bit 0 Battery lifetime okay - bit 1 Battery lifetime near end, order replacement cartridge - bit 2 Battery lifetime exceeded, replace battery - bit 3 Battery lifetime near end acknowledged, order replacement cartridge - bit 4 Battery lifetime exceeded acknowledged, replace battery - bit 5 Battery measured lifetime near end, order replacement cartridge - bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge - " - ::= { upsHighPrecBatteryPackEntry 7} - - upsHighPrecBatteryPackCartridgeReplaceDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery cartridge estimated battery replace date." - ::= { upsHighPrecBatteryPackEntry 8 } - - upsHighPrecBatteryPackCartridgeInstallDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The battery cartridge install date." - ::= { upsHighPrecBatteryPackEntry 9 } - - upsHighPrecBatteryPackCartridgeStatus OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery cartridge status. - bit 0 Disconnected - bit 1 Overvoltage - bit 2 NeedsReplacement - bit 3 OvertemperatureCritical - bit 4 Charger - bit 5 TemperatureSensor - bit 6 BusSoftStart - bit 7 OvertemperatureWarning - bit 8 GeneralError - bit 9 Communication - bit 10 DisconnectedFrame - bit 11 FirmwareMismatch - " - ::= { upsHighPrecBatteryPackEntry 10 } - --- end of High Precision Battery Packs - -upsHighPrecBatteryHealth OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery health. - Bit 0 Battery life okay - Bit 1 Battery life near end, order battery cartridge - Bit 2 Battery life exceeded, replace battery cartridge - Bit 3 Battery life near end acknowledged, order battery - cartridge - Bit 4 Battery life exceeded acknowledged, replace battery - cartridge - Bit 5 Battery measured life near end, order battery cartridge - Bit 6 Battery measured life near end acknowledged, order - battery cartridge" - ::= { upsHighPrecBattery 11} - - --- the upsBasicInput group - -upsBasicInputPhase OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current AC input phase." - ::= { upsBasicInput 1 } - - --- the upsAdvInput group - -upsAdvInputLineVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current utility line voltage in VAC." - ::= { upsAdvInput 1 } - -upsAdvInputMaxLineVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum utility line voltage in VAC over the - previous 1 minute period." - ::= { upsAdvInput 2 } - -upsAdvInputMinLineVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum utility line voltage in VAC over the - previous 1 minute period." - ::= { upsAdvInput 3 } - -upsAdvInputFrequency OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current input frequency to the UPS system in Hz." - ::= { upsAdvInput 4 } - - -upsAdvInputLineFailCause OBJECT-TYPE - SYNTAX INTEGER { - noTransfer(1), - highLineVoltage(2), - brownout(3), - blackout(4), - smallMomentarySag(5), - deepMomentarySag(6), - smallMomentarySpike(7), - largeMomentarySpike(8), - selfTest(9), - rateOfVoltageChange(10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The reason for the occurrence of the last transfer to UPS - battery power. The variable is set to: - - noTransfer(1) -- if there is no transfer yet. - - highLineVoltage(2) -- if the transfer to battery is caused - by an over voltage greater than the high transfer voltage. - - brownout(3) -- if the duration of the outage is greater than - five seconds and the line voltage is between 40% of the - rated output voltage and the low transfer voltage. - - blackout(4) -- if the duration of the outage is greater than five - seconds and the line voltage is between 40% of the rated - output voltage and ground. - - smallMomentarySag(5) -- if the duration of the outage is less - than five seconds and the line voltage is between 40% of the - rated output voltage and the low transfer voltage. - - deepMomentarySag(6) -- if the duration of the outage is less - than five seconds and the line voltage is between 40% of the - rated output voltage and ground. The variable is set to - - smallMomentarySpike(7) -- if the line failure is caused by a - rate of change of input voltage less than ten volts per cycle. - - largeMomentarySpike(8) -- if the line failure is caused by - a rate of change of input voltage greater than ten volts per cycle. - - selfTest(9) -- if the UPS was commanded to do a self test. - - rateOfVoltageChange(10) -- if the failure is due to the rate of change of - the line voltage." - ::= { upsAdvInput 5 } - - -upsAdvInputNominalFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal input frequency of the UPS system in Hz." - ::= { upsAdvInput 6 } - -upsAdvInputNominalVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal input voltage of the UPS system in VAC." - ::= { upsAdvInput 7 } - -upsAdvInputBypassNominalFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal bypass input frequency of the UPS system in Hz." - ::= { upsAdvInput 8 } - -upsAdvInputBypassNominalVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal bypass input voltage of the UPS system in VAC." - ::= { upsAdvInput 9 } - - upsAdvInputStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsAdvInputStatisticsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries. The number of entries - is given by the value of upsPhaseNumInputs." - ::= { upsAdvInput 10 } - - upsAdvInputStatisticsEntry OBJECT-TYPE - SYNTAX UpsAdvInputStatisticsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input." - INDEX { upsAdvInputStatisticsIndex } - ::= { upsAdvInputStatisticsTable 1 } - -UpsAdvInputStatisticsEntry ::= SEQUENCE { - upsAdvInputStatisticsIndex INTEGER, - upsAdvInputApparentPower INTEGER, - upsAdvInputVoltageTHD INTEGER, - upsAdvInputBypassVoltageTHD INTEGER, - upsAdvInputPeakCurrent INTEGER, - upsAdvInputBypassPeakCurrent INTEGER, - upsAdvInputActivePower INTEGER - } - - upsAdvInputStatisticsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input identifier." - ::= { upsAdvInputStatisticsEntry 1 } - -upsAdvInputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input apparent power(sum of all of the three phases) measured in kVA." - ::= { upsAdvInputStatisticsEntry 2 } - -upsAdvInputVoltageTHD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input voltage Total Harmonic Distortion in percent." - ::= { upsAdvInputStatisticsEntry 3 } - -upsAdvInputBypassVoltageTHD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bypass input voltage Total Harmonic Distortion in percent." - ::= { upsAdvInputStatisticsEntry 4 } - -upsAdvInputPeakCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input peak current in Amperes." - ::= { upsAdvInputStatisticsEntry 5 } - -upsAdvInputBypassPeakCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bypass input peak current in Amperes." - ::= { upsAdvInputStatisticsEntry 6 } - - -upsAdvInputActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input active power measured in kW." - ::= { upsAdvInputStatisticsEntry 7 } - - - - -upsAdvInputTotalApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input total apparent power(sum of all three phases) - of the UPS system in kVA." - ::= { upsAdvInput 11 } - -upsAdvInputTotalActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input total active power(sum of all three phases) - of the UPS system in kW." - ::= { upsAdvInput 12 } - -upsAdvInputBypassTotalApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input bypass total apparent power(sum of all three phases) - of the UPS system in kVA." - ::= { upsAdvInput 13 } - -upsAdvInputBypassTotalActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input bypass total active power(sum of all three phases) - of the UPS system in kW." - ::= { upsAdvInput 14 } - -upsAdvInputEnergyUsage OBJECT-TYPE - SYNTAX Unsigned32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input energy usage of the UPS in kWh." - ::= { upsAdvInput 15 } - --- the upsHighPrecInput group - -upsHighPrecInputLineVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current utility line voltage in tenths of VAC." - ::= { upsHighPrecInput 1 } - -upsHighPrecInputMaxLineVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum utility line voltage in tenths of VAC over the - previous 1 minute period." - ::= { upsHighPrecInput 2 } - -upsHighPrecInputMinLineVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum utility line voltage in tenths of VAC over the - previous 1 minute period." - ::= { upsHighPrecInput 3 } - -upsHighPrecInputFrequency OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current input frequency to the UPS system in tenths of Hz." - ::= { upsHighPrecInput 4 } - - -upsHighPrecInputEnergyUsage OBJECT-TYPE - SYNTAX Unsigned32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input energy usage of the UPS in hundredths of kWh." - ::= { upsHighPrecInput 5 } - -upsHighPrecInputBypassVoltage OBJECT-TYPE - SYNTAX Unsigned32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current bypass line voltage in tenths of VAC." - ::= { upsHighPrecInput 6 } - -upsHighPrecInputBypassFrequency OBJECT-TYPE - SYNTAX Unsigned32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current input bypass frequency to the UPS system in tenths of Hz." - ::= { upsHighPrecInput 7 } - --- the upsBasicOutput group - -upsBasicOutputStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - onLine(2), - onBattery(3), - onSmartBoost(4), - timedSleeping(5), - softwareBypass(6), - off(7), - rebooting(8), - switchedBypass(9), - hardwareFailureBypass(10), - sleepingUntilPowerReturn(11), - onSmartTrim(12), - ecoMode(13), - hotStandby(14), - onBatteryTest(15), - emergencyStaticBypass(16), - staticBypassStandby(17), - powerSavingMode(18), - spotMode(19), - eConversion(20), - chargerSpotmode(21), - inverterSpotmode(22) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of the UPS. If the UPS is unable to - determine the state of the UPS this variable is set - to unknown(1)." - ::= { upsBasicOutput 1 } - -upsBasicOutputPhase OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current output phase." - ::= { upsBasicOutput 2 } - -upsBasicSystemStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - onLine(2), - onBattery(3), - onSmartBoost(4), - timedSleeping(5), - softwareBypass(6), - off(7), - rebooting(8), - switchedBypass(9), - hardwareFailureBypass(10), - sleepingUntilPowerReturn(11), - onSmartTrim(12), - ecoMode(13), - inverter(14), - eConversion(15), - staticBypassStandby(16) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current state for the whole system (UPS and surrounding breakers). - If the UPS is unable to determine the state of the system, this - variable is set to unknown(1)." - ::= { upsBasicOutput 3 } - -upsBasicSystemInternalTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual internal temperature of the UPS system in Celsius." - ::= { upsBasicOutput 4 } - - - upsBasicSystemInverterStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - inFaultCondition(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of the UPS inverter. If the UPS is unable - to determine the state of the inverter, this variable is set - to unknown(1)." - ::= { upsBasicOutput 5 } - - upsBasicSystemPFCStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - ok(2), - inFaultCondition(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The general status of the power factor correction (AC input stage - of the UPS). If the UPS is unable to determine the state of PFC, - this variable is set to unknown(1)." - ::= { upsBasicOutput 6 } - - upsBasicOutputACwiringConfiguration OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - noNeutralWiredonSystem(2), - neutralUsedforSupplyingLoad(3) - - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if neutral wire on output side of the UPS is - used (load wired line to neutral). If the UPS is unable to - determine the state of neutral, this variable is set to - unknown(1)." - ::= { upsBasicOutput 7 } - - - --- the upsAdvOutput group - -upsAdvOutputVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage of the UPS system in VAC." - ::= { upsAdvOutput 1 } - -upsAdvOutputFrequency OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current output frequency of the UPS system in Hz." - ::= { upsAdvOutput 2 } - -upsAdvOutputLoad OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current UPS load expressed in percent - of rated capacity." - ::= { upsAdvOutput 3 } - -upsAdvOutputCurrent OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current in amperes drawn by the load on the UPS." - ::= { upsAdvOutput 4 } - -upsAdvOutputRedundancy OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of power modules which can fail or be - removed without causing the UPS to generate a Minimum - Redundancy Lost event." - ::= { upsAdvOutput 5 } - -upsAdvOutputKVACapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum load that this UPS can support." - ::= { upsAdvOutput 6 } - -upsAdvOutputNominalFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal output frequency of the UPS system in Hz." - ::= { upsAdvOutput 7 } - -upsAdvOutputActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total output active power of the UPS system in W. - The total active power is the sum of phase 1, phase 2 and - phase 3 power." - ::= { upsAdvOutput 8 } - -upsAdvOutputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total output apparent power of all phases of the UPS system in VA." - ::= { upsAdvOutput 9 } - - - upsAdvOutputStatisticsTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsAdvOutputStatisticsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries. The number of entries - is given by the value of upsPhaseNumOutputs." - ::= { upsAdvOutput 10 } - - upsAdvOutputStatisticsEntry OBJECT-TYPE - SYNTAX UpsAdvOutputStatisticsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { upsAdvOutputStatisticsIndex } - ::= { upsAdvOutputStatisticsTable 1 } - - UpsAdvOutputStatisticsEntry ::= SEQUENCE { - upsAdvOutputStatisticsIndex INTEGER, - upsAdvOutputPeakCurrent INTEGER, - upsAdvOutputCurrentTHD INTEGER, - upsAdvOutputCrestFactor INTEGER - - } - - upsAdvOutputStatisticsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { upsAdvOutputStatisticsEntry 1 } - - upsAdvOutputPeakCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output peak current in Amperes." - ::= { upsAdvOutputStatisticsEntry 2 } - - upsAdvOutputCurrentTHD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current Total Harmonic Distortion in percent." - ::= { upsAdvOutputStatisticsEntry 3 } - - upsAdvOutputCrestFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current crest factor expressed in tenths." - ::= { upsAdvOutputStatisticsEntry 4 } - - upsAdvOutputNeutralCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The neutral current in amperes." - ::= { upsAdvOutput 11 } - - upsAdvOutputEnergyUsage OBJECT-TYPE - SYNTAX Unsigned32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The output energy usage of the UPS in kWh." - ::= { upsAdvOutput 12 } - --- the upsHighPrecOutput group - -upsHighPrecOutputVoltage OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage of the UPS system in tenths of VAC." - ::= { upsHighPrecOutput 1 } - -upsHighPrecOutputFrequency OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current output frequency of the UPS system in tenths of Hz." - ::= { upsHighPrecOutput 2 } - -upsHighPrecOutputLoad OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current UPS load expressed in tenths of percent - of rated capacity." - ::= { upsHighPrecOutput 3 } - -upsHighPrecOutputCurrent OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current in tenths of amperes drawn by the load on the UPS." - ::= { upsHighPrecOutput 4 } - -upsHighPrecOutputEfficiency OBJECT-TYPE - SYNTAX Integer32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The positive values represent efficiency of the UPS in tenths of percent. - -1 If UPS supports this OID but the result is not available - -2 Load is too low to report efficiency - -3 Output off and efficiency is 0 - -4 On battery, efficiency is not measured or calculated in this mode - -5 In Bypass, efficiency is not measured or calculated in this mode - -6 Battery charging, battery is charging and adversely affecting efficiency - -7 Poor AC input, the main input is outside the optimum efficiency range" - ::= { upsHighPrecOutput 5 } - -upsHighPrecOutputEnergyUsage OBJECT-TYPE - SYNTAX Unsigned32 - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output energy usage of the UPS in hundredths of kWh." - ::= { upsHighPrecOutput 6 } - --- the upsBasicConfig group - -upsBasicConfigNumDevices OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of devices that are plugged into the UPS. - This value is customer configurable from the device entry table" - ::= { upsBasicConfig 1 } - -upsBasicConfigDeviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsBasicConfigDeviceEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of devices that are plugged into the UPS. - The number of entries is given by the value of - upsBasicConfigNumDevices." - ::= { upsBasicConfig 2 } - -upsBasicConfigDeviceEntry OBJECT-TYPE - SYNTAX UpsBasicConfigDeviceEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The devices plugged in to the UPS." - INDEX { deviceIndex } - ::= { upsBasicConfigDeviceTable 1 } - -UpsBasicConfigDeviceEntry ::= - SEQUENCE { - deviceIndex - INTEGER, - deviceName - DisplayString, - vaRating - INTEGER, - acceptThisDevice - INTEGER - } - -deviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the device that is plugged into the UPS." - ::= { upsBasicConfigDeviceEntry 1 } - -deviceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name/description of the device plugged into the UPS." - ::= { upsBasicConfigDeviceEntry 2 } - -vaRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The volt-amp rating of the device plugged into the UPS." - ::= { upsBasicConfigDeviceEntry 3 } - -acceptThisDevice OBJECT-TYPE - SYNTAX INTEGER { - yes(1), - no(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An entry is added if yes, the entry is deleted if no." - ::= { upsBasicConfigDeviceEntry 4 } - - - - --- the upsAdvConfig group - -upsAdvConfigRatedOutputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The nominal output voltage from the UPS in VAC. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { upsAdvConfig 1 } - -upsAdvConfigHighTransferVolt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum line voltage in VAC allowed before the - UPS system transfers to battery backup. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as a the next higher - acceptable value. If the provided value is higher than - the highest acceptable value, the highest acceptable - value is used." - ::= { upsAdvConfig 2 } - -upsAdvConfigLowTransferVolt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum line voltage in VAC allowed before the - UPS system transfers to battery backup. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { upsAdvConfig 3 } - -upsAdvConfigAlarm OBJECT-TYPE - SYNTAX INTEGER { - timed(1), - atLowBattery(2), - never(3), - mute(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A flag indicating how the UPS should handle audible - line fail alarms: - timed(1): UPS alarm will sound after a preset timed duration starting - from the line fail condition (see OID upsAdvConfigAlarmTimer for the - alarm timer value) - atLowBattery(2): UPS alarm will sound when the UPS has reached a Low - Battery condition during a line fail - never(3): Disables the UPS audible alarm - mute(4): Mutes the current alarm for some UPSs only when it is in an - alarm state and will return to the previously configured option when - the UPS recovers from the alarm condition" - ::= { upsAdvConfig 4 } - -upsAdvConfigAlarmTimer OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time after initial line failure at which the UPS - begins emitting audible alarms (beeping). This timer is - observed only if the value of extControlAlarm is timed(2). - Allowed values are 0 or 30 seconds. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as a the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { upsAdvConfig 5 } - -upsAdvConfigMinReturnCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum battery capacity required before the UPS will - return from a low battery shutdown condition. The capacity is - measured from 0% battery capacity (or Low Battery) as a percent - of full capacity (100%). In other words, the UPS will not re-energize - the output until the battery has charged so that its' capacity is equal - to this value. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as a the next higher - acceptable value. If the provided value is higher than - the highest acceptable value, the highest acceptable - value is used." - ::= { upsAdvConfig 6 } - -upsAdvConfigSensitivity OBJECT-TYPE - SYNTAX INTEGER { - auto(1), - low(2), - medium(3), - high(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The sensitivity of the UPS to utility line abnormalities - or noises." - ::= { upsAdvConfig 7 } - -upsAdvConfigLowBatteryRunTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The desired run time of the UPS, in seconds, once the - low battery condition is reached. During this time the UPS will - produce a constant warning tone which can not be disabled. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a set - request, the UPS interprets the value as the next higher - acceptable value. If the provided value is higher than the - highest acceptable value, the highest acceptable value is used." - ::= { upsAdvConfig 8 } - -upsAdvConfigReturnDelay OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The delay in seconds after utility line power returns - before the UPS will turn on. This value is also used - when the UPS comes out of a reboot and before the UPS - wakes up from 'sleep' mode. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as a the next higher - acceptable value. If the provided value is higher than - the highest acceptable value, the highest acceptable - value is used." - ::= { upsAdvConfig 9 } - -upsAdvConfigShutoffDelay OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The delay in seconds the UPS remains on after being told - to turn off. - - For a list of allowed values supported by your UPS model, - see the UPS User's Manual. - - If a value other than a supported value is provided in a - set request, the UPS interprets it as a the next higher - acceptable value. If the provided value is higher than - the highest acceptable value, the highest acceptable - value is used." - ::= { upsAdvConfig 10 } - -upsAdvConfigUpsSleepTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time in seconds for the UPS to go to 'sleep' when - instructed. When in sleep mode, the UPS will not provide - output power regardless of the input line state. Once the - specified time has elapsed, output power will be restored. - - This is a configuration setting. The UPS will not go to - sleep until told to do so by the manager from a management - station. - - Any input value is allowed, however the UPS only recognizes - 1/10 of an hour increments. The provided value will be - rounded to the closest 1/10 of an hour with one exception: - Any value entered between 1 and 540 seconds will be rounded - to 360 seconds (or 6 minutes)." - ::= { upsAdvConfig 11 } - - -upsAdvConfigSetEEPROMDefaults OBJECT-TYPE - SYNTAX INTEGER { - noSetEEPROMDefaults(1), - setEEPROMDefaults(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "WRITE: Resets the UPS EEPROM variables to default values. - READ: returns 1" - ::= { upsAdvConfig 12 } - -upsAdvConfigDipSwitchTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsAdvConfigDipSwitchEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Current settings of UPS dip switches." - ::= { upsAdvConfig 13 } - -upsAdvConfigDipSwitchEntry OBJECT-TYPE - SYNTAX UpsAdvConfigDipSwitchEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The current setting of one dip switch." - INDEX { dipSwitchIndex } - ::= { upsAdvConfigDipSwitchTable 1 } - -UpsAdvConfigDipSwitchEntry ::= - SEQUENCE { - dipSwitchIndex - INTEGER, - dipSwitchStatus - INTEGER - } - -dipSwitchIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of a UPS dip switch." - ::= { upsAdvConfigDipSwitchEntry 1 } - -dipSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The setting of a UPS dip switch." - ::= { upsAdvConfigDipSwitchEntry 2 } - -upsAdvConfigBattExhaustThresh OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of seconds prior to battery exhaustion when the - UPS will switch off power to its load." - ::= { upsAdvConfig 14 } - -upsAdvConfigPassword OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The password entered at the UPS front panel to enable local - configuration of the EEProm. If the password is disabled or - is not supported, then the agent returns a null string." - ::= { upsAdvConfig 15 } - -upsAdvConfigAllowedSetTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsAdvConfigAllowedSetEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table listing the allowed values for all discrete - configurable UPS variables." - ::= { upsAdvConfig 16 } - -upsAdvConfigAllowedSetEntry OBJECT-TYPE - SYNTAX UpsAdvConfigAllowedSetEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table entry for a configurable UPS variable." - INDEX { apcUpsConfigFieldIndex } - ::= { upsAdvConfigAllowedSetTable 1 } - -UpsAdvConfigAllowedSetEntry ::= SEQUENCE { - apcUpsConfigFieldIndex INTEGER, - apcUpsConfigFieldOID OBJECT IDENTIFIER, - apcUpsConfigFieldValueRange DisplayString - } - -apcUpsConfigFieldIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to an eeprom field entry." - ::= { upsAdvConfigAllowedSetEntry 1 } - -apcUpsConfigFieldOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The OID of the current configurable value." - ::= { upsAdvConfigAllowedSetEntry 2 } - -apcUpsConfigFieldValueRange OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The discrete set of allowed values of a configurable - register. Individual values are delimited by a comma." - ::= { upsAdvConfigAllowedSetEntry 3 } - -upsAdvConfigBattCabAmpHour OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the amp-hour setting of the UPS battery cabinet." - ::= { upsAdvConfig 17 } - -upsAdvConfigPositionSelector OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - rack (2), - tower (3) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure UPS position selector. If the UPS doesn't - support this configuration it will report unknown (1). - The positions are either rack (2) for rack mounted or - tower (3) for tower unit." - ::= { upsAdvConfig 18 } - -upsAdvConfigOutputFreqRange OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - freqRangeAUTO (2), - freqRange60Var1 (3), - freqRange60Var3 (4), - freqRange50Var1 (5), - freqRange50Var3 (6), - freqRange60Var10 (7), - freqRange50Var10 (8), - freqRange60Var1dot0 (9), - freqRange50Var1dot0 (10), - freqRange50Pct0dot5 (11), - freqRange50Pct1 (12), - freqRange50Pct2 (13), - freqRange50Pct4 (14), - freqRange50Pct6 (15), - freqRange50Pct8 (16), - freqRange60Pct0dot5 (17), - freqRange60Pct1 (18), - freqRange60Pct2 (19), - freqRange60Pct4 (20), - freqRange60Pct6 (21), - freqRange60Pct8 (22) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the output frequency tolerance range. - unknown(1) indicates the output frequency is unknown. - freqRangeAUTO(2) configure the output frequency range for automatic. - freqRange60Var1(3) configure the output frequency range for 60 +/- 0.1 Hz - freqRange60Var3(4) configure the output frequency range for 60 +/- 3.0 Hz - freqRange50Var1(5) configure the output frequency range for 50 +/- 0.1 Hz - freqRange50Var3(6) configure the output frequency range for 50 +/- 3.0 Hz - freqRange60Var10(7) configure the output frequency range for 60 +/- 10 Hz - freqRange50Var10(8) configure the output frequency range for 50 +/- 10 Hz - freqRange60Var1dot0(9) configure the output frequency range for 60 +/- 1.0 Hz - freqRange50Var1dot0(10) configure the output frequency range for 50 +/- 1.0 Hz - freqRange50Pct0dot5(11) configure the output frequency range for 50 Hz +/- 0.5 % - freqRange50Pct1(12) configure the output frequency range for 50 Hz +/- 1.0 % - freqRange50Pct2(13) configure the output frequency range for 50 Hz +/- 2.0 % - freqRange50Pct4(14) configure the output frequency range for 50 Hz +/- 4.0 % - freqRange50Pct6(15) configure the output frequency range for 50 Hz +/- 6.0 % - freqRange50Pct8(16) configure the output frequency range for 50 Hz +/- 8.0 % - freqRange60Pct0dot5(17) configure the output frequency range for 60 Hz +/- 0.5 % - freqRange60Pct1(18) configure the output frequency range for 60 Hz +/- 1.0 % - freqRange60Pct2(19) configure the output frequency range for 60 Hz +/- 2.0 % - freqRange60Pct4(20) configure the output frequency range for 60 Hz +/- 4.0 % - freqRange60Pct6(21) configure the output frequency range for 60 Hz +/- 6.0 % - freqRange60Pct8(22) configure the output frequency range for 60 Hz +/- 8.0 % - For a list of allowed values and conditions when variable can be set by your UPS model, - see the UPS User's Manual." - ::= { upsAdvConfig 19 } - -upsAdvConfigUPSFail OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - gotoBypass (2), - dropLoad (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the UPS fail action. If UPS fails, - and frequency or voltage is out of range it will either - GotoBypass (2) or DropLoad (3). This OID will report - unknown (1) if it is not supported feature or option." - ::= { upsAdvConfig 20 } - -upsAdvConfigAlarmRedundancy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure settings of UPS alarm if the redundancy is - under the current redundancy. Use 0 for never." - ::= { upsAdvConfig 21 } - -upsAdvConfigAlarmLoadOver OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure settings of UPS alarm if the load is - over the current load in kVA. Use -1 for never." - ::= { upsAdvConfig 22 } - -upsAdvConfigAlarmRuntimeUnder OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure settings of UPS alarm if the runtime is - under the current time of minutes. Use -1 for never." - ::= { upsAdvConfig 23 } - -upsAdvConfigVoutReporting OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - voutAUTO (2), - vout208 (3), - vout240 (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the way the UPS scales its output voltage readings. - unknown(1) indicates the Vout Reporting is unknown. - voutAUTO(2) configure the Vout Reporting for automatic scaling. - vout208(3) configure the Vout Reporting for 208 Volts. - vout240(4) configure the Vout Reporting for 240 Volts." - ::= { upsAdvConfig 24 } - -upsAdvConfigNumExternalBatteries OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the number of external batteries connected to the UPS." - ::= { upsAdvConfig 25 } - -upsAdvConfigSimpleSignalShutdowns OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure Simple Signal shutdown commands from the Simple Signal - port to be issued to the UPS. - unknown(1) indicates the Simple Signal Shutdown setting is unknown. - disabled(2) configure to disable Simple Signal Shutdowns. - enabled(3) configure to enable Simple Signal Shutdowns." - ::= { upsAdvConfig 26 } - -upsAdvConfigMaxShutdownTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum amount of time for server shutdown to complete before a - UPS shutdown occurs." - ::= { upsAdvConfig 27 } - -upsAsiUpsControlServerRequestShutdown OBJECT-TYPE - SYNTAX INTEGER { - serverShutdownOff (1), - serverShutdownReboot (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Start a server shutdown sequence: - serverShutdownOff: Shutdown server and turn off UPS - serverShutdownReboot: Shutdown server and turn reboot UPS." - ::= { upsAdvConfig 28 } - -upsAdvConfigMinReturnRuntime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum amount of run time in seconds required before the output will be - turned on, using power calculation captured at start of last shutdown." - ::= { upsAdvConfig 29 } - -upsAdvConfigBasicSignalLowBatteryDuration OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The duration of runtime in seconds during an on-battery condition at which - the UPS will signal the basic low battery shutdown condition." - ::= { upsAdvConfig 30 } - -upsAdvConfigBypassPhaseLockRequired OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sets the condition for when bypass is an acceptable mode of operation as a - requirement." - ::= { upsAdvConfig 31 } - -upsAdvConfigOutputFreqSlewRate OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - slewRateQuarterHzPerSec (2), - slewRateHalfHzPerSec (3), - slewRate1HzPerSec (4), - slewRate2HzPerSec (5), - slewRate4HzPerSec (6), - slewRate6HzPerSec (7) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The rate at which the UPS will change its output frequency - in response to utility frequency changes." - ::= { upsAdvConfig 32 } - -upsAdvConfigChargerLevel OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - low (2), - high (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sets the rate at which the UPS charges its batteries." - ::= { upsAdvConfig 33 } - -upsAdvConfigBypassToleranceSetting OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - wide (2), - medium (3), - narrow (4), - custom (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting allows selecting from standard bypass tolerance configurations to suit their situation." - ::= { upsAdvConfig 34 } - -upsAdvConfigMainsSetting OBJECT-TYPE - SYNTAX INTEGER { - singleInput (1), - dualInput (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Configure the type of mains supply system. - singleInput (1) indicates a single supply system. - dualInput (2) indicates a dual supply system. " - ::= { upsAdvConfig 35 } - -upsAdvConfigACWiringSetting OBJECT-TYPE - SYNTAX INTEGER { - threeWire (1), - fourWire (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Configure the AC wiring of the system. - threeWire (1) indicates 3-wire system configuration. - fourWire (2) indicates 4-wire system configuration. " - ::= { upsAdvConfig 36 } - -upsAdvConfigUpperOutputVoltTolerance OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Upper tolerance of the output RMS voltage before transferring to bypass. - Expressed as percent of nominal voltage." - ::= { upsAdvConfig 37 } - -upsAdvConfigLowerOutputVoltTolerance OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Lower tolerance of the output RMS voltage before transferring to bypass. - Expressed as percent of nominal voltage." - ::= { upsAdvConfig 38 } - -upsAdvConfigUpperBypassVoltTolerance OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Upper tolerance of the bypass voltage that allows transfer to bypass by user. - Expressed as percent of nominal voltage." - ::= { upsAdvConfig 39 } - -upsAdvConfigLowerBypassVoltTolerance OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Lower tolerance of the bypass voltage that allows transfer to bypass by user. - Expressed as percent of nominal voltage." - ::= { upsAdvConfig 40 } - -upsAdvConfigOutofSyncBypassTransferDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the time (in milliseconds), indicating the gap in output voltage - if an asynchronous transfer to bypass needs to occur." - ::= { upsAdvConfig 41 } - - - - -upsAdvConfigWarningAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the time delay for reporting warning alarms - (in seconds)." - ::= { upsAdvConfig 43 } - -upsAdvConfigInformationalAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the time delay for reporting informational alarms - (in seconds)." - ::= { upsAdvConfig 44 } - -upsAdvConfigGreenMode OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/Disable UPS green mode feature." - ::= { upsAdvConfig 45 } - -upsAdvConfigLCDLocalLanguage OBJECT-TYPE - SYNTAX INTEGER { - english (1), - french (2), - italian (3), - german (4), - spanish (5), - portuguese (6), - japanese (7) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the language setting of the UPS LCD display information." - ::= { upsAdvConfig 46 } - -upsAdvConfigLCDLockOut OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/Disable the control function of the UPS via the LCD Display." - ::= { upsAdvConfig 47 } - -upsAdvConfigChargerRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Change the maximum allowed UPS charge rate on select products where 100% represents - the manufacturer's recommended rate. A charge/discharge rate of C/10 for a 10 Ah - battery would be 1 where C is defined as the charge or discharge rate equal to the - capacity of a battery divided by 1 hour. To increase the charge rate by a factor of - 2 to C/5, this oid would be set to 200%. This number would not change when external - packs are added or removed. Charging at too high a rate can result in boiling and/or - venting of electrolyte and/or high gas pressure." - ::= { upsAdvConfig 48 } - -upsAdvConfigBatterySelection OBJECT-TYPE - SYNTAX INTEGER { - vrla (1), - ventedcell (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the installed battery type on select products where VRLA is Valve Regulated - Lead Acid type battery and Vented Cell is a wet cell type (car) battery." - ::= { upsAdvConfig 49 } - -upsAdvConfigBatteryHealthAlarmWarningTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the number of days before the battery health is depleted that the battery - health alarm is activated. Setting this to -1, if supported by the UPS, will suppress - the battery health alarm." - ::= { upsAdvConfig 50 } - -upsAdvConfigBatteryHealthAlarmSleepTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the number of days that the UPS's battery health alarm should sleep before - being activated again after being acknowledged. Setting this to -1, if supported by the - UPS, displays no other alarms after the first alarm is acknowledged." - ::= { upsAdvConfig 51 } - -upsAdvConfigSignalFlashVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the signal flash voltage in tenths of volts." - ::= { upsAdvConfig 52 } - -upsAdvConfigBatteryTemperatureCompensation OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the battery temperature compensation voltage in - hundreds of volts per degree C. On products which support this - field, the charger voltage is reduced for each degree C rise - by the value configured in this setting multiplied by the - number of battery cells attached to the UPS." - ::= { upsAdvConfig 53 } - --- the upsSyncCtrlGroupConfig group - -upsSCGMembershipGroupNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The SCG Membership Group number (MGN) is a 16-bit number allowing - up to 65534 separate groups that can be identified and distinguished - per IP subnet. Zero and 65535 are not used. The MGN is used in all - communication between members of the SCG and a Network Management Card - (NMC) will listen and only respond to commands sent to it using its - configured SCG ID." - ::= { upsSyncCtrlGroupConfig 1 } - -upsSCGActiveMembershipStatus OBJECT-TYPE - SYNTAX INTEGER { - enabledSCG (1), - disabledSCG (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Membership in the configured SCG can be enabled and - disabled. If an NMC is configured for an SCG, but - has its membership disabled, all synchronized control commands - received will be ignored." - ::= { upsSyncCtrlGroupConfig 2 } - -upsSCGPowerSynchronizationDelayTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The Power Synchronization Delay Time (PSD) setting is the maximum - number of seconds an SCG Initiator will wait for all SCG members to - recover utility power before completing the reboot sequence of a - reboot or sleep command. If all SCG members are ready to proceed, - no additional delay is introduced." - ::= { upsSyncCtrlGroupConfig 3 } - -upsSCGReturnBatteryCapacityOffset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A reboot command uses the Initiator's Return battery Capacity (RBC) to control - when the SCG completes this operation. In a Normal Control Operation (NCC) the - UPS will only complete the reboot if RBC is reached. Due to normal battery - charge rate variations it may be desirable for the Followers to complete the - reboot if they are within some range of the Initiator's RBC when the Initiator - is prepared (charged to RBC) to complete the reboot. The Return Battery - Capacity Offset (RBCO) defines a percent battery capacity subtracted from an - RBC above which a Follower's battery must be charged for it to complete a - reboot. For example, if the Initiator's RBC is 50% and the Initiator's RBCO is - 5% then a Follower's battery capacity is within range if it is greater or equal - to 45% (50% - 5%) at the time when the Initiator tries to complete the reboot - command. The default RBCO is 10%. " - ::= { upsSyncCtrlGroupConfig 4 } - -upsSCGMultiCastIP OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The MultiCast IP address of the SCG Group." - ::= { upsSyncCtrlGroupConfig 5 } - - --- the upsSyncCtrlGroupStatus group - -upsSCGNumOfGroupMembers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active, communicating members in the Sync Control Group (SCG). - This variable indicates the number of rows in the SCG Status Table." - ::= { upsSyncCtrlGroupStatus 1 } - --- Sync Control Group Status Table - -upsSCGStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsSCGStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of SCG status table entries. The number of entries - is given by the value of upsSCGNumOfGroupMembers." - ::= { upsSyncCtrlGroupStatus 2 } - - upsSCGStatusEntry OBJECT-TYPE - SYNTAX UpsSCGStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular SCG Member." - INDEX { upsSCGStatusTableIndex } - ::= { upsSCGStatusTable 1 } - - UpsSCGStatusEntry ::= SEQUENCE { - upsSCGStatusTableIndex INTEGER, - upsSCGMemberIP IpAddress, - upsSCGACInputStatus INTEGER, - upsSCGACOutputStatus INTEGER - } - - upsSCGStatusTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of a status entry for an active, communicating SCG member." - ::= { upsSCGStatusEntry 1 } - - upsSCGMemberIP OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP address of an active, communicating SCG Member." - ::= { upsSCGStatusEntry 2 } - - upsSCGACInputStatus OBJECT-TYPE - SYNTAX INTEGER { - acInGood(1), - acInBad(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID indicates the AC Input Status of the SCG Member. - acInGood(1) indicates the AC Input is within tolerance. - acInBad(2) indicates the AC Input is not within tolerance." - ::= { upsSCGStatusEntry 3 } - - upsSCGACOutputStatus OBJECT-TYPE - SYNTAX INTEGER { - acOutOn(1), - acOutOff(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID indicates the AC Output Status of the SCG Member. - acOutOn(1) indicates the UPS output is providing power to the load. - acOutOff(2) indicates the UPS output is not providing power to the load. " - ::= { upsSCGStatusEntry 4 } - --- the upsBasicState group - - -upsBasicStateOutputState OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 64 flags representing - the current state(s) of the UPS. If the Network Card - is unable to determine the state of the UPS, this - variable is set to 'UNKNOWN'. - - The flags are numbered 1 to 64, read from left to - right. The flags are defined as follows: - - Flag 1: Abnormal Condition Present - Flag 2: On Battery - Flag 3: Low Battery - Flag 4: On Line - - Flag 5: Replace Battery - Flag 6: Serial Communication Established - Flag 7: AVR Boost Active - Flag 8: AVR Trim Active - - Flag 9: Overload - Flag 10: Runtime Calibration - Flag 11: Batteries Discharged - Flag 12: Manual Bypass - - Flag 13: Software Bypass - Flag 14: In Bypass due to Internal Fault - Flag 15: In Bypass due to Supply Failure - Flag 16: In Bypass due to Fan Failure - - Flag 17: Sleeping on a Timer - Flag 18: Sleeping until Utility Power Returns - Flag 19: On - Flag 20: Rebooting - - Flag 21: Battery Communication Lost - Flag 22: Graceful Shutdown Initiated - Flag 23: Smart Boost or Smart Trim Fault - Flag 24: Bad Output Voltage - - Flag 25: Battery Charger Failure - Flag 26: High Battery Temperature - Flag 27: Warning Battery Temperature - Flag 28: Critical Battery Temperature - - Flag 29: Self Test In Progress - Flag 30: Low Battery / On Battery - Flag 31: Graceful Shutdown Issued by Upstream Device - Flag 32: Graceful Shutdown Issued by Downstream Device - - Flag 33: No Batteries Attached - Flag 34: Synchronized Command is in Progress - Flag 35: Synchronized Sleeping Command is in Progress - Flag 36: Synchronized Rebooting Command is in Progress - - Flag 37: Inverter DC Imbalance - Flag 38: Transfer Relay Failure - Flag 39: Shutdown or Unable to Transfer - Flag 40: Low Battery Shutdown - - Flag 41: Electronic Unit Fan Failure - Flag 42: Main Relay Failure - Flag 43: Bypass Relay Failure - Flag 44: Temporary Bypass - - Flag 45: High Internal Temperature - Flag 46: Battery Temperature Sensor Fault - Flag 47: Input Out of Range for Bypass - Flag 48: DC Bus Overvoltage - - Flag 49: PFC Failure - Flag 50: Critical Hardware Fault - Flag 51: Green Mode/ECO Mode - Flag 52: Hot Standby - - Flag 53: Emergency Power Off (EPO) Activated - Flag 54: Load Alarm Violation - Flag 55: Bypass Phase Fault - Flag 56: UPS Internal Communication Failure - - Flag 57: Efficiency Booster Mode - Flag 58: Off - Flag 59: Standby - Flag 60: Minor or Environment Alarm - - Flag 61: - Flag 62: - Flag 63: - Flag 64: " - ::= { upsBasicState 1 } - - - --- the upsAdvState group - -upsAdvStateAbnormalConditions OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 32 flags representing - the current active UPS faults. If the Network Card - is unable to determine the values of the flags, this - variable is set to 'UNKNOWN'. If this variable is not - supported by the connected UPS, this variable is set to - 'NOT SUPPORTED'. - - The flags are numbered from 1 to 32, and read from left to - right. The flags are defined as follows: - - Flag 1: Power Module Failure - Flag 2: Main Intelligence Module Failure - Flag 3: Redundant Intelligence Module Failure - Flag 4: Battery Failure - - Flag 5: Load(kVA) Alarm Threshold Violation - Flag 6: Redundancy Lost - Flag 7: Redundancy Below Alarm Threshold - Flag 8: Bypass not in Range; Either Frequency or Voltage - - Flag 9: Bypass Contactor Stuck in Bypass Condition - Flag 10: Bypass Contactor Stuck in On-Line Condition - Flag 11: In Bypass due to an Internal Fault - Flag 12: In Bypass due to an Overload - - Flag 13: In Maintenance Bypass - Flag 14: Input Circuit Braker Tripped Open - Flag 15: System Level Fan Failure - Flag 16: Redundant Intelligent Module in Control - - Flag 17: IIC Inter-Module Communication Failure - Flag 18: No Working Power Modules - Flag 19: Load Shutdown From Bypass; Input Frequency - Flag 20: Runtime Below Alarm Threshold - - Flag 21: Extended Run Frame Fault - Flag 22: Output Voltage out of Range - Flag 23: UPS Not Synchronized - Flag 24: No Batteries Installed - - Flag 25: Battery Voltage High - Flag 26: UPS Specific Fault Detected - Flag 27: Site Wiring Fault - Flag 28: Backfeed Protection Relay Opened - - Flag 29: - Flag 30: - Flag 31: - Flag 32: " - ::= { upsAdvState 1 } - -upsAdvStateSymmetra3PhaseSpecificFaults OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 64 flags representing - the current active UPS specific faults for the Symmetra - 3-Phase UPS models. If the Network Card is unable to - determine the values of the flags, this variable is set - to 'UNKNOWN'. If the connected UPS does not use this - variable, it is set to 'NOT SUPPORTED'. - - The flags are numbered from 1 to 64, and read from left - to right. The bits are defined as follows: - - Flag 1: External Switch Gear Failure - Flag 2: External Transformer Over Temperature - Flag 3: External DC Circuit Breaker Tripped - Flag 4: System Power Supply Failure - - Flag 5: Battery Monitor Card Failure - Flag 6: Battery Monitor Card Removed - Flag 7: XR Communication Card Failure - Flag 8: XR Communication Card Removed - - Flag 9: External Switch Gear Monitoring Card Failure - Flag 10: External Switch Gear Monitoring Card Removed - Flag 11: Internal DC Circuit Breaker Tripped - Flag 12: Static Bypass Switch Failure - - Flag 13: System EEPROM Removed - Flag 14: System EEPROM Failure - Flag 15: UPS in Forced Bypass - Flag 16: Static Bypass Switch Module Removed - - Flag 17: System Start-Up Configuration Fault - Flag 18: Battery Charger Shutdown Externally - Flag 19: - Flag 20: - - Flag 21: - Flag 22: - Flag 23: - Flag 24: - - Flag 25: - Flag 26: - Flag 27: - Flag 28: - - Flag 29: - Flag 30: - Flag 31: - Flag 32: - - Flag 33: - Flag 34: - Flag 35: - Flag 36: - - Flag 37: - Flag 38: - Flag 39: - Flag 40: - - Flag 41: - Flag 42: - Flag 43: - Flag 44: - - Flag 45: - Flag 46: - Flag 47: - Flag 48: - - Flag 49: - Flag 50: - Flag 51: - Flag 52: - - Flag 53: - Flag 54: - Flag 55: - Flag 56: - - Flag 57: - Flag 58: - Flag 59: - Flag 60: - - Flag 61: - Flag 62: - Flag 63: - Flag 64: " - ::= { upsAdvState 2 } - -upsAdvStateDP300ESpecificFaults OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 64 flags representing - the current active UPS specific faults for the Silcon - DP300E UPS models. If the Network Card is unable to - determine the values of the flags, this variable is set - to 'UNKNOWN'. If the connected UPS does not use this - variable, it is set to 'NOT SUPPORTED'. - - The flags are numbered from 1 to 64, and read from left - to right. The bits are defined as follows: - - Flag 1: Peak Current Limiter Active - Flag 2: Bypass Power Supply Fault - Flag 3: Delta Current Limiter Active - Flag 4: Fan Fault - - Flag 5: High DC warning - Flag 6: Inverter Voltage Error - Flag 7: Parallel Synchronization Error - Flag 8: Second Power Supply Fault - - Flag 9: Internal Power Supply Fault - Flag 10: - Flag 11: - Flag 12: - - Flag 13: - Flag 14: Bypass Static Switch High Temperature - Flag 15: High Battery Temperature - Flag 16: Battery Weak - - Flag 17: - Flag 18: System Locked in Operation Mode - Flag 19: RAM1 Memory Write Error - Flag 20: Memory Write Error - - Flag 21: Communication to VQ Bypass Lost - Flag 22: Communication to VQ Output Lost - Flag 23: Communication to DMU Lost - Flag 24: Communication to Controller Lost - - Flag 25: Communication to Parallel IF Lost - Flag 26: External Shutdown Accepted - Flag 27: DC Capacitor Charge Error - Flag 28: Communication to VQ Mains Lost - - Flag 29: Bypass Synchronization Error - Flag 30: Charge Error - Flag 31: SII Aux Input Activiated - Flag 32: - - Flag 33: Blown Inverter Fuse - Flag 34: Blown Rectifier Fuse - Flag 35: Auxilliary 1 Fault - Flag 36: - - Flag 37: - Flag 38: - Flag 39: - Flag 40: - - Flag 41: - Flag 42: - Flag 43: - Flag 44: - - Flag 45: - Flag 46: High Temperature Charger Magnetic - Flag 47: - Flag 48: Battery Monitor Warning - - Flag 49: Battery Monitor Alarm - Flag 50: - Flag 51: - Flag 52: - - Flag 53: TSM 1/2/3 Temperature Shutdown - Flag 54: Charger 0/30 Temperature Warning - Flag 55: Charger 0/30 Temperature Shutdown - Flag 56: High Output Voltage - - Flag 57: SSW Temperature Over 90 - Flag 58: - Flag 59: Low Current Failure In AC Capacitors - Flag 60: - - Flag 61: Advanced Battery Management Not Installed - Flag 62: - Flag 63: - Flag 64: " - ::= { upsAdvState 3 } - -upsAdvStateSymmetraSpecificFaults OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 64 flags representing - the current active UPS specific faults for the Symmetra - UPS models. If the Network Card is unable to determine - the values of the flags, this variable is set to 'UNKNOWN'. - If the connected UPS does not use this variable, it is - set to 'NOT SUPPORTED'. - - The flags are numbered from 1 to 64, and read from left - to right. The bits are defined as follows: - - Flag 1: System Fault - Flag 2: Bypass Relay Fault - Flag 3: Power Module Turn Off Failure - Flag 4: Frame Identification Fault - - Flag 5: - Flag 6: - Flag 7: - Flag 8: - - Flag 9: - Flag 10: - Flag 11: - Flag 12: - - Flag 13: - Flag 14: - Flag 15: - Flag 16: - - Flag 17: - Flag 18: - Flag 19: - Flag 20: - - Flag 21: - Flag 22: - Flag 23: - Flag 24: - - Flag 25: - Flag 26: - Flag 27: - Flag 28: - - Flag 29: - Flag 30: - Flag 31: - Flag 32: - - Flag 33: - Flag 34: - Flag 35: - Flag 36: - - Flag 37: - Flag 38: - Flag 39: - Flag 40: - - Flag 41: - Flag 42: - Flag 43: - Flag 44: - - Flag 45: - Flag 46: - Flag 47: - Flag 48: - - Flag 49: - Flag 50: - Flag 51: - Flag 52: - - Flag 53: - Flag 54: - Flag 55: - Flag 56: - - Flag 57: - Flag 58: - Flag 59: - Flag 60: - - Flag 61: - Flag 62: - Flag 63: - Flag 64: " - ::= { upsAdvState 4 } - -upsAdvStateSmartUPSSpecificFaults OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 64 flags representing - the current active UPS specific faults for the Smart-UPS - UPS models. If the Network Card is unable to determine - the values of the flags, this variable is set to - 'UNKNOWN'. If the connected UPS does not use this - variable, it is set to 'NOT SUPPORTED'. - - The flags are numbered from 1 to 64, and read from left - to right. The bits are defined as follows: - - Flag 1: EPO Switch Activated - Flag 2: Static Bypass Switch Fault - Flag 3: System Configuration Fault - Flag 4: Power Supply Unit Fault - - Flag 5: Weak Battery - Flag 6: High Battery Temperature - Flag 7: Internal Mechanical Bypass - Flag 8: Loss Of Parallel Redundancy - - Flag 9: Parallel Bus Communication Fault on Cable 1 - Flag 10: Parallel Bus Communication Fault on Cable 2 - Flag 11: Auxiliary Bus Communication Fault - Flag 12: Parallel Bus Termination Fault on Cable 1 - - Flag 13: Parallel Bus Termination Fault on Cable 2 - Flag 14: Auxiliary Bus Termination Fault - Flag 15: No Master Present In The Parallel System - Flag 16: Overload on a Parallel Unit - - Flag 17: Parallel Configuration Fault - Flag 18: - Flag 19: - Flag 20: - - Flag 21: - Flag 22: - Flag 23: - Flag 24: - - Flag 25: - Flag 26: - Flag 27: - Flag 28: - - Flag 29: - Flag 30: - Flag 31: - Flag 32: - - Flag 33: - Flag 34: - Flag 35: - Flag 36: - - Flag 37: - Flag 38: - Flag 39: - Flag 40: - - Flag 41: - Flag 42: - Flag 43: - Flag 44: - - Flag 45: - Flag 46: - Flag 47: - Flag 48: - - Flag 49: - Flag 50: - Flag 51: - Flag 52: - - Flag 53: - Flag 54: - Flag 55: - Flag 56: - - Flag 57: - Flag 58: - Flag 59: - Flag 60: - - Flag 61: - Flag 62: - Flag 63: - Flag 64: " - ::= { upsAdvState 5 } - - -upsAdvStateSystemMessages OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 3 digit Decimal code - representing the current active message from the - System Message Register. Each code should remain active - for a minimum of 15 seconds. However, in the worst case - scenario, a code could be cleared after only 5 seconds. - It is recommended that this object be polled at least - once every 4 seconds in order to get the most accurate - representation of the current UPS System Message. If the - Network Card is unable to determine the value of the - System Message Register, this variable is set to - 'UNKNOWN'." - ::= { upsAdvState 6 } - - -upsAdvStateTotaltimeonbattery OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total time the UPS has been in battery operation." - ::= { upsAdvState 7 } - -upsAdvStateTotaltimeonbypass OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total time the UPS has been in bypass operation." - ::= { upsAdvState 8 } - -upsAdvStateTotaltimeonNormal OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total time the UPS has been in normal operation." - ::= { upsAdvState 9 } - -upsAdvStateNumberoftimesonbattery OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of times the UPS was on battery. - Since the last reset of statistical data." - ::= { upsAdvState 10 } - -upsAdvStateNumberoftimesbypass OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of times the UPS was in bypass. - Since the last reset of statistical data." - ::= { upsAdvState 11 } - -upsAdvStateNumberoftimesNormal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of times the UPS was in normal operation. - Since the last reset of statistical data." - ::= { upsAdvState 12 } - -upsAdvStateEcomode OBJECT-TYPE - SYNTAX INTEGER { - upsOnEcoMode(1), - upsNotOnEcoMode(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Eco mode status. - 1: UPS is on Eco-mode - 2: UPS is not on Eco-mode." - ::= { upsAdvState 13 } - --- the upsBasicControl group - -upsBasicControlConserveBattery OBJECT-TYPE - SYNTAX INTEGER { - noTurnOffUps(1), - turnOffUpsToConserveBattery(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to turnUpsOffToConserveBattery(2) - causes a UPS on battery to be put into 'sleep' mode. The - UPS will turn back on when utility power is restored. - Attempting to turn off a UPS that is not on battery will - result in a badValue error. - - Setting this value to noTurnOffUps(1) has no - effect. - - The value noTurnOffUps(1) will always be returned - when the variable is read." -::= { upsBasicControl 1 } - - - --- the upsAdvControl group - -upsAdvControlUpsOff OBJECT-TYPE - SYNTAX INTEGER { - noTurnUpsOff(1), - turnUpsOff(2), - turnUpsOffGracefully(3), - turnUpsSyncGroupOff(4), - turnUpsSyncGroupOffAfterDelay(5), - turnUpsSyncGroupOffGracefully(6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to turnUpsOff(2) causes - the UPS to shut off. When in this state, the UPS - will not provide output power regardless of the input - line state. - - Setting this variable to turnUpsOffGracefully(3) causes - the UPS to shut off after a delay period. This allows the - host to shut down in a graceful manner. When in this state, - the UPS will not provide output power regardless of the - input line state. - - If this UPS is an active member of a Synchronized - Control Group (SCG) the turnUpsSyncGroupOff(4) command - will perform a Synchronized Turn Off of all active Group - members regardless of their current AC output status. - - If this UPS is an active member of a Synchronized - Control Group (SCG) the turnUpsSyncGroupOffAfterDelay(5) - command will perform a Synchronized Turn Off After Delay - of all active Group members regardless of their current - AC output status. This unit's Shutdown Delay will be used - to execute the Turn Off After Delay command. - - If this UPS is an active member of an SCG, the - turnUpsSyncGroupOffGracefully(6) command will perform a - Synchronized Turn Off Gracefully of all active Group - members regardless of their current AC output status. - This unit's Maximum Shutdown Time and Shutdown Delay will - be used to execute the Turn Off Gracefully command. - - Setting this value to noTurnUpsOff(1) has no - effect. - - The value noTurnUpsOff(1) will always be returned - when the variable is read." - ::= { upsAdvControl 1 } - -upsAdvControlRebootShutdownUps OBJECT-TYPE - SYNTAX INTEGER { - noRebootShutdownUps(1), - rebootShutdownUps(2), - rebootShutdownUpsGracefully(3), - rebootShutdownSyncGroupUps(4), - rebootShutdownSyncGroupUpsGracefully(5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to rebootShutdownUps(2) causes the UPS - to shut off and turn back on (as long as good AC input power - is available, otherwise the UPS will remain off until good AC - input power is available). - - Setting this variable to rebootShutdownUpsGracefully(3) causes - the UPS to shut off after a delay period and then turn back - on. This allows the host to shut down in a graceful manner. - - If this UPS is an active member of a Synchronized Control - Group (SCG) the rebootShutdownSyncGroupUps(4) command will - perform a Synchronized Reboot of all active Group members - regardless of their current AC output status. If applicable, - this unit's Power Synchronization Delay, Shutdown Delay, - Return Delay, Return Battery Capacity, and Return Battery - Capacity Offset will be used to execute the Reboot command. - - If this UPS is an active member of a SCG the - rebootShutdownSyncGroupUpsGracefully(5) command will perform - a Synchronized Reboot of all active Group members regardless - of their current AC output status. If applicable, this unit's - Power Synchronization Delay, Maximum Shutdown Time, Shutdown - Delay, Return Delay, Return Battery Capacity, and Return - Battery Capacity Offset will be used to execute the Reboot - command. - - Setting this value to noRebootShutdownUps(1) has no effect. - - The value noRebootShutdownUps(1) will always be returned when - the variable is read." - ::= { upsAdvControl 2 } - -upsAdvControlUpsSleep OBJECT-TYPE - SYNTAX INTEGER { - noPutUpsToSleep(1), - putUpsToSleep(2), - putUpsToSleepGracefully(3), - putUpsSyncGroupToSleep(4), - putUpsSyncGroupToSleepGracefully(5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to putUpsToSleep(2) causes - the UPS to go to sleep for the time specified by - upsAdvConfigUpsSleepTime. - - Setting this variable to putUpsToSleepGracefully(3) - causes the UPS to go to sleep for the time specified - by upsAdvConfigUpsSleepTime after a delay period. - This allows the host to shut down in a graceful manner. - - If this UPS is an active member of a Synchronized Control - Group (SCG), the putUpsSyncGroupToSleep(4) command will perform - a Synchronized Sleep of all active Group members regardless - of their current AC output status. This unit's Power - Synchronization Delay, Shutdown Delay, Sleep Time, - and Return Delay will be used to execute the sleep command. - - If this UPS is an active member of a SCG the - putUpsSyncGroupToSleepGracefully(5) command will perform a - Synchronized Sleep Gracefully of all active Group members - regardless of their current AC output status. This unit's - Power Synchronization Delay, Maximum Shutdown Time, Shutdown - Delay, Sleep Time, and Return Delay to execute the sleep - command. - - When in sleep mode, the UPS will not provide output - power regardless of the input line state. Once the - specified time has elapsed, output power will be - restored. - - Setting this value to noPutUpsToSleep(1) has no - effect. - - The value noPutUpsToSleep(1) will always be returned - when the variable is read." - ::= { upsAdvControl 3 } - - -upsAdvControlSimulatePowerFail OBJECT-TYPE - SYNTAX INTEGER { - noSimulatePowerFailure(1), - simulatePowerFailure(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to simulatePowerFailure(2) causes - the UPS switch to battery power. - - Setting this value to noSimulatePowerFailure(1) has no - effect. - - The value noSimulatePowerFailure(1) will always be returned - when the variable is read." - ::= { upsAdvControl 4 } - - -upsAdvControlFlashAndBeep OBJECT-TYPE - SYNTAX INTEGER { - noFlashAndBeep(1), - flashAndBeep(2), - flashAndBeepSyncGroup(3), - flashAndBeepCont(4), - flashAndBeepCancel(5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to flashAndBeep(2) causes the - UPS to beep and simultaneously turn on the UPS front - panel lights (Smart-UPS only). - - If this UPS is an active member of a Synchronized Control - Group (SCG), the flashAndBeepSyncGroup(3) command will - Flash and Beep all active Group members regardless of - current AC output status. - - Setting this value to noFlashAndBeep(1) has no - effect. - - Setting this value to flashAndBeepCont (4) commandcauses - the UPS to beep and light the front panel lights until - the flashAndBeepCancel (5) command is received. - - The value noFlashAndBeep(1) will always be returned - when the variable is read." - ::= { upsAdvControl 5 } - - -upsAdvControlTurnOnUPS OBJECT-TYPE - SYNTAX INTEGER { - noTurnOnUPS(1), - turnOnUPS(2), - turnOnUPSSyncGroup(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to turnOnUPS(2) causes the - UPS to be turned on immediately. - - If this UPS is an active member of a Synchronized Control - Group (SCG), the turnOnUPSSyncGroup(3) command will perform - a Synchronized Turn On of all active Group members - regardless of their current AC output status. - - Setting this value to noTurnOnUPS(1) has no - effect. - - The value noTurnOnUPS(1) will always be returned - when the variable is read." - ::= { upsAdvControl 6 } - -upsAdvControlBypassSwitch OBJECT-TYPE - SYNTAX INTEGER { - noBypassSwitch (1), - switchToBypass (2), - switchOutOfBypass(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This switch puts the UPS in or out of bypass mode." - ::= { upsAdvControl 7 } - -upsAdvControlRebootUpsWithOrWithoutAC OBJECT-TYPE - SYNTAX INTEGER { - noRebootUpsWithOrWithoutAC (1), - rebootUpsImmediatelyWithOrWithoutAC (2), - rebootUpsDelayedWithOrWithoutAC (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to rebootUpsImmediatelyWithOrWithoutAC (2) - causes the UPS to turn off immediately, wait for a minimum time - (typically 8 seconds), and then turn back on regardless of the - AC input power on the UPS. Any supported switched outlet - groups will be turned off immediately but will turn on based - on their individual settings (to allow on sequencing). - - Setting this variable to rebootUpsDelayedWithOrWithoutAC (3) - causes the UPS to turn off after a delay period, wait for a - minimum time (typically 8 seconds), and then turn back on - regardless of the AC input power on the UPS. Any supported - switched outlet groups will be turned off and on based on their - individual settings (to allow off and/or on sequencing). - - Setting this value to noRebootUpsWithOrWithoutAC (1) has no - effect. - - The value noRebootUpsWithOrWithoutAC (1) will always be - returned when the variable is read." - ::= { upsAdvControl 8 } - -upsAdvControlFirmwareUpdate OBJECT-TYPE - SYNTAX INTEGER { - noFirmwareUpdate (1), - firmwareUpdate (2), - updateInProcess (3), - updateSuccessful (4), - updateFailed (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to firmwareUpdate(2) causes the - UPS to begin a firmware update if possible. - - Setting this value to noFirmwareUpdate(1) will clear the - previous results, if any, or otherwise has no effect. - - Reading this variable will return noFirmwareUpdate(1) when - the UPS firmware has not been updated (or previous results - have been cleared), updateInProcess(3) when the UPS firmware - is being updated, updateSuccessful(4) when the UPS firmware - has been successfully updated, or updateFailed(5) if the UPS - firmware update failed." - ::= { upsAdvControl 9 } - - --- the upsTest group - --- the upsBasicTest group - --- the upsAdvTest group - -upsAdvTestDiagnosticSchedule OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - biweekly(2), - weekly(3), - atTurnOn(4), - never(5), - fourWeeks(6), - twelveWeeks(7), - biweeklySinceLastTest(8), - weeklySinceLastTest(9), - eightWeeks(10), - twentysixWeeks(11), - fiftytwoWeeks(12) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The UPS system's automatic battery test schedule." - ::= { upsAdvTest 1 } - - -upsAdvTestDiagnostics OBJECT-TYPE - SYNTAX INTEGER { - noTestDiagnostics(1), - testDiagnostics(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to testDiagnostics(2) causes - the UPS to perform a diagnostic self test. - - Setting this value to noTestDiagnostics(1) has no - effect. - - The value noTestDiagnostics(1) will always be returned - when the variable is read." - ::= { upsAdvTest 2 } - -upsAdvTestDiagnosticsResults OBJECT-TYPE - SYNTAX INTEGER { - ok(1), - failed(2), - invalidTest(3), - testInProgress(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The results of the last UPS diagnostics test performed." - ::= { upsAdvTest 3 } - -upsAdvTestLastDiagnosticsDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date the last UPS diagnostics test was performed in - mm/dd/yy format." - ::= { upsAdvTest 4 } - -upsAdvTestRuntimeCalibration OBJECT-TYPE - SYNTAX INTEGER { - noPerformCalibration(1), - performCalibration(2), - cancelCurrentCalibration(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to performCalibration(2) causes - the UPS to discharge to calibrate the UPS. - The test will only start if the battery capacity is 100%. - The test runs until capacity is less than 25%. - - Setting this variable to cancelCurrentCalibration(3) - after setting performCalibration(2) will cancel the - current discharge. - - Setting this variable to noPerformCalibration(1) - will have no effect. - - The value noPerformCalibration(1) will always be returned - when the variable is read. - - The result of the calibration will be saved in - upsAdvTestCalibrationResult." - ::= { upsAdvTest 5 } - -upsAdvTestCalibrationResults OBJECT-TYPE - SYNTAX INTEGER { - ok(1), - invalidCalibration(2), - calibrationInProgress(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The results of the last runtime calibration. - - Value ok(1) means a successful runtime calibration. - - Value invalidCalibration(2) indicates last calibration did - not take place since the battery capacity was below - 100%. - - Value calibrationInProgress(3) means a calibration - is occurring now. " - ::= { upsAdvTest 6 } - -upsAdvTestCalibrationDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date the last UPS runtime calibration was - performed in mm/dd/yy format." - ::= { upsAdvTest 7 } - -upsAdvTestDiagnosticTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time of the day to perform automatic battery test. - Expressed in 24 hour notation - hh:mm." - ::= { upsAdvTest 8 } - -upsAdvTestDiagnosticDay OBJECT-TYPE - SYNTAX INTEGER { - monday (1), - tuesday (2), - wednesday (3), - thursday (4), - friday (5), - saturday (6), - sunday (7) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The day of the week to perform automatic battery test." - ::= { upsAdvTest 9 } - --- the upsComm group - -upsCommStatus OBJECT-TYPE - SYNTAX INTEGER { - ok(1), - noComm(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of agent's communication with UPS. " - ::= { upsComm 1 } - --- ups (integrated) output relay table - -upsOutputRelayStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of integrated output relays on the UPS." - ::= { upsOutputRelays 1 } - -upsOutputRelayStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSOutputRelayStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual relays." - ::= { upsOutputRelays 2 } - -upsOutputRelayStatusEntry OBJECT-TYPE - SYNTAX UPSOutputRelayStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relays to access." - INDEX { upsOutputRelayIndex } - ::= { upsOutputRelayStatusTable 1 } - -UPSOutputRelayStatusEntry ::= - SEQUENCE { - upsOutputRelayIndex INTEGER, - upsOutputRelayState INTEGER - } - -upsOutputRelayIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the output relay entry." - ::= { upsOutputRelayStatusEntry 1 } - -upsOutputRelayState OBJECT-TYPE - SYNTAX INTEGER { - outputRelayNormalState (1), - outputRelayAbnormalState (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the output relay state. - 1 - normal state - 2 - abnormal state" - ::= { upsOutputRelayStatusEntry 2 } - - --- the measureUps group --- the Environ group - -mUpsEnvironAmbientTemperature OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ambient temperature in Celsius for Probe 1." - ::= { mUpsEnviron 1 } - -mUpsEnvironRelativeHumidity OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The relative humidity as a percentage for Probe 1." - ::= { mUpsEnviron 2 } - - -mUpsEnvironAmbientTemperature2 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ambient temperature in Celsius for Probe 2." - ::= { mUpsEnviron 3 } - -mUpsEnvironRelativeHumidity2 OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The relative humidity as a percentage for Probe 2." - ::= { mUpsEnviron 4 } - --- the mUpsContact group - -mUpsContactNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts supported by the Measure-UPS." - ::= { mUpsContact 1 } - -mUpsContactTable OBJECT-TYPE - SYNTAX SEQUENCE OF MUpsContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the Measure-UPS." - ::= { mUpsContact 2 } - -mUpsContactEntry OBJECT-TYPE - SYNTAX MUpsContactEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A contact entry containing information for a given contact." - INDEX { contactNumber } - ::= { mUpsContactTable 1 } - -MUpsContactEntry ::= - SEQUENCE { - contactNumber - INTEGER, - normalState - INTEGER, - description - DisplayString, - monitoringStatus - INTEGER, - currentStatus - INTEGER - } - -contactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index identifying the contact on the Measure-UPS." - ::= { mUpsContactEntry 1 } - -normalState OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - open(2), - closed(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal operating position of the contact. If the normal - operating position cannot be set then it is controlled via the - dip switch on the Measure-UPS and is therefore read-only." - ::= { mUpsContactEntry 2 } - -description OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The description of the purpose/use of the contact." - ::= { mUpsContactEntry 3 } - -monitoringStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - enabled(2), - disabled(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A flag indicating whether this contact is - monitored, or not." - ::= { mUpsContactEntry 4 } - -currentStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - noFault(2), - fault(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value indicates the current state of the contact. - If the contact is not in its normal state. This value - is set to fault(2)." - ::= { mUpsContactEntry 5 } - --- Three Phase Group - --- --- Reset Max/Min Values Group --- - - upsPhaseResetMaxMinValues OBJECT-TYPE - SYNTAX INTEGER { - none (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the maximum and minimum UPS values: - upsPhaseInputMaxVoltage, upsPhaseInputMinVoltage, - upsPhaseInputMaxCurrent, upsPhaseInputMinCurrent, - upsPhaseInputMaxPower, upsPhaseInputMinPower, - upsPhaseOutputMaxCurrent, upsPhaseOutputMinCurrent, - upsPhaseOutputMaxLoad, upsPhaseOutputMinLoad, - upsPhaseOutputMaxPercentLoad, upsPhaseOutputMinPercentLoad, - upsPhaseOutputMaxPower, upsPhaseOutputMinPower, - upsPhaseOutputMaxPercentPower, upsPhaseOutputMinPercentPower." - ::= { upsPhaseResetValues 1 } - --- --- Input Group --- - --- Number of Inputs - - upsPhaseNumInputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input feeds to this device. - This variable indicates the number of rows in the - input table." - ::= { upsPhaseInput 1 } - --- Input Table - - upsPhaseInputTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsPhaseInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries. The number of entries - is given by the value of upsPhaseNumInputs." - ::= { upsPhaseInput 2 } - - upsPhaseInputEntry OBJECT-TYPE - SYNTAX UpsPhaseInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input." - INDEX { upsPhaseInputTableIndex } - ::= { upsPhaseInputTable 1 } - - UpsPhaseInputEntry ::= SEQUENCE { - upsPhaseInputTableIndex INTEGER, - upsPhaseNumInputPhases INTEGER, - upsPhaseInputVoltageOrientation INTEGER, - upsPhaseInputFrequency INTEGER, - upsPhaseInputType INTEGER, - upsPhaseInputName DisplayString - } - - upsPhaseInputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input identifier." - ::= { upsPhaseInputEntry 1 } - - upsPhaseNumInputPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input phases utilized in this - device. The sum of all the upsPhaseNumInputPhases - variable indicates the number of rows in the - input phase table." - ::= { upsPhaseInputEntry 2 } - - upsPhaseInputVoltageOrientation OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - singlePhase(2), - splitPhase(3), - threePhasePhaseToNeutral(4), - threePhasePhaseToPhase(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input voltage orientation: - 1: unknown for this UPS - 2: singlePhase - phase 1 voltage is between Phase 1 - and Neutral. - 3: splitPhase - phase 1 voltage is between Phase 1 and - Neutral; phase 2 voltage is between Phase 2 and Neutral; - phase 3 voltage is between Phase 1 and Phase 2. - 4: threePhasePhaseToNeutral - phase 1 voltage is between - Phase 1 and Neutral; phase 2 voltage is between Phase 2 - and Neutral; phase 3 voltage is between Phase 3 and - Neutral. - 5: threePhasePhaseToPhase - phase 1 voltage is between - Phase 1 and Phase 2; phase 2 voltage is between Phase 2 - and Phase 3; phase 3 voltage is between Phase 3 and - Phase 1." - ::= { upsPhaseInputEntry 3 } - - upsPhaseInputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input frequency in 0.1 Hertz, or -1 if it's unsupported - by this UPS." - ::= { upsPhaseInputEntry 4 } - - upsPhaseInputType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - main(2), - bypass(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input type." - ::= { upsPhaseInputEntry 5 } - - upsPhaseInputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A name given to a particular input." - ::= { upsPhaseInputEntry 6 } - --- Input Phase Table - - upsPhaseInputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsPhaseInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries. The number of entries - is given by the sum of the upsPhaseNumInputPhases." - ::= { upsPhaseInput 3 } - - upsPhaseInputPhaseEntry OBJECT-TYPE - SYNTAX UpsPhaseInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input phase." - INDEX { upsPhaseInputPhaseTableIndex, upsPhaseInputPhaseIndex } - ::= { upsPhaseInputPhaseTable 1 } - - UpsPhaseInputPhaseEntry ::= SEQUENCE { - upsPhaseInputPhaseTableIndex INTEGER, - upsPhaseInputPhaseIndex INTEGER, - upsPhaseInputVoltage INTEGER, - upsPhaseInputMaxVoltage INTEGER, - upsPhaseInputMinVoltage INTEGER, - upsPhaseInputCurrent INTEGER, - upsPhaseInputMaxCurrent INTEGER, - upsPhaseInputMinCurrent INTEGER, - upsPhaseInputPower INTEGER, - upsPhaseInputMaxPower INTEGER, - upsPhaseInputMinPower INTEGER, - upsPhaseInputApparentPower INTEGER, - upsPhaseInputPowerFactor INTEGER - } - - upsPhaseInputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input identifier." - ::= { upsPhaseInputPhaseEntry 1 } - - upsPhaseInputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase identifier." - ::= { upsPhaseInputPhaseEntry 2 } - - upsPhaseInputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input voltage in VAC, or -1 if it's unsupported - by this UPS." - ::= { upsPhaseInputPhaseEntry 3 } - - upsPhaseInputMaxVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum input voltage in VAC measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseInputPhaseEntry 4 } - - upsPhaseInputMinVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum input voltage in VAC measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseInputPhaseEntry 5 } - - upsPhaseInputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input current in 0.1 amperes, or -1 if it's - unsupported by this UPS." - ::= { upsPhaseInputPhaseEntry 6 } - - upsPhaseInputMaxCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum input current in 0.1 amperes measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseInputPhaseEntry 7 } - - upsPhaseInputMinCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum input current in 0.1 amperes measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseInputPhaseEntry 8 } - - upsPhaseInputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input power in Watts, or -1 if it's unsupported - by this UPS." - ::= { upsPhaseInputPhaseEntry 9 } - - upsPhaseInputMaxPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum input power in Watts measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseInputPhaseEntry 10 } - - upsPhaseInputMinPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum input power in Watts measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseInputPhaseEntry 11 } - - - upsPhaseInputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input apparent power of the UPS in kVA." - ::= { upsPhaseInputPhaseEntry 12 } - - - upsPhaseInputPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input power factor measured in hundredth." - ::= { upsPhaseInputPhaseEntry 13 } - - - - -- - -- The Output group. - -- - - -- Number of Outputs - - upsPhaseNumOutputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output feeds to this device. - This variable indicates the number of rows in the - output table." - ::= { upsPhaseOutput 1 } - - -- Output Table - - upsPhaseOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsPhaseOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of entries - is given by the value of upsOutputNumPhases." - ::= { upsPhaseOutput 2 } - - upsPhaseOutputEntry OBJECT-TYPE - SYNTAX UpsPhaseOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { upsPhaseOutputTableIndex } - ::= { upsPhaseOutputTable 1 } - - UpsPhaseOutputEntry ::= SEQUENCE { - upsPhaseOutputTableIndex INTEGER, - upsPhaseNumOutputPhases INTEGER, - upsPhaseOutputVoltageOrientation INTEGER, - upsPhaseOutputFrequency INTEGER - } - - upsPhaseOutputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { upsPhaseOutputEntry 1 } - - upsPhaseNumOutputPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output phases utilized in this - device. The sum of all the upsPhaseNumOutputPhases - variable indicates the number of rows in the - output phase table." - ::= { upsPhaseOutputEntry 2 } - - upsPhaseOutputVoltageOrientation OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - singlePhase(2), - splitPhase(3), - threePhasePhaseToNeutral(4), - threePhasePhaseToPhase(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage orientation: - 1: unknown for this UPS - 2: singlePhase - phase 1 voltage is between Phase 1 - and Neutral. - 3: splitPhase - phase 1 voltage is between Phase 1 and - Neutral; phase 2 voltage is between Phase 2 and Neutral; - phase 3 voltage is between Phase 1 and Phase 2. - 4: threePhasePhaseToNeutral - phase 1 voltage is between - Phase 1 and Neutral; phase 2 voltage is between Phase 2 - and Neutral; phase 3 voltage is between Phase 3 and - Neutral. - 5: threePhasePhaseToPhase - phase 1 voltage is between - Phase 1 and Phase 2; phase 2 voltage is between Phase 2 - and Phase 3; phase 3 voltage is between Phase 3 and - Phase 1." - ::= { upsPhaseOutputEntry 3 } - - upsPhaseOutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output frequency in 0.1 Hertz, or -1 if it's - unsupported by this UPS." - ::= { upsPhaseOutputEntry 4 } - - -- Output Phase Table - - upsPhaseOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsPhaseOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of - entries is given by the sum of the upsPhaseNumOutputPhases." - ::= { upsPhaseOutput 3 } - - upsPhaseOutputPhaseEntry OBJECT-TYPE - SYNTAX UpsPhaseOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output phase." - INDEX { upsPhaseOutputPhaseTableIndex, upsPhaseOutputPhaseIndex } - ::= { upsPhaseOutputPhaseTable 1 } - - UpsPhaseOutputPhaseEntry ::= SEQUENCE { - upsPhaseOutputPhaseTableIndex INTEGER, - upsPhaseOutputPhaseIndex INTEGER, - upsPhaseOutputVoltage INTEGER, - upsPhaseOutputCurrent INTEGER, - upsPhaseOutputMaxCurrent INTEGER, - upsPhaseOutputMinCurrent INTEGER, - upsPhaseOutputLoad INTEGER, - upsPhaseOutputMaxLoad INTEGER, - upsPhaseOutputMinLoad INTEGER, - upsPhaseOutputPercentLoad INTEGER, - upsPhaseOutputMaxPercentLoad INTEGER, - upsPhaseOutputMinPercentLoad INTEGER, - upsPhaseOutputPower INTEGER, - upsPhaseOutputMaxPower INTEGER, - upsPhaseOutputMinPower INTEGER, - upsPhaseOutputPercentPower INTEGER, - upsPhaseOutputMaxPercentPower INTEGER, - upsPhaseOutputMinPercentPower INTEGER, - upsPhaseOutputPowerFactor INTEGER - } - - upsPhaseOutputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { upsPhaseOutputPhaseEntry 1 } - - upsPhaseOutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output phase identifier." - ::= { upsPhaseOutputPhaseEntry 2 } - - upsPhaseOutputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage in VAC, or -1 if it's unsupported - by this UPS." - ::= { upsPhaseOutputPhaseEntry 3 } - - upsPhaseOutputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current in 0.1 amperes drawn - by the load on the UPS, or -1 if it's unsupported - by this UPS." - ::= { upsPhaseOutputPhaseEntry 4 } - - upsPhaseOutputMaxCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output current in 0.1 amperes measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 5 } - - upsPhaseOutputMinCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output current in 0.1 amperes measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 6 } - - upsPhaseOutputLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output load in VA, or -1 if it's unsupported - by this UPS." - ::= { upsPhaseOutputPhaseEntry 7 } - - upsPhaseOutputMaxLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output load in VA measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 8 } - - upsPhaseOutputMinLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output load in VA measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 9 } - - upsPhaseOutputPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the UPS load capacity in VA at - redundancy @ (n + x) presently being used on this - output phase, or -1 if it's unsupported by this UPS." - ::= { upsPhaseOutputPhaseEntry 10 } - - upsPhaseOutputMaxPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the UPS load capacity in - VA measured at redundancy @ (n + x) presently - being used on this output phase since the last reset - (upsPhaseResetMaxMinValues), or -1 if it's unsupported - by this UPS. Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 11 } - - upsPhaseOutputMinPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum percentage of the UPS load capacity in - VA measured at redundancy @ (n + x) presently - being used on this output phase since the last reset - (upsPhaseResetMaxMinValues), or -1 if it's unsupported - by this UPS. Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 12 } - - upsPhaseOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output power in Watts, or -1 if it's - unsupported by this UPS." - ::= { upsPhaseOutputPhaseEntry 13 } - - upsPhaseOutputMaxPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output power in Watts measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 14 } - - upsPhaseOutputMinPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output power in Watts measured - since the last reset (upsPhaseResetMaxMinValues), or - -1 if it's unsupported by this UPS. - Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 15 } - - upsPhaseOutputPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the UPS power capacity in Watts at - redundancy @ (n + x) presently being used on this - output phase, or -1 if it's unsupported by this UPS." - ::= { upsPhaseOutputPhaseEntry 16 } - - upsPhaseOutputMaxPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the UPS power capacity - in Watts measured at redundancy @ (n + x) presently - being used on this output phase since the last - reset (upsPhaseResetMaxMinValues), or -1 if it's - unsupported by this UPS. Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 17 } - - upsPhaseOutputMinPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the UPS power capacity - in Watts measured at redundancy @ (n + x) presently - being used on this output phase since the last - reset (upsPhaseResetMaxMinValues), or -1 if it's - unsupported by this UPS. Sampled every 30 seconds." - ::= { upsPhaseOutputPhaseEntry 18 } - - upsPhaseOutputPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Output power factor of the UPS in hundredth." - ::= { upsPhaseOutputPhaseEntry 19 } - --- the upsOutletGroupStatus group - -upsOutletGroupStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outlet groups for the UPS." - ::= { upsOutletGroupStatus 1 } - -upsOutletGroupStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsOutletGroupStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting status of the outlet groups. The number of - entries is contained in the upsOutletGroupStatusTableSize OID." - ::= { upsOutletGroupStatus 2 } - -upsOutletGroupStatusEntry OBJECT-TYPE - SYNTAX UpsOutletGroupStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlet group status to get." - INDEX { upsOutletGroupStatusIndex} - ::= { upsOutletGroupStatusTable 1 } - -UpsOutletGroupStatusEntry ::= - SEQUENCE { - upsOutletGroupStatusIndex INTEGER, - upsOutletGroupStatusName DisplayString, - upsOutletGroupStatusGroupState INTEGER, - upsOutletGroupStatusCommandPending INTEGER, - upsOutletGroupStatusOutletType INTEGER, - upsOutletGroupStatusGroupFullState DisplayString - } - -upsOutletGroupStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet group entry." - ::= { upsOutletGroupStatusEntry 1 } - -upsOutletGroupStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet group. This OID is provided - for informational purposes only. This value is set - by the upsOutletGroupConfigName OID." - ::= { upsOutletGroupStatusEntry 2 } - -upsOutletGroupStatusGroupState OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupStatusOn (1), - upsOutletGroupStatusOff (2), - upsOutletGroupStatusUnknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet group state. If the outlet - group is on, the upsOutletGroupStatusOn (1) value will be returned. If - the outlet group is off, the upsOutletGroupStatusOff (2) value will be - returned. If the state of the outlet group cannot be determined, the - upsOutletGroupStatusUnknown (3) value will be returned." - - ::= { upsOutletGroupStatusEntry 3 } - -upsOutletGroupStatusCommandPending OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupCommandPending (1), - upsOutletGroupNoCommandPending (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the command pending - state of the outlet group. If a command is pending on the - outlet group, the upsOutletGroupCommandPending (1) value - will be returned. If there is not a command pending - on the outlet group, the upsOutletGroupNoCommandPending (2) - will be returned." - ::= { upsOutletGroupStatusEntry 4 } - -upsOutletGroupStatusOutletType OBJECT-TYPE - SYNTAX INTEGER { - upsSwitchedOutletGroup (1), - upsMainOutletGroup (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the type of outlet group. - If present in the system, the main outlet group is - 'unswitched' and must be on in order for any of the switched - outlet groups to be on. Conversely, if the main outlet group - is off, all the switched outlet groups must also be off. - Therefore, any commands made to the main outlet group that - turn it off will also be applied to all switched outlet - groups that are on, unless the state of a switched outlet - group prevents it, in which case the command will fail." - ::= { upsOutletGroupStatusEntry 5 } - -upsOutletGroupStatusGroupFullState OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 32 flags representing the - current state(s) of the outlet group. If the Network Card - is unable to determine the state of the outlet group, this - variable is set to 'UNKNOWN'. - - The flags are numbered from 1 to 32, and read from left to - right. The flags are defined as follows: - - Flag 1: On - Flag 2: Off - Flag 3: Reboot in Progress - Flag 4: Shutdown in Progress - - Flag 5: Sleep in Progress - Flag 6: - Flag 7: - Flag 8: Pending Load Shed - - Flag 9: Pending On Delay - Flag 10: Pending Off Delay - Flag 11: Pending AC Presence - Flag 12: Pending On Minimum Runtime - - Flag 13: Member Group Process 1 - Flag 14: Member Group Process 2 - Flag 15: Runtime Below Turn On Setting - Flag 16: - - Flag 17: - Flag 18: - Flag 19: - Flag 20: - - Flag 21: - Flag 22: - Flag 23: - Flag 24: - - Flag 25: - Flag 26: - Flag 27: - Flag 28: - - Flag 29: - Flag 30: - Flag 31: - Flag 32: " - ::= { upsOutletGroupStatusEntry 6 } - --- the upsOutletGroupConfig group - -upsOutletGroupConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outlet groups for the UPS." - ::= { upsOutletGroupConfig 1 } - -upsOutletGroupConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsOutletGroupConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The list of outlet groups to configure. The number of entries - is defined by the upsOutletGroupConfigTableSize OID." - ::= { upsOutletGroupConfig 2 } - -upsOutletGroupConfigEntry OBJECT-TYPE - SYNTAX UpsOutletGroupConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlet groups to configure." - INDEX { upsOutletGroupConfigIndex} - ::= { upsOutletGroupConfigTable 1 } - -UpsOutletGroupConfigEntry ::= - SEQUENCE { - upsOutletGroupConfigIndex INTEGER, - upsOutletGroupConfigName DisplayString, - upsOutletGroupConfigPowerOnDelay INTEGER, - upsOutletGroupConfigPowerOffDelay INTEGER, - upsOutletGroupConfigRebootDuration INTEGER, - upsOutletGroupConfigMinReturnRuntime INTEGER, - upsOutletGroupConfigOutletType INTEGER, - upsOutletGroupConfigLoadShedControlSkipOffDelay INTEGER, - upsOutletGroupConfigLoadShedControlAutoRestart INTEGER, - upsOutletGroupConfigLoadShedControlTimeOnBattery INTEGER, - upsOutletGroupConfigLoadShedControlRuntimeRemaining INTEGER, - upsOutletGroupConfigLoadShedControlInOverload INTEGER, - upsOutletGroupConfigLoadShedTimeOnBattery INTEGER, - upsOutletGroupConfigLoadShedRuntimeRemaining INTEGER - } - -upsOutletGroupConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet group entry." - ::= { upsOutletGroupConfigEntry 1 } - -upsOutletGroupConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the outlet group." - ::= { upsOutletGroupConfigEntry 2 } - -upsOutletGroupConfigPowerOnDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (seconds) the outlet group will delay - powering on when the delayed on, reboot, or shutdown command is - applied. Allowed values vary by UPS model. The value of -1 is - used for Never if supported by the UPS and the outlet group." - ::= { upsOutletGroupConfigEntry 3 } - -upsOutletGroupConfigPowerOffDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (seconds) the outlet group will delay - powering off when the delayed off, reboot, or shutdown command is - applied. Allowed values vary by UPS model. The value of -1 is - used for Never if supported by the UPS and the outlet group." - ::= { upsOutletGroupConfigEntry 4 } - -upsOutletGroupConfigRebootDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "During a reboot sequence, power is turned off and then - back on. This OID defines the amount of time to wait - (seconds) after turning the power off, at the start - of the sequence, before initiating the power on sequence. - Allowed values vary by UPS model." - ::= { upsOutletGroupConfigEntry 5 } - -upsOutletGroupConfigMinReturnRuntime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "In an Outlet Group shutdown sequence, the Outlet Group cycles - power off then on. This OID defines the minimum amount of UPS - runtime (seconds) that is required in order to power the - Outlet Group on. Allowed values vary by UPS model." - ::= { upsOutletGroupConfigEntry 6 } - -upsOutletGroupConfigOutletType OBJECT-TYPE - SYNTAX INTEGER { - upsSwitchedOutletGroup (1), - upsMainOutletGroup (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the type of outlet group. - If present in the system, the main outlet group is - 'unswitched' and must be on in order for any of the switched - outlet groups to be on. Conversely, if the main outlet group - is off, all the switched outlet groups must also be off. - Therefore, any commands made to the main outlet group that - turn it off will also be applied to all switched outlet - groups that are on, unless the state of a switched outlet - group prevents it, in which case the command will fail." - ::= { upsOutletGroupConfigEntry 7 } - -upsOutletGroupConfigLoadShedControlSkipOffDelay OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupConfigSkipOffDelay (1), - upsOutletGroupConfigUseOffDelay (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configures whether the outlet group's off delay setting - (upsOutletGroupConfigPowerOffDelay) will be used in a load - shedding situation, where applicable." - ::= { upsOutletGroupConfigEntry 8 } - -upsOutletGroupConfigLoadShedControlAutoRestart OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupConfigAutoRestart (1), - upsOutletGroupConfigManualRestart (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configures whether the outlet group will automatically restart - after a load shedding situation, where applicable." - ::= { upsOutletGroupConfigEntry 9 } - -upsOutletGroupConfigLoadShedControlTimeOnBattery OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupConfigDisableTimeOnBatteryLoadShed (1), - upsOutletGroupConfigEnableTimeOnBatteryLoadShed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configures whether the outlet group will load shed (turn off) - after the UPS's time on battery has exceeded the - upsOutletGroupConfigLoadShedTimeOnBattery OID setting. The - settings for upsOutletGroupConfigLoadShedControlSkipOffDelay - and upsOutletGroupConfigLoadShedControlAutoRestart are valid - for this load shed condition." - ::= { upsOutletGroupConfigEntry 10 } - -upsOutletGroupConfigLoadShedControlRuntimeRemaining OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupConfigDisableRuntimeRemainingLoadShed (1), - upsOutletGroupConfigEnableRuntimeRemainingLoadShed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configures whether the outlet group will load shed (turn off) - when the UPS is on battery and the remaining runtime is less - than the upsOutletGroupConfigLoadShedRuntimeRemaining OID - setting. The settings for - upsOutletGroupConfigLoadShedControlSkipOffDelay and - upsOutletGroupConfigLoadShedControlAutoRestart are valid for - this load shed condition." - ::= { upsOutletGroupConfigEntry 11 } - -upsOutletGroupConfigLoadShedControlInOverload OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupConfigDisableInOverloadLoadShed (1), - upsOutletGroupConfigEnableInOverloadLoadShed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configures whether the outlet group will load shed (turn off) - when the UPS is in an overload condition. The setting for - upsOutletGroupConfigLoadShedControlSkipOffDelay is valid for - this load shed condition. Returns -1 if not supported by this - outlet group." - ::= { upsOutletGroupConfigEntry 12 } - -upsOutletGroupConfigLoadShedTimeOnBattery OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the UPS has been on battery for more time than this - value, the outlet group will turn off if this condition is - enabled by the upsOutletGroupConfigLoadShedControlTimeOnBattery - OID. Allowed values vary by UPS model." - ::= { upsOutletGroupConfigEntry 13 } - -upsOutletGroupConfigLoadShedRuntimeRemaining OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the runtime remaining is less than this value, the outlet - group will turn off if this condition is enabled by the - upsOutletGroupConfigLoadShedControlRuntimeRemaining OID. - Allowed values vary by UPS model." - ::= { upsOutletGroupConfigEntry 14 } - --- the upsOutletGroupControl group - -upsOutletGroupControlTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outlet groups for the UPS." - ::= { upsOutletGroupControl 1 } - -upsOutletGroupControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsOutletGroupControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual outlet groups. The number of - entries is contained in the upsOutletGroupControlTableSize OID." - ::= { upsOutletGroupControl 2 } - -upsOutletGroupControlEntry OBJECT-TYPE - SYNTAX UpsOutletGroupControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlet group to control." - INDEX { upsOutletGroupControlIndex} - ::= { upsOutletGroupControlTable 1 } - -UpsOutletGroupControlEntry ::= - SEQUENCE { - upsOutletGroupControlIndex INTEGER, - upsOutletGroupControlName DisplayString, - upsOutletGroupControlCommand INTEGER, - upsOutletGroupControlOutletType INTEGER - } - -upsOutletGroupControlIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet group entry." - ::= { upsOutletGroupControlEntry 1 } - -upsOutletGroupControlName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet group. This OID is provided - for informational purposes only. This value is set - by the upsOutletGroupConfigName OID." - ::= { upsOutletGroupControlEntry 2 } - -upsOutletGroupControlCommand OBJECT-TYPE - SYNTAX INTEGER { - upsOutletGroupImmediateOn (1), - upsOutletGroupImmediateOff (2), - upsOutletGroupImmediateRebootWithOrWithoutAC (3), - upsOutletGroupDelayedOn (4), - upsOutletGroupDelayedOff (5), - upsOutletGroupDelayedRebootWithOrWithoutAC (6), - upsOutletGroupCancelPendingCommand (7), - upsOutletGroupControlUnknown (8), - upsOutletGroupImmediateRebootShutdown (9), - upsOutletGroupDelayedRebootShutdown (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet group state. If the outlet - group is on, the upsOutletGroupImmediateOn (1) value will be returned. If - the outlet group is off, the upsOutletGroupImmediateOff (2) value will be - returned. - - If the state of the outlet group cannot be determined, the - upsOutletGroupControlUnknown (8) value will be returned. - - Setting this variable to upsOutletGroupImmediateOn (1) will turn the - outlet group on immediately. - - Setting this variable to upsOutletGroupImmediateOff (2) will turn the - outlet group off immediately. - - Setting this variable to upsOutletGroupImmediateRebootWithOrWithoutAC (3) - will turn the outlet group off immediately, wait the - upsOutletGroupConfigRebootDuration OID time, wait the - upsOutletGroupConfigPowerOnDelay OID, and then turn the outlet group on - regardless of the AC input power on the UPS. - - Setting this variable to upsOutletGroupDelayedOn (4) will turn the outlet - group on after the upsOutletGroupConfigPowerOnDelay OID has elapsed. - - Setting this variable to upsOutletGroupDelayedOff (5) will turn the outlet - group off after the upsOutletGroupConfigPowerOffDelay OID has elapsed. - - Setting this variable to upsOutletGroupDelayedRebootWithOrWithoutAC (6) - will turn the outlet group off after the upsOutletGroupConfigPowerOffDelay - OID has elapsed, wait the upsOutletGroupConfigRebootDuration OID time, wait - the upsOutletGroupConfigPowerOnDelay OID, and then turn the outlet group - on regardless of the AC input power on the UPS. - - Setting this variable to upsOutletGroupCancelPendingCommand (7) will - cause any pending command to this outlet group to be canceled. - - Setting this variable to upsOutletGroupImmediateRebootShutdown (9) will - turn the outlet group off immediately, wait for the AC power to return to normal - (a minimum of the upsOutletGroupConfigRebootDuration OID time), wait the - upsOutletGroupConfigPowerOnDelay OID time, and then turn the outlet - group on. - - Setting this variable to upsOutletGroupDelayedRebootShutdown (10) will - turn the outlet group off after the upsOutletGroupConfigPowerOffDelay OID - has elapsed, wait for the AC power to return to normal (a minimum of the - upsOutletGroupConfigRebootDuration OID time), wait the - upsOutletGroupConfigPowerOnDelay OID time, and then turn the outlet - group on. - - In systems with a main outlet group, commands to the main outlet group must - be performed with caution. It may be clearer to use the ups control commands - available from upsAdvControl... OIDs. If any command is made to the main - outlet group that will turn it off, one of two things will happen: - 1) If any switched outlet group is in a state that prevents this command - from occurring on the main outlet group, the command will be rejected. Note - that a switched outlet group being on without a command in progress is not a - state that normally prevents the command. - 2) The command will be accepted and applied to the main outlet group and all - switched outlet groups that are on. - - There is one additional special case for systems with a main outlet group. - If the main outlet group is off and a switched outlet group is commanded to - turn on, the on command will be applied to both the main outlet group and - that switched outlet group." - ::= { upsOutletGroupControlEntry 3 } - -upsOutletGroupControlOutletType OBJECT-TYPE - SYNTAX INTEGER { - upsSwitchedOutletGroup (1), - upsMainOutletGroup (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the type of outlet group. - If present in the system, the main outlet group is - 'unswitched' and must be on in order for any of the switched - outlet groups to be on. Conversely, if the main outlet group - is off, all the switched outlet groups must also be off. - Therefore, any commands made to the main outlet group that - turn it off will also be applied to all switched outlet - groups that are on, unless the state of a switched outlet - group prevents it, in which case the command will fail." - ::= { upsOutletGroupControlEntry 4 } - --- the upsDiagnosticIM group - -upsDiagIMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Intelligence Modules in or attached to the UPS." - ::= { upsDiagnosticIM 1 } - -upsDiagIMTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagIMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual Intelligence Modules. The number of - entries is contained in the upsDiagIMTableSize OID." - ::= { upsDiagnosticIM 2 } - -upsDiagIMEntry OBJECT-TYPE - SYNTAX UpsDiagIMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics and information of an Intelligence Module." - INDEX { upsDiagIMIndex} - ::= { upsDiagIMTable 1 } - -UpsDiagIMEntry ::= - SEQUENCE { - upsDiagIMIndex INTEGER, - upsDiagIMType INTEGER, - upsDiagIMStatus INTEGER, - upsDiagIMFirmwareRev DisplayString, - upsDiagIMSlaveFirmwareRev DisplayString, - upsDiagIMHardwareRev DisplayString, - upsDiagIMSerialNum DisplayString, - upsDiagIMManufactureDate DisplayString - } - -upsDiagIMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Intelligence Module entry." - ::= { upsDiagIMEntry 1 } - -upsDiagIMType OBJECT-TYPE - SYNTAX INTEGER { - imUnknown (1), - imMIM (2), - imRIM (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of the Intelligence Module. - imUnknown(1) indicates the IM type is unknown. - imMIM(2) indicates the IM type is a Main Intelligence Module. - imRIM(3) indicates the IM type is Redundant Intelligence Module." - ::= { upsDiagIMEntry 2 } - -upsDiagIMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Intelligence Module. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagIMEntry 3 } - -upsDiagIMFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Intelligence Module." - ::= { upsDiagIMEntry 4 } - -upsDiagIMSlaveFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The slave firmware revision of the Intelligence Module." - ::= { upsDiagIMEntry 5 } - -upsDiagIMHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Intelligence Module." - ::= { upsDiagIMEntry 6 } - -upsDiagIMSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Intelligence Module." - ::= { upsDiagIMEntry 7 } - -upsDiagIMManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacture date of the Intelligence Module." - ::= { upsDiagIMEntry 8 } - --- the upsDiagnosticPowerModules group - -upsDiagPMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of Power Modules supported by the UPS." - ::= { upsDiagnosticPowerModules 1 } - -upsDiagPMTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagPMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of Individual Power modules. The number of - entries is contained in the upsDiagPMTableSize OID." - ::= { upsDiagnosticPowerModules 2 } - -upsDiagPMEntry OBJECT-TYPE - SYNTAX UpsDiagPMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of an Power Module." - INDEX { upsDiagPMIndex} - ::= { upsDiagPMTable 1 } - -UpsDiagPMEntry ::= - SEQUENCE { - upsDiagPMIndex INTEGER, - upsDiagPMStatus INTEGER, - upsDiagPMFirmwareRev DisplayString, - upsDiagPMHardwareRev DisplayString, - upsDiagPMSerialNum DisplayString, - upsDiagPMManufactureDate DisplayString - } - -upsDiagPMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Power Module entry." - ::= { upsDiagPMEntry 1 } - -upsDiagPMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Power Module. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagPMEntry 2 } - -upsDiagPMFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Power Module." - ::= { upsDiagPMEntry 3 } - -upsDiagPMHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Power Module." - ::= { upsDiagPMEntry 4 } - -upsDiagPMSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Power Module." - ::= { upsDiagPMEntry 5 } - -upsDiagPMManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacture date of the Power Module." - ::= { upsDiagPMEntry 6 } - -upsDiagPMLifetimeInfoTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagPMLifetimeInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual power module's lifetime information. - The number of entries is contained in the upsDiagPMTableSize OID." - ::= { upsDiagnosticPowerModules 3 } - -upsDiagPMLifetimeInfoEntry OBJECT-TYPE - SYNTAX UpsDiagPMLifetimeInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a Power Module lifetime information." - INDEX { upsDiagPMLifetimeInfoIndex} - ::= { upsDiagPMLifetimeInfoTable 1 } - -UpsDiagPMLifetimeInfoEntry ::= - SEQUENCE { - upsDiagPMLifetimeInfoIndex INTEGER, - upsDiagPMLifetimeStatus INTEGER, - upsDiagPMEstmtdLifetimeRmng INTEGER, - upsDiagPMEstmtdLifetimeRmngPct INTEGER, - upsDiagPMFanLifetimeStatus INTEGER, - upsDiagPMFanEstmtdLifetimeRmng INTEGER, - upsDiagPMFanEstmtdLifetimeRmngPct INTEGER - - } - -upsDiagPMLifetimeInfoIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Power Module lifetime information entry." - ::= { upsDiagPMLifetimeInfoEntry 1 } - -upsDiagPMLifetimeStatus OBJECT-TYPE - SYNTAX INTEGER { - ok (1), - nearEnd (2), - exceeded (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Power Module lifetime information. - ok(1) indicates the device lifetime status is OK. - nearEnd(2) indicates the device lifetime status is near end. - exceeded(3) indicates the device lifetime status is exceeded. - unknown(4) indicates the device lifetime status is unknown." - - ::= { upsDiagPMLifetimeInfoEntry 2 } - -upsDiagPMEstmtdLifetimeRmng OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the time remaining for the module before it should be replaced. - Measured in months. This value is set when you originally install the module." - ::= { upsDiagPMLifetimeInfoEntry 3 } - -upsDiagPMEstmtdLifetimeRmngPct OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the percentage of the total lifetime remaining for the module - before it should be replaced." - ::= { upsDiagPMLifetimeInfoEntry 4 } - -upsDiagPMFanLifetimeStatus OBJECT-TYPE - SYNTAX INTEGER { - ok (1), - nearEnd (2), - exceeded (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Power Module Fan lifetime information. - ok(1) indicates the device lifetime status is OK. - nearEnd(2) indicates the device lifetime status is near end. - exceeded(3) indicates the device lifetime status is exceeded. - unknown(4) indicates the device lifetime status is unknown." - ::= { upsDiagPMLifetimeInfoEntry 5 } - -upsDiagPMFanEstmtdLifetimeRmng OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the time remaining, measured in months, before the module's - fan should be replaced. It is reset by the field service engineer when - a new fan is installed." - ::= { upsDiagPMLifetimeInfoEntry 6 } - -upsDiagPMFanEstmtdLifetimeRmngPct OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the percentage of the total lifetime remaining - before the module's fan should be replaced." - ::= { upsDiagPMLifetimeInfoEntry 7 } - -upsDiagPMEnclDoorFltrTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of power module enclosures attached to the UPS." - ::= { upsDiagnosticPowerModules 4 } - -upsDiagPMEnclDoorFltrTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagPMEnclDoorFltrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the diagnostics of individual power module enclosure door filters. - The number of entries is contained in the upsDiagPMEnclDoorFltrTableSize OID." - ::= { upsDiagnosticPowerModules 5 } - -upsDiagPMEnclDoorFltrEntry OBJECT-TYPE - SYNTAX UpsDiagPMEnclDoorFltrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Power module door filter diagnostics info." - INDEX { upsDiagPMEnclIndex} - ::= { upsDiagPMEnclDoorFltrTable 1 } - -UpsDiagPMEnclDoorFltrEntry ::= - SEQUENCE { - upsDiagPMEnclIndex INTEGER, - upsDiagPMEnclDoorFltrLifetime INTEGER, - upsDiagPMEnclDoorFltrStatus INTEGER, - upsDiagPMEnclDoorFltrEstmtdLifetimeRmng INTEGER, - upsDiagPMEnclDoorFltrEstmtdLifetimeRmngPct INTEGER - } -upsDiagPMEnclIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the power module enclosure entry. - Enclosure 0 indicates the Power enclosure 1. - Enclosure 1 indicates the Power enclosure 2." - ::= { upsDiagPMEnclDoorFltrEntry 1 } - -upsDiagPMEnclDoorFltrLifetime OBJECT-TYPE - SYNTAX INTEGER { - heavyFiltration15days (1), - normalFiltration30days(2), - lightFiltration60days (3), - notPresent (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Door filter replacement time interval, based on the installation enivironment. - heavyFiltration15days (1) indicates door filter needs to be replaced within 15 days. - normalFiltration30days (2) indicates door filter needs to be replaced within 30 days. - lightFiltration60days (3) indicates door filter needs to be replaced within 60 days. - notPresent(4) indicates that the door filter is not present." - ::= { upsDiagPMEnclDoorFltrEntry 2 } - -upsDiagPMEnclDoorFltrStatus OBJECT-TYPE - SYNTAX INTEGER { - ok (1), - nearEnd (2), - exceeded (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the current status of the door filter. - ok(1) indicates the device lifetime status is OK. - nearEnd(2) indicates the device lifetime status is near end. - exceeded(3) indicates the device lifetime status is exceeded. - unknown(4) indicates the device lifetime status is unknown." - ::= { upsDiagPMEnclDoorFltrEntry 3 } - -upsDiagPMEnclDoorFltrEstmtdLifetimeRmng OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the time remaining, measured in days, before the module door filter should be replaced. - This value is set when you originally install the module." - ::= { upsDiagPMEnclDoorFltrEntry 4 } - -upsDiagPMEnclDoorFltrEstmtdLifetimeRmngPct OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the percentage of the total lifetime remaining for the module - door filter before it should be replaced." - ::= { upsDiagPMEnclDoorFltrEntry 5 } - - - --- the upsDiagnosticBatteries group - -upsDiagBatteryTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of batteries supported by the UPS." - ::= { upsDiagnosticBatteries 1 } - -upsDiagBatteryTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagBatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual batteries. The number of - entries is contained in the upsDiagBattTableSize OID." - ::= { upsDiagnosticBatteries 2 } - -upsDiagBatteryEntry OBJECT-TYPE - SYNTAX UpsDiagBatteryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a battery." - INDEX { upsDiagBatteryIndex} - ::= { upsDiagBatteryTable 1 } - -UpsDiagBatteryEntry ::= - SEQUENCE { - upsDiagBatteryFrameIndex INTEGER, - upsDiagBatteryIndex INTEGER, - upsDiagBatteryStatus INTEGER, - upsDiagBatterySerialNumber DisplayString, - upsDiagBatteryFirmwareRev DisplayString, - upsDiagBatteryManufactureDate DisplayString, - upsDiagBatteryType DisplayString, - upsDiagBatteryFramePresent INTEGER, - upsDiagBatteryFrameTemperature INTEGER - } - -upsDiagBatteryFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the battery frame entry. - Frame 0 indicates the Main frame. Extended Run (XR) frames - start from index 1." - ::= { upsDiagBatteryEntry 1 } - -upsDiagBatteryIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the battery entry." - ::= { upsDiagBatteryEntry 2 } - -upsDiagBatteryStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - failed (4), - highTemperature (5), - replaceImmediately (6), - lowCapacity (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the battery. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the battery status is OK. - failed(4) indicates the battery status is failed. - highTemperature(5) indicates the battery has a high temperature condition. - replaceImmediately(6) indicates the battery must be replaced immediately. - lowCapacity(7) indicates the battery has a low capacity." - ::= { upsDiagBatteryEntry 3 } - -upsDiagBatterySerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the battery." - ::= { upsDiagBatteryEntry 4 } - -upsDiagBatteryFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the battery." - ::= { upsDiagBatteryEntry 5 } - -upsDiagBatteryManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacture date of the battery." - ::= { upsDiagBatteryEntry 6 } - -upsDiagBatteryType OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery type or rating for the battery." - ::= { upsDiagBatteryEntry 7 } - - - upsDiagBatteryFramePresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent(0), - present(1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery frame/cabinet status. - 0 indicates frame/cabinet is not present. - 1 indicates frame/cabinet is present." - ::= { upsDiagBatteryEntry 8 } - - upsDiagBatteryFrameTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The battery frame/cabinet temperature in tenths of degrees celsius. - If the frame/cabinet is not present, this variable is set to (-1)." - ::= { upsDiagBatteryEntry 9 } - - --- the upsDiagnosticSubsystem group - -upsDiagSubSysFrameTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of frames attached to the UPS including the Main frame." - ::= { upsDiagnosticSubsystem 1 } - -upsDiagSubSysFrameTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysFrameEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual XR Frames." - ::= { upsDiagnosticSubsystem 2 } - -upsDiagSubSysFrameEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysFrameEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of an XR Frame." - INDEX { upsDiagSubSysFrameIndex} - ::= { upsDiagSubSysFrameTable 1 } - -UpsDiagSubSysFrameEntry ::= - SEQUENCE { - upsDiagSubSysFrameIndex INTEGER, - upsDiagSubSysFrameType INTEGER, - upsDiagSubSysFrameFirmwareRev DisplayString, - upsDiagSubSysFrameHardwareRev DisplayString, - upsDiagSubSysFrameSerialNum DisplayString, - upsDiagSubSysFrameManufactureDate DisplayString - } - -upsDiagSubSysFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysFrameEntry 1 } - -upsDiagSubSysFrameType OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - frameTypeMain (3), - frameTypeXR (4), - frameTypeLXR (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of Frame. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - frameTypeMain(3) indicates the frame type is the Main Frame. - frameTypeXR(4) indicates the frame type is an XR Frame. - frameTypeLXR(5) indicates the frame type is an LXR Frame." - ::= { upsDiagSubSysFrameEntry 2 } - -upsDiagSubSysFrameFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the frame." - ::= { upsDiagSubSysFrameEntry 3 } - -upsDiagSubSysFrameHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the frame." - ::= { upsDiagSubSysFrameEntry 4 } - -upsDiagSubSysFrameSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the frame." - ::= { upsDiagSubSysFrameEntry 5 } - -upsDiagSubSysFrameManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacture date of the frame." - ::= { upsDiagSubSysFrameEntry 6 } - -upsDiagSubSysIntBypSwitchTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Internal Bypass switches attached to the UPS." - ::= { upsDiagnosticSubsystem 3 } - -upsDiagSubSysIntBypSwitchTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysIntBypSwitchEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of the Internal Bypass Switch." - ::= { upsDiagnosticSubsystem 4 } - -upsDiagSubSysIntBypSwitchEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysIntBypSwitchEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of the Internal Bypass Switch." - INDEX { upsDiagSubSysIntBypSwitchIndex} - ::= { upsDiagSubSysIntBypSwitchTable 1 } - -UpsDiagSubSysIntBypSwitchEntry ::= - SEQUENCE { - upsDiagSubSysIntBypSwitchFrameIndex INTEGER, - upsDiagSubSysIntBypSwitchIndex INTEGER, - upsDiagSubSysIntBypSwitchStatus INTEGER, - upsDiagSubSysIntBypSwitchFirmwareRev DisplayString, - upsDiagSubSysIntBypSwitchHardwareRev DisplayString, - upsDiagSubSysIntBypSwitchSerialNum DisplayString, - upsDiagSubSysIntBypSwitchManufactureDate DisplayString - } - -upsDiagSubSysIntBypSwitchFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysIntBypSwitchEntry 1 } - -upsDiagSubSysIntBypSwitchIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Internal Bypass Switch index entry." - ::= { upsDiagSubSysIntBypSwitchEntry 2 } - -upsDiagSubSysIntBypSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Internal Bypass Switch status. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysIntBypSwitchEntry 3 } - -upsDiagSubSysIntBypSwitchFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Internal Bypass Switch." - ::= { upsDiagSubSysIntBypSwitchEntry 4 } - -upsDiagSubSysIntBypSwitchHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Internal Bypass Switch." - ::= { upsDiagSubSysIntBypSwitchEntry 5 } - -upsDiagSubSysIntBypSwitchSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Internal Bypass Switch." - ::= { upsDiagSubSysIntBypSwitchEntry 6 } - -upsDiagSubSysIntBypSwitchManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The manufacture date of the Internal Bypass Switch." - ::= { upsDiagSubSysIntBypSwitchEntry 7 } - -upsDiagSubSysBattMonitorTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Battery Monitor Boards attached to the UPS." - ::= { upsDiagnosticSubsystem 5 } - -upsDiagSubSysBattMonitorTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysBattMonitorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of the Battery Monitor Board." - ::= { upsDiagnosticSubsystem 6 } - -upsDiagSubSysBattMonitorEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysBattMonitorEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of the Battery Monitor Board." - INDEX { upsDiagSubSysBattMonitorIndex} - ::= { upsDiagSubSysBattMonitorTable 1 } - -UpsDiagSubSysBattMonitorEntry ::= - SEQUENCE { - upsDiagSubSysBattMonitorFrameIndex INTEGER, - upsDiagSubSysBattMonitorIndex INTEGER, - upsDiagSubSysBattMonitorStatus INTEGER, - upsDiagSubSysBattMonitorFirmwareRev DisplayString, - upsDiagSubSysBattMonitorHardwareRev DisplayString, - upsDiagSubSysBattMonitorSerialNum DisplayString, - upsDiagSubSysBattMonitorManufactureDate DisplayString - } - -upsDiagSubSysBattMonitorFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysBattMonitorEntry 1 } - -upsDiagSubSysBattMonitorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the Battery Monitor Board." - ::= { upsDiagSubSysBattMonitorEntry 2 } - -upsDiagSubSysBattMonitorStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Battery Monitor Board. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysBattMonitorEntry 3 } - -upsDiagSubSysBattMonitorFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Battery Monitor Board." - ::= { upsDiagSubSysBattMonitorEntry 4 } - -upsDiagSubSysBattMonitorHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Battery Monitor Board." - ::= { upsDiagSubSysBattMonitorEntry 5 } - -upsDiagSubSysBattMonitorSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Battery Monitor Board." - ::= { upsDiagSubSysBattMonitorEntry 6 } - -upsDiagSubSysBattMonitorManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the manufacture for the Battery Monitor Board." - ::= { upsDiagSubSysBattMonitorEntry 7 } - -upsDiagSubSysExternalSwitchGearTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of External Switch Gears attached to the UPS." - ::= { upsDiagnosticSubsystem 7 } - -upsDiagSubSysExternalSwitchGearTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysExternalSwitchGearEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of the individual External Switch Gear." - ::= { upsDiagnosticSubsystem 8 } - -upsDiagSubSysExternalSwitchGearEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysExternalSwitchGearEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of an individual External Switch Gear." - INDEX { upsDiagSubSysExternalSwitchGearIndex} - ::= { upsDiagSubSysExternalSwitchGearTable 1 } - -UpsDiagSubSysExternalSwitchGearEntry ::= - SEQUENCE { - upsDiagSubSysExternalSwitchGearFrameIndex INTEGER, - upsDiagSubSysExternalSwitchGearIndex INTEGER, - upsDiagSubSysExternalSwitchGearStatus INTEGER, - upsDiagSubSysExternalSwitchGearFirmwareRev DisplayString, - upsDiagSubSysExternalSwitchGearHardwareRev DisplayString, - upsDiagSubSysExternalSwitchGearSerialNum DisplayString, - upsDiagSubSysExternalSwitchGearManufactureDate DisplayString - } - -upsDiagSubSysExternalSwitchGearFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysExternalSwitchGearEntry 1 } - -upsDiagSubSysExternalSwitchGearIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the External Switch Gear." - ::= { upsDiagSubSysExternalSwitchGearEntry 2 } - -upsDiagSubSysExternalSwitchGearStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the External Switch Gear. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysExternalSwitchGearEntry 3 } - -upsDiagSubSysExternalSwitchGearFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the External Switch Gear monitor card." - ::= { upsDiagSubSysExternalSwitchGearEntry 4 } - -upsDiagSubSysExternalSwitchGearHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the External Switch Gear monitor card." - ::= { upsDiagSubSysExternalSwitchGearEntry 5 } - -upsDiagSubSysExternalSwitchGearSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the External Switch Gear monitor card." - ::= { upsDiagSubSysExternalSwitchGearEntry 6 } - -upsDiagSubSysExternalSwitchGearManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the manufacture for the External Switch Gear monitor card." - ::= { upsDiagSubSysExternalSwitchGearEntry 7 } - -upsDiagSubSysDisplayInterfaceCardTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Display Interface Cards attached to the UPS." - ::= { upsDiagnosticSubsystem 9 } - -upsDiagSubSysDisplayInterfaceCardTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysDisplayInterfaceCardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual Display Interface Cards." - ::= { upsDiagnosticSubsystem 10 } - -upsDiagSubSysDisplayInterfaceCardEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysDisplayInterfaceCardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a Display Interface Card." - INDEX { upsDiagSubSysDisplayInterfaceCardIndex} - ::= { upsDiagSubSysDisplayInterfaceCardTable 1 } - -UpsDiagSubSysDisplayInterfaceCardEntry ::= - SEQUENCE { - upsDiagSubSysDisplayInterfaceCardFrameIndex INTEGER, - upsDiagSubSysDisplayInterfaceCardIndex INTEGER, - upsDiagSubSysDisplayInterfaceCardStatus INTEGER - } - -upsDiagSubSysDisplayInterfaceCardFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysDisplayInterfaceCardEntry 1 } - -upsDiagSubSysDisplayInterfaceCardIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the Display Interface Card." - ::= { upsDiagSubSysDisplayInterfaceCardEntry 2 } - -upsDiagSubSysDisplayInterfaceCardStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Display Interface Card. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysDisplayInterfaceCardEntry 3 } - -upsDiagSubSysDCCircuitBreakerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC Circuit Breakers attached to the UPS." - ::= { upsDiagnosticSubsystem 11 } - -upsDiagSubSysDCCircuitBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysDCCircuitBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual DC Circuit Breakers." - ::= { upsDiagnosticSubsystem 12 } - -upsDiagSubSysDCCircuitBreakerEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysDCCircuitBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a DC Circuit Breaker." - INDEX { upsDiagSubSysDCCircuitBreakerIndex} - ::= { upsDiagSubSysDCCircuitBreakerTable 1 } - -UpsDiagSubSysDCCircuitBreakerEntry ::= - SEQUENCE { - upsDiagSubSysDCCircuitBreakerFrameIndex INTEGER, - upsDiagSubSysDCCircuitBreakerIndex INTEGER, - upsDiagSubSysDCCircuitBreakerStatus INTEGER - } - -upsDiagSubSysDCCircuitBreakerFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysDCCircuitBreakerEntry 1 } - -upsDiagSubSysDCCircuitBreakerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the DC Circuit Breaker." - ::= { upsDiagSubSysDCCircuitBreakerEntry 2 } - -upsDiagSubSysDCCircuitBreakerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the DC Circuit Breaker. - unknown(1) indicates the circuit breaker status is unknown. - notInstalled(2) indicates the circuit breaker is not installed. - opened(3) indicates the circuit breaker is opened. - closed(4) indicates the circuit breaker is closed." - ::= { upsDiagSubSysDCCircuitBreakerEntry 3 } - -upsDiagSubSysSystemPowerSupplyTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of System Power Supplies attached to the UPS." - ::= { upsDiagnosticSubsystem 13 } - -upsDiagSubSysSystemPowerSupplyTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysSystemPowerSupplyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual System Power Supplies." - ::= { upsDiagnosticSubsystem 14 } - -upsDiagSubSysSystemPowerSupplyEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysSystemPowerSupplyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a System Power Supply." - INDEX { upsDiagSubSysSystemPowerSupplyIndex} - ::= { upsDiagSubSysSystemPowerSupplyTable 1 } - -UpsDiagSubSysSystemPowerSupplyEntry ::= - SEQUENCE { - upsDiagSubSysSystemPowerSupplyFrameIndex INTEGER, - upsDiagSubSysSystemPowerSupplyIndex INTEGER, - upsDiagSubSysSystemPowerSupplyStatus INTEGER, - upsDiagSubSysSystemPowerSupplyFirmwareRev DisplayString, - upsDiagSubSysSystemPowerSupplyHardwareRev DisplayString, - upsDiagSubSysSystemPowerSupplySerialNum DisplayString, - upsDiagSubSysSystemPowerSupplyManufactureDate DisplayString - } - -upsDiagSubSysSystemPowerSupplyFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysSystemPowerSupplyEntry 1 } - -upsDiagSubSysSystemPowerSupplyIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of a System Power Supply." - ::= { upsDiagSubSysSystemPowerSupplyEntry 2 } - -upsDiagSubSysSystemPowerSupplyStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the System Power Supply. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysSystemPowerSupplyEntry 3 } - -upsDiagSubSysSystemPowerSupplyFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the System Power Supply monitor card." - ::= { upsDiagSubSysSystemPowerSupplyEntry 4 } - -upsDiagSubSysSystemPowerSupplyHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the System Power Supply monitor card." - ::= { upsDiagSubSysSystemPowerSupplyEntry 5 } - -upsDiagSubSysSystemPowerSupplySerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the System Power Supply monitor card." - ::= { upsDiagSubSysSystemPowerSupplyEntry 6 } - -upsDiagSubSysSystemPowerSupplyManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the manufacture for the System Power Supply monitor card." - ::= { upsDiagSubSysSystemPowerSupplyEntry 7 } - -upsDiagSubSysXRCommunicationCardTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of XR Communication Cards attached to the UPS." - ::= { upsDiagnosticSubsystem 15 } - -upsDiagSubSysXRCommunicationCardTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysXRCommunicationCardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual XR Communication Cards." - ::= { upsDiagnosticSubsystem 16 } - -upsDiagSubSysXRCommunicationCardEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysXRCommunicationCardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of an XR Communication Card." - INDEX { upsDiagSubSysXRCommunicationCardIndex} - ::= { upsDiagSubSysXRCommunicationCardTable 1 } - -UpsDiagSubSysXRCommunicationCardEntry ::= - SEQUENCE { - upsDiagSubSysXRCommunicationCardFrameIndex INTEGER, - upsDiagSubSysXRCommunicationCardIndex INTEGER, - upsDiagSubSysXRCommunicationCardStatus INTEGER, - upsDiagSubSysXRCommunicationCardFirmwareRev DisplayString, - upsDiagSubSysXRCommunicationCardSerialNum DisplayString - - } - -upsDiagSubSysXRCommunicationCardFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysXRCommunicationCardEntry 1 } - -upsDiagSubSysXRCommunicationCardIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an XR Communication Card." - ::= { upsDiagSubSysXRCommunicationCardEntry 2 } - -upsDiagSubSysXRCommunicationCardStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the XR Communication Card. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysXRCommunicationCardEntry 3 } - -upsDiagSubSysXRCommunicationCardFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the XR Communication card." - ::= { upsDiagSubSysXRCommunicationCardEntry 4 } - -upsDiagSubSysXRCommunicationCardSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the XR Communication card." - ::= { upsDiagSubSysXRCommunicationCardEntry 5 } - -upsDiagSubSysExternalPowerFrameBoardTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of External Power Frame Boards attached to the UPS." - ::= { upsDiagnosticSubsystem 17 } - -upsDiagSubSysExternalPowerFrameBoardTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysExternalPowerFrameBoardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual External Power Frame Boards." - ::= { upsDiagnosticSubsystem 18 } - -upsDiagSubSysExternalPowerFrameBoardEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysExternalPowerFrameBoardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of an External Power Frame Board." - INDEX { upsDiagSubSysExternalPowerFrameBoardIndex} - ::= { upsDiagSubSysExternalPowerFrameBoardTable 1 } - -UpsDiagSubSysExternalPowerFrameBoardEntry ::= - SEQUENCE { - upsDiagSubSysExternalPowerFrameBoardFrameIndex INTEGER, - upsDiagSubSysExternalPowerFrameBoardIndex INTEGER, - upsDiagSubSysExternalPowerFrameBoardStatus INTEGER - } - -upsDiagSubSysExternalPowerFrameBoardFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysExternalPowerFrameBoardEntry 1 } - -upsDiagSubSysExternalPowerFrameBoardIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an External Power Frame Board." - ::= { upsDiagSubSysExternalPowerFrameBoardEntry 2 } - -upsDiagSubSysExternalPowerFrameBoardStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the External Power Frame Board. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysExternalPowerFrameBoardEntry 3 } - -upsDiagSubSysChargerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Chargers attached to the UPS." - ::= { upsDiagnosticSubsystem 19 } - - upsDiagSubSysChargerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysChargerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual chargers." - ::= { upsDiagnosticSubsystem 20 } - -upsDiagSubSysChargerEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysChargerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a charger." - INDEX { upsDiagSubSysChargerIndex} - ::= { upsDiagSubSysChargerTable 1 } - -UpsDiagSubSysChargerEntry ::= - SEQUENCE { - upsDiagSubSysChargerFrameIndex INTEGER, - upsDiagSubSysChargerIndex INTEGER, - upsDiagSubSysChargerStatus INTEGER - } - -upsDiagSubSysChargerFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysChargerEntry 1 } - -upsDiagSubSysChargerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of a charger." - ::= { upsDiagSubSysChargerEntry 2 } - -upsDiagSubSysChargerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Charger. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysChargerEntry 3 } - -upsDiagSubSysInverterTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Inverters attached to the UPS." - ::= { upsDiagnosticSubsystem 21 } - -upsDiagSubSysInverterTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysInverterEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual Inverters." - ::= { upsDiagnosticSubsystem 22 } - -upsDiagSubSysInverterEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysInverterEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of an Inverter." - INDEX { upsDiagSubSysInverterIndex} - ::= { upsDiagSubSysInverterTable 1 } - -UpsDiagSubSysInverterEntry ::= - SEQUENCE { - upsDiagSubSysInverterFrameIndex INTEGER, - upsDiagSubSysInverterIndex INTEGER, - upsDiagSubSysInverterStatus INTEGER, - upsDiagSubSysInverterFirmwareRev DisplayString, - upsDiagSubSysInverterHardwareRev DisplayString, - upsDiagSubSysInverterSerialNum DisplayString, - upsDiagSubSysInverterManufactureDate DisplayString - } - -upsDiagSubSysInverterFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysInverterEntry 1 } - -upsDiagSubSysInverterIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an Inverter." - ::= { upsDiagSubSysInverterEntry 2 } - -upsDiagSubSysInverterStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Inverter. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysInverterEntry 3 } - -upsDiagSubSysInverterFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Inverter monitor." - ::= { upsDiagSubSysInverterEntry 4 } - -upsDiagSubSysInverterHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Inverter monitor." - ::= { upsDiagSubSysInverterEntry 5 } - -upsDiagSubSysInverterSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Inverter monitor." - ::= { upsDiagSubSysInverterEntry 6 } - -upsDiagSubSysInverterManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of manufacture for the Inverter monitor." - ::= { upsDiagSubSysInverterEntry 7 } - -upsDiagSubSysPowerFactorCorrectionTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Power Factor Correction devices attached to the UPS." - ::= { upsDiagnosticSubsystem 23 } - -upsDiagSubSysPowerFactorCorrectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysPowerFactorCorrectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual PowerFactorCorrections." - ::= { upsDiagnosticSubsystem 24 } - -upsDiagSubSysPowerFactorCorrectionEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysPowerFactorCorrectionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a Power Factor Correction." - INDEX { upsDiagSubSysPowerFactorCorrectionIndex} - ::= { upsDiagSubSysPowerFactorCorrectionTable 1 } - -UpsDiagSubSysPowerFactorCorrectionEntry ::= - SEQUENCE { - upsDiagSubSysPowerFactorCorrectionFrameIndex INTEGER, - upsDiagSubSysPowerFactorCorrectionIndex INTEGER, - upsDiagSubSysPowerFactorCorrectionStatus INTEGER, - upsDiagSubSysPowerFactorCorrectionFirmwareRev DisplayString, - upsDiagSubSysPowerFactorCorrectionHardwareRev DisplayString, - upsDiagSubSysPowerFactorCorrectionSerialNum DisplayString, - upsDiagSubSysPowerFactorCorrectionManufactureDate DisplayString - } - -upsDiagSubSysPowerFactorCorrectionFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frame index entry." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 1 } - -upsDiagSubSysPowerFactorCorrectionIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of a Power Factor Correction." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 2 } - -upsDiagSubSysPowerFactorCorrectionStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - offOk (3), - onOk (4), - offFail (5), - onFail (6), - lostComm (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Power Factor Correction. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - offOk(3) indicates the device status is off and OK. - onOk(4) indicates the device status is on and OK. - offFail(5) indicates the device status is off and failed. - onFail(6) indicates the device status is on and failed. - lostComm(7) indicates the device has lost communication." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 3 } - -upsDiagSubSysPowerFactorCorrectionFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Power Factor Correction monitor." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 4 } - -upsDiagSubSysPowerFactorCorrectionHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Power Factor Correction monitor." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 5 } - -upsDiagSubSysPowerFactorCorrectionSerialNum OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the Power Factor Correction monitor." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 6 } - -upsDiagSubSysPowerFactorCorrectionManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of the manufacture for the Power Factor Correction monitor." - ::= { upsDiagSubSysPowerFactorCorrectionEntry 7 } - -upsDiagSubSysNetworkComCardTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Network Communication Cards attached to the UPS." - ::= { upsDiagnosticSubsystem 25 } - -upsDiagSubSysNetworkComCardTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubSysNetworkComCardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting diagnostics information of an individual Network Communication Card." - ::= { upsDiagnosticSubsystem 26 } - -upsDiagSubSysNetworkComCardEntry OBJECT-TYPE - SYNTAX UpsDiagSubSysNetworkComCardEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a Network Communication Card." - INDEX { upsDiagSubSysNetworkComCardIndex} - ::= { upsDiagSubSysNetworkComCardTable 1 } - -UpsDiagSubSysNetworkComCardEntry ::= - SEQUENCE { - upsDiagSubSysNetworkComCardIndex INTEGER, - upsDiagSubSysNetworkComCardModelNumber DisplayString, - upsDiagSubSysNetworkComCardSerialNumber DisplayString, - upsDiagSubSysNetworkComCardDateOfManufacture DisplayString, - upsDiagSubSysNetworkComCardHardwareRev DisplayString, - upsDiagSubSysNetworkComCardFirmwareAppRev DisplayString, - upsDiagSubSysNetworkComCardFirmwareAppOSRev DisplayString - } - -upsDiagSubSysNetworkComCardIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS network and display interface communication card index entry." - ::= { upsDiagSubSysNetworkComCardEntry 1 } - -upsDiagSubSysNetworkComCardModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the model number of the UPS network and display interface communication card. - This value is set at the factory." - ::= { upsDiagSubSysNetworkComCardEntry 2 } - -upsDiagSubSysNetworkComCardSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of the UPS network and display interface communication card. - This value is set at the factory." - ::= { upsDiagSubSysNetworkComCardEntry 3 } - -upsDiagSubSysNetworkComCardDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the UPS network and display interface communication card was manufactured in mm/dd/yyyy format. - This value is set at the factory." - ::= { upsDiagSubSysNetworkComCardEntry 4 } - -upsDiagSubSysNetworkComCardHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the UPS network and display interface communication card. - This value is set at the factory." - ::= { upsDiagSubSysNetworkComCardEntry 5 } - -upsDiagSubSysNetworkComCardFirmwareAppRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application firmware revision of the - UPS network and display interface communication card." - ::= { upsDiagSubSysNetworkComCardEntry 6 } - -upsDiagSubSysNetworkComCardFirmwareAppOSRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application operating system firmware revision of the - UPS network and display interface communication card." - ::= { upsDiagSubSysNetworkComCardEntry 7 } - - --- the upsDiagnosticExternalDevices group - -upsDiagSwitchGearStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - fail (4), - lostComm (5), - overtemp (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Switch Gear. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - fail(4) indicates the device status has failed. - lostComm(5) indicates the device has lost communication. - overtemp(6) indicates the device has an over temperature condition." - ::= { upsDiagSwitchGear 1 } - -upsDiagSwitchGearInputSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Switch Gear Input Switch. - unknown(1) indicates the switch status is unknown. - notInstalled(2) indicates the switch is not installed. - opened(3) indicates the switch is opened. - closed(4) indicates the switch is closed." - ::= { upsDiagSwitchGear 2 } - -upsDiagSwitchGearOutputSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Switch Gear Output Switch. - unknown(1) indicates the switch status is unknown. - notInstalled(2) indicates the switch is not installed. - opened(3) indicates the switch is opened. - closed(4) indicates the switch is closed." - ::= { upsDiagSwitchGear 3 } - -upsDiagSwitchGearBypassSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Switch Gear Bypass Switch. - unknown(1) indicates the switch status is unknown. - notInstalled(2) indicates the switch is not installed. - opened(3) indicates the switch is opened. - closed(4) indicates the switch is closed." - ::= { upsDiagSwitchGear 4 } - -upsDiagSwitchGearBypassInputSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Switch Gear Bypass Input Switch. - unknown(1) indicates the switch status is unknown. - notInstalled(2) indicates the switch is not installed. - opened(3) indicates the switch is opened. - closed(4) indicates the switch is closed." - ::= { upsDiagSwitchGear 5 } - -upsDiagSwitchGearBreakerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of switchgear breakers attached to the UPS." - ::= { upsDiagSwitchGear 6 } - -upsDiagSwitchGearBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSwitchGearBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Switchgear breaker table." - ::= { upsDiagSwitchGear 7 } - - upsDiagSwitchGearBreakerEntry OBJECT-TYPE - SYNTAX UpsDiagSwitchGearBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of switchgear breakers." - INDEX { switchgearBreakerIndex } - ::= { upsDiagSwitchGearBreakerTable 1 } - - UpsDiagSwitchGearBreakerEntry ::= - SEQUENCE { - switchgearBreakerIndex - INTEGER, - switchgearBreakerPresent - INTEGER, - switchgearBreakerName - DisplayString, - switchgearBreakerType - INTEGER, - switchgearBreakerStatus - INTEGER - } - - switchgearBreakerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the switchgear breaker." - ::= { upsDiagSwitchGearBreakerEntry 1 } - - switchgearBreakerPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent(1), - present(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the switchgear breaker is present. - notPresent(1) indicates that the breaker is not present. - present(2) indicates that the breaker is present." - ::= { upsDiagSwitchGearBreakerEntry 2 } - - switchgearBreakerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the switchgear breaker." - ::= { upsDiagSwitchGearBreakerEntry 3 } - - - switchgearBreakerType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - unitInputBreaker(2), - staticSwitchInputBreaker(3), - maintenanceBypassBreaker(4), - unitOutputBreaker(5), - systemIsolationBreaker(6), - batteryBreaker(7), - bypassBackFeedBreaker(8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the switchgear breaker types available in the UPS system. - If the UPS is unable to find any attached breakers, this variable - is set to unknown(1)." - ::= { upsDiagSwitchGearBreakerEntry 4 } - - switchgearBreakerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - opened(2), - closed(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of switchgear breaker. - unknown(1) indicates the breaker status is unknown. - opened (2) indicates the breaker is opened. - closed (3) indicates the breaker is closed." - ::= { upsDiagSwitchGearBreakerEntry 5 } - - - -upsDiagSubFeedBreakerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of subfeed breakers attached to the UPS." - ::= { upsDiagSwitchGear 8 } - -upsDiagSubFeedBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagSubFeedBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Subfeed breaker table." - ::= { upsDiagSwitchGear 9 } - - upsDiagSubFeedBreakerEntry OBJECT-TYPE - SYNTAX UpsDiagSubFeedBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of subfeed breakers." - INDEX { subfeedBreakerIndex } - ::= { upsDiagSubFeedBreakerTable 1 } - - UpsDiagSubFeedBreakerEntry ::= - SEQUENCE { - subfeedBreakerIndex - INTEGER, - subfeedBreakerPresent - INTEGER, - subfeedBreakerRating - INTEGER, - subfeedBreakerUpperAcceptPowerWarning - INTEGER, - subfeedBreakerUpperAcceptPowerCritical - INTEGER, - subfeedBreakerStatus - INTEGER, - subfeedBreakerName - DisplayString - } - - subfeedBreakerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the subfeed breakers." - ::= { upsDiagSubFeedBreakerEntry 1 } - - subfeedBreakerPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the subfeed breaker is present. - notPresent (1) indicates that the breaker is not present. - present (2) indicates that the breaker is present." - ::= { upsDiagSubFeedBreakerEntry 2 } - - subfeedBreakerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current rating of the installed subfeed breaker." - ::= { upsDiagSubFeedBreakerEntry 3 } - - subfeedBreakerUpperAcceptPowerWarning OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum acceptable load before warning is issued. - Expressed as percent of the subfeed breaker rating." - ::= { upsDiagSubFeedBreakerEntry 4 } - - - - subfeedBreakerUpperAcceptPowerCritical OBJECT-TYPE - SYNTAX INTEGER (0..125) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum load before a critical alarm occurs. - Expressed as percent of the subfeed breaker rating." - ::= { upsDiagSubFeedBreakerEntry 5 } - - subfeedBreakerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Circuit Breaker. - unknown(1) indicates the circuit breaker status is unknown. - notInstalled(2) indicates the circuit breaker is not installed. - opened(3) indicates the circuit breaker is opened. - closed(4) indicates the circuit breaker is closed." - ::= { upsDiagSubFeedBreakerEntry 6 } - - subfeedBreakerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the subfeed breaker." - ::= { upsDiagSubFeedBreakerEntry 7} - -upsDiagSwitchGearInstallationLoadPct OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual output load expressed as a percentage of the rating of the UPS." - ::= { upsDiagSwitchGear 10 } - - - upsDiagSubFeedPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UPSDiagSubFeedPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of subfeed phase table." - ::= { upsDiagSwitchGear 11 } - - upsDiagSubFeedPhaseEntry OBJECT-TYPE - SYNTAX UPSDiagSubFeedPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular phase." - INDEX { upsDiagSubFeedPhaseIndex } - ::= { upsDiagSubFeedPhaseTable 1 } - - UPSDiagSubFeedPhaseEntry ::= SEQUENCE { - upsDiagSubFeedBreakerIndex INTEGER, - upsDiagSubFeedPhaseIndex INTEGER, - upsDiagSubFeedPhaseCurrent INTEGER, - upsDiagSubFeedPhaseCurrentAlternate INTEGER - } - - upsDiagSubFeedBreakerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The subfeed breaker index." - ::= { upsDiagSubFeedPhaseEntry 1 } - - upsDiagSubFeedPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The subfeed phase index." - ::= { upsDiagSubFeedPhaseEntry 2 } - - upsDiagSubFeedPhaseCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The subfeed phase current in Amps." - ::= { upsDiagSubFeedPhaseEntry 3 } - - upsDiagSubFeedPhaseCurrentAlternate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The subfeed phase current in tenths of Amps." - ::= { upsDiagSubFeedPhaseEntry 4 } - - -upsDiagSwitchgearSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the UPS I/O Cabinet." - ::= { upsDiagSwitchGear 12 } - -upsDiagSwitchgearAmbientTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ambient temperature of I/O Cabinet in tenths of degrees Celsius." - ::= { upsDiagSwitchGear 13 } - - -upsDiagMCCBBoxStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the MCCB Box (Molded Case Circuit Breaker Box) external device. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - opened(3) indicates the circuit is opened. - closed(4) indicates the circuit is closed." - ::= { upsDiagMCCBBox 1 } - -upsDiagTransformerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - fail (4), - lostComm (5), - overtemp (6), - opened (7), - closed (8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the External Transformer. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - fail(4) indicates the device status has failed. - lostComm(5) indicates the device has lost communication. - overtemp(6) indicates the device has an over temperature condition. - opened(7) indicates the circuit is opened. - closed(8) indicates the circuit is closed." - ::= { upsDiagTransformer 1 } - - - upsDiagFlyWheelStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - present(2), - notPresent(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the status of flywheel connected to UPS. If the UPS - is unable to determine the state of flywheel, this variable is - set to unknown(1)." - ::= { upsDiagFlyWheel 1 } - - - - --- the upsDiagnosticComBus group - -upsDiagComBusInternalMIMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - lostComm (4), - rxFailure (5), - txFailure (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the internal MIM communication bus. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - lostComm(4) indicates the device has lost communication. - rxFailure(5) indicates the device has a receive failure. - txFailure(6) indicates the device has a transmit failure." - ::= { upsDiagnosticComBus 1 } - -upsDiagComBusInternalRIMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - lostComm (4), - rxFailure (5), - txFailure (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the internal RIM communication bus. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - lostComm(4) indicates the device has lost communication. - rxFailure(5) indicates the device has a receive failure. - txFailure(6) indicates the device has a transmit failure." - ::= { upsDiagnosticComBus 2 } - -upsDiagComBusMIMtoRIMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - lostComm (4), - rxFailure (5), - txFailure (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the MIM to RIM communication bus. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - lostComm(4) indicates the device has lost communication. - rxFailure(5) indicates the device has a receive failure. - txFailure(6) indicates the device has a transmit failure." - ::= { upsDiagnosticComBus 3 } - -upsDiagComBusExternalMIMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - lostComm (4), - rxFailure (5), - txFailure (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the external MIM communication bus. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - lostComm(4) indicates the device has lost communication. - rxFailure(5) indicates the device has a receive failure. - txFailure(6) indicates the device has a transmit failure." - ::= { upsDiagnosticComBus 4 } - -upsDiagComBusExternalRIMStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - ok (3), - lostComm (4), - rxFailure (5), - txFailure (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the external RIM communication bus. - unknown(1) indicates the device status is unknown. - notInstalled(2) indicates the device is not installed. - ok(3) indicates the device status is OK. - lostComm(4) indicates the device has lost communication. - rxFailure(5) indicates the device has a receive failure. - txFailure(6) indicates the device has a transmit failure." - ::= { upsDiagnosticComBus 5 } - --- the upsDiagnosticPowerCabinet group -upsDiagnosticPowerCabinetTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of Power Cabinets supported by the UPS." - ::= { upsDiagnosticPowerCabinet 1 } - -upsDiagnosticPowerCabinetTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDiagnosticPowerCabinetEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of individual Power Cabinets. - The number of entries is contained in the upsDiagnosticPowerCabinetTableSize OID." - ::= { upsDiagnosticPowerCabinet 2 } - -upsDiagnosticPowerCabinetEntry OBJECT-TYPE - SYNTAX UpsDiagnosticPowerCabinetEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of a Power Cabinet." - INDEX { upsDiagnosticPowerCabinetIndex} - ::= { upsDiagnosticPowerCabinetTable 1 } - -UpsDiagnosticPowerCabinetEntry ::= - SEQUENCE { - upsDiagnosticPowerCabinetIndex INTEGER, - upsDiagnosticPowerCabinetAmbientTemperature INTEGER - } - -upsDiagnosticPowerCabinetIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Power Cabinet." - ::= { upsDiagnosticPowerCabinetEntry 1 } - -upsDiagnosticPowerCabinetAmbientTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ambient temperature of Power Cabinet in tenths of degrees Celsius. - If the Power Cabinet is not present, this variable is set to (-1)." - ::= { upsDiagnosticPowerCabinetEntry 2 } - - --- the upsParallelSystem group - -upsParallelSysLocalAddress OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Defines the UPS ID number in the parallel system." - ::= { upsParallelSystem 1 } - -upsParallelSysRemoteAddress OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Defines the total number of UPSs in parallel." - ::= { upsParallelSystem 2 } - -upsParallelSysRedundancy OBJECT-TYPE - SYNTAX INTEGER { - nplus0 (1), - nplus1 (2), - nplus2 (3), - nplus3 (4), - nplus4 (5), - nplus5 (6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The redundancy warning level for paralleled UPS - nplus0 (1) indicates that there are no redundant units. - nplus1 (2) indicates that there is one redundant unit. - nplus2 (3) indicates that there are two redundant units. - nplus3 (4) indicates that there are three redundant units. - nplus4 (5) indicates that there are four redundant unit. - nplus5 (6) indicates that there are five redundant units." - ::= { upsParallelSystem 3 } - - -upsParallelInputMaximumCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Maximum input RMS current of the parallel system - measured in Amperes." - ::= { upsParallelSystem 4 } - -upsParallelTotalOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Total Ouptut power of UPS in KW - when UPS are configured in parallel - or -1 if it's unsupported by this UPS." - ::= { upsParallelSystem 5 } - -upsParallelTotalOutputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Total Ouptut Apparent power of UPS in kVA - when UPS are configured in parallel - or -1 if it's unsupported by this UPS." - ::= { upsParallelSystem 6 } - --- Parallel Input Phase Table - - upsParallelInputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsParallelInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries." - ::= { upsParallelSystem 7 } - - upsParallelInputPhaseEntry OBJECT-TYPE - SYNTAX UpsParallelInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input phase." - INDEX { upsParallelInputPhaseTableIndex, upsParallelInputPhaseIndex } - ::= { upsParallelInputPhaseTable 1 } - - UpsParallelInputPhaseEntry ::= SEQUENCE { - upsParallelInputPhaseTableIndex INTEGER, - upsParallelInputPhaseIndex INTEGER, - upsParallelInputCurrent INTEGER, - upsParallelInputActivePower INTEGER, - upsParallelInputApparentPower INTEGER, - upsParallelInputVoltage INTEGER, - upsParallelInputMaxVoltage INTEGER, - upsParallelInputMaxCurrent INTEGER, - upsParallelInputTotalActivePower INTEGER, - upsParallelInputTotalApparentPower INTEGER - } - - upsParallelInputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The parallel unit identifier." - ::= { upsParallelInputPhaseEntry 1 } - - upsParallelInputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase identifier." - ::= { upsParallelInputPhaseEntry 2 } - - - upsParallelInputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input current in amperes, or -1 if it's - unsupported by this UPS." - ::= { upsParallelInputPhaseEntry 3 } - - upsParallelInputActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input power in kW, or -1 if it's - unsupported by this UPS." - ::= { upsParallelInputPhaseEntry 4 } - - upsParallelInputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input apparent power in kVA, or -1 if it's - unsupported by this UPS." - ::= { upsParallelInputPhaseEntry 5 } - - upsParallelInputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input voltage of UPS in volts, or -1 if it's - unsupported by this UPS." - ::= { upsParallelInputPhaseEntry 6 } - - upsParallelInputMaxVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The peak input voltage in VAC measured since the last reset, - or -1 if it's unsupported by this UPS." - ::= { upsParallelInputPhaseEntry 7 } - - upsParallelInputMaxCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The peak input current in amperes measured since last reset, - or -1 if it's unsupported by this UPS." - ::= { upsParallelInputPhaseEntry 8 } - - upsParallelInputTotalActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total active input power of the parallel system in kW." - ::= { upsParallelInputPhaseEntry 9 } - - upsParallelInputTotalApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total apparent input power of the parallel system in kVA." - ::= { upsParallelInputPhaseEntry 10 } - - --- Parallel Output Phase Table - - upsParallelOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsParallelOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of - entries is given by the sum of the upsPhaseNumOutputPhases." - ::= { upsParallelSystem 8 } - - upsParallelOutputPhaseEntry OBJECT-TYPE - SYNTAX UpsParallelOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output phase." - INDEX { upsParallelOutputPhaseTableIndex, upsParallelOutputPhaseIndex } - ::= { upsParallelOutputPhaseTable 1 } - - UpsParallelOutputPhaseEntry ::= SEQUENCE { - upsParallelOutputPhaseTableIndex INTEGER, - upsParallelOutputPhaseIndex INTEGER, - upsParallelOutputCurrent INTEGER, - upsParallelOutputLoad INTEGER, - upsParallelOutputPercentLoad INTEGER, - upsParallelOutputPower INTEGER - } - - upsParallelOutputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { upsParallelOutputPhaseEntry 1 } - - upsParallelOutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output phase identifier." - ::= { upsParallelOutputPhaseEntry 2 } - - upsParallelOutputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current in amperes drawn - by the load on the UPS, or -1 if it's unsupported - by this UPS." - ::= { upsParallelOutputPhaseEntry 3 } - - upsParallelOutputLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output load in VA, or -1 if it's unsupported - by this UPS." - ::= { upsParallelOutputPhaseEntry 4 } - - upsParallelOutputPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the UPS load capacity in VA at - present redundancy being used on this output phase, - or -1 if it's unsupported by this UPS." - ::= { upsParallelOutputPhaseEntry 5 } - - upsParallelOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output power in Watts, or -1 if it's - unsupported by this UPS." - ::= { upsParallelOutputPhaseEntry 6 } - - -- Parallel Output Apparent Power Table - - upsParallelOutputApparentPowerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsParallelOutputApparentPowerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of entries - is given by the value of upsOutputNumPhases." - ::= { upsParallelSystem 9 } - - upsParallelOutputApparentPowerEntry OBJECT-TYPE - SYNTAX UpsParallelOutputApparentPowerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { upsParallelOutputApparentPowerTableIndex } - ::= { upsParallelOutputApparentPowerTable 1 } - - UpsParallelOutputApparentPowerEntry ::= SEQUENCE { - upsParallelOutputApparentPowerTableIndex INTEGER, - upsParallelOutputApparentPower INTEGER - } - - upsParallelOutputApparentPowerTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS parallel output identifier." - ::= { upsParallelOutputApparentPowerEntry 1 } - - upsParallelOutputApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The apparent power of each of UPS in kVA - when UPS are configured in parallel." - ::= { upsParallelOutputApparentPowerEntry 2 } - - -upsParallelDiagSubSysBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsParallelDiagSubSysBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for diagnostics of parallel Circuit Breakers." - ::= { upsParallelSystem 10 } - -upsParallelDiagSubSysBreakerEntry OBJECT-TYPE - SYNTAX UpsParallelDiagSubSysBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The diagnostics of Circuit Breaker." - INDEX { upsParallelDiagSubSysBreakerFrameIndex, upsParallelDiagSubSysBreakerIndex} - ::= { upsParallelDiagSubSysBreakerTable 1 } - -UpsParallelDiagSubSysBreakerEntry ::= - SEQUENCE { - upsParallelDiagSubSysBreakerFrameIndex INTEGER, - upsParallelDiagSubSysBreakerIndex INTEGER, - upsParallelDiagSubSysBreakerStatus INTEGER, - upsParallelDiagSubSysBreakerName DisplayString - } - -upsParallelDiagSubSysBreakerFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Parallel UPS index entry." - ::= { upsParallelDiagSubSysBreakerEntry 1 } - -upsParallelDiagSubSysBreakerIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the Circuit Breaker." - ::= { upsParallelDiagSubSysBreakerEntry 2 } - -upsParallelDiagSubSysBreakerStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - notInstalled (2), - opened (3), - closed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Circuit Breaker. - unknown(1) indicates the circuit breaker status is unknown. - notInstalled(2) indicates the circuit breaker is not installed. - opened(3) indicates the circuit breaker is opened. - closed(4) indicates the circuit breaker is closed." - ::= { upsParallelDiagSubSysBreakerEntry 3 } - -upsParallelDiagSubSysBreakerName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of Circuit Breaker." - ::= { upsParallelDiagSubSysBreakerEntry 4 } - -upsParallelOutputTotalPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - -DESCRIPTION - "The percentage of the UPS total load capacity in kVA - or -1 if it's unsupported by this UPS." - ::= { upsParallelSystem 11 } --- Parallel Output Active Power Table - -upsParallelOutputActivePowerTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsParallelOutputActivePowerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of entries - is given by the value of upsParallelSysRemoteAddress." - ::= { upsParallelSystem 12 } - -upsParallelOutputActivePowerEntry OBJECT-TYPE - SYNTAX UpsParallelOutputActivePowerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { upsParallelOutputActivePowerTableIndex } - ::= { upsParallelOutputActivePowerTable 1 } - -UpsParallelOutputActivePowerEntry ::= SEQUENCE { - upsParallelOutputActivePowerTableIndex INTEGER, - upsParallelOutputActivePower INTEGER - } - -upsParallelOutputActivePowerTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS parallel output identifier." - ::= { upsParallelOutputActivePowerEntry 1 } - -upsParallelOutputActivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The active power of each UPS in kW - when UPSs are configured in parallel." - ::= { upsParallelOutputActivePowerEntry 2 } - -upsParallelSysSwitchGearInstallationLoadPct OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual output load expressed as a percentage of the rating of the - Parallel UPS system." - ::= { upsParallelSystem 13 } - - - -upsParallelSysRedundancyStatus OBJECT-TYPE - SYNTAX INTEGER { - nplus0 (1), - nplus1 (2), - nplus2 (3), - nplus3 (4), - nplus4 (5), - nplus5 (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Displays the number of backup or redundant UPSs set up on the parallel system. - nplus0 (1) no redundant units. - nplus1 (2) one redundant unit. - nplus2 (3) two redundant units. - nplus3 (4) three redundant units. - nplus4 (5) four redundant units. - nplus5 (6) five redundant units." - ::= { upsParallelSystem 14 } - -upsParallelSysName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An ID string for the group of UPS units in the same parallel system. - Some products do not allow write operations for this OID." - ::= { upsParallelSystem 15 } - - - --- the upsPhysicalLayout group -upsIOFrameLayoutPositionID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the position ID of UPS frame." - ::= { upsPhysicalLayout 1 } - -upsBottomFeedFrameLayoutPositionID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the position ID of bottom feed frame." - ::= { upsPhysicalLayout 2 } - -upsSwitchGearLayoutPositionID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the position ID of switchgear." - ::= { upsPhysicalLayout 3 } - --- the upsBatteryFrameLayoutTable subgroup -upsBatteryFrameLayoutTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of battery frames." - ::= { upsPhysicalLayout 4 } - -upsBatteryFrameLayoutTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsBatteryFrameLayoutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Battery frame layout position ID table." - ::= { upsPhysicalLayout 5 } - - upsBatteryFrameLayoutEntry OBJECT-TYPE - SYNTAX UpsBatteryFrameLayoutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of layout position IDs of battery frames." - INDEX { batteryFrameIndex } - ::= { upsBatteryFrameLayoutTable 1 } - - UpsBatteryFrameLayoutEntry ::= - SEQUENCE { - batteryFrameIndex - INTEGER, - batteryFramePositionID - INTEGER - } - - batteryFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the battery frame." - ::= { upsBatteryFrameLayoutEntry 1 } - - batteryFramePositionID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the position ID of each of the battery frames in the row." - ::= { upsBatteryFrameLayoutEntry 2 } - --- the upsSideCarFrameLayoutTable subgroup -upsSideCarFrameLayoutTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of sidecar frames." - ::= { upsPhysicalLayout 6 } - -upsSideCarFrameLayoutTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsSideCarFrameLayoutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Sidecar frame layout position ID table." - ::= { upsPhysicalLayout 7 } - - upsSideCarFrameLayoutEntry OBJECT-TYPE - SYNTAX UpsSideCarFrameLayoutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of sidecar frame layout position IDs." - INDEX { sideCarFrameIndex } - ::= { upsSideCarFrameLayoutTable 1 } - - UpsSideCarFrameLayoutEntry ::= - SEQUENCE { - sideCarFrameIndex - INTEGER, - sideCarFramePositionID - INTEGER - } - - sideCarFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the sidecar frame." - ::= { upsSideCarFrameLayoutEntry 1 } - - sideCarFramePositionID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the position ID of each of the sidecar frames in the row." - ::= { upsSideCarFrameLayoutEntry 2 } - --- the upsPowerFrameLayoutTable subgroup -upsPowerFrameLayoutTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of power frames." - ::= { upsPhysicalLayout 8 } - -upsPowerFrameLayoutTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsPowerFrameLayoutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Power frame layout position ID table." - ::= { upsPhysicalLayout 9 } - - upsPowerFrameLayoutEntry OBJECT-TYPE - SYNTAX UpsPowerFrameLayoutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of power frame layout position IDs." - INDEX { powerFrameIndex } - ::= { upsPowerFrameLayoutTable 1 } - - UpsPowerFrameLayoutEntry ::= - SEQUENCE { - powerFrameIndex - INTEGER, - powerFramePositionID - INTEGER - } - - powerFrameIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the power frame." - ::= { upsPowerFrameLayoutEntry 1 } - - powerFramePositionID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Defines the position ID of each of the power frames in the row." - ::= { upsPowerFrameLayoutEntry 2 } - --- the upsIntegratedATS group - -upsIntegratedATSSelectedSource OBJECT-TYPE - SYNTAX INTEGER { - noSourceSelected (1), - unknown (2), - sourceA (3), - sourceB (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The source which is currently selected by the ATS to supply the UPS." - ::= { upsIntegratedATS 1 } - - -upsIntegratedATSPreferredSource OBJECT-TYPE - SYNTAX INTEGER { - upsIntegratedATSNoSourcePreference (1), - upsIntegratedATSPreferSourceA (2), - upsIntegratedATSPreferSourceB (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The preferred source of power when both sources are OK." - ::= { upsIntegratedATS 2 } - -upsIntegratedATSUpsReturnStaggering OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This is a delay factor applied to the retransfer of this UPS with integrated ATS. - When multiple UPSs are in use from a single source, each UPS can have a unique delay value, - which will reduce inrush by preventing all UPSs from transferring at the same time." - ::= { upsIntegratedATS 3 } - -upsIntegratedATSSourceTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input sources for this integrated ATS." - ::= { upsIntegratedATS 4 } - -upsIntegratedATSSourceTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsIntegratedATSSourceEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting status and settings for the ATS input sources. - The number of entries is contained in the upsIntegratedATSSourceTableSize OID." - ::= { upsIntegratedATS 5 } - -upsIntegratedATSSourceEntry OBJECT-TYPE - SYNTAX UpsIntegratedATSSourceEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input source status to get." - INDEX { upsIntegratedATSSourceIndex} - ::= { upsIntegratedATSSourceTable 1 } - -UpsIntegratedATSSourceEntry ::= - SEQUENCE { - upsIntegratedATSSourceIndex INTEGER, - upsIntegratedATSSourceName DisplayString, - upsIntegratedATSSourceStatus INTEGER, - upsIntegratedATSLineFailDelay INTEGER, - upsIntegratedATSLineStabilityDelay INTEGER - } - -upsIntegratedATSSourceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the input source entry." - ::= { upsIntegratedATSSourceEntry 1 } - -upsIntegratedATSSourceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the input source. This OID is provided - for informational purposes only." - ::= { upsIntegratedATSSourceEntry 2 } - -upsIntegratedATSSourceStatus OBJECT-TYPE - SYNTAX INTEGER { - upsIntegratedATSSourceGood (1), - upsIntegratedATSSourceBad (2), - upsIntegratedATSSourceUnknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the input source status." - ::= { upsIntegratedATSSourceEntry 3 } - -upsIntegratedATSLineFailDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The delay between a selected input source becoming bad, and the ATS switching away from that source. - This delay is used to make sure that the line has truly failed before the ATS will be switched. - Specified in seconds." - ::= { upsIntegratedATSSourceEntry 4 } - -upsIntegratedATSLineStabilityDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The delay between an unselected input source becoming good, and the ATS switching to that source. - This delay is used to make sure that the line has truly returned before the ATS will be switched. - Specified in seconds." - ::= { upsIntegratedATSSourceEntry 5 } - --- the upsDCOutput group - -upsDCOutputStatus OBJECT IDENTIFIER ::= { upsDCOutput 1 } - -upsDCOutputStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC outputs on the UPS." - ::= { upsDCOutputStatus 1 } - -upsDCOutputStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UpsDCOutputStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Provides status information on UPS DC outputs. - The number of entries is contained in the upsDCOutputStatusTableSize OID." - ::= { upsDCOutputStatus 2 } - -upsDCOutputStatusEntry OBJECT-TYPE - SYNTAX UpsDCOutputStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The DC output." - INDEX { upsDCOutputStatusTableIndex} - ::= { upsDCOutputStatusTable 1 } - -UpsDCOutputStatusEntry ::= - SEQUENCE { - upsDCOutputStatusTableIndex INTEGER, - upsDCOutputStatusVoltageNominal INTEGER, - upsDCOutputStatusCurrentRating INTEGER, - upsDCOutputStatusVoltage INTEGER, - upsDCOutputStatusCurrent INTEGER, - upsDCOutputStatusAbnormalConditions DisplayString - } - -upsDCOutputStatusTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC output status entry." - ::= { upsDCOutputStatusEntry 1 } - -upsDCOutputStatusVoltageNominal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The desired voltage for this output in tenths of VDC. - When the output is on and there are no fault conditions, - the actual voltage should be near the nominal." - ::= { upsDCOutputStatusEntry 2 } - -upsDCOutputStatusCurrentRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of current this output is able to supply in - tenths of amperes." - ::= { upsDCOutputStatusEntry 3 } - -upsDCOutputStatusVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage measured on this output in tenths of VDC." - ::= { upsDCOutputStatusEntry 4 } - -upsDCOutputStatusCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current drawn by the load measured on this output - in tenths of amperes." - ::= { upsDCOutputStatusEntry 5 } - -upsDCOutputStatusAbnormalConditions OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing flags representing active - output faults. If the Network Card is unable to determine - the state of the faults, this variable is set to 'UNKNOWN'. - - The flags are numbered 1 onward, read from left to - right. The flags are defined as follows starting from 1: - - Flag 1: Output Overload - Flag 2: Output Short Circuit - Flag 3: Output Over Voltage - Flag 4: - Flag 5: Overtemperature - Flag 6: Backfeed Relay Fault - Flag 7: - Flag 8: PFC Input Relay Fault - Flag 9: - Flag 10: Bypass Relay Fault - Flag 11: - Flag 12: - Flag 13: - Flag 14: - Flag 15: - Flag 16: - Flag 17: - Flag 18: - Flag 19: Output Fault (over or undervoltage) - Flag 20: Bus Converter Fault - Flag 21: Sensor Fault - Flag 21: - Flag 22: - Flag 23: - Flag 24: - Flag 25: - Flag 26: - Flag 27: - Flag 28: - Flag 29: - Flag 30: - Flag 31: - Flag 32: " - ::= { upsDCOutputStatusEntry 6 } - --- the serialPort2Config group - -serialPort2Mode OBJECT-TYPE - SYNTAX INTEGER { - localConsole(1), - passthrough(2) - } - ACCESS read-write - STATUS obsolete - DESCRIPTION - "Setting this variable to passthrough will enable mini's port2 - behave like a UPS port. Choosing localConsole will enable the port - to be used as local console." - ::= { serialPort2Config 1 } --- the serialPort2Control group - -setPulseOnTXD OBJECT-TYPE - SYNTAX INTEGER { - noSetPulseOnTXD(1), - setPulseOnTXD(2), - setTXDLow(3), - setTXDHigh(4) - - } - ACCESS read-write - STATUS obsolete - DESCRIPTION - "Setting this variable to setPulseOnTXD(2) - causes adapter to generate a PULSE on TXD pin of serial port 2. - The duration in the prototype implementation will be 1 second. - - Setting this value to noSetPulseOnTXD(1) has no - effect. - - The value noSetPulseOnTXD(1) will always be returned - when the variable is read. - - Setting this value to setTXDLow(3), or setTXDHigh(4) will keep TXD - always low or high respectively." - ::= { serialPort2Control 1 } - --- the sPDUIdent group - -sPDUIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the PDU. This value - is set at the factory." - ::= { sPDUIdent 1 } - -sPDUIdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An 8 byte ID string identifying the PDU firmware revision. - This value is set at the factory." - ::= { sPDUIdent 2 } - - -sPDUIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the PDU was manufactured in mm/dd/yy format. - This value is set at the factory. The year 2000 will be - represented by 00." - ::= { sPDUIdent 3 } - -sPDUIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 10-character string identifying the model number of - the PDU internal. This value is set at the factory." - ::= { sPDUIdent 4 } - -sPDUIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 12-character string identifying the serial number of - the PDU internal microprocessor. This value is set at - the factory." - ::= { sPDUIdent 5 } - - --- the sPDUMasterControl group - -sPDUMasterControlSwitch OBJECT-TYPE - SYNTAX INTEGER { - turnAllOnNow (1), - turnAllOnSequence (2), - turnAllOffNow (3), - rebootAllNow (4), - rebootAllSequence (5), - noCommand (6), - turnAllOffSequence (7) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to turnAllOnNow (1) will turn all outlets - on immediately. - - Setting this OID to turnAllOnSequence (2) will turn all outlets - on as defined by each outlet's sPDUOutletPowerOnTime OID value. - - Setting this OID to turnAllOff (3) will turn all outlets - off immediately. - - Setting this OID to rebootAllNow (4) will reboot all outlets - immediately. - - For MasterSwitch firmware version 1.X, setting this OID to - rebootAllSequence (5) reboots all outlets, with power returned - to the outlets in the sequence defined by each outlet's - sPDUOutletPowerOnTime OID value. - - For MasterSwitch firmware version 2.X, setting this OID to - rebootAllSequence (5) will cause a turnAllOffSequence to be performed. - Once all outlets are off, the MasterSwitch will then delay the - sPDUMasterConfigReboot OID time, and then perform a turnAllOnSequence. - - For MasterSwitch firmware version 2.X, setting this OID to - turnAllOffSequence (7) will turn all outlets off as defined by - each outlet's sPDUOutletPowerOffTime OID value. - - For MasterSwitch firmware version 1.X, setting this OID to - turnAllOffSequence (7) will have no effect. - - Getting this OID will return the noCommand (6) value." - - ::= { sPDUMasterControl 1 } - - -sPDUMasterState OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will cause the status of all outlets to be - returned. This OID is provided for informational purposes only. - To change the outlet state, the user should use the sPDUOutletCtl - OID in the sPDUOutletControlTable. - - The format of the data returned is a character string consisting - of the word 'On' if the outlet is on or 'Off' if the outlet is - off. At least one space will delimit each outlet entry in the - string. - - If the outlet states are unknown, the character string 'Unknown' - will be returned. This signifies that there is an inconsistency - in the PDU. In the rare case that this should happen, the user - is advised to shut down all equipment powered by the PDU and - then cycle the PDU's power. This will put the PDU in a consistent - state." - - ::= { sPDUMasterControl 2 } - -sPDUMasterPending OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will cause the command pending status of all outlets to be returned. - - The format of the data returned is a character string consisting - of the word 'Yes' if a command is pending for the outlet or 'No' - if there is no command pending for the outlet. At least one - space will delimit each outlet entry in the string. - - If the pending states are unknown, the character string 'Unknown' - will be returned. This signifies that there is an inconsistency - in the PDU. In the rare case that this should happen, the user - is advised to shut down all equipment powered by the PDU and then - cycle the PDU's power. This will put the PDU in a consistent state." - ::= { sPDUMasterControl 3 } - - --- the sPDUMasterConfig group - -sPDUMasterConfigPowerOn OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in seconds, between when - power is provided to the PDU and when the PDU - provides basic master power to the outlets. - - Allowed values are: - - -1 never apply power automatically. - 0 apply power immediately. - 15 apply power in 15 seconds. - 30 apply power in 30 seconds. - 45 apply power in 45 seconds. - 60 apply power in 60 seconds (1 minute). - 120 apply power in 120 seconds (2 minutes). - 300 apply power in 300 seconds (5 minutes). - - If a value other than a supported value is provided in a - set request, the PDU interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - - ::= { sPDUMasterConfig 1 } - -sPDUMasterConfigReboot OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "During a reboot sequence, power is turned off and then - back on. This OID defines the amount of time to wait, - in seconds, after turning the power off, at the start - of the sequence, before turning power back on, at the - end of the reboot sequence. - - Allowed values are: - - 5 wait 5 seconds between off/on. - 10 wait 10 seconds between off/on. - 15 wait 15 seconds between off/on. - 20 wait 20 seconds between off/on. - 30 wait 30 seconds between off/on. - 45 wait 45 seconds between off/on. - 60 wait 60 seconds (1 minute) between off/on. - - If a value other than a supported value is provided in a - set request, the PDU interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used. - - This OID is read-only for the MasterSwitch version 2.X and is the - maximum sPDUOutletRebootDuration OID of the individual outlets." - - ::= { sPDUMasterConfig 2 } - -sPDUMasterConfigPDUName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the PDU." - ::= { sPDUMasterConfig 3 } - - - --- the sPDUOutletControl group -sPDUOutletControlTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outlets for the PDU." - ::= { sPDUOutletControl 1 } - - -sPDUOutletControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual outlet switches. The number of - entries is contained in the sPDUOutletControlTableSize OID." - ::= { sPDUOutletControl 2 } - -sPDUOutletControlEntry OBJECT-TYPE - SYNTAX SPDUOutletControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to control." - INDEX { sPDUOutletControlIndex} - ::= { sPDUOutletControlTable 1 } - -SPDUOutletControlEntry ::= - SEQUENCE { - sPDUOutletControlIndex INTEGER, - sPDUOutletPending INTEGER, - sPDUOutletCtl INTEGER, - sPDUOutletCtlName DisplayString - } - -sPDUOutletControlIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletControlEntry 1 } - -sPDUOutletPending OBJECT-TYPE - SYNTAX INTEGER{ - commandPending (1), - noCommandPending (2), - commandPendingUnknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reports whether the current outlet has a pending command. - - If the commandPendingUnknown (3) value is returned, all - devices powered by the PDU should be shut down. The PDU's - power should then be cycled to clear this condition." - - ::= { sPDUOutletControlEntry 2 } - -sPDUOutletCtl OBJECT-TYPE - SYNTAX INTEGER { - outletOn (1), - outletOff (2), - outletReboot (3), - outletUnknown (4), - outletOnWithDelay (5), - outletOffWithDelay (6), - outletRebootWithDelay (7) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the outletOn (1) value will be returned. - If the outlet is off, the outletOff (2) value will be - returned. - - If the state of the outlet cannot be determined, the - outletUnknown (4) value will be returned. If the - outletUnknown condition should occur, all devices - powered by the PDU should be shut down. The PDU's power - should then be cycled to clear this condition. - - Setting this variable to outletOn (1) will turn the outlet on. - - Setting this variable to outletOff (2) will turn the outlet off. - - Setting this variable to outletReboot (3) will reboot the outlet. - - Setting this variable to outletOnWithDelay (5) will turn the outlet on - after the sPDUOutletPowerOnTime OID has elapsed. This option is not - valid for MasterSwitch firmware version 1.X. - - Setting this variable to outletOffWithDelay (6) will turn the outlet off - after the sPDUOutletPowerOffTime OID has elapsed. This option is not valid - for MasterSwitch firmware version 1.X. - - Setting this variable to outletRebootWithDelay (7) will turn the outlet off - after the sPDUOutletPowerOffTime OID has elapsed, wait the sPDUOutletRebootDuration - OID time, then turn the outlet back on. - This option is not valid for MasterSwitch firmware version 1.X." - - ::= { sPDUOutletControlEntry 3 } - -sPDUOutletCtlName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. Maximum size is 20 characters. - This OID is provided for informational purposes only. - This value is set by the sPDUOutletName OID." - - ::= { sPDUOutletControlEntry 4 } - --- the sPDUOutletConfig group -sPDUOutletConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outlets for the PDU." - ::= { sPDUOutletConfig 1 } - -sPDUOutletConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The list of outlets to configure. The number of - entries is defined by the sPDUOutletConfigTableSize - OID." - - ::= { sPDUOutletConfig 2 } - -sPDUOutletConfigEntry OBJECT-TYPE - SYNTAX SPDUOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to control." - INDEX { sPDUOutletConfigIndex} - ::= { sPDUOutletConfigTable 1 } - -SPDUOutletConfigEntry ::= - SEQUENCE { - sPDUOutletConfigIndex INTEGER, - sPDUOutletPowerOnTime INTEGER, - sPDUOutletName DisplayString, - sPDUOutletPowerOffTime INTEGER, - sPDUOutletRebootDuration INTEGER - } - -sPDUOutletConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletConfigEntry 1 } - -sPDUOutletPowerOnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (in seconds) the outlet will delay - powering on when the MasterSwitch is powered on. - - Allowed values are: - - -1 never power on automatically. - 0 power on with the Master Switch. - 15 power on 15 seconds after the MasterSwitch has power applied. - 30 power on 30 seconds after the MasterSwitch has power applied. - 45 power on 45 seconds after the MasterSwitch has power applied. - 60 power on 60 seconds (1 minute) after the MasterSwitch has power applied. - 120 power on 120 seconds (2 minutes) after the MasterSwitch has power applied. - 300 power on 300 seconds (5 minutes) after the MasterSwitch has power applied. - - If a value other than a supported value is provided in a - set request, the PDU interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - - ::= { sPDUOutletConfigEntry 2 } - -sPDUOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the outlet. Maximum size is 20 characters." - - ::= { sPDUOutletConfigEntry 3 } - -sPDUOutletPowerOffTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (in seconds) the outlet will delay - powering off. - - Allowed values are: - - -1 never power off automatically. - 0 power off with the MasterSwitch. - 15 power off 15 seconds after being commanded. - 30 power off 30 seconds after being commanded. - 45 power off 45 seconds after being commanded. - 60 power off 60 seconds (1 minute) after being commanded. - 120 power off 120 seconds (2 minutes) after being commanded. - 300 power off 300 seconds (5 minutes) after being commanded. - - If a value other than a supported value is provided in a - set request, the PDU interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used. - - This OID is not available for MasterSwitch firmware version 1.X." - - ::= { sPDUOutletConfigEntry 4 } - -sPDUOutletRebootDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "During a reboot sequence, power is turned off and then - back on. This OID defines the amount of time to wait, - in seconds, after turning the power off, at the start - of the sequence, before turning power back on, at the - end of the reboot sequence. - - Allowed values are: - - 5 wait 5 seconds between off/on. - 10 wait 10 seconds between off/on. - 15 wait 15 seconds between off/on. - 20 wait 20 seconds between off/on. - 30 wait 30 seconds between off/on. - 45 wait 45 seconds between off/on. - 60 wait 60 seconds (1 minute) between off/on. - - If a value other than a supported value is provided in a - set request, the PDU interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used. - - This OID is not available for MasterSwitch firmware version 1.X." - - ::= { sPDUOutletConfigEntry 5 } - - --- the sPDUIdentVM group - -sPDUIdentVMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch VMs controllable - by this IP address." - ::= { sPDUIdentVM 1 } - - -sPDUIdentVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUIdentVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for query of the individual MasterSwitch VMs. - The number of entries is contained in the - sPDUIdentVMTableSize OID." - ::= { sPDUIdentVM 2 } - -sPDUIdentVMEntry OBJECT-TYPE - SYNTAX SPDUIdentVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch VMs to query." - INDEX { sPDUIdentVMIndex} - ::= { sPDUIdentVMTable 1 } - -SPDUIdentVMEntry ::= - SEQUENCE { - sPDUIdentVMIndex INTEGER, - sPDUIdentNameVM DisplayString, - sPDUIdentHardwareRevVM DisplayString, - sPDUIdentFirmwareRevVM DisplayString, - sPDUIdentDateOfManufactureVM DisplayString, - sPDUIdentModelNumberVM DisplayString, - sPDUIdentSerialNumberVM DisplayString - } - -sPDUIdentVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM entry." - ::= { sPDUIdentVMEntry 1 } - -sPDUIdentNameVM OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 23-character string identifying the - MasterSwitch VM. " - ::= { sPDUIdentVMEntry 2 } - -sPDUIdentHardwareRevVM OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware version of the MasterSwitch VM. - This value is set at the factory." - ::= { sPDUIdentVMEntry 3 } - -sPDUIdentFirmwareRevVM OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An 6-character ID string identifying the MasterSwitch VM - firmware version. This value is set at the factory." - ::= { sPDUIdentVMEntry 4 } - - -sPDUIdentDateOfManufactureVM OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the MasterSwitch VM was manufactured in mm/dd/yyyy format. - This value is set at the factory. " - ::= { sPDUIdentVMEntry 5 } - -sPDUIdentModelNumberVM OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 17-character string identifying the model number of - the MasterSwitch VM. This value is set at the factory." - ::= { sPDUIdentVMEntry 6 } - -sPDUIdentSerialNumberVM OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 17-character string identifying the serial number of - the MasterSwitch VM. This value is set at the factory." - ::= { sPDUIdentVMEntry 7 } - - --- the sPDUMasterControlVM group - -sPDUMasterControlVMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch VMs controllable - by this IP address." - ::= { sPDUMasterControlVM 1 } - - -sPDUMasterControlVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUMasterControlVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of the individual MasterSwitch VMs. - The number of entries is contained in the - sPDUMasterControlVMTableSize OID." - ::= { sPDUMasterControlVM 2 } - -sPDUMasterControlVMEntry OBJECT-TYPE - SYNTAX SPDUMasterControlVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch VMs to control." - INDEX { sPDUMasterControlVMIndex} - ::= { sPDUMasterControlVMTable 1 } - -SPDUMasterControlVMEntry ::= - SEQUENCE { - sPDUMasterControlVMIndex INTEGER, - sPDUMasterControlVMName DisplayString, - sPDUMasterControlVMCommand INTEGER - } - -sPDUMasterControlVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM entry." - ::= { sPDUMasterControlVMEntry 1 } - -sPDUMasterControlVMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch VM. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigVMName OID." - ::= { sPDUMasterControlVMEntry 2 } - -sPDUMasterControlVMCommand OBJECT-TYPE - SYNTAX INTEGER { - noCommandAllVM (1), - immediateAllOnVM (2), - immediateAllOffVM (3), - immediateAllRebootVM (4), - delayedAllOnVM (5), - delayedAllOffVM (6), - sequencedAllRebootVM (7), - delayedAllRebootVM (8), - delayedSequenceAllRebootVM (9), - cancelAllPendingCommandsVM (10), - audioAlarmMute (11) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to immediateAllOnVM (2) will turn all outlets - on immediately. - - Setting this OID to immediateAllOffVM (3) will turn all outlets - off immediately. - - Setting this OID to immediateAllRebootVM (4) will reboot all outlets - immediately. - - Setting this OID to delayedAllOnVM (5) will turn all outlets on as - defined by each outlet's sPDUOutletConfigVMPowerOnTime OID value. - - Setting this OID to delayedAllOffVM (6) will turn all outlets - off as defined by each outlet's sPDUOutletConfigVMPowerOffTime OID value. - - Setting this OID to sequencedAllRebootVM (7) will cause a - immediateAllOffVM command to be performed. The MasterSwitch VM will - then delay the sPDUMasterStatusVMRebootDuration OID time, and then - perform a delayedAllOnVM command. - - Setting this OID to delayedAllRebootVM (8) will cause a delayedAllOffVM - command to be performed. Each outlet will then wait its - sPDUOutletConfigVMRebootDuration before returning power to the outlet. - - Setting this OID to delayedSequenceAllRebootVM (9) will cause a - delayedAllOffVM command to be performed. Once all outlets are off, - the MasterSwitch VM will then delay the sPDUMasterStatusVMRebootDuration - OID time, and then perform a delayedAllOnVM command. - - Setting this OID to cancelAllPendingCommandsVM (10) will cause all pending - commands on the MasterSwitch VM to be canceled. - - - Setting this OID to audioAlarmMute (11) will temporarily silence the audible - alarm for the duration of the current overload condition. The audible alarm - will be activated on subsequent overload alarms. - - Getting this OID will return the noCommandAllVM (1) value." - ::= { sPDUMasterControlVMEntry 3 } - - --- the sPDUMasterConfigVM group - -sPDUMasterConfigVMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch VMs configurable - by this IP address." - ::= { sPDUMasterConfigVM 1 } - - -sPDUMasterConfigVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUMasterConfigVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of the individual MasterSwitch VMs. - The number of entries is contained in the - sPDUMasterConfigVMTableSize OID." - ::= { sPDUMasterConfigVM 2 } - -sPDUMasterConfigVMEntry OBJECT-TYPE - SYNTAX SPDUMasterConfigVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch VMs to configure." - INDEX { sPDUMasterConfigVMIndex} - ::= { sPDUMasterConfigVMTable 1 } - -SPDUMasterConfigVMEntry ::= - SEQUENCE { - sPDUMasterConfigVMIndex INTEGER, - sPDUMasterConfigVMName DisplayString, - sPDUMasterConfigVMColdstartDelay INTEGER, - sPDUMasterConfigVMAudioAlarmActivated INTEGER, - sPDUMasterConfigVMHighLoadWarningThreshold INTEGER, - sPDUMasterConfigVMLowLoadWarningThreshold INTEGER, - sPDUMasterConfigVMOverloadRestriction INTEGER - } - -sPDUMasterConfigVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM entry." - ::= { sPDUMasterConfigVMEntry 1 } - - -sPDUMasterConfigVMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch VM. Maximum size is 23 characters." - ::= { sPDUMasterConfigVMEntry 2 } - -sPDUMasterConfigVMColdstartDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in seconds, between when - power is provided to the MasterSwitch VM and - when the MasterSwitch VM provides basic master - power to the outlets. - - Allowed values are: - - -1 never apply power automatically. - 0 apply power immediately. - 15 apply power in 15 seconds. - 30 apply power in 30 seconds. - 45 apply power in 45 seconds. - 60 apply power in 60 seconds (1 minute). - 120 apply power in 120 seconds (2 minutes). - 300 apply power in 300 seconds (5 minutes). - - If a value other than a supported value is provided in a - set request, the MasterSwitch VM interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { sPDUMasterConfigVMEntry 3 } - -sPDUMasterConfigVMAudioAlarmActivated OBJECT-TYPE - SYNTAX INTEGER { - audioAlarmActiveNever (1), - audioAlarmActiveOnOverload (2), - audioAlarmActiveOnOverloadImminent (3) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to audioAlarmActiveNever (1) will disable - the audio alarm on the MasterSwitch VM. - - Setting this OID to audioAlarmActiveOnOverload (2) will - activate the audio alarm on the MasterSwitch VM when an - overload condition is present. - - Setting this OID to audioAlarmActiveOnOverloadImminent (3) - will activate the audio alarm on the MasterSwitch VM when - the load on the MasterSwitch VM has surpassed the - sPDUMasterConfigVMHighLoadWarningThreshold OID value." - ::= { sPDUMasterConfigVMEntry 4 } - -sPDUMasterConfigVMHighLoadWarningThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing an overload condition. It is - represented as a percentage of full load." - ::= { sPDUMasterConfigVMEntry 5 } - -sPDUMasterConfigVMLowLoadWarningThreshold OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing a low consumption condition. It is - represented as a percentage of full load." - ::= { sPDUMasterConfigVMEntry 6 } - -sPDUMasterConfigVMOverloadRestriction OBJECT-TYPE - SYNTAX INTEGER { - alwaysAllowTurnON (1), - restrictOnWarning (2), - restrictOnOverload (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID controls the behavior of the MasterSwitch VM - when an overload condition is possible and additional - outlets are requested to be turned on. - - Setting this OID to alwaysAllowTurnON (1) will always allow - the outlets to turn on. - - Setting this OID to restrictOnWarning (2) will not allow - outlets to turn on if the sPDUMasterConfigVMHighLoadWarningThreshold - OID is exceeded. - - Setting this OID to restrictOnOverload (3) will not allow - outlets to turn on if the MasterSwitch Vm is in an - overload condition." - ::= { sPDUMasterConfigVMEntry 7 } - --- the sPDUMasterStatusVM group - -sPDUMasterStatusVMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch VMs at - this IP address." - ::= { sPDUMasterStatusVM 1 } - - -sPDUMasterStatusVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUMasterStatusVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for gathering of status from the individual - MasterSwitch VMs. The number of entries is contained - in the sPDUMasterStatusVMTableSize OID." - ::= { sPDUMasterStatusVM 2 } - -sPDUMasterStatusVMEntry OBJECT-TYPE - SYNTAX SPDUMasterStatusVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch VMs to gather status from." - INDEX { sPDUMasterStatusVMIndex} - ::= { sPDUMasterStatusVMTable 1 } - -SPDUMasterStatusVMEntry ::= - SEQUENCE { - sPDUMasterStatusVMIndex INTEGER, - sPDUMasterStatusVMName DisplayString, - sPDUMasterStatusVMCommandPending INTEGER, - sPDUMasterStatusVMOverloadCondition INTEGER, - sPDUMasterStatusVMLowLoadCondition INTEGER, - sPDUMasterStatusVMCurrentLoad INTEGER, - sPDUMasterStatusVMMaxLoad INTEGER, - sPDUMasterStatusVMOutletCount INTEGER, - sPDUMasterStatusVMRebootDuration INTEGER - } - -sPDUMasterStatusVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM entry." - ::= { sPDUMasterStatusVMEntry 1 } - -sPDUMasterStatusVMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch VM. Maximum size is 23 characters." - ::= { sPDUMasterStatusVMEntry 2 } - -sPDUMasterStatusVMCommandPending OBJECT-TYPE - SYNTAX INTEGER { - commandPendingMasterTrueVM (1), - commandPendingMasterFalseVM (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return commandPendingMasterTrueVM (1) - if the MasterSwitch VM has a pending command on any of its - outlets. - - commandPendingMasterFalseVM (2) will be returned if there are - no pending commands." - ::= { sPDUMasterStatusVMEntry 3 } - -sPDUMasterStatusVMOverloadCondition OBJECT-TYPE - SYNTAX INTEGER { - overloadConditionTrueVM (1), - overloadConditionFalseVM (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return overloadConditionTrueVM (1) - if the sPDUMasterConfigVMHighLoadWarningThreshold OID is - violated. - - overloadConditionFalseVM (2) will be returned if the - sPDUMasterConfigVMHighLoadWarningThreshold OID is not - violated." - ::= { sPDUMasterStatusVMEntry 4 } - -sPDUMasterStatusVMLowLoadCondition OBJECT-TYPE - SYNTAX INTEGER { - lowLoadConditionTrueVM (1), - lowLoadConditionFalseVM (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return lowLoadConditionTrueVM (1) - if the sPDUMasterConfigVMLowLoadWarningThreshold OID is - violated. - - lowLoadConditionFalseVM (2) will be returned if the - sPDUMasterConfigVMHighLoadWarningThreshold OID is not - violated. " - ::= { sPDUMasterStatusVMEntry 5 } - -sPDUMasterStatusVMCurrentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the total amount of power - being consumed by the load. It is represented as a - percentage of full load." - ::= { sPDUMasterStatusVMEntry 6 } - -sPDUMasterStatusVMMaxLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the total amount of power - that this MasterSwitch VM can provide. It is represented - in Amps." - ::= { sPDUMasterStatusVMEntry 7 } - -sPDUMasterStatusVMOutletCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the number of controllable - outlets for this MasterSwitch VM." - ::= { sPDUMasterStatusVMEntry 8 } - -sPDUMasterStatusVMRebootDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the largest - sPDUOutletConfigVMRebootDuration OID time - for this MasterSwitch VM." - ::= { sPDUMasterStatusVMEntry 9 } - --- the sPDUOutletControlVM group - - -sPDUOutletControlVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletControlVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual outlet switches. The number of - entries is contained in the sPDUMasterStatusOutletCount OID." - ::= { sPDUOutletControlVM 1 } - -sPDUOutletControlVMEntry OBJECT-TYPE - SYNTAX SPDUOutletControlVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to control." - INDEX { sPDUOutletControlVMIndex, sPDUOutletControlVMOutletIndex } - ::= { sPDUOutletControlVMTable 1 } - -SPDUOutletControlVMEntry ::= - SEQUENCE { - sPDUOutletControlVMIndex INTEGER, - sPDUOutletControlVMName DisplayString, - sPDUOutletControlVMOutletIndex INTEGER, - sPDUOutletControlVMOutletName DisplayString, - sPDUOutletControlVMOutletCommand INTEGER - } - -sPDUOutletControlVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM." - ::= { sPDUOutletControlVMEntry 1 } - -sPDUOutletControlVMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch VM. Maximum size is 23 characters. - This OID is provided for informational purposes only." - ::= { sPDUOutletControlVMEntry 2 } - -sPDUOutletControlVMOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletControlVMEntry 3 } - -sPDUOutletControlVMOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. Maximum size is 23 characters. - This OID is provided for informational purposes only." - ::= { sPDUOutletControlVMEntry 4 } - -sPDUOutletControlVMOutletCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateOnVM (1), - immediateOffVM (2), - immediateRebootVM (3), - delayedOnVM (4), - delayedOffVM (5), - delayedRebootVM (6), - cancelPendingCommandVM (7) - - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the immediateOnVM (1) value will be returned. - If the outlet is off, the immediateOffVM (2) value will be - returned. - - - Setting this variable to immediateOnVM (1) will immediately turn the outlet on. - - Setting this variable to immediateOffVM (2) will immediately turn the outlet off. - - Setting this variable to immediateRebootVM (3) will immediately reboot the outlet. - - Setting this variable to delayedOnVM (4) will turn the outlet on - after the sPDUOutletConfigVMPowerOnTime OID time has elapsed. - - Setting this variable to delayedOffVM (5) will turn the outlet off - after the sPDUOutletConfigVMPowerOffTime OID time has elapsed. - - Setting this variable to delayedRebootVM (6) will cause the - MasterSwitch VM to perform a delayedOffVM command, wait the - sPDUOutletConfigVMRebootDuration OID time, and then perform the - immediateOnVM command. - - Setting this variable to cancelPendingCommandVM (7) will cause any - pending command to this outlet to be canceled." - ::= { sPDUOutletControlVMEntry 5 } - --- the sPDUOutletConfigVM group - -sPDUOutletConfigVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletConfigVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the sPDUMasterStatusOutletCount OID." - ::= { sPDUOutletConfigVM 1 } - -sPDUOutletConfigVMEntry OBJECT-TYPE - SYNTAX SPDUOutletConfigVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to configure." - INDEX { sPDUOutletConfigVMIndex, sPDUOutletConfigVMOutletIndex } - ::= { sPDUOutletConfigVMTable 1 } - -SPDUOutletConfigVMEntry ::= - SEQUENCE { - sPDUOutletConfigVMIndex INTEGER, - sPDUOutletConfigVMName DisplayString, - sPDUOutletConfigVMOutletIndex INTEGER, - sPDUOutletConfigVMOutletName DisplayString, - sPDUOutletConfigVMPowerOnTime INTEGER, - sPDUOutletConfigVMPowerOffTime INTEGER, - sPDUOutletConfigVMRebootDuration INTEGER - } - -sPDUOutletConfigVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM." - ::= { sPDUOutletConfigVMEntry 1 } - -sPDUOutletConfigVMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch VM. Maximum size is 23 characters." - ::= { sPDUOutletConfigVMEntry 2 } - -sPDUOutletConfigVMOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletConfigVMEntry 3 } - - -sPDUOutletConfigVMOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the outlet. Maximum size is 23 characters." - ::= { sPDUOutletConfigVMEntry 4 } - -sPDUOutletConfigVMPowerOnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (in seconds) the outlet will delay - powering on at coldstart or when a command that requires - a turn-on delay is issued. - - Allowed values are: - - -1 never power on. - 0 power on immediately. - 15 power on 15 seconds after being commanded. - 30 power on 30 seconds after being commanded. - 45 power on 45 seconds after being commanded. - 60 power on 60 seconds (1 minute) after being commanded. - 120 power on 120 seconds (2 minutes) after being commanded. - 300 power on 300 seconds (5 minutes) after being commanded. - - If a value other than a supported value is provided in a - set request, the MasterSwitch VM interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { sPDUOutletConfigVMEntry 5 } - - -sPDUOutletConfigVMPowerOffTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (in seconds) the outlet will delay - powering off when a command that requires - a turn-off delay is issued. - - - Allowed values are: - - -1 never power off automatically. - 0 power off immediately. - 15 power off 15 seconds after being commanded. - 30 power off 30 seconds after being commanded. - 45 power off 45 seconds after being commanded. - 60 power off 60 seconds (1 minute) after being commanded. - 120 power off 120 seconds (2 minutes) after being commanded. - 300 power off 300 seconds (5 minutes) after being commanded. - - If a value other than a supported value is provided in a - set request, the MasterSwitch VM interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { sPDUOutletConfigVMEntry 6 } - -sPDUOutletConfigVMRebootDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "During a reboot sequence, power is turned off and then - back on. This OID defines the amount of time to wait, - in seconds, after turning the power off, at the start - of the sequence, before turning power back on, at the - end of the reboot sequence. - - Allowed values are: - - 5 wait 5 seconds between off/on. - 10 wait 10 seconds between off/on. - 15 wait 15 seconds between off/on. - 20 wait 20 seconds between off/on. - 30 wait 30 seconds between off/on. - 45 wait 45 seconds between off/on. - 60 wait 60 seconds (1 minute) between off/on. - - If a value other than a supported value is provided in a - set request, the MasterSwitch VM interprets it as the next lower - acceptable value. If the provided value is lower than - the lowest acceptable value, the lowest acceptable - value is used." - ::= { sPDUOutletConfigVMEntry 7 } - --- the sPDUOutletStatusVM group - -sPDUOutletStatusVMTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletStatusVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of individual outlets. The number of - entries is contained in the sPDUMasterStatusOutletCount OID." - ::= { sPDUOutletStatusVM 1 } - -sPDUOutletStatusVMEntry OBJECT-TYPE - SYNTAX SPDUOutletStatusVMEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to gather status from." - INDEX { sPDUOutletStatusVMIndex, sPDUOutletStatusVMOutletIndex } - ::= { sPDUOutletStatusVMTable 1 } - -SPDUOutletStatusVMEntry ::= - SEQUENCE { - sPDUOutletStatusVMIndex INTEGER, - sPDUOutletStatusVMName DisplayString, - sPDUOutletStatusVMOutletIndex INTEGER, - sPDUOutletStatusVMOutletName DisplayString, - sPDUOutletStatusVMOutletState INTEGER, - sPDUOutletStatusVMCommandPending INTEGER - } - -sPDUOutletStatusVMIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch VM." - ::= { sPDUOutletStatusVMEntry 1 } - -sPDUOutletStatusVMName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch VM. Maximum size is 23 characters." - ::= { sPDUOutletStatusVMEntry 2 } - -sPDUOutletStatusVMOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletStatusVMEntry 3 } - -sPDUOutletStatusVMOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. Maximum size is 23 characters." - ::= { sPDUOutletStatusVMEntry 4 } - -sPDUOutletStatusVMOutletState OBJECT-TYPE - SYNTAX INTEGER { - outletStatusVMOn (1), - outletStatusVMOff (2) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the outletStatusOnVM (1) value will be returned. - If the outlet is off, the outletStatusOffVM (2) value will be - returned. " - ::= { sPDUOutletStatusVMEntry 5 } - -sPDUOutletStatusVMCommandPending OBJECT-TYPE - SYNTAX INTEGER { - outletStatusVMCommandPending (1), - outletStatusVMNoCommandPending (2) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the command pending - state of the outlet. If a command is pending on the - outlet, the outletStatusVMCommandPending (1) value - will be returned. If there is not a command pending - on the outlet, the outletStatusVMNoCommandPending (2) - will be returned." - ::= { sPDUOutletStatusVMEntry 6 } - --- the sPDUIdentMSP group - -sPDUIdentMSPTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch pluses controllable - by this IP address." - ::= { sPDUIdentMSP 1 } - - -sPDUIdentMSPTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUIdentMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for query of the individual MasterSwitch pluses. - The number of entries is contained in the - sPDUIdentMSPTableSize OID." - ::= { sPDUIdentMSP 2 } - -sPDUIdentMSPEntry OBJECT-TYPE - SYNTAX SPDUIdentMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch pluses to query." - INDEX { sPDUIdentMSPIndex} - ::= { sPDUIdentMSPTable 1 } - -SPDUIdentMSPEntry ::= - SEQUENCE { - sPDUIdentMSPIndex INTEGER, - sPDUIdentNameMSP DisplayString, - sPDUIdentHardwareRevMSP DisplayString, - sPDUIdentFirmwareRevMSP DisplayString, - sPDUIdentDateOfManufactureMSP DisplayString, - sPDUIdentModelNumberMSP DisplayString, - sPDUIdentSerialNumberMSP DisplayString - } - -sPDUIdentMSPIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus entry." - ::= { sPDUIdentMSPEntry 1 } - -sPDUIdentNameMSP OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUIdentMSPEntry 2 } - -sPDUIdentHardwareRevMSP OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware version of the MasterSwitch plus. - This value is set at the factory." - ::= { sPDUIdentMSPEntry 3 } - -sPDUIdentFirmwareRevMSP OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An 6-character ID string identifying the MasterSwitch plus - firmware version. This value is set at the factory." - ::= { sPDUIdentMSPEntry 4 } - -sPDUIdentDateOfManufactureMSP OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the MasterSwitch plus was manufactured in mm/dd/yyyy format. - This value is set at the factory. " - ::= { sPDUIdentMSPEntry 5 } - -sPDUIdentModelNumberMSP OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 17-character string identifying the model number of - the MasterSwitch plus. This value is set at the factory." - ::= { sPDUIdentMSPEntry 6 } - -sPDUIdentSerialNumberMSP OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 17-character string identifying the serial number of - the MasterSwitch plus. This value is set at the factory." - ::= { sPDUIdentMSPEntry 7 } - - --- the sPDUMasterControlMSP group - -sPDUMasterControlMSPTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch pluses controllable - by this IP address." - ::= { sPDUMasterControlMSP 1 } - -sPDUMasterControlMSPTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUMasterControlMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of the individual MasterSwitch pluses. - The number of entries is contained in the - sPDUMasterControlMSPTableSize OID." - ::= { sPDUMasterControlMSP 2 } - -sPDUMasterControlMSPEntry OBJECT-TYPE - SYNTAX SPDUMasterControlMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch pluses to control." - INDEX { sPDUMasterControlMSPIndex} - ::= { sPDUMasterControlMSPTable 1 } - -SPDUMasterControlMSPEntry ::= - SEQUENCE { - sPDUMasterControlMSPIndex INTEGER, - sPDUMasterControlMSPName DisplayString, - sPDUMasterControlMSPCommand INTEGER - } - -sPDUMasterControlMSPIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus entry." - ::= { sPDUMasterControlMSPEntry 1 } - -sPDUMasterControlMSPName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUMasterControlMSPEntry 2 } - -sPDUMasterControlMSPCommand OBJECT-TYPE - SYNTAX INTEGER { - noCommandAllMSP (1), - immediateAllOnMSP (2), - sequencedAllOnMSP (3), - immediateAllOffMSP (4), - gracefulAllRebootMSP (5), - immediateAllRebootMSP (6), - gracefulAllShutdownMSP (7), - overrideAllBatCapThreshMSP (8), - cancelAllPendingCommandsMSP (9), - restoreFactoryDefaultsMSP (10) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to immediateAllOnMSP (2) will turn all outlets - on immediately. - - Setting this OID to sequencedAllOnMSP (3) will turn all outlets - on as defined by each outlet's sPDUOutletConfigMSPPowerOnDelay OID value. - - Setting this OID to immediateAllOffMSP (4) will turn all outlets - off immediately. - - Setting this OID to gracefulAllRebootMSP (5) will reboot all outlets - (after the device running PowerChute confirms shutdown) as defined - by each outlet's sPDUOutletConfigMSPRebootDuration OID time value. - - Setting this OID to immediateAllRebootMSP (6) will reboot all outlets - immediately. - - Setting this OID to gracefulAllShutdownMSP (7) will shutdown all outlets - (after the device running PowerChute confirms shutdown) as defined - by each outlet's sPDUOutletConfigMSPPowerOffDelay OID time value. Each - outlet will then turn on after the sum of its - sPDUOutletConfigMSPRestartDelay and sPDUOutletConfigMSPPowerOnDelay OID - values. - - Setting this OID to overrideAllBatCapThreshMSP (8) will cause the - outlet to ignore the Battery Capacity Threshold and proceed turning on - the outlets as defined by each outlet's sPDUOutletConfigMSPPowerOnDelay - OID value. - - Setting this OID to cancelAllPendingCommandsMSP (9) will cause all pending - commands on the MasterSwitch plus to be canceled. - - Setting this OID to restoreFactoryDefaultsMSP (10) will cause the settings of - the MasterSwitch plus to be restored to the factory defaults. - - Getting this OID will return the noCommandAllMSP (1) value." - ::= { sPDUMasterControlMSPEntry 3 } - - --- the sPDUMasterConfigMSP group - -sPDUMasterConfigMSPTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch pluses configurable - by this IP address." - ::= { sPDUMasterConfigMSP 1 } - -sPDUMasterConfigMSPTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUMasterConfigMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of the individual MasterSwitch pluses. - The number of entries is contained in the - sPDUMasterConfigMSPTableSize OID." - ::= { sPDUMasterConfigMSP 2 } - -sPDUMasterConfigMSPEntry OBJECT-TYPE - SYNTAX SPDUMasterConfigMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch pluses to configure." - INDEX { sPDUMasterConfigMSPIndex} - ::= { sPDUMasterConfigMSPTable 1 } - -SPDUMasterConfigMSPEntry ::= - SEQUENCE { - sPDUMasterConfigMSPIndex INTEGER, - sPDUMasterConfigMSPName DisplayString, - sPDUMasterConfigMSPPowerOnTimeDelay INTEGER, - sPDUMasterConfigMSPManualButton INTEGER - } - -sPDUMasterConfigMSPIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus entry." - ::= { sPDUMasterConfigMSPEntry 1 } - -sPDUMasterConfigMSPName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. Maximum size is 23 characters." - ::= { sPDUMasterConfigMSPEntry 2 } - -sPDUMasterConfigMSPPowerOnTimeDelay OBJECT-TYPE - SYNTAX INTEGER (0..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in seconds, between when - power is provided to the MasterSwitch plus and - when the MasterSwitch plus provides basic master - power to the outlets. - - Allowed values are: - - 0 - 9999 seconds (0 - 2hrs, 46 mins, 39 secs). - 0 indicates to apply power immediately." - ::= { sPDUMasterConfigMSPEntry 3 } - - -sPDUMasterConfigMSPManualButton OBJECT-TYPE - SYNTAX INTEGER { - manualButtonDisabled (1), - manualButtonEnabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to manualButtonDisabled (1) will disable - the manual button on the MasterSwitch plus. - - Setting this OID to manualButtonEnabled (2) will enable - the manual button on the MasterSwitch plus." - ::= { sPDUMasterConfigMSPEntry 4 } - --- the sPDUMasterStatusMSP group - -sPDUMasterStatusMSPTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of MasterSwitch pluses at - this IP address." - ::= { sPDUMasterStatusMSP 1 } - - -sPDUMasterStatusMSPTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUMasterStatusMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for gathering of status from the individual - MasterSwitch pluses. The number of entries is contained - in the sPDUMasterStatusMSPTableSize OID." - ::= { sPDUMasterStatusMSP 2 } - -sPDUMasterStatusMSPEntry OBJECT-TYPE - SYNTAX SPDUMasterStatusMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The MasterSwitch pluses to gather status from." - INDEX { sPDUMasterStatusMSPIndex} - ::= { sPDUMasterStatusMSPTable 1 } - -SPDUMasterStatusMSPEntry ::= - SEQUENCE { - sPDUMasterStatusMSPIndex INTEGER, - sPDUMasterStatusMSPName DisplayString, - sPDUMasterStatusMSPOutletCount INTEGER - } - -sPDUMasterStatusMSPIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus entry." - ::= { sPDUMasterStatusMSPEntry 1 } - -sPDUMasterStatusMSPName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUMasterStatusMSPEntry 2 } - -sPDUMasterStatusMSPOutletCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the number of controllable - outlets for this MasterSwitch plus." - ::= { sPDUMasterStatusMSPEntry 3 } - --- the sPDUOutletControlMSP group - -sPDUOutletControlMSPTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletControlMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual outlet switches. The number of - entries is contained in the sPDUMasterStatusMSPOutletCount OID." - ::= { sPDUOutletControlMSP 1 } - -sPDUOutletControlMSPEntry OBJECT-TYPE - SYNTAX SPDUOutletControlMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to control." - INDEX { sPDUOutletControlMSPIndex, sPDUOutletControlMSPOutletIndex } - ::= { sPDUOutletControlMSPTable 1 } - -SPDUOutletControlMSPEntry ::= - SEQUENCE { - sPDUOutletControlMSPIndex INTEGER, - sPDUOutletControlMSPName DisplayString, - sPDUOutletControlMSPOutletIndex INTEGER, - sPDUOutletControlMSPOutletName DisplayString, - sPDUOutletControlMSPOutletCommand INTEGER - } - -sPDUOutletControlMSPIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus." - ::= { sPDUOutletControlMSPEntry 1 } - -sPDUOutletControlMSPName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUOutletControlMSPEntry 2 } - -sPDUOutletControlMSPOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletControlMSPEntry 3 } - -sPDUOutletControlMSPOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum size is - 23 characters. The name is set by using the - sPDUOutletConfigMSPallOutletName OID. - This OID is provided for informational purposes only." - ::= { sPDUOutletControlMSPEntry 4 } - -sPDUOutletControlMSPOutletCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateOnMSP (1), - delayedOnMSP (2), - immediateOffMSP (3), - gracefulRebootMSP (4), - immediateRebootMSP (5), - gracefulshutdownMSP (6), - overrideBatCapThreshMSP (7), - cancelPendingCommandMSP (8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the immediateOnMSP (1) value will be returned. - If the outlet is off, the immediateOffMSP (3) value will be - returned. - - Setting this variable to immediateOnMSP (1) will immediately turn the outlet on. - - Setting this variable to delayedOnMSP (2) will turn the outlet on - after the sPDUOutletConfigMSPPowerOnDelay OID time has elapsed. - - Setting this variable to immediateOffMSP (3) will immediately turn the outlet off. - - Setting this variable to gracefulRebootMSP (4) will cause the outlet to wait for - device confirmation (if applicable) and then turn the outlet off after the - sPDUOutletConfigMSPPowerOffDelay OID time has elapsed. The outlet will then turn - on after the sPDUOutletConfigMSPRebootDuration OID time has elapsed. - - Setting this variable to immediateRebootMSP (5) will immediately reboot the outlet. - - Setting this variable to gracefulshutdownMSP (6) will cause the outlet to wait for - device confirmation (if applicable) and then turn the outlet off after the - sPDUOutletConfigMSPPowerOffDelay OID time has elapsed. The outlet will then turn - on after the sum of the sPDUOutletConfigMSPRestartTime OID time and the - sPDUOutletConfigMSPPowerOnDelay OID time has elapsed. - - Setting this variable to overrideBatCapThreshMSP (7) will cause the outlet to - ignore the Battery Capacity Threshold and proceed waiting on the - sPDUOutletConfigMSPPowerOnDelay OID time before turning the outlet on. - - Setting this variable to cancelPendingCommandMSP (8) will cause any - pending command to this outlet to be canceled." - ::= { sPDUOutletControlMSPEntry 5 } - --- the sPDUOutletConfigMSPall group - -sPDUOutletConfigMSPallTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletConfigMSPallEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the sPDUMasterStatusMSPOutletCount OID." - ::= { sPDUOutletConfigMSPall 1 } - -sPDUOutletConfigMSPallEntry OBJECT-TYPE - SYNTAX SPDUOutletConfigMSPallEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to configure." - INDEX { sPDUOutletConfigMSPallIndex, sPDUOutletConfigMSPallOutletIndex } - ::= { sPDUOutletConfigMSPallTable 1 } - -SPDUOutletConfigMSPallEntry ::= - SEQUENCE { - sPDUOutletConfigMSPallIndex INTEGER, - sPDUOutletConfigMSPallName DisplayString, - sPDUOutletConfigMSPallOutletIndex INTEGER, - sPDUOutletConfigMSPallOutletName DisplayString, - sPDUOutletConfigMSPallOutletCtrlMode INTEGER - } - -sPDUOutletConfigMSPallIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus." - ::= { sPDUOutletConfigMSPallEntry 1 } - -sPDUOutletConfigMSPallName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUOutletConfigMSPallEntry 2 } - -sPDUOutletConfigMSPallOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletConfigMSPallEntry 3 } - -sPDUOutletConfigMSPallOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the outlet. Maximum size is 23 characters." - ::= { sPDUOutletConfigMSPallEntry 4 } - -sPDUOutletConfigMSPallOutletCtrlMode OBJECT-TYPE - SYNTAX INTEGER { - modeGracefulShutdown (1), - modeAnnunciator (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to modeGracefulShutdown (1) will put this - outlet into the Graceful Shutdown control mode. - - Setting this OID to modeAnnunciator (2) will put this outlet - into the Annunciator control mode." - ::= { sPDUOutletConfigMSPallEntry 5 } - - --- the sPDUOutConfigMSPgs group - -sPDUOutletConfigMSPgsTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletConfigMSPgsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the sPDUMasterStatusMSPOutletCount OID." - ::= { sPDUOutletConfigMSPgs 1 } - -sPDUOutletConfigMSPgsEntry OBJECT-TYPE - SYNTAX SPDUOutletConfigMSPgsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to configure." - INDEX { sPDUOutletConfigMSPgsIndex, sPDUOutletConfigMSPgsOutletIndex } - ::= { sPDUOutletConfigMSPgsTable 1 } - -SPDUOutletConfigMSPgsEntry ::= - SEQUENCE { - sPDUOutletConfigMSPgsIndex INTEGER, - sPDUOutletConfigMSPgsName DisplayString, - sPDUOutletConfigMSPgsOutletIndex INTEGER, - sPDUOutletConfigMSPgsOutletName DisplayString, - sPDUOutletConfigMSPgsOutletCtrlMode INTEGER, - sPDUOutletConfigMSPgsDeviceConfirm INTEGER, - sPDUOutletConfigMSPgsLowBattWarning INTEGER, - sPDUOutletConfigMSPgsLowBattMult INTEGER, - sPDUOutletConfigMSPgsRestartDelay INTEGER, - sPDUOutletConfigMSPgsPowerOnDelay INTEGER, - sPDUOutletConfigMSPgsPowerOffDelay INTEGER, - sPDUOutletConfigMSPgsBattCapThresh INTEGER, - sPDUOutletConfigMSPgsRebootDuration INTEGER - } - -sPDUOutletConfigMSPgsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus." - ::= { sPDUOutletConfigMSPgsEntry 1 } - -sPDUOutletConfigMSPgsName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUOutletConfigMSPgsEntry 2 } - -sPDUOutletConfigMSPgsOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletConfigMSPgsEntry 3 } - -sPDUOutletConfigMSPgsOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum size is - 23 characters. The name is set by using the - sPDUOutletConfigMSPallOutletName OID. - This OID is provided for informational purposes only." - ::= { sPDUOutletConfigMSPgsEntry 4 } - -sPDUOutletConfigMSPgsOutletCtrlMode OBJECT-TYPE - SYNTAX INTEGER { - modeGracefulShutdown (1), - modeAnnunciator (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Control Mode of the outlet. - This OID is provided for informational purposes only." - ::= { sPDUOutletConfigMSPgsEntry 5 } - -sPDUOutletConfigMSPgsDeviceConfirm OBJECT-TYPE - SYNTAX INTEGER { - deviceConfirmNo (1), - deviceConfirmYes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to deviceConfirmNo (1) cause the outlet to - NOT wait for device confirmation while performing graceful - operations. - - Setting this OID to deviceConfirmYes (2) cause the outlet to - wait for device confirmation while performing graceful - operations." - ::= { sPDUOutletConfigMSPgsEntry 6 } - -sPDUOutletConfigMSPgsLowBattWarning OBJECT-TYPE - SYNTAX INTEGER (-2..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in 6 second intervals, between - when the UPS goes on battery and the power down sequence for - the outlet is initiated. - - Allowed values are: - - -2 - Never initiate the power down sequence on low battery warning. - -1 - Initiate power down sequence based on remaining runtime. - 1 - 9999 six second intervals (6 secs - 16hrs, 39 mins, 54 secs). - 0 indicates to immediately initiate power down sequence on low - battery warning." - ::= { sPDUOutletConfigMSPgsEntry 7 } - -sPDUOutletConfigMSPgsLowBattMult OBJECT-TYPE - SYNTAX INTEGER (1..7) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " Only applicable if sPDUOutletConfigMSPgsLowBattWarning OID is - set to -1 (On Runtime Remaining). - - Allows you to set the value to stagger the shutdown sequence of the outlets. - 1 provides the longest delay (the outlet to shutoff first), and 7 would - provide the shortest delay (the outlet to shut off last). - - Allowed values are: - 1 - 7." - ::= { sPDUOutletConfigMSPgsEntry 8 } - -sPDUOutletConfigMSPgsRestartDelay OBJECT-TYPE - SYNTAX INTEGER (-1..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in 6 minute intervals, between - when the outlet is turned off and the outlet is turned back on - when performing a Graceful Shutdown. - - Allowed values are: - - -1 - Never turn outlet back on after a Graceful shutdown. - 0 - 9999 six minute intervals (0 - 999hrs, 54 mins)." - ::= { sPDUOutletConfigMSPgsEntry 9 } - -sPDUOutletConfigMSPgsPowerOnDelay OBJECT-TYPE - SYNTAX INTEGER (-1..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in seconds, between the UPS entering - normal (on-line) state and the outlet being powered on. - - Allowed values are: - - -1 - Remain Off when the UPS enters the on-line state. - 0 - 9999 seconds (0 - 2 hrs, 46 mins, 39 secs)." - ::= { sPDUOutletConfigMSPgsEntry 10 } - - -sPDUOutletConfigMSPgsPowerOffDelay OBJECT-TYPE - SYNTAX INTEGER (0..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in seconds, between when the server - shuts down and the outlet is powered off. - - Allowed values are: - - 0 - 9999 seconds (0 - 2 hrs, 46 mins, 39 secs)." - ::= { sPDUOutletConfigMSPgsEntry 11 } - -sPDUOutletConfigMSPgsBattCapThresh OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The minimum battery capacity, as a percent (0-100%), required - of the UPS before an outlet will be allowed to power on. - - Allowed values are: - - 0 - 100 percent." - ::= { sPDUOutletConfigMSPgsEntry 12 } - -sPDUOutletConfigMSPgsRebootDuration OBJECT-TYPE - SYNTAX INTEGER (0..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of delay, in seconds, from outlet off until - outlet on during a reboot. - - Allowed values are: - - 0 - 9999 seconds (0 - 2 hrs, 46 mins, 39 secs)." - ::= { sPDUOutletConfigMSPgsEntry 13 } - - --- the sPDUOutConfigMSPannun group - -sPDUOutletConfigMSPannunTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletConfigMSPannunEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the sPDUMasterStatusMSPOutletCount OID." - ::= { sPDUOutletConfigMSPannun 1 } - -sPDUOutletConfigMSPannunEntry OBJECT-TYPE - SYNTAX SPDUOutletConfigMSPannunEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to configure." - INDEX { sPDUOutletConfigMSPannunIndex, sPDUOutletConfigMSPannunOutletIndex } - ::= { sPDUOutletConfigMSPannunTable 1 } - -SPDUOutletConfigMSPannunEntry ::= - SEQUENCE { - sPDUOutletConfigMSPannunIndex INTEGER, - sPDUOutletConfigMSPannunName DisplayString, - sPDUOutletConfigMSPannunOutletIndex INTEGER, - sPDUOutletConfigMSPannunOutletName DisplayString, - sPDUOutletConfigMSPannunOutletCtrlMode INTEGER, - sPDUOutletConfigMSPannunInitialState INTEGER, - sPDUOutletConfigMSPannunAlarmActionDly INTEGER - } - -sPDUOutletConfigMSPannunIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus." - ::= { sPDUOutletConfigMSPannunEntry 1 } - -sPDUOutletConfigMSPannunName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUOutletConfigMSPannunEntry 2 } - -sPDUOutletConfigMSPannunOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletConfigMSPannunEntry 3 } - -sPDUOutletConfigMSPannunOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum size is - 23 characters. The name is set by using the - sPDUOutletConfigMSPallOutletName OID. - This OID is provided for informational purposes only." - ::= { sPDUOutletConfigMSPannunEntry 4 } - -sPDUOutletConfigMSPannunOutletCtrlMode OBJECT-TYPE - SYNTAX INTEGER { - modeGracefulShutdown (1), - modeAnnunciator (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Control Mode of the outlet. - This OID is provided for informational purposes only." - ::= { sPDUOutletConfigMSPannunEntry 5 } - -sPDUOutletConfigMSPannunInitialState OBJECT-TYPE - SYNTAX INTEGER { - initialStateOff (1), - initialStateOn (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to initialStateOff (1) causes the outlet - to default to off when in the non-alarmed condition. - - Setting this OID to initialStateOn (2) causes the outlet - to default to on when in the non-alarmed condition." - ::= { sPDUOutletConfigMSPannunEntry 6 } - -sPDUOutletConfigMSPannunAlarmActionDly OBJECT-TYPE - SYNTAX INTEGER (0..9999) - ACCESS read-write - STATUS mandatory - DESCRIPTION - " The amount of time, in seconds, that an enabled Measure-UPS - alarm must be asserted before an alarm condition is recognized. - - Allowed values are: - - 0 - 9999 seconds (0 - 2 hrs, 46 mins, 39 secs)." - ::= { sPDUOutletConfigMSPannunEntry 7 } - - --- the sPDUOutConfigMSPmups group - -sPDUOutletConfigMSPmupsTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletConfigMSPmupsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the sPDUMasterStatusMSPOutletCount OID." - ::= { sPDUOutletConfigMSPmups 1 } - -sPDUOutletConfigMSPmupsEntry OBJECT-TYPE - SYNTAX SPDUOutletConfigMSPmupsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to configure." - INDEX { sPDUOutletConfigMSPmupsIndex, sPDUOutletConfigMSPmupsOutletIndex } - ::= { sPDUOutletConfigMSPmupsTable 1 } - -SPDUOutletConfigMSPmupsEntry ::= - SEQUENCE { - sPDUOutletConfigMSPmupsIndex INTEGER, - sPDUOutletConfigMSPmupsName DisplayString, - sPDUOutletConfigMSPmupsOutletIndex INTEGER, - sPDUOutletConfigMSPmupsOutletName DisplayString, - sPDUOutletConfigMSPmupsZone1 INTEGER, - sPDUOutletConfigMSPmupsZone2 INTEGER, - sPDUOutletConfigMSPmupsZone3 INTEGER, - sPDUOutletConfigMSPmupsZone4 INTEGER, - sPDUOutletConfigMSPmupsP1LowHum INTEGER, - sPDUOutletConfigMSPmupsP1HiHum INTEGER, - sPDUOutletConfigMSPmupsP1LowTemp INTEGER, - sPDUOutletConfigMSPmupsP1HiTemp INTEGER, - sPDUOutletConfigMSPmupsP2LowHum INTEGER, - sPDUOutletConfigMSPmupsP2HiHum INTEGER, - sPDUOutletConfigMSPmupsP2LowTemp INTEGER, - sPDUOutletConfigMSPmupsP2HiTemp INTEGER - } - -sPDUOutletConfigMSPmupsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch plus." - ::= { sPDUOutletConfigMSPmupsEntry 1 } - -sPDUOutletConfigMSPmupsName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUOutletConfigMSPmupsEntry 2 } - -sPDUOutletConfigMSPmupsOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletConfigMSPmupsEntry 3 } - -sPDUOutletConfigMSPmupsOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum size is - 23 characters. The name is set by using the - sPDUOutletConfigMSPallOutletName OID. - This OID is provided for informational purposes only." - ::= { sPDUOutletConfigMSPmupsEntry 4 } - -sPDUOutletConfigMSPmupsZone1 OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Zone 1 alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Zone 1 alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 5 } - -sPDUOutletConfigMSPmupsZone2 OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Zone 2 alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Zone 2 alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 6 } - -sPDUOutletConfigMSPmupsZone3 OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Zone 3 alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Zone 3 alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 7 } - -sPDUOutletConfigMSPmupsZone4 OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Zone 4 alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Zone 4 alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 8 } - -sPDUOutletConfigMSPmupsP1LowHum OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 1 low humidity alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 1 low humidity alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 9 } - -sPDUOutletConfigMSPmupsP1HiHum OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 1 high humidity alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 1 high humidity alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 10 } - -sPDUOutletConfigMSPmupsP1LowTemp OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 1 low temperature alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 1 low temperature alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 11 } - -sPDUOutletConfigMSPmupsP1HiTemp OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 1 high temperature alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 1 high temperature alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 12 } - -sPDUOutletConfigMSPmupsP2LowHum OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 2 low humidity alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 2 low humidity alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 13 } - -sPDUOutletConfigMSPmupsP2HiHum OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 2 high humidity alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 2 high humidity alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 14 } - -sPDUOutletConfigMSPmupsP2LowTemp OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 2 low temperature alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 2 low temperature alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 15 } - -sPDUOutletConfigMSPmupsP2HiTemp OBJECT-TYPE - SYNTAX INTEGER { - disableAlarm (1), - enableAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to disableAlarm (1) disables the - Probe 2 high temperature alarm for this outlet. - - Setting this OID to enableAlarm (2) enables the - Probe 2 high temperature alarm for this outlet." - ::= { sPDUOutletConfigMSPmupsEntry 16 } - --- the sPDUOutletStatusMSP group - -sPDUOutletStatusMSPTable OBJECT-TYPE - SYNTAX SEQUENCE OF SPDUOutletStatusMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of individual outlets. The number of - entries is contained in the sPDUMasterStatusOutletCount OID." - ::= { sPDUOutletStatusMSP 1 } - -sPDUOutletStatusMSPEntry OBJECT-TYPE - SYNTAX SPDUOutletStatusMSPEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to gather status from." - INDEX { sPDUOutletStatusMSPIndex, sPDUOutletStatusMSPOutletIndex } - ::= { sPDUOutletStatusMSPTable 1 } - -SPDUOutletStatusMSPEntry ::= - SEQUENCE { - sPDUOutletStatusMSPIndex INTEGER, - sPDUOutletStatusMSPName DisplayString, - sPDUOutletStatusMSPOutletIndex INTEGER, - sPDUOutletStatusMSPOutletName DisplayString, - sPDUOutletStatusMSPOutletState INTEGER, - sPDUOutletStatusMSPCommandPending INTEGER, - sPDUOutletStatusMSPOutletCtrlMode INTEGER - } - -sPDUOutletStatusMSPIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the MasterSwitch MSP." - ::= { sPDUOutletStatusMSPEntry 1 } - -sPDUOutletStatusMSPName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the MasterSwitch plus. The maximum - value is 23 characters. The name is set by - using the sPDUMasterConfigMSPName OID." - ::= { sPDUOutletStatusMSPEntry 2 } - -sPDUOutletStatusMSPOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { sPDUOutletStatusMSPEntry 3 } - -sPDUOutletStatusMSPOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum size is - 23 characters. The name is set by using the - sPDUOutletConfigMSPallOutletName OID. - This OID is provided for informational purposes only." - ::= { sPDUOutletStatusMSPEntry 4 } - -sPDUOutletStatusMSPOutletState OBJECT-TYPE - SYNTAX INTEGER { - outletStatusMSPOn (1), - outletStatusMSPOff (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the outletStatusMSPOn (1) value will be returned. - If the outlet is off, the outletStatusMSPOff (2) value will be - returned. " - ::= { sPDUOutletStatusMSPEntry 5 } - -sPDUOutletStatusMSPCommandPending OBJECT-TYPE - SYNTAX INTEGER { - outletStatusMSPCommandPending (1), - outletStatusMSPNoCommandPending (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the command pending - state of the outlet. If a command is pending on the - outlet, the outletStatusMSPCommandPending (1) value - will be returned. If there is not a command pending - on the outlet, the outletStatusMSPNoCommandPending (2) - will be returned." - ::= { sPDUOutletStatusMSPEntry 6 } - -sPDUOutletStatusMSPOutletCtrlMode OBJECT-TYPE - SYNTAX INTEGER { - modeGracefulShutdown (1), - modeAnnunciator (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Control Mode of the outlet. - This OID is provided for informational purposes only." - ::= { sPDUOutletStatusMSPEntry 7 } - - --- the rPDUIdent group - -rPDUIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the Rack PDU. - The maximum string size is device dependent." - ::= { rPDUIdent 1 } - -rPDUIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Rack PDU. - This value is set at the factory." - ::= { rPDUIdent 2 } - -rPDUIdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An 8-byte ID string identifying the Rack PDU firmware revision. - This value is set at the factory." - ::= { rPDUIdent 3 } - - -rPDUIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the Rack PDU was manufactured in mm/dd/yyyy format. - This value is set at the factory. The year 2000 will be - represented by 00." - ::= { rPDUIdent 4 } - -rPDUIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 10-character string identifying the model number of - the Rack PDU. This value is set at the factory." - ::= { rPDUIdent 5 } - -rPDUIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 12-character string identifying the serial number of - the Rack PDU. This value is set at the factory." - ::= { rPDUIdent 6 } - -rPDUIdentDeviceRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the electrical rating of the device in Amps." - - ::= { rPDUIdent 7 } - -rPDUIdentDeviceNumOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the number of outlets contained in the device." - - ::= { rPDUIdent 8 } - -rPDUIdentDeviceNumPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the number of phases supported by the device." - - ::= { rPDUIdent 9 } - -rPDUIdentDeviceNumBreakers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the number of circuit breakers supported by the device. - This is the same as the number of banks of outlets. - 0 will be returned if the unit has no phase breakers. " - - ::= { rPDUIdent 10 } - -rPDUIdentDeviceBreakerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return rating of the circuit breakers - on the device in Amps if it has any." - - ::= { rPDUIdent 11 } - -rPDUIdentDeviceOrientation OBJECT-TYPE - SYNTAX INTEGER { - orientHorizontal (1), - orientVertical (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the intended physical orientation of the device. - - OrientHorizonatal(1) indicates Horizontal. - OrientVertical(2) indicates Vertical." - - ::= { rPDUIdent 12 } - -rPDUIdentDeviceOutletLayout OBJECT-TYPE - SYNTAX INTEGER { - seqPhaseToNeutral (1), - seqPhaseToPhase (2), - seqPhToNeu21PhToPh (3), - seqPhToPhGrouped (4), - seqPhToNGrouped (5), - seqPToN1516PToPGrouped (6), - seqPhToPh2xGrouped (7), - seqPhToN2xGrouped (8), - seqNotApplicable (9) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return outlet layout for the device. - - seqPhaseToNeutral(1) indicates outlet layout as follows: - 1:1-N,2:2-N,3:3-N,4:1-N,5:2-N,... - - seqPhaseToPhase(2) indicates outlet layout as follows: - 1:1-2,2:2-3,3:3-1,4:1-2,5:2-3,... - - seqPhToNeu21PhToPh(3) indicates outlet layout as follows: - 1:1-N,2:2-N...21:3-N,22:1-2,23:2-3,24:3-1,... - - seqPhToPhGrouped(4) indicates outlet layout as follows: - For AP8xxx SKU's Group 1:1-2, Group 2:2-3, Group 3:3-1. - For AP7xxx SKU's Group 1:3-1. Group 2:2-3, Group 3:1-2. - - seqPhToNGrouped(5) indicates outlet layout as follows: - This unit has 3 outlet groups. Group 1:1-N, Group 2:2-N, Group 3:3-N. - - seqPToN1516PToPGrouped(6) indicates outlet layout as follows: - This unit has 4 outlet groups. Group 1 (Outlets 1-14):1-2, - Group 2 (Outlets 15-16):1-N, Group 3:2-3, Group 4:3-1. - - seqPhToPh2xGrouped(7) indicates outlet layout as follows: - This unit has 6 outlet groups. Group 1:1-2, Group 2:1-2, Group 3:2-3, - Group 4:2-3, Group 5:3-1, Group 6:3-1. - - seqPhToN2xGrouped(8) indicates outlet layout as follows: - This unit has 6 outlet groups. Group 1:1-N, Group 2:1-N, Group 3:2-N, - Group 4:2-N, Group 5:3-N, Group 6:3-N. - - seqNotApplicable(9): - Outlet layout does not affect any of the user interfaces. - These SKUs may report seqNotApplicable(9) if there is - not an exact outlet layout match available." - ::= { rPDUIdent 13 } - -rPDUIdentDeviceDisplayOrientation OBJECT-TYPE - SYNTAX INTEGER { - displayNormal (1), - displayReverse (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this OID will return the intended physical orientation of the Seven-Segment Display. - - Normal(1) indicates Normal. - Reverse(2)indicates Upside-Down." - - ::= { rPDUIdent 14 } - - -rPDUIdentDeviceLinetoLineVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting/Setting this OID will return/set the Line to Line Voltage. - This OID defaults to the nominal input line voltage in volts AC. - This setting is used to calculate total power and must be configured for best accuracy. - This OID does not apply to AP86XX, AP88XX, or AP89XX SKUs. - - The valid range is between 0V to 440V" - ::= { rPDUIdent 15 } - -rPDUIdentDevicePowerWatts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the Power in Watts." - - ::= { rPDUIdent 16 } - -rPDUIdentDevicePowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting/setting this OID will return/set the - Power Factor in thousanths (1000 is power factor of 1). - For AP8XXX SKUs, this OID is read-only - - Valid range is from 0 to 1000." - ::= { rPDUIdent 17 } - -rPDUIdentDevicePowerVA OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the Power in VA." - - ::= { rPDUIdent 18 } - -rPDUIdentDeviceLinetoNeutralVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting/Setting this OID will return/set the Line to Neutral Voltage. - This OID defaults to the nominal line to neutral voltage in volts AC. - This setting is used to calculate total power and must be configured for best accuracy. - This OID applies only to AP7823. For all other models, the OID is fixed at 0. - - The valid range is between 0V to 440V." - - ::= { rPDUIdent 19 } - --- the rPDULoadDevice group - -rPDULoadDevMaxPhaseLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the maximum rated power - that each phase of the Rack PDU can provide. It is - represented in Amps. - - 0 will be returned if the unit is banked." - ::= { rPDULoadDevice 1 } - -rPDULoadDevNumPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of phases available with this Rack PDU." - ::= { rPDULoadDevice 2 } - -rPDULoadDevMaxBankLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the maximum rated power - that a bank of the Rack PDU can provide. It is - represented in Amps. - - 0 will be returned if the device does not have any banks." - - ::= { rPDULoadDevice 3 } - -rPDULoadDevNumBanks OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of banks of outlets available with this Rack PDU. - A bank of outlets has a unique circuit breaker for a subset - of the total number of outlets on the rPDU. - - 0 will be returned if the unit has no banks." - ::= { rPDULoadDevice 4 } - -rPDULoadDevBankTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the Bank Table." - ::= { rPDULoadDevice 5 } - - -rPDULoadDevBankTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDULoadDevBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting the Bank Max Load in the Rack PDU." - - ::= { rPDULoadDevice 6 } - -rPDULoadDevBankEntry OBJECT-TYPE - SYNTAX RPDULoadDevBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Rack PDU Banks Access." - INDEX { rPDULoadDevBankIndex} - ::= { rPDULoadDevBankTable 1 } - -RPDULoadDevBankEntry ::= - SEQUENCE { - rPDULoadDevBankIndex INTEGER, - rPDULoadDevBankNumber INTEGER, - rPDULoadDevBankMaxLoad INTEGER - } - -rPDULoadDevBankIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU bank entry." - ::= { rPDULoadDevBankEntry 1 } - -rPDULoadDevBankNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the bank number." - - ::= { rPDULoadDevBankEntry 2 } - -rPDULoadDevBankMaxLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the maximum rated power - that each bank of the Rack PDU can provide. It is - represented in Amps." - - ::= { rPDULoadDevBankEntry 3 } - -rPDULoadDevMaxOutletTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the Outlet Table." - ::= { rPDULoadDevice 7 } - - -rPDULoadDevMaxOutletTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDULoadDevMaxOutletEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting the Max Outlet Load in an Outlet Monitored Rack PDU." - ::= { rPDULoadDevice 8 } - -rPDULoadDevMaxOutletEntry OBJECT-TYPE - SYNTAX RPDULoadDevMaxOutletEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to Max Outlet Load of an Outlet Monitored Rack PDU" - INDEX { rPDULoadDevOutletIndex} - ::= { rPDULoadDevMaxOutletTable 1 } - -RPDULoadDevMaxOutletEntry ::= - SEQUENCE { - rPDULoadDevOutletIndex INTEGER, - rPDULoadDevOutletNumber INTEGER, - rPDULoadDevMaxOutletLoad INTEGER - } - -rPDULoadDevOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Outlet Monitored Rack PDU Max Outlet Load entry." - ::= { rPDULoadDevMaxOutletEntry 1 } - -rPDULoadDevOutletNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the Outlet number." - ::= { rPDULoadDevMaxOutletEntry 2 } - - -rPDULoadDevMaxOutletLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the maximum rated power - that each Outlet of an Outlet Monitored Rack PDU can provide. It is - represented in Amps. " - ::= { rPDULoadDevMaxOutletEntry 3 } - - - --- the rPDULoadPhaseConfig group - -rPDULoadPhaseConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDULoadPhaseConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of each Rack PDU phase. - The number of entries is contained in the - rPDULoadDevNumPhases OID." - ::= { rPDULoadPhaseConfig 1 } - -rPDULoadPhaseConfigEntry OBJECT-TYPE - SYNTAX RPDULoadPhaseConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Rack PDU phase to configure." - INDEX { rPDULoadPhaseConfigIndex} - ::= { rPDULoadPhaseConfigTable 1 } - -RPDULoadPhaseConfigEntry ::= - SEQUENCE { - rPDULoadPhaseConfigIndex INTEGER, - rPDULoadPhaseConfigLowLoadThreshold INTEGER, - rPDULoadPhaseConfigNearOverloadThreshold INTEGER, - rPDULoadPhaseConfigOverloadThreshold INTEGER, - rPDULoadPhaseConfigAlarm INTEGER - } - -rPDULoadPhaseConfigIndex OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU phase entry." - ::= { rPDULoadPhaseConfigEntry 1 } - -rPDULoadPhaseConfigLowLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing a low consumption condition. It is - represented in Amps. A warning will be issued when the - load is less than the threshold value. - - A threshold value of 0 Amps effectively disables this - warning. - - Maximum value must be less than the value returned - by the rPDULoadPhaseConfigNearOverloadThreshold OID." - ::= { rPDULoadPhaseConfigEntry 2 } - -rPDULoadPhaseConfigNearOverloadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing an overload condition. It is - represented in Amps. A warning will be issued when the - load is greater than or equal to the threshold value. - - Minimum value must be greater than the value returned by - the rPDULoadPhaseConfigLowLoadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the rPDULoadPhaseConfigOverloadThreshold OID." - ::= { rPDULoadPhaseConfigEntry 3 } - -rPDULoadPhaseConfigOverloadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load has entered an overload condition. It is - represented in Amps. A warning will be issued when the - load is greater than or equal to the threshold value. - - Minimum value must be greater than or equal to the value - returned by the rPDULoadPhaseConfigNearOverloadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the rPDULoadDevMaxPhaseLoad OID." - ::= { rPDULoadPhaseConfigEntry 4 } - - -rPDULoadPhaseConfigAlarm OBJECT-TYPE - SYNTAX INTEGER { - noLoadAlarm (1), - underCurrentAlarm (2), - nearOverCurrentAlarm (3), - overCurrentAlarm (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the current Phase Alarm." - ::= { rPDULoadPhaseConfigEntry 5 } - - - - - --- the rPDULoadStatus group - -rPDULoadStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDULoadStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of each Rack PDU phase/bank. - The number of entries is calculated by adding - the number of phases (rPDULoadDevNumPhases OID) and - the number of banks of outlets (rPDULoadDevNumBanks) - Number of entries = #phases + #banks. - NOTE: If a device has phase and bank information, all phase information - shall precede the bank information. If a device has total information, - it shall precede both the bank and the phase information." - ::= { rPDULoadStatus 1 } - -rPDULoadStatusEntry OBJECT-TYPE - SYNTAX RPDULoadStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Rack PDU phase/bank to gather status from." - INDEX { rPDULoadStatusIndex} - ::= { rPDULoadStatusTable 1 } - -RPDULoadStatusEntry ::= - SEQUENCE { - rPDULoadStatusIndex INTEGER, - rPDULoadStatusLoad Gauge, - rPDULoadStatusLoadState INTEGER, - rPDULoadStatusPhaseNumber INTEGER, - rPDULoadStatusBankNumber INTEGER - } - -rPDULoadStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU phase/bank entry. All phase information will precede - any bank information" - ::= { rPDULoadStatusEntry 1 } - -rPDULoadStatusLoad OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the phase/bank load measured - in tenths of Amps." - ::= { rPDULoadStatusEntry 2 } - -rPDULoadStatusLoadState OBJECT-TYPE - SYNTAX INTEGER { - phaseLoadNormal (1), - phaseLoadLow (2), - phaseLoadNearOverload (3), - phaseLoadOverload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the phase/bank load state. - - phaseLoadNormal(1) indicates that the phase/bank is - operating properly within the rPDULoadConfigLowLoadThreshold - and rPDULoadConfigNearOverloadThreshold OID values. - - phaseLoadLow(2) indicates that the phase/bank load has - dropped below the rPDULoadConfigLowLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - phaseLoadNearOverload(3) indicates that the phase/bank load - is greater than or equal to the - rPDULoadConfigNearOverloadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - phaseLoadOverload(4) indicates that the phase/bank load is - greater than or equal to the rPDULoadConfigOverloadThreshold - OID value. - An SNMP trap will occur when this state is entered or cleared." - ::= { rPDULoadStatusEntry 3 } - -rPDULoadStatusPhaseNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase number to which this record refers." - ::= { rPDULoadStatusEntry 4 } - -rPDULoadStatusBankNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bank number to which this record refers. A value of 0 will be returned if - any bank is not present or if it is phase related." - ::= { rPDULoadStatusEntry 5 } - - --- the rPDULoadBankConfig group - -rPDULoadBankConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDULoadBankConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of each Rack PDU bank. - The number of entries is contained in the - rPDULoadDevNumBanks OID." - ::= { rPDULoadBankConfig 1 } - -rPDULoadBankConfigEntry OBJECT-TYPE - SYNTAX RPDULoadBankConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Rack PDU bank to configure." - INDEX { rPDULoadBankConfigIndex} - ::= { rPDULoadBankConfigTable 1 } - -RPDULoadBankConfigEntry ::= - SEQUENCE { - rPDULoadBankConfigIndex INTEGER, - rPDULoadBankConfigLowLoadThreshold INTEGER, - rPDULoadBankConfigNearOverloadThreshold INTEGER, - rPDULoadBankConfigOverloadThreshold INTEGER, - rPDULoadBankConfigAlarm INTEGER - } - -rPDULoadBankConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU bank entry." - ::= { rPDULoadBankConfigEntry 1 } - -rPDULoadBankConfigLowLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing a low consumption condition. It is - represented in Amps. A warning will be issued when the - load is less than the threshold value. - - A threshold value of 0 Amps effectively disables this - warning. - - Maximum value must be less than the value returned - by the rPDULoadBankConfigNearOverloadThreshold OID." - - ::= { rPDULoadBankConfigEntry 2 } - -rPDULoadBankConfigNearOverloadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing an overload condition. It is - represented in Amps. A warning will be issued when the - load is greater than or equal to the threshold value. - - Minimum value must be greater than the value returned by - the rPDULoadBankConfigLowLoadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the rPDULoadBankConfigOverloadThreshold OID." - - ::= { rPDULoadBankConfigEntry 3 } - -rPDULoadBankConfigOverloadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load has entered an overload condition. It is - represented in Amps. A warning will be issued when the - load is greater than or equal to the threshold value. - - Minimum value must be greater than or equal to the value - returned by the rPDULoadBankConfigNearOverloadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the rPDULoadDevMaxBankLoad OID." - - ::= { rPDULoadBankConfigEntry 4 } - -rPDULoadBankConfigAlarm OBJECT-TYPE - SYNTAX INTEGER { - noLoadAlarm (1), - underCurrentAlarm (2), - nearOverCurrentAlarm (3), - overCurrentAlarm (4) - - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - " Getting this OID will return the current Bank Alarm." - ::= { rPDULoadBankConfigEntry 5 } - - --- the rPDUOutletDevice group - -rPDUOutletDevCommand OBJECT-TYPE - SYNTAX INTEGER { - noCommandAll (1), - immediateAllOn (2), - immediateAllOff (3), - immediateAllReboot (4), - delayedAllOn (5), - delayedAllOff (6), - delayedAllReboot (7), - cancelAllPendingCommands (8) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to immediateAllOn (2) will turn all outlets - on immediately. - - Setting this OID to immediateAllOff (3) will turn all outlets - off immediately. - - Setting this OID to immediateAllReboot (4) will reboot all outlets - immediately. - - Setting this OID to delayedAllOn (5) will turn all outlets on as - defined by each outlet's rPDUOutletConfigPowerOnTime OID value. - - Setting this OID to delayedAllOff (6) will turn all outlets - off as defined by each outlet's rPDUOutletConfigPowerOffTime OID value. - - Setting this OID to delayedAllReboot (7) will cause a - delayedAllOff command to be performed. Once all outlets are off, - the Switched Rack PDU will then delay the largest - rPDUOutletConfigRebootDuration OID time, and then perform a - delayedAllOn command. - - Setting this OID to cancelAllPendingCommands (8) will cause all pending - commands on the Switched Rack PDU to be canceled. - - Getting this OID will return the noCommandAll (1) value." - ::= { rPDUOutletDevice 1 } - -rPDUOutletDevColdstartDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of delay, in seconds, between when - power is provided to the Switched Rack PDU and - when the Switched Rack PDU provides basic master - power to the outlets. - - Allowed values are: - - -1 - never apply power automatically. - 0 - apply power immediately. - 1 to 300 - delay up to 300 seconds (5 minutes)." - ::= { rPDUOutletDevice 2 } - -rPDUOutletDevNumCntrlOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of controlled outlets on this Switched Rack PDU." - ::= { rPDUOutletDevice 3 } - -rPDUOutletDevNumTotalOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of outlets on this Rack PDU." - ::= { rPDUOutletDevice 4 } - -rPDUOutletDevMonitoredOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of monitored outlets on this Rack PDU." - ::= { rPDUOutletDevice 5 } - - --- the rPDUOutletPhase group - -rPDUOutletPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUOutletPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for management of outlets on a per phase basis." - ::= { rPDUOutletPhase 1 } - -rPDUOutletPhaseEntry OBJECT-TYPE - SYNTAX RPDUOutletPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The phase to manage." - INDEX { rPDUOutletPhaseIndex} - ::= { rPDUOutletPhaseTable 1 } - -RPDUOutletPhaseEntry ::= - SEQUENCE { - rPDUOutletPhaseIndex INTEGER, - rPDUOutletPhaseOverloadRestriction INTEGER - } - -rPDUOutletPhaseIndex OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Switched Rack PDU phase entry." - ::= { rPDUOutletPhaseEntry 1 } - -rPDUOutletPhaseOverloadRestriction OBJECT-TYPE - SYNTAX INTEGER { - alwaysAllowTurnON (1), - restrictOnNearOverload (2), - restrictOnOverload (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID controls the behavior of a Switched Rack PDU - phase when an overload condition is possible and - additional outlets are requested to be turned on. - - Setting this OID to alwaysAllowTurnON (1) will always allow - the outlets on the corresponding phase to turn on. - - Setting this OID to restrictOnNearOverload (2) will not allow - outlets on the corresponding phase to turn on if the - rPDULoadConfigNearOverloadThreshold OID is exceeded. - - Setting this OID to restrictOnOverload (3) will not allow - outlets on the corresponding phase to turn on if the - rPDULoadConfigOverloadThreshold OID is exceeded." - ::= { rPDUOutletPhaseEntry 2 } - - --- the rPDUOutletControl group - -rPDUOutletControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUOutletControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of the individual outlets. - The number of entries is contained in the - rPDUOutletDevNumCntrlOutlets OID." - ::= { rPDUOutletControl 1 } - -rPDUOutletControlEntry OBJECT-TYPE - SYNTAX RPDUOutletControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlet to control." - INDEX { rPDUOutletControlIndex} - ::= { rPDUOutletControlTable 1 } - -RPDUOutletControlEntry ::= - SEQUENCE { - rPDUOutletControlIndex INTEGER, - rPDUOutletControlOutletName DisplayString, - rPDUOutletControlOutletPhase INTEGER, - rPDUOutletControlOutletCommand INTEGER, - rPDUOutletControlOutletBank INTEGER - } - -rPDUOutletControlIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { rPDUOutletControlEntry 1 } - -rPDUOutletControlOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum string size is device dependent. - An error will be returned if the set request exceeds the max size. - This OID is provided for informational purposes only." - ::= { rPDUOutletControlEntry 2 } - -rPDUOutletControlOutletPhase OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3), - phase1-2 (4), - phase2-3 (5), - phase3-1 (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase/s associated with this outlet. - - For single phase devices, this object will always - return phase1(1). - - For 3-phase devices, this object will return phase1 (1), - phase2 (2), or phase3 (3) for outlets tied to a single - phase. For outlets tied to two phases, this object will - return phase1-2 (4) for phases 1 and 2, phase2-3 (5) for - phases 2 and 3, and phase3-1 (6) for phases 3 and 1." - ::= { rPDUOutletControlEntry 3 } - -rPDUOutletControlOutletCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateOn (1), - immediateOff (2), - immediateReboot (3), - delayedOn (4), - delayedOff (5), - delayedReboot (6), - cancelPendingCommand (7) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the immediateOn (1) value will be returned. - If the outlet is off, the immediateOff (2) value will be - returned. - - - Setting this variable to immediateOn (1) will immediately turn - the outlet on. - - Setting this variable to immediateOff (2) will immediately turn - the outlet off. - - Setting this variable to immediateReboot (3) will immediately - reboot the outlet. - - Setting this variable to delayedOn (4) will turn the outlet on - after the rPDUOutletConfigPowerOnTime OID time has elapsed. - - Setting this variable to delayedOff (5) will turn the outlet off - after the rPDUOutletConfigPowerOffTime OID time has elapsed. - - Setting this variable to delayedReboot (6) will cause the - Switched Rack PDU to perform a delayedOff command, wait the - rPDUOutletConfigRebootDuration OID time, and then perform a - delayedOn command. - - Setting this variable to cancelPendingCommand (7) will cause any - pending command to this outlet to be canceled." - - ::= { rPDUOutletControlEntry 4 } - -rPDUOutletControlOutletBank OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bank associated with this outlet." - ::= { rPDUOutletControlEntry 5 } - - --- the rPDUOutletConfig group - -rPDUOutletConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the rPDUOutletDevNumCntrlOutlets OID." - ::= { rPDUOutletConfig 1 } - -rPDUOutletConfigEntry OBJECT-TYPE - SYNTAX RPDUOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlet to configure." - INDEX { rPDUOutletConfigIndex} - ::= { rPDUOutletConfigTable 1 } - -RPDUOutletConfigEntry ::= - SEQUENCE { - rPDUOutletConfigIndex INTEGER, - rPDUOutletConfigOutletName DisplayString, - rPDUOutletConfigOutletPhase INTEGER, - rPDUOutletConfigPowerOnTime INTEGER, - rPDUOutletConfigPowerOffTime INTEGER, - rPDUOutletConfigRebootDuration INTEGER, - rPDUOutletConfigOutletBank INTEGER - } - -rPDUOutletConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { rPDUOutletConfigEntry 1 } - -rPDUOutletConfigOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum string size is device dependent. - An error will be returned if the set request exceeds the max size." - ::= { rPDUOutletConfigEntry 2 } - -rPDUOutletConfigOutletPhase OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3), - phase1-2 (4), - phase2-3 (5), - phase3-1 (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase/s associated with this outlet. - - For single phase devices, this object will always - return phase1(1). - - For 3-phase devices, this object will return phase1 (1), - phase2 (2), or phase3 (3) for outlets tied to a single - phase. For outlets tied to two phases, this object will - return phase1-2 (4) for phases 1 and 2, phase2-3 (5) for - phases 2 and 3, and phase3-1 (6) for phases 3 and 1." - ::= { rPDUOutletConfigEntry 3 } - -rPDUOutletConfigPowerOnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (in seconds) the outlet will delay - powering on at coldstart or when a command that requires - a turn-on delay is issued. - - Allowed values are: - - -1 - never power on. - 0 - power on immediately. - 1 to 7200 - power on up to 7200 seconds after being - commanded." - ::= { rPDUOutletConfigEntry 4 } - -rPDUOutletConfigPowerOffTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time (in seconds) the outlet will delay - powering off when a command that requires - a turn-off delay is issued. - - Allowed values are: - - -1 - never power off. - 0 - power off immediately. - 1 to 7200 - power off up to 7200 seconds after being - commanded." - ::= { rPDUOutletConfigEntry 5 } - -rPDUOutletConfigRebootDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "During a reboot sequence, power is turned off and then - back on. This OID defines the amount of time to wait, - in seconds, after turning the power off, at the start - of the sequence, before turning power back on, at the - end of the reboot sequence. - - Allowed range is any value between 5 and 60 seconds (1 minute)." - ::= { rPDUOutletConfigEntry 6 } - -rPDUOutletConfigOutletBank OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bank associated with this outlet." - ::= { rPDUOutletConfigEntry 7 } - --- Monitored Outlets table - -rPDUOutletConfigMonitoredTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the Outlet Config Monitored Table" - ::= { rPDUOutletConfig 2 } - - -rPDUOutletConfigMonitoredTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUOutletConfigMonitoredEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting/setting of outlet thresholds of an Outlet Monitored Rack PDU." - ::= { rPDUOutletConfig 3 } - -rPDUOutletConfigMonitoredEntry OBJECT-TYPE - SYNTAX RPDUOutletConfigMonitoredEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to Monitored Outlet entries" - INDEX { rPDUOutletConfigMonitoredIndex } - ::= { rPDUOutletConfigMonitoredTable 1 } - -RPDUOutletConfigMonitoredEntry ::= - SEQUENCE { - rPDUOutletConfigMonitoredIndex INTEGER, - rPDUOutletConfigMonitoredName DisplayString, - rPDUOutletConfigMonitoredNumber INTEGER, - rPDUOutletConfigMonitoredLowLoadThreshold INTEGER, - rPDUOutletConfigMonitoredNearOverloadThreshold INTEGER, - rPDUOutletConfigMonitoredOverloadThreshold INTEGER - } - -rPDUOutletConfigMonitoredIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the RACK PDU Phase entry." - ::= { rPDUOutletConfigMonitoredEntry 1 } - -rPDUOutletConfigMonitoredName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the Monitored Outlet. The maximum string size is device dependent. - An error will be returned if the set request exceeds the max size." - ::= { rPDUOutletConfigMonitoredEntry 2 } - -rPDUOutletConfigMonitoredNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The outlet number of an Outlet Monitored RACK PDU." - ::= { rPDUOutletConfigMonitoredEntry 3 } - - -rPDUOutletConfigMonitoredLowLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing a low consumption condition. It is - represented in Amps. A warning will be issued when the - load is less than the threshold value. - - A threshold value of 0 Amps effectively disables this - warning. - - Maximum value must be less than the value returned - by the rPDUOutletConfigMonitoredNearOverloadThreshold OID. - - 0 will be returned if the unit is not Outlet Monitored Rack PDU." - ::= { rPDUOutletConfigMonitoredEntry 4 } - -rPDUOutletConfigMonitoredNearOverloadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load is nearing an overload condition. It is - represented in Amps. A warning will be issued when the - load is greater than or equal to the threshold value. - - Minimum value must be greater than the value returned by - the rPDUOutletConfigMonitoredLowLoadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the rPDUOutletConfigMonitoredOverloadThreshold OID. - - 0 will be returned if the unit is not Outlet Monitored Rack PDU." - ::= { rPDUOutletConfigMonitoredEntry 5 } - -rPDUOutletConfigMonitoredOverloadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the power consumption of - the load has entered an overload condition. It is - represented in Amps. A warning will be issued when the - load is greater than or equal to the threshold value. - - Minimum value must be greater than or equal to the value - returned by the rPDUOutletConfigMonitoredNearOverloadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the rPDULoadDevMaxOutletLoad OID. - - 0 will be returned if the unit is not Outlet Monitored Rack PDU." - ::= { rPDUOutletConfigMonitoredEntry 6 } - - - - --- the rPDUOutletStatus group - -rPDUOutletStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUOutletStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of individual outlets. The number of - entries is contained in the rPDUOutletDevNumCntrlOutlets OID or - rPDUOutletDevMonitoredOutlets OID." - ::= { rPDUOutletStatus 1 } - -rPDUOutletStatusEntry OBJECT-TYPE - SYNTAX RPDUOutletStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlet to gather status from." - INDEX { rPDUOutletStatusIndex} - ::= { rPDUOutletStatusTable 1 } - -RPDUOutletStatusEntry ::= - SEQUENCE { - rPDUOutletStatusIndex INTEGER, - rPDUOutletStatusOutletName DisplayString, - rPDUOutletStatusOutletPhase INTEGER, - rPDUOutletStatusOutletState INTEGER, - rPDUOutletStatusCommandPending INTEGER, - rPDUOutletStatusOutletBank INTEGER, - rPDUOutletStatusLoad Gauge - } - -rPDUOutletStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { rPDUOutletStatusEntry 1 } - -rPDUOutletStatusOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. The maximum string size is device dependent. - This OID is provided for informational purposes only." - ::= { rPDUOutletStatusEntry 2 } - -rPDUOutletStatusOutletPhase OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3), - phase1-2 (4), - phase2-3 (5), - phase3-1 (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase/s associated with this outlet. - - For single phase devices, this object will always - return phase1(1). - - For 3-phase devices, this object will return phase1 (1), - phase2 (2), or phase3 (3) for outlets tied to a single - phase. For outlets tied to two phases, this object will - return phase1-2 (4) for phases 1 and 2, phase2-3 (5) for - phases 2 and 3, and phase3-1 (6) for phases 3 and 1." - ::= { rPDUOutletStatusEntry 3 } - -rPDUOutletStatusOutletState OBJECT-TYPE - SYNTAX INTEGER { - outletStatusOn (1), - outletStatusOff (2) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the outletStatusOn (1) value will be returned. - If the outlet is off, the outletStatusOff (2) value will be - returned." - ::= { rPDUOutletStatusEntry 4 } - -rPDUOutletStatusCommandPending OBJECT-TYPE - SYNTAX INTEGER { - outletStatusCommandPending (1), - outletStatusNoCommandPending (2) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the command pending - state of the outlet. If a command is pending on the - outlet, the outletStatusCommandPending (1) value - will be returned. If there is not a command pending - on the outlet, the outletStatusNoCommandPending (2) - will be returned." - ::= { rPDUOutletStatusEntry 5 } - -rPDUOutletStatusOutletBank OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bank associated with this outlet." - ::= { rPDUOutletStatusEntry 6 } - -rPDUOutletStatusLoad OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the measured Outlet load for - an Outlet Monitored Rack PDU in tenths of Amps. For other - models this OID is not supported." - ::= { rPDUOutletStatusEntry 7 } - - --- the rPDUOutletBank group - -rPDUOutletBankTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUOutletBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for management of outlets on a per bank basis." - ::= { rPDUOutletBank 1 } - -rPDUOutletBankEntry OBJECT-TYPE - SYNTAX RPDUOutletBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The bank to manage." - INDEX { rPDUOutletBankIndex} - ::= { rPDUOutletBankTable 1 } - -RPDUOutletBankEntry ::= - SEQUENCE { - rPDUOutletBankIndex INTEGER, - rPDUOutletBankOverloadRestriction INTEGER - } - -rPDUOutletBankIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Switched Rack PDU bank entry." - ::= { rPDUOutletBankEntry 1 } - -rPDUOutletBankOverloadRestriction OBJECT-TYPE - SYNTAX INTEGER { - alwaysAllowTurnON (1), - restrictOnNearOverload (2), - restrictOnOverload (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID controls the behavior of a Switched Rack PDU - bank when an overload condition is possible and - additional outlets are requested to be turned on. - - Setting this OID to alwaysAllowTurnON (1) will always allow - the outlets on the corresponding bank to turn on. - - Setting this OID to restrictOnNearOverload (2) will not allow - outlets on the corresponding bank to turn on if the - rPDULoadBankConfigNearOverloadThreshold OID is exceeded. - - Setting this OID to restrictOnOverload (3) will not allow - outlets on the corresponding bank to turn on if the - rPDULoadBankConfigOverloadThreshold OID is exceeded." - ::= { rPDUOutletBankEntry 2 } - --- the rPDUPowerSupplyDevice group - -rPDUPowerSupply1Status OBJECT-TYPE - SYNTAX INTEGER { - powerSupplyOneOk (1), - powerSupplyOneFailed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return powerSupply1Ok(1) if power - supply 1 is functioning normally. If not functioning normally, - this OID will return powerSupply1Failed(2)." - ::= { rPDUPowerSupplyDevice 1 } - -rPDUPowerSupply2Status OBJECT-TYPE - SYNTAX INTEGER { - powerSupplyTwoOk (1), - powerSupplyTwoFailed (2), - powerSupplyTwoNotPresent (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return powerSupply2Ok(1) if power - supply 2 is functioning normally. If not functioning normally, - this OID will return powerSupply2Failed(2). - - Metered Rack PDUs do not have a redundant powersupply." - - ::= { rPDUPowerSupplyDevice 2 } - - - -rPDUPowerSupplyAlarm OBJECT-TYPE - SYNTAX INTEGER { - allAvailablePowerSuppliesOK (1), - powerSupplyOneFailed (2), - powerSupplyTwoFailed (3), - powerSupplyOneandTwoFailed (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return powerSupply Alarm" - ::= { rPDUPowerSupplyDevice 3 } - --- the rPDUStatus group - -rPDUStatusBankTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the Status Bank Table" - ::= { rPDUStatus 1 } - - -rPDUStatusBankTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUStatusBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of each Rack PDU Bank" - ::= { rPDUStatus 2 } - -rPDUStatusBankEntry OBJECT-TYPE - SYNTAX RPDUStatusBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to Bank entries" - INDEX { rPDUStatusBankIndex } - ::= { rPDUStatusBankTable 1 } - -RPDUStatusBankEntry ::= - SEQUENCE { - rPDUStatusBankIndex INTEGER, - rPDUStatusBankNumber INTEGER, - rPDUStatusBankState INTEGER - } - -rPDUStatusBankIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the RACK PDU Bank entry." - ::= { rPDUStatusBankEntry 1 } - -rPDUStatusBankNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the bank number." - ::= { rPDUStatusBankEntry 2 } - -rPDUStatusBankState OBJECT-TYPE - SYNTAX INTEGER { - bankLoadNormal (1), - bankLoadLow (2), - bankLoadNearOverload (3), - bankLoadOverload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the bank load state. - - bankLoadNormal(1) indicates that the bank is - operating properly within the rPDULoadBankConfigLowLoadThreshold - and rPDULoadBankConfigNearOverloadThreshold OID values. - - bankLoadLow(2) indicates that the bank load has - dropped below the rPDULoadBankConfigLowLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - bankLoadNearOverload(3) indicates that the bank load - is greater than or equal to the - rPDULoadBankConfigNearOverloadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - bankLoadOverload(4) indicates that the bank load is - greater than or equal to the rPDULoadBankConfigOverloadThreshold - OID value. - An SNMP trap will occur when this state is entered or cleared." - ::= { rPDUStatusBankEntry 3 } - --- Phase status table - -rPDUStatusPhaseTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the Status Phase Table" - ::= { rPDUStatus 3 } - - -rPDUStatusPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUStatusPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of each Rack PDU Phase" - ::= { rPDUStatus 4 } - -rPDUStatusPhaseEntry OBJECT-TYPE - SYNTAX RPDUStatusPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to Phase entries" - INDEX { rPDUStatusPhaseIndex } - ::= { rPDUStatusPhaseTable 1 } - -RPDUStatusPhaseEntry ::= - SEQUENCE { - rPDUStatusPhaseIndex INTEGER, - rPDUStatusPhaseNumber INTEGER, - rPDUStatusPhaseState INTEGER - } - -rPDUStatusPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the RACK PDU Phase entry." - ::= { rPDUStatusPhaseEntry 1 } - -rPDUStatusPhaseNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the phase number." - ::= { rPDUStatusPhaseEntry 2 } - -rPDUStatusPhaseState OBJECT-TYPE - SYNTAX INTEGER { - phaseLoadNormal (1), - phaseLoadLow (2), - phaseLoadNearOverload (3), - phaseLoadOverload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the Phase load state. - - phaseLoadNormal(1) indicates that the Phase is - operating properly within the rPDULoadPhaseConfigLowLoadThreshold - and rPDULoadPhaseConfigNearOverloadThreshold OID values. - - phaseLoadLow(2) indicates that the Phase load has - dropped below the rPDULoadPhaseConfigLowLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - phaseLoadNearOverload(3) indicates that the Phase load - is greater than or equal to the - rPDULoadPhaseConfigNearOverloadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - phaseLoadOverload(4) indicates that the Phase load is - greater than or equal to the rPDULoadPhaseConfigOverloadThreshold - OID value. - An SNMP trap will occur when this state is entered or cleared." - ::= { rPDUStatusPhaseEntry 3 } - --- Outlet status table - -rPDUStatusOutletTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the Status Outlet Table" - ::= { rPDUStatus 5 } - - -rPDUStatusOutletTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDUStatusOutletEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting of status of each Outlet of an Outlet Monitored Rack PDU." - ::= { rPDUStatus 6 } - -rPDUStatusOutletEntry OBJECT-TYPE - SYNTAX RPDUStatusOutletEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to Outlet entries" - INDEX { rPDUStatusOutletIndex } - ::= { rPDUStatusOutletTable 1 } - -RPDUStatusOutletEntry ::= - SEQUENCE { - rPDUStatusOutletIndex INTEGER, - rPDUStatusOutletNumber INTEGER, - rPDUStatusOutletState INTEGER - } - -rPDUStatusOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the RACK PDU Outlet entry." - ::= { rPDUStatusOutletEntry 1 } - -rPDUStatusOutletNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the Outlet number." - ::= { rPDUStatusOutletEntry 2 } - -rPDUStatusOutletState OBJECT-TYPE - SYNTAX INTEGER { - outletLoadNormal (1), - outletLoadLow (2), - outletLoadNearOverload (3), - outletLoadOverload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the Outlet load state. - - outletLoadNormal(1) indicates that the Outlet is - operating properly within the rPDUOutletConfigMonitoredLowLoadThreshold - and rPDUOutletConfigMonitoredNearOverloadThreshold OID values. - - outletLoadLow(2) indicates that the Outlet load has - dropped below the rPDUOutletConfigMonitoredLowLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - outletLoadNearOverload(3) indicates that the Outlet load - is greater than or equal to the - rPDUOutletConfigMonitoredNearOverloadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - outletLoadOverload(4) indicates that the Outlet load is - greater than or equal to the rPDUOutletConfigMonitoredOverloadThreshold - OID value. - An SNMP trap will occur when this state is entered or cleared." - ::= { rPDUStatusOutletEntry 3 } - --- Common rPDU2 values - -Rpdu2OutletPhaseLayoutType ::= INTEGER { - seqPhase1ToNeutral (1), - seqPhase2ToNeutral (2), - seqPhase3ToNeutral (3), - seqPhase1ToPhase2 (4), - seqPhase2ToPhase3 (5), - seqPhase3ToPhase1 (6) - } - --- rPDU2 Ident Table - -rPDU2IdentTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Rack PDUs" - ::= { rPDU2 1 } - -rPDU2IdentTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2IdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU identification data" - ::= { rPDU2 2 } - -rPDU2IdentEntry OBJECT-TYPE - SYNTAX RPDU2IdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Identification data from Rack PDU being queried" - INDEX { rPDU2IdentIndex } - ::= { rPDU2IdentTable 1 } - -RPDU2IdentEntry ::= - SEQUENCE { - rPDU2IdentIndex INTEGER, - rPDU2IdentModule INTEGER, - rPDU2IdentName DisplayString, - rPDU2IdentLocation DisplayString, - rPDU2IdentHardwareRev DisplayString, - rPDU2IdentFirmwareRev DisplayString, - rPDU2IdentDateOfManufacture DisplayString, - rPDU2IdentModelNumber DisplayString, - rPDU2IdentSerialNumber DisplayString, - rPDU2IdentContact DisplayString - } - -rPDU2IdentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU identification table - entry" - ::= { rPDU2IdentEntry 1 } - -rPDU2IdentModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2IdentEntry 2 } - -rPDU2IdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the Rack PDU" - ::= { rPDU2IdentEntry 3 } - -rPDU2IdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the location - of the Rack PDU" - ::= { rPDU2IdentEntry 4 } - -rPDU2IdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Rack PDU hardware version" - ::= { rPDU2IdentEntry 5 } - -rPDU2IdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Rack PDU firware version" - ::= { rPDU2IdentEntry 6 } - -rPDU2IdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date the Rack PDU was manufactured - in mm/dd/yyyy format" - ::= { rPDU2IdentEntry 7 } - -rPDU2IdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Rack PDU model number" - ::= { rPDU2IdentEntry 8 } - -rPDU2IdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Rack PDU serial number" - ::= { rPDU2IdentEntry 9 } - -rPDU2IdentContact OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the - person to contact regarding the Rack PDU" - ::= { rPDU2IdentEntry 10 } - --- rPDU2 Device Data - -rPDU2DeviceTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Rack PDUs" - ::= { rPDU2 3 } - -rPDU2Device OBJECT IDENTIFIER ::= { rPDU2 4 } - --- rPDU2 Device Config - -rPDU2DeviceConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2DeviceConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU configuration data" - ::= { rPDU2Device 1 } - -rPDU2DeviceConfigEntry OBJECT-TYPE - SYNTAX RPDU2DeviceConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from Rack PDU being queried" - INDEX { rPDU2DeviceConfigIndex } - ::= { rPDU2DeviceConfigTable 1 } - -RPDU2DeviceConfigEntry ::= - SEQUENCE { - rPDU2DeviceConfigIndex INTEGER, - rPDU2DeviceConfigModule INTEGER, - rPDU2DeviceConfigName DisplayString, - rPDU2DeviceConfigLocation DisplayString, - rPDU2DeviceConfigDisplayOrientation INTEGER, - rPDU2DeviceConfigColdstartDelay INTEGER, - rPDU2DeviceConfigLowLoadPowerThreshold INTEGER, - rPDU2DeviceConfigNearOverloadPowerThreshold INTEGER, - rPDU2DeviceConfigOverloadPowerThreshold INTEGER, - rPDU2DeviceConfigDevicePeakPowerReset INTEGER, - rPDU2DeviceConfigDeviceEnergyReset INTEGER, - rPDU2DeviceConfigOutletsEnergyReset INTEGER, - rPDU2DeviceConfigOutletsPeakLoadReset INTEGER, - rPDU2DeviceConfigContact DisplayString - - } - -rPDU2DeviceConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU table entry" - ::= { rPDU2DeviceConfigEntry 1 } - -rPDU2DeviceConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2DeviceConfigEntry 2 } - -rPDU2DeviceConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the Rack PDU" - ::= { rPDU2DeviceConfigEntry 3 } - -rPDU2DeviceConfigLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the location - of the Rack PDU" - ::= { rPDU2DeviceConfigEntry 4 } - -rPDU2DeviceConfigDisplayOrientation OBJECT-TYPE - SYNTAX INTEGER { - displayNormal (1), - displayReverse (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates the intended physical orientation - of the display. - - displayNormal(1) indicates normal orientation - displayReverse(2) indicates upside down orientation" - ::= { rPDU2DeviceConfigEntry 5 } - -rPDU2DeviceConfigColdstartDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of delay, measured in seconds, between - when power is provided to the Rack PDU and when - the Rack PDU provides basic master power to the - outlets. - Allowed values are: - -1 - never apply power automatically. - 0 - apply power immediately. - 1 to 300 - delay up to 300 seconds (5 minutes)." - ::= { rPDU2DeviceConfigEntry 6 } - -rPDU2DeviceConfigLowLoadPowerThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined low power draw alarm threshold, - measured in tenths of kilowatts. Models that do - not support this feature will respond to this OID - with a value of -1." - ::= { rPDU2DeviceConfigEntry 7 } - -rPDU2DeviceConfigNearOverloadPowerThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined near power overload threshold, - measured in tenths of kilowatts. Models that do - not support this feature will respond to this OID - with a value of -1." - ::= { rPDU2DeviceConfigEntry 8 } - -rPDU2DeviceConfigOverloadPowerThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined power overload threshold, - measured in tenths of kilowatts. Models that do - not support this feature will respond to this OID - with a value of -1." - ::= { rPDU2DeviceConfigEntry 9 } - -rPDU2DeviceConfigDevicePeakPowerReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2), - notSupported (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the existing peak power value - to be replaced by the current load power value. - - Getting this OID will do nothing and return the noOperation(1) value. - Models that do not support this feature will respond to this OID - with a value of not supported (3). Attempts to set this OID - in these models will fail." - ::= { rPDU2DeviceConfigEntry 10 } - -rPDU2DeviceConfigDeviceEnergyReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2), - notSupported (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the device energy meter value - to be reset to zero. - - Getting this OID in models that support this feature will do nothing - and return the noOperation(1) value. - - Models that do not support this feature will respond to this OID - with a value of notSupported (3). Attempts to set this OID - in these models will fail." - ::= { rPDU2DeviceConfigEntry 11 } - -rPDU2DeviceConfigOutletsEnergyReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2), - notSupported (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the all outlet energy meter values - to be reset to zero. - - Getting this OID will do nothing and return the noOperation(1) value. - - Models that do not support this feature will respond to this OID - with a value of notSupported (3). Attempts to set this OID - in these models will fail." - ::= { rPDU2DeviceConfigEntry 12 } - -rPDU2DeviceConfigOutletsPeakLoadReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2), - notSupported (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the all outlet peak load values - to be reset to zero. - - Getting this OID will do nothing and return the noOperation(1) value. - - Models that do not support this feature will respond to this OID - with a value of notSupported (3). Attempts to set this OID - in these models will fail." - ::= { rPDU2DeviceConfigEntry 13 } - -rPDU2DeviceConfigContact OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the - person to contact regarding the Rack PDU" - ::= { rPDU2DeviceConfigEntry 14 } - --- rPDU2 Device Properties - -rPDU2DevicePropertiesTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2DevicePropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU properties" - ::= { rPDU2Device 2 } - -rPDU2DevicePropertiesEntry OBJECT-TYPE - SYNTAX RPDU2DevicePropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Properties of the Rack PDU being queried" - INDEX { rPDU2DevicePropertiesIndex } - ::= { rPDU2DevicePropertiesTable 1 } - -RPDU2DevicePropertiesEntry ::= - SEQUENCE { - rPDU2DevicePropertiesIndex INTEGER, - rPDU2DevicePropertiesModule INTEGER, - rPDU2DevicePropertiesName DisplayString, - rPDU2DevicePropertiesNumOutlets INTEGER, - rPDU2DevicePropertiesNumSwitchedOutlets INTEGER, - rPDU2DevicePropertiesNumMeteredOutlets INTEGER, - rPDU2DevicePropertiesNumPhases INTEGER, - rPDU2DevicePropertiesNumMeteredBanks INTEGER, - rPDU2DevicePropertiesMaxCurrentRating INTEGER, - rPDU2DevicePropertiesOrientation INTEGER, - rPDU2DevicePropertiesOutletLayout INTEGER, - rPDU2DevicePropertiesMaxPhaseCurrentRating INTEGER - } - -rPDU2DevicePropertiesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU properties table entry" - ::= { rPDU2DevicePropertiesEntry 1 } - -rPDU2DevicePropertiesModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2DevicePropertiesEntry 2 } - -rPDU2DevicePropertiesName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 3 } - -rPDU2DevicePropertiesNumOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outlets on the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 4 } - -rPDU2DevicePropertiesNumSwitchedOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of switched outlets on the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 5 } - -rPDU2DevicePropertiesNumMeteredOutlets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of metered outlets on the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 6 } - -rPDU2DevicePropertiesNumPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of phases present in the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 7 } - -rPDU2DevicePropertiesNumMeteredBanks OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of metered banks present in the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 8 } - -rPDU2DevicePropertiesMaxCurrentRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum current rating, measured in Amps, for - the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 9 } - -rPDU2DevicePropertiesOrientation OBJECT-TYPE - SYNTAX INTEGER { - horizontal (1), - vertical (2), - verticalISXv2 (3), - verticalISXv3 (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Rack PDU orientation" - ::= { rPDU2DevicePropertiesEntry 10 } - -rPDU2DevicePropertiesOutletLayout OBJECT-TYPE - SYNTAX INTEGER { - seqPhaseToNeutral (1), - seqPhaseToPhase (2), - seqPhToNeu21PhToPh (3), - seqPhToPhGrouped (4), - seqPhToNGrouped (5), - seqPToN1516PToPGrouped (6), - seqPhToPh2xGrouped (7), - seqPhToN2xGrouped (8), - seqNotApplicable (9), - seqPhToNPhToPhPhToN (10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return outlet layout for the device. - - seqPhaseToNeutral(1) indicates outlet layout as follows: - 1:1-N,2:2-N,3:3-N,4:1-N,5:2-N,... - or for single phase SKUs, all outlets 1-N - - seqPhaseToPhase(2) indicates outlet layout as follows: - 1:1-2,2:2-3,3:3-1,4:1-2,5:2-3,... - - seqPhToNeu21PhToPh(3) indicates outlet layout as follows: - 1:1-N,2:2-N...21:3-N,22:1-2,23:2-3,24:3-1,... - - seqPhToPhGrouped(4) indicates outlet layout as follows: - For AP8xxx SKU's Group 1:1-2, Group 2:2-3, Group 3:3-1. - - seqPhToNGrouped(5) indicates outlet layout as follows: - This unit has 3 outlet groups. Group 1:1-N, Group 2:2-N, Group 3:3-N. - - seqPToN1516PToPGrouped(6) indicates outlet layout as follows: - This unit has 4 outlet groups. Group 1 (Outlets 1-14):1-2, - Group 2 (Outlets 15-16):1-N, Group 3:2-3, Group 4:3-1. - - seqPhToPh2xGrouped(7) indicates outlet layout as follows: - This unit has 6 outlet groups. Group 1:1-2, Group 2:1-2, Group 3:2-3, - Group 4:2-3, Group 5:3-1, Group 6:3-1. - - seqPhToN2xGrouped(8) indicates outlet layout as follows: - This unit has 6 outlet groups. Group 1:1-N, Group 2:1-N, Group 3:2-N, - Group 4:2-N, Group 5:3-N, Group 6:3-N. - - seqNotApplicable(9): - Outlet layout does not affect any of the user interfaces for - AP88XX SKUs. These SKUs may report seqNotApplicable(9) if there is - not an exact outlet layout match available. - - seqPhToNPhToPhPhToN(10) indicates outlet layout as follows: - Group 1:1-N, Group 2:1-2, Group 3:2-N." - ::= { rPDU2DevicePropertiesEntry 11 } - -rPDU2DevicePropertiesMaxPhaseCurrentRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum current rating, measured in Amps, for - the Rack PDU" - ::= { rPDU2DevicePropertiesEntry 12 } - --- rPDU2 Device Status - -rPDU2DeviceStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2DeviceStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU status information" - ::= { rPDU2Device 3 } - -rPDU2DeviceStatusEntry OBJECT-TYPE - SYNTAX RPDU2DeviceStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status information from the Rack PDU being queried" - INDEX { rPDU2DeviceStatusIndex } - ::= { rPDU2DeviceStatusTable 1 } - -RPDU2DeviceStatusEntry ::= - SEQUENCE { - rPDU2DeviceStatusIndex INTEGER, - rPDU2DeviceStatusModule INTEGER, - rPDU2DeviceStatusName DisplayString, - rPDU2DeviceStatusLoadState INTEGER, - rPDU2DeviceStatusPower INTEGER, - rPDU2DeviceStatusPeakPower INTEGER, - rPDU2DeviceStatusPeakPowerTimestamp DisplayString, - rPDU2DeviceStatusPeakPowerStartTime DisplayString, - rPDU2DeviceStatusEnergy INTEGER, - rPDU2DeviceStatusEnergyStartTime DisplayString, - rPDU2DeviceStatusCommandPending INTEGER, - rPDU2DeviceStatusPowerSupplyAlarm INTEGER, - rPDU2DeviceStatusPowerSupply1Status INTEGER, - rPDU2DeviceStatusPowerSupply2Status INTEGER, - rPDU2DeviceStatusOutletsEnergyStartTime DisplayString, - rPDU2DeviceStatusApparentPower INTEGER, - rPDU2DeviceStatusPowerFactor INTEGER, - rPDU2DeviceStatusNPSType INTEGER - } - -rPDU2DeviceStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU status table entry" - ::= { rPDU2DeviceStatusEntry 1 } - -rPDU2DeviceStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2DeviceStatusEntry 2 } - -rPDU2DeviceStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the Rack PDU" - ::= { rPDU2DeviceStatusEntry 3 } - -rPDU2DeviceStatusLoadState OBJECT-TYPE - SYNTAX INTEGER { - lowLoad (1), - normal (2), - nearOverload (3), - overload (4), - notsupported (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the present load status of the Rack PDU. - Models that do not support this feature will respond to this OID - with a value of notsupported (5)." - ::= { rPDU2DeviceStatusEntry 4 } - -rPDU2DeviceStatusPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power consumption of the Rack PDU load in hundredths of kilowatts. - Models that do not support this feature will respond to this OID - with a value of -1." - ::= { rPDU2DeviceStatusEntry 5 } - -rPDU2DeviceStatusPeakPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The peak power consumption of the Rack PDU load in hundredths of kilowatts. - Models that do not support this feature will respond to this OID with a value - of -1." - ::= { rPDU2DeviceStatusEntry 6 } - -rPDU2DeviceStatusPeakPowerTimestamp OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time that peak power consumption occurred. - Models that do not support this feature will respond to this OID with string - 'notsupported'." - ::= { rPDU2DeviceStatusEntry 7 } - -rPDU2DeviceStatusPeakPowerStartTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time of the last device peak power reset. - Models that do not support this feature will respond to this OID with string - 'notsupported'." - ::= { rPDU2DeviceStatusEntry 8 } - -rPDU2DeviceStatusEnergy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user resettable energy meter measuring Rack PDU load - energy consumption in tenths of kilowatt-hours. Models that do not - support this feature will respond to this OID - with a value of -1." - ::= { rPDU2DeviceStatusEntry 9 } - -rPDU2DeviceStatusEnergyStartTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time of the last device energy - meter reset. Models that do not support this feature will - respond to this OID with string 'notsupported'." - ::= { rPDU2DeviceStatusEntry 10 } - - -rPDU2DeviceStatusCommandPending OBJECT-TYPE - SYNTAX INTEGER { - commandPending (1), - noCommandPending (2), - commandPendingUnknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not the device - is processing a pending command. If - the commandPendingUnknown (3) value is - returned, all devices powered by the - Rack PDU should be shut down. The - Rack PDU's power should then be cycled - to clear this condition." - ::= { rPDU2DeviceStatusEntry 11 } - -rPDU2DeviceStatusPowerSupplyAlarm OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates a power supply alarm is active when value - equals alarm (2)" - ::= { rPDU2DeviceStatusEntry 12 } - -rPDU2DeviceStatusPowerSupply1Status OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2), - notInstalled (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not an alarm is active in Power - Supply 1" - ::= { rPDU2DeviceStatusEntry 13 } - -rPDU2DeviceStatusPowerSupply2Status OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2), - notInstalled (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not an alarm is active in Power - Supply 2" - ::= { rPDU2DeviceStatusEntry 14 } - -rPDU2DeviceStatusOutletsEnergyStartTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time of the last outlets energy - meter reset. Models that do not support this feature will - respond to this OID with string 'notsupported'." - ::= { rPDU2DeviceStatusEntry 15 } - -rPDU2DeviceStatusApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The apparent power consumption of the Rack PDU load in hundredths of kiloVoltAmps (kVA). - Models that do not support this feature will respond to this OID - with a value of -1." - ::= { rPDU2DeviceStatusEntry 16 } - -rPDU2DeviceStatusPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power factor of the Rack PDU load in hundredths. Models that do not support this feature - will respond to this OID with a value of -1." - ::= { rPDU2DeviceStatusEntry 17 } - -rPDU2DeviceStatusNPSType OBJECT-TYPE - SYNTAX INTEGER { - notNPS (1), - host (2), - guest (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The device NPS status: - notNPS (1) indicates the Rack PDU is not in an NPS group. - host (2) indicates the Rack PDU has been designated as a host in an NPS group. - Only one Rack PDU in an NPS group is allowed to be the host. - guest (3) indicates the Rack PDU has been designated as a guest in an NPS group." - ::= { rPDU2DeviceStatusEntry 18 } - --- rPDU2 Device Control - -rPDU2DeviceControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2DeviceControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU control data" - ::= { rPDU2Device 4 } - -rPDU2DeviceControlEntry OBJECT-TYPE - SYNTAX RPDU2DeviceControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Control data from Rack PDU being queried" - INDEX { rPDU2DeviceControlIndex } - ::= { rPDU2DeviceControlTable 1 } - -RPDU2DeviceControlEntry ::= - SEQUENCE { - rPDU2DeviceControlIndex INTEGER, - rPDU2DeviceControlModule INTEGER, - rPDU2DeviceControlName DisplayString, - rPDU2DeviceControlCommand INTEGER - } - -rPDU2DeviceControlIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU control table entry" - ::= { rPDU2DeviceControlEntry 1 } - -rPDU2DeviceControlModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2DeviceControlEntry 2 } - -rPDU2DeviceControlName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user-defined string identifying the Rack PDU" - ::= { rPDU2DeviceControlEntry 3 } - -rPDU2DeviceControlCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateAllOn (1), - delayedAllOn (2), - immediateAllOff (3), - immediateAllReboot (4), - delayedAllReboot (5), - noCommandAll (6), - delayedAllOff (7), - cancelAllPendingCommands (8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to immediateAllOn (1) will turn all outlets - on immediately. - - Setting this OID to delayedAllOn (2) will turn all outlets on as - defined by each outlet's rPDU2OutletSwitchedConfigPowerOnTime - OID value. - - Setting this OID to immediateAllOff (3) will turn all outlets - off immediately. - - Setting this OID to immediateAllReboot (4) will cause an immediateAllOff - command to be performed. Once all outlets are off, the - Switched Rack PDU will then delay the - rPDU2OutletSwitchedConfigRebootDuration OID time, and then perform an - immediateAllOn command. - - Setting this OID to delayedAllReboot (5) will cause a - delayedAllOff command to be performed. Once all outlets are off, - the Switched Rack PDU will then delay the largest - rPDU2OutletSwitchedConfigRebootDuration OID time, and then perform a - delayedAllOn command. - - Setting this OID to noCommandAll (6) will have no effect. - - Setting this OID to delayedAllOff (7) will turn all outlets off - as defined by each outlet's rPDU2OutletSwitchedConfigPowerOffTime - OID value. - - Setting this OID to cancelAllPendingCommands (8) will cause all pending - commands on the Switched Rack PDU to be cancelled. - - Getting this OID will return the noCommandAll (6) - value." - ::= { rPDU2DeviceControlEntry 4 } - --- rPDU2 Phase Data - -rPDU2PhaseTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of connected Rack PDU phases" - ::= { rPDU2 5} - -rPDU2Phase OBJECT IDENTIFIER ::= { rPDU2 6 } - --- rPDU2 Phase Config - -rPDU2PhaseConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2PhaseConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU phase configuration data" - ::= { rPDU2Phase 1 } - -rPDU2PhaseConfigEntry OBJECT-TYPE - SYNTAX RPDU2PhaseConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from currently queried Rack - PDU phase" - INDEX { rPDU2PhaseConfigIndex } - ::= { rPDU2PhaseConfigTable 1 } - -RPDU2PhaseConfigEntry ::= - SEQUENCE { - rPDU2PhaseConfigIndex INTEGER, - rPDU2PhaseConfigModule INTEGER, - rPDU2PhaseConfigNumber INTEGER, - rPDU2PhaseConfigOverloadRestriction INTEGER, - rPDU2PhaseConfigLowLoadCurrentThreshold INTEGER, - rPDU2PhaseConfigNearOverloadCurrentThreshold INTEGER, - rPDU2PhaseConfigOverloadCurrentThreshold INTEGER, - rPDU2PhaseConfigPhasePeakCurrentReset INTEGER - } - -rPDU2PhaseConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU phase configuration - table entry" - ::= { rPDU2PhaseConfigEntry 1 } - -rPDU2PhaseConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2PhaseConfigEntry 2 } - -rPDU2PhaseConfigNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric phase ID" - ::= { rPDU2PhaseConfigEntry 3 } - -rPDU2PhaseConfigOverloadRestriction OBJECT-TYPE - SYNTAX INTEGER { - alwaysAllowTurnON (1), - restrictOnNearOverload (2), - restrictOnOverload (3), - notSupported (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID controls the behavior of a Switched Rack PDU - phase when an overload condition is possible and - additional outlets are requested to be turned on. - - Setting this OID to alwaysAllowTurnON (1) will always allow - the outlets on the corresponding phase to turn on. - - Setting this OID to restrictOnNearOverload (2) will not allow - outlets on the corresponding phase to turn on if the - rPDULoadConfigNearOverloadThreshold OID is exceeded. - - Setting this OID to restrictOnOverload (3) will not allow - outlets on the corresponding phase to turn on if the - rPDULoadConfigOverloadThreshold OID is exceeded. - - Models that do not support this feature will respond to this OID - with a value of notSupported (4). Attempts to set this OID - in these models will fail." - ::= { rPDU2PhaseConfigEntry 4 } - -rPDU2PhaseConfigLowLoadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined low load phase current - threshold in Amps" - ::= { rPDU2PhaseConfigEntry 5 } - -rPDU2PhaseConfigNearOverloadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined near phase overload warning - threshold in Amps" - ::= { rPDU2PhaseConfigEntry 6 } - -rPDU2PhaseConfigOverloadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined phase overload current - threshold in Amps" - ::= { rPDU2PhaseConfigEntry 7 } - -rPDU2PhaseConfigPhasePeakCurrentReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the existing peak current value - to be replaced by the present load current value. - - Getting this OID will do nothing and return the noOperation(1) value." - ::= { rPDU2PhaseConfigEntry 8 } - - --- rPDU2 Phase Properties - -rPDU2PhasePropertiesTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2PhasePropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU phase properties" - ::= { rPDU2Phase 2 } - -rPDU2PhasePropertiesEntry OBJECT-TYPE - SYNTAX RPDU2PhasePropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Properties of the currently queried Rack - PDU phase" - INDEX { rPDU2PhasePropertiesIndex } - ::= { rPDU2PhasePropertiesTable 1 } - -RPDU2PhasePropertiesEntry ::= - SEQUENCE { - rPDU2PhasePropertiesIndex INTEGER, - rPDU2PhasePropertiesModule INTEGER, - rPDU2PhasePropertiesNumber INTEGER - } - -rPDU2PhasePropertiesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU phase properties - table entry" - ::= { rPDU2PhasePropertiesEntry 1 } - -rPDU2PhasePropertiesModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2PhasePropertiesEntry 2 } - -rPDU2PhasePropertiesNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric phase ID" - ::= { rPDU2PhasePropertiesEntry 3 } - --- rPDU2 Phase Status - -rPDU2PhaseStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2PhaseStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU phase status data" - ::= { rPDU2Phase 3 } - -rPDU2PhaseStatusEntry OBJECT-TYPE - SYNTAX RPDU2PhaseStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status data from currently queried Rack PDU - phase" - INDEX { rPDU2PhaseStatusIndex } - ::= { rPDU2PhaseStatusTable 1 } - -RPDU2PhaseStatusEntry ::= - SEQUENCE { - rPDU2PhaseStatusIndex INTEGER, - rPDU2PhaseStatusModule INTEGER, - rPDU2PhaseStatusNumber INTEGER, - rPDU2PhaseStatusLoadState INTEGER, - rPDU2PhaseStatusCurrent INTEGER, - rPDU2PhaseStatusVoltage INTEGER, - rPDU2PhaseStatusPower INTEGER, - rPDU2PhaseStatusApparentPower INTEGER, - rPDU2PhaseStatusPowerFactor INTEGER, - rPDU2PhaseStatusPeakCurrent INTEGER, - rPDU2PhaseStatusPeakCurrentTimestamp DisplayString, - rPDU2PhaseStatusPeakCurrentStartTime DisplayString - } - -rPDU2PhaseStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU phase status table - entry" - ::= { rPDU2PhaseStatusEntry 1 } - -rPDU2PhaseStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2PhaseStatusEntry 2 } - -rPDU2PhaseStatusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric phase ID" - ::= { rPDU2PhaseStatusEntry 3 } - -rPDU2PhaseStatusLoadState OBJECT-TYPE - SYNTAX INTEGER { - lowLoad (1), - normal (2), - nearOverload (3), - overload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the present load status of the Rack PDU - phase being queried" - ::= { rPDU2PhaseStatusEntry 4 } - -rPDU2PhaseStatusCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the current draw, in tenths of Amps, of the load - on the Rack PDU phase being queried" - ::= { rPDU2PhaseStatusEntry 5 } - -rPDU2PhaseStatusVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the Voltage, in Volts, of the Rack - PDU phase being queried. Models that do not support this - feature will respond to this OID with a value of -1." - ::= { rPDU2PhaseStatusEntry 6 } - -rPDU2PhaseStatusPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the load power, in hundredths of kilowatts (kW), - consumed on the Rack PDU phase being queried. - Models that do not support this feature will respond to this - OID with a value of -1." - ::= { rPDU2PhaseStatusEntry 7 } - -rPDU2PhaseStatusApparentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the load apparent power, in hundredths of kiloVoltAmps (kVA), - consumed on the Rack PDU phase being queried. - Models that do not support this feature will respond to this - OID with a value of -1." - ::= { rPDU2PhaseStatusEntry 8 } - -rPDU2PhaseStatusPowerFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the load power factor, in hundredths, - of the Rack PDU phase being queried. - Models that do not support this feature will respond to - this OID with a value of -1." - ::= { rPDU2PhaseStatusEntry 9 } - - -rPDU2PhaseStatusPeakCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The peak current of the Rack PDU phase load in tenths of Amps" - ::= { rPDU2PhaseStatusEntry 10 } - -rPDU2PhaseStatusPeakCurrentTimestamp OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time that the peak current occurred" - ::= { rPDU2PhaseStatusEntry 11 } - -rPDU2PhaseStatusPeakCurrentStartTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time of the last phase peak current reset" - ::= { rPDU2PhaseStatusEntry 12 } - --- rPDU2 Bank Data - -rPDU2BankTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of connected Rack PDU banks" - ::= { rPDU2 7} - -rPDU2Bank OBJECT IDENTIFIER ::= { rPDU2 8 } - --- rPDU2 Bank Config - -rPDU2BankConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2BankConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU bank configuration data" - ::= { rPDU2Bank 1 } - -rPDU2BankConfigEntry OBJECT-TYPE - SYNTAX RPDU2BankConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from currently queried - Rack PDU bank" - INDEX { rPDU2BankConfigIndex } - ::= { rPDU2BankConfigTable 1 } - -RPDU2BankConfigEntry ::= - SEQUENCE { - rPDU2BankConfigIndex INTEGER, - rPDU2BankConfigModule INTEGER, - rPDU2BankConfigNumber INTEGER, - rPDU2BankConfigOverloadRestriction INTEGER, - rPDU2BankConfigLowLoadCurrentThreshold INTEGER, - rPDU2BankConfigNearOverloadCurrentThreshold INTEGER, - rPDU2BankConfigOverloadCurrentThreshold INTEGER, - rPDU2BankConfigBankPeakCurrentReset INTEGER - } - -rPDU2BankConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU bank configuration - table entry" - ::= { rPDU2BankConfigEntry 1 } - -rPDU2BankConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2BankConfigEntry 2 } - -rPDU2BankConfigNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric bank ID" - ::= { rPDU2BankConfigEntry 3 } - -rPDU2BankConfigOverloadRestriction OBJECT-TYPE - SYNTAX INTEGER { - alwaysAllowTurnON (1), - restrictOnNearOverload (2), - restrictOnOverload (3), - notSupported (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID controls the behavior of a Switched Rack PDU - bank when an overload condition is possible and - additional outlets are requested to be turned on. - - Setting this OID to alwaysAllowTurnON (1) will always allow - the outlets on the corresponding bank to turn on. - - Setting this OID to restrictOnNearOverload (2) will not allow - outlets on the corresponding bank to turn on if the - rPDU2BankConfigNearOverloadCurrentThreshold OID is exceeded. - - Setting this OID to restrictOnOverload (3) will not allow - outlets on the corresponding bank to turn on if the - rPDU2BankConfigOverloadCurrentThreshold OID is exceeded. - - Models that do not support this feature will respond to this OID - with a value of notSupported (4). Attempts to set this OID - in these models will fail." - ::= { rPDU2BankConfigEntry 4 } - -rPDU2BankConfigLowLoadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined low load bank current - threshold in Amps" - ::= { rPDU2BankConfigEntry 5 } - -rPDU2BankConfigNearOverloadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined near bank overload current warning - threshold in Amps" - ::= { rPDU2BankConfigEntry 6 } - -rPDU2BankConfigOverloadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined bank overload current threshold - in Amps" - ::= { rPDU2BankConfigEntry 7 } - - rPDU2BankConfigBankPeakCurrentReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the existing peak current value - to be replaced by the present load current value. - - Getting this OID will do nothing and return the noOperation(1) value." - ::= { rPDU2BankConfigEntry 8 } - --- rPDU2 Bank Properties - -rPDU2BankPropertiesTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2BankPropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU bank properties" - ::= { rPDU2Bank 2 } - -rPDU2BankPropertiesEntry OBJECT-TYPE - SYNTAX RPDU2BankPropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Properties of the currently queried - Rack PDU bank" - INDEX { rPDU2BankPropertiesIndex } - ::= { rPDU2BankPropertiesTable 1 } - -RPDU2BankPropertiesEntry ::= - SEQUENCE { - rPDU2BankPropertiesIndex INTEGER, - rPDU2BankPropertiesModule INTEGER, - rPDU2BankPropertiesNumber INTEGER, - rPDU2BankPropertiesPhaseLayout Rpdu2OutletPhaseLayoutType - } - -rPDU2BankPropertiesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU bank properties - table entry" - ::= { rPDU2BankPropertiesEntry 1 } - -rPDU2BankPropertiesModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2BankPropertiesEntry 2 } - -rPDU2BankPropertiesNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric bank ID" - ::= { rPDU2BankPropertiesEntry 3 } - -rPDU2BankPropertiesPhaseLayout OBJECT-TYPE - SYNTAX Rpdu2OutletPhaseLayoutType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID describes the outlet phase connections on - the referenced bank as follows: - - seqPhase1ToNeutral(1) indicates that bank outlets are - wired from Phase 1 to Neutral. - - seqPhase2ToNeutral(2) indicates that bank outlets are - wired from Phase 2 to Neutral. - - seqPhase3ToNeutral(3) indicates that bank outlets are - wired from Phase 3 to Neutral. - - seqPhase1ToPhase2(4) indicates that bank outlets are - wired from Phase 1 to Phase 2. - - seqPhase2ToPhase3(5) indicates that bank outlets are - wired from Phase 2 to Phase 3. - - seqPhase3ToPhase1(6) indicates that bank outlets are - wired from Phase 3 to Phase 1." - ::= { rPDU2BankPropertiesEntry 4 } - --- rPDU2 Bank Status - -rPDU2BankStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2BankStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU bank status data" - ::= { rPDU2Bank 3 } - -rPDU2BankStatusEntry OBJECT-TYPE - SYNTAX RPDU2BankStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status data from currently queried Rack PDU - bank" - INDEX { rPDU2BankStatusIndex } - ::= { rPDU2BankStatusTable 1 } - -RPDU2BankStatusEntry ::= - SEQUENCE { - rPDU2BankStatusIndex INTEGER, - rPDU2BankStatusModule INTEGER, - rPDU2BankStatusNumber INTEGER, - rPDU2BankStatusLoadState INTEGER, - rPDU2BankStatusCurrent INTEGER, - rPDU2BankStatusPeakCurrent INTEGER, - rPDU2BankStatusPeakCurrentTimestamp DisplayString, - rPDU2BankStatusPeakCurrentStartTime DisplayString - } - -rPDU2BankStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU bank status - table entry" - ::= { rPDU2BankStatusEntry 1 } - -rPDU2BankStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2BankStatusEntry 2 } - -rPDU2BankStatusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric bank ID" - ::= { rPDU2BankStatusEntry 3 } - -rPDU2BankStatusLoadState OBJECT-TYPE - SYNTAX INTEGER { - lowLoad (1), - normal (2), - nearOverload (3), - overload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the present load status of the Rack PDU - bank being queried" - ::= { rPDU2BankStatusEntry 4 } - -rPDU2BankStatusCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the current draw, in tenths of Amps, of the load - on the Rack PDU bank being queried" - ::= { rPDU2BankStatusEntry 5 } - -rPDU2BankStatusPeakCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The peak current of the Rack PDU bank load in tenths of Amps" - ::= { rPDU2BankStatusEntry 6 } - -rPDU2BankStatusPeakCurrentTimestamp OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time the bank peak current occurred" - ::= { rPDU2BankStatusEntry 7 } - -rPDU2BankStatusPeakCurrentStartTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time of the last bank peak current reset" - ::= { rPDU2BankStatusEntry 8 } - --- rPDU2 Outlet Data - -rPDU2Outlet OBJECT IDENTIFIER ::= { rPDU2 9 } - --- rPDU2 Switched Outlet Data - -rPDU2OutletSwitchedTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of switched outlets on connected Rack PDUs" - ::= { rPDU2Outlet 1} - -rPDU2OutletSwitched OBJECT IDENTIFIER ::= { rPDU2Outlet 2 } - --- rPDU2 Switched Outlet Config - -rPDU2OutletSwitchedConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletSwitchedConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU switched outlet configuration data" - ::= { rPDU2OutletSwitched 1 } - -rPDU2OutletSwitchedConfigEntry OBJECT-TYPE - SYNTAX RPDU2OutletSwitchedConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from currently queried - Rack PDU switched outlet" - INDEX { rPDU2OutletSwitchedConfigIndex } - ::= { rPDU2OutletSwitchedConfigTable 1 } - -RPDU2OutletSwitchedConfigEntry ::= - SEQUENCE { - rPDU2OutletSwitchedConfigIndex INTEGER, - rPDU2OutletSwitchedConfigModule INTEGER, - rPDU2OutletSwitchedConfigName DisplayString, - rPDU2OutletSwitchedConfigNumber INTEGER, - rPDU2OutletSwitchedConfigPowerOnTime INTEGER, - rPDU2OutletSwitchedConfigPowerOffTime INTEGER, - rPDU2OutletSwitchedConfigRebootDuration INTEGER - } - -rPDU2OutletSwitchedConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU switched outlet - configuration table entry" - ::= { rPDU2OutletSwitchedConfigEntry 1 } - -rPDU2OutletSwitchedConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletSwitchedConfigEntry 2 } - -rPDU2OutletSwitchedConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user-defined switched outlet ID string" - ::= { rPDU2OutletSwitchedConfigEntry 3 } - -rPDU2OutletSwitchedConfigNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric switched outlet ID" - ::= { rPDU2OutletSwitchedConfigEntry 4 } - -rPDU2OutletSwitchedConfigPowerOnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of delay, in seconds, between when - power is provided to the Rack PDU and when - this switched outlet starts providing power. - Range -1...300 where -1 = Never power on, - 0 = immediate power on, and 1-300 = seconds to - delay." - ::= { rPDU2OutletSwitchedConfigEntry 5 } - -rPDU2OutletSwitchedConfigPowerOffTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time, in seconds, this outlet will - delay powering off. - Range -1...300 where -1 = Never power off, - 0 = immediate power off, and 1-300 = seconds to - delay." - ::= { rPDU2OutletSwitchedConfigEntry 6 } - -rPDU2OutletSwitchedConfigRebootDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "After turning power off during a reboot sequence, - the amount of time to wait before turning power - to this outlet back on. - Range 5-60 seconds delay." - ::= { rPDU2OutletSwitchedConfigEntry 7 } - --- rPDU2 Switched Outlet Config - -rPDU2OutletSwitchedPropertiesTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletSwitchedPropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU switched outlet properties" - ::= { rPDU2OutletSwitched 2 } - -rPDU2OutletSwitchedPropertiesEntry OBJECT-TYPE - SYNTAX RPDU2OutletSwitchedPropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Properties of the currently queried Rack PDU - switched outlet" - INDEX { rPDU2OutletSwitchedPropertiesIndex } - ::= { rPDU2OutletSwitchedPropertiesTable 1 } - -RPDU2OutletSwitchedPropertiesEntry ::= - SEQUENCE { - rPDU2OutletSwitchedPropertiesIndex INTEGER, - rPDU2OutletSwitchedPropertiesModule INTEGER, - rPDU2OutletSwitchedPropertiesName DisplayString, - rPDU2OutletSwitchedPropertiesNumber INTEGER, - rPDU2OutletSwitchedPropertiesPhaseLayout Rpdu2OutletPhaseLayoutType, - rPDU2OutletSwitchedPropertiesBank INTEGER - } - -rPDU2OutletSwitchedPropertiesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU switched outlet - properties table entry" - ::= { rPDU2OutletSwitchedPropertiesEntry 1 } - -rPDU2OutletSwitchedPropertiesModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletSwitchedPropertiesEntry 2 } - -rPDU2OutletSwitchedPropertiesName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined switched outlet ID string" - ::= { rPDU2OutletSwitchedPropertiesEntry 3 } - -rPDU2OutletSwitchedPropertiesNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric switched outlet ID" - ::= { rPDU2OutletSwitchedPropertiesEntry 4 } - -rPDU2OutletSwitchedPropertiesPhaseLayout OBJECT-TYPE - SYNTAX Rpdu2OutletPhaseLayoutType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID describes the phase connections of - the referenced outlet as follows: - - seqPhase1ToNeutral(1) indicates that the outlet is - wired from Phase 1 to Neutral. - - seqPhase2ToNeutral(2) indicates that the outlet is - wired from Phase 2 to Neutral. - - seqPhase3ToNeutral(3) indicates that the outlet is - wired from Phase 3 to Neutral. - - seqPhase1ToPhase2(4) indicates that the outlet is - wired from Phase 1 to Phase 2. - - seqPhase2ToPhase3(5) indicates that the outlet is - wired from Phase 2 to Phase 3. - - seqPhase3ToPhase1(6) indicates that the outlet is - wired from Phase 3 to Phase 1." - ::= { rPDU2OutletSwitchedPropertiesEntry 5 } - -rPDU2OutletSwitchedPropertiesBank OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric bank ID" - ::= { rPDU2OutletSwitchedPropertiesEntry 6 } - --- rPDU2 Switched Outlet Status - -rPDU2OutletSwitchedStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletSwitchedStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU switched outlet status - information" - ::= { rPDU2OutletSwitched 3 } - -rPDU2OutletSwitchedStatusEntry OBJECT-TYPE - SYNTAX RPDU2OutletSwitchedStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status information for currently queried - Rack PDU switched outlet" - INDEX { rPDU2OutletSwitchedStatusIndex } - ::= { rPDU2OutletSwitchedStatusTable 1 } - -RPDU2OutletSwitchedStatusEntry ::= - SEQUENCE { - rPDU2OutletSwitchedStatusIndex INTEGER, - rPDU2OutletSwitchedStatusModule INTEGER, - rPDU2OutletSwitchedStatusName DisplayString, - rPDU2OutletSwitchedStatusNumber INTEGER, - rPDU2OutletSwitchedStatusState INTEGER, - rPDU2OutletSwitchedStatusCommandPending INTEGER - } - -rPDU2OutletSwitchedStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU switched outlet - status information table entry" - ::= { rPDU2OutletSwitchedStatusEntry 1 } - -rPDU2OutletSwitchedStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletSwitchedStatusEntry 2 } - -rPDU2OutletSwitchedStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined switched outlet ID string" - ::= { rPDU2OutletSwitchedStatusEntry 3 } - -rPDU2OutletSwitchedStatusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric switched outlet ID" - ::= { rPDU2OutletSwitchedStatusEntry 4 } - -rPDU2OutletSwitchedStatusState OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the present switch state of the Rack - PDU switched outlet being queried" - ::= { rPDU2OutletSwitchedStatusEntry 5 } - -rPDU2OutletSwitchedStatusCommandPending OBJECT-TYPE - SYNTAX INTEGER { - commandPending (1), - noCommandPending (2), - commandPendingUnknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not the device is - processing a command for this outlet. - - If the commandPendingUnknown (3) value is - returned, all devices powered by the Rack PDU - should be shut down. The Rack PDU's power - should then be cycled to clear this condition." - ::= { rPDU2OutletSwitchedStatusEntry 6 } - --- rPDU2 Switched Outlet Control - -rPDU2OutletSwitchedControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletSwitchedControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU switched outlet control - data" - ::= { rPDU2OutletSwitched 4 } - -rPDU2OutletSwitchedControlEntry OBJECT-TYPE - SYNTAX RPDU2OutletSwitchedControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Control data for currently queried Rack - PDU switched outlet" - INDEX { rPDU2OutletSwitchedControlIndex } - ::= { rPDU2OutletSwitchedControlTable 1 } - -RPDU2OutletSwitchedControlEntry ::= - SEQUENCE { - rPDU2OutletSwitchedControlIndex INTEGER, - rPDU2OutletSwitchedControlModule INTEGER, - rPDU2OutletSwitchedControlName DisplayString, - rPDU2OutletSwitchedControlNumber INTEGER, - rPDU2OutletSwitchedControlCommand INTEGER - } - -rPDU2OutletSwitchedControlIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU switched outlet - control data table entry" - ::= { rPDU2OutletSwitchedControlEntry 1 } - -rPDU2OutletSwitchedControlModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletSwitchedControlEntry 2 } - -rPDU2OutletSwitchedControlName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined switched outlet ID string" - ::= { rPDU2OutletSwitchedControlEntry 3 } - -rPDU2OutletSwitchedControlNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric switched outlet ID" - ::= { rPDU2OutletSwitchedControlEntry 4 } - -rPDU2OutletSwitchedControlCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateOn (1), - immediateOff (2), - immediateReboot (3), - outletUnknown (4), - delayedOn (5), - delayedOff (6), - delayedReboot (7), - cancelPendingCommand (8) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the immediateOn (1) value will be returned. - If the outlet is off, the immediateOff (2) value will be - returned. If the state of the outlet cannot be - determined, the outletUnknown (4) value will be returned. - If the outletUnknown condition should occur, all devices - powered by the PDU should be shut down. The PDU's power - should then be cycled to clear this condition. - - Setting this variable to immediateOn (1) will immediately turn - the outlet on. - - Setting this variable to immediateOff (2) will immediately turn - the outlet off. - - Setting this variable to immediateReboot (3) will cause the - Switched Rack PDU to perform an immediateOff command, wait the - rPDU2OutletSwitchedConfigRebootDuration OID time, and then perform an - immediateOn command. - - Setting this variable to delayedOn (5) will turn the outlet on - after the rPDU2OutletSwitchedConfigPowerOnTime OID time has elapsed. - - Setting this variable to delayedOff (6) will turn the outlet off - after the rPDU2OutletSwitchedConfigPowerOffTime OID time has elapsed. - - Setting this variable to delayedReboot (7) will cause the - Switched Rack PDU to perform a delayedOff command, wait the - rPDU2OutletSwitchedConfigRebootDuration OID time, and then perform a - delayedOn command. - - Setting this variable to cancelPendingCommand (8) will cause any - pending command to this outlet to be cancelled." - ::= { rPDU2OutletSwitchedControlEntry 5 } - --- rPDU2 Metered Outlet Data - -rPDU2OutletMeteredTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of metered outlets on connect Rack PDUs" - ::= { rPDU2Outlet 3} - -rPDU2OutletMetered OBJECT IDENTIFIER ::= { rPDU2Outlet 4 } - --- rPDU2 Metered Outlet Config - -rPDU2OutletMeteredConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletMeteredConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU metered outlet configuration data" - ::= { rPDU2OutletMetered 1 } - -rPDU2OutletMeteredConfigEntry OBJECT-TYPE - SYNTAX RPDU2OutletMeteredConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from currently queried - Rack PDU metered outlet" - INDEX { rPDU2OutletMeteredConfigIndex } - ::= { rPDU2OutletMeteredConfigTable 1 } - -RPDU2OutletMeteredConfigEntry ::= - SEQUENCE { - rPDU2OutletMeteredConfigIndex INTEGER, - rPDU2OutletMeteredConfigModule INTEGER, - rPDU2OutletMeteredConfigName DisplayString, - rPDU2OutletMeteredConfigNumber INTEGER, - rPDU2OutletMeteredConfigLowLoadCurrentThreshold INTEGER, - rPDU2OutletMeteredConfigNearOverloadCurrentThreshold INTEGER, - rPDU2OutletMeteredConfigOverloadCurrentThreshold INTEGER - } - -rPDU2OutletMeteredConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU metered outlet - configuration table entry" - ::= { rPDU2OutletMeteredConfigEntry 1 } - -rPDU2OutletMeteredConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletMeteredConfigEntry 2 } - -rPDU2OutletMeteredConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user-defined metered outlet ID string" - ::= { rPDU2OutletMeteredConfigEntry 3 } - -rPDU2OutletMeteredConfigNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric switched outlet ID" - ::= { rPDU2OutletMeteredConfigEntry 4 } - -rPDU2OutletMeteredConfigLowLoadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined low load outlet current threshold in Watts" - ::= { rPDU2OutletMeteredConfigEntry 5 } - -rPDU2OutletMeteredConfigNearOverloadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined near outlet overload warning threshold - in Watts" - ::= { rPDU2OutletMeteredConfigEntry 6 } - -rPDU2OutletMeteredConfigOverloadCurrentThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "User-defined outlet overload current threshold in Watts" - ::= { rPDU2OutletMeteredConfigEntry 7 } - --- rPDU2 Metered Outlet Properties - -rPDU2OutletMeteredPropertiesTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletMeteredPropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU metered outlet properties" - ::= { rPDU2OutletMetered 2 } - -rPDU2OutletMeteredPropertiesEntry OBJECT-TYPE - SYNTAX RPDU2OutletMeteredPropertiesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Properties of currently queried Rack PDU - metered outlet" - INDEX { rPDU2OutletMeteredPropertiesIndex } - ::= { rPDU2OutletMeteredPropertiesTable 1 } - -RPDU2OutletMeteredPropertiesEntry ::= - SEQUENCE { - rPDU2OutletMeteredPropertiesIndex INTEGER, - rPDU2OutletMeteredPropertiesModule INTEGER, - rPDU2OutletMeteredPropertiesName DisplayString, - rPDU2OutletMeteredPropertiesNumber INTEGER, - rPDU2OutletMeteredPropertiesLayout Rpdu2OutletPhaseLayoutType, - rPDU2OutletMeteredPropertiesPowerRating INTEGER, - rPDU2OutletMeteredPropertiesBank INTEGER - } - -rPDU2OutletMeteredPropertiesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU metered properties table - entry" - ::= { rPDU2OutletMeteredPropertiesEntry 1 } - -rPDU2OutletMeteredPropertiesModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletMeteredPropertiesEntry 2 } - -rPDU2OutletMeteredPropertiesName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined metered outlet ID string" - ::= { rPDU2OutletMeteredPropertiesEntry 3 } - -rPDU2OutletMeteredPropertiesNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric metered outlet ID" - ::= { rPDU2OutletMeteredPropertiesEntry 4 } - -rPDU2OutletMeteredPropertiesLayout OBJECT-TYPE - SYNTAX Rpdu2OutletPhaseLayoutType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID describes the phase connections of - the referenced outlet as follows: - - seqPhase1ToNeutral(1) indicates that the outlet is - wired from Phase 1 to Neutral. - - seqPhase2ToNeutral(2) indicates that the outlet is - wired from Phase 2 to Neutral. - - seqPhase3ToNeutral(3) indicates that the outlet is - wired from Phase 3 to Neutral. - - seqPhase1ToPhase2(4) indicates that the outlet is - wired from Phase 1 to Phase 2. - - seqPhase2ToPhase3(5) indicates that the outlet is - wired from Phase 2 to Phase 3. - - seqPhase3ToPhase1(6) indicates that the outlet is - wired from Phase 3 to Phase 1." - ::= { rPDU2OutletMeteredPropertiesEntry 5 } - -rPDU2OutletMeteredPropertiesPowerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Maximum power rating of Rack PDU metered outlet" - ::= { rPDU2OutletMeteredPropertiesEntry 6 } - -rPDU2OutletMeteredPropertiesBank OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This outlet's numeric bank ID" - ::= { rPDU2OutletMeteredPropertiesEntry 7 } - --- rPDU2 Metered Outlet Status - -rPDU2OutletMeteredStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2OutletMeteredStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU metered outlet status data" - ::= { rPDU2OutletMetered 3 } - -rPDU2OutletMeteredStatusEntry OBJECT-TYPE - SYNTAX RPDU2OutletMeteredStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status data from currently queried Rack PDU - metered outlet" - INDEX { rPDU2OutletMeteredStatusIndex } - ::= { rPDU2OutletMeteredStatusTable 1 } - -RPDU2OutletMeteredStatusEntry ::= - SEQUENCE { - rPDU2OutletMeteredStatusIndex INTEGER, - rPDU2OutletMeteredStatusModule INTEGER, - rPDU2OutletMeteredStatusName DisplayString, - rPDU2OutletMeteredStatusNumber INTEGER, - rPDU2OutletMeteredStatusState INTEGER, - rPDU2OutletMeteredStatusCurrent INTEGER, - rPDU2OutletMeteredStatusPower INTEGER, - rPDU2OutletMeteredStatusPeakPower INTEGER, - rPDU2OutletMeteredStatusPeakPowerTimestamp DisplayString, - rPDU2OutletMeteredStatusPeakPowerStartTime DisplayString, - rPDU2OutletMeteredStatusEnergy INTEGER - } - -rPDU2OutletMeteredStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU metered status table - entry" - ::= { rPDU2OutletMeteredStatusEntry 1 } - -rPDU2OutletMeteredStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2OutletMeteredStatusEntry 2 } - -rPDU2OutletMeteredStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined metered outlet ID string" - ::= { rPDU2OutletMeteredStatusEntry 3 } - -rPDU2OutletMeteredStatusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The numeric metered outlet ID" - ::= { rPDU2OutletMeteredStatusEntry 4 } - -rPDU2OutletMeteredStatusState OBJECT-TYPE - SYNTAX INTEGER { - lowLoad (1), - normal (2), - nearOverload (3), - overload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the present load status of the Rack - PDU metered outlet being queried" - ::= { rPDU2OutletMeteredStatusEntry 5 } - -rPDU2OutletMeteredStatusCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the current draw, in tenths - of Amps, of the load on the Rack PDU - outlet being queried" - ::= { rPDU2OutletMeteredStatusEntry 6 } - -rPDU2OutletMeteredStatusPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the power draw of the load - on the Rack PDU outlet being queried" - ::= { rPDU2OutletMeteredStatusEntry 7 } - -rPDU2OutletMeteredStatusPeakPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the peak power load draw - on the Rack PDU outlet being queried" - ::= { rPDU2OutletMeteredStatusEntry 8 } - -rPDU2OutletMeteredStatusPeakPowerTimestamp OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the date and time that this metered - outlet's peak power consumption occurred" - ::= { rPDU2OutletMeteredStatusEntry 9 } - -rPDU2OutletMeteredStatusPeakPowerStartTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the start date and time that this metered - outlet began recording peak power observations" - ::= { rPDU2OutletMeteredStatusEntry 10 } - -rPDU2OutletMeteredStatusEnergy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A user resettable energy meter measuring Rack PDU load - energy consumption in tenths of kilowatt-hours" - ::= { rPDU2OutletMeteredStatusEntry 11 } - --- rPDU2 Sensor Data - -rPDU2Sensor OBJECT IDENTIFIER ::= { rPDU2 10 } - --- rPDU2 Temperature and Humidity Sensor Data - -rPDU2SensorTempHumidityTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of connected temperature-humidity sensors" - ::= { rPDU2Sensor 1} - -rPDU2SensorTempHumidity OBJECT IDENTIFIER ::= { rPDU2Sensor 2 } - --- rPDU2 Temperature and Humidity Sensor Config - -rPDU2SensorTempHumidityConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2SensorTempHumidityConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of temperature-humidity sensor - configuration data" - ::= { rPDU2SensorTempHumidity 1 } - -rPDU2SensorTempHumidityConfigEntry OBJECT-TYPE - SYNTAX RPDU2SensorTempHumidityConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from temperature-humidity sensor - being queried" - INDEX { rPDU2SensorTempHumidityConfigIndex } - ::= { rPDU2SensorTempHumidityConfigTable 1 } - -RPDU2SensorTempHumidityConfigEntry ::= - SEQUENCE { - rPDU2SensorTempHumidityConfigIndex INTEGER, - rPDU2SensorTempHumidityConfigModule INTEGER, - rPDU2SensorTempHumidityConfigName DisplayString, - rPDU2SensorTempHumidityConfigNumber INTEGER, - rPDU2SensorTempHumidityConfigTemperatureAlarmEnable INTEGER, - rPDU2SensorTempHumidityConfigHumidityAlarmEnable INTEGER, - rPDU2SensorTempHumidityConfigTempMaxThreshF INTEGER, - rPDU2SensorTempHumidityConfigTempHighThreshF INTEGER, - rPDU2SensorTempHumidityConfigTempHysteresisF INTEGER, - rPDU2SensorTempHumidityConfigTempMaxThreshC INTEGER, - rPDU2SensorTempHumidityConfigTempHighThreshC INTEGER, - rPDU2SensorTempHumidityConfigTempHysteresisC INTEGER, - rPDU2SensorTempHumidityConfigHumidityLowThresh INTEGER, - rPDU2SensorTempHumidityConfigHumidityMinThresh INTEGER, - rPDU2SensorTempHumidityConfigHumidityHysteresis INTEGER - } - -rPDU2SensorTempHumidityConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the temperature-humidity sensor - configuration data table entry" - ::= { rPDU2SensorTempHumidityConfigEntry 1 } - -rPDU2SensorTempHumidityConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2SensorTempHumidityConfigEntry 2 } - -rPDU2SensorTempHumidityConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user-defined temperature-humidity - sensor ID string" - ::= { rPDU2SensorTempHumidityConfigEntry 3 } - -rPDU2SensorTempHumidityConfigNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature-humidity sensor numeric ID" - ::= { rPDU2SensorTempHumidityConfigEntry 4 } - -rPDU2SensorTempHumidityConfigTemperatureAlarmEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID enables or disables generation - of sensor temperature alarm. - - Getting this OID returns the current value of - the temperature alarm enable." - ::= { rPDU2SensorTempHumidityConfigEntry 5 } - -rPDU2SensorTempHumidityConfigHumidityAlarmEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID enables or disables generation - of sensor humidity alarm. - - Getting this OID returns the current value of - the humidity alarm enable." - ::= { rPDU2SensorTempHumidityConfigEntry 6 } - -rPDU2SensorTempHumidityConfigTempMaxThreshF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor maximum temperature alarm threshold in - Fahrenheit. Attempting to set this OID to a - value less than or equal to that of - rPDU2SensorTempHumidityConfigTempHighThreshF - will result in an error." - ::= { rPDU2SensorTempHumidityConfigEntry 7 } - -rPDU2SensorTempHumidityConfigTempHighThreshF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor high temperature warning alarm threshold - in Fahrenheit. Attempting to set this OID to a - value greater than or equal to that of - rPDU2SensorTempHumidityConfigTempMaxThreshF - will result in an error." - ::= { rPDU2SensorTempHumidityConfigEntry 8 } - -rPDU2SensorTempHumidityConfigTempHysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor temperature hysteresis setting in Fahrenheit" - ::= { rPDU2SensorTempHumidityConfigEntry 9 } - -rPDU2SensorTempHumidityConfigTempMaxThreshC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor maximum temperature alarm threshold - in Celsius. Attempting to set this OID to a - value less than or equal to that of - rPDU2SensorTempHumidityConfigTempHighThreshC - will result in an error." - ::= { rPDU2SensorTempHumidityConfigEntry 10 } - -rPDU2SensorTempHumidityConfigTempHighThreshC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor high temperature warning alarm threshold - in Celsius. Attempting to set this OID to a - value greater than or equal to that of - rPDU2SensorTempHumidityConfigTempMaxThreshC - will result in an error." - ::= { rPDU2SensorTempHumidityConfigEntry 11 } - -rPDU2SensorTempHumidityConfigTempHysteresisC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor temperature hysteresis setting in Celsius" - ::= { rPDU2SensorTempHumidityConfigEntry 12 } - -rPDU2SensorTempHumidityConfigHumidityLowThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor low humidity warning alarm threshold in percent - relative humidity. Attempting to set this OID to a - value less than or equal to that of - rPDU2SensorTempHumidityConfigHumidityMinThresh - will result in an error. Must be between 15% and 90%" - ::= { rPDU2SensorTempHumidityConfigEntry 13 } - -rPDU2SensorTempHumidityConfigHumidityMinThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor minimum humidity alarm threshold in percent - relative humidity. Attempting to set this OID to a - value greater than or equal to that of - rPDU2SensorTempHumidityConfigHumidityLowThresh - will result in an error. Must be between 15% and 90%" - ::= { rPDU2SensorTempHumidityConfigEntry 14 } - -rPDU2SensorTempHumidityConfigHumidityHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sensor humidity hysteresis setting in percent relative - humidity" - ::= { rPDU2SensorTempHumidityConfigEntry 15 } - --- rPDU2 Temperature and Humidity Sensor Status - -rPDU2SensorTempHumidityStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2SensorTempHumidityStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of temperature-humidity sensor status data" - ::= { rPDU2SensorTempHumidity 2 } - -rPDU2SensorTempHumidityStatusEntry OBJECT-TYPE - SYNTAX RPDU2SensorTempHumidityStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status information from temperature-humidity sensor - being queried" - INDEX { rPDU2SensorTempHumidityStatusIndex } - ::= { rPDU2SensorTempHumidityStatusTable 1 } - -RPDU2SensorTempHumidityStatusEntry ::= - SEQUENCE { - rPDU2SensorTempHumidityStatusIndex INTEGER, - rPDU2SensorTempHumidityStatusModule INTEGER, - rPDU2SensorTempHumidityStatusName DisplayString, - rPDU2SensorTempHumidityStatusNumber INTEGER, - rPDU2SensorTempHumidityStatusType INTEGER, - rPDU2SensorTempHumidityStatusCommStatus INTEGER, - rPDU2SensorTempHumidityStatusTempF INTEGER, - rPDU2SensorTempHumidityStatusTempC INTEGER, - rPDU2SensorTempHumidityStatusTempStatus INTEGER, - rPDU2SensorTempHumidityStatusRelativeHumidity INTEGER, - rPDU2SensorTempHumidityStatusHumidityStatus INTEGER - } - -rPDU2SensorTempHumidityStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the temperature-humidity - status data table entry" - ::= { rPDU2SensorTempHumidityStatusEntry 1 } - -rPDU2SensorTempHumidityStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2SensorTempHumidityStatusEntry 2 } - -rPDU2SensorTempHumidityStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined temperature-humidity - sensor ID string" - ::= { rPDU2SensorTempHumidityStatusEntry 3 } - -rPDU2SensorTempHumidityStatusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature-humidity sensor numeric ID" - ::= { rPDU2SensorTempHumidityStatusEntry 4 } - -rPDU2SensorTempHumidityStatusType OBJECT-TYPE - SYNTAX INTEGER { - temperatureOnly (1), - temperatureHumidity (2), - commsLost (3), - notInstalled (4) - - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of the sensor" - ::= { rPDU2SensorTempHumidityStatusEntry 5 } - -rPDU2SensorTempHumidityStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled (1), - commsOK (2), - commsLost (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the sensor" - ::= { rPDU2SensorTempHumidityStatusEntry 6 } - -rPDU2SensorTempHumidityStatusTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor temperature reading in tenths of degrees Fahrenheit" - ::= { rPDU2SensorTempHumidityStatusEntry 7 } - -rPDU2SensorTempHumidityStatusTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor temperature reading in tenths of degrees Celsius" - ::= { rPDU2SensorTempHumidityStatusEntry 8 } - -rPDU2SensorTempHumidityStatusTempStatus OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - belowMin (2), - belowLow (3), - normal (4), - aboveHigh (5), - aboveMax (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID reports the current state of the temperature probe. - - A notPresent (1) response indicates that no probe is attached. - A belowMin (2) response indicates that the probe is present and - its measured temperature lies below the minimum threshold. - A belowLow (3) response indicates that the probe is present and - its measured temperature lies below the low threshold. - A normal (4) response indicates that the probe is present - and its measured temperature lies within all temperature thresholds. - An aboveHigh (5) response indicates that the probe is present - and is measuring a temperature above the high threshold. - An aboveMax (6) response indicates that the probe is present - and is measuring a temperature above the max threshold." - ::= { rPDU2SensorTempHumidityStatusEntry 9 } - -rPDU2SensorTempHumidityStatusRelativeHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor humidity reading in percent relative humidity" - ::= { rPDU2SensorTempHumidityStatusEntry 10 } - -rPDU2SensorTempHumidityStatusHumidityStatus OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - belowMin (2), - belowLow (3), - normal (4), - aboveHigh (5), - aboveMax (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID reports the current state of the humidity probe. - - A notPresent (1) response indicates that no probe is attached. - A belowMin (2) response indicates that the probe is present and - its measured humidity lies below the minimum threshold. - A belowLow (3) response indicates that the probe is present and - its measured humidity lies below the low threshold. - A normal (4) response indicates that the probe is present - and its measured humidity lies within all humidity thresholds. - An aboveHigh (5) response indicates that the probe is present - and is measuring a humidity above the high threshold. - An aboveMax (6) response indicates that the probe is present - and is measuring a humidity above the max threshold." - ::= { rPDU2SensorTempHumidityStatusEntry 11 } - --- rPDU2 Discrete Sensor Data - -rPDU2SensorDiscreteTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of connected discrete sensors" - ::= { rPDU2Sensor 3} - -rPDU2SensorDiscrete OBJECT IDENTIFIER ::= { rPDU2Sensor 4 } - --- rPDU2 Discrete Sensor Config - -rPDU2SensorDiscreteConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2SensorDiscreteConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of discrete sensor configuration - data" - ::= { rPDU2SensorDiscrete 1 } - -rPDU2SensorDiscreteConfigEntry OBJECT-TYPE - SYNTAX RPDU2SensorDiscreteConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Configuration data from discreste sensor - being queried" - INDEX { rPDU2SensorDiscreteConfigIndex } - ::= { rPDU2SensorDiscreteConfigTable 1 } - -RPDU2SensorDiscreteConfigEntry ::= - SEQUENCE { - rPDU2SensorDiscreteConfigIndex INTEGER, - rPDU2SensorDiscreteConfigModule INTEGER, - rPDU2SensorDiscreteConfigName DisplayString, - rPDU2SensorDiscreteConfigNumber INTEGER, - rPDU2SensorDiscreteConfigNormalState INTEGER, - rPDU2SensorDiscreteConfigAbnormalSeverity INTEGER - } - -rPDU2SensorDiscreteConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the discrete sensor configuration - data table entry" - ::= { rPDU2SensorDiscreteConfigEntry 1 } - -rPDU2SensorDiscreteConfigModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2SensorDiscreteConfigEntry 2 } - -rPDU2SensorDiscreteConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user-defined discrete sensor ID string" - ::= { rPDU2SensorDiscreteConfigEntry 3 } - -rPDU2SensorDiscreteConfigNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The discrete sensor numeric ID" - ::= { rPDU2SensorDiscreteConfigEntry 4 } - -rPDU2SensorDiscreteConfigNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyOpen (1), - normallyClosed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates the normal state of the discrete input - contact" - ::= { rPDU2SensorDiscreteConfigEntry 5 } - -rPDU2SensorDiscreteConfigAbnormalSeverity OBJECT-TYPE - SYNTAX INTEGER { - informational (1), - warning (2), - critical (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates the severity of alarm triggered by - abnormal discrete input contact state" - ::= { rPDU2SensorDiscreteConfigEntry 6 } - --- rPDU2 Discrete Sensor Status - -rPDU2SensorDiscreteStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2SensorDiscreteStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of discrete sensor status data" - ::= { rPDU2SensorDiscrete 2 } - -rPDU2SensorDiscreteStatusEntry OBJECT-TYPE - SYNTAX RPDU2SensorDiscreteStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status information from discrete sensor - being queried" - INDEX { rPDU2SensorDiscreteStatusIndex } - ::= { rPDU2SensorDiscreteStatusTable 1 } - -RPDU2SensorDiscreteStatusEntry ::= - SEQUENCE { - rPDU2SensorDiscreteStatusIndex INTEGER, - rPDU2SensorDiscreteStatusModule INTEGER, - rPDU2SensorDiscreteStatusName DisplayString, - rPDU2SensorDiscreteStatusNumber INTEGER, - rPDU2SensorDiscreteStatusType INTEGER, - rPDU2SensorDiscreteStatusCommStatus INTEGER, - rPDU2SensorDiscreteStatusCurrentState INTEGER, - rPDU2SensorDiscreteStatusAlarmState INTEGER - } - -rPDU2SensorDiscreteStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the discrete sensor status data - table entry" - ::= { rPDU2SensorDiscreteStatusEntry 1 } - -rPDU2SensorDiscreteStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2SensorDiscreteStatusEntry 2 } - -rPDU2SensorDiscreteStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined discrete sensor ID string" - ::= { rPDU2SensorDiscreteStatusEntry 3 } - -rPDU2SensorDiscreteStatusNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The discrete sensor numeric ID" - ::= { rPDU2SensorDiscreteStatusEntry 4 } - -rPDU2SensorDiscreteStatusType OBJECT-TYPE - SYNTAX INTEGER { - notConnected (1), - doorContactSensor (2), - smokeSensor (3), - motionDetector (4), - vibrationSensor (5), - dryContactSensor (6), - spotLeakSensor (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of discrete sensor currently being queried" - ::= { rPDU2SensorDiscreteStatusEntry 5 } - -rPDU2SensorDiscreteStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled(1), - commsOK(2), - commsLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the sensor" - ::= { rPDU2SensorDiscreteStatusEntry 6 } - -rPDU2SensorDiscreteStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current open/close state of the discrete - sensor" - ::= { rPDU2SensorDiscreteStatusEntry 7 } - -rPDU2SensorDiscreteStatusAlarmState OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - alarm (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates alarm status of discrete sensor input" - ::= { rPDU2SensorDiscreteStatusEntry 8 } - -rPDU2Group OBJECT IDENTIFIER ::= { rPDU2 11 } - --- rPDU2 Total Rack PDU Network Port Sharing (NPS) group power and energy - -rPDU2GroupNumberOfDevices OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the number of Rack PDU devices contributing - to the Network Port Sharing (NPS) group power and energy values. - Queries to guest units in an NPS group are not applicable and will - return 0." - - ::= { rPDU2Group 1 } - -rPDU2GroupTotalPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the total power consumption of the Rack PDU - Network Port Sharing (NPS) group devices in hundredths of kilowatts. - Queries to guest units in an NPS group are not applicable and will - return 0." - - ::= { rPDU2Group 2 } - -rPDU2GroupTotalEnergy OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the total energy consumption of the Rack PDU - Network Port Sharing (NPS) group devices in tenths of kilowatt-hours. - - To reset the energy meters for each of the Rack PDU devices that contribute - to this value, see the rPDU2GroupEnergyReset OID. - - To view the start time for each of the Rack PDU device energy meters that - contribute to this value, see the rPDU2DeviceStatusEnergyStartTime OID. - - Queries to guest units in an NPS group are not applicable and will - return 0." - - ::= { rPDU2Group 3 } - -rPDU2GroupEnergyReset OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2), - notSupported (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset (2) will cause the device energy meter value - on each device in the Rack PDU Network Port Sharing (NPS) group to be - reset to zero. - - Each device in the Rack PDU group will also have its corresponding - rPDU2DeviceStatusEnergyStartTime OID value updated. - - Getting this OID in models that support this feature will do nothing - and return the noOperation(1) value. - - Models that do not support this feature, as well as guest units in an - NPS group, will respond to this OID with a value of notSupported (3). - Attempts to set this OID in these units will fail." - - ::= { rPDU2Group 4 } - - --- rPDU2 Phase To Phase Status -rPDU2PhaseToPhaseStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of connected Rack PDU banks" - ::= { rPDU2 12} - -rPDU2PhaseToPhase OBJECT IDENTIFIER ::= { rPDU2 13 } - -rPDU2PhaseToPhaseStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RPDU2PhaseToPhaseStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of Rack PDU phase to phase status data. - This table is only applicable to SKUs that have - phase to phase outputs." - ::= { rPDU2PhaseToPhase 1 } - -rPDU2PhaseToPhaseStatusEntry OBJECT-TYPE - SYNTAX RPDU2PhaseToPhaseStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Status data from currently queried Rack PDU - phase to phase outputs" - INDEX { rPDU2PhaseToPhaseStatusIndex } - ::= { rPDU2PhaseToPhaseStatusTable 1 } - -RPDU2PhaseToPhaseStatusEntry ::= - SEQUENCE { - rPDU2PhaseToPhaseStatusIndex INTEGER, - rPDU2PhaseToPhaseStatusModule INTEGER, - rPDU2PhaseToPhaseStatusVoltage1to2 INTEGER, - rPDU2PhaseToPhaseStatusVoltage2to3 INTEGER, - rPDU2PhaseToPhaseStatusVoltage3to1 INTEGER - } - -rPDU2PhaseToPhaseStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the Rack PDU phase to phase status table - entry" - ::= { rPDU2PhaseToPhaseStatusEntry 1 } - -rPDU2PhaseToPhaseStatusModule OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user-defined Rack PDU numeric ID" - ::= { rPDU2PhaseToPhaseStatusEntry 2 } - - -rPDU2PhaseToPhaseStatusVoltage1to2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the Voltage, in Volts, of the Rack - PDU phase 1 to phase 2 output being queried" - ::= { rPDU2PhaseToPhaseStatusEntry 3 } - -rPDU2PhaseToPhaseStatusVoltage2to3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the Voltage, in Volts, of the Rack - PDU phase 2 to phase 3 output being queried" - ::= { rPDU2PhaseToPhaseStatusEntry 4 } - -rPDU2PhaseToPhaseStatusVoltage3to1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the Voltage, in Volts, of the Rack - PDU phase 3 to phase 2 output being queried" - ::= { rPDU2PhaseToPhaseStatusEntry 5 } - - - --- the cooling group - -coolingUnit OBJECT IDENTIFIER ::= { cooling 1 } - -coolingUnitTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of cooling units accessible via this agent." - ::= { coolingUnit 1 } - -coolingUnitTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of cooling unit level data." - ::= { coolingUnit 2} - -coolingUnitEntry OBJECT-TYPE - SYNTAX CoolingUnitEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitTable." - INDEX { coolingUnitTableIndex } - ::= { coolingUnitTable 1 } - -CoolingUnitEntry ::= SEQUENCE { - coolingUnitTableIndex INTEGER -} - -coolingUnitTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit reference identifier for this table and all other table entries subordinate to coolingUnits." - ::= { coolingUnitEntry 1 } - -coolingUnitAbout OBJECT IDENTIFIER ::= { coolingUnit 3 } - -coolingUnitAboutTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitAboutTable." - ::= { coolingUnitAbout 1 } - -coolingUnitAboutTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitAboutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of unit reference information." - ::= { coolingUnitAbout 2} - -coolingUnitAboutEntry OBJECT-TYPE - SYNTAX CoolingUnitAboutEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitAboutTable." - INDEX { coolingUnitTableIndex, - coolingUnitAboutTableIndex } - ::= { coolingUnitAboutTable 1 } - -CoolingUnitAboutEntry ::= SEQUENCE { - coolingUnitAboutTableIndex INTEGER, - coolingUnitAboutDescription DisplayString, - coolingUnitAboutValue DisplayString -} - -coolingUnitAboutTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry." - ::= { coolingUnitAboutEntry 1 } - -coolingUnitAboutDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in coolingUnitAboutValue." - ::= { coolingUnitAboutEntry 2 } - -coolingUnitAboutValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry." - ::= { coolingUnitAboutEntry 3 } - -coolingUnitStatus OBJECT IDENTIFIER ::= { coolingUnit 4 } -coolingUnitStatusAnalog OBJECT IDENTIFIER ::= { coolingUnitStatus 1 } - -coolingUnitStatusAnalogTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitStatusAnalogTable." - ::= { coolingUnitStatusAnalog 1 } - -coolingUnitStatusAnalogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitStatusAnalogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of analog unit status data." - ::= { coolingUnitStatusAnalog 2} - -coolingUnitStatusAnalogEntry OBJECT-TYPE - SYNTAX CoolingUnitStatusAnalogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitStatusAnalogTable." - INDEX { coolingUnitTableIndex, - coolingUnitStatusAnalogTableIndex } - ::= { coolingUnitStatusAnalogTable 1 } - -CoolingUnitStatusAnalogEntry ::= SEQUENCE { - coolingUnitStatusAnalogTableIndex INTEGER, - coolingUnitStatusAnalogDescription DisplayString, - coolingUnitStatusAnalogValue INTEGER, - coolingUnitStatusAnalogUnits DisplayString, - coolingUnitStatusAnalogScale INTEGER -} - -coolingUnitStatusAnalogTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry." - ::= { coolingUnitStatusAnalogEntry 1 } - -coolingUnitStatusAnalogDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in coolingUnitStatusAnalogValue." - ::= { coolingUnitStatusAnalogEntry 2 } - -coolingUnitStatusAnalogValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The scaled value of the current table entry (multiplied by coolingUnitStatusAnalogScale for integer presentation)." - ::= { coolingUnitStatusAnalogEntry 3 } - -coolingUnitStatusAnalogUnits OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit of measure by which coolingUnitStatusAnalogValue is expressed." - ::= { coolingUnitStatusAnalogEntry 4 } - -coolingUnitStatusAnalogScale OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The factor by which coolingUnitStatusAnalogValue is expressed." - ::= { coolingUnitStatusAnalogEntry 5 } - -coolingUnitStatusDiscrete OBJECT IDENTIFIER ::= { coolingUnitStatus 2 } - -coolingUnitStatusDiscreteTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitStatusDiscreteTable." - ::= { coolingUnitStatusDiscrete 1 } - -coolingUnitStatusDiscreteTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitStatusDiscreteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of discrete unit status data." - ::= { coolingUnitStatusDiscrete 2} - -coolingUnitStatusDiscreteEntry OBJECT-TYPE - SYNTAX CoolingUnitStatusDiscreteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitStatusDiscreteTable." - INDEX { coolingUnitTableIndex, - coolingUnitStatusDiscreteTableIndex } - ::= { coolingUnitStatusDiscreteTable 1 } - -CoolingUnitStatusDiscreteEntry ::= SEQUENCE { - coolingUnitStatusDiscreteTableIndex INTEGER, - coolingUnitStatusDiscreteDescription DisplayString, - coolingUnitStatusDiscreteValueAsString DisplayString, - coolingUnitStatusDiscreteValueAsInteger INTEGER, - coolingUnitStatusDiscreteIntegerReferenceKey DisplayString -} - -coolingUnitStatusDiscreteTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry." - ::= { coolingUnitStatusDiscreteEntry 1 } - -coolingUnitStatusDiscreteDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in this table's 'value' OIDs." - ::= { coolingUnitStatusDiscreteEntry 2 } - -coolingUnitStatusDiscreteValueAsString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry expressed as a string." - ::= { coolingUnitStatusDiscreteEntry 3 } - -coolingUnitStatusDiscreteValueAsInteger OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry expressed as an integer value." - ::= { coolingUnitStatusDiscreteEntry 4 } - -coolingUnitStatusDiscreteIntegerReferenceKey OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A complete listing of all possible coolingUnitStatusDiscreteValueAsInteger values paired with their identifying strings." - ::= { coolingUnitStatusDiscreteEntry 5 } - -coolingUnitConfiguration OBJECT IDENTIFIER ::= { coolingUnit 5 } -coolingUnitConfigurationAnalog OBJECT IDENTIFIER ::= { coolingUnitConfiguration 1 } - -coolingUnitConfigurationAnalogTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitConfigurationAnalogTable." - ::= { coolingUnitConfigurationAnalog 1 } - -coolingUnitConfigurationAnalogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitConfigurationAnalogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of analog unit configuration data." - ::= { coolingUnitConfigurationAnalog 2} - -coolingUnitConfigurationAnalogEntry OBJECT-TYPE - SYNTAX CoolingUnitConfigurationAnalogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitConfigurationAnalogTable." - INDEX { coolingUnitTableIndex, - coolingUnitConfigurationAnalogTableIndex } - ::= { coolingUnitConfigurationAnalogTable 1 } - -CoolingUnitConfigurationAnalogEntry ::= SEQUENCE { - coolingUnitConfigurationAnalogTableIndex INTEGER, - coolingUnitConfigurationAnalogDescription DisplayString, - coolingUnitConfigurationAnalogValue INTEGER, - coolingUnitConfigurationAnalogUnits DisplayString, - coolingUnitConfigurationAnalogScale INTEGER, - coolingUnitConfigurationAnalogAccess INTEGER, - coolingUnitConfigurationAnalogMinimum INTEGER, - coolingUnitConfigurationAnalogMaximum INTEGER -} - -coolingUnitConfigurationAnalogTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry." - ::= { coolingUnitConfigurationAnalogEntry 1 } - -coolingUnitConfigurationAnalogDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in coolingUnitConfigurationAnalogValue." - ::= { coolingUnitConfigurationAnalogEntry 2 } - -coolingUnitConfigurationAnalogValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The scaled value of the current table entry (multiplied by coolingUnitConfigurationAnalogScale for integer presentation)." - ::= { coolingUnitConfigurationAnalogEntry 3 } - -coolingUnitConfigurationAnalogUnits OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit of measure by which coolingUnitConfigurationAnalogValue is expressed." - ::= { coolingUnitConfigurationAnalogEntry 4 } - -coolingUnitConfigurationAnalogScale OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The factor by which coolingUnitConfigurationAnalogValue is expressed." - ::= { coolingUnitConfigurationAnalogEntry 5 } - -coolingUnitConfigurationAnalogAccess OBJECT-TYPE - SYNTAX INTEGER { - readOnly (1), - readWrite (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of available access to coolingUnitConfigurationAnalogValue via SNMP client." - ::= { coolingUnitConfigurationAnalogEntry 6 } - -coolingUnitConfigurationAnalogMinimum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum possible value of coolingUnitConfigurationAnalogValue." - ::= { coolingUnitConfigurationAnalogEntry 7 } - -coolingUnitConfigurationAnalogMaximum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum possible value of coolingUnitConfigurationAnalogValue." - ::= { coolingUnitConfigurationAnalogEntry 8 } - -coolingUnitConfigurationDiscrete OBJECT IDENTIFIER ::= { coolingUnitConfiguration 2 } - -coolingUnitConfigurationDiscreteTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitConfigurationDiscreteTable." - ::= { coolingUnitConfigurationDiscrete 1 } - -coolingUnitConfigurationDiscreteTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitConfigurationDiscreteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of discrete unit configuration data." - ::= { coolingUnitConfigurationDiscrete 2} - -coolingUnitConfigurationDiscreteEntry OBJECT-TYPE - SYNTAX CoolingUnitConfigurationDiscreteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitConfigurationDiscreteTable." - INDEX { coolingUnitTableIndex, - coolingUnitConfigurationDiscreteTableIndex } - ::= { coolingUnitConfigurationDiscreteTable 1 } - -CoolingUnitConfigurationDiscreteEntry ::= SEQUENCE { - coolingUnitConfigurationDiscreteTableIndex INTEGER, - coolingUnitConfigurationDiscreteDescription DisplayString, - coolingUnitConfigurationDiscreteValueAsString DisplayString, - coolingUnitConfigurationDiscreteValueAsInteger INTEGER, - coolingUnitConfigurationDiscreteIntegerReferenceKey DisplayString, - coolingUnitConfigurationDiscreteAccess INTEGER -} - -coolingUnitConfigurationDiscreteTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry." - ::= { coolingUnitConfigurationDiscreteEntry 1 } - -coolingUnitConfigurationDiscreteDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in this table's 'value' OIDs." - ::= { coolingUnitConfigurationDiscreteEntry 2 } - -coolingUnitConfigurationDiscreteValueAsString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry expressed as a string." - ::= { coolingUnitConfigurationDiscreteEntry 3 } - -coolingUnitConfigurationDiscreteValueAsInteger OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry expressed as an integer value." - ::= { coolingUnitConfigurationDiscreteEntry 4 } - -coolingUnitConfigurationDiscreteIntegerReferenceKey OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A complete listing of all possible coolingUnitConfigurationDiscreteValueAsInteger values paired with their identifying strings." - ::= { coolingUnitConfigurationDiscreteEntry 5 } - -coolingUnitConfigurationDiscreteAccess OBJECT-TYPE - SYNTAX INTEGER { - readOnly (1), - readWrite (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of available access to coolingUnitConfigurationDiscreteValueAsInteger via SNMP client." - ::= { coolingUnitConfigurationDiscreteEntry 6 } - -coolingUnitConfigurationString OBJECT IDENTIFIER ::= { coolingUnitConfiguration 3 } - -coolingUnitConfigurationStringTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitConfigurationStringTable." - ::= { coolingUnitConfigurationString 1 } - -coolingUnitConfigurationStringTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitConfigurationStringEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of unit configuration strings." - ::= { coolingUnitConfigurationString 2} - -coolingUnitConfigurationStringEntry OBJECT-TYPE - SYNTAX CoolingUnitConfigurationStringEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitConfigurationStringTable." - INDEX { coolingUnitTableIndex, - coolingUnitConfigurationStringTableIndex } - ::= { coolingUnitConfigurationStringTable 1 } - -CoolingUnitConfigurationStringEntry ::= SEQUENCE { - coolingUnitConfigurationStringTableIndex INTEGER, - coolingUnitConfigurationStringDescription DisplayString, - coolingUnitConfigurationStringValue DisplayString, - coolingUnitConfigurationStringMaxLength INTEGER, - coolingUnitConfigurationStringAccess INTEGER -} - -coolingUnitConfigurationStringTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry." - ::= { coolingUnitConfigurationStringEntry 1 } - -coolingUnitConfigurationStringDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in coolingUnitConfigurationStringValue." - ::= { coolingUnitConfigurationStringEntry 2 } - -coolingUnitConfigurationStringValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry." - ::= { coolingUnitConfigurationStringEntry 3 } - -coolingUnitConfigurationStringMaxLength OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum string length supported by coolingUnitConfigurationStringValue." - ::= { coolingUnitConfigurationStringEntry 4 } - -coolingUnitConfigurationStringAccess OBJECT-TYPE - SYNTAX INTEGER { - readOnly (1), - readWrite (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A description of available access to coolingUnitConfigurationStringValue via SNMP client." - ::= { coolingUnitConfigurationStringEntry 5 } - -coolingUnitExtended OBJECT IDENTIFIER ::= { coolingUnit 6 } -coolingUnitExtendedAnalog OBJECT IDENTIFIER ::= { coolingUnitExtended 1 } - -coolingUnitExtendedAnalogTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitExtendedAnalogTable." - ::= { coolingUnitExtendedAnalog 1 } - -coolingUnitExtendedAnalogTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitExtendedAnalogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of secondary analog data for the cooling unit or one of its components." - ::= { coolingUnitExtendedAnalog 2} - -coolingUnitExtendedAnalogEntry OBJECT-TYPE - SYNTAX CoolingUnitExtendedAnalogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitExtendedAnalogTable." - INDEX { coolingUnitTableIndex, - coolingUnitExtendedAnalogTableIndex } - ::= { coolingUnitExtendedAnalogTable 1 } - -CoolingUnitExtendedAnalogEntry ::= SEQUENCE { - coolingUnitExtendedAnalogTableIndex INTEGER, - coolingUnitExtendedAnalogDescription DisplayString, - coolingUnitExtendedAnalogValue INTEGER, - coolingUnitExtendedAnalogUnits DisplayString, - coolingUnitExtendedAnalogScale INTEGER -} - -coolingUnitExtendedAnalogTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry. This identifier may reference different table entries in different unit models." - ::= { coolingUnitExtendedAnalogEntry 1 } - -coolingUnitExtendedAnalogDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in coolingUnitExtendedAnalogValue." - ::= { coolingUnitExtendedAnalogEntry 2 } - -coolingUnitExtendedAnalogValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The scaled value of the current table entry (multiplied by coolingUnitExtendedAnalogScale for integer presentation)." - ::= { coolingUnitExtendedAnalogEntry 3 } - -coolingUnitExtendedAnalogUnits OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit of measure by which coolingUnitExtendedAnalogValue is expressed." - ::= { coolingUnitExtendedAnalogEntry 4 } - -coolingUnitExtendedAnalogScale OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The factor by which coolingUnitExtendedAnalogValue is expressed." - ::= { coolingUnitExtendedAnalogEntry 5 } - -coolingUnitExtendedDiscrete OBJECT IDENTIFIER ::= { coolingUnitExtended 2 } - -coolingUnitExtendedDiscreteTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitExtendedDiscreteTable." - ::= { coolingUnitExtendedDiscrete 1 } - -coolingUnitExtendedDiscreteTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitExtendedDiscreteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of secondary discrete cooling unit data." - ::= { coolingUnitExtendedDiscrete 2} - -coolingUnitExtendedDiscreteEntry OBJECT-TYPE - SYNTAX CoolingUnitExtendedDiscreteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitExtendedDiscreteTable." - INDEX { coolingUnitTableIndex, - coolingUnitExtendedDiscreteTableIndex } - ::= { coolingUnitExtendedDiscreteTable 1 } - -CoolingUnitExtendedDiscreteEntry ::= SEQUENCE { - coolingUnitExtendedDiscreteTableIndex INTEGER, - coolingUnitExtendedDiscreteDescription DisplayString, - coolingUnitExtendedDiscreteValueAsString DisplayString, - coolingUnitExtendedDiscreteValueAsInteger INTEGER, - coolingUnitExtendedDiscreteIntegerReferenceKey DisplayString -} - -coolingUnitExtendedDiscreteTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry. This identifier may reference different table entries in different unit models." - ::= { coolingUnitExtendedDiscreteEntry 1 } - -coolingUnitExtendedDiscreteDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in this table's 'value' OIDs." - ::= { coolingUnitExtendedDiscreteEntry 2 } - -coolingUnitExtendedDiscreteValueAsString OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry expressed as a string." - ::= { coolingUnitExtendedDiscreteEntry 3 } - -coolingUnitExtendedDiscreteValueAsInteger OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry expressed as an integer value." - ::= { coolingUnitExtendedDiscreteEntry 4 } - -coolingUnitExtendedDiscreteIntegerReferenceKey OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A complete listing of all possible coolingUnitExtendedDiscreteValueAsInteger values paired with their identifying strings." - ::= { coolingUnitExtendedDiscreteEntry 5 } - -coolingUnitExtendedString OBJECT IDENTIFIER ::= { coolingUnitExtended 3 } - -coolingUnitExtendedStringTableSize OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The potential number of entries available in coolingUnitExtendedStringTable." - ::= { coolingUnitExtendedString 1 } - -coolingUnitExtendedStringTable OBJECT-TYPE - SYNTAX SEQUENCE OF CoolingUnitExtendedStringEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table of secondary unit reference data." - ::= { coolingUnitExtendedString 2} - -coolingUnitExtendedStringEntry OBJECT-TYPE - SYNTAX CoolingUnitExtendedStringEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An element of coolingUnitExtendedStringTable." - INDEX { coolingUnitTableIndex, - coolingUnitExtendedStringTableIndex } - ::= { coolingUnitExtendedStringTable 1 } - -CoolingUnitExtendedStringEntry ::= SEQUENCE { - coolingUnitExtendedStringTableIndex INTEGER, - coolingUnitExtendedStringDescription DisplayString, - coolingUnitExtendedStringValue DisplayString -} - -coolingUnitExtendedStringTableIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The static reference identifier for each table entry. This identifier may reference different table entries in different unit models." - ::= { coolingUnitExtendedStringEntry 1 } - -coolingUnitExtendedStringDescription OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A text description of the information presented in coolingUnitExtendedStringValue." - ::= { coolingUnitExtendedStringEntry 2 } - -coolingUnitExtendedStringValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual value of the current table entry." - ::= { coolingUnitExtendedStringEntry 3 } - - - --- the dm3IdentSystem group - -dm3IdentSysDescriptionTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC description records." - ::= { dm3IdentSystem 1 } - -dm3IdentSysDescriptionTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3IdentSysDescriptionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing description records of the powerplant. The number of - entries is contained in the dm3IdentSysDescriptionTableSize OID." - ::= { dm3IdentSystem 2 } - -dm3IdentSysDescriptionEntry OBJECT-TYPE - SYNTAX Dm3IdentSysDescriptionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The powerplant description record to reference." - INDEX { dm3IdentSysDescriptionIndex } - ::= { dm3IdentSysDescriptionTable 1 } - -Dm3IdentSysDescriptionEntry ::= - SEQUENCE { - dm3IdentSysDescriptionIndex INTEGER, - dm3IdentSysDescriptionText DisplayString - } - -dm3IdentSysDescriptionIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant description record." - ::= { dm3IdentSysDescriptionEntry 1 } - -dm3IdentSysDescriptionText OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A 16 character text field describing the DC power plant device. - This field can be configured from the dm3ConfigSysDescriptionText OID." - ::= { dm3IdentSysDescriptionEntry 2 } - -dm3IdentSysModel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Model type of the DC power plant." - ::= { dm3IdentSystem 3 } - -dm3IdentSysCntrlRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Integer representation of the hardware revision of the Master Controller board." - ::= { dm3IdentSystem 4 } - -dm3IdentSysFWVersion OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Integer representation of the power plant Master Controller firmware revision." - ::= { dm3IdentSystem 5 } - --- the dm3ConfigSystem group - -dm3ConfigSysDescriptionTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC description records." - ::= { dm3ConfigSystem 1 } - -dm3ConfigSysDescriptionTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3ConfigSysDescriptionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing description records of the powerplant. The number of - entries is contained in the dm3ConfigSysDescriptionTableSize OID." - ::= { dm3ConfigSystem 2 } - -dm3ConfigSysDescriptionEntry OBJECT-TYPE - SYNTAX Dm3ConfigSysDescriptionEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The powerplant description record to reference." - INDEX { dm3ConfigSysDescriptionIndex } - ::= { dm3ConfigSysDescriptionTable 1 } - -Dm3ConfigSysDescriptionEntry ::= - SEQUENCE { - dm3ConfigSysDescriptionIndex INTEGER, - dm3ConfigSysDescriptionText DisplayString - } - -dm3ConfigSysDescriptionIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant description record." - - ::= { dm3ConfigSysDescriptionEntry 1 } - -dm3ConfigSysDescriptionText OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "16 character text field describing the DC power plant device." - - ::= { dm3ConfigSysDescriptionEntry 2 } - -dm3ConfigSysHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Ambient high temperature threshold. Temperature sensor located on Master - Controller board. - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dm3StatusSysTempUnits' OID (Celsius or Fahrenheit). - - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigSystem 3 } - -dm3ConfigSysHighTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the System High Temperature Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - ::= { dm3ConfigSystem 4 } - -dm3ConfigSysLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Ambient low temperature threshold. Temperature sensor located on Master - Controller board. - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dm3StatusSysTempUnits' OID (Celsius or Fahrenheit). - - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigSystem 5 } - -dm3ConfigSysLowTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the System Low Temperature Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - ::= { dm3ConfigSystem 6 } - -dm3ConfigSysHardwareTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the System Hardware Temperature Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - ::= { dm3ConfigSystem 7 } - -dm3ConfigSysRemoteAccess OBJECT-TYPE - SYNTAX INTEGER { - accessEnabled (1), - accessDisabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - " - This OID is used to disable remote write access to the power plant. - Setting this OID to accessEnabled (1) will have no affect. - Setting this OID to accessDisabled (2) will disable the ability to - remotely configure the DC powerplant. - - Once remote access is disabled, it can only be restored from the front - panel of the DC power plant." - ::= { dm3ConfigSystem 8 } - - --- the dm3ConfigLVD group - -dm3ConfigLVDTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant LVDs controllable - by this IP address." - ::= { dm3ConfigLVD 1 } - -dm3ConfigLVDTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3ConfigLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the LVDs. The number of - entries is contained in the dm3ConfigLVDTableSize OID." - ::= { dm3ConfigLVD 2 } - -dm3ConfigLVDEntry OBJECT-TYPE - SYNTAX Dm3ConfigLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The LVD to configure." - INDEX { dm3ConfigLVDIndex } - ::= { dm3ConfigLVDTable 1 } - -Dm3ConfigLVDEntry ::= - SEQUENCE { - dm3ConfigLVDIndex INTEGER, - dm3ConfigLVDName DisplayString, - dm3ConfigLVDEnable INTEGER, - dm3ConfigLVDTripThresh INTEGER, - dm3ConfigLVDResetThresh INTEGER, - dm3ConfigLVDOpenAlarm INTEGER, - dm3ConfigLVDHWAlarm INTEGER - } - -dm3ConfigLVDIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant LVD." - ::= { dm3ConfigLVDEntry 1 } - -dm3ConfigLVDName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the LVD. The maximum value is 16 characters." - ::= { dm3ConfigLVDEntry 2 } - -dm3ConfigLVDEnable OBJECT-TYPE - SYNTAX INTEGER { - enabledYes (1), - enabledNo (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID is used to control and indicate if the LVD is on or off. - Setting this OID to enabledYes (1) will enable (turn on) the LVD. - Setting this OID to enabledNo (2) will disable (turn off) the LVD." - ::= { dm3ConfigLVDEntry 3 } - -dm3ConfigLVDTripThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "LVD Trip threshold. If voltage exceeds threshold, the LVD will trip. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigLVDEntry 4 } - -dm3ConfigLVDResetThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "LVD Reset threshold. If voltage exceeds threshold, the LVD will reset. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigLVDEntry 5 } - -dm3ConfigLVDOpenAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the LVD Open Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - ::= { dm3ConfigLVDEntry 6 } - -dm3ConfigLVDHWAlarm OBJECT-TYPE -SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the LVD Hardware Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - ::= { dm3ConfigLVDEntry 7 } - - --- the dm3ConfigBattery group - -dm3ConfigBattFloatVolt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery Float Voltage. This setting controls the power plant voltage. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 1 } - -dm3ConfigBattMaxRecharge OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery Maximum Recharge Rate. This setting controls the battery max - recharge rate. The value is based on C/20 for 240 AHr battery string. - - Values are represented in thousandths of Amps (mA). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 2 } - -dm3ConfigBattDischargeThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery discharge threshold. If battery output current exceeds threshold - a battery discharge alarm will occur. - - Values are represented in thousandths of Amps (mA). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 3 } - -dm3ConfigBattDischargeAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery Discharge Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 4 } - -dm3ConfigBattHighVoltThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery high voltage threshold. If system battery voltage exceeds threshold - a battery high voltage alarm will occur. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 5 } - -dm3ConfigBattHighVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery High Voltage Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 6 } - -dm3ConfigBattLowVoltThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery low voltage threshold. If system battery voltage is under threshold - a battery low voltage alarm will occur. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 7 } - -dm3ConfigBattLowVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery Low Voltage Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 8 } - -dm3ConfigBattHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery high temperature threshold. If system battery temperature exceeds threshold - a battery high temperature alarm will occur. - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dm3StatusSysTempUnits' OID (Celsius or Fahrenheit). - - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - - ::= { dm3ConfigBattery 9 } - -dm3ConfigBattHighTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery High Temperature Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 10 } - -dm3ConfigBattLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery low temperature threshold. If system battery temperature is under threshold - a battery low temperature alarm will occur. - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dm3StatusSysTempUnits' OID (Celsius or Fahrenheit). - - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - - ::= { dm3ConfigBattery 11 } - -dm3ConfigBattLowTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery Low Temperature Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 12 } - -dm3ConfigBattAmpHour OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery Amp-Hour Size. Units are thousandths of Amp hours (mAHr). - - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 13 } - -dm3ConfigCompMethod OBJECT-TYPE - SYNTAX INTEGER { - tempcompOn (1), - tempcompOff (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID is used to configure and get the state of the battery - temperature compensation. - - Setting this OID to tempcompOn (1) will enable/turn on the battery temperature compensation. - Setting this OID to tempcompOff (2) will disable/turn off the battery temperature compensation." - ::= { dm3ConfigBattery 14 } - -dm3ConfigCompTempCoeff OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compensation Temperature Coefficient. (uV/degC/cell). - - Units are presented in microvolts. - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 15 } - -dm3ConfigHighKneeTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "High Knee for temperature compensation: Compensation temperature coefficient - becomes 0mV/degC/cell. - - Values are represented in thousandths of degrees Celsius. - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 16 } - -dm3ConfigLowKneeTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Low Knee for temperature compensation: Compensation temperature coefficient - becomes 0mV/degC/cell. - - Values are represented in thousandths of degrees Celsius. - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigBattery 17 } - -dm3ConfigBattHwCurrentAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery Current Hardware Alarm (indicating current is outside realistic - limits, or a possible measurement fault; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 18 } - -dm3ConfigBattHwTempAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Battery Temperature Hardware Alarm (indicating temperature is outside realistic - limits, or a possible measurement fault; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBattery 19 } - - --- the dm3ConfigRectThresh group -dm3ConfigRectHighVoltThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Rectifier high voltage threshold. If rectifier voltage exceeds threshold - a rectifier high voltage alarm will occur. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigRectThresh 1 } - - -dm3ConfigRectLowVoltThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Rectifier low voltage threshold. If rectifier voltage is under threshold - a rectifier low voltage alarm will occur. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigRectThresh 2 } - -dm3ConfigRectFailSafe OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Rectifier Fail Safe point. This OID represents the value sent to rectifier controllers - to use in the event of communications loss with the Master Controller or Master Controller - board failure. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigRectThresh 3 } - -dm3ConfigRectFailComm OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Rectifier Communication Fail timeout. This OID represents the time interval in which there is no - communication between the rectifier and the master controller at which the rectifier will reset - all its values to default. - - Values are represented in hundredths of Seconds. - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigRectThresh 4 } - --- the dm3ConfigRectAlarms group - -dm3ConfigRectHighVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier High Voltage Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 1 } - -dm3ConfigRectLowVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Low Voltage Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 2 } - -dm3ConfigRectConfigAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This alarm is activated when a new rectifier is detected; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 3 } - -dm3ConfigRect1ofNAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting indicates the action if ONE rectifier of a N+1 system has failed; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 4 } - -dm3ConfigRect2ofNAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This setting indicates the action if TWO OR MORE rectifiers of a N+1 system have failed; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 5 } - -dm3ConfigRectDiagAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Controller Diagnostics Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigRect1ofNAlarm OID - to be activated if ONE rectifier fails in an N+1 system. It causes the alarm specified in the - dm3ConfigRect2ofNAlarm OID to be activated if TWO OR MORE rectifiers fail in an N+1 system." - - ::= { dm3ConfigRectAlarms 6 } - -dm3ConfigRectImbalanceAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Imbalance Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 7 } - -dm3ConfigRectCurrLimitAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Current Limit Alarm (indicating rectifier in the Current Limit state); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigRect1ofNAlarm OID - to be activated if ONE rectifier fails in an N+1 system. It causes the alarm specified in the - dm3ConfigRect2ofNAlarm OID to be activated if TWO OR MORE rectifiers fail in an N+1 system." - - ::= { dm3ConfigRectAlarms 8 } - -dm3ConfigRectStandbyAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Standby Alarm (indicating output DC has been turned off); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigRect1ofNAlarm OID - to be activated if ONE rectifier fails in an N+1 system. It causes the alarm specified in the - dm3ConfigRect2ofNAlarm OID to be activated if TWO OR MORE rectifiers fail in an N+1 system." - - ::= { dm3ConfigRectAlarms 9 } - -dm3ConfigRectFanFailAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Fan Fail Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigRect1ofNAlarm OID - to be activated if ONE rectifier fails in an N+1 system. It causes the alarm specified in the - dm3ConfigRect2ofNAlarm OID to be activated if TWO OR MORE rectifiers fail in an N+1 system." - - ::= { dm3ConfigRectAlarms 10 } - -dm3ConfigRectFailAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Fail Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigRect1ofNAlarm OID - to be activated if ONE rectifier fails in an N+1 system. It causes the alarm specified in the - dm3ConfigRect2ofNAlarm OID to be activated if TWO OR MORE rectifiers fail in an N+1 system." - - ::= { dm3ConfigRectAlarms 11 } - -dm3ConfigRectHwVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Rectifier Hardware Voltage Alarm (indicating voltage outside realistic limits, - or a possible measurement fault); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigRectAlarms 12 } - - --- the dm3ConfigConvThresh group - -dm3ConfigConvHighVoltThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter high voltage threshold. If converter voltage exceeds threshold - a converter high voltage alarm will occur. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - - ::= { dm3ConfigConvThresh 1 } - -dm3ConfigConvLowVoltThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter low voltage threshold. If converter voltage exceeds threshold - a converter low voltage alarm will occur. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigConvThresh 2 } - -dm3ConfigConvFailSafe OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter Fail Safe point. This OID represents the value sent to converter controllers - to use in the event of communications loss with the Master Controller or Master Controller - board failure. - - Values are represented in thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigConvThresh 3 } - -dm3ConfigConvSetPoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter Set point. This OID represents the initial set point used in the - voltage control loop. - - Units are thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigConvThresh 4 } - -dm3ConfigConvFailMax OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter Fail Maximum limit. This OID represents the value sent to the converter - controllers to define the maximum set point allowed. - - Units are thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigConvThresh 5 } - -dm3ConfigConvFailMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter Fail Minimum limit. This OID represents the value sent to the converter - controllers to define the minimum set point allowed. - - Units are thousandths of Volts (mV). - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigConvThresh 6 } - -dm3ConfigConvFailComm OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Converter Communication Fail timeout. This OID represents the time interval in which there is no - communication between the converter and the master controller at which the converter will reset - all its values to default. - - Values are represented in hundredths of Seconds. - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigConvThresh 7 } - --- the dm3ConfigConvAlarms group -dm3ConfigConvHighVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter High Voltage Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigConvAlarms 1 } - -dm3ConfigConvLowVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Low Voltage Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigConvAlarms 2 } - -dm3ConfigConvConfigAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Configuration Alarm (indicating a new converter has been detected); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigConvAlarms 3 } - -dm3ConfigConv1ofNAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter 1ofN Alarm (indicating action if ONE converter of a N+1 system has failed); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigConvAlarms 4 } - -dm3ConfigConv2ofNAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter 2ofN Alarm (indicating action if TWO OR MORE converters of a N+1 system has failed); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigConvAlarms 5 } - -dm3ConfigConvDiagAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Diagnostics Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 6 } - -dm3ConfigConvImbalanceAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Imbalance Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 7 } - -dm3ConfigConvCurrLimitAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Current Limit Alarm (indicating the converter is in the Current Limit state); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 8 } - -dm3ConfigConvStandbyAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Standby Alarm (indicating the converter is in the Standby state); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 9 } - -dm3ConfigConvFanFailAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Fan Fail Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 10 } - -dm3ConfigConvFailAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Fail Alarm; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 11 } - -dm3ConfigConvHwVoltAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9), - alarmNofN (10) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "For the Converter Voltage Alarm (indicating voltage outside realistic limits, or a - possible measurement fault); - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - Setting this OID to alarmNofN (10) causes the alarm specified in the dm3ConfigConv1ofNAlarm OID - to be activated if ONE converter fails in an N+1 system. It causes the alarm specified in the - dm3ConfigConv2ofNAlarm OID to be activated if TWO OR MORE converters fail in an N+1 system." - - ::= { dm3ConfigConvAlarms 12 } - - --- the dm3ConfigOutputRelays group - -dm3ConfigOutRlyTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant Output Relays controllable - by this IP address." - ::= { dm3ConfigOutputRelays 1 } - -dm3ConfigOutRlyTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3ConfigOutRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the Output Relays. The number of - entries is contained in the dm3ConfigOutRlyTableSize OID." - ::= { dm3ConfigOutputRelays 2 } - -dm3ConfigOutRlyEntry OBJECT-TYPE - SYNTAX Dm3ConfigOutRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relay to configure." - INDEX { dm3ConfigOutRlyIndex } - ::= { dm3ConfigOutRlyTable 1 } - -Dm3ConfigOutRlyEntry ::= - SEQUENCE { - dm3ConfigOutRlyIndex INTEGER, - dm3ConfigOutRlyName DisplayString, - dm3ConfigOutRlyDelay INTEGER, - dm3ConfigOutRlyAlarm INTEGER - } - -dm3ConfigOutRlyIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant output relay." - ::= { dm3ConfigOutRlyEntry 1 } - -dm3ConfigOutRlyName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the output relay. The maximum value is 16 characters." - ::= { dm3ConfigOutRlyEntry 2 } - -dm3ConfigOutRlyDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output Relay Delay. This OID represents the time delay from the initiation of an - output relay action to when the output relay action does occur. If the alarm condition - disappears before the end of the delay, no action will occur. Delay for Major - and Minor alarms is not configurable and is always set to 0. - - Values are represented in hundredths of seconds. - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigOutRlyEntry 3 } - -dm3ConfigOutRlyAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output Relay Alarm. This setting indicates what action to perform in the event of - an output relay alarm condition; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition. - - Relay Alarm for Major and Minor alarms is not configurable and is always set to - alarmMajor and alarmMinor respectively." - - ::= { dm3ConfigOutRlyEntry 4 } - - --- the dm3ConfigInputRelays group - -dm3ConfigInRlyTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant Input Relays controllable - by this IP address." - ::= { dm3ConfigInputRelays 1 } - -dm3ConfigInRlyTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3ConfigInRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the Input Relays. The number of - entries is contained in the dm3ConfigInRlyTableSize OID." - ::= { dm3ConfigInputRelays 2 } - -dm3ConfigInRlyEntry OBJECT-TYPE - SYNTAX Dm3ConfigInRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input relay to configure." - INDEX { dm3ConfigInRlyIndex } - ::= { dm3ConfigInRlyTable 1 } - -Dm3ConfigInRlyEntry ::= - SEQUENCE { - dm3ConfigInRlyIndex INTEGER, - dm3ConfigInRlyName DisplayString, - dm3ConfigInRlyDelay INTEGER, - dm3ConfigInRlyAlarm INTEGER - } - -dm3ConfigInRlyIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant input relay." - ::= { dm3ConfigInRlyEntry 1 } - -dm3ConfigInRlyName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the input relay. The maximum value is 16 characters." - - ::= { dm3ConfigInRlyEntry 2 } - -dm3ConfigInRlyDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input Relay Delay. This OID represents the time delay from the initiation of an - input relay action to when the input relay action does occur. If the alarm condition - disappears before the end of the delay, no action will occur. - - Values are represented in hundredths of seconds. - - Attempts to set the value above or below the acceptable range of the powerplant - will cause the value to be set at the high or low point of the range respectively." - ::= { dm3ConfigInRlyEntry 3 } - -dm3ConfigInRlyAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input Relay Alarm. This setting indicates what action to perform in the event of - an input relay alarm condition; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigInRlyEntry 4 } - --- the dm3ConfigBreakers group - -dm3ConfigBreakersTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant circuit breakers controllable - by this IP address." - ::= { dm3ConfigBreakers 1 } - -dm3ConfigBreakersTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3ConfigBreakersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the circuit breakers. The number of - entries is contained in the dm3ConfigBreakersTableSize OID." - ::= { dm3ConfigBreakers 2 } - -dm3ConfigBreakersEntry OBJECT-TYPE - SYNTAX Dm3ConfigBreakersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The circuit breaker to configure." - INDEX { dm3ConfigBreakersIndex } - ::= { dm3ConfigBreakersTable 1 } - -Dm3ConfigBreakersEntry ::= - SEQUENCE { - dm3ConfigBreakersIndex INTEGER, - dm3ConfigBreakersName DisplayString, - dm3ConfigBreakersAlarm INTEGER - } - -dm3ConfigBreakersIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant circuit breaker." - ::= { dm3ConfigBreakersEntry 1 } - -dm3ConfigBreakersName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the circuit breaker. The maximum value is 16 characters." - ::= { dm3ConfigBreakersEntry 2 } - -dm3ConfigBreakersAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Circuit Breaker Alarm. This setting indicates what action to perform in the event of - a circuit breaker alarm condition; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigBreakersEntry 3 } - --- the dm3ConfigFuses group - -dm3ConfigFusesTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant Fuses controllable - by this IP address." - ::= { dm3ConfigFuses 1 } - -dm3ConfigFusesTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3ConfigFusesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the Fuses. The number of - entries is contained in the dm3ConfigFusesTableSize OID." - ::= { dm3ConfigFuses 2 } - -dm3ConfigFusesEntry OBJECT-TYPE - SYNTAX Dm3ConfigFusesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The fuse to configure." - INDEX { dm3ConfigFusesIndex } - ::= { dm3ConfigFusesTable 1 } - -Dm3ConfigFusesEntry ::= - SEQUENCE { - dm3ConfigFusesIndex INTEGER, - dm3ConfigFusesName DisplayString, - dm3ConfigFusesAlarm INTEGER - } - -dm3ConfigFusesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant fuse." - ::= { dm3ConfigFusesEntry 1 } - -dm3ConfigFusesName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the fuse. The maximum value is 16 characters." - ::= { dm3ConfigFusesEntry 2 } - -dm3ConfigFusesAlarm OBJECT-TYPE - SYNTAX INTEGER { - alarmIgnore (1), - alarmRelay1 (2), - alarmRelay2 (3), - alarmRelay3 (4), - alarmRelay4 (5), - alarmRelay5 (6), - alarmRelay6 (7), - alarmMinor (8), - alarmMajor (9) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Fuses Alarm. This setting indicates what action to perform in the event of - a Fuse alarm condition; - Setting this OID to alarmIgnore (1) results in the alarm condition being ignored. - Setting this OID to alarmRelay1 (2) causes relay 1 to be activated for an - alarm condition. - Setting this OID to alarmRelay2 (3) causes relay 2 to be activated for an - alarm condition. - Setting this OID to alarmRelay3 (4) causes relay 3 to be activated for an - alarm condition. - Setting this OID to alarmRelay4 (5) causes relay 4 to be activated for an - alarm condition. - Setting this OID to alarmRelay5 (6) causes relay 5 to be activated for an - alarm condition. - Setting this OID to alarmRelay6 (7) causes relay 6 to be activated for an - alarm condition. - Setting this OID to alarmMinor (8) causes the Minor relay to be activated for an - alarm condition. - Setting this OID to alarmMajor (9) causes the Major relay to be activated for an - alarm condition." - - ::= { dm3ConfigFusesEntry 3 } - --- the dm3StatusSystem group - -dm3StatusSystemTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System temperature based on sensor on Master Controller PCB. - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dm3StatusSysTempUnits' OID (Celsius or Fahrenheit)." - - ::= { dm3StatusSystem 1 } - -dm3StatusSystemStart OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Time stamp at DC powerplant initialization. - The time is represented as MMM,DD,YYYY,HH:MM:SS." - ::= { dm3StatusSystem 2 } - -dm3StatusSysRemoteAccess OBJECT-TYPE - SYNTAX INTEGER { - accessEnabled (1), - accessDisabled (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Remote Access indicator - This setting indicates if configuration (write) access to the powerplant is enabled or - disabled at the powerplant level. - This value will be accessEnabled (1) if remote configuration is enabled, and - accessDisabled (2) if remote configuration is disabled." - ::= { dm3StatusSystem 3 } - -dm3StatusSysSecurityLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable shows the current active security access level of controller. This - can only be changed directly from the front panel." - ::= { dm3StatusSystem 4 } - -dm3StatusSysTempSanity OBJECT-TYPE - SYNTAX INTEGER{ - saneYES (1), - saneNO (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System temperature sanity indicator. Indicates if the system temperature is - reasonable. Reasonable is defined based on powerplant type. A value of saneYes (1) - indicates temperature is reasonable, a value of saneNo (2) indicates it is not." - ::= { dm3StatusSystem 5 } - -dm3StatusSysAlarmState OBJECT-TYPE - SYNTAX INTEGER{ - alarmMinor (1), - alarmMajor (2), - alarmBoth (3), - alarmNone (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System Alarm State. Reflects the alarm status of the overall DC system. - If a minor alarm is present, the value will be alarmMinor(1). - If a major alarm is present, the value will be alarmMajor(2). - If both minor and a major alarm is present, the value will be alarmBoth(3). - If no alarm is present, the value will be alarmNone(4)." - ::= { dm3StatusSystem 6 } - -dm3StatusSysTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - in the DC system, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { dm3StatusSystem 7 } - - --- the dm3StatusAlarms group - -dm3StatusAlarmsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant alarms viewable - by this IP address." - ::= { dm3StatusAlarms 1 } - -dm3StatusAlarmsTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusAlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing system alarms. The number of - entries is contained in the dm3StatusAlarmsTableSize OID." - ::= { dm3StatusAlarms 2 } - -dm3StatusAlarmsEntry OBJECT-TYPE - SYNTAX Dm3StatusAlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The alarm to display." - INDEX { dm3StatusAlarmsIndex } - ::= { dm3StatusAlarmsTable 1 } - -Dm3StatusAlarmsEntry ::= - SEQUENCE { - dm3StatusAlarmsIndex INTEGER, - dm3StatusAlarmsText DisplayString - } - -dm3StatusAlarmsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the system alarm." - ::= { dm3StatusAlarmsEntry 1 } - -dm3StatusAlarmsText OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The 16 character text describing the active alarm condition." - ::= { dm3StatusAlarmsEntry 2 } - --- the dm3StatusBattery group - -dm3StatusBattCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery Current: This OID shows the battery current in thousandths of Amps (mA)." - ::= { dm3StatusBattery 1 } - -dm3StatusBattTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery Temperature: - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dm3StatusSysTempUnits' OID (Celsius or Fahrenheit)." - - ::= { dm3StatusBattery 2 } - -dm3StatusBattCurrentSanity OBJECT-TYPE - SYNTAX INTEGER{ - saneYES (1), - saneNO (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery current sanity indicator. Indicates if the battery current is - reasonable. Reasonable is defined based on powerplant type. A value of saneYes (1) - indicates current is reasonable, a value of saneNo (2) indicates it is not." - ::= { dm3StatusBattery 3 } - -dm3StatusBattTempSanity OBJECT-TYPE - SYNTAX INTEGER{ - saneYES (1), - saneNO (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery temperature sanity indicator. Indicates if the battery temperature is - reasonable. Reasonable is defined based on powerplant type. A value of saneYes (1) - indicates temperature is reasonable, a value of saneNo (2) indicates it is not." - ::= { dm3StatusBattery 4 } - --- the dm3StatusOEM group - -dm3StatusOEMrectOffset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier offset value in thousandths of Volts (mV)." - ::= { dm3StatusOEM 1 } - -dm3StatusOEMrectGain OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier gain value in thousandths of Volts (mV/V)." - ::= { dm3StatusOEM 2 } - -dm3StatusOEMconvOffset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter offset value in thousandths of Volts (mV)." - ::= { dm3StatusOEM 3 } - -dm3StatusOEMconvGain OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter gain value in thousandths of Volts (mV/V)." - ::= { dm3StatusOEM 4 } - -dm3StatusOEMshuntOffset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the shunt offset value in thousandths of Amps (mA)." - ::= { dm3StatusOEM 5 } - -dm3StatusOEMshuntGain OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the shunt gain value in thousandths of Amps (mA/A)." - ::= { dm3StatusOEM 6 } - --- the dm3StatusLVD group - -dm3StatusLVDTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant LVDs viewable - by this IP address." - ::= { dm3StatusLVD 1 } - -dm3StatusLVDTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the LVDs. The number of - entries is contained in the dm3StatusLVDTableSize OID." - ::= { dm3StatusLVD 2 } - -dm3StatusLVDEntry OBJECT-TYPE - SYNTAX Dm3StatusLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The LVD to gather status from." - INDEX { dm3StatusLVDIndex } - ::= { dm3StatusLVDTable 1 } - -Dm3StatusLVDEntry ::= - SEQUENCE { - dm3StatusLVDIndex INTEGER, - dm3StatusLVDName DisplayString, - dm3StatusLVDState INTEGER, - dm3StatusLVDHwFault INTEGER - } - -dm3StatusLVDIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant LVD." - ::= { dm3StatusLVDEntry 1 } - -dm3StatusLVDName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the LVD. The maximum size is - 16 characters. The name is set by using the - dm3ConfigLVDName OID. - This OID is provided for informational purposes only." - ::= { dm3StatusLVDEntry 2 } - -dm3StatusLVDState OBJECT-TYPE - SYNTAX INTEGER { - statusClosed (1), - statusOpened (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusClosed (1) if the LVD is closed. - statusOpened (2) will be returned if the LVD is opened." - ::= { dm3StatusLVDEntry 3 } - -dm3StatusLVDHwFault OBJECT-TYPE - SYNTAX INTEGER { - statusFault (1), - statusNofault (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusFault (1) if the LVD is faulted. - statusNofault (2) will be returned if the LVD is not faulted." - ::= { dm3StatusLVDEntry 4 } - --- the dm3StatusRectifier group - -dm3StatusRectTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant rectifiers viewable - by this IP address." - ::= { dm3StatusRectifier 1 } - -dm3StatusRectTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusRectEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the rectifiers. The number of - entries is contained in the dm3StatusRectTableSize OID." - ::= { dm3StatusRectifier 2 } - -dm3StatusRectEntry OBJECT-TYPE - SYNTAX Dm3StatusRectEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The rectifier to gather status from." - INDEX { dm3StatusRectIndex } - ::= { dm3StatusRectTable 1 } - -Dm3StatusRectEntry ::= - SEQUENCE { - dm3StatusRectIndex INTEGER, - dm3StatusRectID INTEGER, - dm3StatusRectDesc DisplayString, - dm3StatusRectCurrent INTEGER, - dm3StatusRectCurrentLimit INTEGER, - dm3StatusRectStandby INTEGER, - dm3StatusRectFanFail INTEGER, - dm3StatusRectFail INTEGER, - dm3StatusRectDevType INTEGER, - dm3StatusRectPhyAddr INTEGER, - dm3StatusRectCfg INTEGER, - dm3StatusRectPcbRev INTEGER, - dm3StatusRectFwVer INTEGER, - dm3StatusRectPresent INTEGER, - dm3StatusRectDiagPass INTEGER, - dm3StatusRectState INTEGER - } - -dm3StatusRectIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant rectifier." - ::= { dm3StatusRectEntry 1 } - -dm3StatusRectID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier ID. This enumerates the number of the rectifier within - a group of rectifiers." - ::= { dm3StatusRectEntry 2 } - -dm3StatusRectDesc OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the 16-character rectifier description." - ::= { dm3StatusRectEntry 3 } - -dm3StatusRectCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier current in thousandths of Amps (mA)." - ::= { dm3StatusRectEntry 4 } - -dm3StatusRectCurrentLimit OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier is in the Current Limit state. - statusFalse (2) will be returned if the rectifier is not in the Current Limit state." - ::= { dm3StatusRectEntry 5 } - -dm3StatusRectStandby OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier is in the Standby state. - statusFalse (2) will be returned if the rectifier is not in the Standby state." - ::= { dm3StatusRectEntry 6 } - -dm3StatusRectFanFail OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier Fan has failed. - statusFalse (2) will be returned if the rectifier Fan has not failed." - ::= { dm3StatusRectEntry 7 } - -dm3StatusRectFail OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier has failed. - statusFalse (2) will be returned if the rectifier has not failed." - ::= { dm3StatusRectEntry 8 } - -dm3StatusRectDevType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier device type." - ::= { dm3StatusRectEntry 9 } - -dm3StatusRectPhyAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier physical address (the address on the bus)." - ::= { dm3StatusRectEntry 10 } - -dm3StatusRectCfg OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier is present after - power-up or set-configuration. - statusFalse (2) will be returned if the rectifier is not configured." - ::= { dm3StatusRectEntry 11 } - -dm3StatusRectPcbRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier device PCB serial number." - ::= { dm3StatusRectEntry 12 } - -dm3StatusRectFwVer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier device firmware revision." - ::= { dm3StatusRectEntry 13 } - -dm3StatusRectPresent OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier is present. - statusFalse (2) will be returned if the rectifier is not present." - ::= { dm3StatusRectEntry 14 } - -dm3StatusRectDiagPass OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier diagnostics have passed. - statusFalse (2) will be returned if the rectifier diagnostics have not passed." - ::= { dm3StatusRectEntry 15 } - -dm3StatusRectState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier device state as defined by the device status register." - ::= { dm3StatusRectEntry 16 } - -dm3StatusSysRectVoltSanity OBJECT-TYPE - SYNTAX INTEGER { - saneYES (1), - saneNO (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Rectifier voltage sanity indicator. Indicates if the rectifier voltage is - reasonable. Reasonable is defined based on powerplant type. A value of saneYes (1) - indicates voltage is reasonable, a value of saneNo (2) indicates it is not." - ::= { dm3StatusRectifier 3 } - -dm3StatusSysRectAvailable OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier is available. - statusFalse (2) will be returned if the rectifier is not available." - ::= { dm3StatusRectifier 4 } - -dm3StatusSysRectType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the type of rectifier the system has. There can only be a single type of - rectifier in the power plant" - ::= { dm3StatusRectifier 5 } - -dm3StatusSysRectVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the system level rectifier voltage in thousandths of Volts (mV)." - ::= { dm3StatusRectifier 6 } - -dm3StatusSysRectCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the system level rectifier current in thousandths of Amps (mA)." - ::= { dm3StatusRectifier 7 } - - --- the dm3StatusConverter group - -dm3StatusConvTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant converters viewable - by this IP address." - ::= { dm3StatusConverter 1 } - -dm3StatusConvTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusConvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for viewing status of the converters. The number of - entries is contained in the dm3StatusConvTableSize OID." - ::= { dm3StatusConverter 2 } - -dm3StatusConvEntry OBJECT-TYPE - SYNTAX Dm3StatusConvEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The converter to gather status from." - INDEX { dm3StatusConvIndex } - ::= { dm3StatusConvTable 1 } - -Dm3StatusConvEntry ::= - SEQUENCE { - dm3StatusConvIndex INTEGER, - dm3StatusConvID INTEGER, - dm3StatusConvDesc DisplayString, - dm3StatusConvCurrent INTEGER, - dm3StatusConvCurrentLimit INTEGER, - dm3StatusConvStandby INTEGER, - dm3StatusConvFanFail INTEGER, - dm3StatusConvFail INTEGER, - dm3StatusConvDevType INTEGER, - dm3StatusConvPhyAddr INTEGER, - dm3StatusConvCfg INTEGER, - dm3StatusConvPcbRev INTEGER, - dm3StatusConvFwVer INTEGER, - dm3StatusConvPresent INTEGER, - dm3StatusConvDiagPass INTEGER, - dm3StatusConvState INTEGER - } - -dm3StatusConvIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant converter." - ::= { dm3StatusConvEntry 1 } - -dm3StatusConvID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter ID. This enumerates the number of the converter within - a group of converters." - ::= { dm3StatusConvEntry 2 } - -dm3StatusConvDesc OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the 16 character converter description." - ::= { dm3StatusConvEntry 3 } - -dm3StatusConvCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter current in thousandths of Amps (mA)." - ::= { dm3StatusConvEntry 4 } - -dm3StatusConvCurrentLimit OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter is in the Current Limit state. - statusFalse (2) will be returned if the converter is not in the Current Limit state." - ::= { dm3StatusConvEntry 5 } - -dm3StatusConvStandby OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter is in the Standby state. - statusFalse (2) will be returned if the converter is not in the Standby state." - ::= { dm3StatusConvEntry 6 } - -dm3StatusConvFanFail OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter Fan has failed. - statusFalse (2) will be returned if the converter Fan has not failed." - ::= { dm3StatusConvEntry 7 } - -dm3StatusConvFail OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter has failed. - statusFalse (2) will be returned if the converter has not failed." - ::= { dm3StatusConvEntry 8 } - -dm3StatusConvDevType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter device type." - ::= { dm3StatusConvEntry 9 } - -dm3StatusConvPhyAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter physical address (the address on the bus)." - ::= { dm3StatusConvEntry 10 } - -dm3StatusConvCfg OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter is present after - power-up or set-configuration. - statusFalse (2) will be returned if the converter is not configured." - ::= { dm3StatusConvEntry 11 } - -dm3StatusConvPcbRev OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter device PCB serial number." - ::= { dm3StatusConvEntry 12 } - -dm3StatusConvFwVer OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter device firmware version." - ::= { dm3StatusConvEntry 13 } - -dm3StatusConvPresent OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter is present. - statusFalse (2) will be returned if the converter is not present." - ::= { dm3StatusConvEntry 14 } - -dm3StatusConvDiagPass OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter diagnostics have passed. - statusFalse (2) will be returned if the converter diagnostics have not passed." - ::= { dm3StatusConvEntry 15 } - -dm3StatusConvState OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter state as defined by the device status register." - ::= { dm3StatusConvEntry 16 } - -dm3StatusSysConvVoltSanity OBJECT-TYPE - SYNTAX INTEGER{ - saneYES (1), - saneNO (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Converter voltage sanity indicator. Indicates if the converter voltage is - reasonable. Reasonable is defined based on powerplant type. A value of saneYes (1) - indicates voltage is reasonable, a value of saneNo (2) indicates it is not." - ::= { dm3StatusConverter 3 } - -dm3StatusSysConvAvailable OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the converter is available. - statusFalse (2) will be returned if the converter is not available." - ::= { dm3StatusConverter 4 } - -dm3StatusSysConvType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the converter type." - ::= { dm3StatusConverter 5 } - -dm3StatusSysConvVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the system level converter voltage in thousandths of volts (mV)." - ::= { dm3StatusConverter 6 } - -dm3StatusSysConvCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the system level converter current in thousandths of Amps (mA)." - ::= { dm3StatusConverter 7 } - --- the dm3StatusOutputRelays group - -dm3StatusOutRlyTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant output relays viewable - by this IP address." - ::= { dm3StatusOutputRelays 1 } - -dm3StatusOutRlyTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusOutRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for viewing status of the output relays. The number of - entries is contained in the dm3StatusOutRlyTableSize OID." - ::= { dm3StatusOutputRelays 2 } - -dm3StatusOutRlyEntry OBJECT-TYPE - SYNTAX Dm3StatusOutRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relay to gather status from." - INDEX { dm3StatusOutRlyIndex } - ::= { dm3StatusOutRlyTable 1 } - -Dm3StatusOutRlyEntry ::= - SEQUENCE { - dm3StatusOutRlyIndex INTEGER, - dm3StatusOutRlyName DisplayString, - dm3StatusOutRlyStatus INTEGER - } - -dm3StatusOutRlyIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant output relay." - ::= { dm3StatusOutRlyEntry 1 } - -dm3StatusOutRlyName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the output relay. The maximum size is - 16 characters. The name is set by using the - dm3ConfigOutRlyName OID. - This OID is provided for informational purposes only." - ::= { dm3StatusOutRlyEntry 2 } - -dm3StatusOutRlyStatus OBJECT-TYPE - SYNTAX INTEGER { - statusOn (1), - statusOff (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusOn (1) if the output relay is enabled/on. - statusOff (2) will be returned if the output relay is disabled/off." - ::= { dm3StatusOutRlyEntry 3 } - - --- the dm3StatusInputRelays group - -dm3StatusInRlyTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant input relays viewable - by this IP address." - ::= { dm3StatusInputRelays 1 } - -dm3StatusInRlyTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusInRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for viewing status of the input relays. The number of - entries is contained in the dm3StatusInRlyTableSize OID." - ::= { dm3StatusInputRelays 2 } - - -dm3StatusInRlyEntry OBJECT-TYPE - SYNTAX Dm3StatusInRlyEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input relays to gather status from." - INDEX { dm3StatusInRlyIndex } - ::= { dm3StatusInRlyTable 1 } - -Dm3StatusInRlyEntry ::= - SEQUENCE { - dm3StatusInRlyIndex INTEGER, - dm3StatusInRlyName DisplayString, - dm3StatusInRlyStatus INTEGER - } - -dm3StatusInRlyIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant input relay." - ::= { dm3StatusInRlyEntry 1 } - -dm3StatusInRlyName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the input relay. The maximum size is - 16 characters. The name is set by using the - dm3ConfigInRlyName OID. - This OID is provided for informational purposes only." - ::= { dm3StatusInRlyEntry 2 } - -dm3StatusInRlyStatus OBJECT-TYPE - SYNTAX INTEGER { - statusOn (1), - statusOff (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusOn (1) if the input relay is enabled/on. - statusOff (2) will be returned if the input relay is disabled/off." - ::= { dm3StatusInRlyEntry 3 } - --- the dm3StatusBreakers group - -dm3StatusBreakersTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant circuit breakers viewable - by this IP address." - ::= { dm3StatusBreakers 1 } - -dm3StatusBreakersTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusBreakersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for viewing status of the circuit breakers. The number of - entries is contained in the dm3StatusBreakersTableSize OID." - ::= { dm3StatusBreakers 2 } - -dm3StatusBreakersEntry OBJECT-TYPE - SYNTAX Dm3StatusBreakersEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The circuit breaker to gather status from." - INDEX { dm3StatusBreakersIndex } - ::= { dm3StatusBreakersTable 1 } - -Dm3StatusBreakersEntry ::= - SEQUENCE { - dm3StatusBreakersIndex INTEGER, - dm3StatusBreakersName DisplayString, - dm3StatusBreakersStatus INTEGER - } - -dm3StatusBreakersIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant circuit breaker." - ::= { dm3StatusBreakersEntry 1 } - -dm3StatusBreakersName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the circuit breaker. The maximum size is - 16 characters. The name is set by using the - dm3ConfigBreakersName OID. - This OID is provided for informational purposes only." - ::= { dm3StatusBreakersEntry 2 } - -dm3StatusBreakersStatus OBJECT-TYPE - SYNTAX INTEGER { - statusClosed (1), - statusOpen (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusClosed (1) if the circuit breaker is closed. - statusOpen (2) will be returned if the circuit breaker is open." - ::= { dm3StatusBreakersEntry 3 } - --- the dm3StatusFuses group - -dm3StatusFusesTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant fuses controllable - by this IP address." - ::= { dm3StatusFuses 1 } - -dm3StatusFusesTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dm3StatusFusesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for viewing status of the fuses. The number of - entries is contained in the dm3StatusFusesTableSize OID." - ::= { dm3StatusFuses 2 } - -dm3StatusFusesEntry OBJECT-TYPE - SYNTAX Dm3StatusFusesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The fuse to gather status from." - INDEX { dm3StatusFusesIndex } - ::= { dm3StatusFusesTable 1 } - -Dm3StatusFusesEntry ::= - SEQUENCE { - dm3StatusFusesIndex INTEGER, - dm3StatusFusesName DisplayString, - dm3StatusFusesStatus INTEGER - } - -dm3StatusFusesIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant fuse." - ::= { dm3StatusFusesEntry 1 } - -dm3StatusFusesName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the fuse. The maximum size is - 16 characters. The name is set by using the - dm3ConfigFuseName OID. - This OID is provided for informational purposes only." - ::= { dm3StatusFusesEntry 2 } - -dm3StatusFusesStatus OBJECT-TYPE - SYNTAX INTEGER { - statusClosed (1), - statusOpen (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusClosed (1) if the fuse is closed. - statusOpen (2) will be returned if the fuse is open." - ::= { dm3StatusFusesEntry 3 } - --- the atsIdent group - -atsIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Automatic Transfer Switch. - This value is set at the factory." - ::= { atsIdent 1 } - -atsIdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A string identifying the Automatic Transfer Switch - firmware revision." - ::= { atsIdent 2 } - -atsIdentFirmwareDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of release for this Automatic Transfer Switch - firmware revision. " - ::= { atsIdent 3 } - -atsIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the Automatic Transfer Switch was manufactured in mm/dd/yyyy format. - This value is set at the factory. " - ::= { atsIdent 4 } - -atsIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A string identifying the model number of the Automatic Transfer Switch. - This value is set at the factory." - ::= { atsIdent 5 } - -atsIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A string identifying the serial number of - the Automatic Transfer Switch. This value is set at the factory." - ::= { atsIdent 6 } - -atsIdentNominalLineVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "RMS Utility Voltage measured in Volts." - ::= { atsIdent 7 } - -atsIdentNominalLineFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Utility Power Frequency measured in Hertz." - ::= { atsIdent 8 } - -atsIdentDeviceRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This gives the device rating in Amps" - ::= { atsIdent 9 } - - --- the atsCalibration group - --- Input Voltage Calibration Factor table - - atsCalibrationNumInputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of inputs to this device." - ::= { atsCalibrationInput 1 } - - atsCalibrationNumInputPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of phases per input for this device." - ::= { atsCalibrationInput 2 } - - atsCalibrationInputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATSCalibrationInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The number of phases per input line to this device." - ::= { atsCalibrationInput 3 } - - atsCalibrationInputPhaseEntry OBJECT-TYPE - SYNTAX ATSCalibrationInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing calibration information applicable to a - particular input phase." - INDEX { atsCalibrationInputTableIndex, atsCalibrationInputPhaseTableIndex } - ::= { atsCalibrationInputPhaseTable 1 } - - ATSCalibrationInputPhaseEntry ::= SEQUENCE { - atsCalibrationInputTableIndex INTEGER, - atsCalibrationInputPhaseTableIndex INTEGER, - atsLineVoltageCalibrationFactor INTEGER - } - - atsCalibrationInputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input identifier." - ::= { atsCalibrationInputPhaseEntry 1 } - - atsCalibrationInputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase identifier." - ::= { atsCalibrationInputPhaseEntry 2 } - - atsLineVoltageCalibrationFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Line Voltage Calibration factor. - This value is set at the factory." - ::= { atsCalibrationInputPhaseEntry 3 } - --- Power Supply Voltage Calibration table - - atsCalibrationPowerSupplyVoltages OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of power supply voltages supported by this device. - This variable indicates the number of rows in the - atsCalibrationPowerSupplyTable." - ::= { atsCalibrationPowerSupply 1 } - - atsCalibrationPowerSupplyVoltageTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATSCalibrationPowerSupplyVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Power Supply table entries." - ::= { atsCalibrationPowerSupply 2 } - - atsCalibrationPowerSupplyVoltageEntry OBJECT-TYPE - SYNTAX ATSCalibrationPowerSupplyVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular Power Supply Voltage." - INDEX { atsCalibrationPowerSupplyVoltageTableIndex } - ::= { atsCalibrationPowerSupplyVoltageTable 1 } - - ATSCalibrationPowerSupplyVoltageEntry ::= SEQUENCE { - atsCalibrationPowerSupplyVoltageTableIndex INTEGER, - atsCalibrationPowerSupplyVoltage INTEGER, - atsPowerSupplyVoltageCalibrationFactor INTEGER - } - - atsCalibrationPowerSupplyVoltageTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power supply voltage identifier." - ::= { atsCalibrationPowerSupplyVoltageEntry 1 } - - atsCalibrationPowerSupplyVoltage OBJECT-TYPE - SYNTAX INTEGER { - powerSupply24V(1), - powerSupply12V(2), - powerSupply(3), - powerSupply24VSourceB(4), - powerSupplyMinus12V(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This value describes the power supply voltage of - 24V Source A, 24V Source B, +12V, -12V and 5V." - ::= { atsCalibrationPowerSupplyVoltageEntry 2 } - - atsPowerSupplyVoltageCalibrationFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The Line Voltage Calibration factor. - This value is set at the factory." - ::= { atsCalibrationPowerSupplyVoltageEntry 3 } - - --- Output Current Calibration table - - atsCalibrationNumOutputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output lines from this device. - This variable indicates the number of rows in the - atsCalibrationOutputTable." - ::= { atsCalibrationOutput 1 } - - atsCalibrationNumOutputPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output phases utilized in this - device." - ::= { atsCalibrationOutput 2 } - - atsCalibrationOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATSCalibrationOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries." - ::= { atsCalibrationOutput 3 } - - atsCalibrationOutputEntry OBJECT-TYPE - SYNTAX ATSCalibrationOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { atsCalibrationOutputTableIndex, atsCalibrationOutputPhasesTableIndex } - ::= { atsCalibrationOutputTable 1 } - - ATSCalibrationOutputEntry ::= SEQUENCE { - atsCalibrationOutputTableIndex INTEGER, - atsCalibrationOutputPhasesTableIndex INTEGER, - atsOutputCurrentCalibrationFactor INTEGER - } - - atsCalibrationOutputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { atsCalibrationOutputEntry 1 } - - atsCalibrationOutputPhasesTableIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3), - neutral(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each calibration factor for each - output phase utilized in this device and one for neutral. " - ::= { atsCalibrationOutputEntry 2 } - - atsOutputCurrentCalibrationFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current calibration factor measured in Amps." - ::= { atsCalibrationOutputEntry 3 } - --- Exp Begin --- ATS4G output current calibration - ats4gCalibrationOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATS4GCalibrationOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. It is not applicable to - AP77xx ATS units." - ::= { atsCalibrationOutput 4 } - - ats4gCalibrationOutputEntry OBJECT-TYPE - SYNTAX ATS4GCalibrationOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { ats4gCalibrationOutputTableIndex, ats4gCalibrationOutputPhasesTableIndex} - ::= { ats4gCalibrationOutputTable 1 } - - ATS4GCalibrationOutputEntry ::= SEQUENCE { - ats4gCalibrationOutputTableIndex INTEGER, - ats4gCalibrationOutputPhasesTableIndex INTEGER, - ats4gOutputCurrentCalibrationFactor INTEGER - } - - ats4gCalibrationOutputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { ats4gCalibrationOutputEntry 1 } - - ats4gCalibrationOutputPhasesTableIndex OBJECT-TYPE - SYNTAX INTEGER{ - sourceALine(1), - sourneANeutral(2), - sourceBLine(3), - sourceBNeutral(4), - bank1(5), - bank2(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each calibration factor for each output phase utilized - in this device and one for neutral. Bank 1 and Bank 2 are for units - with two circuit breakers. It is not applicable to AP77xx ATS units." - ::= { ats4gCalibrationOutputEntry 2 } - - ats4gOutputCurrentCalibrationFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current calibration factor measured in Amps. - It is not applicable to AP7xxx ATS units." - ::= { ats4gCalibrationOutputEntry 3 } --- Exp End - --- the atsControl group - -atsControlResetATS OBJECT-TYPE - SYNTAX INTEGER { - none(1), - reset(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable will cause the Automatic Transfer Switch to - perform a power-on reset." - ::= { atsControl 1 } - -atsControlClearAllAlarms OBJECT-TYPE - SYNTAX INTEGER { - none(1), - clear(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable will clear all alarms in the Automatic Transfer Switch. - Returns (-1) if unsupported." - ::= { atsControl 2 } - - --- the atsConfig group - -atsConfigProductName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A configurable character string." - ::= { atsConfig 1 } - -atsConfigPreferredSource OBJECT-TYPE - SYNTAX INTEGER { - sourceA(1), - sourceB(2), - none(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This variable returns the preferred source of power when both sources are OK." - ::= { atsConfig 2 } - -atsConfigFrontPanelLockout OBJECT-TYPE - SYNTAX INTEGER { - disableFrontPanel(1), - enableFrontPanel(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this variable to disableFrontPanel(1), prevents source - preference configuration of the Automatic Transfer Switch via the - Front Panel. - Setting this variable to enableFrontPanel(2)allows, source preference - configuration of the Automatic Transfer Switch via the Front Panel." - ::= { atsConfig 3 } - -atsConfigVoltageSensitivity OBJECT-TYPE - SYNTAX INTEGER { - high(1), - low(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This variable defines the sensitivity to changes in voltage: - high(1) for best protection, low(2) for frequent small line - voltage changes." - ::= { atsConfig 4 } - -atsConfigTransferVoltageRange OBJECT-TYPE - SYNTAX INTEGER { - wide(1), - medium(2), - narrow(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This variable defines the range of acceptable voltage from a power source. - If the voltage measured from the selected input source is not within this - range, the Automatic Transfer Switch will switch over (transfer) to the - alternate power source." - - ::= { atsConfig 5 } - -atsConfigCurrentLimit OBJECT-TYPE - SYNTAX INTEGER (0..20) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The threshold (in Amps) at which an Over Current Alarm will be generated. - This OID returns the overload threshold value of the - OID atsConfigPhaseOverLoadThreshold for the 1U ATS and - OID atsConfigBankOverLoadThreshold of total for the 2U ATS. - Setting this OID does not have any impact on the device." - ::= { atsConfig 6 } - - -atsConfigResetValues OBJECT-TYPE - SYNTAX INTEGER { - none(1), - reset(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Resets the ATS configuration to its default values. - Returns (-1) if not supported." - - ::= { atsConfig 7 } - -atsConfigLineVRMS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To configure the input RMS voltage." - - ::= { atsConfig 8 } - -atsConfigLineVRMSNarrowLimit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To configure the Line VRMS Narrow Limit." - - ::= { atsConfig 9 } - -atsConfigLineVRMSMediumLimit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To configure the Line VRMS Medium Limit." - - ::= { atsConfig 10 } - -atsConfigLineVRMSWideLimit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To configure the Line VRMS Wide Limit." - - ::= { atsConfig 11 } - -atsConfigFrequencyDeviation OBJECT-TYPE - SYNTAX INTEGER { - one(1), - two(2), - three(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "To configure the frequency deviation." - - ::= { atsConfig 12 } - --- Bank table - -atsConfigBankTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the bank table." - ::= { atsConfig 13 } - - -atsConfigBankTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATSConfigBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of each ATS bank." - ::= { atsConfig 14 } - -atsConfigBankEntry OBJECT-TYPE - SYNTAX ATSConfigBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to bank current threshold" - INDEX { atsConfigBankTableIndex } - ::= { atsConfigBankTable 1 } - -ATSConfigBankEntry ::= - SEQUENCE { - atsConfigBankTableIndex INTEGER, - atsConfigBank INTEGER, - atsConfigBankLowLoadThreshold INTEGER, - atsConfigBankNearOverLoadThreshold INTEGER, - atsConfigBankOverLoadThreshold INTEGER - } - -atsConfigBankTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index to the bank table entry." - ::= { atsConfigBankEntry 1 } - -atsConfigBank OBJECT-TYPE - SYNTAX INTEGER { - total (1), - bank1 (2), - bank2 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bank number of an ATS" - ::= { atsConfigBankEntry 2 } - -atsConfigBankLowLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the current drawn is nearing - a low consumption condition. It is represented in Amps. - A warning will be issued when the load is less than the - threshold value. - - A threshold value of 0 Amps disables this warning. - - Maximum value must be less than the value returned - by the atsConfigBankNearOverLoadThreshold OID." - ::= { atsConfigBankEntry 3 } - -atsConfigBankNearOverLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the current drawn is nearing - an overload condition. It is represented in Amps. - A warning will be issued when the load is greater than - or equal to the threshold value. - - Minimum value must be greater than the value returned by - the atsConfigBankLowLoadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the atsConfigBankOverLoadThreshold OID." - ::= { atsConfigBankEntry 4 } - -atsConfigBankOverLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the current drawn has entered - an overload condition. It is represented in Amps. - A warning will be issued when the load is greater than or - equal to the threshold value. - - Minimum value must be greater than or equal to the value - returned by the atsConfigBankNearOverLoadThreshold OID. - - Maximum value must be less than or equal to the value returned by - atsIdentDeviceRating OID." - ::= { atsConfigBankEntry 5 } - --- Phase table - -atsConfigPhaseTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the phase table." - ::= { atsConfig 15 } - - -atsConfigPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATSConfigPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of each ATS phase." - ::= { atsConfig 16 } - -atsConfigPhaseEntry OBJECT-TYPE - SYNTAX ATSConfigPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to phase threshold" - INDEX { atsConfigPhaseTableIndex } - ::= { atsConfigPhaseTable 1 } - -ATSConfigPhaseEntry ::= - SEQUENCE { - atsConfigPhaseTableIndex INTEGER, - atsConfigPhase INTEGER, - atsConfigPhaseLowLoadThreshold INTEGER, - atsConfigPhaseNearOverLoadThreshold INTEGER, - atsConfigPhaseOverLoadThreshold INTEGER - } - -atsConfigPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the phase table entry." - ::= { atsConfigPhaseEntry 1 } - -atsConfigPhase OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase number of an ATS" - ::= { atsConfigPhaseEntry 2 } - -atsConfigPhaseLowLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the current drawn is nearing - a low consumption condition. It is represented in Amps. - A warning will be issued when the load is less than the - threshold value. - - A threshold value of 0 Amps disables this warning. - - Maximum value must be less than the value returned - by the atsConfigPhaseNearOverLoadThreshold OID." - ::= { atsConfigPhaseEntry 3 } - -atsConfigPhaseNearOverLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the current drawn is nearing - an overload condition. It is represented in Amps. - A warning will be issued when the load is greater than - or equal to the threshold value. - - Minimum value must be greater than the value returned by - the atsConfigPhaseLowLoadThreshold OID. - - Maximum value must be less than or equal to the value - returned by the atsConfigPhaseOverLoadThreshold OID." - ::= { atsConfigPhaseEntry 4 } - -atsConfigPhaseOverLoadThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold that indicates the current drawn has entered - an overload condition. It is represented in Amps. - A warning will be issued when the load is greater than or - equal to the threshold value. - - Minimum value must be greater than or equal to the value - returned by the atsConfigPhaseNearOverLoadThreshold OID. - - Maximum value must be less than or equal to the value - returned by atsIdentDeviceRating OID." - ::= { atsConfigPhaseEntry 5 } - - --- the atsStatus group - - atsStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - atsNeverDiscovered(1), - atsCommEstablished(2), - atsCommLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the current communication status - of the Automatic Transfer Switch. " - ::= { atsStatusDeviceStatus 1 } - - - atsStatusSelectedSource OBJECT-TYPE - SYNTAX INTEGER { - sourceA(1), - sourceB(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the current source of power. " - ::= { atsStatusDeviceStatus 2 } - - - atsStatusRedundancyState OBJECT-TYPE - SYNTAX INTEGER { - atsRedundancyLost(1), - atsFullyRedundant(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the current redundancy state of the ATS. - atsRedundancyLost(1) indicates that the ATS is unable to - switch over to the alternate power source if the current source fails. - atsFullyRedundant(2) indicates that the ATS will switch over to - the alternate power source if the current source fails." - ::= { atsStatusDeviceStatus 3 } - - - atsStatusOverCurrentState OBJECT-TYPE - SYNTAX INTEGER { - atsOverCurrent(1), - atsCurrentOK(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the output current state of the ATS. - atsOverCurrent(1) indicates that the ATS has exceeded the output - current threshold and will not allow a switch over to the alternate power - source if the current source fails. - atsCurrentOK(2) indicates that the output current is below the - output current threshold. - This OID returns the value of the OID atsOutputPhaseState for the 1U ATS and - OID atsOutputBankState for the 2U ATS." - ::= { atsStatusDeviceStatus 4 } - - atsStatus5VPowerSupply OBJECT-TYPE - SYNTAX INTEGER { - atsPowerSupplyFailure(1), - atsPowerSupplyOK(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the present state of the ATS 5V power supply. - atsPowerSupplyFailure(1) indicates the 5V power supply has failed - and that the ATS serial port Configuration Menu is not accessible . - atsPowerSupplyOK(2) indicates that the ATS 5V power supply - is operating within tolerance." - ::= { atsStatusDeviceStatus 5 } - - atsStatus24VPowerSupply OBJECT-TYPE - SYNTAX INTEGER { - atsPowerSupplyFailure(1), - atsPowerSupplyOK(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the present state of the ATS 24V power supply for Source A. - atsPowerSupplyFailure(1) indicates the 24V power supply has failed - and the ATS is unable to switch over to the alternate power source if - the current source fails. - atsPowerSupplyOK(2) indicates that the ATS 24V power supply - is operating within tolerance." - ::= { atsStatusDeviceStatus 6 } - - - atsStatus24VSourceBPowerSupply OBJECT-TYPE - SYNTAX INTEGER { - atsPowerSupplyFailure(1), - atsPowerSupplyOK(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the present state of the ATS 24V power supply for Source B. - atsPowerSupplyFailure(1) indicates the 24V power supply has failed - and the ATS is unable to switch over to the alternate power source if - the current source fails. - atsPowerSupplyOK(2) indicates that the ATS 24V power supply - is operating within tolerance." - ::= { atsStatusDeviceStatus 7 } - -atsStatusPlus12VPowerSupply OBJECT-TYPE - SYNTAX INTEGER { - atsPowerSupplyFailure(1), - atsPowerSupplyOK(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the present state of the ATS 12V power supply. - atsPowerSupplyFailure(1) indicates the 12V power supply has failed - and the ATS is unable to monitor the current sensors. - atsPowerSupplyOK(2) indicates that the ATS 12V power supply - is operating within tolerance." - ::= { atsStatusDeviceStatus 8 } - - - atsStatusMinus12VPowerSupply OBJECT-TYPE - SYNTAX INTEGER { - atsPowerSupplyFailure(1), - atsPowerSupplyOK(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the present state of the ATS -12V power supply. - atsPowerSupplyFailure(1) indicates the -12V power supply has failed - and the ATS is unable to monitor the current sensors. - atsPowerSupplyOK(2) indicates that the ATS -12V power supply - is operating within tolerance." - ::= { atsStatusDeviceStatus 9 } - - atsStatusSwitchStatus OBJECT-TYPE - SYNTAX INTEGER { - fail(1), - ok(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the status of the ATS." - ::= { atsStatusDeviceStatus 10 } - - - atsStatusFrontPanel OBJECT-TYPE - SYNTAX INTEGER { - locked(1), - unlocked(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the present state of the ATS front panel. - locked(1): Front panel button cannot be used to change the sources. - unlocked(2): Front panel button can be used to change the sources. " - - ::= { atsStatusDeviceStatus 11 } - - - atsStatusSourceAStatus OBJECT-TYPE - SYNTAX INTEGER { - fail(1), - ok(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the status of the Source A." - ::= { atsStatusDeviceStatus 12 } - - - atsStatusSourceBStatus OBJECT-TYPE - SYNTAX INTEGER { - fail(1), - ok(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the status of the Source B." - ::= { atsStatusDeviceStatus 13 } - - - atsStatusPhaseSyncStatus OBJECT-TYPE - SYNTAX INTEGER { - inSync(1), - outOfSync(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the status of the phase synch." - ::= { atsStatusDeviceStatus 14 } - - - atsStatusVoltageOutStatus OBJECT-TYPE - SYNTAX INTEGER { - fail(1), - ok(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the output voltage status." - ::= { atsStatusDeviceStatus 15 } - - - atsStatusHardwareStatus OBJECT-TYPE - SYNTAX INTEGER { - fail(1), - ok(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This variable returns the status of display board hardware." - ::= { atsStatusDeviceStatus 16 } - atsStatusResetMaxMinValues OBJECT-TYPE - SYNTAX INTEGER { - none(1), - reset(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Resets the maximum and minimum ATS values: - atsInputMaxVoltage, atsInputMinVoltage, - atsInputMaxCurrent, atsInputMinCurrent, - atsInputMaxPower, atsInputMinPower, - atsOutputMaxCurrent, atsOutputMinCurrent, - atsOutputMaxLoad, atsOutputMinLoad, - atsOutputMaxPercentLoad, atsOutputMinPercentLoad, - atsOutputMaxPower, atsOutputMinPower, - atsOutputMaxPercentPower, atsOutputMinPercentPower. - These variables represent the maximum and minimum ATS values - since the last time they were read or reset by this OID. - Values unsupported by this ATS will return (-1)." - ::= { atsStatusResetValues 1 } - --- --- Input Group --- --- Number of Inputs - atsNumInputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input feeds to this device. - This variable indicates the number of rows in the - input table." - ::= { atsStatusInput 1 } - --- Input Table - - atsInputTable OBJECT-TYPE - SYNTAX SEQUENCE OF AtsInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries. The number of entries - is given by the value of atsNumInputs." - ::= { atsStatusInput 2 } - - atsInputEntry OBJECT-TYPE - SYNTAX AtsInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input." - INDEX { atsInputTableIndex } - ::= { atsInputTable 1 } - - AtsInputEntry ::= SEQUENCE { - atsInputTableIndex INTEGER, - atsNumInputPhases INTEGER, - atsInputVoltageOrientation INTEGER, - atsInputFrequency INTEGER, - atsInputType INTEGER, - atsInputName DisplayString - } - - atsInputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input identifier." - ::= { atsInputEntry 1 } - - atsNumInputPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input phases utilized in this - device. The sum of all the atsNumInputPhases - variable indicates the number of rows in the - input phase table." - ::= { atsInputEntry 2 } - - atsInputVoltageOrientation OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - singlePhase(2), - splitPhase(3), - threePhasePhaseToNeutral(4), - threePhasePhaseToPhase(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input voltage orientation: - 1: unknown for this Source - 2: singlePhase - phase 1 voltage is between Phase 1 - and Neutral. - 3: splitPhase - phase 1 voltage is between Phase 1 and - Neutral; phase 2 voltage is between Phase 2 and Neutral; - phase 3 voltage is between Phase 1 and Phase 2. - 4: threePhasePhaseToNeutral - phase 1 voltage is between - Phase 1 and Neutral; phase 2 voltage is between Phase 2 - and Neutral; phase 3 voltage is between Phase 3 and - Neutral. - 5: threePhasePhaseToPhase - phase 1 voltage is between - Phase 1 and Phase 2; phase 2 voltage is between Phase 2 - and Phase 3; phase 3 voltage is between Phase 3 and - Phase 1." - ::= { atsInputEntry 3 } - - atsInputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input frequency in Hertz, or -1 if it's unsupported - by this Source." - ::= { atsInputEntry 4 } - - atsInputType OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - main(2), - bypass(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input type." - ::= { atsInputEntry 5 } - - atsInputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A name given to a particular input." - ::= { atsInputEntry 6 } - --- Input Phase Table - - atsInputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF AtsInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of input table entries. The number of entries - is given by the sum of the atsNumInputPhases." - ::= { atsStatusInput 3 } - - atsInputPhaseEntry OBJECT-TYPE - SYNTAX AtsInputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular input phase." - INDEX { atsInputPhaseTableIndex, atsInputPhaseIndex } - ::= { atsInputPhaseTable 1 } - - AtsInputPhaseEntry ::= SEQUENCE { - atsInputPhaseTableIndex INTEGER, - atsInputPhaseIndex INTEGER, - atsInputVoltage INTEGER, - atsInputMaxVoltage INTEGER, - atsInputMinVoltage INTEGER, - atsInputCurrent INTEGER, - atsInputMaxCurrent INTEGER, - atsInputMinCurrent INTEGER, - atsInputPower INTEGER, - atsInputMaxPower INTEGER, - atsInputMinPower INTEGER - } - - atsInputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input identifier." - ::= { atsInputPhaseEntry 1 } - - atsInputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input phase identifier." - ::= { atsInputPhaseEntry 2 } - - atsInputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input voltage in VAC, or -1 if it's unsupported - by this Source." - ::= { atsInputPhaseEntry 3 } - - atsInputMaxVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum input voltage in VAC measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsInputPhaseEntry 4 } - - atsInputMinVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum input voltage in VAC measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsInputPhaseEntry 5 } - - atsInputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input current in amperes, or -1 if it's - unsupported by this Source." - ::= { atsInputPhaseEntry 6 } - - atsInputMaxCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum input current in amperes measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsInputPhaseEntry 7 } - - atsInputMinCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum input current in amperes measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsInputPhaseEntry 8 } - - atsInputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input power in Watts, or -1 if it's unsupported - by this Source." - ::= { atsInputPhaseEntry 9 } - - atsInputMaxPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum input power in Watts measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsInputPhaseEntry 10 } - - atsInputMinPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum input power in Watts measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsInputPhaseEntry 11 } - - -- - -- The Output group. - -- - - -- Number of Outputs - - atsNumOutputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output feeds to this device. - This variable indicates the number of rows in the - output table." - ::= { atsStatusOutput 1 } - - -- Output Table - - atsOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF AtsOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of entries - is given by the value of atsOutputNumPhases." - ::= { atsStatusOutput 2 } - - atsOutputEntry OBJECT-TYPE - SYNTAX AtsOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output." - INDEX { atsOutputTableIndex } - ::= { atsOutputTable 1 } - - AtsOutputEntry ::= SEQUENCE { - atsOutputTableIndex INTEGER, - atsNumOutputPhases INTEGER, - atsOutputVoltageOrientation INTEGER, - atsOutputFrequency INTEGER - } - - atsOutputTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { atsOutputEntry 1 } - - atsNumOutputPhases OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output phases utilized in this - device. The sum of all the atsNumOutputPhases - variable indicates the number of rows in the - output phase table." - ::= { atsOutputEntry 2 } - - atsOutputVoltageOrientation OBJECT-TYPE - SYNTAX INTEGER { - unknown(1), - singlePhase(2), - splitPhase(3), - threePhasePhaseToNeutral(4), - threePhasePhaseToPhase(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage orientation: - 1: unknown for this ATS - 2: singlePhase - phase 1 voltage is between Phase 1 - and Neutral. - 3: splitPhase - phase 1 voltage is between Phase 1 and - Neutral; phase 2 voltage is between Phase 2 and Neutral; - phase 3 voltage is between Phase 1 and Phase 2. - 4: threePhasePhaseToNeutral - phase 1 voltage is between - Phase 1 and Neutral; phase 2 voltage is between Phase 2 - and Neutral; phase 3 voltage is between Phase 3 and - Neutral. - 5: threePhasePhaseToPhase - phase 1 voltage is between - Phase 1 and Phase 2; phase 2 voltage is between Phase 2 - and Phase 3; phase 3 voltage is between Phase 3 and - Phase 1." - ::= { atsOutputEntry 3 } - - atsOutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output frequency in Hertz, or -1 if it's - unsupported by this ATS." - ::= { atsOutputEntry 4 } - - -- Output Phase Table - - atsOutputPhaseTable OBJECT-TYPE - SYNTAX SEQUENCE OF AtsOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output table entries. The number of - entries is given by the sum of the atsNumOutputPhases." - ::= { atsStatusOutput 3 } - - atsOutputPhaseEntry OBJECT-TYPE - SYNTAX AtsOutputPhaseEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information applicable to a - particular output phase." - INDEX { atsOutputPhaseTableIndex, atsOutputPhaseIndex } - ::= { atsOutputPhaseTable 1 } - - AtsOutputPhaseEntry ::= SEQUENCE { - atsOutputPhaseTableIndex INTEGER, - atsOutputPhaseIndex INTEGER, - atsOutputVoltage INTEGER, - atsOutputCurrent INTEGER, - atsOutputMaxCurrent INTEGER, - atsOutputMinCurrent INTEGER, - atsOutputLoad INTEGER, - atsOutputMaxLoad INTEGER, - atsOutputMinLoad INTEGER, - atsOutputPercentLoad INTEGER, - atsOutputMaxPercentLoad INTEGER, - atsOutputMinPercentLoad INTEGER, - atsOutputPower INTEGER, - atsOutputMaxPower INTEGER, - atsOutputMinPower INTEGER, - atsOutputPercentPower INTEGER, - atsOutputMaxPercentPower INTEGER, - atsOutputMinPercentPower INTEGER, - atsOutputPhaseState INTEGER - } - - atsOutputPhaseTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output identifier." - ::= { atsOutputPhaseEntry 1 } - - atsOutputPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3), - neutral(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each output phase utilized in - this device and one for neutral. " - ::= { atsOutputPhaseEntry 2 } - - atsOutputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage in VAC, or -1 if it's unsupported - by this ATS." - ::= { atsOutputPhaseEntry 3 } - - atsOutputCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output current in 0.1 amperes drawn - by the load on the ATS, or -1 if it's unsupported - by this ATS." - ::= { atsOutputPhaseEntry 4 } - - atsOutputMaxCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output current in 0.1 amperes measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 5 } - - atsOutputMinCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output current in 0.1 amperes measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 6 } - - atsOutputLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output load in VA, or -1 if it's unsupported - by this ATS." - ::= { atsOutputPhaseEntry 7 } - - atsOutputMaxLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output load in VA measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 8 } - - atsOutputMinLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output load in VA measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 9 } - - atsOutputPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the ATS load capacity in VA at - redundancy @ (n + x) presently being used on this - output phase, or -1 if it's unsupported by this ATS." - ::= { atsOutputPhaseEntry 10 } - - atsOutputMaxPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the ATS load capacity in - VA measured at redundancy @ (n + x) presently - being used on this output phase since the last time - this variable was read or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 11 } - - atsOutputMinPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum percentage of the ATS load capacity in - VA measured at redundancy @ (n + x) presently - being used on this output phase since the last time - this variable was read or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 12 } - - atsOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output power in Watts, or -1 if it's - unsupported by this ATS." - ::= { atsOutputPhaseEntry 13 } - - atsOutputMaxPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output power in Watts measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 14 } - - atsOutputMinPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output power in Watts measured - since the last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 15 } - - atsOutputPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the ATSpower capacity in Watts at - redundancy @ (n + x) presently being used on this - output phase, or -1 if it's unsupported by this ATS." - ::= { atsOutputPhaseEntry 16 } - - atsOutputMaxPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the ATSpower capacity - in Watts measured at redundancy @ (n + x) presently - being used on this output phase since the last time - this variable was read or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 17 } - - atsOutputMinPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum percentage of the ATSpower capacity - in Watts measured at redundancy @ (n + x) presently - being used on this output phase since the last time - this variable was read or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputPhaseEntry 18 } - - - atsOutputPhaseState OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - lowload (2), - nearoverload (3), - overload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the phase load state. - - normal(1) indicates that the bank is operating properly - within the atsConfigPhaseLowLoadThreshold and - atsConfigPhaseNearOverLoadThreshold OID values. - - lowload(2) indicates that the bank load has dropped below - the atsConfigPhaseLowLoadThreshold OID value. An SNMP trap - will occur when this state is entered or cleared. - - nearoverload(3) indicates that the bank load is greater than - or equal to the atsConfigPhaseNearOverLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - overload(4) indicates that the bank load is greater than or - equal to the atsConfigPhaseOverLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared." - ::= { atsOutputPhaseEntry 19 } - - - atsOutputBankTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the bank table." - ::= { atsStatusOutput 4 } - - - atsOutputBankTable OBJECT-TYPE - SYNTAX SEQUENCE OF ATSOutputBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting table entries." - ::= { atsStatusOutput 5 } - - atsOutputBankEntry OBJECT-TYPE - SYNTAX ATSOutputBankEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This gives access to bank table entries" - INDEX { atsOutputBankTableIndex } - ::= { atsOutputBankTable 1 } - - ATSOutputBankEntry ::= - SEQUENCE { - atsOutputBankTableIndex INTEGER, - atsOutputPhase INTEGER, - atsOutputBank INTEGER, - atsOutputBankCurrent Gauge, - atsOutputBankState INTEGER, - atsOutputBankOutputVoltage INTEGER, - atsOutputBankMaxCurrent INTEGER, - atsOutputBankMinCurrent INTEGER, - atsOutputBankLoad INTEGER, - atsOutputBankMaxLoad INTEGER, - atsOutputBankMinLoad INTEGER, - atsOutputBankPercentLoad INTEGER, - atsOutputBankMaxPercentLoad INTEGER, - atsOutputBankMinPercentLoad INTEGER, - atsOutputBankPower INTEGER, - atsOutputBankMaxPower INTEGER, - atsOutputBankMinPower INTEGER, - atsOutputBankPercentPower INTEGER, - atsOutputBankMaxPercentPower INTEGER, - atsOutputBankMinPercentPower INTEGER - } - - atsOutputBankTableIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the bank table entry." - ::= { atsOutputBankEntry 1 } - - atsOutputPhase OBJECT-TYPE - SYNTAX INTEGER { - phase1 (1), - phase2 (2), - phase3 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The phase number of an ATS" - ::= { atsOutputBankEntry 2 } - - atsOutputBank OBJECT-TYPE - SYNTAX INTEGER { - total (1), - bank1 (2), - bank2 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The bank number of an ATS" - ::= { atsOutputBankEntry 3 } - - atsOutputBankCurrent OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the bank current measured - in tenths of Amps." - ::= { atsOutputBankEntry 4 } - - atsOutputBankState OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - lowload (2), - nearoverload (3), - overload (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return the bank load state. - - normal(1) indicates that the bank is - operating properly within the atsConfigBankLowLoadThreshold - and atsConfigBankNearOverLoadThreshold OID values. - - lowload(2) indicates that the bank load has dropped below the - atsConfigBankLowLoadThreshold OID value. An SNMP trap will - occur when this state is entered or cleared. - - nearoverload(3) indicates that the bank load is greater than - or equal to the atsConfigBankNearOverLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared. - - overload(4) indicates that the bank load is greater than or - equal to the atsConfigBankOverLoadThreshold OID value. - An SNMP trap will occur when this state is entered or cleared." - ::= { atsOutputBankEntry 5 } - - atsOutputBankOutputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output voltage in VAC, or -1 if it's unsupported - by this ATS." - ::= { atsOutputBankEntry 6 } - - - atsOutputBankMaxCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output current, on the bank represented by - OID atsOutputBank, in 0.1 amperes measured since the - last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 7 } - - atsOutputBankMinCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output current, on the bank represented by - OID atsOutputBank, in 0.1 amperes measured since the - last time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 8 } - - atsOutputBankLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output load, on the bank represented by - OID atsOutputBank, in VA, or -1 if it's - unsupported by this ATS." - ::= { atsOutputBankEntry 9 } - - atsOutputBankMaxLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output load, on the bank represented by - OID atsOutputBank, in VA measured since the last - time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 10 } - - atsOutputBankMinLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output load, on the bank represented by - OID atsOutputBank, in VA measured since the last - time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 11 } - - atsOutputBankPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the ATS load capacity in VA at - redundancy @ (n + x) presently being used on this - bank, represented by OID atsOutputBank. - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 12 } - - atsOutputBankMaxPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the ATS load capacity in - VA measured at redundancy @ (n + x) presently - being used on this bank, represented by OID atsOutputBank, - since the last time this variable was read or - reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 13 } - - atsOutputBankMinPercentLoad OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum percentage of the ATS load capacity in - VA measured at redundancy @ (n + x) presently - being used on this bank, represented by OID - atsOutputBank, since the last time this variable was - read or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 14 } - - atsOutputBankPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output power in Watts on the bank represented by - OID atsOutputBank or -1 if it's unsupported by this ATS." - ::= { atsOutputBankEntry 15 } - - atsOutputBankMaxPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum output power in Watts measured on the bank - represented by OID atsOutputBank since the last - time this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 16 } - - atsOutputBankMinPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum output power in Watts measured on the bank - represented by OID atsOutputBank since the last time - this variable was read - or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 17 } - - atsOutputBankPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percentage of the ATSpower capacity in Watts at - redundancy @ (n + x) presently being used on this - bank, represented by OID atsOutputBank, or - -1 if it's unsupported by this ATS." - ::= { atsOutputBankEntry 18 } - - atsOutputBankMaxPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum percentage of the ATSpower capacity - in Watts measured at redundancy @ (n + x) presently - being used on this bank, represented by OID - atsOutputBank, since the last time this variable - was read or reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 19 } - - atsOutputBankMinPercentPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum percentage of the ATSpower capacity - in Watts measured at redundancy @ (n + x) presently - being used on this bank, represented by OID atsOutputBank - since the last time this variable was read or - reset (atsStatusResetMaxMinValues). - Returns (-1) if unsupported." - ::= { atsOutputBankEntry 20 } - - --- the dcmim2IdentSystem group - -dcmim2IdentSysFWVersion OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Integer representation of the power plant Master Controller firmware revision." - ::= { dcmim2IdentSystem 1 } - - --- the dcmim2ControlSystem group - -dcmim2ControlRunFunctBatteryTest OBJECT-TYPE - SYNTAX INTEGER { - battTestOff (1), - battTestOn (2) -} - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this OID will return the battery functional test state. If - the test is off, the battTestOff (1) value will be returned. - If the test is on, the battTestOn (2) value will be - returned. - - Setting this OID to battTestOff (1) will turn the battery functional test off. - Setting this OID to battTestOn (2) will turn the battery functional test on." - - ::= { dcmim2ControlSystem 1 } - -dcmim2ControlRunCapacityBatteryTest OBJECT-TYPE - SYNTAX INTEGER { - battTestOff (1), - battTestOn (2) -} - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this OID will return the battery capacity test state. If - the test is off, the battTestOff (1) value will be returned. - If the test is on, the battTestOn (2) value will be - returned. - - Setting this OID to battTestOff (1) will turn the battery capacity test off. - Setting this OID to battTestOn (2) will turn the battery capacity test on." - - ::= { dcmim2ControlSystem 2 } - - --- the dcmim2ConfigSystem group - -dcmim2ConfigSysHighTempTrip OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Trip level (threshold) at which System High Temp alarm condition is created. - Range 28 to 100 (degC). - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dcmim2StatusSysTempUnits' OID (Celsius or Fahrenheit)." - - - ::= { dcmim2ConfigSystem 1 } - -dcmim2ConfigSysHighTempReset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Level at which System High Temp alarm condition is reset (cleared). - Range 25 to (upper temp - 3) (degC). - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dcmim2StatusSysTempUnits' OID (Celsius or Fahrenheit)." - - ::= { dcmim2ConfigSystem 2 } - -dcmim2ConfigSysLowTempTrip OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Trip level (threshold) at which System Low Temp alarm condition is created. - Range -100 to 10 (degC). - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dcmim2StatusSysTempUnits' OID (Celsius or Fahrenheit)." - - ::= { dcmim2ConfigSystem 3 } - -dcmim2ConfigSysLowTempReset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Level at which System Low Temp alarm condition is reset (cleared). - Range (lower temp + 3) to 13 (degC). - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dcmim2StatusSysTempUnits' OID (Celsius or Fahrenheit)." - - ::= { dcmim2ConfigSystem 4 } - --- the dcmim2ConfigBattery group - -dcmim2ConfigBattFloatVolt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery Float Voltage defined at 25 degrees Celsius. - - Values are represented in thousandths of Volts (mV)." - - ::= { dcmim2ConfigBattery 1 } - -dcmim2ConfigBattMaxRecharge OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery Maximum Recharge Rate. This is the maximum current used - during battery charging. - - Values are represented in thousandths of Amps (mA)." - - ::= { dcmim2ConfigBattery 2 } - -dcmim2ConfigBattMfgCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Battery capacity (Amp-Hour Size) as specified by the battery manufacturer. - - Values are represented in thousandths of Amp hours (mAHr)." - - ::= { dcmim2ConfigBattery 3 } - -dcmim2ConfigBattType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Type of battery in the powerplant - - Valid values range from 0 to 254." - - ::= { dcmim2ConfigBattery 4 } - -dcmim2ConfigBattFunctTestDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Duration of the battery functional test. - - Values are represented in thousandths of seconds (mSecs)." - - ::= { dcmim2ConfigBattery 5 } - -dcmim2ConfigBattFunctTestThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold the battery voltage of the system must remain above - in order to pass the battery functional test. - - Values are represented in thousandths of Volts (mV)." - - ::= { dcmim2ConfigBattery 6 } - -dcmim2ConfigBattCapacityTestPercent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold for good battery capacity test results. - - Values range from 0 to 100 percent." - - ::= { dcmim2ConfigBattery 7 } - -dcmim2ConfigBattCapacityTestEndThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Safeguard voltage at which battery capacity test will end - if there is a battery problem. - - Values are represented in thousandths of Volts (mV)." - - ::= { dcmim2ConfigBattery 8 } - -dcmim2ConfigBattCapacityTestCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Constant current value used during battery capacity testing. - - Values are represented in thousandths of Amps (mA)." - - ::= { dcmim2ConfigBattery 9 } - - --- the dcmim2ConfigLVD group - -dcmim2ConfigLVDTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant LVDs controllable - by this IP address." - ::= { dcmim2ConfigLVD 1 } - -dcmim2ConfigLVDTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dcmim2ConfigLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the LVDs. The number of - entries is contained in the dcmim2ConfigLVDTableSize OID." - ::= { dcmim2ConfigLVD 2 } - -dcmim2ConfigLVDEntry OBJECT-TYPE - SYNTAX Dcmim2ConfigLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The LVD to configure." - INDEX { dcmim2ConfigLVDIndex } - ::= { dcmim2ConfigLVDTable 1 } - -Dcmim2ConfigLVDEntry ::= - SEQUENCE { - dcmim2ConfigLVDIndex INTEGER, - dcmim2ConfigLVDTrip INTEGER, - dcmim2ConfigLVDReset INTEGER, - dcmim2ConfigLVDState INTEGER - } - -dcmim2ConfigLVDIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant LVD." - ::= { dcmim2ConfigLVDEntry 1 } - -dcmim2ConfigLVDTrip OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "LVD Trip threshold. System bus voltage at which LVD will trip (open) - during a battery backup operation. - - Values are represented in thousandths of Volts (mV)." - ::= { dcmim2ConfigLVDEntry 2 } - -dcmim2ConfigLVDReset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "LVD Reset threshold. System bus voltage at which LVD will reset (close) - after AC power has been restored. - - Values are represented in thousandths of Volts (mV)." - ::= { dcmim2ConfigLVDEntry 3 } - -dcmim2ConfigLVDState OBJECT-TYPE - SYNTAX INTEGER { - statusClosed (1), - statusOpened (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusClosed (1) if the LVD is closed. - statusOpened (2) will be returned if the LVD is opened." - ::= { dcmim2ConfigLVDEntry 4 } - - --- the dcmim2StatusSystem group - -dcmim2StatusSysRectCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System (Total Rectifier) current in thousandths of Amps (mA)." - ::= { dcmim2StatusSystem 1 } - -dcmim2StatusSysLoadCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Load current in thousandths of Amps (mA)." - ::= { dcmim2StatusSystem 2 } - -dcmim2StatusSysBusVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System bus voltage in thousandths of Volts (mV)." - ::= { dcmim2StatusSystem 3 } - -dcmim2StatusSysAmbientTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "System temperature based on sensor on Master Controller PCB. - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dcmim2StatusSysTempUnits' OID (Celsius or Fahrenheit)." - ::= { dcmim2StatusSystem 4 } - -dcmim2StatusSysUpTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Length of time since the DC Powerplant controller has been powered up." - ::= { dcmim2StatusSystem 5 } - -dcmim2StatusSysTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - in the DC system, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { dcmim2StatusSystem 6 } - - --- the dcmim2StatusRectifier group - -dcmim2StatusRectTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant rectifiers viewable - by this IP address." - ::= { dcmim2StatusRectifier 1 } - -dcmim2StatusRectTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dcmim2StatusRectEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing settings of the rectifiers. The number of - entries is contained in the dcmim2StatusRectTableSize OID." - ::= { dcmim2StatusRectifier 2 } - -dcmim2StatusRectEntry OBJECT-TYPE - SYNTAX Dcmim2StatusRectEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The rectifier to gather status from." - INDEX { dcmim2StatusRectIndex } - ::= { dcmim2StatusRectTable 1 } - -Dcmim2StatusRectEntry ::= - SEQUENCE { - dcmim2StatusRectIndex INTEGER, - dcmim2StatusRectDevType INTEGER, - dcmim2StatusRectID INTEGER, - dcmim2StatusRectPhyAddr INTEGER, - dcmim2StatusRectFail INTEGER, - dcmim2StatusRectCurrent INTEGER - } - -dcmim2StatusRectIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant rectifier." - ::= { dcmim2StatusRectEntry 1 } - -dcmim2StatusRectDevType OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier device type." - ::= { dcmim2StatusRectEntry 2 } - -dcmim2StatusRectID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier ID. This enumerates the number of the rectifier within - a group of rectifiers." - ::= { dcmim2StatusRectEntry 3 } - -dcmim2StatusRectPhyAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the rectifier physical address (the address on the bus)." - ::= { dcmim2StatusRectEntry 4 } - -dcmim2StatusRectFail OBJECT-TYPE - SYNTAX INTEGER { - statusTrue (1), - statusFalse (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusTrue (1) if the rectifier has failed. - statusFalse (2) will be returned if the rectifier has not failed." - ::= { dcmim2StatusRectEntry 5 } - -dcmim2StatusRectCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID shows the individual rectifier current in thousandths of Amps (mA)." - ::= { dcmim2StatusRectEntry 6 } - - --- the dcmim2StatusBattery group - -dcmim2StatusBattFloatVolt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery Float Voltage represented in thousandths of Volts (mV)." - ::= { dcmim2StatusBattery 1 } - -dcmim2StatusBattCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery Current: This OID shows the battery current in thousandths of Amps (mA)." - ::= { dcmim2StatusBattery 2 } - -dcmim2StatusBattTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery Temperature: - - Values are represented in thousandths of a degree. - Units are displayed in the scale shown in - the 'dcmim2StatusSysTempUnits' OID (Celsius or Fahrenheit)." - ::= { dcmim2StatusBattery 3 } - -dcmim2StatusBattMfgCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery capacity (Amp-Hour Size) as specified by the battery manufacturer. - Values are represented in thousandths of Amp hours (mAHr)." - ::= { dcmim2StatusBattery 4 } - -dcmim2StatusBattTestCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Battery capacity (Amp-Hour Size) as determined by the battery capacity test. - Values are represented in thousandths of Amp hours (mAHr)." - ::= { dcmim2StatusBattery 5 } - -dcmim2StatusBattFunctTestResult OBJECT-TYPE - SYNTAX INTEGER{ - functTestNotPerformed (1), - functTestInProcess (2), - functTestInterrupted (3), - functTestPass (4), - functTestFail (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Results of the last battery functional test that was run." - ::= { dcmim2StatusBattery 6 } - -dcmim2StatusBattCapacityTestResult OBJECT-TYPE - SYNTAX INTEGER{ - capacityTestNotPerformed (1), - capacityTestInProcess (2), - capacityTestInterrupted (3), - capacityTestPass (4), - capacityTestFail (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Results of the last battery capacity test that was run." - ::= { dcmim2StatusBattery 7 } - - --- the dcmim2StatusLVD group - -dcmim2StatusLVDTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant LVDs accessible - by this IP address." - ::= { dcmim2StatusLVD 1 } - -dcmim2StatusLVDTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dcmim2StatusLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing the LVDs. The number of - entries is contained in the dcmim2StatusLVDTableSize OID." - ::= { dcmim2StatusLVD 2 } - -dcmim2StatusLVDEntry OBJECT-TYPE - SYNTAX Dcmim2StatusLVDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The LVD to access." - INDEX { dcmim2StatusLVDIndex } - ::= { dcmim2StatusLVDTable 1 } - -Dcmim2StatusLVDEntry ::= - SEQUENCE { - dcmim2StatusLVDIndex INTEGER, - dcmim2StatusLVDState INTEGER - } - -dcmim2StatusLVDIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the DC powerplant LVD." - ::= { dcmim2StatusLVDEntry 1 } - -dcmim2StatusLVDState OBJECT-TYPE - SYNTAX INTEGER { - statusClosed (1), - statusOpened (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this OID will return statusClosed (1) if the LVD is closed. - statusOpened (2) will be returned if the LVD is opened." - ::= { dcmim2StatusLVDEntry 2 } - - --- the dcmim2StatusAlarms group - -dcmim2StatusAlarmsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of DC powerplant alarms viewable - by this IP address." - ::= { dcmim2StatusAlarms 1 } - -dcmim2StatusAlarmsTable OBJECT-TYPE - SYNTAX SEQUENCE OF Dcmim2StatusAlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for accessing system alarms. The number of - entries is contained in the dcmim2StatusAlarmsTableSize OID." - ::= { dcmim2StatusAlarms 2 } - -dcmim2StatusAlarmsEntry OBJECT-TYPE - SYNTAX Dcmim2StatusAlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The alarm to display." - INDEX { dcmim2StatusAlarmsIndex } - ::= { dcmim2StatusAlarmsTable 1 } - -Dcmim2StatusAlarmsEntry ::= - SEQUENCE { - dcmim2StatusAlarmsIndex INTEGER, - dcmim2StatusAlarmsText DisplayString - } - -dcmim2StatusAlarmsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the system alarm." - ::= { dcmim2StatusAlarmsEntry 1 } - -dcmim2StatusAlarmsText OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The 16 character text describing the active alarm condition." - ::= { dcmim2StatusAlarmsEntry 2 } - --- External Environmental Monitor - -emIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the Environmental Monitor." - ::= { emIdent 1 } - -emConfigProbesNumProbes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of temperature and humidity probes available." - ::= { emConfig 1 } - -emConfigProbesTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmConfigProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of probes supported by the Environmental Monitor - and their configurations." - ::= { emConfig 2 } - -emConfigProbesEntry OBJECT-TYPE - SYNTAX EmConfigProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Environmental Monitor probe configurations." - INDEX { emConfigProbeNumber } - ::= { emConfigProbesTable 1 } - -EmConfigProbesEntry ::= - SEQUENCE { - emConfigProbeNumber - INTEGER, - emConfigProbeName - DisplayString, - emConfigProbeHighTempThreshold - INTEGER, - emConfigProbeLowTempThreshold - INTEGER, - emConfigProbeTempUnits - INTEGER, - emConfigProbeHighHumidThreshold - INTEGER, - emConfigProbeLowHumidThreshold - INTEGER, - emConfigProbeHighTempEnable - INTEGER, - emConfigProbeLowTempEnable - INTEGER, - emConfigProbeHighHumidEnable - INTEGER, - emConfigProbeLowHumidEnable - INTEGER, - emConfigProbeMaxTempThreshold - INTEGER, - emConfigProbeMinTempThreshold - INTEGER, - emConfigProbeMaxHumidThreshold - INTEGER, - emConfigProbeMinHumidThreshold - INTEGER, - emConfigProbeMaxTempEnable - INTEGER, - emConfigProbeMinTempEnable - INTEGER, - emConfigProbeMaxHumidEnable - INTEGER, - emConfigProbeMinHumidEnable - INTEGER, - emConfigProbeTempHysteresis - INTEGER, - emConfigProbeHumidHysteresis - INTEGER, - emConfigProbeLocation - DisplayString - } - -emConfigProbeNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index into an Environmental Monitor probe entry." - ::= { emConfigProbesEntry 1 } - -emConfigProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name of the probe set by the user, - possibly denoting its location or purpose." - ::= { emConfigProbesEntry 2 } - -emConfigProbeHighTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature alarm threshold for the probe. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { emConfigProbesEntry 3 } - -emConfigProbeLowTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature alarm threshold for the probe. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { emConfigProbesEntry 4 } - -emConfigProbeTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - thresholds of the probe, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { emConfigProbesEntry 5 } - -emConfigProbeHighHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity alarm threshold for the probe in - percent relative humidity." - ::= { emConfigProbesEntry 6 } - -emConfigProbeLowHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity alarm threshold for the probe in - percent relative humidity." - ::= { emConfigProbesEntry 7 } - -emConfigProbeHighTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 8 } - -emConfigProbeLowTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 9 } - -emConfigProbeHighHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 10 } - -emConfigProbeLowHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 11 } - -emConfigProbeMaxTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum temperature alarm threshold for the probe. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { emConfigProbesEntry 12 } - -emConfigProbeMinTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum temperature alarm threshold for the probe. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { emConfigProbesEntry 13 } - -emConfigProbeMaxHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximun humidity alarm threshold for the probe in - percent relative humidity." - ::= { emConfigProbesEntry 14 } - -emConfigProbeMinHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum humidity alarm threshold for the probe in - percent relative humidity." - ::= { emConfigProbesEntry 15 } - -emConfigProbeMaxTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 16 } - -emConfigProbeMinTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 17 } - -emConfigProbeMaxHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 18 } - -emConfigProbeMinHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { emConfigProbesEntry 19 } - -emConfigProbeTempHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of degrees beyond the temperature thresholds - at which an active temperature alarm will be cleared. - This configuration setting applies to all temperature - thresholds. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { emConfigProbesEntry 20 } - -emConfigProbeHumidHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of percent RH points beyond the humidity - thresholds at which an active humidity alarm will be - cleared. This configuration setting applies to all - humidity thresholds. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { emConfigProbesEntry 21 } - -emConfigProbeLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A string describing the location of the probe." - ::= { emConfigProbesEntry 22 } - -emConfigContactsNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts supported by the Environmental - Monitor." - ::= { emConfig 3 } - -emConfigContactsTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmConfigContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the Environmental Monitor - and their configurations." - ::= { emConfig 4 } - -emConfigContactsEntry OBJECT-TYPE - SYNTAX EmConfigContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Environmental Monitor contact configurations." - INDEX { emConfigContactNumber } - ::= { emConfigContactsTable 1 } - -EmConfigContactsEntry ::= - SEQUENCE { - emConfigContactNumber - INTEGER, - emConfigContactName - DisplayString, - emConfigContactEnable - INTEGER, - emConfigContactSeverity - INTEGER, - emConfigContactNormalState - INTEGER, - emConfigContactLocation - DisplayString - } - -emConfigContactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an Environmental Monitor contact." - ::= { emConfigContactsEntry 1 } - -emConfigContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for an Environmental Monitor - contact set by the user, possibly denoting its - location or purpose." - ::= { emConfigContactsEntry 2 } - -emConfigContactEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An Environmental Monitor contact alarm enable/disable. - No alarm will be generated if the contact is disabled(1). - An alarm will be generated if the contact is enabled(2) - and the contact has been faulted." - ::= { emConfigContactsEntry 3 } - -emConfigContactSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the input contact is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emConfigContactsEntry 4 } - -emConfigContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - open(1), - closed(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The contact state that will be considered normal, i.e. - will not trigger an alarm. The states are open(1) or - closed(2)." - ::= { emConfigContactsEntry 5 } - -emConfigContactLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive label for the contact denoting its - location or purpose." - ::= { emConfigContactsEntry 6 } - -emStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - noComm(1), - comm(2), - commLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status between the agent - and the Environmental Monitor. - - noComm(1), Communication has never been established. - comm(2), Communication has been established. - commLost(3), Communication was established, but was lost." - ::= { emStatus 1 } - -emStatusProbesNumProbes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of available probes on the Environmental - Monitor." - ::= { emStatus 2 } - -emStatusProbesTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmStatusProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of probes supported by the Environmental Monitor - and their status." - ::= { emStatus 3 } - -emStatusProbesEntry OBJECT-TYPE - SYNTAX EmStatusProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The status of the probe." - INDEX { emStatusProbeNumber } - ::= { emStatusProbesTable 1 } - -EmStatusProbesEntry ::= - SEQUENCE { - emStatusProbeNumber - INTEGER, - emStatusProbeName - DisplayString, - emStatusProbeStatus - INTEGER, - emStatusProbeCurrentTemp - INTEGER, - emStatusProbeTempUnits - INTEGER, - emStatusProbeCurrentHumid - INTEGER, - emStatusProbeHighTempViolation - INTEGER, - emStatusProbeLowTempViolation - INTEGER, - emStatusProbeHighHumidViolation - INTEGER, - emStatusProbeLowHumidViolation - INTEGER, - emStatusProbeMaxTempViolation - INTEGER, - emStatusProbeMinTempViolation - INTEGER, - emStatusProbeMaxHumidViolation - INTEGER, - emStatusProbeMinHumidViolation - INTEGER - } - -emStatusProbeNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the probe." - ::= { emStatusProbesEntry 1 } - -emStatusProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A descriptive name for the probe set by the user, - possibly denoting its location or purpose." - ::= { emStatusProbesEntry 2 } - -emStatusProbeStatus OBJECT-TYPE - SYNTAX INTEGER { - disconnected(1), - connected(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connected status of the probe, either - disconnected(1) or connected(2)." - ::= { emStatusProbesEntry 3 } - -emStatusProbeCurrentTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current temperature reading from the probe displayed - in the units shown in the 'emStatusProbeTempUnits' OID - (Celsius or Fahrenheit)." - ::= { emStatusProbesEntry 4 } - -emStatusProbeTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - thresholds of the probe, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { emStatusProbesEntry 5 } - -emStatusProbeCurrentHumid OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current humidity reading from the probe in - percent relative humidity." - ::= { emStatusProbesEntry 6 } - -emStatusProbeHighTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - highTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The high temperature violation status of the probe - temperature reading. This OID will show a highTempViolation(2) - if the current temperature reading shown in the - 'emStatusProbeCurrentTemp' OID is greater than or equal to - the high temperature threshold value, the - 'emConfigProbeHighTempThreshold' OID, and the value of the - 'emConfigProbeHighTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'emConfigProbeHighTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { emStatusProbesEntry 7 } - -emStatusProbeLowTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - lowTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The high temperature violation status of the probe - temperature reading. This OID will show a lowTempViolation(2) - if the current temperature reading shown in the - 'emStatusProbeCurrentTemp' OID is less than or equal to - the low temperature threshold value, the - 'emConfigProbeLowTempThreshold' OID, and the value of the - 'emConfigProbeLowTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'emConfigProbeLowTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { emStatusProbesEntry 8 } - -emStatusProbeHighHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - highHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The high humidity violation status of the probe humidity - reading. This OID will show a highTempViolation(2) - if the current humidity reading shown in the - 'emStatusProbeCurrentHumid' OID is greater than or equal to - the high humidity threshold value, the - 'emConfigProbeHighHumidThreshold' OID, and the value of the - 'emConfigProbeHighHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'emConfigProbeHighHumidEnable' OID is - disabled, this OID will show disabled(3)" - ::= { emStatusProbesEntry 9 } - -emStatusProbeLowHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - lowHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The low humidity violation status of the probe humidity - reading. This OID will show a lowTempViolation(2) - if the current humidity reading shown in the - 'emStatusProbeCurrentHumid' OID is less than or equal to - the low humidity threshold value, the - 'emConfigProbeLowHumidThreshold' OID, and the value of the - 'emConfigProbeLowHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'emConfigProbeLowHumidEnable' OID is - disabled, this OID will show disabled(3)." - ::= { emStatusProbesEntry 10 } - -emStatusProbeMaxTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - maxTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The max temperature violation status of the probe - temperature reading. This OID will show a maxTempViolation(2) - if the current temperature reading shown in the - 'emStatusProbeCurrentTemp' OID is greater than or equal to - the maximun temperature threshold value, the - 'emConfigProbeMaxTempThreshold' OID, and the value of the - 'emConfigProbeMaxTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'emConfigProbeMaxTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { emStatusProbesEntry 11 } - -emStatusProbeMinTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - minTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum temperature violation status of the probe - temperature reading. This OID will show a minTempViolation(2) - if the current temperature reading shown in the - 'emStatusProbeCurrentTemp' OID is less than or equal to - the minimum temperature threshold value, the - 'emConfigProbeMinTempThreshold' OID, and the value of the - 'emConfigProbeMinTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'emConfigProbeMinTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { emStatusProbesEntry 12 } - -emStatusProbeMaxHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - maxHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum humidity violation status of the probe humidity - reading. This OID will show a maxTempViolation(2) - if the current humidity reading shown in the - 'emStatusProbeCurrentHumid' OID is greater than or equal to - the maximum humidity threshold value, the - 'emConfigProbeMaxHumidThreshold' OID, and the value of the - 'emConfigProbeMaxHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'emConfigProbeMaxHumidEnable' OID is - disabled, this OID will show disabled(3)" - ::= { emStatusProbesEntry 13 } - -emStatusProbeMinHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - minHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum humidity violation status of the probe humidity - reading. This OID will show a minTempViolation(2) - if the current humidity reading shown in the - 'emStatusProbeCurrentHumid' OID is less than or equal to - the minimum humidity threshold value, the - 'emConfigProbeMinHumidThreshold' OID, and the value of the - 'emConfigProbeMinHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'emConfigProbeMinHumidEnable' OID is - disabled, this OID will show disabled(3)." - ::= { emStatusProbesEntry 14 } - -emStatusContactsNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts supported by the - Environmental Monitor." - ::= { emStatus 4 } - -emStatusContactsTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmStatusContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the Environmental Monitor - and their status." - ::= { emStatus 5 } - -emStatusContactsEntry OBJECT-TYPE - SYNTAX EmStatusContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The status of the contact." - INDEX { emStatusContactNumber } - ::= { emStatusContactsTable 1 } - -EmStatusContactsEntry ::= - SEQUENCE { - emStatusContactNumber - INTEGER, - emStatusContactName - DisplayString, - emStatusContactStatus - INTEGER - } - -emStatusContactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the Environmental Monitor contact." - ::= { emStatusContactsEntry 1 } - -emStatusContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A descriptive name for the Environmental Monitor contact - set by the user, possibly denoting its location or purpose." - ::= { emStatusContactsEntry 2 } - -emStatusContactStatus OBJECT-TYPE - SYNTAX INTEGER { - noFault(1), - fault(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Environmental Monitor contact. The status - will show noFault(1) if the contact is in the normal state - and the 'emConfigContactEnable' OID is enabled. The status will - show a fault(2) if the contact is faulted and the - 'emContactEnable' OID is enabled. If the 'emConfigContactEnable' - OID is disabled, the status will show disabled(3)." - ::= { emStatusContactsEntry 3 } - --- Modular Environmental Manager (MEM) - --- MEM Modules Status table - -memModulesStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memModulesStatusTable." - ::= { memModules 1 } - -memModulesStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemModulesStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting status information from the modules - attached to the system." - ::= { memModules 2 } - -memModulesStatusEntry OBJECT-TYPE - SYNTAX MemModulesStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memModulesStatusModuleNumber } - ::= { memModulesStatusTable 1 } - -MemModulesStatusEntry ::= - SEQUENCE { - memModulesStatusModuleNumber INTEGER, - memModulesStatusModuleName DisplayString, - memModulesStatusModuleLocation DisplayString, - memModulesStatusModelNumber DisplayString, - memModulesStatusSerialNumber DisplayString, - memModulesStatusFirmwareRev DisplayString, - memModulesStatusHardwareRev DisplayString - } - -memModulesStatusModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module number." - ::= { memModulesStatusEntry 1 } - -memModulesStatusModuleName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module name." - ::= { memModulesStatusEntry 2 } - -memModulesStatusModuleLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the module." - ::= { memModulesStatusEntry 3 } - -memModulesStatusModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model number of the module." - ::= { memModulesStatusEntry 4 } - -memModulesStatusSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the module." - ::= { memModulesStatusEntry 5 } - -memModulesStatusFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the module." - ::= { memModulesStatusEntry 6 } - -memModulesStatusHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision." - ::= { memModulesStatusEntry 7 } - --- MEM Modules Config table - -memModulesConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memModulesConfigTable." - ::= { memModules 3 } - -memModulesConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemModulesConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting status information from the modules - attached to the system." - ::= { memModules 4 } - -memModulesConfigEntry OBJECT-TYPE - SYNTAX MemModulesConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memModulesConfigModuleNumber } - ::= { memModulesConfigTable 1 } - -MemModulesConfigEntry ::= - SEQUENCE { - memModulesConfigModuleNumber INTEGER, - memModulesConfigModuleName DisplayString, - memModulesConfigModuleLocation DisplayString - } - -memModulesConfigModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module number." - ::= { memModulesConfigEntry 1 } - -memModulesConfigModuleName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The module name." - ::= { memModulesConfigEntry 2 } - -memModulesConfigModuleLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the module." - ::= { memModulesConfigEntry 3 } - - --- MEM Sensor Status Table - -memSensorsStatusSysTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - in the system, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { memSensors 1 } - -memSensorsStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memSensorsStatusTable." - ::= { memSensors 2 } - -memSensorsStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemSensorsStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting sensor status information." - ::= { memSensors 3 } - -memSensorsStatusEntry OBJECT-TYPE - SYNTAX MemSensorsStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memSensorsStatusModuleNumber, memSensorsStatusSensorNumber } - ::= { memSensorsStatusTable 1 } - -MemSensorsStatusEntry ::= - SEQUENCE { - memSensorsStatusModuleNumber INTEGER, - memSensorsStatusSensorNumber INTEGER, - memSensorsStatusSensorName DisplayString, - memSensorsStatusSensorLocation DisplayString, - memSensorsTemperature INTEGER, - memSensorsHumidity INTEGER, - memSensorsCommStatus INTEGER, - memSensorsAlarmStatus INTEGER - } - -memSensorsStatusModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the sensor is attached to." - ::= { memSensorsStatusEntry 1 } - -memSensorsStatusSensorNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this sensor on the module." - ::= { memSensorsStatusEntry 2 } - -memSensorsStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor name." - ::= { memSensorsStatusEntry 3 } - -memSensorsStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the sensor." - ::= { memSensorsStatusEntry 4 } - -memSensorsTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor's current temperature reading. - Units are displayed in the scale shown in - the memSensorsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { memSensorsStatusEntry 5 } - -memSensorsHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current humidity reading from the sensor." - ::= { memSensorsStatusEntry 6 } - -memSensorsCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled(1), - commsOK(2), - commsLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the sensor." - ::= { memSensorsStatusEntry 7 } - -memSensorsAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - memNormal(1), - memWarning(2), - memCritical(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the sensor." - ::= { memSensorsStatusEntry 8 } - - --- MEM Sensor Config Table - -memSensorsConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memSensorsConfigTable." - ::= { memSensors 4 } - -memSensorsConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemSensorsConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting configuration information from - sensors attached to the system." - ::= { memSensors 5 } - -memSensorsConfigEntry OBJECT-TYPE - SYNTAX MemSensorsConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memSensorsConfigModuleNumber, memSensorsConfigSensorNumber } - ::= { memSensorsConfigTable 1 } - -MemSensorsConfigEntry ::= - SEQUENCE { - memSensorsConfigModuleNumber INTEGER, - memSensorsConfigSensorNumber INTEGER, - memSensorsName DisplayString, - memSensorsLocation DisplayString, - memSensorsAlarmGeneration INTEGER, - memSensorsTempMaxThresh INTEGER, - memSensorsTempHighThresh INTEGER, - memSensorsTempLowThresh INTEGER, - memSensorsTempMinThresh INTEGER, - memSensorsTempThreshHysteresis INTEGER, - memSensorsTempShortDecRateThreshValue INTEGER, - memSensorsTempShortDecRateThreshTime INTEGER, - memSensorsTempShortIncRateThreshValue INTEGER, - memSensorsTempShortIncRateThreshTime INTEGER, - memSensorsTempLongDecRateThreshValue INTEGER, - memSensorsTempLongDecRateThreshTime INTEGER, - memSensorsTempLongIncRateThreshValue INTEGER, - memSensorsTempLongIncRateThreshTime INTEGER, - memSensorsHumidityMaxThresh INTEGER, - memSensorsHumidityHighThresh INTEGER, - memSensorsHumidityLowThresh INTEGER, - memSensorsHumidityMinThresh INTEGER, - memSensorsHumidityThreshHysteresis INTEGER - } - -memSensorsConfigModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the sensor is attached to." - ::= { memSensorsConfigEntry 1 } - -memSensorsConfigSensorNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this sensor on the module." - ::= { memSensorsConfigEntry 2 } - -memSensorsName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for the sensor." - ::= { memSensorsConfigEntry 3 } - -memSensorsLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the sensor." - ::= { memSensorsConfigEntry 4 } - -memSensorsAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation on this sensor." - ::= { memSensorsConfigEntry 5 } - -memSensorsTempMaxThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which the MEM will generate a maximum - temperature threshold violation alarm on this sensor. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - - ::= { memSensorsConfigEntry 6 } - -memSensorsTempHighThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which the MEM will generate a high - temperature threshold violation alarm on this sensor. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 7 } - -memSensorsTempLowThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which the MEM will generate a low - temperature threshold violation alarm on this sensor. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 8 } - -memSensorsTempMinThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which the MEM will generate a minimum - temperature threshold violation alarm on this sensor. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 9 } - -memSensorsTempThreshHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The change in temperature required to cause a - temperature alarm to change from an active to an inactive state. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - - ::= { memSensorsConfigEntry 10 } - -memSensorsTempShortDecRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature short-term decreasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 11 } - -memSensorsTempShortDecRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not decrease - beyond the value specified by the temperature short-term - decreasing rate threshold value." - ::= { memSensorsConfigEntry 12 } - -memSensorsTempShortIncRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature short-term increasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 13 } - -memSensorsTempShortIncRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not increase - beyond the value specified by the temperature short-term - increasing rate threshold value." - ::= { memSensorsConfigEntry 14 } - -memSensorsTempLongDecRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature long-term decreasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 15 } - -memSensorsTempLongDecRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not decrease - beyond the value specified by the temperature long-term - decreasing rate threshold value." - ::= { memSensorsConfigEntry 16 } - -memSensorsTempLongIncRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature long-term increasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the memSensorsStatusSysTempUnits OID." - ::= { memSensorsConfigEntry 17 } - -memSensorsTempLongIncRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not increase - beyond the value specified by the temperature long-term - increasing rate threshold value." - ::= { memSensorsConfigEntry 18 } - -memSensorsHumidityMaxThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity at which the maximum humidity threshold alarm - will be generated." - ::= { memSensorsConfigEntry 19 } - -memSensorsHumidityHighThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity at which the high humidity threshold alarm - will be generated." - ::= { memSensorsConfigEntry 20 } - -memSensorsHumidityLowThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity at which the low humidity threshold alarm - will be generated." - ::= { memSensorsConfigEntry 21 } - -memSensorsHumidityMinThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity at which the minimum humidity threshold alarm - will be generated." - ::= { memSensorsConfigEntry 22 } - -memSensorsHumidityThreshHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The change in humidity required to cause an active humidity - alarm to change to the inactive state." - ::= { memSensorsConfigEntry 23 } - - --- MEM Input Status Table - -memInputsStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memInputsStatusTable." - ::= { memInputs 1 } - -memInputsStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemInputsStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting input status information." - ::= { memInputs 2 } - -memInputsStatusEntry OBJECT-TYPE - SYNTAX MemInputsStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memInputsStatusModuleNumber, memInputsStatusInputNumber } - ::= { memInputsStatusTable 1 } - -MemInputsStatusEntry ::= - SEQUENCE { - memInputsStatusModuleNumber INTEGER, - memInputsStatusInputNumber INTEGER, - memInputsStatusInputName DisplayString, - memInputsStatusInputLocation DisplayString, - memInputsStatusCurrentState INTEGER, - memInputsStatusCurrentAnalogValue DisplayString, - memInputsStatusAlarmStatus INTEGER, - memInputsCommStatus INTEGER - } - -memInputsStatusModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the input is attached to." - ::= { memInputsStatusEntry 1 } - -memInputsStatusInputNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this input on the module." - ::= { memInputsStatusEntry 2 } - -memInputsStatusInputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input name." - ::= { memInputsStatusEntry 3 } - -memInputsStatusInputLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the input." - ::= { memInputsStatusEntry 4 } - -memInputsStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - inputClosedHighMEM (1), - inputOpenLowMEM (2), - inputDisabled (3), - inputStateNotApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of the input. This OID will return - inputStateNotAplicable(4) for analog input types. " - ::= { memInputsStatusEntry 5 } - -memInputsStatusCurrentAnalogValue OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current analog value of the input in the units defined - by the user." - ::= { memInputsStatusEntry 6 } - -memInputsStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - memNormal(1), - memWarning(2), - memCritical(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the input." - ::= { memInputsStatusEntry 7 } - -memInputsCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled(1), - commsOK(2), - commsLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the input. This OID is only supported by NBRK0200." - ::= { memInputsStatusEntry 8 } - --- MEM Input Config Table - -memInputsConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memInputsConfigTable." - ::= { memInputs 3 } - -memInputsConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemInputsConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting input configuration information." - ::= { memInputs 4 } - -memInputsConfigEntry OBJECT-TYPE - SYNTAX MemInputsConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memInputsConfigModuleNumber, memInputsConfigInputNumber } - ::= { memInputsConfigTable 1 } - -MemInputsConfigEntry ::= - SEQUENCE { - memInputsConfigModuleNumber INTEGER, - memInputsConfigInputNumber INTEGER, - memInputName DisplayString, - memInputLocation DisplayString, - memInputType INTEGER, - memInputAlarmGeneration INTEGER, - memInputNormalState INTEGER, - memInputAbnormalSeverity INTEGER, - memInputNumberCalibrationPoints INTEGER, - memInputAnalogCalibrationPoint1 DisplayString, - memInputAnalogCalibrationPoint2 DisplayString, - memInputAnalogCalibrationPoint3 DisplayString, - memInputAnalogCalibrationPoint4 DisplayString, - memInputAnalogCalibrationPoint5 DisplayString, - memInputAnalogCalibrationPoint1Value DisplayString, - memInputAnalogCalibrationPoint2Value DisplayString, - memInputAnalogCalibrationPoint3Value DisplayString, - memInputAnalogCalibrationPoint4Value DisplayString, - memInputAnalogCalibrationPoint5Value DisplayString, - memInputAnalogMeasurementUnits DisplayString, - memInputAnalogMaxThresh DisplayString, - memInputAnalogHighThresh DisplayString, - memInputAnalogLowThresh DisplayString, - memInputAnalogMinThresh DisplayString, - memInputAnalogThreshHysteresis DisplayString - } - -memInputsConfigModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the input is attached to." - ::= { memInputsConfigEntry 1 } - -memInputsConfigInputNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this input on the module." - ::= { memInputsConfigEntry 2 } - -memInputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the input." - ::= { memInputsConfigEntry 3 } - -memInputLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the input." - ::= { memInputsConfigEntry 4 } - -memInputType OBJECT-TYPE - SYNTAX INTEGER { - noConnection (1), - dryContact (2), - digital (3), - analogmAmps (4), - analogVolts (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The type of input this contact will take." - ::= { memInputsConfigEntry 5 } - -memInputAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation on this input." - ::= { memInputsConfigEntry 6 } - -memInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - inputClosedHighMEM (1), - inputOpenLowMEM (2), - inputDisabled (3), - inputStateNotApplicable (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Defines the normal (no alarm) state of the input." - ::= { memInputsConfigEntry 7 } - -memInputAbnormalSeverity OBJECT-TYPE - SYNTAX INTEGER { - inputSeverityinformational (1), - inputSeveritywarning (2), - inputSeveritysevere (3), - inputSeverityNotApplicable (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Defines the severity of the event that is associated - with the abnormal state of the input. This OID will return - inputSeverityNotApplicable(4) for analog input types. " - ::= { memInputsConfigEntry 8 } - -memInputNumberCalibrationPoints OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of calibration points that are required for - this input." - ::= { memInputsConfigEntry 9 } - -memInputAnalogCalibrationPoint1 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The electrical value that the input sensor will measure at the - first calibration point. - This OID is relevant only for inputs configured as analog type (ma or V)." - ::= { memInputsConfigEntry 10 } - -memInputAnalogCalibrationPoint2 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The electrical value that the input sensor will measure at the - second calibration point. - This OID is relevant only for inputs configured as analog type (ma or V)." - ::= { memInputsConfigEntry 11 } - -memInputAnalogCalibrationPoint3 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The electrical value that the input sensor will measure at the - third calibration point. - This OID is relevant only for inputs configured as analog type (ma or V)." - ::= { memInputsConfigEntry 12 } - -memInputAnalogCalibrationPoint4 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The electrical value that the input sensor will measure at the - fourth calibration point. - This OID is relevant only for inputs configured as analog type (ma or V)." - ::= { memInputsConfigEntry 13 } - -memInputAnalogCalibrationPoint5 OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The electrical value that the input sensor will measure at the - fifth calibration point. - This OID is relevant only for inputs configured as analog type (ma or V)." - ::= { memInputsConfigEntry 14 } - -memInputAnalogCalibrationPoint1Value OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the input, in units of measure defined by - the user, that corresponds to the current setting at the - first calibration point." - ::= { memInputsConfigEntry 15 } - -memInputAnalogCalibrationPoint2Value OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the input, in units of measure defined by - the user, that corresponds to the current setting at the - second calibration point." - ::= { memInputsConfigEntry 16 } - -memInputAnalogCalibrationPoint3Value OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the input, in units of measure defined by - the user, that corresponds to the current setting at the - third calibration point." - ::= { memInputsConfigEntry 17 } - -memInputAnalogCalibrationPoint4Value OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the input, in units of measure defined by - the user, that corresponds to the current setting at the - fourth calibration point." - ::= { memInputsConfigEntry 18 } - -memInputAnalogCalibrationPoint5Value OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the input, in units of measure defined by - the user, that corresponds to the current setting at the - fifth calibration point." - ::= { memInputsConfigEntry 19 } - -memInputAnalogMeasurementUnits OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The units of measure to be used for this input." - ::= { memInputsConfigEntry 20 } - -memInputAnalogMaxThresh OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The input value at which a maximum threshold violation - alarm will be generated on this input." - ::= { memInputsConfigEntry 21 } - -memInputAnalogHighThresh OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The input value at which a high threshold violation - alarm will be generated on this input." - ::= { memInputsConfigEntry 22 } - -memInputAnalogLowThresh OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The input value at which a low threshold violation - alarm will be generated on this input." - ::= { memInputsConfigEntry 23 } - -memInputAnalogMinThresh OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The input value at which a minimum threshold violation - alarm will be generated on this input." - ::= { memInputsConfigEntry 24 } - - -memInputAnalogThreshHysteresis OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The change in value required to cause an alarm on this input - to change from active to inactive." - ::= { memInputsConfigEntry 25 } - - --- MEM Output Status Table - -memOutputStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memOutputStatusTable." - ::= { memOutputs 1 } - -memOutputStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemOutputStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting output status information." - ::= { memOutputs 2 } - -memOutputStatusEntry OBJECT-TYPE - SYNTAX MemOutputStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memOutputStatusModuleNumber, memOutputStatusOutputNumber } - ::= { memOutputStatusTable 1 } - -MemOutputStatusEntry ::= - SEQUENCE { - memOutputStatusModuleNumber INTEGER, - memOutputStatusOutputNumber INTEGER, - memOutputStatusOutputName DisplayString, - memOutputStatusOutputLocation DisplayString, - memOutputStatusCurrentState INTEGER - } - -memOutputStatusModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the output is attached to." - ::= { memOutputStatusEntry 1 } - -memOutputStatusOutputNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this output on the module." - ::= { memOutputStatusEntry 2 } - -memOutputStatusOutputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output name." - ::= { memOutputStatusEntry 3 } - -memOutputStatusOutputLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the output." - ::= { memOutputStatusEntry 4 } - -memOutputStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - memOutputClosed (1), - memOutputOpen (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the output." - ::= { memOutputStatusEntry 5 } - - --- MEM Output Config Table - -memOutputConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memOutputConfigTable." - ::= { memOutputs 3 } - -memOutputConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemOutputConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting output configuration information." - ::= { memOutputs 4 } - -memOutputConfigEntry OBJECT-TYPE - SYNTAX MemOutputConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memOutputConfigModuleNumber, memOutputConfigOutputNumber } - ::= { memOutputConfigTable 1 } - -MemOutputConfigEntry ::= - SEQUENCE { - memOutputConfigModuleNumber INTEGER, - memOutputConfigOutputNumber INTEGER, - memOutputName DisplayString, - memOutputLocation DisplayString, - memOutputNormalState INTEGER, - memOutputAction INTEGER - } - -memOutputConfigModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the output is attached to." - ::= { memOutputConfigEntry 1 } - -memOutputConfigOutputNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this output on the module." - ::= { memOutputConfigEntry 2 } - -memOutputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the output." - ::= { memOutputConfigEntry 3 } - -memOutputLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the output." - ::= { memOutputConfigEntry 4 } - -memOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - memOutputClosed (1), - memOutputOpen (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The state of the output that will not generate an alarm." - ::= { memOutputConfigEntry 5 } - -memOutputAction OBJECT-TYPE - SYNTAX INTEGER { - memActionClose (1), - memActionOpen (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Manual control actions for the output. SNMP get command will return the state - of the output, SNMP set of this OID controls the output." - ::= { memOutputConfigEntry 6 } - - --- MEM Outlet Status Table - -memOutletStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memOutletStatusTable." - ::= { memOutlets 1 } - -memOutletStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemOutletStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting outlet status information." - ::= { memOutlets 2 } - -memOutletStatusEntry OBJECT-TYPE - SYNTAX MemOutletStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memOutletStatusModuleNumber, memOutletStatusOutletNumber } - ::= { memOutletStatusTable 1 } - -MemOutletStatusEntry ::= - SEQUENCE { - memOutletStatusModuleNumber INTEGER, - memOutletStatusOutletNumber INTEGER, - memOutletStatusOutletName DisplayString, - memOutletStatusOutletLocation DisplayString, - memOutletStatusCurrentState INTEGER - } - -memOutletStatusModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the outlet is attached to." - ::= { memOutletStatusEntry 1 } - -memOutletStatusOutletNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this outlet on the module." - ::= { memOutletStatusEntry 2 } - -memOutletStatusOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The outlet name." - ::= { memOutletStatusEntry 3 } - -memOutletStatusOutletLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the outlet." - ::= { memOutletStatusEntry 4 } - -memOutletStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the outlet." - ::= { memOutletStatusEntry 5 } - - --- MEM Outlet Config Table - -memOutletConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memOutletConfigTable." - ::= { memOutlets 3 } - -memOutletConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting outlet configuration information." - ::= { memOutlets 4 } - -memOutletConfigEntry OBJECT-TYPE - SYNTAX MemOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memOutletConfigModuleNumber, memOutletConfigOutletNumber } - ::= { memOutletConfigTable 1 } - -MemOutletConfigEntry ::= - SEQUENCE { - memOutletConfigModuleNumber INTEGER, - memOutletConfigOutletNumber INTEGER, - memOutletName DisplayString, - memOutletLocation DisplayString, - memOutletNormalState INTEGER, - memOutletAction INTEGER - } - -memOutletConfigModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the Outlet is attached to." - ::= { memOutletConfigEntry 1 } - -memOutletConfigOutletNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this Outlet on the module." - ::= { memOutletConfigEntry 2 } - -memOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the Outlet." - ::= { memOutletConfigEntry 3 } - -memOutletLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the Outlet." - ::= { memOutletConfigEntry 4 } - -memOutletNormalState OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The state of the Outlet that will not generate an alarm." - ::= { memOutletConfigEntry 5 } - -memOutletAction OBJECT-TYPE - SYNTAX INTEGER { - turnOff (1), - turnOn (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Manual control actions for the Outlet. Get displays state - of outlet, set controls outlet." - ::= { memOutletConfigEntry 6 } - - --- MEM Beacon Status Table - -memBeaconStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memBeaconStatusTable." - ::= { memBeacons 1 } - -memBeaconStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemBeaconStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting beacon status information." - ::= { memBeacons 2 } - -memBeaconStatusEntry OBJECT-TYPE - SYNTAX MemBeaconStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memBeaconStatusModuleNumber, memBeaconStatusBeaconNumber } - ::= { memBeaconStatusTable 1 } - -MemBeaconStatusEntry ::= - SEQUENCE { - memBeaconStatusModuleNumber INTEGER, - memBeaconStatusBeaconNumber INTEGER, - memBeaconStatusBeaconName DisplayString, - memBeaconStatusBeaconLocation DisplayString, - memBeaconStatusCurrentState INTEGER - } - -memBeaconStatusModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the beacon is attached to." - ::= { memBeaconStatusEntry 1 } - -memBeaconStatusBeaconNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this beacon on the module." - ::= { memBeaconStatusEntry 2 } - -memBeaconStatusBeaconName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The beacon name." - ::= { memBeaconStatusEntry 3 } - -memBeaconStatusBeaconLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the beacon." - ::= { memBeaconStatusEntry 4 } - -memBeaconStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the beacon." - ::= { memBeaconStatusEntry 5 } - - --- MEM Beacon Config Table - -memBeaconConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memBeaconConfigTable." - ::= { memBeacons 3 } - -memBeaconConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemBeaconConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting beacon configuration information." - ::= { memBeacons 4 } - -memBeaconConfigEntry OBJECT-TYPE - SYNTAX MemBeaconConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { memBeaconConfigModuleNumber, memBeaconConfigBeaconNumber } - ::= { memBeaconConfigTable 1 } - -MemBeaconConfigEntry ::= - SEQUENCE { - memBeaconConfigModuleNumber INTEGER, - memBeaconConfigBeaconNumber INTEGER, - memBeaconConfigName DisplayString, - memBeaconConfigLocation DisplayString, - memBeaconAction INTEGER - } - -memBeaconConfigModuleNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the module that the beacon is attached to." - ::= { memBeaconConfigEntry 1 } - -memBeaconConfigBeaconNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of this beacon on the module." - ::= { memBeaconConfigEntry 2 } - -memBeaconConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the beacon." - ::= { memBeaconConfigEntry 3 } - -memBeaconConfigLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the beacon." - ::= { memBeaconConfigEntry 4 } - -memBeaconAction OBJECT-TYPE - SYNTAX INTEGER { - turnOff (1), - turnOn (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Control action (on/off) for the beacon. Setting this OID will turn the - beacon on/off. Getting this OID will respond with the current state." - ::= { memBeaconConfigEntry 5 } - --- MEM INPUT STATE SENSOR TABLE - -memSmokeSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memSmokeSensorStatusTable." - ::= { memInputStateSensors 1 } - -memSmokeSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemSmokeSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { memInputStateSensors 2 } - -memSmokeSensorStatusEntry OBJECT-TYPE - SYNTAX MemSmokeSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to access." - INDEX { memSmokeSensorStatusModuleIndex } - ::= { memSmokeSensorStatusTable 1 } - -MemSmokeSensorStatusEntry ::= - SEQUENCE { - memSmokeSensorStatusModuleIndex INTEGER, - memSmokeSensorStatusSensorIndex INTEGER, - memSmokeSensorStatusSensorName DisplayString, - memSmokeSensorStatusSensorLocation DisplayString, - memSmokeSensorStatusSensorState INTEGER, - memSmokeSensorStatusSensorSeverity INTEGER, - memSmokeStatusAlarmStatus INTEGER, - memSmokeSensorCommStatus INTEGER - } - -memSmokeSensorStatusModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the module entry." - ::= { memSmokeSensorStatusEntry 1 } - -memSmokeSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memSmokeSensorStatusEntry 2 } - -memSmokeSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the smoke sensor." - ::= { memSmokeSensorStatusEntry 3 } - -memSmokeSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the smoke sensor." - ::= { memSmokeSensorStatusEntry 4 } - -memSmokeSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - smokeDetected (1), - noSmoke (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the smoke sensor. - smokeDetected (1) indicates there is smoke. - noSmoke (2) indicates there is no smoke. - unknown (3) indicates the state is unknown." - ::= { memSmokeSensorStatusEntry 5} - -memSmokeSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the smoke sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memSmokeSensorStatusEntry 6 } - -memSmokeStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - memNormal(1), - memWarning(2), - memCritical(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the smoke sensor." - ::= { memSmokeSensorStatusEntry 7 } - -memSmokeSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the smoke sensor." - ::= { memSmokeSensorStatusEntry 8 } - -memVibrationSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memVibrationSensorStatusTable." - ::= { memInputStateSensors 3} - -memVibrationSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemVibrationSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { memInputStateSensors 4 } - -memVibrationSensorStatusEntry OBJECT-TYPE - SYNTAX MemVibrationSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to access." - INDEX { memVibrationSensorStatusModuleIndex } - ::= { memVibrationSensorStatusTable 1 } - -MemVibrationSensorStatusEntry ::= - SEQUENCE { - memVibrationSensorStatusModuleIndex INTEGER, - memVibrationSensorStatusSensorIndex INTEGER, - memVibrationSensorStatusSensorName DisplayString, - memVibrationSensorStatusSensorLocation DisplayString, - memVibrationSensorStatusSensorState INTEGER, - memVibrationSensorStatusSensorSeverity INTEGER, - memVibrationStatusAlarmStatus INTEGER, - memVibrationSensorCommStatus INTEGER - } - -memVibrationSensorStatusModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memVibrationSensorStatusEntry 1 } - -memVibrationSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memVibrationSensorStatusEntry 2 } - -memVibrationSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the vibration sensor." - ::= { memVibrationSensorStatusEntry 3 } - -memVibrationSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the vibration sensor." - ::= { memVibrationSensorStatusEntry 4 } - -memVibrationSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - vibrationDetected (1), - noVibration (2), - unknown (3) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the vibration sensor. - vibrationDetected (1) indicates there is vibration. - noVibration (2) indicates there is no vibration. - unknown (3) indicates the state is unknown." - ::= { memVibrationSensorStatusEntry 5 } - -memVibrationSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the vibration sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memVibrationSensorStatusEntry 6 } - -memVibrationStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - memNormal(1), - memWarning(2), - memCritical(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the vibration sensor." - ::= { memVibrationSensorStatusEntry 7 } - -memVibrationSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the vibration sensor." - ::= { memVibrationSensorStatusEntry 8 } - - -memFluidSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memFluidSensorStatusTable." - ::= { memInputStateSensors 5} - -memFluidSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemFluidSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual sensors." - ::= { memInputStateSensors 6 } - -memFluidSensorStatusEntry OBJECT-TYPE - SYNTAX MemFluidSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to access." - INDEX { memFluidSensorStatusModuleIndex } - ::= { memFluidSensorStatusTable 1 } - -MemFluidSensorStatusEntry ::= - SEQUENCE { - memFluidSensorStatusModuleIndex INTEGER, - memFluidSensorStatusSensorIndex INTEGER, - memFluidSensorStatusSensorName DisplayString, - memFluidSensorStatusSensorLocation DisplayString, - memFluidSensorStatusSensorState INTEGER, - memFluidSensorStatusSensorSeverity INTEGER, - memFluidStatusAlarmStatus INTEGER, - memFluidSensorCommStatus INTEGER - } - -memFluidSensorStatusModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memFluidSensorStatusEntry 1 } - -memFluidSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memFluidSensorStatusEntry 2 } - -memFluidSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the fluid sensor." - ::= { memFluidSensorStatusEntry 3 } - -memFluidSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the fluid sensor." - ::= { memFluidSensorStatusEntry 4 } - -memFluidSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - fluidDetected (1), - noFluid (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the fluid sensor. - fluidDetected (1) indicates there is fluid leak. - noFluid (2) indicates there is no fluid leak. - unknown (3) indicates the state is unknown." - ::= { memFluidSensorStatusEntry 5 } - -memFluidSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the fluid sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memFluidSensorStatusEntry 6 } - -memFluidStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - memNormal(1), - memWarning(2), - memCritical(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the fluid sensor." - ::= { memFluidSensorStatusEntry 7 } - -memFluidSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the fluid sensor." - ::= { memFluidSensorStatusEntry 8 } - -memDoorSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the memDoorSensorStatusTable." - ::= { memInputStateSensors 7} - -memDoorSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemDoorSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { memInputStateSensors 8} - -memDoorSensorStatusEntry OBJECT-TYPE - SYNTAX MemDoorSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to access." - INDEX { memDoorSensorStatusModuleIndex } - ::= { memDoorSensorStatusTable 1 } - -MemDoorSensorStatusEntry ::= - SEQUENCE { - memDoorSensorStatusModuleIndex INTEGER, - memDoorSensorStatusSensorIndex INTEGER, - memDoorSensorStatusSensorName DisplayString, - memDoorSensorStatusSensorLocation DisplayString, - memDoorSensorStatusSensorState INTEGER, - memDoorSensorStatusSensorSeverity INTEGER, - memDoorStatusAlarmStatus INTEGER, - memDoorSensorCommStatus INTEGER - } - -memDoorSensorStatusModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memDoorSensorStatusEntry 1 } - -memDoorSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memDoorSensorStatusEntry 2 } - -memDoorSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the door sensor." - ::= { memDoorSensorStatusEntry 3 } - -memDoorSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the door sensor." - ::= { memDoorSensorStatusEntry 4 } - -memDoorSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the door sensor. - open (1) indicates door open. - closed (2) indicates door closed. - unknown (3) indicates the state is unknown." - ::= { memDoorSensorStatusEntry 5 } - -memDoorSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the door sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memDoorSensorStatusEntry 6 } - -memDoorStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - memNormal(1), - memWarning(2), - memCritical(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the door sensor." - ::= { memDoorSensorStatusEntry 7 } - -memDoorSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the door sensor." - ::= { memDoorSensorStatusEntry 8 } - --- MEM Input State sensor config -memSmokeSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemSmokeSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { memInputStateSensors 9 } - -memSmokeSensorConfigEntry OBJECT-TYPE - SYNTAX MemSmokeSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { memSmokeSensorConfigSensorModuleIndex } - ::= { memSmokeSensorConfigTable 1 } - -MemSmokeSensorConfigEntry ::= - SEQUENCE { - memSmokeSensorConfigSensorModuleIndex INTEGER, - memSmokeSensorConfigSensorIndex INTEGER, - memSmokeSensorConfigSensorName DisplayString, - memSmokeSensorConfigSensorLocation DisplayString, - memSmokeSensorConfigSensorSeverity INTEGER, - memSmokeSensorConfigAlarmGeneration INTEGER - } - -memSmokeSensorConfigSensorModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memSmokeSensorConfigEntry 1 } - -memSmokeSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memSmokeSensorConfigEntry 2 } - -memSmokeSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the smoke sensor." - ::= { memSmokeSensorConfigEntry 3 } - -memSmokeSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the smoke sensor." - ::= { memSmokeSensorConfigEntry 4 } - -memSmokeSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the smoke sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memSmokeSensorConfigEntry 5 } - -memSmokeSensorConfigAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation on this input." - ::= { memSmokeSensorConfigEntry 6 } - -memVibrationSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemVibrationSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { memInputStateSensors 10 } - -memVibrationSensorConfigEntry OBJECT-TYPE - SYNTAX MemVibrationSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to configure." - INDEX { memVibrationSensorModuleConfigIndex } - ::= { memVibrationSensorConfigTable 1 } - -MemVibrationSensorConfigEntry ::= - SEQUENCE { - memVibrationSensorModuleConfigIndex INTEGER, - memVibrationSensorConfigSensorIndex INTEGER, - memVibrationSensorConfigSensorName DisplayString, - memVibrationSensorConfigSensorLocation DisplayString, - memVibrationSensorConfigSensorSeverity INTEGER, - memVibrationSensorConfigAlarmGeneration INTEGER - } - -memVibrationSensorModuleConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memVibrationSensorConfigEntry 1 } - -memVibrationSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memVibrationSensorConfigEntry 2 } - -memVibrationSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the vibration sensor." - ::= { memVibrationSensorConfigEntry 3 } - -memVibrationSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the vibration sensor." - ::= { memVibrationSensorConfigEntry 4 } - -memVibrationSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the vibration sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memVibrationSensorConfigEntry 5 } - -memVibrationSensorConfigAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation on this input." - ::= { memVibrationSensorConfigEntry 6 } - -memFluidSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemFluidSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { memInputStateSensors 11 } - -memFluidSensorConfigEntry OBJECT-TYPE - SYNTAX MemFluidSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to configure." - INDEX { memFluidSensorModuleConfigIndex } - ::= { memFluidSensorConfigTable 1 } - -MemFluidSensorConfigEntry ::= - SEQUENCE { - memFluidSensorModuleConfigIndex INTEGER, - memFluidSensorConfigSensorIndex INTEGER, - memFluidSensorConfigSensorName DisplayString, - memFluidSensorConfigSensorLocation DisplayString, - memFluidSensorConfigSensorSeverity INTEGER, - memFluidSensorConfigAlarmGeneration INTEGER - } - -memFluidSensorModuleConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memFluidSensorConfigEntry 1 } - -memFluidSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memFluidSensorConfigEntry 2 } - -memFluidSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the fluid sensor." - ::= { memFluidSensorConfigEntry 3 } - -memFluidSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the fluid sensor." - ::= { memFluidSensorConfigEntry 4 } - -memFluidSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the fluid sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memFluidSensorConfigEntry 5 } - -memFluidSensorConfigAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation on this input." - ::= { memFluidSensorConfigEntry 6 } - -memDoorSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF MemDoorSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { memInputStateSensors 12 } - -memDoorSensorConfigEntry OBJECT-TYPE - SYNTAX MemDoorSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { memDoorSensorModuleConfigIndex } - ::= { memDoorSensorConfigTable 1 } - -MemDoorSensorConfigEntry ::= - SEQUENCE { - memDoorSensorModuleConfigIndex INTEGER, - memDoorSensorConfigSensorIndex INTEGER, - memDoorSensorConfigSensorName DisplayString, - memDoorSensorConfigSensorLocation DisplayString, - memDoorSensorConfigSensorSeverity INTEGER, - memDoorSensorConfigAlarmGeneration INTEGER - } - -memDoorSensorModuleConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor module entry." - ::= { memDoorSensorConfigEntry 1 } - -memDoorSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { memDoorSensorConfigEntry 2 } - -memDoorSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the door sensor." - ::= { memDoorSensorConfigEntry 3 } - -memDoorSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the door sensor." - ::= { memDoorSensorConfigEntry 4 } - -memDoorSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the door sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { memDoorSensorConfigEntry 5 } - -memDoorSensorConfigAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation on this input." - ::= { memDoorSensorConfigEntry 6 } - --- WIRELESS Table - -wirelessSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF WirelessSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { wirelessSensorStatus 1 } - -wirelessSensorStatusEntry OBJECT-TYPE - SYNTAX WirelessSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of wireless sensor status table entries." - INDEX { wirelessSensorStatusIndex } - ::= { wirelessSensorStatusTable 1 } - -WirelessSensorStatusEntry ::= - SEQUENCE { - wirelessSensorStatusIndex INTEGER, - wirelessSensorStatusExtAddr DisplayString, - wirelessSensorStatusName DisplayString, - wirelessSensorStatusAlarmGeneration INTEGER, - wirelessSensorStatusTemperature INTEGER, - wirelessSensorStatusHighTempThresh INTEGER, - wirelessSensorStatusLowTempThresh INTEGER, - wirelessSensorStatusHumidity INTEGER, - wirelessSensorStatusHighHumidityThresh INTEGER, - wirelessSensorStatusLowHumidityThresh INTEGER, - wirelessSensorStatusCommStatus INTEGER, - wirelessSensorStatusMaxTempThresh INTEGER, - wirelessSensorStatusMinTempThresh INTEGER, - wirelessSensorStatusMaxHumidityThresh INTEGER, - wirelessSensorStatusMinHumidityThresh INTEGER, - wirelessSensorStatusBattery INTEGER, - wirelessSensorStatusLowBatteryThresh INTEGER, - wirelessSensorStatusMinBatteryThresh INTEGER, - wirelessSensorStatusRssi INTEGER, - wirelessSensorStatusLowRssiThresh INTEGER, - wirelessSensorStatusMinRssiThresh INTEGER - } - -wirelessSensorStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { wirelessSensorStatusEntry 1 } - -wirelessSensorStatusExtAddr OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The extended address is the combination of the unique 10 byte - MAC address of the sensor concatenated with its short address." - ::= { wirelessSensorStatusEntry 2 } - -wirelessSensorStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the wireless sensor." - ::= { wirelessSensorStatusEntry 3 } - -wirelessSensorStatusAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (0), - enabled (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether alarm generation is enabled or disabled for the sensor." - ::= { wirelessSensorStatusEntry 4 } - -wirelessSensorStatusTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current temperature are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorStatusEntry 5 } - -wirelessSensorStatusHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorStatusEntry 6 } - -wirelessSensorStatusLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorStatusEntry 7 } - -wirelessSensorStatusHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 8 } - -wirelessSensorStatusHighHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 9 } - -wirelessSensorStatusLowHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 10 } - - -wirelessSensorStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - inactive(0), - active(1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the wireless sensor. - inactive(0) indicates sensor is in the wireless network but not sending information. - active(1) indicates wireless sensor is live and sending information." - ::= { wirelessSensorStatusEntry 11 } - -wirelessSensorStatusMaxTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorStatusEntry 12 } - -wirelessSensorStatusMinTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorStatusEntry 13 } - -wirelessSensorStatusMaxHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 14 } - -wirelessSensorStatusMinHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 15 } - -wirelessSensorStatusBattery OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorStatusEntry 16 } - -wirelessSensorStatusLowBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorStatusEntry 17 } - -wirelessSensorStatusMinBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorStatusEntry 18 } - -wirelessSensorStatusRssi OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 19 } - -wirelessSensorStatusLowRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 20 } - -wirelessSensorStatusMinRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorStatusEntry 21 } - --- Sensor pod Status - -wirelessSensorPodStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF WirelessSensorPodStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual pod sensors." - ::= { wirelessSensorPodStatus 1 } - -wirelessSensorPodStatusEntry OBJECT-TYPE - SYNTAX WirelessSensorPodStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor pod to access." - INDEX { wirelessSensorPodStatusIndex } - ::= { wirelessSensorPodStatusTable 1 } - -WirelessSensorPodStatusEntry ::= - SEQUENCE { - wirelessSensorPodStatusIndex INTEGER, - wirelessSensorPodPortIndex INTEGER, - wirelessSensorPodStatusExtAddr DisplayString, - wirelessSensorPodStatusName DisplayString, - wirelessSensorPodStatusAlarmGeneration INTEGER, - wirelessSensorPodStatusTemperature INTEGER, - wirelessSensorPodStatusHighTempThresh INTEGER, - wirelessSensorPodStatusLowTempThresh INTEGER, - wirelessSensorPodStatusHumidity INTEGER, - wirelessSensorPodStatusHighHumidityThresh INTEGER, - wirelessSensorPodStatusLowHumidityThresh INTEGER, - wirelessSensorPodStatusCommStatus INTEGER, - wirelessSensorPodStatusMaxTempThresh INTEGER, - wirelessSensorPodStatusMinTempThresh INTEGER, - wirelessSensorPodStatusMaxHumidityThresh INTEGER, - wirelessSensorPodStatusMinHumidityThresh INTEGER, - wirelessSensorPodStatusDryContactState INTEGER, - wirelessSensorPodStatusDryContactNormalState INTEGER, - wirelessSensorPodStatusBattery INTEGER, - wirelessSensorPodStatusLowBatteryThresh INTEGER, - wirelessSensorPodStatusMinBatteryThresh INTEGER, - wirelessSensorPodStatusRssi INTEGER, - wirelessSensorPodStatusLowRssiThresh INTEGER, - wirelessSensorPodStatusMinRssiThresh INTEGER - } - -wirelessSensorPodStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the pod sensor entry." - ::= { wirelessSensorPodStatusEntry 1 } - - wirelessSensorPodPortIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The pod sensor port index." - ::= { wirelessSensorPodStatusEntry 2 } - -wirelessSensorPodStatusExtAddr OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The extended address is the combination of the unique 10 byte MAC address - of the sensor concatenated with its short address." - ::= { wirelessSensorPodStatusEntry 3 } - - -wirelessSensorPodStatusName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the sensor pod." - ::= { wirelessSensorPodStatusEntry 4 } - -wirelessSensorPodStatusAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (0), - enabled (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status of whether alarm generation is enabled or disabled." - ::= { wirelessSensorPodStatusEntry 5 } - -wirelessSensorPodStatusTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodStatusEntry 6 } - -wirelessSensorPodStatusHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodStatusEntry 7 } - -wirelessSensorPodStatusLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodStatusEntry 8 } - -wirelessSensorPodStatusHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 9 } - -wirelessSensorPodStatusHighHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 10 } - -wirelessSensorPodStatusLowHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 11} - - -wirelessSensorPodStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - inactive(0), - active(1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the wireless sensor. - inactive(0) indicates pod sensor is in the wireless network but not sending information. - active(1) indicates wireless sensor is live and sending information." - ::= { wirelessSensorPodStatusEntry 12 } - -wirelessSensorPodStatusMaxTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodStatusEntry 13 } - -wirelessSensorPodStatusMinTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodStatusEntry 14 } - -wirelessSensorPodStatusMaxHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 15 } - -wirelessSensorPodStatusMinHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 16 } - -wirelessSensorPodStatusDryContactState OBJECT-TYPE - SYNTAX INTEGER { - drycontactOpen (0), - drycontactClosed (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "State of the dry contact. If the dry contact is closed, - the drycontactClosed (1) value will be returned. If the dry contact - state is open, the drycontactOpen (0) value will be returned." - ::= { wirelessSensorPodStatusEntry 17 } - -wirelessSensorPodStatusDryContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyOpen (0), - normallyClosed (1) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The normal state of the dry contact. If the normal state is closed, - the normallyClosed (1) value will be returned. If the normal state is - open, the normallyOpen (0) value will be returned." - ::= { wirelessSensorPodStatusEntry 18 } - -wirelessSensorPodStatusBattery OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorPodStatusEntry 19 } - -wirelessSensorPodStatusLowBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorPodStatusEntry 20 } - -wirelessSensorPodStatusMinBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorPodStatusEntry 21 } - -wirelessSensorPodStatusRssi OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 22 } - -wirelessSensorPodStatusLowRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 23 } - -wirelessSensorPodStatusMinRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodStatusEntry 24 } - - --- Sensor Config Table -wirelessSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF WirelessSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { wirelessSensorConfig 1 } - -wirelessSensorConfigEntry OBJECT-TYPE - SYNTAX WirelessSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to configure." - INDEX { wirelessSensorConfigIndex } - ::= { wirelessSensorConfigTable 1 } - -WirelessSensorConfigEntry ::= - SEQUENCE { - wirelessSensorConfigIndex INTEGER, - wirelessSensorConfigName DisplayString, - wirelessSensorConfigAlarmGeneration INTEGER, - wirelessSensorConfigHighTempThresh INTEGER, - wirelessSensorConfigLowTempThresh INTEGER, - wirelessSensorConfigHighHumidityThresh INTEGER, - wirelessSensorConfigLowHumidityThresh INTEGER, - wirelessSensorConfigMaxTempThresh INTEGER, - wirelessSensorConfigMinTempThresh INTEGER, - wirelessSensorConfigMaxHumidityThresh INTEGER, - wirelessSensorConfigMinHumidityThresh INTEGER, - wirelessSensorConfigLowBatteryThresh INTEGER, - wirelessSensorConfigMinBatteryThresh INTEGER, - wirelessSensorConfigLowRssiThresh INTEGER, - wirelessSensorConfigMinRssiThresh INTEGER - } - -wirelessSensorConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the entry." - ::= { wirelessSensorConfigEntry 1 } - -wirelessSensorConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user-defined wireless sensor ID string." - ::= { wirelessSensorConfigEntry 2 } - -wirelessSensorConfigAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (0), - enabled (1) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation for this sensor." - ::= { wirelessSensorConfigEntry 3 } - -wirelessSensorConfigHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorConfigEntry 4 } - -wirelessSensorConfigLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorConfigEntry 5 } - -wirelessSensorConfigHighHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorConfigEntry 6 } - -wirelessSensorConfigLowHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorConfigEntry 7 } - -wirelessSensorConfigMaxTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorConfigEntry 8 } - -wirelessSensorConfigMinTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorConfigEntry 9 } - -wirelessSensorConfigMaxHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorConfigEntry 10 } - -wirelessSensorConfigMinHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorConfigEntry 11 } - -wirelessSensorConfigLowBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorConfigEntry 12 } - -wirelessSensorConfigMinBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorConfigEntry 13 } - -wirelessSensorConfigLowRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorConfigEntry 14 } - -wirelessSensorConfigMinRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorConfigEntry 15 } - - --- Sensor pod config Table -wirelessSensorPodConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF WirelessSensorPodConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { wirelessSensorPodConfig 1 } - -wirelessSensorPodConfigEntry OBJECT-TYPE - SYNTAX WirelessSensorPodConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to configure." - INDEX { wirelessSensorPodConfigIndex, wirelessSensorPodConfigPortIndex } - ::= { wirelessSensorPodConfigTable 1 } - -WirelessSensorPodConfigEntry ::= - SEQUENCE { - wirelessSensorPodConfigIndex INTEGER, - wirelessSensorPodConfigPortIndex INTEGER, - wirelessSensorPodConfigName DisplayString, - wirelessSensorPodConfigAlarmGeneration INTEGER, - wirelessSensorPodConfigDryContactNormalState INTEGER, - wirelessSensorPodConfigHighTempThresh INTEGER, - wirelessSensorPodConfigLowTempThresh INTEGER, - wirelessSensorPodConfigHighHumidityThresh INTEGER, - wirelessSensorPodConfigLowHumidityThresh INTEGER, - wirelessSensorPodConfigMaxTempThresh INTEGER, - wirelessSensorPodConfigMinTempThresh INTEGER, - wirelessSensorPodConfigMaxHumidityThresh INTEGER, - wirelessSensorPodConfigMinHumidityThresh INTEGER, - wirelessSensorPodConfigLowBatteryThresh INTEGER, - wirelessSensorPodConfigMinBatteryThresh INTEGER, - wirelessSensorPodConfigLowRssiThresh INTEGER, - wirelessSensorPodConfigMinRssiThresh INTEGER - } - -wirelessSensorPodConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the entry." - ::= { wirelessSensorPodConfigEntry 1 } - -wirelessSensorPodConfigPortIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor pod port index." - ::= { wirelessSensorPodConfigEntry 2 } - -wirelessSensorPodConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the sensor pod." - ::= { wirelessSensorPodConfigEntry 3 } - -wirelessSensorPodConfigAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (0), - enabled (1) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable alarm generation for this sensor." - ::= { wirelessSensorPodConfigEntry 4 } - -wirelessSensorPodConfigDryContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyOpen (0), - normallyClosed (1) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the dry contact. If the normal state is closed, - the normallyClosed (1) value will be returned. If the normal state is open, - the normallyOpen (0) value will be returned. Setting this variable will change - the normal state of the dry contact." - ::= { wirelessSensorPodConfigEntry 5 } - - -wirelessSensorPodConfigHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodConfigEntry 6 } - -wirelessSensorPodConfigLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodConfigEntry 7 } - -wirelessSensorPodConfigHighHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodConfigEntry 8 } - -wirelessSensorPodConfigLowHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodConfigEntry 9 } - -wirelessSensorPodConfigMaxTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of degrees in the scale - shown in the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodConfigEntry 10 } - -wirelessSensorPodConfigMinTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { wirelessSensorPodConfigEntry 11 } - -wirelessSensorPodConfigMaxHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodConfigEntry 12 } - -wirelessSensorPodConfigMinHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodConfigEntry 13 } - -wirelessSensorPodConfigLowBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorPodConfigEntry 14 } - -wirelessSensorPodConfigMinBatteryThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are displayed in tenths of Volts DC." - ::= { wirelessSensorPodConfigEntry 15 } - -wirelessSensorPodConfigLowRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodConfigEntry 16 } - -wirelessSensorPodConfigMinRssiThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Values are represented in whole number percentage." - ::= { wirelessSensorPodConfigEntry 17 } - --- Integrated Environmental Monitor (IEM) - -iemIdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the Integrated Environmental - Monitor." - ::= { iemIdent 1 } - -iemConfigProbesNumProbes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of temperature and humidity probes available." - ::= { iemConfig 1 } - -iemConfigProbesTable OBJECT-TYPE - SYNTAX SEQUENCE OF IemConfigProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of probes supported by the Environmental Monitor - and their configurations." - ::= { iemConfig 2 } - -iemConfigProbesEntry OBJECT-TYPE - SYNTAX IemConfigProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Environmental Monitor probe configurations." - INDEX { iemConfigProbeNumber } - ::= { iemConfigProbesTable 1 } - -IemConfigProbesEntry ::= - SEQUENCE { - iemConfigProbeNumber - INTEGER, - iemConfigProbeName - DisplayString, - iemConfigProbeHighTempThreshold - INTEGER, - iemConfigProbeLowTempThreshold - INTEGER, - iemConfigProbeTempUnits - INTEGER, - iemConfigProbeHighHumidThreshold - INTEGER, - iemConfigProbeLowHumidThreshold - INTEGER, - iemConfigProbeHighTempEnable - INTEGER, - iemConfigProbeLowTempEnable - INTEGER, - iemConfigProbeHighHumidEnable - INTEGER, - iemConfigProbeLowHumidEnable - INTEGER, - iemConfigProbeMaxTempThreshold - INTEGER, - iemConfigProbeMinTempThreshold - INTEGER, - iemConfigProbeMaxHumidThreshold - INTEGER, - iemConfigProbeMinHumidThreshold - INTEGER, - iemConfigProbeMaxTempEnable - INTEGER, - iemConfigProbeMinTempEnable - INTEGER, - iemConfigProbeMaxHumidEnable - INTEGER, - iemConfigProbeMinHumidEnable - INTEGER, - iemConfigProbeTempHysteresis - INTEGER, - iemConfigProbeHumidHysteresis - INTEGER, - iemConfigProbeLocation - DisplayString - } - -iemConfigProbeNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to a Environmental Monitor probe entry." - ::= { iemConfigProbesEntry 1 } - -iemConfigProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for the probe set by the user, - possibly denoting its location or purpose." - ::= { iemConfigProbesEntry 2 } - -iemConfigProbeHighTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature alarm threshold for the probe. - Units are displayed in the scale selected in the - 'iemConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { iemConfigProbesEntry 3 } - -iemConfigProbeLowTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature alarm threshold for the probe. - Units are displayed in the scale selected in the - 'iemConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { iemConfigProbesEntry 4 } - -iemConfigProbeTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - thresholds of the probe, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { iemConfigProbesEntry 5 } - -iemConfigProbeHighHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity alarm threshold for the probe in - percent relative humidity." - ::= { iemConfigProbesEntry 6 } - -iemConfigProbeLowHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity alarm threshold for the probe in - percent relative humidity." - ::= { iemConfigProbesEntry 7 } - -iemConfigProbeHighTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 8 } - -iemConfigProbeLowTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 9 } - -iemConfigProbeHighHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 10 } - -iemConfigProbeLowHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 11 } - -iemConfigProbeMaxTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximun temperature alarm threshold for the probe. - Units are displayed in the scale selected in the - 'iemConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { iemConfigProbesEntry 12 } - -iemConfigProbeMinTempThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimun temperature alarm threshold for the probe. - Units are displayed in the scale selected in the - 'iemConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { iemConfigProbesEntry 13 } - -iemConfigProbeMaxHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum humidity alarm threshold for the probe in - percent relative humidity." - ::= { iemConfigProbesEntry 14 } - -iemConfigProbeMinHumidThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum humidity alarm threshold for the probe in - percent relative humidity." - ::= { iemConfigProbesEntry 15 } - -iemConfigProbeMaxTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 16 } - -iemConfigProbeMinTempEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 17 } - -iemConfigProbeMaxHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 18 } - -iemConfigProbeMinHumidEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum humidity alarm enable/disable for the - probe. No alarm will be generated if this value - is set to disabled(1). The alarm will be - generated if this value is set to enabled(2) and - the threshold has been violated." - ::= { iemConfigProbesEntry 19 } - -iemConfigProbeTempHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of degrees beyond the temperature thresholds - at which an active temperature alarm will be cleared. - This configuration setting applies to all temperature - thresholds. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { iemConfigProbesEntry 20 } - -iemConfigProbeHumidHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of percent RH points beyond the humidity - thresholds at which an active humidity alarm will be - cleared. This configuration setting applies to all - humidity thresholds. - Units are displayed in the scale selected in - the 'emConfigProbeTempUnits' OID (Celsius or Fahrenheit)." - ::= { iemConfigProbesEntry 21 } - -iemConfigProbeLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A string describing the location of the probe." - ::= { iemConfigProbesEntry 22 } - -iemConfigContactsNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts available on the Environmental - Monitor." - ::= { iemConfig 3 } - -iemConfigContactsTable OBJECT-TYPE - SYNTAX SEQUENCE OF IemConfigContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the Environmental Monitor - and their configurations." - ::= { iemConfig 4 } - -iemConfigContactsEntry OBJECT-TYPE - SYNTAX IemConfigContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Environmental Monitor contact configurations." - INDEX { iemConfigContactNumber } - ::= { iemConfigContactsTable 1 } - -IemConfigContactsEntry ::= - SEQUENCE { - iemConfigContactNumber - INTEGER, - iemConfigContactName - DisplayString, - iemConfigContactEnable - INTEGER, - iemConfigContactSeverity - INTEGER, - iemConfigContactNormalState - INTEGER, - iemConfigContactLocation - DisplayString - } - -iemConfigContactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an Environmental Monitor contact." - ::= { iemConfigContactsEntry 1 } - -iemConfigContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for the Environmental Monitor contact - set by the user, possibly denoting its location or purpose." - ::= { iemConfigContactsEntry 2 } - -iemConfigContactEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An Environmental Monitor contact alarm enable/disable." - ::= { iemConfigContactsEntry 3 } - -iemConfigContactSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severtity of the alarm that will be triggered when - the input contact is activated. The alarms can be - critical(1), warning(2) or informational(3). - NOTE: informational(3) is deprecated (and no longer valid) for this OID." - ::= { iemConfigContactsEntry 4 } - -iemConfigContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - open(1), - closed(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The contact state that will be considered normal, i.e. - will not trigger an alarm. The states are open(1) or - closed(2)." - ::= { iemConfigContactsEntry 5 } - -iemConfigContactLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive label for the contact denoting its - location or purpose." - ::= { iemConfigContactsEntry 6 } - -iemConfigConfigRelaysNumRelays OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output relays supported by the Environmental - Monitor." - ::= { iemConfig 5 } - - -iemConfigRelaysTable OBJECT-TYPE - SYNTAX SEQUENCE OF IemConfigRelaysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output relays supported by the Environmental Monitor - and their configurations." - ::= { iemConfig 6 } - -iemConfigRelaysEntry OBJECT-TYPE - SYNTAX IemConfigRelaysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The Environmental Monitor output relay configurations." - INDEX { iemConfigRelayNumber } - ::= { iemConfigRelaysTable 1 } - -IemConfigRelaysEntry ::= - SEQUENCE { - iemConfigRelayNumber - INTEGER, - iemConfigRelayName - DisplayString, - iemConfigRelayNormalState - INTEGER, - iemConfigRelayFaultCondition - INTEGER - } - -iemConfigRelayNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an Environmental Monitor output relay." - ::= { iemConfigRelaysEntry 1 } - -iemConfigRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name of an Environmental Monitor output relay, - set by the user, describing its location or purpose." - ::= { iemConfigRelaysEntry 2 } - -iemConfigRelayNormalState OBJECT-TYPE - SYNTAX INTEGER { - open(1), - closed(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state (non-fault state) of an Environmental - Monitor output relay, either open(1) or closed(2)." - ::= { iemConfigRelaysEntry 3 } - -iemConfigRelayFaultCondition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The fault condition used to activate the output relay." - ::= { iemConfigRelaysEntry 4 } - -iemStatusProbesNumProbes OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of available probes on the Environmental - Monitor." - ::= { iemStatus 1 } - -iemStatusProbesTable OBJECT-TYPE - SYNTAX SEQUENCE OF IemStatusProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of probes supported by the Environmental Monitor - and their status." - ::= { iemStatus 2 } - -iemStatusProbesEntry OBJECT-TYPE - SYNTAX IemStatusProbesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The status of the probe." - INDEX { iemStatusProbeNumber } - ::= { iemStatusProbesTable 1 } - -IemStatusProbesEntry ::= - SEQUENCE { - iemStatusProbeNumber - INTEGER, - iemStatusProbeName - DisplayString, - iemStatusProbeStatus - INTEGER, - iemStatusProbeCurrentTemp - INTEGER, - iemStatusProbeTempUnits - INTEGER, - iemStatusProbeCurrentHumid - INTEGER, - iemStatusProbeHighTempViolation - INTEGER, - iemStatusProbeLowTempViolation - INTEGER, - iemStatusProbeHighHumidViolation - INTEGER, - iemStatusProbeLowHumidViolation - INTEGER, - iemStatusProbeMaxTempViolation - INTEGER, - iemStatusProbeMinTempViolation - INTEGER, - iemStatusProbeMaxHumidViolation - INTEGER, - iemStatusProbeMinHumidViolation - INTEGER, - iemStatusProbeLocation - DisplayString - } - -iemStatusProbeNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the probe." - ::= { iemStatusProbesEntry 1 } - -iemStatusProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A descriptive name for the probe set by the user." - ::= { iemStatusProbesEntry 2 } - -iemStatusProbeStatus OBJECT-TYPE - SYNTAX INTEGER { - disconnected(1), - connected(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The connected status of the probe, either - disconnected(1) or connected(2)." - ::= { iemStatusProbesEntry 3 } - -iemStatusProbeCurrentTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current temperature reading from the probe displayed - in the units shown in the 'iemStatusProbeTempUnits' OID - (Celsius or Fahrenheit)." - ::= { iemStatusProbesEntry 4 } - -iemStatusProbeTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - thresholds of the probe, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { iemStatusProbesEntry 5 } - -iemStatusProbeCurrentHumid OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current humidity reading from the probe in percent - relative humidity." - ::= { iemStatusProbesEntry 6 } - -iemStatusProbeHighTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - highTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The high temperature violation status of the probe - temperature reading. This OID will show a highTempViolation(2) - if the current temperature reading shown in the - 'iemStatusProbeCurrentTemp' OID is greater than or equal to - the high temperature threshold value, the - 'iemConfigProbeHighTempThreshold' OID, and the value of the - 'iemConfigProbeHighTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'iemConfigProbeHighTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { iemStatusProbesEntry 7 } - -iemStatusProbeLowTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - lowTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The high temperature violation status of the probe - temperature reading. This OID will show a lowTempViolation(2) - if the current temperature reading shown in the - 'iemStatusProbeCurrentTemp' OID is less than or equal to - the low temperature threshold value, the - 'iemConfigProbeLowTempThreshold' OID, and the value of the - 'iemPConfigrobeLowTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'iemConfigProbeLowTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { iemStatusProbesEntry 8 } - -iemStatusProbeHighHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - highHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The high humidity violation status of the probe humidity - reading. This OID will show a highTempViolation(2) - if the current humidity reading shown in the - 'iemStatusProbeCurrentHumid' OID is greater than or equal to - the high humidity threshold value, the - 'iemConfigProbeHighHumidThreshold' OID, and the value of the - 'iemConfigProbeHighHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'iemConfigProbeHighHumidEnable' OID is - disabled, this OID will show disabled(3)." - ::= { iemStatusProbesEntry 9 } - -iemStatusProbeLowHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - lowHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The low humidity violation status of the probe humidity - reading. This OID will show a lowTempViolation(2) - if the current humidity reading shown in the - 'iemStatusProbeCurrentHumid' OID is less than or equal to - the low humidity threshold value, the - 'iemConfigProbeLowHumidThreshold' OID, and the value of the - 'iemConfigProbeLowHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'iemConfigProbeLowHumidEnable' OID is - disabled, this OID will show disabled(3)." - ::= { iemStatusProbesEntry 10 } - -iemStatusProbeMaxTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - maxTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The max temperature violation status of the probe - temperature reading. This OID will show a maxTempViolation(2) - if the current temperature reading shown in the - 'iemStatusProbeCurrentTemp' OID is greater than or equal to - the maximun temperature threshold value, the - 'iemConfigProbeMaxTempThreshold' OID, and the value of the - 'iemConfigProbeMaxTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'iemConfigProbeMaxTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { iemStatusProbesEntry 11 } - -iemStatusProbeMinTempViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - minTempViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum temperature violation status of the probe - temperature reading. This OID will show a minTempViolation(2) - if the current temperature reading shown in the - 'iemStatusProbeCurrentTemp' OID is less than or equal to - the minimum temperature threshold value, the - 'iemConfigProbeMinTempThreshold' OID, and the value of the - 'iemConfigProbeMinTempEnable' OID is enabled. Otherwise it will show - noViolation(1). If the 'iemConfigProbeMinTempEnable' OID is disabled, - this OID will show disabled(3)." - ::= { iemStatusProbesEntry 12 } - -iemStatusProbeMaxHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - maxHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum humidity violation status of the probe humidity - reading. This OID will show a maxTempViolation(2) - if the current humidity reading shown in the - 'iemStatusProbeCurrentHumid' OID is greater than or equal to - the maximum humidity threshold value, the - 'iemConfigProbeMaxHumidThreshold' OID, and the value of the - 'iemConfigProbeMaxHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'iemConfigProbeMaxHumidEnable' OID is - disabled, this OID will show disabled(3)" - ::= { iemStatusProbesEntry 13 } - -iemStatusProbeMinHumidViolation OBJECT-TYPE - SYNTAX INTEGER { - noViolation(1), - minHumidViolation(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum humidity violation status of the probe humidity - reading. This OID will show a minTempViolation(2) - if the current humidity reading shown in the - 'iemStatusProbeCurrentHumid' OID is less than or equal to - the minimum humidity threshold value, the - 'iemConfigProbeMinHumidThreshold' OID, and the value of the - 'iemConfigProbeMinHumidEnable' OID is enabled. Otherwise it will - show noViolation(1). If the 'iemConfigProbeMinHumidEnable' OID is - disabled, this OID will show disabled(3)." - ::= { iemStatusProbesEntry 14 } - -iemStatusProbeLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A descriptive location for the probe set by the user." - ::= { iemStatusProbesEntry 15 } - -iemStatusContactsNumContacts OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of contacts supported on the - Environmental Monitor." - ::= { iemStatus 3 } - -iemStatusContactsTable OBJECT-TYPE - SYNTAX SEQUENCE OF IemStatusContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of contacts supported by the Environmental Monitor - and their status." - ::= { iemStatus 4 } - -iemStatusContactsEntry OBJECT-TYPE - SYNTAX IemStatusContactsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The status of the contact." - INDEX { iemStatusContactNumber } - ::= { iemStatusContactsTable 1 } - -IemStatusContactsEntry ::= - SEQUENCE { - iemStatusContactNumber - INTEGER, - iemStatusContactName - DisplayString, - iemStatusContactStatus - INTEGER - } - -iemStatusContactNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the Environmental Monitor contact." - ::= { iemStatusContactsEntry 1 } - -iemStatusContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A descriptive name for the Environmental Monitor contact - set by the user, denoting its location or purpose." - ::= { iemStatusContactsEntry 2 } - -iemStatusContactStatus OBJECT-TYPE - SYNTAX INTEGER { - noFault(1), - fault(2), - disabled(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the Environmental Monitor contact. The status - will show noFault(1) if the contact is in the normal state - and the 'iemConfigContactEnable' OID is enabled. The status will - show a fault(2) if the contact is faulted and the - 'iemConfigContactEnable' OID is enabled. If the - 'iemConfigContactEnable' OID is disabled, the status will show - disabled(3)." - ::= { iemStatusContactsEntry 3 } - -iemStatusRelaysNumRelays OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output relays supported on the - Environmental Monitor." - ::= { iemStatus 6 } - -iemStatusRelaysTable OBJECT-TYPE - SYNTAX SEQUENCE OF IemStatusRelaysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of output relays supported by the - Environmental Monitor and their status." - ::= { iemStatus 7 } - -iemStatusRelaysEntry OBJECT-TYPE - SYNTAX IemStatusRelaysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The status of the relay." - INDEX { iemStatusRelayNumber } - ::= { iemStatusRelaysTable 1 } - -IemStatusRelaysEntry ::= - SEQUENCE { - iemStatusRelayNumber - INTEGER, - iemStatusRelayName - DisplayString, - iemStatusRelayStatus - INTEGER - } - -iemStatusRelayNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { iemStatusRelaysEntry 1 } - -iemStatusRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A descriptive name for the output relay set by the - user, denoting its location or purpose." - ::= { iemStatusRelaysEntry 2 } - -iemStatusRelayStatus OBJECT-TYPE - SYNTAX INTEGER { - faultState(1), - normalState(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the output relay, either faultState(1) or - normalState(2)." - ::= { iemStatusRelaysEntry 3 } - --- Environmental Management System (EMS) - --- EMS IDENT - -emsIdentEMSName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - device. " - ::= { emsIdent 1 } - -emsIdentProductNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the model number of - the device. This value is set at the factory." - ::= { emsIdent 2 } - -emsIdentFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision of the device." - ::= { emsIdent 3 } - -emsIdentHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the device. - This value is set at the factory." - ::= { emsIdent 4 } - -emsIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the device was manufactured in mm/dd/yyyy format. - This value is set at the factory. " - ::= { emsIdent 5 } - -emsIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of - the device. This value is set at the factory." - ::= { emsIdent 6 } - --- EMS CONTROL - --- EMS OUTPUT RELAY CONTROL STATUS TABLE - -emsOutputRelayControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsOutputRelayControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual output relays. The number of - entries is contained in the emsStatusOutputRelayCount OID." - ::= { emsOutputRelayControl 1 } - -emsOutputRelayControlEntry OBJECT-TYPE - SYNTAX EmsOutputRelayControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relays to control." - INDEX { emsOutputRelayControlOutputRelayIndex } - ::= { emsOutputRelayControlTable 1 } - -EmsOutputRelayControlEntry ::= - SEQUENCE { - emsOutputRelayControlOutputRelayIndex INTEGER, - emsOutputRelayControlOutputRelayName DisplayString, - emsOutputRelayControlOutputRelayCommand INTEGER - } - -emsOutputRelayControlOutputRelayIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the output relay entry." - ::= { emsOutputRelayControlEntry 1 } - -emsOutputRelayControlOutputRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the output relay. - This OID is provided for informational purposes only." - ::= { emsOutputRelayControlEntry 2 } - -emsOutputRelayControlOutputRelayCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateCloseEMS (1), - immediateOpenEMS (2) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the output relay state. If - the output relay is closed, the immediateCloseEMS (1) value will be returned. - If the output relay is open, the immediateOpenEMS (2) value will be - returned. - - Setting this variable to immediateCloseEMS (1) will immediately close the relay. - - Setting this variable to immediateOpenEMS (2) will immediately open the relay." - ::= { emsOutputRelayControlEntry 3 } - --- EMS OUTLET CONTROL TABLE - -emsOutletControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsOutletControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual outlet switches. The number of - entries is contained in the emsStatusOutletCount OID." - ::= { emsOutletControl 1 } - -emsOutletControlEntry OBJECT-TYPE - SYNTAX EmsOutletControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to control." - INDEX { emsOutletControlOutletIndex } - ::= { emsOutletControlTable 1 } - -EmsOutletControlEntry ::= - SEQUENCE { - emsOutletControlOutletIndex INTEGER, - emsOutletControlOutletName DisplayString, - emsOutletControlOutletCommand INTEGER - } - -emsOutletControlOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { emsOutletControlEntry 1 } - -emsOutletControlOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet. - This OID is provided for informational purposes only." - ::= { emsOutletControlEntry 2 } - -emsOutletControlOutletCommand OBJECT-TYPE - SYNTAX INTEGER { - immediateOnEMS (1), - immediateOffEMS (2) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the outlet state. If - the outlet is on, the immediateOnEMS (1) value will be returned. - If the outlet is off, the immediateOffEMS (2) value will be - returned. - - Setting this variable to immediateOnEMS (1) will immediately turn the outlet on. - - Setting this variable to immediateOffEMS (2) will immediately turn the outlet off." - ::= { emsOutletControlEntry 3 } - --- EMS SENSOR CONTROL TABLE - -emsSensorControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSSensorControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control/reset of individual sensors. The number of - entries is contained in the emsStatusSensorCount OID." - ::= { emsSensorControl 1 } - -emsSensorControlEntry OBJECT-TYPE - SYNTAX EMSSensorControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to control/reset." - INDEX { emsSensorControlSensorIndex } - ::= { emsSensorControlTable 1 } - -EMSSensorControlEntry ::= - SEQUENCE { - emsSensorControlSensorIndex INTEGER, - emsSensorControlSensorSystemName DisplayString, - emsSensorControlSensorUserName DisplayString, - emsSensorControlSensorCommand INTEGER - } - -emsSensorControlSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsSensorControlEntry 1 } - -emsSensorControlSensorSystemName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system name of the sensor. This describes the hardware system - intent of this sensor." - ::= { emsSensorControlEntry 2 } - -emsSensorControlSensorUserName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the sensor as given by the system user." - ::= { emsSensorControlEntry 3 } - -emsSensorControlSensorCommand OBJECT-TYPE - SYNTAX INTEGER { - noCommandEMS (1), - resetCommandEMS (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return noCommandEMS(1). - - Setting this variable to resetCommandEMS(2) will issue a reset command to the - sensor. Some sensors cannot be manually reset and will not be affected - by this command." - ::= { emsSensorControlEntry 4 } - --- EMS ALARM DEVICE CONTROL TABLE - -emsAlarmDeviceControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsAlarmDeviceControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for control of individual alarm devices. - Note: Some alarm devices are not controllable. The number of - entries is contained in the emsStatusAlarmDeviceCount OID." - ::= { emsAlarmDeviceControl 1 } - -emsAlarmDeviceControlEntry OBJECT-TYPE - SYNTAX EmsAlarmDeviceControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The alarm devices to control." - INDEX { emsAlarmDeviceControlDeviceIndex } - ::= { emsAlarmDeviceControlTable 1 } - -EmsAlarmDeviceControlEntry ::= - SEQUENCE { - emsAlarmDeviceControlDeviceIndex INTEGER, - emsAlarmDeviceControlDeviceName DisplayString, - emsAlarmDeviceControlDeviceCommand INTEGER - } - -emsAlarmDeviceControlDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the alarm device entry." - ::= { emsAlarmDeviceControlEntry 1 } - -emsAlarmDeviceControlDeviceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the alarm device. - This OID is provided for informational purposes only." - ::= { emsAlarmDeviceControlEntry 2 } - -emsAlarmDeviceControlDeviceCommand OBJECT-TYPE - SYNTAX INTEGER { - alarmDeviceOnEMS (1), - alarmDeviceOffEMS (2), - alarmDeviceNotInstalledEMS (3) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the device state. If - the device is active, the alarmDeviceOnEMS (1) value will be returned. - If the device is inactive, the alarmDeviceOffEMS (2) value will be - returned. If the device is not installed, the - alarmDeviceNotInstalledEMS (3) value will be returned. - - Actions resulting from setting this variable are device-dependent. - - Setting this variable to alarmDeviceOnEMS (1) will turn that device (ex. Beacon) on. - Setting this variable to alarmDeviceOffEMS (2) will turn that device off." - - ::= { emsAlarmDeviceControlEntry 3 } - - --- EMS CONFIG - -emsConfigName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the device." - ::= { emsConfig 1 } - -emsConfigCheckLogLight OBJECT-TYPE - SYNTAX INTEGER { - lightDisabled (1), - lightOnInformational (2), - lightOnWarning (3), - lightOnSevere (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The setting of this OID determines the level of event that will - trigger the check-log light on the EMS. This is not available on the EMU2. - - lightDisabled (1) disables the check-log light. - lightOnInformational (2) lights check-log for any event of - informational severity or above. - lightOnWarning (3) lights check-log for any event of - warning severity or above. - lightOnSevere (4) lights check-log for any event of severe severity." - - ::= { emsConfig 2 } - --- EMS PROBE CONFIG TABLE - -emsProbeConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSProbeConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual probes. The number of - entries is contained in the emsStatusProbeCount OID." - ::= { emsProbeConfig 1 } - -emsProbeConfigEntry OBJECT-TYPE - SYNTAX EMSProbeConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The probes to configure." - INDEX { emsProbeConfigProbeIndex } - ::= { emsProbeConfigTable 1 } - -EMSProbeConfigEntry ::= - SEQUENCE { - emsProbeConfigProbeIndex INTEGER, - emsProbeConfigProbeName DisplayString, - emsProbeConfigProbeHighTempThresh INTEGER, - emsProbeConfigProbeLowTempThresh INTEGER, - emsProbeConfigProbeHighHumidityThresh INTEGER, - emsProbeConfigProbeLowHumidityThresh INTEGER, - emsProbeConfigProbeMaxTempThresh INTEGER, - emsProbeConfigProbeMinTempThresh INTEGER, - emsProbeConfigProbeDeltaTemp INTEGER, - emsProbeConfigProbeMaxHumidityThresh INTEGER, - emsProbeConfigProbeMinHumidityThresh INTEGER, - emsProbeConfigProbeDeltaHumidity INTEGER, - emsProbeConfigProbeSTIncTempVariance INTEGER, - emsProbeConfigProbeSTIncTempTime INTEGER, - emsProbeConfigProbeSTDecTempVariance INTEGER, - emsProbeConfigProbeSTDecTempTime INTEGER, - emsProbeConfigProbeLTIncTempVariance INTEGER, - emsProbeConfigProbeLTIncTempTime INTEGER, - emsProbeConfigProbeLTDecTempVariance INTEGER, - emsProbeConfigProbeLTDecTempTime INTEGER - } - -emsProbeConfigProbeIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the probe entry." - ::= { emsProbeConfigEntry 1 } - -emsProbeConfigProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the probe." - ::= { emsProbeConfigEntry 2 } - -emsProbeConfigProbeHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe high temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 3 } - -emsProbeConfigProbeLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe low temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 4 } - -emsProbeConfigProbeHighHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe high humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeConfigEntry 5 } - -emsProbeConfigProbeLowHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe low humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeConfigEntry 6 } - -emsProbeConfigProbeMaxTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe maximum temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 7 } - -emsProbeConfigProbeMinTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe minimum temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 8 } - -emsProbeConfigProbeDeltaTemp OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe delta temperature. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 9 } - -emsProbeConfigProbeMaxHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe maximum humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeConfigEntry 10 } - -emsProbeConfigProbeMinHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe minimum humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeConfigEntry 11 } - -emsProbeConfigProbeDeltaHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe delta humidity. - - Values are represented in whole number percentage." - ::= { emsProbeConfigEntry 12 } - -emsProbeConfigProbeSTIncTempVariance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe short-term increasing temperature variance used for rate of change alarms. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 13 } - -emsProbeConfigProbeSTIncTempTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe short-term increasing temperature time used for rate of change alarms. - - Values are represented in whole number minutes." - ::= { emsProbeConfigEntry 14 } - -emsProbeConfigProbeSTDecTempVariance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe short-term decreasing temperature variance used for rate of change alarms. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 15 } - -emsProbeConfigProbeSTDecTempTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe short-term decreasing temperature time used for rate of change alarms. - - Values are represented in whole number minutes." - ::= { emsProbeConfigEntry 16 } - -emsProbeConfigProbeLTIncTempVariance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe long-term increasing temperature variance used for rate of change alarms. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 17 } - -emsProbeConfigProbeLTIncTempTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe long-term increasing temperature time used for rate of change alarms. - - Values are represented in whole number hours." - ::= { emsProbeConfigEntry 18 } - -emsProbeConfigProbeLTDecTempVariance OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe long-term decreasing temperature variance used for rate of change alarms. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeConfigEntry 19 } - -emsProbeConfigProbeLTDecTempTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Probe long-term decreasing temperature time used for rate of change alarms. - - Values are represented in whole number hours." - ::= { emsProbeConfigEntry 20 } - - --- EMS INPUT CONTACT CONFIG STATUS TABLE - -emsInputContactConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSInputContactConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual input contacts. The number of - entries is contained in the emsStatusInputContactCount OID." - ::= { emsInputContactConfig 1 } - -emsInputContactConfigEntry OBJECT-TYPE - SYNTAX EMSInputContactConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contacts to configure." - INDEX { emsInputContactConfigInputContactIndex } - ::= { emsInputContactConfigTable 1 } - -EMSInputContactConfigEntry ::= - SEQUENCE { - emsInputContactConfigInputContactIndex INTEGER, - emsInputContactConfigInputContactName DisplayString, - emsInputContactConfigInputContactNormalState INTEGER - } - -emsInputContactConfigInputContactIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the input contact entry." - ::= { emsInputContactConfigEntry 1 } - -emsInputContactConfigInputContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the input contact." - ::= { emsInputContactConfigEntry 2 } - -emsInputContactConfigInputContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyClosedEMS (1), - normallyOpenEMS (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the input contact. If - the normal state is closed, the normallyClosedEMS (1) value will be returned. - If the normal state is closed, the normallyOpenEMS (2) value will be - returned. - - Setting this variable will change the normal state of the input contact" - ::= { emsInputContactConfigEntry 3 } - --- EMS OUTPUT RELAY CONFIG STATUS TABLE - -emsOutputRelayConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSOutputRelayConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual output relays. The number of - entries is contained in the emsStatusOutputRelayCount OID." - ::= { emsOutputRelayConfig 1 } - -emsOutputRelayConfigEntry OBJECT-TYPE - SYNTAX EMSOutputRelayConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relays to configure." - INDEX { emsOutputRelayConfigOutputRelayIndex } - ::= { emsOutputRelayConfigTable 1 } - -EMSOutputRelayConfigEntry ::= - SEQUENCE { - emsOutputRelayConfigOutputRelayIndex INTEGER, - emsOutputRelayConfigOutputRelayName DisplayString, - emsOutputRelayConfigOutputRelayNormalState INTEGER - } - -emsOutputRelayConfigOutputRelayIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the output relay entry." - ::= { emsOutputRelayConfigEntry 1 } - -emsOutputRelayConfigOutputRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the output relay." - ::= { emsOutputRelayConfigEntry 2 } - -emsOutputRelayConfigOutputRelayNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyClosedEMS (1), - normallyOpenEMS (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the output relay. If - the normal state is closed, the normallyClosedEMS (1) value will be returned. - If the normal state is closed, the normallyOpenEMS (2) value will be - returned. - - Setting this variable will change the normal state of the output relay" - ::= { emsOutputRelayConfigEntry 3 } - --- EMS OUTLET CONFIG TABLE - -emsOutletConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual outlets. The number of - entries is contained in the emsStatusOutletCount OID." - ::= { emsOutletConfig 1 } - -emsOutletConfigEntry OBJECT-TYPE - SYNTAX EMSOutletConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to configure." - INDEX { emsOutletConfigOutletIndex } - ::= { emsOutletConfigTable 1 } - -EMSOutletConfigEntry ::= - SEQUENCE { - emsOutletConfigOutletIndex INTEGER, - emsOutletConfigOutletName DisplayString, - emsOutletConfigOutletNormalState INTEGER - } - -emsOutletConfigOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { emsOutletConfigEntry 1 } - -emsOutletConfigOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the outlet." - ::= { emsOutletConfigEntry 2 } - -emsOutletConfigOutletNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyOnEMS (1), - normallyOffEMS (2) - } - - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the outlet. If - the normal state is on, the normallyOnEMS (1) value will be returned. - If the normal state is off, the normallyOffEMS (2) value will be - returned. - - Setting this variable will change the normal state of the outlet" - ::= { emsOutletConfigEntry 3 } - --- EMS SENSOR CONFIG TABLE - -emsSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of individual sensors. The number of - entries is contained in the emsStatusSensorCount OID." - ::= { emsSensorConfig 1 } - -emsSensorConfigEntry OBJECT-TYPE - SYNTAX EMSSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { emsSensorConfigSensorIndex } - ::= { emsSensorConfigTable 1 } - -EMSSensorConfigEntry ::= - SEQUENCE { - emsSensorConfigSensorIndex INTEGER, - emsSensorConfigSensorSystemName DisplayString, - emsSensorConfigSensorUserName DisplayString, - emsSensorConfigSensorNormalState INTEGER, - emsSensorConfigSensorAlarmDelay INTEGER - } - -emsSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsSensorConfigEntry 1 } - -emsSensorConfigSensorSystemName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system name of the sensor. This describes the hardware system - intent of this sensor." - ::= { emsSensorConfigEntry 2 } - -emsSensorConfigSensorUserName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the sensor as given by the system user." - ::= { emsSensorConfigEntry 3 } - -emsSensorConfigSensorNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyClosedEMS (1), - normallyOpenEMS (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the sensor. If - the normal state is closed, the normallyClosedEMS (1) value will be returned. - If the normal state is closed, the normallyOpenEMS (2) value will be - returned. - - Setting this variable will change the normal state of the sensor. Note: - Only the AUX sensor in the EMS has a configurable Normal State" - ::= { emsSensorConfigEntry 4 } - -emsSensorConfigSensorAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The delay (in seconds) after a sensor detects an alarm condition before the - condition is reported." - ::= { emsSensorConfigEntry 5 } - --- EMS STATUS ---- EMS MASTER status - -emsStatusEMSName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - device. " - ::= { emsStatus 1 } - -emsStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - noComm(1), - comm(2), - commLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status between the agent - and the device. - - noComm(1), Communication has never been established. - comm(2), Communication has been established. - commLost(3), Communication was established, but was lost." - ::= { emsStatus 2 } - -emsStatusProbeCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of T/H probes (both local and remote) that - is supported by this device." - ::= { emsStatus 3 } - -emsStatusInputContactCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Input Contacts that - is supported by this device." - ::= { emsStatus 4 } - -emsStatusOutputRelayCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Output Relays that - is supported by this device." - ::= { emsStatus 5 } - -emsStatusOutletCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of AC Outlets that - is supported by this device." - ::= { emsStatus 6 } - -emsStatusSensorCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Sensors that - is supported by this device." - ::= { emsStatus 7 } - -emsStatusAlinkAruDeviceCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of remote Aru's supported by this device." - ::= { emsStatus 8 } - -emsStatusAlinkProbeDeviceCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of remote T/H probes supported by this device." - ::= { emsStatus 9 } - -emsStatusAlarmDeviceCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of alarm devices supported by this device." - ::= { emsStatus 10 } - -emsStatusSysTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - in the system, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { emsStatus 11 } - -emsStatusCheckLogLight OBJECT-TYPE - SYNTAX INTEGER { - lightOff (1), - lightOn (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the check-log light on the device. - For the EMU2, this will always indicate lightOff(1). - - lightOff (1) indicates the light is off (no new log entries). - lightOn (2) indicates the light is on (new log entries present)." - - ::= { emsStatus 12 } - -emsStatusHardwareStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the EMS hardware. This integer should be interpreted - as a bit map, with each bit representing the presence or absence of - a specific hardware error condition. - - 0 indicates there are no error conditions detected in the EMS hardware. - 1 indicates a Current Limit error condition related to the Alink port. - 2 indicates incorrect hardware is plugged into an EMS port. - 3 indicates that both of these error conditions are present." - - ::= { emsStatus 13 } - --- EMS PROBE STATUS TABLE - -emsProbeStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSProbeStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual probes. The number of - entries is contained in the emsStatusProbeCount OID." - ::= { emsProbeStatus 1 } - -emsProbeStatusEntry OBJECT-TYPE - SYNTAX EMSProbeStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The probes to access." - INDEX { emsProbeStatusProbeIndex } - ::= { emsProbeStatusTable 1 } - -EMSProbeStatusEntry ::= - SEQUENCE { - emsProbeStatusProbeIndex INTEGER, - emsProbeStatusProbeName DisplayString, - emsProbeStatusProbeTemperature INTEGER, - emsProbeStatusProbeHighTempThresh INTEGER, - emsProbeStatusProbeLowTempThresh INTEGER, - emsProbeStatusProbeHumidity INTEGER, - emsProbeStatusProbeHighHumidityThresh INTEGER, - emsProbeStatusProbeLowHumidityThresh INTEGER, - emsProbeStatusProbeSerialNumber DisplayString, - emsProbeStatusProbeCommStatus INTEGER, - emsProbeStatusProbeAlarmStatus INTEGER, - emsProbeStatusProbeMaxTempThresh INTEGER, - emsProbeStatusProbeMinTempThresh INTEGER, - emsProbeStatusProbeMaxHumidityThresh INTEGER, - emsProbeStatusProbeMinHumidityThresh INTEGER - } - -emsProbeStatusProbeIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the probe entry." - ::= { emsProbeStatusEntry 1 } - -emsProbeStatusProbeName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the probe." - ::= { emsProbeStatusEntry 2 } - -emsProbeStatusProbeTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe temperature reading. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeStatusEntry 3 } - -emsProbeStatusProbeHighTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe high temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeStatusEntry 4 } - -emsProbeStatusProbeLowTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe low temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeStatusEntry 5 } - -emsProbeStatusProbeHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe humidity reading. - - Values are represented in whole number percentage." - ::= { emsProbeStatusEntry 6 } - -emsProbeStatusProbeHighHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe high humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeStatusEntry 7 } - -emsProbeStatusProbeLowHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe low humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeStatusEntry 8 } - -emsProbeStatusProbeSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A label indicating the type (Local[L] or Remote[R]) and Number - of the probe. For example, the first local probe would be L1 and - the third remote probe would be R3." - ::= { emsProbeStatusEntry 9 } - -emsProbeStatusProbeCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commsNeverDiscovered(1), - commsEstablished(2), - commsLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - " The state of communications to the probe. - commNeverDiscovered(1) indicates there has never been communications with this device. - commsEstablished(2) indicates communication is normal and active with this device. - commsLost(3) indicates communication had been established, but is no longer." - ::= { emsProbeStatusEntry 10 } - -emsProbeStatusProbeAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the probe. This integer should be interpreted - as a bit map, with each bit representing the presence or absence of - the specific alarm conditions listed below. The bit will be '1' if - the condition is present, and '0' if the condition is not present. - - Bit Hex. Value Description - 1 0x0001 Maximum temperature exceeded. - 2 0x0002 High temperature exceeded. - 3 0x0004 Low temperature exceeded. - 4 0x0008 Minimum temperature exceeded. - 5 0x0010 Short-term increasing temperature rate exceeded. - 6 0x0020 Short-term decreasing temperature rate exceeded. - 7 0x0040 Long-term increasing temperature rate exceeded. - 8 0x0080 Long-term decreasing temperature rate exceeded. - 9 0x0100 Maximum humidity exceeded. - 10 0x0200 High humidity exceeded. - 11 0x0400 Low humidity exceeded. - 12 0x0800 Minimum humidity exceeded." - ::= { emsProbeStatusEntry 11 } - -emsProbeStatusProbeMaxTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe maximum temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeStatusEntry 12 } - -emsProbeStatusProbeMinTempThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe minimum temperature threshold. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the emsStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { emsProbeStatusEntry 13 } - -emsProbeStatusProbeMaxHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe maximum humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeStatusEntry 14 } - -emsProbeStatusProbeMinHumidityThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Probe minimum humidity threshold. - - Values are represented in whole number percentage." - ::= { emsProbeStatusEntry 15 } - - --- EMS INPUT CONTACT STATUS TABLE - -emsInputContactStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSInputContactStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual input contacts. The number of - entries is contained in the emsStatusInputContactCount OID." - ::= { emsInputContactStatus 1 } - -emsInputContactStatusEntry OBJECT-TYPE - SYNTAX EMSInputContactStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contacts to access." - INDEX { emsInputContactStatusInputContactIndex } - ::= { emsInputContactStatusTable 1 } - -EMSInputContactStatusEntry ::= - SEQUENCE { - emsInputContactStatusInputContactIndex INTEGER, - emsInputContactStatusInputContactName DisplayString, - emsInputContactStatusInputContactState INTEGER, - emsInputContactStatusInputContactNormalState INTEGER - } - -emsInputContactStatusInputContactIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the input contact entry." - ::= { emsInputContactStatusEntry 1 } - -emsInputContactStatusInputContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the input contact." - ::= { emsInputContactStatusEntry 2 } - -emsInputContactStatusInputContactState OBJECT-TYPE - SYNTAX INTEGER { - contactClosedEMS (1), - contactOpenEMS (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the state of the input contact. If - the input contact is closed, the contactClosedEMS (1) value will be returned. - If the input contact state is open, the contactOpenEMS (2) value will be - returned. " - - ::= { emsInputContactStatusEntry 3 } - -emsInputContactStatusInputContactNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyClosedEMS (1), - normallyOpenEMS (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the input contact. If - the normal state is closed, the normallyClosedEMS (1) value will be returned. - If the normal state is open, the normallyOpenEMS (2) value will be - returned. " - - ::= { emsInputContactStatusEntry 4 } - - --- EMS OUTPUT RELAY STATUS TABLE - -emsOutputRelayStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSOutputRelayStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual output relays. The number of - entries is contained in the emsStatusOutputRelayCount OID." - ::= { emsOutputRelayStatus 1 } - -emsOutputRelayStatusEntry OBJECT-TYPE - SYNTAX EMSOutputRelayStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relays to access." - INDEX { emsOutputRelayStatusOutputRelayIndex } - ::= { emsOutputRelayStatusTable 1 } - -EMSOutputRelayStatusEntry ::= - SEQUENCE { - emsOutputRelayStatusOutputRelayIndex INTEGER, - emsOutputRelayStatusOutputRelayName DisplayString, - emsOutputRelayStatusOutputRelayState INTEGER, - emsOutputRelayStatusOutputRelayNormalState INTEGER - } - -emsOutputRelayStatusOutputRelayIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the output relay entry." - ::= { emsOutputRelayStatusEntry 1 } - -emsOutputRelayStatusOutputRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the output relay." - ::= { emsOutputRelayStatusEntry 2 } - -emsOutputRelayStatusOutputRelayState OBJECT-TYPE - SYNTAX INTEGER { - relayClosedEMS (1), - relayOpenEMS (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the state of the output relay. If - the output relay is closed, the relayClosedEMS (1) value will be returned. - If the output relay is open, the relayOpenEMS (2) value will be - returned. " - - ::= { emsOutputRelayStatusEntry 3 } - -emsOutputRelayStatusOutputRelayNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyClosedEMS (1), - normallyOpenEMS (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the output relay. If - the normal state is closed, the normallyClosedEMS (1) value will be returned. - If the normal state is open, the normallyOpenEMS (2) value will be - returned. " - - ::= { emsOutputRelayStatusEntry 4 } - --- EMS OUTLET STATUS TABLE - -emsOutletStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSOutletStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual outlets. The number of - entries is contained in the emsStatusOutletCount OID." - ::= { emsOutletStatus 1 } - -emsOutletStatusEntry OBJECT-TYPE - SYNTAX EMSOutletStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The outlets to access." - INDEX { emsOutletStatusOutletIndex } - ::= { emsOutletStatusTable 1 } - -EMSOutletStatusEntry ::= - SEQUENCE { - emsOutletStatusOutletIndex INTEGER, - emsOutletStatusOutletName DisplayString, - emsOutletStatusOutletState INTEGER, - emsOutletStatusOutletNormalState INTEGER - } - -emsOutletStatusOutletIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the outlet entry." - ::= { emsOutletStatusEntry 1 } - -emsOutletStatusOutletName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the outlet." - ::= { emsOutletStatusEntry 2 } - -emsOutletStatusOutletState OBJECT-TYPE - SYNTAX INTEGER { - outletOnEMS (1), - outletOffEMS (2) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the state of the outlet. If - the outlet is on, the outletOnEMS (1) value will be returned. - If the outlet is off, the outletOffEMS (2) value will be - returned. " - - ::= { emsOutletStatusEntry 3 } - -emsOutletStatusOutletNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyOnEMS (1), - normallyOffEMS (2) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the outlet. If - the normal state is on, the normallyOnEMS (1) value will be returned. - If the normal state is off, the normallyOffEMS (2) value will be - returned. " - - ::= { emsOutletStatusEntry 4 } - --- EMS ALARM DEVICE STATUS TABLE - -emsAlarmDeviceStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSAlarmDeviceStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual alarm devices. The number of - entries is contained in the emsStatusAlarmDeviceCount OID." - ::= { emsAlarmDeviceStatus 1 } - -emsAlarmDeviceStatusEntry OBJECT-TYPE - SYNTAX EMSAlarmDeviceStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The alarm devices to access." - INDEX { emsAlarmDeviceStatusDeviceIndex } - ::= { emsAlarmDeviceStatusTable 1 } - -EMSAlarmDeviceStatusEntry ::= - SEQUENCE { - emsAlarmDeviceStatusDeviceIndex INTEGER, - emsAlarmDeviceStatusDeviceName DisplayString, - emsAlarmDeviceStatusDeviceState INTEGER - } - -emsAlarmDeviceStatusDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the alarm device entry." - ::= { emsAlarmDeviceStatusEntry 1 } - -emsAlarmDeviceStatusDeviceName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the alarm device. - This OID is provided for informational purposes only." - ::= { emsAlarmDeviceStatusEntry 2 } - -emsAlarmDeviceStatusDeviceState OBJECT-TYPE - SYNTAX INTEGER { - alarmDeviceOnEMS (1), - alarmDeviceOffEMS (2), - alarmDeviceNotInstalledEMS (3) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the device state. If - the device is active, the alarmDeviceOnEMS (1) value will be returned. - If the device is inactive, the alarmDeviceOffEMS (2) value will be - returned. If the device is not installed, the - alarmDeviceNotInstalledEMS (3) value will be returned." - - ::= { emsAlarmDeviceStatusEntry 3 } - - --- EMS SENSOR STATUS TABLE - -emsSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EMSSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for access of individual sensors. The number of - entries is contained in the emsStatusSensorCount OID." - ::= { emsSensorStatus 1 } - -emsSensorStatusEntry OBJECT-TYPE - SYNTAX EMSSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to access." - INDEX { emsSensorStatusSensorIndex } - ::= { emsSensorStatusTable 1 } - -EMSSensorStatusEntry ::= - SEQUENCE { - emsSensorStatusSensorIndex INTEGER, - emsSensorStatusSensorSystemName DisplayString, - emsSensorStatusSensorName DisplayString, - emsSensorStatusSensorState INTEGER, - emsSensorStatusSensorNormalState INTEGER, - emsSensorStatusSensorAlarmDelay INTEGER - } - -emsSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsSensorStatusEntry 1 } - -emsSensorStatusSensorSystemName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system name of the sensor. This describes the hardware system - intent of this sensor." - ::= { emsSensorStatusEntry 2 } - -emsSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the sensor as given by the system user." - ::= { emsSensorStatusEntry 3 } - -emsSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - sensorFaultedEMS (1), - sensorOKEMS (2), - sensorNotInstalledEMS (3) - } - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the sensor state. If the sensor is faulted, - the sensorFaultedEMS (1) value will be returned. - If the sensor is not faulted, the sensorOKEMS (2) value will be - returned. If the sensor is not installed, the sensorNotInstalledEMS (3) - value will be returned." - ::= { emsSensorStatusEntry 4 } - -emsSensorStatusSensorNormalState OBJECT-TYPE - SYNTAX INTEGER { - normallyClosedEMS (1), - normallyOpenEMS (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Getting this variable will return the normal state of the sensor. If - the normal state is closed, the normallyClosedEMS (1) value will be returned. - If the normal state is closed, the normallyOpenEMS (2) value will be - returned." - ::= { emsSensorStatusEntry 5 } - -emsSensorStatusSensorAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The delay (in seconds) after a sensor detects an alarm condition before the - condition is reported." - ::= { emsSensorStatusEntry 6 } - --- EMS INPUT STATE SENSOR CONFIG TABLE -emsSmokeSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsSmokeSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - - "Allows for the configuration of individual sensors." - ::= { emsInputStateSensorConfig 1 } - -emsSmokeSensorConfigEntry OBJECT-TYPE - SYNTAX EmsSmokeSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { emsSmokeSensorConfigSensorIndex } - ::= { emsSmokeSensorConfigTable 1 } - -EmsSmokeSensorConfigEntry ::= - SEQUENCE { - emsSmokeSensorConfigSensorIndex INTEGER, - emsSmokeSensorConfigSensorName DisplayString, - emsSmokeSensorConfigSensorLocation DisplayString, - emsSmokeSensorConfigSensorSeverity INTEGER - } - -emsSmokeSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsSmokeSensorConfigEntry 1 } - -emsSmokeSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the smoke sensor." - ::= { emsSmokeSensorConfigEntry 2 } - -emsSmokeSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the smoke sensor." - ::= { emsSmokeSensorConfigEntry 3 } - -emsSmokeSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the smoke sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsSmokeSensorConfigEntry 4 } - -emsVibrationSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsVibrationSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { emsInputStateSensorConfig 2 } - -emsVibrationSensorConfigEntry OBJECT-TYPE - SYNTAX EmsVibrationSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { emsVibrationSensorConfigSensorIndex } - ::= { emsVibrationSensorConfigTable 1 } - -EmsVibrationSensorConfigEntry ::= - SEQUENCE { - emsVibrationSensorConfigSensorIndex INTEGER, - emsVibrationSensorConfigSensorName DisplayString, - emsVibrationSensorConfigSensorLocation DisplayString, - emsVibrationSensorConfigSensorSeverity INTEGER - } - -emsVibrationSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsVibrationSensorConfigEntry 1 } - -emsVibrationSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the vibration sensor." - ::= { emsVibrationSensorConfigEntry 2 } - -emsVibrationSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the vibration sensor." - ::= { emsVibrationSensorConfigEntry 3 } - -emsVibrationSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the vibration sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsVibrationSensorConfigEntry 4 } - -emsFluidSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsFluidSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { emsInputStateSensorConfig 3 } - -emsFluidSensorConfigEntry OBJECT-TYPE - SYNTAX EmsFluidSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { emsFluidSensorConfigSensorIndex } - ::= { emsFluidSensorConfigTable 1 } - -EmsFluidSensorConfigEntry ::= - SEQUENCE { - emsFluidSensorConfigSensorIndex INTEGER, - emsFluidSensorConfigSensorName DisplayString, - emsFluidSensorConfigSensorLocation DisplayString, - emsFluidSensorConfigSensorSeverity INTEGER - } - -emsFluidSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsFluidSensorConfigEntry 1 } - -emsFluidSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the fluid sensor." - ::= { emsFluidSensorConfigEntry 2 } - -emsFluidSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the fluid sensor." - ::= { emsFluidSensorConfigEntry 3 } - - -emsFluidSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the fluid sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsFluidSensorConfigEntry 4 } - -emsDoorSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsDoorSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the configuration of individual sensors." - ::= { emsInputStateSensorConfig 4 } - -emsDoorSensorConfigEntry OBJECT-TYPE - SYNTAX EmsDoorSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to configure." - INDEX { emsDoorSensorConfigSensorIndex } - ::= { emsDoorSensorConfigTable 1 } - -EmsDoorSensorConfigEntry ::= - SEQUENCE { - emsDoorSensorConfigSensorIndex INTEGER, - emsDoorSensorConfigSensorName DisplayString, - emsDoorSensorConfigSensorLocation DisplayString, - emsDoorSensorConfigSensorSeverity INTEGER - } - -emsDoorSensorConfigSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsDoorSensorConfigEntry 1 } - -emsDoorSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined name of the door sensor." - ::= { emsDoorSensorConfigEntry 2 } - -emsDoorSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The user defined location of the door sensor." - ::= { emsDoorSensorConfigEntry 3 } - -emsDoorSensorConfigSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the door sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsDoorSensorConfigEntry 4 } - ---EMS INPUT STATE SENSOR STATUS TABLE - -emsSmokeSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the emsSmokeSensorStatusTable." - ::= { emsInputStateSensorStatus 1 } - -emsSmokeSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsSmokeSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { emsInputStateSensorStatus 2 } - -emsSmokeSensorStatusEntry OBJECT-TYPE - SYNTAX EmsSmokeSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to access." - INDEX { emsSmokeSensorStatusSensorIndex } - ::= { emsSmokeSensorStatusTable 1 } - -EmsSmokeSensorStatusEntry ::= - SEQUENCE { - emsSmokeSensorStatusSensorIndex INTEGER, - emsSmokeSensorStatusSensorName DisplayString, - emsSmokeSensorStatusSensorLocation DisplayString, - emsSmokeSensorStatusSensorState INTEGER, - emsSmokeSensorStatusSensorSeverity INTEGER, - emsSmokeSensorCommStatus INTEGER - - } - -emsSmokeSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsSmokeSensorStatusEntry 1 } - -emsSmokeSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the smoke sensor." - ::= { emsSmokeSensorStatusEntry 2 } - -emsSmokeSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the smoke sensor." - ::= { emsSmokeSensorStatusEntry 3 } - -emsSmokeSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - smokeDetected (1), - noSmoke (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the smoke sensor. - smokeDetected (1) indicates there is smoke. - noSmoke (2) indicates there is no smoke. - unknown (3) indicates the state is unknown." - ::= { emsSmokeSensorStatusEntry 4 } - -emsSmokeSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the smoke sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsSmokeSensorStatusEntry 5 } - -emsSmokeSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the smoke sensor." - ::= { emsSmokeSensorStatusEntry 6 } - -emsVibrationSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the emsVibrationSensorStatusTable." - ::= { emsInputStateSensorStatus 3} - -emsVibrationSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsVibrationSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { emsInputStateSensorStatus 4 } - -emsVibrationSensorStatusEntry OBJECT-TYPE - SYNTAX EmsVibrationSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to access." - INDEX { emsVibrationSensorStatusSensorIndex } - ::= { emsVibrationSensorStatusTable 1 } - -EmsVibrationSensorStatusEntry ::= - SEQUENCE { - emsVibrationSensorStatusSensorIndex INTEGER, - emsVibrationSensorStatusSensorName DisplayString, - emsVibrationSensorStatusSensorLocation DisplayString, - emsVibrationSensorStatusSensorState INTEGER, - emsVibrationSensorStatusSensorSeverity INTEGER, - emsVibrationSensorCommStatus INTEGER - } - -emsVibrationSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsVibrationSensorStatusEntry 1 } - -emsVibrationSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the vibration sensor." - ::= { emsVibrationSensorStatusEntry 2 } - -emsVibrationSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the vibration sensor." - ::= { emsVibrationSensorStatusEntry 3 } - -emsVibrationSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - vibrationDetected (1), - noVibration (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the vibration sensor. - vibrationDetected (1) indicates there is vibration. - noVibration (2) indicates there is no vibration. - unknown (3) indicates the state is unknown." - ::= { emsVibrationSensorStatusEntry 4 } - -emsVibrationSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the vibration sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsVibrationSensorStatusEntry 5 } - -emsVibrationSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the vibration sensor." - ::= { emsVibrationSensorStatusEntry 6 } - -emsFluidSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the emsFluidSensorStatusTable." - ::= { emsInputStateSensorStatus 5} - -emsFluidSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsFluidSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { emsInputStateSensorStatus 6 } - -emsFluidSensorStatusEntry OBJECT-TYPE - SYNTAX EmsFluidSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensors to access." - INDEX { emsFluidSensorStatusSensorIndex } - ::= { emsFluidSensorStatusTable 1 } - -EmsFluidSensorStatusEntry ::= - SEQUENCE { - emsFluidSensorStatusSensorIndex INTEGER, - emsFluidSensorStatusSensorName DisplayString, - emsFluidSensorStatusSensorLocation DisplayString, - emsFluidSensorStatusSensorState INTEGER, - emsFluidSensorStatusSensorSeverity INTEGER, - emsFluidSensorCommStatus INTEGER - } - -emsFluidSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsFluidSensorStatusEntry 1 } - -emsFluidSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the fluid sensor." - ::= { emsFluidSensorStatusEntry 2 } - -emsFluidSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the fluid sensor." - ::= { emsFluidSensorStatusEntry 3 } - -emsFluidSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - fluidDetected (1), - noFluid (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the fluid sensor. - fluidDetected (1) indicates there is fluid leak. - noFluid (2) indicates there is no fluid leak. - unknown (3) indicates the state is unknown." - ::= { emsFluidSensorStatusEntry 4 } - -emsFluidSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the fluid sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsFluidSensorStatusEntry 5 } - -emsFluidSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the fluid sensor." - ::= { emsFluidSensorStatusEntry 6 } - -emsDoorSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the emsDoorSensorStatusTable." - ::= { emsInputStateSensorStatus 7} - -emsDoorSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF EmsDoorSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for the access of individual sensors." - ::= { emsInputStateSensorStatus 8} - -emsDoorSensorStatusEntry OBJECT-TYPE - SYNTAX EmsDoorSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor to access." - INDEX { emsDoorSensorStatusSensorIndex } - ::= { emsDoorSensorStatusTable 1 } - -EmsDoorSensorStatusEntry ::= - SEQUENCE { - emsDoorSensorStatusSensorIndex INTEGER, - emsDoorSensorStatusSensorName DisplayString, - emsDoorSensorStatusSensorLocation DisplayString, - emsDoorSensorStatusSensorState INTEGER, - emsDoorSensorStatusSensorSeverity INTEGER, - emsDoorSensorCommStatus INTEGER - } - -emsDoorSensorStatusSensorIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the sensor entry." - ::= { emsDoorSensorStatusEntry 1 } - -emsDoorSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined name of the door sensor." - ::= { emsDoorSensorStatusEntry 2 } - -emsDoorSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The user defined location of the door sensor." - ::= { emsDoorSensorStatusEntry 3 } - -emsDoorSensorStatusSensorState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2), - unknown (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the door sensor. - open (1) indicates door open. - closed (2) indicates door closed. - unknown (3) indicates the state is unknown." - ::= { emsDoorSensorStatusEntry 4 } - -emsDoorSensorStatusSensorSeverity OBJECT-TYPE - SYNTAX INTEGER { - critical(1), - warning(2), - informational(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The severity of the alarm that will be triggered when - the door sensor is activated. The alarms can be - critical(1), warning(2) or informational(3)." - ::= { emsDoorSensorStatusEntry 5 } - -emsDoorSensorCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commOK(1), - commLost(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communication status of the door sensor." - ::= { emsDoorSensorStatusEntry 6 } - - - --- airFM AIR CONDITIONER IDENT - -airFMIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the device." - ::= { airFMIdent 1 } - -airFMIdentTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMIdentTable. " - ::= { airFMIdent 2 } - -airFMIdentTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting identification information - from each module in the system. " - ::= { airFMIdent 3 } - -airFMIdentEntry OBJECT-TYPE - SYNTAX AirFMIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMIdentModuleIndex } - ::= { airFMIdentTable 1 } - -AirFMIdentEntry ::= - SEQUENCE { - airFMIdentModuleIndex INTEGER, - airFMIdentModuleModelNumber DisplayString, - airFMIdentModuleDateOfMfg DisplayString, - airFMIdentModuleSerialNumber DisplayString, - airFMIdentModuleFirmwareRev DisplayString, - airFMIdentModuleHardwareRev DisplayString - } - -airFMIdentModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module information." - ::= { airFMIdentEntry 1 } - -airFMIdentModuleModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - model number. " - ::= { airFMIdentEntry 2 } - -airFMIdentModuleDateOfMfg OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - manufacture date. " - ::= { airFMIdentEntry 3 } - -airFMIdentModuleSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit serial number. " - ::= { airFMIdentEntry 4 } - -airFMIdentModuleFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - firmware revision. " - ::= { airFMIdentEntry 5 } - -airFMIdentModuleHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - hardware revision. " - ::= { airFMIdentEntry 6 } - -airFMIdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - location of the device. " - ::= { airFMIdent 4 } - -airFMIdentContact OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - person to contact regarding the device. " - ::= { airFMIdent 5 } - - --- airFM AIR CONDITIONER STATUS - -airFMStatusSystemOn OBJECT-TYPE - SYNTAX INTEGER { - statusOn (1), - statusOff (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The operating state of the system. - This OID has been deprecated in favor of - airFMGroupSysStatus." - ::= { airFMStatus 1 } - -airFMStatusSystemAverageRetTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system average return air - temperature in tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMSysAvgReturnTempC." - ::= { airFMStatus 2 } - -airFMStatusSystemAverageRetTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system average return air - temperature in tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMSysAvgReturnTempF." - ::= { airFMStatus 3 } - -airFMStatusSystemAverageRetHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system average return air - humidity in tenths of percent RH. - This OID has been deprecated in favor of - airFMSysAvgReturnHum." - ::= { airFMStatus 4 } - -airFMStatusSystemActionTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system action air - temperature in tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMSysCtrlTempC." - ::= { airFMStatus 5 } - -airFMStatusSystemActionTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system action air - temperature in tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMSysCtrlTempF." - ::= { airFMStatus 6 } - -airFMStatusSystemActionHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system action air humidity in tenths of percent RH. - This OID has been deprecated in favor of - airFMSysCtrlHum." - ::= { airFMStatus 7 } - -airFMStatusSystemRemoteHighTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote high air - temperature in tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMSysMaxRemoteTempC." - ::= { airFMStatus 8 } - -airFMStatusSystemRemoteHighTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote high air - temperature in tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMSysMaxRemoteTempF." - ::= { airFMStatus 9 } - -airFMStatusSystemRemoteAvgTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote average air - temperature in tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMSysAvgRemoteTempC." - ::= { airFMStatus 10 } - -airFMStatusSystemRemoteAvgTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote average air - temperature in tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMSysAvgRemoteTempF." - ::= { airFMStatus 11 } - -airFMStatusSystemRemoteAvgHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote average air - humidity in tenths of percent RH. - This OID has been deprecated in favor of - airFMSysAvgRemoteHum." - ::= { airFMStatus 12 } - -airFMStatusSystemRemoteLowTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote low air - temperature in tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMSysMinRemoteTempC." - ::= { airFMStatus 13 } - -airFMStatusSystemRemoteLowTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system remote low air - temperature in tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMSysMinRemoteTempF." - ::= { airFMStatus 14 } - -airFMStatusSystemCoolingEnabled OBJECT-TYPE - SYNTAX INTEGER { - enabledYes (1), - enabledNo (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the system cooling - function enable. - This OID has been deprecated in favor of - airFMSysCoolState." - ::= { airFMStatus 15 } - -airFMStatusSystemReheatingEnabled OBJECT-TYPE - SYNTAX INTEGER { - enabledYes (1), - enabledNo (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the system reheating - function enable. - This OID has been deprecated in favor of - airFMSysReheatState." - ::= { airFMStatus 16 } - -airFMStatusSystemHumidifyEnabled OBJECT-TYPE - SYNTAX INTEGER { - enabledYes (1), - enabledNo (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the system humidify - function enable. - This OID has been deprecated in favor of - airFMSysHumState." - ::= { airFMStatus 17 } - -airFMStatusSystemDehumidifyEnabled OBJECT-TYPE - SYNTAX INTEGER { - enabledYes (1), - enabledNo (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the system dehumidify - function enable. - This OID has been deprecated in favor of - airFMSysDehumState." - ::= { airFMStatus 18 } - -airFMStatusModuleTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMStatusModuleTable." - ::= { airFMStatus 19 } - -airFMStatusModuleTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMStatusModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module - in the system." - ::= { airFMStatus 20 } - -airFMStatusModuleEntry OBJECT-TYPE - SYNTAX AirFMStatusModuleEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get status from." - INDEX { airFMStatusModuleIndex } - ::= { airFMStatusModuleTable 1 } - -AirFMStatusModuleEntry ::= - SEQUENCE { - airFMStatusModuleIndex INTEGER, - airFMStatusModuleOutputCapacity INTEGER, - airFMStatusModuleSupplyTempC INTEGER, - airFMStatusModuleSupplyTempF INTEGER, - airFMStatusModuleSupplyHum INTEGER, - airFMStatusModuleReturnTempC INTEGER, - airFMStatusModuleReturnTempF INTEGER, - airFMStatusModuleReturnHum INTEGER - } - -airFMStatusModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module information." - ::= { airFMStatusModuleEntry 1 } - -airFMStatusModuleOutputCapacity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module output capacity in kilowatts. - This OID has been deprecated in favor of - airFMModOutputCapacity." - ::= { airFMStatusModuleEntry 2 } - -airFMStatusModuleSupplyTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module supply air temperature in - tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMModSupplyTempC." - ::= { airFMStatusModuleEntry 3 } - -airFMStatusModuleSupplyTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module supply air temperature in - tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMModSupplyTempF." - ::= { airFMStatusModuleEntry 4 } - -airFMStatusModuleSupplyHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module supply air humidity in tenths of percent RH. - This OID has been deprecated in favor of - airFMModSupplyHum." - ::= { airFMStatusModuleEntry 5 } - -airFMStatusModuleReturnTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module return air temperature in - tenths of degrees Celsius. - This OID has been deprecated in favor of - airFMModReturnTempC." - ::= { airFMStatusModuleEntry 6 } - -airFMStatusModuleReturnTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module return air temperature in - tenths of degrees Fahrenheit. - This OID has been deprecated in favor of - airFMModReturnTempF." - ::= { airFMStatusModuleEntry 7 } - -airFMStatusModuleReturnHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The module return air humidity in tenths of percent RH. - This OID has been deprecated in favor of - airFMModReturnHum." - ::= { airFMStatusModuleEntry 8 } - --- airFM AIR CONDITIONER GROUP DATA - -airFMGroupSysStatus OBJECT-TYPE - SYNTAX INTEGER { - statusOnLine (1), - statusIdle (2), - statusLoadShare (3), - statusOffLine (4), - statusFailed (5), - statusDisabled (6), - statusUndefined (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of this system within the group." - ::= { airFMGroup 1 } - -airFMGroupSysRuntime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of hours the system has been running." - ::= { airFMGroup 2 } - -airFMGroupSysRole OBJECT-TYPE - SYNTAX INTEGER { - rolePrimary (1), - roleBackup (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The role of this system within the group." - ::= { airFMGroup 3 } - --- airFM Group System Roles -airFMGroupSysRolesTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMGroupSysRolesTable. " - ::= { airFMGroupSysRoles 1 } - -airFMGroupSysRolesTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMGroupSysRolesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each system - in the group. " - ::= { airFMGroupSysRoles 2 } - -airFMGroupSysRolesEntry OBJECT-TYPE - SYNTAX AirFMGroupSysRolesEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The system to get status from." - INDEX { airFMGroupSysIndex } - ::= { airFMGroupSysRolesTable 1 } - -AirFMGroupSysRolesEntry ::= - SEQUENCE { - airFMGroupSysIndex INTEGER, - airFMGroupSysRoleStatus INTEGER, - airFMGroupSysPresentRole INTEGER, - airFMGroupSysManualRoleSetting INTEGER, - airFMGroupSysRunHours INTEGER, - airFMGroupSysComm INTEGER, - airFMGroupSysIPAddress IpAddress - } - -airFMGroupSysIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the system information." - ::= { airFMGroupSysRolesEntry 1 } - -airFMGroupSysRoleStatus OBJECT-TYPE - SYNTAX INTEGER { - reserved1 (1), - reserved2 (2), - onLine (3), - idle (4), - loadShare (5), - failed (6), - offLine (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The present mode of the System." - ::= { airFMGroupSysRolesEntry 2 } - -airFMGroupSysPresentRole OBJECT-TYPE - SYNTAX INTEGER { - primary (1), - backup (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The present role of the System in a Group." - ::= { airFMGroupSysRolesEntry 3 } - -airFMGroupSysManualRoleSetting OBJECT-TYPE - SYNTAX INTEGER { - primary (1), - backup (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The manual role setting of the System in a Group. - Only applies if Role Assignment Method is set - to static (Manually Assigned Roles)." - ::= { airFMGroupSysRolesEntry 4 } - -airFMGroupSysRunHours OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of hours the System has been - contributing to environmental control." - ::= { airFMGroupSysRolesEntry 5 } - -airFMGroupSysComm OBJECT-TYPE - SYNTAX INTEGER { - commLost (1), - commEstablished (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether a system is communicating with the - other Systems in the Group." - ::= { airFMGroupSysRolesEntry 6 } - -airFMGroupSysIPAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP Address of the System." - ::= { airFMGroupSysRolesEntry 7 } - -airFMGroupSysRoleAssignment OBJECT-TYPE - SYNTAX INTEGER { - staticManual (1), - dynamicAutomatic (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The method used to assign roles (i.e. Primary, Backup) - to the Systems in a Group. - - staticManual: Manually assign Primary or Backup to - regulate run hours across the Group. - dynamicAutomatic: User indicates the number of Systems - that will be assigned a primary role in this Group." - ::= { airFMGroupSysRoles 3 } - -airFMGroupAutoRoleNumPrimary OBJECT-TYPE - SYNTAX INTEGER { - one (1), - two (2), - three (3), - four (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of Systems assigned the 'primary' role in - this Group. Only applies if Role Assignment Method - is set to dynamic (Automatic Run Hour Balancing)." - ::= { airFMGroupSysRoles 4 } - --- airFM Group Config -airFMGroupCfgName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the group name." - ::= { airFMGroupCfg 1 } - -airFMGroupCfgNumSystems OBJECT-TYPE - SYNTAX INTEGER { - one (1), - two (2), - three (3), - four (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of Systems in this Group." - ::= { airFMGroupCfg 2 } - -airFMGroupCfgIdleBlower OBJECT-TYPE - SYNTAX INTEGER { - off (1), - minimumSpeed (2), - normalSpeed (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Blower behavior for backup Systems and Systems that - have entered a failure mode." - ::= { airFMGroupCfg 3 } - -airFMGroupCfgShutdownSmoke OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "If enabled, all Systems in the Group will shut down - if smoke is detected." - ::= { airFMGroupCfg 4 } - -airFMGroupCfgShutdownFire OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "If enabled, all Systems in the Group will shut down - if fire is detected." - ::= { airFMGroupCfg 5 } - -airFMGroupCfgFailoverCommLoss OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Failover on Comm Loss enables an available backup - System to run in place of a System that has lost - communication with the Group." - ::= { airFMGroupCfg 6 } - -airFMGroupCfgDmdFightStatus OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Demand Fighting and Setpoint Sharing are - automatically enabled when a System is responding to - a Load Sharing Request." - ::= { airFMGroupCfg 7 } - -airFMGroupCfgDmdFightSetting OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Demand Fighting prevents a System from engaging - reheat in a Group where any System is cooling." - ::= { airFMGroupCfg 8 } - -airFMGroupCfgSetpointShareStatus OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Demand Fighting and Setpoint Sharing are - automatically enabled when a System is responding to - Load Sharing Request." - ::= { airFMGroupCfg 9 } - -airFMGroupCfgSetpointShareSetting OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "All Systems in the Group use the same setpoints." - ::= { airFMGroupCfg 10 } - -airFMGroupCfgResetFieldServiceDefaults OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset all Group - parameters, which can only be edited by a field - service engineer, to their factory default values. - - Getting this OID will do nothing and return the - noOperation(1) value." - ::= { airFMGroupCfg 11 } - --- airFM Group Load Sharing -airFMGroupLoadShareCoolRequests OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Systems that are cooling may request assistance from - other Systems in the Group." - ::= { airFMGroupLoadShare 1 } - -airFMGroupLoadShareCoolThreshC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Temperature threshold at which a System will generate - a load sharing request for cooling. Measured in - tenths of degrees Celsius." - ::= { airFMGroupLoadShare 2 } - -airFMGroupLoadShareCoolThreshF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Temperature threshold at which a System will generate - a load sharing request for cooling. Measured in - tenths of degrees Fahrenheit." - ::= { airFMGroupLoadShare 3 } - -airFMGroupLoadShareReheatRequests OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Systems that are reheating may request assistance - from other Systems in the Group." - ::= { airFMGroupLoadShare 4 } - -airFMGroupLoadShareReheatThreshC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Temperature threshold at which a System will generate - a load sharing request for reheating. Measured in - tenths of degrees Celsius." - ::= { airFMGroupLoadShare 5 } - -airFMGroupLoadShareReheatThreshF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Temperature threshold at which a System will generate - a load sharing request for reheating. Measured in - tenths of degrees Fahrenheit." - ::= { airFMGroupLoadShare 6 } - -airFMGroupLoadShareHumRequests OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Systems that are humidifying may request humidification - assistance from other Systems in the Group." - ::= { airFMGroupLoadShare 7 } - -airFMGroupLoadShareHumThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidity threshold at which a System will generate a - load sharing request for humidification. Measured in - tenths of percent relative humidity." - ::= { airFMGroupLoadShare 8 } - -airFMGroupLoadShareDehumRequests OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Systems that are dehumidifying may request assistance - from other Systems in the Group." - ::= { airFMGroupLoadShare 9 } - -airFMGroupLoadShareDehumThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidity threshold at which a System will generate a - load sharing request for dehumidification. Measured in - tenths of percent relative humidity." - ::= { airFMGroupLoadShare 10 } - --- airFM Group System Failover Events -airFMGroupFailoverSysAnyMinorAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if any minor system alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 1 } - -airFMGroupFailoverSysAnyMajorAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if any major system alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 2 } - -airFMGroupFailoverSysHighEnvTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the high environmental temperature - alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 3 } - -airFMGroupFailoverSysLowEnvTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the low environmental temperature - alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 4 } - -airFMGroupFailoverSysHighEnvHum OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the high environmental humidity - alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 5 } - -airFMGroupFailoverSysLowEnvHum OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the low environmental humidity - alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 6 } - -airFMGroupFailoverSysFireAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the fire alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 7 } - -airFMGroupFailoverSysSmokeAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the smoke alarm is active. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 8 } - -airFMGroupFailoverSysCommLost OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the system has lost comm. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 9 } - -airFMGroupFailoverSysSupplySensorFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the supply sensor has failed. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 10 } - -airFMGroupFailoverSysReturnSensorFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the return sensor has failed. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 11 } - -airFMGroupFailoverSysPrimarySensorFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the primary sensor has failed. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 12 } - -airFMGroupFailoverSysSecondarySensorFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the secondary sensor has failed. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 13 } - -airFMGroupFailoverSysNoSensorsAvailable OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if no sensors are available. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverSys 14 } - --- airFM Group Module Failover Events -airFMGroupFailoverModMaintRequired OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if maintenance is required on a - module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 1 } - -airFMGroupFailoverModCoolFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if cooling has failed on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 2 } - - -airFMGroupFailoverModHumFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the humidifier has failed on a - module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 3 } - -airFMGroupFailoverModBlwrCntrl1Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if blower controller 1 has failed on - a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 4 } - -airFMGroupFailoverModBlwrCntrl2Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if blower controller 2 has failed on - a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 5 } - -airFMGroupFailoverModHighFilterDP OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if a high filter differential - pressure is present on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 6 } - -airFMGroupFailoverModHighSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if a high supply temperature is - active on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 7 } - -airFMGroupFailoverModLowSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if a low supply temperature is active - on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 8 } - -airFMGroupFailoverModLossOrLowAirFlow OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if there is a loss of air flow or low - air flow on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 9 } - -airFMGroupFailoverModHumReplaceCylinder OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if a humidifier needs its cylinder - replaced on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 10 } - -airFMGroupFailoverModAirBlockInterlockOpen OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the air block interlock is open - on a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 11 } - -airFMGroupFailoverModWaterDetected OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if water is detected by a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 12 } - -airFMGroupFailoverModCondensatePumpFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disable (2), - enable (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enabling this OID will cause the system to enter - a failure state if the condensate pump has failed in - a module. - Once in the failure state, environmental control - ceases for the system, and the blowers enter the - Idle Blower Operation mode. - A value of notApplicable indicates that this alarm - does not apply to this device due to its configuration." - ::= { airFMGroupFailoverMod 13 } - --- airFM System Status - -airFMSysNumber OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - one (2), - two (3), - three (4), - four (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the system within the group. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 1 } - -airFMSysPresentStatus OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - reserved1 (2), - reserved2 (3), - onLine (4), - idle (5), - loadShare (6), - failed (7), - offLine (8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The present mode of the System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 2 } - -airFMSysPresentRole OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - primary (2), - backup (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The present role of the System in the Group. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 3 } - -airFMSysRunHours OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of hours the System has been - contributing to environmental control. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 4 } - -airFMSysCoilFluidTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the coolant at the fluid coil - inlet. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 5 } - -airFMSysCoilFluidTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the coolant at the fluid coil - inlet. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 6 } - -airFMSysHotWaterTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hot water temperature. Measured in degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 7 } - -airFMSysHotWaterTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hot water temperature. Measured in degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 8 } - -airFMSysAvgReturnTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average return temperature calculated from all - present modules. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 9 } - -airFMSysAvgReturnTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average return temperature calculated from all - present modules. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 10 } - -airFMSysAvgReturnHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average return humidity calculated from all - present modules. Measured in tenths of percent RH. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 11 } - -airFMSysAvgRemoteTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average temperature calculated from all - operational remote sensors. Measured in tenths of - degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 12 } - -airFMSysAvgRemoteTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average temperature calculated from all - operational remote sensors. Measured in tenths of - degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 13 } - -airFMSysAvgRemoteHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average return humidity calculated from all - present modules. Measured in tenths of percent RH. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 14 } - -airFMSysMaxRemoteTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum temperature reading from all operational - remote sensors. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 15 } - -airFMSysMaxRemoteTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum temperature reading from all operational - remote sensors. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 16 } - -airFMSysMinRemoteTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum temperature reading from all operational - remote sensors. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 17 } - -airFMSysMinRemoteTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum temperature reading from all operational - remote sensors. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 18 } - -airFMSysTempCtrlMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - avgReturn (2), - avgRemote (3), - maxRemote (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The method of environment temperature control - selected to regulate the temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 19 } - -airFMSysActualTempCtrlMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - avgReturn (2), - avgRemote (3), - maxRemote (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual method of environment temperature control - being used to regulate the temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 20 } - -airFMSysHumCtrlMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - avgReturnRH (2), - avgReturnDewPt (3), - avgRemoteRH (4), - avgRemoteDewPt (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The method of environment humidity control selected - to regulate the humidity. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 21 } - -airFMSysActualHumCtrlMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - avgReturnRH (2), - avgReturnDewPt (3), - avgRemoteRH (4), - avgRemoteDewPt (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual method of environment humidity control - being used to regulate the humidity. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 22 } - -airFMSysCtrlTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system environmental control air temperature from - the sensor denoted by airFMSysActualTempCtrl. - Measured in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 23 } - -airFMSysCtrlTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system environmental control air temperature from - the sensor denoted by airFMSysActualTempCtrl. - Measured in tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 24 } - -airFMSysCtrlHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system environmental control air humidity from - the sensor denoted by airFMSysActualHumCtrl. - Measured in percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysStatus 25 } - --- airFM System Demands and Actuals - -airFMSysDXCoolingDmd OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The direct expansion cooling output demanded by the - System. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 1 } - -airFMSysDXDehumDmd OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The direct expansion dehumidification output demanded - by the System. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 2 } - -airFMSysDXActualCoolDehum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The direct expansion cooling or dehumidification - output measured by the System. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 3 } - -airFMSysCoilFluidCoolDmd OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid coil cooling output demanded by the System. - Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 4 } - -airFMSysCoilFluidDehumDmd OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid coil dehumidification output demanded by - the System. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 5 } - -airFMSysCoilFluidActualCoolDehum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid coil cooling or dehumidification output - measured by the System. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 6 } - -airFMSysElectricReheatDmd OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The electric reheating output demanded by the System. - Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 7 } - -airFMSysActualElectricReheat OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The electric reheating output of the System. - Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 8 } - -airFMSysSteamHotGasReheatDmd OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - off (2), - on (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The steam, hot water, or hot gas reheating output - demanded by the System. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMSysDemands 9 } - -airFMSysActualSteamHotGasReheat OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - off (2), - on (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The steam, hot water, or hot gas reheating output of - the System. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMSysDemands 10 } - -airFMSysSteamElectrodeHumDmd OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The steam electrode humidification output demanded by - the System. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 11 } - -airFMSysActualSteamElectrodeHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The average steam electrode humidification output - measured for the Modules in the System. Measured in - percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 12 } - -airFMSysSteamHumDmd OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - off (2), - on (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The steam humidification output demanded by the System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 13 } - -airFMSysActualSteamHum OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - off (2), - on (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The steam humidification output for the System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDemands 14 } - --- airFM System Physical Setup - -airFMSysNumModules OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - one (2), - two (3), - three (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Modules in this System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 1 } - -airFMSysNumPCIOMs OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - one (2), - two (3), - three (4), - four (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of Programmable Customer Input/Output - Modules (PCIOMs) installed in the Main Module of this - System. Each PCIOM adds four input contacts and four - output relays to the System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 2 } - -airFMSysMainsVlt OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The mains voltage for the Modules in this System. - A value of N/A indicates that this OID does not apply - to this device due to its configuration." - ::= { airFMSysSetup 3 } - -airFMSysUPSVlt OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The UPS voltage for the Modules in this System. - A value of N/A indicates that this OID does not apply - to this device due to its configuration." - ::= { airFMSysSetup 4 } - -airFMSysCoilCfg OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - dx (2), - econ (3), - multicool (4), - chilledWater (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of cooling coils installed in the Modules in - this System: DX coil, DX and MultiCool (chilled water) - coils, DX and Economizer coils, or only a Chilled - Liquid coil. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 5 } - -airFMSysRefrigType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - r22 (2), - r407C (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of refrigerant used by each compressor in - the system. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 6 } - -airFMSysHeatRejection OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - airCooled (2), - waterCooled (3), - glycolCooled (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The method the Modules in this System use to transfer - heat away from the refrigerant. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 7 } - -airFMSysDischAirPtrn OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - upFlow (2), - downFlow (3), - horizFlow (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The discharge air pattern for the Modules in this - System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 8 } - -airFMSysAirFltr OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - standard (2), - highEfficiency (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of air filters (standard or high efficiency) - installed in the Modules of this System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 9 } - -airFMSysFlowSwitch OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - dxEcon (3), - multiCoolChillWater (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the optional flow switch. - None: No flow switch is installed in this System. - DX: Coolant input to the heat exchanger (condenser). - MultiCool: Chilled water input to the MultiCool coil. - - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 10 } - -airFMSysCoilFluidVlvAct OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - springAnalog (3), - floatingControl (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of valve actuator installed on the coil - fluid valve. The coil fluid valve controls the flow - of coolant into a fluid cooling coil, such as a - MultiCool or Economizer coil. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 11 } - -airFMSysCoilFluidVlvType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - twoWay (2), - threeWay (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of coil fluid valve installed for the - Modules in this System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 12 } - -airFMSysCndsrFluidVlvAct OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - floatingControl (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of valve actuator installed on the Condenser - fluid valve. The Condenser fluid valve controls the - flow of coolant into the heat exchanger (condenser) - to regulate head pressure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 13 } - -airFMSysCndsrFluidVlvType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - twoWay (2), - threeWay (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of Condenser fluid valve installed for the - Modules in this System. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 14 } - -airFMSysHotWaterVlvAct OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - springAnalog (3), - floatingControl (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of valve actuator installed on the hot water - valve. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysSetup 15 } - -airFMSysNumRemoteSensors OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of remote sensors detected by the system." - ::= { airFMSysSetup 16 } - --- airFM System Configuration - -airFMSysPrimaryControlSensor OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - return (2), - remote (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Selects whether return or remote sensors will control - the system. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 1 } - -airFMSysRemoteSensorData OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - average (2), - maximum (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Selects whether average temperature or max temperature - will be used when remote sensors are selected for - control of the system. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 2 } - -airFMSysFastStartup OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimizes the time for the cooling process to begin - after other delay constraints have been met. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 3 } - -airFMSysStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the delay that begins when power is applied and - ends when the System starts. This allows you to - create a staged restart among your Systems after a - power loss. Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 4 } - -airFMSysModeDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the delay between starting the blowers and - engaging the modes. It allows the sensors to read - room conditions accurately and allows the controller - to check for major alarms before engaging a mode. - Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 5 } - -airFMSysCommLossShutdownDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the delay between an Expansion Module losing - communication with the Main Module and the Expansion - Module shutting down. A value of -1 will keep - the Expansion Module running after a communication - loss. Measured in hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 6 } - -airFMSysResetSysFailure OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will allows the system - to return from any failure condition, if the - failure(s) have cleared. - Getting this OID will do nothing and return the noOperation(1) value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 7 } - -airFMSysResetUserDflts OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset all system - parameters that can be edited by the user to their - factory default values. - Getting this OID will do nothing and return the noOperation(1) value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 8 } - -airFMSysResetFldSrvcDflts OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset all system - parameters that can only be edited by the field - service engineer to their factory default values. - Getting this OID will do nothing and return the noOperation(1) value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 9 } - -airFMSysResetRunHours OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this OID to reset(2) will reset the system Run Hours. - Getting this OID will do nothing and return the noOperation(1) value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysConfig 10 } - --- airFM System Cooling - -airFMSysCompMinOnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the minimum time the compressor continues to - operate after it is started. The delay protects the - compressor from damage. Caution: Reducing this delay - shortens compressor life. Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 1 } - -airFMSysCompMinOffTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the minimum time the compressor will remain off - after it ceases operation. The delay protects the - compressor from damage. Caution: Reducing this delay - shortens compressor life. Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 2 } - -airFMSysCompRotPeriod OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set how often to perform compressor runtime - balancing. Measured in hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 3 } - -airFMSysEconIsolVlvOpenDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the delay between opening the Economizer Isolator - output relay and engaging the compressors. Measured - in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 4 } - -airFMSysEconIsolVlvCloseDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the delay between disengaging the compressor and - closing the Economizer Isolator output relay. - Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 5 } - -airFMSysCndsrFluidVlvCloseDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the time the condenser valve remains open after - the compressors disengage. Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 6 } - -airFMSysInterstageDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The DX interstage delay allows the first compressor's - cooling to take effect before engaging the second - compressor. This prevents the second compressor from - cycling on and off excessively. Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 7 } - -airFMSysCoolState OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the mode to enabled or disabled. Disabled modes - will not operate, and you cannot make changes to - their settings while they are disabled. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 8 } - -airFMSysCoolEssFunction OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - yes (2), - no (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the priority of the mode for alarms and events - with the nonessential stop behavior. Nonessential - modes are disabled during nonessential stop alarms - and events. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 9 } - -airFMSysCoolSetpointC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The target value for the selected control sensor air - for this mode. It must be at least 1.0 C above the - reheat setpoint if a heater is installed. Measured - in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 10 } - -airFMSysCoolSetpointF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The target value for the selected control sensor air - for this mode. It must be at least 1.0 C above the - reheat setpoint if a heater is installed. Measured - in tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 11 } - -airFMSysCoolDeadbandC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature range that controls output when the - selected control sensor temperature is above the - setpoint. At the top of this range, the cool mode - outputs at 100%. The deadband does not apply to PID- - controlled modes. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 12 } - -airFMSysCoolDeadbandF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature range that controls output when the - selected control sensor temperature is above the - setpoint. At the top of this range, the cool mode - outputs at 100%. The deadband does not apply to PID- - controlled modes. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 13 } - -airFMSysCoolEconIsolFunction OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the Economizer Automatic Coolant Isolation valve - to enabled or disabled. This valve anticipates a - cooling demand and opens the coil fluid valve. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 14 } - -airFMSysSuctPresCompensation OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the Suction Pressure Compensation to enabled or - disabled. This function attempts to keep the suction - pressure from exceeding 95 psi. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 15 } - -airFMSysCoilFluidActivThreshC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum coolant temperature required to use the - optional MultiCool or Economizer coil. Measured in - tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 16 } - -airFMSysCoilFluidActivThreshF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum coolant temperature required to use the - optional MultiCool or Economizer coil. Measured in - tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 17 } - -airFMSysCoilFluidActivDeadbandC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The controller will disengage the MultiCool or - Economizer coil when the coolant temperature reaches - the coil fluid temperature activation threshold plus - the deadband. Measured in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 18 } - -airFMSysCoilFluidActivDeadbandF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The controller will disengage the MultiCool or - Economizer coil when the coolant temperature reaches - the coil fluid temperature activation threshold plus - the deadband. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 19 } - -airFMSysCoolPIDMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - p (2), - pi (3), - pid (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the multipliers that the PID algorithm will use - to calculate the cool output. Proportional, - Proportional + Integral, or Proportional + Integral - + Derivative. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 20 } - -airFMSysCoolPIDGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the proportional multiplier to correct for - differences between the selected control sensor - actual temperature and the setpoint. Measured in - %/C. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 21 } - -airFMSysCoolPIDResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the integral multiplier to correct for the - proportional offset. Measured in %/(C * min). - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 22 } - -airFMSysCoolPIDDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the derivative multiplier to counteract overshoot - and droop during changes in the room load. Measured - in %/(C / min). - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysCooling 23 } - --- airFM System Humidify Function - -airFMSysHumState OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the mode to enabled or disabled. Disabled modes - will not operate, and you cannot make changes to their - settings while they are disabled. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 1 } - -airFMSysHumEssFunction OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - yes (2), - no (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the priority of the mode for alarms and events - with the nonessential stop behavior. Nonessential - modes are disabled during nonessential stop alarms - and events. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 2 } - -airFMSysHumSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The target value for the selected control sensor air - for this mode. It must be at least 1.0 % RH below - the dehumidification setpoint. Measured in tenths of - percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 3 } - -airFMSysHumDeadband OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity range that controls output when the - selected control sensor humidity is below the - setpoint. At the top of this range, the - humidification mode outputs at 100%. The deadband - does not apply to PID-controlled modes. Measured in - tenths of percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 4 } - -airFMSysHumCtrlSetting OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - relativeHum (2), - dewPoint (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the method to control the humidity in the room. - The two methods are Relative Humidity (RH) or Dew - Point of the selected control sensor air. The dew - point method helps correct for hot spots near the - selected control sensors. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 5 } - -airFMSysActualHumCtrl OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - relativeHum (2), - dewPoint (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidity control method the system is using. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 6 } - -airFMSysHumSensBand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The percentage of relative humidity below the - setpoint at which the humidifier will output at 100% - of capacity. Measured in percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysHumidify 7 } - --- airFM System Dehumidify Function - -airFMSysDehumState OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the mode to enabled or disabled. Disabled modes - will not operate, and you cannot make changes to their - settings while they are disabled. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 1 } - -airFMSysDehumEssFunction OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - yes (2), - no (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the priority of the mode for alarms and events - with the nonessential stop behavior. Nonessential - modes are disabled during nonessential stop alarms - and events. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 2 } - -airFMSysDehumSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The target value for the selected control sensor air - for this mode. It must be at least 1.0 % RH above - the humidification setpoint if a humidifier is - installed. Measured in tenths of percent relative - humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 3 } - -airFMSysDehumDeadband OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidity range above the setpoint at which the - dehumidification mode will output at 100%. The - deadband does not apply to PID controlled modes. - Measured in tenths of percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 4 } - -airFMSysDehumCapacity OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - half (2), - full (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the dehumidification mode to use either half of - the cooling coil or the full coil when dehumidifying - the room. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 5 } - -airFMSysDehumPIDMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - p (2), - pi (3), - pid (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the multipliers that the PID algorithm will use - to calculate the output. Proportional, - Proportional + Integral, or Proportional + Integral - + Derivative. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 6 } - -airFMSysDehumPIDGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the proportional multiplier to correct for - differences between the selected control sensor - actual humidity and the setpoint. Measured in %/%RH. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 7 } - -airFMSysDehumPIDResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the integral multiplier to correct for the - proportional offset. Measured in %/(%RH * min). - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 8 } - -airFMSysDehumPIDDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the derivative multiplier to counteract overshoot - and droop during changes in the room humidity. - Measure in %/(%RH / min). - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysDehumidify 9 } - --- airFM System Reheat Function - -airFMSysReheatState OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the mode to enabled or disabled. Disabled modes - will not operate, and you cannot make changes to their - settings while they are disabled. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 1 } - -airFMSysReheatEssFunction OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - yes (2), - no (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the priority of the mode for alarms and events - with the nonessential stop behavior. Nonessential - modes are disabled during nonessential stop alarms - and events. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 2 } - -airFMSysReheatSetpointC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The target value for the selected control sensor air - for this mode. It must be at least 1.0 C below the - cooling setpoint. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 3 } - -airFMSysReheatSetpointF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The target value for the selected control sensor air - for this mode. It must be at least 1.0 C below the - cooling setpoint. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 4 } - -airFMSysReheatDeadbandC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature range that controls output when the - selected control sensor temperature is below the - setpoint. At the bottom of this range, the reheat - mode outputs at 100%. The deadband does not apply to - PID-controlled modes. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 5 } - -airFMSysReheatDeadbandF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature range that controls output when the - selected control sensor temperature is below the - setpoint. At the bottom of this range, the reheat - mode outputs at 100%. The deadband does not apply to - PID-controlled modes. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 6 } - -airFMSysReheatPIDMethod OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - p (2), - pi (3), - pid (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the multipliers that the PID algorithm will use - to calculate the output. Proportional, - Proportional + Integral, or Proportional + Integral - + Derivative. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 7 } - -airFMSysReheatPIDGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the proportional multiplier to correct for - differences between the selected control sensor - actual temperature and the setpoint. Measured in - %/C. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 8 } - -airFMSysReheatPIDResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the integral multiplier to correct for the - proportional offset. Measured in %/(C * min). - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 9 } - -airFMSysReheatPIDDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the derivative multiplier to counteract overshoot - and droop during changes in the room load. Measured - in %/(C / min). - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysReheat 10 } - --- airFM System Thresholds - -airFMSysHighSplyTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold for air blown into the - room (supply). If the supply temperature exceeds the - threshold, an alarm will occur. Measured in tenths - of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 1 } - -airFMSysHighSplyTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold for air blown into the - room (supply). If the supply temperature exceeds the - threshold, an alarm will occur. Measured in tenths - of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 2 } - -airFMSysLowSplyTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold for air blown into the - room (supply). If the supply temperature drops below - the threshold, an alarm will occur. Measured in - tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 3 } - -airFMSysLowSplyTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold for air blown into the - room (supply). If the supply temperature drops below - the threshold, an alarm will occur. Measured in - tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 4 } - -airFMSysHighCoilFluidTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold for coolant at the - inlet to the fluid coil. If the fluid coil coolant - temperature exceeds the threshold, an alarm will - occur. Measured in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 5 } - -airFMSysHighCoilFluidTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold for coolant at the - inlet to the fluid coil. If the fluid coil coolant - temperature exceeds the threshold, an alarm will - occur. Measured in tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 6 } - -airFMSysLowCoilFluidTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold for coolant at the - inlet to the fluid coil. If the fluid coil coolant - temperature drops below the threshold, an alarm will - occur. Measured in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 7 } - -airFMSysLowCoilFluidTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold for coolant at the - inlet to the fluid coil. If the fluid coil coolant - temperature drops below the threshold, an alarm will - occur. Measured in tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 8 } - -airFMSysHighCtrlTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold for air monitored by - the System. If the temperature exceeds the threshold, - an alarm will occur. Measured in tenths of degrees - Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 9 } - -airFMSysHighCtrlTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature threshold for air monitored by - the System. If the temperature exceeds the threshold, - an alarm will occur. Measured in tenths of degrees - Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 10 } - -airFMSysLowCtrlTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold for air monitored by - the System. If the temperature drops below the - threshold, an alarm will occur. Measured in tenths - of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 11 } - -airFMSysLowCtrlTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature threshold for air monitored by - the System. If the temperature drops below the - threshold, an alarm will occur. Measured in tenths - of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 12 } - -airFMSysHighCtrlHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity threshold for air monitored by the - System. If the humidity exceeds the threshold, an - alarm will occur. Measured in tenths of percent - relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 13 } - -airFMSysLowCtrlHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity threshold for air monitored by the - System. If the humidity drops below the threshold, - an alarm will occur. Measured in tenths of percent - relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 14 } - -airFMSysTempAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time the blower must be on before a - temperature alarm can be issued. Measured in - seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 15 } - -airFMSysHumAlarmDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The amount of time the blower must be on before a - humidity alarm can be issued. Measured in seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysThresholds 16 } - --- airFM System Input Contacts - -airFMSysInputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMSysInputTable. " - ::= { airFMSysInputs 1 } - -airFMSysInputTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each input - contact." - ::= { airFMSysInputs 2 } - -airFMSysInputEntry OBJECT-TYPE - SYNTAX AirFMSysInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contact to obtain status from." - INDEX { airFMSysInputIndex } - ::= { airFMSysInputTable 1 } - -AirFMSysInputEntry ::= - SEQUENCE { - airFMSysInputIndex INTEGER, - airFMSysInputName DisplayString, - airFMSysInputStatus INTEGER, - airFMSysInputNormalState INTEGER, - airFMSysInputDelay INTEGER, - airFMSysInputAlarmAction INTEGER - } - -airFMSysInputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number designator of the Input Contact." - ::= { airFMSysInputEntry 1 } - -airFMSysInputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The configurable name for the Input Contact. Maximum - text input is 13 characters." - ::= { airFMSysInputEntry 2 } - -airFMSysInputStatus OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of this contact: Open or Closed. A - violation will occur when this relay is not in its - normal state." - ::= { airFMSysInputEntry 3 } - -airFMSysInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the normal state of this contact (the state when - no alarm/event exists)." - ::= { airFMSysInputEntry 4 } - -airFMSysInputDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the delay between this contact exiting its normal - state and an alarm being triggered. Measured in - seconds." - ::= { airFMSysInputEntry 5 } - -airFMSysInputAlarmAction OBJECT-TYPE - SYNTAX INTEGER { - statusOnly (1), - minor (2), - major (3), - remoteRunStop (4), - nonessStop (5), - immShutdown (6) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Sets the behavior for this contact when it exits its - normal state." - ::= { airFMSysInputEntry 6 } - --- airFM System Output Relays - -airFMSysOutputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMSysOutputTable. " - ::= { airFMSysOutputs 1 } - -airFMSysOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each output relay. " - ::= { airFMSysOutputs 2 } - -airFMSysOutputEntry OBJECT-TYPE - SYNTAX AirFMSysOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The output relay to obtain status from." - INDEX { airFMSysOutputIndex } - ::= { airFMSysOutputTable 1 } - -AirFMSysOutputEntry ::= - SEQUENCE { - airFMSysOutputIndex INTEGER, - airFMSysOutputStatus INTEGER, - airFMSysOutputNormalState INTEGER - } - -airFMSysOutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number designator of the output relay." - ::= { airFMSysOutputEntry 1 } - -airFMSysOutputStatus OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of this relay: Open or Closed. A violation - will occur when this relay is not in its normal state." - ::= { airFMSysOutputEntry 2 } - -airFMSysOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the normal state of this relay (the state when no - alarm/event exists)." - ::= { airFMSysOutputEntry 3 } - --- airFM System Output Alarm Mapping - -airFMSysAlarmMapSysTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMSysAlarmMapSysTable. " - ::= { airFMSysAlarmMapSys 1 } - -airFMSysAlarmMapSysTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysAlarmMapSysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting alarm map information." - ::= { airFMSysAlarmMapSys 2 } - -airFMSysAlarmMapSysEntry OBJECT-TYPE - SYNTAX AirFMSysAlarmMapSysEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The system alarm map type to reference." - INDEX { airFMSysAlarmMapSysOutputIndex } - ::= { airFMSysAlarmMapSysTable 1 } - -AirFMSysAlarmMapSysEntry ::= - SEQUENCE { - airFMSysAlarmMapSysOutputIndex INTEGER, - airFMSysAlarmMapSysAnyAlarm INTEGER, - airFMSysAlarmMapSystemOn INTEGER, - airFMSysAlarmMapSystemOffline INTEGER, - airFMSysAlarmMapSysHighEnvTemp INTEGER, - airFMSysAlarmMapSysLowEnvTemp INTEGER, - airFMSysAlarmMapSysHighEnvHum INTEGER, - airFMSysAlarmMapSysLowEnvHum INTEGER, - airFMSysAlarmMapSysFireDet INTEGER, - airFMSysAlarmMapSysSmokeDet INTEGER, - airFMSysAlarmMapSysEconIsol INTEGER, - airFMSysAlarmMapSysSupplySensFail INTEGER, - airFMSysAlarmMapSysReturnSensFail INTEGER, - airFMSysAlarmMapSysRemSensRemoved INTEGER, - airFMSysAlarmMapSysPrimSensFail INTEGER, - airFMSysAlarmMapSysSecSensFail INTEGER, - airFMSysAlarmMapSysSecSensActive INTEGER - } - -airFMSysAlarmMapSysOutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { airFMSysAlarmMapSysEntry 1 } - -airFMSysAlarmMapSysAnyAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Any Alarm. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 2 } - -airFMSysAlarmMapSystemOn OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for System On. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 3 } - -airFMSysAlarmMapSystemOffline OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for System Offline. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 4 } - -airFMSysAlarmMapSysHighEnvTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for High Environmental - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 5 } - -airFMSysAlarmMapSysLowEnvTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Low Environmental - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 6 } - -airFMSysAlarmMapSysHighEnvHum OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for High Environmental - Humidity. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 7 } - -airFMSysAlarmMapSysLowEnvHum OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Low Environmental - Humidity. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 8 } - -airFMSysAlarmMapSysFireDet OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Fire Detected. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 9 } - -airFMSysAlarmMapSysSmokeDet OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Smoke Detected. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 10 } - -airFMSysAlarmMapSysEconIsol OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Econ Isolator. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 11 } - -airFMSysAlarmMapSysSupplySensFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Supply Sensor Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 12 } - -airFMSysAlarmMapSysReturnSensFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Return Sensor Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 13 } - -airFMSysAlarmMapSysRemSensRemoved OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Remote Sensor Removed. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 14 } - -airFMSysAlarmMapSysPrimSensFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Primary Sensor Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 15 } - -airFMSysAlarmMapSysSecSensFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Secondary Sensor Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 16 } - -airFMSysAlarmMapSysSecSensActive OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "System alarm map setting for Secondary Sensor Active. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapSysEntry 17 } - --- airFM Main Module Output Alarm Mapping - -airFMSysAlarmMapMainModTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMSysAlarmMapMainModTable. " - ::= { airFMSysAlarmMapMainMod 1 } - -airFMSysAlarmMapMainModTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysAlarmMapMainModEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting alarm map information." - ::= { airFMSysAlarmMapMainMod 2 } - -airFMSysAlarmMapMainModEntry OBJECT-TYPE - SYNTAX AirFMSysAlarmMapMainModEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The main module alarm map type to reference." - INDEX { airFMSysAlarmMapMainModOutputIndex } - ::= { airFMSysAlarmMapMainModTable 1 } - -AirFMSysAlarmMapMainModEntry ::= - SEQUENCE { - airFMSysAlarmMapMainModOutputIndex INTEGER, - airFMSysAlarmMapMainModAnyAlarm INTEGER, - airFMSysAlarmMapMainModMaintReq INTEGER, - airFMSysAlarmMapMainModCoolFail INTEGER, - airFMSysAlarmMapMainModHighSupplyTemp INTEGER, - airFMSysAlarmMapMainModLowSupplyTemp INTEGER, - airFMSysAlarmMapMainModHumFail INTEGER, - airFMSysAlarmMapMainModHumReplCyl INTEGER, - airFMSysAlarmMapMainModCondPumpFail INTEGER, - airFMSysAlarmMapMainModBlwrCntl1Fail INTEGER, - airFMSysAlarmMapMainModBlwrCntl2Fail INTEGER, - airFMSysAlarmMapMainModHighFltrDP INTEGER, - airFMSysAlarmMapMainModLowAirFlow INTEGER, - airFMSysAlarmMapMainModAirBlckIntOpen INTEGER, - airFMSysAlarmMapMainModWaterDetected INTEGER - } - -airFMSysAlarmMapMainModOutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { airFMSysAlarmMapMainModEntry 1 } - -airFMSysAlarmMapMainModAnyAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Any Alarm. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 2 } - -airFMSysAlarmMapMainModMaintReq OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Module Maintenance - Required. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 3 } - -airFMSysAlarmMapMainModCoolFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Module Cooling - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 4 } - -airFMSysAlarmMapMainModHighSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for High Supply - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 5 } - -airFMSysAlarmMapMainModLowSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Low Supply - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 6 } - -airFMSysAlarmMapMainModHumFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Humidifier Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 7 } - -airFMSysAlarmMapMainModHumReplCyl OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Humidifier Replace - Cylinder. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 8 } - -airFMSysAlarmMapMainModCondPumpFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Condensate Pump - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 9 } - -airFMSysAlarmMapMainModBlwrCntl1Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Blower Controller 1 - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 10 } - -airFMSysAlarmMapMainModBlwrCntl2Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Blower Controller 2 - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 11 } - -airFMSysAlarmMapMainModHighFltrDP OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for High Filter - Differential Pressure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 12 } - -airFMSysAlarmMapMainModLowAirFlow OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Low Air Flow. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 13 } - -airFMSysAlarmMapMainModAirBlckIntOpen OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Air Block Interlock - Open. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 14 } - -airFMSysAlarmMapMainModWaterDetected OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Main Module alarm map setting for Water Detected. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapMainModEntry 15 } - --- airFM Exp Module 1 Output Alarm Mapping - -airFMSysAlarmMapExpMod1TableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMSysAlarmMapExpMod1Table. " - ::= { airFMSysAlarmMapExpMod1 1 } - -airFMSysAlarmMapExpMod1Table OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysAlarmMapExpMod1Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting alarm map information." - ::= { airFMSysAlarmMapExpMod1 2 } - -airFMSysAlarmMapExpMod1Entry OBJECT-TYPE - SYNTAX AirFMSysAlarmMapExpMod1Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The expansion module 1 alarm map type to reference." - INDEX { airFMSysAlarmMapExpMod1OutputIndex } - ::= { airFMSysAlarmMapExpMod1Table 1 } - -AirFMSysAlarmMapExpMod1Entry ::= - SEQUENCE { - airFMSysAlarmMapExpMod1OutputIndex INTEGER, - airFMSysAlarmMapExpMod1AnyAlarm INTEGER, - airFMSysAlarmMapExpMod1MaintReq INTEGER, - airFMSysAlarmMapExpMod1CoolFail INTEGER, - airFMSysAlarmMapExpMod1HighSupplyTemp INTEGER, - airFMSysAlarmMapExpMod1LowSupplyTemp INTEGER, - airFMSysAlarmMapExpMod1HumFail INTEGER, - airFMSysAlarmMapExpMod1HumReplCyl INTEGER, - airFMSysAlarmMapExpMod1CondPumpFail INTEGER, - airFMSysAlarmMapExpMod1BlwrCntl1Fail INTEGER, - airFMSysAlarmMapExpMod1BlwrCntl2Fail INTEGER, - airFMSysAlarmMapExpMod1HighFltrDP INTEGER, - airFMSysAlarmMapExpMod1LowAirFlow INTEGER, - airFMSysAlarmMapExpMod1AirBlckIntOpen INTEGER, - airFMSysAlarmMapExpMod1WaterDetected INTEGER - } - -airFMSysAlarmMapExpMod1OutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { airFMSysAlarmMapExpMod1Entry 1 } - -airFMSysAlarmMapExpMod1AnyAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Any Alarm. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 2 } - -airFMSysAlarmMapExpMod1MaintReq OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Module Maintenance - Required. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 3 } - -airFMSysAlarmMapExpMod1CoolFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Module Cooling - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 4 } - -airFMSysAlarmMapExpMod1HighSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for High Supply - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 5 } - -airFMSysAlarmMapExpMod1LowSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Low Supply - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 6 } - -airFMSysAlarmMapExpMod1HumFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Humidifier Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 7 } - -airFMSysAlarmMapExpMod1HumReplCyl OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Humidifier Replace - Cylinder. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 8 } - -airFMSysAlarmMapExpMod1CondPumpFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Condensate Pump - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 9 } - -airFMSysAlarmMapExpMod1BlwrCntl1Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Blower Controller 1 - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 10 } - -airFMSysAlarmMapExpMod1BlwrCntl2Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Blower Controller 2 - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 11 } - -airFMSysAlarmMapExpMod1HighFltrDP OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for High Filter - Differential Pressure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 12 } - -airFMSysAlarmMapExpMod1LowAirFlow OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Low Air Flow. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 13 } - -airFMSysAlarmMapExpMod1AirBlckIntOpen OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Air Block Interlock - Open. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 14 } - -airFMSysAlarmMapExpMod1WaterDetected OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 1 alarm map setting for Water Detected. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod1Entry 15 } - --- airFM Expansion Module 2 Output Alarm Mapping - -airFMSysAlarmMapExpMod2TableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the - airFMSysAlarmMapExpMod2Table." - ::= { airFMSysAlarmMapExpMod2 1 } - -airFMSysAlarmMapExpMod2Table OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysAlarmMapExpMod2Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting alarm map information." - ::= { airFMSysAlarmMapExpMod2 2 } - -airFMSysAlarmMapExpMod2Entry OBJECT-TYPE - SYNTAX AirFMSysAlarmMapExpMod2Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The expansion module 2 alarm map type to reference." - INDEX { airFMSysAlarmMapExpMod2OutputIndex } - ::= { airFMSysAlarmMapExpMod2Table 1 } - -AirFMSysAlarmMapExpMod2Entry ::= - SEQUENCE { - airFMSysAlarmMapExpMod2OutputIndex INTEGER, - airFMSysAlarmMapExpMod2AnyAlarm INTEGER, - airFMSysAlarmMapExpMod2MaintReq INTEGER, - airFMSysAlarmMapExpMod2CoolFail INTEGER, - airFMSysAlarmMapExpMod2HighSupplyTemp INTEGER, - airFMSysAlarmMapExpMod2LowSupplyTemp INTEGER, - airFMSysAlarmMapExpMod2HumFail INTEGER, - airFMSysAlarmMapExpMod2HumReplCyl INTEGER, - airFMSysAlarmMapExpMod2CondPumpFail INTEGER, - airFMSysAlarmMapExpMod2BlwrCntl1Fail INTEGER, - airFMSysAlarmMapExpMod2BlwrCntl2Fail INTEGER, - airFMSysAlarmMapExpMod2HighFltrDP INTEGER, - airFMSysAlarmMapExpMod2LowAirFlow INTEGER, - airFMSysAlarmMapExpMod2AirBlckIntOpen INTEGER, - airFMSysAlarmMapExpMod2WaterDetected INTEGER - } - -airFMSysAlarmMapExpMod2OutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { airFMSysAlarmMapExpMod2Entry 1 } - -airFMSysAlarmMapExpMod2AnyAlarm OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Any Alarm. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 2 } - -airFMSysAlarmMapExpMod2MaintReq OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Module Maintenance - Required. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 3 } - -airFMSysAlarmMapExpMod2CoolFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Module Cooling - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 4 } - -airFMSysAlarmMapExpMod2HighSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for High Supply - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 5 } - -airFMSysAlarmMapExpMod2LowSupplyTemp OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Low Supply - Temperature. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 6 } - -airFMSysAlarmMapExpMod2HumFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Humidifier Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 7 } - -airFMSysAlarmMapExpMod2HumReplCyl OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Humidifier Replace - Cylinder. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 8 } - -airFMSysAlarmMapExpMod2CondPumpFail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Condensate Pump - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 9 } - -airFMSysAlarmMapExpMod2BlwrCntl1Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Blower Controller 1 - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 10 } - -airFMSysAlarmMapExpMod2BlwrCntl2Fail OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Blower Controller 2 - Failure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 11 } - -airFMSysAlarmMapExpMod2HighFltrDP OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for High Filter - Differential Pressure. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 12 } - -airFMSysAlarmMapExpMod2LowAirFlow OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Low Air Flow. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 13 } - -airFMSysAlarmMapExpMod2AirBlckIntOpen OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Air Block Interlock - Open. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 14 } - -airFMSysAlarmMapExpMod2WaterDetected OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Exp Module 2 alarm map setting for Water Detected. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapExpMod2Entry 15 } - --- airFM Input Alarm Mapping - -airFMSysAlarmMapInputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMSysAlarmMapInputTable. " - ::= { airFMSysAlarmMapInput 1 } - -airFMSysAlarmMapInputTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysAlarmMapInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting alarm map information." - ::= { airFMSysAlarmMapInput 2 } - -airFMSysAlarmMapInputEntry OBJECT-TYPE - SYNTAX AirFMSysAlarmMapInputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contact alarm map type to reference." - INDEX { airFMSysAlarmMapInputOutputIndex } - ::= { airFMSysAlarmMapInputTable 1 } - -AirFMSysAlarmMapInputEntry ::= - SEQUENCE { - airFMSysAlarmMapInputOutputIndex INTEGER, - airFMSysAlarmMapInput1 INTEGER, - airFMSysAlarmMapInput2 INTEGER, - airFMSysAlarmMapInput3 INTEGER, - airFMSysAlarmMapInput4 INTEGER, - airFMSysAlarmMapInput5 INTEGER, - airFMSysAlarmMapInput6 INTEGER, - airFMSysAlarmMapInput7 INTEGER, - airFMSysAlarmMapInput8 INTEGER, - airFMSysAlarmMapInput9 INTEGER, - airFMSysAlarmMapInput10 INTEGER, - airFMSysAlarmMapInput11 INTEGER, - airFMSysAlarmMapInput12 INTEGER, - airFMSysAlarmMapInput13 INTEGER, - airFMSysAlarmMapInput14 INTEGER, - airFMSysAlarmMapInput15 INTEGER, - airFMSysAlarmMapInput16 INTEGER - } - -airFMSysAlarmMapInputOutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { airFMSysAlarmMapInputEntry 1 } - -airFMSysAlarmMapInput1 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 1 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 2 } - -airFMSysAlarmMapInput2 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 2 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 3 } - -airFMSysAlarmMapInput3 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 3 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 4 } - -airFMSysAlarmMapInput4 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 4 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 5 } - -airFMSysAlarmMapInput5 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 5 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 6 } - -airFMSysAlarmMapInput6 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 6 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 7 } - -airFMSysAlarmMapInput7 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 7 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 8 } - -airFMSysAlarmMapInput8 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 8 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 9 } - -airFMSysAlarmMapInput9 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 9 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 10 } - -airFMSysAlarmMapInput10 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 10 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 11 } - -airFMSysAlarmMapInput11 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 11 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 12 } - -airFMSysAlarmMapInput12 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 12 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 13 } - -airFMSysAlarmMapInput13 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 13 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 14 } - -airFMSysAlarmMapInput14 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 14 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 15 } - -airFMSysAlarmMapInput15 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 15 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 16 } - -airFMSysAlarmMapInput16 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Input contact 16 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapInputEntry 17 } - --- airFM Output Alarm Mapping - -airFMSysAlarmMapOutputTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the - airFMSysAlarmMapOutputTable. " - ::= { airFMSysAlarmMapOutput 1 } - -airFMSysAlarmMapOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMSysAlarmMapOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting alarm map information." - ::= { airFMSysAlarmMapOutput 2 } - -airFMSysAlarmMapOutputEntry OBJECT-TYPE - SYNTAX AirFMSysAlarmMapOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contact alarm map type to reference." - INDEX { airFMSysAlarmMapOutputIndex } - ::= { airFMSysAlarmMapOutputTable 1 } - -AirFMSysAlarmMapOutputEntry ::= - SEQUENCE { - airFMSysAlarmMapOutputIndex INTEGER, - airFMSysAlarmMapOutput1 INTEGER, - airFMSysAlarmMapOutput2 INTEGER, - airFMSysAlarmMapOutput3 INTEGER, - airFMSysAlarmMapOutput4 INTEGER, - airFMSysAlarmMapOutput5 INTEGER, - airFMSysAlarmMapOutput6 INTEGER, - airFMSysAlarmMapOutput7 INTEGER, - airFMSysAlarmMapOutput8 INTEGER, - airFMSysAlarmMapOutput9 INTEGER, - airFMSysAlarmMapOutput10 INTEGER, - airFMSysAlarmMapOutput11 INTEGER, - airFMSysAlarmMapOutput12 INTEGER, - airFMSysAlarmMapOutput13 INTEGER, - airFMSysAlarmMapOutput14 INTEGER, - airFMSysAlarmMapOutput15 INTEGER, - airFMSysAlarmMapOutput16 INTEGER - } - -airFMSysAlarmMapOutputIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the output relay." - ::= { airFMSysAlarmMapOutputEntry 1 } - -airFMSysAlarmMapOutput1 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 1 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 2 } - -airFMSysAlarmMapOutput2 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 2 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 3 } - -airFMSysAlarmMapOutput3 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 3 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 4 } - -airFMSysAlarmMapOutput4 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 4 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 5 } - -airFMSysAlarmMapOutput5 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 5 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 6 } - -airFMSysAlarmMapOutput6 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 6 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 7 } - -airFMSysAlarmMapOutput7 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 7 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 8 } - -airFMSysAlarmMapOutput8 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 8 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 9 } - -airFMSysAlarmMapOutput9 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 9 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 10 } - -airFMSysAlarmMapOutput10 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 10 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 11 } - -airFMSysAlarmMapOutput11 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 11 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 12 } - -airFMSysAlarmMapOutput12 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 12 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 13 } - -airFMSysAlarmMapOutput13 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 13 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 14 } - -airFMSysAlarmMapOutput14 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 14 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 15 } - -airFMSysAlarmMapOutput15 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 15 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 16 } - -airFMSysAlarmMapOutput16 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - disabled (2), - enabled (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Output relay 16 alarm map setting. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMSysAlarmMapOutputEntry 17 } - --- airFM Module Identification Table - -airFMModIdentTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModIdentTable. " - ::= { airFMModIdent 1 } - -airFMModIdentTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModIdent 2 } - -airFMModIdentEntry OBJECT-TYPE - SYNTAX AirFMModIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModIdentModuleIndex } - ::= { airFMModIdentTable 1 } - -AirFMModIdentEntry ::= - SEQUENCE { - airFMModIdentModuleIndex INTEGER, - airFMModModelNumber DisplayString, - airFMModSerialNumber DisplayString, - airFMModManufactureDate DisplayString, - airFMModFirmwareRev DisplayString, - airFMModHardwareRev DisplayString - } - -airFMModIdentModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModIdentEntry 1 } - -airFMModModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Model number of the Module." - ::= { airFMModIdentEntry 2 } - -airFMModSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unique identification number for this Module." - ::= { airFMModIdentEntry 3 } - -airFMModManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Date the Module was manufactured." - ::= { airFMModIdentEntry 4 } - -airFMModFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Revision number of the firmware installed on this - Module." - ::= { airFMModIdentEntry 5 } - -airFMModHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Revision number of the hardware installed on this - Module." - ::= { airFMModIdentEntry 6 } - --- airFM Module Status Table - -airFMModStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModStatusTable. " - ::= { airFMModStatus 1 } - -airFMModStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModStatus 2 } - -airFMModStatusEntry OBJECT-TYPE - SYNTAX AirFMModStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModStatusModuleIndex } - ::= { airFMModStatusTable 1 } - -AirFMModStatusEntry ::= - SEQUENCE { - airFMModStatusModuleIndex INTEGER, - airFMModSupplyTempC INTEGER, - airFMModSupplyTempF INTEGER, - airFMModSupplyHum INTEGER, - airFMModReturnTempC INTEGER, - airFMModReturnTempF INTEGER, - airFMModReturnHum INTEGER, - airFMModFilterDiffPresPa INTEGER, - airFMModFilterDiffPresInWC INTEGER, - airFMModCoilDiffPresPa INTEGER, - airFMModCoilDiffPresInWC INTEGER - } - -airFMModStatusModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModStatusEntry 1 } - -airFMModSupplyTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature measured at the supply sensor. - Measured in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 2 } - -airFMModSupplyTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature measured at the supply sensor. - Measured in tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 3 } - -airFMModSupplyHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidity measured at the supply sensor. - Measured in tenths of percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 4 } - -airFMModReturnTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature measured at the return sensor. - Measured in tenths of degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 5 } - -airFMModReturnTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature measured at the return sensor. - Measured in tenths of degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 6 } - -airFMModReturnHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidity measured at the return sensor. - Measured in tenths of percent relative humidity. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 7 } - -airFMModFilterDiffPresPa OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The difference in pressure on either side of the air - filters. A high differential pressure indicates a - clogged filter. Measured in Pascals. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 8 } - -airFMModFilterDiffPresInWC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The difference in pressure on either side of the air - filters. A high differential pressure indicates a - clogged filter. Measured in hundredths of inches - water column. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 9 } - -airFMModCoilDiffPresPa OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The difference in pressure on either side of the - cooling/dehumidification coils. Measured in Pascals. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 10 } - -airFMModCoilDiffPresInWC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The difference in pressure on either side of the - cooling/dehumidification coils. Measured in - hundredths of inches water column. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModStatusEntry 11 } - --- airFM Module Properties Table - -airFMModPropTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModPropTable. " - ::= { airFMModProperties 1 } - -airFMModPropTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModPropEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModProperties 2 } - -airFMModPropEntry OBJECT-TYPE - SYNTAX AirFMModPropEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModPropModuleIndex } - ::= { airFMModPropTable 1 } - -AirFMModPropEntry ::= - SEQUENCE { - airFMModPropModuleIndex INTEGER, - airFMModOutputCapacity INTEGER, - airFMModCapacityCtrl INTEGER, - airFMModHeaterType INTEGER, - airFMModElectricHeaterType INTEGER, - airFMModHumidifierType INTEGER, - airFMModBlwrFreqSetting INTEGER, - airFMModNomCoilDiffPresPa INTEGER, - airFMModNomCoilDiffPresInWC INTEGER, - airFMModCondPump INTEGER, - airFMModFireDetector INTEGER, - airFMModSmokeDetector INTEGER, - airFMModWaterDetector INTEGER - } - -airFMModPropModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModPropEntry 1 } - -airFMModOutputCapacity OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - kw45 (2), - kw35 (3), - kw40 (4), - kw50 (5), - kw80 (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling capacity (in Kilowatts) of the displayed - Module. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 2 } - -airFMModCapacityCtrl OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - tandem (2), - hotGasBypass (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The method used to load and unload the compressors. - Tandem compressor Modules use two stages (one - compressor each). Single compressor Modules use hot - gas bypass. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 3 } - -airFMModHeaterType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - electricSCR (3), - steam (4), - hotWaterOnOff (5), - hotGasReheat (6), - hotGasAndElectric (7), - hotWaterProp (8) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of reheating device installed in this Module. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 4 } - -airFMModElectricHeaterType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - kw10 (2), - kw15 (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type/capacity of the electric heater, if installed. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 5 } - -airFMModHumidifierType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - steamElectrode (3), - liveSteam (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of equipment installed in the Module to run - the humidification mode. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 6 } - -airFMModBlwrFreqSetting OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Frequency of the blower in tenths of hertz. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModPropEntry 7 } - -airFMModNomCoilDiffPresPa OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The difference in pressure on either side of the - cooling/dehumidification coils. Measured in Pascals. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModPropEntry 8 } - -airFMModNomCoilDiffPresInWC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The difference in pressure on either side of the - cooling/dehumidification coils. Measured in - hundredths of inches water column. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModPropEntry 9 } - -airFMModCondPump OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - notPresent (2), - present (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the presence of a condensate pump in the - Modules of this System. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 10 } - -airFMModFireDetector OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - notPresent (2), - present (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the presence of a fire detector for each - of the Modules in this System. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 11 } - -airFMModSmokeDetector OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - notPresent (2), - present (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the presence of a smoke detector for each - of the Modules in this System. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 12 } - -airFMModWaterDetector OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - notPresent (2), - present (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the presence of a water leak detector for - each of the Modules in this System. - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModPropEntry 13 } - --- airFM Module Cooling Table - -airFMModCoolTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModCoolTable. " - ::= { airFMModCooling 1 } - -airFMModCoolTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModCoolEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModCooling 2 } - -airFMModCoolEntry OBJECT-TYPE - SYNTAX AirFMModCoolEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModCoolModuleIndex } - ::= { airFMModCoolTable 1 } - -AirFMModCoolEntry ::= - SEQUENCE { - airFMModCoolModuleIndex INTEGER, - airFMModComp1 INTEGER, - airFMModComp2 INTEGER, - airFMModSuctPresKPa INTEGER, - airFMModSuctPresPSI INTEGER, - airFMModDischPresKPa INTEGER, - airFMModDischPresPSI INTEGER, - airFMModCondFluidVlvPos INTEGER, - airFMModCoilFluidVlvPos INTEGER - } - -airFMModCoolModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModCoolEntry 1 } - -airFMModComp1 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - on (2), - off (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of compressor 1 of the tandem compressor - unit (on or off). - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModCoolEntry 2 } - -airFMModComp2 OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - on (2), - off (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of compressor 2 of the tandem compressor - unit (on or off). - A value of notApplicable indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModCoolEntry 3 } - -airFMModSuctPresKPa OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The refrigerant pressure measured at the suction - inlet of the compressor. Measured in kiloPascals. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModCoolEntry 4 } - -airFMModSuctPresPSI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The refrigerant pressure measured at the suction - inlet of the compressor. Measured in pounds per - square inch. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModCoolEntry 5 } - -airFMModDischPresKPa OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The refrigerant pressure measured at the discharge - outlet of the compressor. Measured in kiloPascals. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModCoolEntry 6 } - -airFMModDischPresPSI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The refrigerant pressure measured at the discharge - outlet of the compressor. Measured in pounds per - square inch. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModCoolEntry 7 } - -airFMModCondFluidVlvPos OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the condenser fluid valve. The valve - regulates the flow of liquid coolant into the heat - exchanger (condenser). 100% indicates the valve is - completely open, and 0% indicates that the valve is - closed. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModCoolEntry 8 } - -airFMModCoilFluidVlvPos OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the coil fluid valve. The valve - regulates the flow of liquid coolant in the fluid - cooling coil (MultiCool, Economizer, or Chilled - Water). 100% indicates the valve is completely open, - and 0% indicates that the valve is closed. Measured - in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModCoolEntry 9 } - - --- airFM Module Humidity Control Table - -airFMModHumTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModHumTable. " - ::= { airFMModHumidity 1 } - -airFMModHumTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModHumEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModHumidity 2 } - -airFMModHumEntry OBJECT-TYPE - SYNTAX AirFMModHumEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModHumModuleIndex } - ::= { airFMModHumTable 1 } - -AirFMModHumEntry ::= - SEQUENCE { - airFMModHumModuleIndex INTEGER, - airFMModHumidifier INTEGER, - airFMModElectrodeCurrent INTEGER, - airFMModHumActualOutput INTEGER, - airFMModWaterConductivity INTEGER, - airFMModHotWaterVlvPos INTEGER, - airFMModStmElectHumMode INTEGER - } - -airFMModHumModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModHumEntry 1 } - -airFMModHumidifier OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - none (2), - steamElectrode (3), - liveSteam (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of equipment installed in the Module to run - the humidification mode. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModHumEntry 2 } - -airFMModElectrodeCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current drawn by the electrodes of the steam - cylinder humidifier. Measured in tenths of amps. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModHumEntry 3 } - -airFMModHumActualOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidification output of an individual Module. - Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModHumEntry 4 } - -airFMModWaterConductivity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The conductivity of the water in the humidifier - cylinder. Measured in microSiemens per centimeter. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModHumEntry 5 } - -airFMModHotWaterVlvPos OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the hot water valve. 100% indicates - the valve is completely open, and 0% indicates that - the valve is closed. Measured in percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModHumEntry 6 } - -airFMModStmElectHumMode OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - off (2), - auto (3), - drain (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Set the humidifier function mode. - Off: Remove power from electrodes. - Auto: Humidifier controlled by Module controller. - Drain: Remove power from electrodes and drain the cylinder. - - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModHumEntry 7 } - --- airFM Module Blower 1 Table - -airFMModBlwr1TableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModBlwr1Table. " - ::= { airFMModBlower1 1 } - -airFMModBlwr1Table OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModBlwr1Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModBlower1 2 } - -airFMModBlwr1Entry OBJECT-TYPE - SYNTAX AirFMModBlwr1Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModBlwr1ModuleIndex } - ::= { airFMModBlwr1Table 1 } - -AirFMModBlwr1Entry ::= - SEQUENCE { - airFMModBlwr1ModuleIndex INTEGER, - airFMModBlwr1CtrlType INTEGER, - airFMModBlwr1CmdFreq INTEGER, - airFMModBlwr1ActFreq INTEGER, - airFMModBlwr1Poles INTEGER, - airFMModBlwr1RatedHorsePower INTEGER, - airFMModBlwr1RatedCurrent INTEGER, - airFMModBlwr1ActTorq INTEGER, - airFMModBlwr1Current INTEGER, - airFMModBlwr1Vlt INTEGER, - airFMModBlwr1DCLinkVlt INTEGER, - airFMModBlwr1AccTime INTEGER, - airFMModBlwr1DecTime INTEGER, - airFMModBlwr1CapLife INTEGER, - airFMModBlwr1CtrlCoolFanLife INTEGER, - airFMModBlwr1ElOvMode INTEGER, - airFMModBlwr1ElOvSetting INTEGER, - airFMModBlwr1ElOvTimeConst INTEGER, - airFMModBlwr1FanPower INTEGER, - airFMModBlwr1HeatsinkTempC INTEGER, - airFMModBlwr1HeatsinkTempF INTEGER, - airFMModBlwr1ChokeTempC INTEGER, - airFMModBlwr1ChokeTempF INTEGER, - airFMModBlwr1InverterTempC INTEGER, - airFMModBlwr1InverterTempF INTEGER - } - -airFMModBlwr1ModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModBlwr1Entry 1 } - -airFMModBlwr1CtrlType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - fujiVFD (2), - ecController (3), - danfossVFD (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of blower controller. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 2 } - -airFMModBlwr1CmdFreq OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The requested operating frequency for the blower. - Measured in tenths of hertz. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 3 } - -airFMModBlwr1ActFreq OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frequency at which the blower controller is - operating. Measured in tenths of hertz. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 4 } - -airFMModBlwr1Poles OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of poles of the blower motor that the - blower controller is controlling. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 5 } - -airFMModBlwr1RatedHorsePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power rating of the blower motor. Measured in - hundredths of horsepower. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 6 } - -airFMModBlwr1RatedCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current rating of the blower motor. Measured in - hundredths of amps. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 7 } - -airFMModBlwr1ActTorq OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual torque of the blower motor. Measured in - hundredths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 8 } - -airFMModBlwr1Current OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percent of rated current drawn by the blower - motor. Measured in hundredths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 9 } - -airFMModBlwr1Vlt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage supplied to the blower motor. Measured - in tenths of volts RMS. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 10 } - -airFMModBlwr1DCLinkVlt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage of the blower controller's DC bus. - Measured in volts DC. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 11 } - -airFMModBlwr1AccTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time to accelerate the blower to the specified - frequency. Measured in tenths of seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 12 } - -airFMModBlwr1DecTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time to decelerate the blower frequency to zero. - Measured in tenths of seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 13 } - -airFMModBlwr1CapLife OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remaining life of the main circuit capacitor. - Measured in tenths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 14 } - -airFMModBlwr1CtrlCoolFanLife OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total operation time of the blower controller - cooling fan. Measured in hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 15 } - -airFMModBlwr1ElOvMode OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - inactive (2), - active (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Enables or disables the electronic overload relay. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 16 } - -airFMModBlwr1ElOvSetting OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The electronic overload relay is activated when the - current exceeds this threshold. Measured in - hundredths of amps. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 17 } - -airFMModBlwr1ElOvTimeConst OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The delay between the current exceeding the overload - threshold and the activation of the electronic - overload relay. Measured in tenths of minutes. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 18 } - -airFMModBlwr1FanPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual power of the blower motor. Measured in - tenths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 19 } - -airFMModBlwr1HeatsinkTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the heatsink on the blower - controller. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 20 } - -airFMModBlwr1HeatsinkTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the heatsink on the blower - controller. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 21 } - -airFMModBlwr1ChokeTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the choke on the blower - controller. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 22 } - -airFMModBlwr1ChokeTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the choke on the blower - controller. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 23 } - -airFMModBlwr1InverterTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the inverter on the blower - controller. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 24 } - -airFMModBlwr1InverterTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the inverter on the blower - controller. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr1Entry 25 } - - --- airFM Module Blower 2 Table - -airFMModBlwr2TableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModBlwr2Table. " - ::= { airFMModBlower2 1 } - -airFMModBlwr2Table OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModBlwr2Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModBlower2 2 } - -airFMModBlwr2Entry OBJECT-TYPE - SYNTAX AirFMModBlwr2Entry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModBlwr2ModuleIndex } - ::= { airFMModBlwr2Table 1 } - -AirFMModBlwr2Entry ::= - SEQUENCE { - airFMModBlwr2ModuleIndex INTEGER, - airFMModBlwr2CtrlType INTEGER, - airFMModBlwr2CmdFreq INTEGER, - airFMModBlwr2ActFreq INTEGER, - airFMModBlwr2Poles INTEGER, - airFMModBlwr2RatedHorsePower INTEGER, - airFMModBlwr2RatedCurrent INTEGER, - airFMModBlwr2ActTorq INTEGER, - airFMModBlwr2Current INTEGER, - airFMModBlwr2Vlt INTEGER, - airFMModBlwr2DCLinkVlt INTEGER, - airFMModBlwr2AccTime INTEGER, - airFMModBlwr2DecTime INTEGER, - airFMModBlwr2CapLife INTEGER, - airFMModBlwr2CtrlCoolFanLife INTEGER, - airFMModBlwr2ElOvMode INTEGER, - airFMModBlwr2ElOvSetting INTEGER, - airFMModBlwr2ElOvTimeConst INTEGER, - airFMModBlwr2FanPower INTEGER, - airFMModBlwr2HeatsinkTempC INTEGER, - airFMModBlwr2HeatsinkTempF INTEGER, - airFMModBlwr2ChokeTempC INTEGER, - airFMModBlwr2ChokeTempF INTEGER, - airFMModBlwr2InverterTempC INTEGER, - airFMModBlwr2InverterTempF INTEGER - } - -airFMModBlwr2ModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModBlwr2Entry 1 } - -airFMModBlwr2CtrlType OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - fujiVFD (2), - ecController (3), - danfossVFD (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of blower controller. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 2 } - -airFMModBlwr2CmdFreq OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The requested operating frequency for the blower. - Measured in tenths of hertz. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 3 } - -airFMModBlwr2ActFreq OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The frequency at which the blower controller is - operating. Measured in tenths of hertz. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 4 } - -airFMModBlwr2Poles OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of poles of the blower motor that the - blower controller is controlling. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 5 } - -airFMModBlwr2RatedHorsePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power rating of the blower motor. Measured in - hundredths of horsepower. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 6 } - -airFMModBlwr2RatedCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current rating of the blower motor. Measured in - hundredths of amps. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 7 } - -airFMModBlwr2ActTorq OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual torque of the blower motor. Measured in - hundredths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 8 } - -airFMModBlwr2Current OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The percent of rated current drawn by the blower - motor. Measured in hundredths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 9 } - -airFMModBlwr2Vlt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage supplied to the blower motor. Measured - in tenths of volts RMS. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 10 } - -airFMModBlwr2DCLinkVlt OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The voltage of the blower controller's DC bus. - Measured in volts DC. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 11 } - -airFMModBlwr2AccTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time to accelerate the blower to the specified - frequency. Measured in tenths of seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 12 } - -airFMModBlwr2DecTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time to decelerate the blower frequency to zero. - Measured in tenths of seconds. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 13 } - -airFMModBlwr2CapLife OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remaining life of the main circuit capacitor. - Measured in tenths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 14 } - -airFMModBlwr2CtrlCoolFanLife OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total operation time of the blower controller - cooling fan. Measured in hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 15 } - -airFMModBlwr2ElOvMode OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - inactive (2), - active (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Enables or disables the electronic overload relay. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 16 } - -airFMModBlwr2ElOvSetting OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The electronic overload relay is activated when the - current exceeds this threshold. Measured in - hundredths of amps. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 17 } - -airFMModBlwr2ElOvTimeConst OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The delay between the current exceeding the overload - threshold and the activation of the electronic - overload relay. Measured in tenths of minutes. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 18 } - -airFMModBlwr2FanPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual power of the blower motor. Measured in - tenths of percent. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 19 } - -airFMModBlwr2HeatsinkTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the heatsink on the blower - controller. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 20 } - -airFMModBlwr2HeatsinkTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the heatsink on the blower - controller. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 21 } - -airFMModBlwr2ChokeTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the choke on the blower - controller. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 22 } - -airFMModBlwr2ChokeTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the choke on the blower - controller. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 23 } - -airFMModBlwr2InverterTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the inverter on the blower - controller. Measured in degrees Celsius. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 24 } - -airFMModBlwr2InverterTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the inverter on the blower - controller. Measured in degrees Fahrenheit. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModBlwr2Entry 25 } - --- airFM Module Run Hours Table - -airFMModRHTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModRHTable. " - ::= { airFMModRunHours 1 } - -airFMModRHTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModRHEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModRunHours 2 } - -airFMModRHEntry OBJECT-TYPE - SYNTAX AirFMModRHEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModRHModuleIndex } - ::= { airFMModRHTable 1 } - -AirFMModRHEntry ::= - SEQUENCE { - airFMModRHModuleIndex INTEGER, - airFMModRHComp1 INTEGER, - airFMModRHComp2 INTEGER, - airFMModRHHeater INTEGER, - airFMModRHHum INTEGER, - airFMModRHBlwr1 INTEGER, - airFMModRHBlwr2 INTEGER, - airFMModRHBlwrCtrl1 INTEGER, - airFMModRHBlwrCtrl2 INTEGER, - airFMModRHComp1Reset INTEGER, - airFMModRHComp2Reset INTEGER, - airFMModRHHeaterReset INTEGER, - airFMModRHHumReset INTEGER, - airFMModRHBlwr1Reset INTEGER, - airFMModRHBlwr2Reset INTEGER - } - -airFMModRHModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModRHEntry 1 } - -airFMModRHComp1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 1 run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 2 } - -airFMModRHComp2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 2 run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 3 } - -airFMModRHHeater OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Heater run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 4 } - -airFMModRHHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier run hours - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 5 } - -airFMModRHBlwr1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Blower 1 run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 6 } - -airFMModRHBlwr2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Blower 2 run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 7 } - -airFMModRHBlwrCtrl1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Blower Controller 1 run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 8 } - -airFMModRHBlwrCtrl2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Blower Controller 2 run hours. - A value of -2147483648 indicates that this OID - does not apply to this device due to its configuration." - ::= { airFMModRHEntry 9 } - -airFMModRHComp1Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the compressor 1 run hours. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModRHEntry 10 } - -airFMModRHComp2Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the compressor 2 run hours. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModRHEntry 11 } - -airFMModRHHeaterReset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the heater run hours. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModRHEntry 12 } - -airFMModRHHumReset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the humidifier run hours. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModRHEntry 13 } - -airFMModRHBlwr1Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the blower 1 run hours. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModRHEntry 14 } - -airFMModRHBlwr2Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the blower 2 run hours. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModRHEntry 15 } - --- airFM Module Service Intervals - -airFMModServIntComp1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for compressor 1. Values stored in increments of 100 - hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 1 } - -airFMModServIntComp2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for compressor 2. Values stored in increments of 100 - hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 2 } - -airFMModServIntHeater OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for the reheat components. Values stored in - increments of 100 hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 3 } - -airFMModServIntHum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for the humidifier. Values stored in increments of - 100 hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 4 } - -airFMModServIntBlwr1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for blower 1. Values stored in increments of 100 - hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 5 } - -airFMModServIntBlwr2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for blower 2. Values stored in increments of 100 - hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 6 } - -airFMModServIntBlwrCtrl1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for blower controller 1. Values stored in increments - of 100 hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 7 } - -airFMModServIntBlwrCtrl2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval at which to generate a maintenance alarm - for blower controller 2. Values stored in increments - of 100 hours. - A value of -2147483648 indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntervals 8 } - --- airFM Module Service Intervals Reset Table - -airFMModServIntResetTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the airFMModServIntTable. " - ::= { airFMModServIntResets 1 } - -airFMModServIntResetTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMModServIntResetEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each module in - the system. " - ::= { airFMModServIntResets 2 } - -airFMModServIntResetEntry OBJECT-TYPE - SYNTAX AirFMModServIntResetEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The module to get information from." - INDEX { airFMModServIntResetModuleIndex } - ::= { airFMModServIntResetTable 1 } - -AirFMModServIntResetEntry ::= - SEQUENCE { - airFMModServIntResetModuleIndex INTEGER, - airFMModServIntComp1Reset INTEGER, - airFMModServIntComp2Reset INTEGER, - airFMModServIntHeaterReset INTEGER, - airFMModServIntHumReset INTEGER, - airFMModServIntBlwr1Reset INTEGER, - airFMModServIntBlwr2Reset INTEGER, - airFMModServIntBlwrCtrl1Reset INTEGER, - airFMModServIntBlwrCtrl2Reset INTEGER - } - -airFMModServIntResetModuleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the module." - ::= { airFMModServIntResetEntry 1 } - -airFMModServIntComp1Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the compressor 1 service interval maintenance - alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 2 } - -airFMModServIntComp2Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the compressor 2 service interval maintenance - alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 3 } - -airFMModServIntHeaterReset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the heater service interval maintenance alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 4 } - -airFMModServIntHumReset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the humidifier service interval maintenance - alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 5 } - -airFMModServIntBlwr1Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the blower 1 service interval maintenance - alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 6 } - -airFMModServIntBlwr2Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the blower 2 service interval maintenance - alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 7 } - -airFMModServIntBlwrCtrl1Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the blower controller 1 service interval - maintenance alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 8 } - -airFMModServIntBlwrCtrl2Reset OBJECT-TYPE - SYNTAX INTEGER { - notApplicable (1), - noOperation (2), - reset (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset the blower controller 2 service interval - maintenance alarm. - Getting this OID will do nothing and return the - noOperation value. - A value of notApplicable indicates that this OID does - not apply to this device due to its configuration." - ::= { airFMModServIntResetEntry 9 } - --- airFM Alarms Table - -airFMAlarmClearActiveGroupAlarms OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - clearAlarms (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Clear active group alarms. If alarm conditions are - still present, new alarms will be generated for those - conditions. - Getting this OID will do nothing and return the - noOperation value." - ::= { airFMAlarms 1 } - -airFMAlarmClearActiveSysModAlarms OBJECT-TYPE - SYNTAX INTEGER { - noOperation (1), - clearAlarms (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Clear active system and module alarms. If alarm - conditions are still present, new alarms will be - generated for those conditions. - Getting this OID will do nothing and return the - noOperation value." - ::= { airFMAlarms 2 } - -airFMAlarmConditionsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active alarm conditions in the - airFMAlarmConditionTable." - ::= { airFMAlarms 3 } - -airFMAlarmConditionsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirFMAlarmConditionsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of active alarm conditions for the device." - ::= { airFMAlarms 4 } - -airFMAlarmConditionsEntry OBJECT-TYPE - SYNTAX AirFMAlarmConditionsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Alarm condition specification" - INDEX { airFMAlarmConditionsIndex } - ::= { airFMAlarmConditionsTable 1 } - -AirFMAlarmConditionsEntry ::= SEQUENCE { - airFMAlarmConditionsIndex INTEGER, - airFMAlarmSeverity INTEGER, - airFMAlarmType INTEGER, - airFMEventCode INTEGER, - airFMAlarmDate DisplayString, - airFMAlarmTime DisplayString, - airFMAlarmDescription DisplayString - } - -airFMAlarmConditionsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "Alarm condition index." - ::= { airFMAlarmConditionsEntry 1 } - -airFMAlarmSeverity OBJECT-TYPE - SYNTAX INTEGER { - informational (1), - warningMinor (2), - criticalMajor (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Severity of the alarm." - ::= { airFMAlarmConditionsEntry 2 } - -airFMAlarmType OBJECT-TYPE - SYNTAX INTEGER { - group (1), - system (2), - mainMod (3), - expMod1 (4), - expMod2 (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Type of alarm." - ::= { airFMAlarmConditionsEntry 3 } - -airFMEventCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "APC event code for the alarm." - ::= { airFMAlarmConditionsEntry 4 } - -airFMAlarmDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Date the alarm was recorded." - ::= { airFMAlarmConditionsEntry 5 } - -airFMAlarmTime OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "Time the alarm was recorded." - ::= { airFMAlarmConditionsEntry 6 } - -airFMAlarmDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Description of the alarm." - ::= { airFMAlarmConditionsEntry 7 } - --- airPA Portable Air Conditioner Ident - -airPAIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the device name." - ::= { airPAIdent 1 } - -airPAModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the device model number." - ::= { airPAIdent 2 } - -airPADateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying when the device was produced." - ::= { airPAIdent 3 } - -airPASerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the device serial number." - ::= { airPAIdent 4 } - -airPAFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the device firmware revision." - ::= { airPAIdent 5 } - -airPAHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the device hardware revision." - ::= { airPAIdent 6 } - --- airPA Portable Air Conditioner Status - -airPASystemPower OBJECT-TYPE - SYNTAX INTEGER { - powerON (1), - powerOFF (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the unit's system power setting. - - ON(1) The system power is turned on. - OFF(2) The system power is turned off. " - ::= { airPAStatus 1 } - -airPAOperatingMode OBJECT-TYPE - SYNTAX INTEGER { - modeOFF (1), - modeVENTING (2), - modeCOOLING (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current operating mode of the unit. - - OFF(1) The system is off. - VENTING(2) The system's venting function is active. - COOLING(3) The system's cooling function is active. " - ::= { airPAStatus 2 } - -airPASetpointTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature setpoint in Fahrenheit to which the unit is controlling. " - ::= { airPAStatus 3 } - -airPASetpointTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature setpoint in Celsius to which the unity is controlling. " - ::= { airPAStatus 4 } - -airPABlowerSpeed OBJECT-TYPE - SYNTAX INTEGER { - speedLOW (1), - speedHIGH (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit's blower speed setting. - - LOW(1) The blower speed is low. - HIGH(2) The blower speed is high. " - ::= { airPAStatus 5 } - -airPACompressor OBJECT-TYPE - SYNTAX INTEGER { - statusON (1), - statusOFF (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit's compressor status. - - ON(1) The compressor is turned on. - OFF(2) The compressor is turned off. " - ::= { airPAStatus 6 } - -airPACondenserFan OBJECT-TYPE - SYNTAX INTEGER { - statusON (1), - statusOFF (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit's condenser fan status. - - ON(1) The condenser fan is turned on. - OFF(2) The condenser fan is turned off. " - ::= { airPAStatus 7 } - -airPACondensatePump OBJECT-TYPE - SYNTAX INTEGER { - statusON (1), - statusOFF (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit's condensate pump status. - - ON(1) The condensate pump is turned on. - OFF(2) The condensate pump is turned off. " - ::= { airPAStatus 8 } - -airPASupplyTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The supply temperature in degrees Fahrenheit. " - ::= { airPAStatus 9 } - -airPASupplyTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The supply temperature in degrees Celsius. " - ::= { airPAStatus 10 } - -airPAReturnTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The return temperature in degrees Fahrenheit. " - ::= { airPAStatus 11 } - -airPAReturnTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The return temperature in degrees Celsius. " - ::= { airPAStatus 12 } - -airPARemoteTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remote temperature in degrees Fahrenheit. " - ::= { airPAStatus 13 } - -airPARemoteTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remote temperature in degrees Celsius. " - ::= { airPAStatus 14 } - -airPARemoteHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remote humidity. " - ::= { airPAStatus 15 } - --- air InRow Air Conditioners --- airIR AIR CONDITIONER Alarm Status - shared across all IR products - -airIRAlarmConditionsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active alarm conditions in the airIRAlarmConditionTable." - ::= { airIRAlarms 1 } - -airIRAlarmConditionsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRAlarmConditionsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of active alarm conditions for the device." - ::= { airIRAlarms 2 } - -airIRAlarmConditionsEntry OBJECT-TYPE - SYNTAX AirIRAlarmConditionsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Alarm condition specification" - INDEX { airIRAlarmConditionsIndex } - ::= { airIRAlarmConditionsTable 1 } - -AirIRAlarmConditionsEntry ::= SEQUENCE { - airIRAlarmConditionsIndex INTEGER, - airIREventCode INTEGER, - airIRAlarmDescription DisplayString - } - -airIRAlarmConditionsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "Alarm condition index." - ::= { airIRAlarmConditionsEntry 1 } - -airIREventCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "Code for the alarm." - ::= { airIRAlarmConditionsEntry 2 } - -airIRAlarmDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Description of the alarm." - ::= { airIRAlarmConditionsEntry 3 } - --- airIRRC AIR CONDITIONER Group Status - -airIRRCGroupStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group coolant output in tenths of kW." - ::= { airIRRCGroupStatus 1 } - -airIRRCGroupStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group coolant demand in tenths of kW." - ::= { airIRRCGroupStatus 2 } - -airIRRCGroupStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group air flow in cubic feet per minute." - ::= { airIRRCGroupStatus 3 } - -airIRRCGroupStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group air flow in liters per second." - ::= { airIRRCGroupStatus 4 } - -airIRRCGroupStatusMaxRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group maximum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRCGroupStatus 5 } - -airIRRCGroupStatusMaxRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group maximum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRCGroupStatus 6 } - -airIRRCGroupStatusMinRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group minimum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRCGroupStatus 7 } - -airIRRCGroupStatusMinRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group minimum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRCGroupStatus 8 } - -airIRRCGroupStatusActiveFlowControlStatus OBJECT-TYPE - SYNTAX INTEGER { - under (1), - okay (2), - over (3), - notApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status of the active flow control - system." - ::= { airIRRCGroupStatus 9 } - - --- airIRRC AIR CONDITIONER Group Setpoints - -airIRRCGroupSetpointsCoolUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRCGroupSetpoints 1 } - -airIRRCGroupSetpointsCoolMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Celsius." - ::= { airIRRCGroupSetpoints 2 } - -airIRRCGroupSetpointsSupplyAirUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRCGroupSetpoints 3 } - -airIRRCGroupSetpointsSupplyAirMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRRCGroupSetpoints 4 } - -airIRRCGroupSetpointsFanSpeedPreference OBJECT-TYPE - SYNTAX INTEGER { - low (1), - med-low (2), - med (3), - med-high (4), - high (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The preferred fan speed setting." - ::= { airIRRCGroupSetpoints 5 } - -airIRRCGroupSetpointsFanSpeedControl OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The fan speed control setting. - Automatic(1) - controller manages fan speed. - Manual(2) - fan speed is fixed and set by the fan speed preference. - See airIRRCGroupSetpointsFanSpeedPreference." - ::= { airIRRCGroupSetpoints 6 } - -airIRRCGroupSetpointsActiveFlowControlBias OBJECT-TYPE - SYNTAX INTEGER { - positive (1), - slightlyPositive (2), - zero (3), - slightlyNegative (4), - negative (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The active flow control bias setting." - ::= { airIRRCGroupSetpoints 7 } - --- airIRRC AIR CONDITIONER Group Config - -airIRRCGroupConfigNumberofCoolingUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cooling units present in the group." - ::= { airIRRCGroupConfig 1 } - -airIRRCGroupConfigConfigurationType OBJECT-TYPE - SYNTAX INTEGER { - racs (1), - hacs (2), - in-row (3), - cacs (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group configuration type." - ::= { airIRRCGroupConfig 2 } - -airIRRCGroupConfigPctGlycol OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The glycol mixture in percent." - ::= { airIRRCGroupConfig 3 } - -airIRRCGroupConfigCoolGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the PID in hundredths." - ::= { airIRRCGroupConfig 4 } - -airIRRCGroupConfigCoolResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the PID in hundredths." - ::= { airIRRCGroupConfig 5 } - -airIRRCGroupConfigCoolDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the PID in hundredths." - ::= { airIRRCGroupConfig 6 } - -airIRRCGroupConfigMaxFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum desired fan speed setting in percent." - ::= { airIRRCGroupConfig 7 } - -airIRRCGroupConfigNumberOfActiveFlowControllers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of active flow controllers - present in the group." - ::= { airIRRCGroupConfig 8 } - -airIRRCGroupConfigActiveFlowControllerLampTest OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turns off/on the active flow - controller lamp test." - ::= { airIRRCGroupConfig 9 } - -airIRRCGroupConfigAltitudeUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in feet." - ::= { airIRRCGroupConfig 10 } - -airIRRCGroupConfigAltitudeMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in meters." - ::= { airIRRCGroupConfig 11 } - --- airIRRC AIR CONDITIONER UNIT Status - -airIRRCUnitStatusOperateMode OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - on (2), - idle (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling unit operating mode." - ::= { airIRRCUnitStatus 1 } - -airIRRCUnitStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling output in tenths of kW." - ::= { airIRRCUnitStatus 2 } - -airIRRCUnitStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling demand in tenths of kW." - ::= { airIRRCUnitStatus 3 } - -airIRRCUnitStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in cubic feet per minute." - ::= { airIRRCUnitStatus 4 } - -airIRRCUnitStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in hundredths of - liters per second." - ::= { airIRRCUnitStatus 5 } - -airIRRCUnitStatusRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRCUnitStatus 6 } - -airIRRCUnitStatusRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRCUnitStatus 7 } - -airIRRCUnitStatusSupplyAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Fahrenheit." - ::= { airIRRCUnitStatus 8 } - -airIRRCUnitStatusSupplyAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Celsius." - ::= { airIRRCUnitStatus 9 } - -airIRRCUnitStatusReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRRCUnitStatus 10 } - -airIRRCUnitStatusReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Celsius." - ::= { airIRRCUnitStatus 11 } - -airIRRCUnitStatusContainmtDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in - hundredths of inches of water." - ::= { airIRRCUnitStatus 12 } - -airIRRCUnitStatusContainmtDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in Pa." - ::= { airIRRCUnitStatus 13 } - -airIRRCUnitStatusFilterDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in - hundredths of inches of water." - ::= { airIRRCUnitStatus 14 } - -airIRRCUnitStatusFilterDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in Pa." - ::= { airIRRCUnitStatus 15 } - -airIRRCUnitStatusFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit average fan speed in tenths of percent." - ::= { airIRRCUnitStatus 16 } - -airIRRCUnitStatusInputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the input contact." - ::= { airIRRCUnitStatus 17 } - -airIRRCUnitStatusOutputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the output relay." - ::= { airIRRCUnitStatus 18 } - -airIRRCUnitStatusActivePowerSource OBJECT-TYPE - SYNTAX INTEGER { - sourceA (1), - sourceB (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power source that is powering the unit." - ::= { airIRRCUnitStatus 19 } - -airIRRCUnitStatusFluidValvePosition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid valve position in percent open." - ::= { airIRRCUnitStatus 20 } - -airIRRCUnitStatusFluidFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid flow in tenths of gallons per minute." - ::= { airIRRCUnitStatus 21 } - -airIRRCUnitStatusFluidFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid flow in hundredths of liters per second." - ::= { airIRRCUnitStatus 22 } - -airIRRCUnitStatusEnteringFluidTemperatureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the entering fluid in - tenths of degrees Fahrenheit." - ::= { airIRRCUnitStatus 23 } - -airIRRCUnitStatusEnteringFluidTemperatureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the entering fluid in - tenths of degrees Celsius." - ::= { airIRRCUnitStatus 24 } - -airIRRCUnitStatusLeavingFluidTemperatureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the Leaving fluid in - tenths of degrees Fahrenheit." - ::= { airIRRCUnitStatus 25 } - -airIRRCUnitStatusLeavingFluidTemperatureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the Leaving fluid in - tenths of degrees Celsius." - ::= { airIRRCUnitStatus 26 } - - --- airIRRC AIR CONDITIONER UNIT Ident - -airIRRCUnitIdentID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit identification number." - ::= { airIRRCUnitIdent 1 } - -airIRRCUnitIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit name." - ::= { airIRRCUnitIdent 2 } - -airIRRCUnitIdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit location." - ::= { airIRRCUnitIdent 3 } - -airIRRCUnitIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit model number." - ::= { airIRRCUnitIdent 4 } - -airIRRCUnitIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit serial number." - ::= { airIRRCUnitIdent 5 } - -airIRRCUnitIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit firmware version." - ::= { airIRRCUnitIdent 6 } - -airIRRCUnitIdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit controller hardware revision." - ::= { airIRRCUnitIdent 7 } - -airIRRCUnitIdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit manufacture date." - ::= { airIRRCUnitIdent 8 } - - --- airIRRC AIR CONDITIONER UNIT Runhours - -airIRRCUnitRunHoursAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit air filter run hours." - ::= { airIRRCUnitRunHours 1 } - -airIRRCUnitRunHoursFan1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 1 run hours." - ::= { airIRRCUnitRunHours 2 } - -airIRRCUnitRunHoursFan2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 2 run hours." - ::= { airIRRCUnitRunHours 3 } - -airIRRCUnitRunHoursFan3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 3 run hours." - ::= { airIRRCUnitRunHours 4 } - -airIRRCUnitRunHoursFan4 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 4 run hours." - ::= { airIRRCUnitRunHours 5 } - -airIRRCUnitRunHoursFan5 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 5 run hours." - ::= { airIRRCUnitRunHours 6 } - -airIRRCUnitRunHoursFan6 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 6 run hours." - ::= { airIRRCUnitRunHours 7 } - -airIRRCUnitRunHoursFan7 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 7 run hours." - ::= { airIRRCUnitRunHours 8} - -airIRRCUnitRunHoursFan8 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 8 run hours." - ::= { airIRRCUnitRunHours 9 } - -airIRRCUnitRunHoursFanPowerSupplyLeft OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan left power supply run hours." - ::= { airIRRCUnitRunHours 10 } - -airIRRCUnitRunHoursFanPowerSupplyRight OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan right power supply run hours." - ::= { airIRRCUnitRunHours 11 } - -airIRRCUnitRunHoursCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensate pump run hours." - ::= { airIRRCUnitRunHours 12 } - -airIRRCUnitRunHoursFanPowerSupplyFeedALeft OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan, DC power feed A, left power supply run hours. - This is only valid for a DC input unit." - ::= { airIRRCUnitRunHours 13 } - -airIRRCUnitRunHoursFanPowerSupplyFeedARight OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan, DC power feed A, right power supply run hours. - This is only valid for a DC input unit." - ::= { airIRRCUnitRunHours 14 } - -airIRRCUnitRunHoursFanPowerSupplyFeedBLeft OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan, DC power feed B, left power supply run hours. - This is only valid for a DC input unit." - ::= { airIRRCUnitRunHours 15 } - -airIRRCUnitRunHoursFanPowerSupplyFeedBRight OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan, DC power feed B, right power supply run hours. - This is only valid for a DC input unit." - ::= { airIRRCUnitRunHours 16 } - --- airIRRC AIR CONDITIONER UNIT Service Intervals - -airIRRCUnitServiceIntervalsAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Air filter service interval in weeks." - ::= { airIRRCUnitServiceIntervals 1 } - -airIRRCUnitServiceIntervalsAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The air filter service interval alarm enable/disable." - ::= { airIRRCUnitServiceIntervals 2 } - - --- airIRRC AIR CONDITIONER UNIT Thresholds - -airIRRCUnitThresholdsRackInletHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRCUnitThresholds 1 } - -airIRRCUnitThresholdsRackInletHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRCUnitThresholds 2 } - -airIRRCUnitThresholdsSupplyAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRCUnitThresholds 3 } - -airIRRCUnitThresholdsSupplyAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRCUnitThresholds 4 } - -airIRRCUnitThresholdsReturnAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRCUnitThresholds 5 } - -airIRRCUnitThresholdsReturnAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRCUnitThresholds 6 } - -airIRRCUnitThresholdsEnteringFluidHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit entering fluid high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRCUnitThresholds 7 } - -airIRRCUnitThresholdsEnteringFluidHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit incoming fluid high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRCUnitThresholds 8 } - - --- airIRRC AIR CONDITIONER UNIT Config - -airIRRCUnitConfigCoolCapacity OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - maximum (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The cooling capacity options setting." - ::= { airIRRCUnitConfig 1 } - -airIRRCUnitConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The startup delay in seconds." - ::= { airIRRCUnitConfig 2 } - -airIRRCUnitConfigIdleOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The idle on leak options setting." - ::= { airIRRCUnitConfig 3 } - -airIRRCUnitConfigPowerSource OBJECT-TYPE - SYNTAX INTEGER { - sourceA (1), - sourceB (2), - sourceAandB (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The configured power source of the unit." - ::= { airIRRCUnitConfig 4 } - -airIRRCUnitConfigInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the input contact." - ::= { airIRRCUnitConfig 5 } - -airIRRCUnitConfigOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the output relay." - ::= { airIRRCUnitConfig 6 } - -airIRRCUnitConfigOutputSource OBJECT-TYPE - SYNTAX INTEGER { - anyAlarm (1), - criticalAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The source of output relay change." - ::= { airIRRCUnitConfig 7 } - -airIRRCUnitConfigIdleOnCoolFail OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The idle on cool fail options setting. - If yes, the system will go into idle mode - when a cooling failure is detected. - If no, the system will not go into idle mode - when a cooling failure is detected. " - ::= { airIRRCUnitConfig 8 } - - --- airIRRP100 AIR CONDITIONER Group Status - -airIRRP100GroupStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group air flow in cubic feet per minute." - ::= { airIRRP100GroupStatus 1 } - -airIRRP100GroupStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group air flow in liters per second." - ::= { airIRRP100GroupStatus 2 } - -airIRRP100GroupStatusMaxRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group maximum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP100GroupStatus 3 } - -airIRRP100GroupStatusMaxRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group maximum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRP100GroupStatus 4 } - -airIRRP100GroupStatusMinRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group minimum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP100GroupStatus 5 } - -airIRRP100GroupStatusMinRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group minimum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRP100GroupStatus 6 } - -airIRRP100GroupStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group coolant demand in tenths of kiloWatts." - ::= { airIRRP100GroupStatus 7 } - -airIRRP100GroupStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group coolant output in tenths of kiloWatts." - ::= { airIRRP100GroupStatus 8 } - -airIRRP100GroupStatusHumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of humidification the group is demanding - from the humidifiers in percent." - ::= { airIRRP100GroupStatus 9 } - -airIRRP100GroupStatusHumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual amount of humidification the group is - supplying in percent." - ::= { airIRRP100GroupStatus 10 } - -airIRRP100GroupStatusDehumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of dehumidification the group is demanding - from the electric heaters in percent." - ::= { airIRRP100GroupStatus 11 } - -airIRRP100GroupStatusDehumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual amount of dehumidification the group is - supplying in percent." - ::= { airIRRP100GroupStatus 12 } - -airIRRP100GroupStatusReheatDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of heating the group is demanding - from the electric heaters in percent." - ::= { airIRRP100GroupStatus 13 } - -airIRRP100GroupStatusReheatOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual amount of heating the group is - supplying in percent." - ::= { airIRRP100GroupStatus 14 } - -airIRRP100GroupStatusActiveFlowControlStatus OBJECT-TYPE - SYNTAX INTEGER { - under (1), - okay (2), - over (3), - notApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status of the active flow control - system." - ::= { airIRRP100GroupStatus 15 } - -airIRRP100GroupStatusDewPointTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group average dew point temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP100GroupStatus 16 } - -airIRRP100GroupStatusDewPointTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group average dew point temperature in tenths of - degrees Celsius." - ::= { airIRRP100GroupStatus 17 } - - --- airIRRP100 AIR CONDITIONER Group Setpoints - -airIRRP100GroupSetpointsCoolUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRP100GroupSetpoints 1 } - -airIRRP100GroupSetpointsCoolMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Celsius." - ::= { airIRRP100GroupSetpoints 2 } - -airIRRP100GroupSetpointsSupplyAirUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRP100GroupSetpoints 3 } - -airIRRP100GroupSetpointsSupplyAirMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRRP100GroupSetpoints 4 } - -airIRRP100GroupSetpointsHumidify OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group humidify setpoint in tenths of - percent relative humidity." - ::= { airIRRP100GroupSetpoints 5 } - -airIRRP100GroupSetpointsDehumidify OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group dehumidify setpoint in tenths of - percent relative humidity." - ::= { airIRRP100GroupSetpoints 6 } - -airIRRP100GroupSetpointsDehumidifyDeadband OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group dehumidify deadband in percent relative humidity." - ::= { airIRRP100GroupSetpoints 7 } - -airIRRP100GroupSetpointsReheatUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRP100GroupSetpoints 8 } - -airIRRP100GroupSetpointsReheatMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRRP100GroupSetpoints 9 } - -airIRRP100GroupSetpointsFanSpeedPreference OBJECT-TYPE - SYNTAX INTEGER { - low (1), - med-low (2), - med (3), - med-high (4), - high (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The preferred fan speed setting." - ::= { airIRRP100GroupSetpoints 10 } - -airIRRP100GroupSetpointsFanSpeedControl OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The fan speed control setting." - ::= { airIRRP100GroupSetpoints 11 } - -airIRRP100GroupSetpointsActiveFlowControlBias OBJECT-TYPE - SYNTAX INTEGER { - positive (1), - slightlyPositive (2), - zero (3), - slightlyNegative (4), - negative (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The active flow control bias setting." - ::= { airIRRP100GroupSetpoints 12 } - --- airIRRP100 AIR CONDITIONER Group Config - -airIRRP100GroupConfigNumberofCoolingUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cooling units present in the group." - ::= { airIRRP100GroupConfig 1 } - -airIRRP100GroupConfigConfigurationType OBJECT-TYPE - SYNTAX INTEGER { - racs (1), - hacs (2), - in-row (3), - cacs (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group configuration type." - ::= { airIRRP100GroupConfig 2 } - -airIRRP100GroupConfigCoolGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the cool PID in hundredths." - ::= { airIRRP100GroupConfig 3 } - -airIRRP100GroupConfigCoolResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the cool PID in hundredths." - ::= { airIRRP100GroupConfig 4 } - -airIRRP100GroupConfigCoolDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the cool PID in hundredths." - ::= { airIRRP100GroupConfig 5 } - -airIRRP100GroupConfigHumidifySensitivityBand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The percent relative humidity below the setpoint that - will cause the humidifier to run at 100% capacity." - ::= { airIRRP100GroupConfig 6 } - -airIRRP100GroupConfigReheatGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the reheat PID in hundredths." - ::= { airIRRP100GroupConfig 7 } - -airIRRP100GroupConfigReheatResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the reheat PID in hundredths." - ::= { airIRRP100GroupConfig 8 } - -airIRRP100GroupConfigReheatDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the reheat PID in hundredths." - ::= { airIRRP100GroupConfig 9 } - -airIRRP100GroupConfigNumberofBackupUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of backup units." - ::= { airIRRP100GroupConfig 10 } - -airIRRP100GroupConfigRuntimeBalancingEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable runtime balancing feature." - ::= { airIRRP100GroupConfig 11 } - -airIRRP100GroupConfigLoadAssistEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable load assist feature." - ::= { airIRRP100GroupConfig 12 } - -airIRRP100GroupConfigFullRPBackups OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of full featured RPs that can be used as backup units." - ::= { airIRRP100GroupConfig 13 } - -airIRRP100GroupConfigMaxFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum desired fan speed setting in percent." - ::= { airIRRP100GroupConfig 14 } - -airIRRP100GroupConfigNumberOfActiveFlowControllers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of active flow controllers - present in the group." - ::= { airIRRP100GroupConfig 15 } - -airIRRP100GroupConfigActiveFlowControllerLampTest OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turns off/on the active flow - controller lamp test." - ::= { airIRRP100GroupConfig 16 } - -airIRRP100GroupConfigAltitudeUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in feet." - ::= { airIRRP100GroupConfig 17 } - -airIRRP100GroupConfigAltitudeMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in meters." - ::= { airIRRP100GroupConfig 18 } - --- airIRRP100 AIR CONDITIONER UNIT Status - -airIRRP100UnitStatusOperateMode OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - on (2), - idle (3), - prestart (4), - service (5), - backup (6), - assist (7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling unit operating mode." - ::= { airIRRP100UnitStatus 1 } - -airIRRP100UnitStatusRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP100UnitStatus 2 } - -airIRRP100UnitStatusRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRP100UnitStatus 3 } - -airIRRP100UnitStatusSupplyAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP100UnitStatus 4 } - -airIRRP100UnitStatusSupplyAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Celsius." - ::= { airIRRP100UnitStatus 5 } - -airIRRP100UnitStatusReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP100UnitStatus 6 } - -airIRRP100UnitStatusReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Celsius." - ::= { airIRRP100UnitStatus 7 } - -airIRRP100UnitStatusSupplyHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The relative humidity of the supply air in - tenths of percent." - ::= { airIRRP100UnitStatus 8 } - -airIRRP100UnitStatusReturnHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The relative humidity of the return air in - tenths of percent." - ::= { airIRRP100UnitStatus 9 } - -airIRRP100UnitStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in cubic feet per minute." - ::= { airIRRP100UnitStatus 10 } - -airIRRP100UnitStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in hundredths of - liters per second." - ::= { airIRRP100UnitStatus 11 } - -airIRRP100UnitStatusFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit average fan speed in tenths of percent." - ::= { airIRRP100UnitStatus 12 } - -airIRRP100UnitStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling demand in tenths of kiloWatts." - ::= { airIRRP100UnitStatus 13 } - -airIRRP100UnitStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling output in tenths of kiloWatts." - ::= { airIRRP100UnitStatus 14 } - -airIRRP100UnitStatusHumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of humidification the unit is demanding - from the humidifier in percent." - ::= { airIRRP100UnitStatus 15 } - -airIRRP100UnitStatusHumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual humidification output of the unit - in percent." - ::= { airIRRP100UnitStatus 16 } - -airIRRP100UnitStatusDehumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of dehumidification the unit is - demanding in percent." - ::= { airIRRP100UnitStatus 17 } - -airIRRP100UnitStatusDehumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual dehumidification output of the unit - in percent." - ::= { airIRRP100UnitStatus 18 } - -airIRRP100UnitStatusReheatDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of heating the unit is demanding - from the electric heater in percent." - ::= { airIRRP100UnitStatus 19 } - -airIRRP100UnitStatusReheatOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual heating output of the unit - in percent." - ::= { airIRRP100UnitStatus 20 } - -airIRRP100UnitStatusInputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the input contact." - ::= { airIRRP100UnitStatus 21 } - -airIRRP100UnitStatusOutputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the output relay." - ::= { airIRRP100UnitStatus 22 } - -airIRRP100UnitStatusRackInletTemperature1US OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Fahrenheit." - ::= { airIRRP100UnitStatus 23 } - -airIRRP100UnitStatusRackInletTemperature1Metric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Celsius." - ::= { airIRRP100UnitStatus 24 } - -airIRRP100UnitStatusRackInletTemperature2US OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Fahrenheit." - ::= { airIRRP100UnitStatus 25 } - -airIRRP100UnitStatusRackInletTemperature2Metric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Celsius." - ::= { airIRRP100UnitStatus 26 } - -airIRRP100UnitStatusRackInletTemperature3US OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Fahrenheit." - ::= { airIRRP100UnitStatus 27 } - -airIRRP100UnitStatusRackInletTemperature3Metric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Celsius." - ::= { airIRRP100UnitStatus 28 } - -airIRRP100UnitStatusFilterDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in - hundredths of inches of water." - ::= { airIRRP100UnitStatus 29 } - -airIRRP100UnitStatusFilterDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in Pa." - ::= { airIRRP100UnitStatus 30 } - -airIRRP100UnitStatusContainmtDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in - hundredths of inches of water." - ::= { airIRRP100UnitStatus 31 } - -airIRRP100UnitStatusContainmtDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in Pa." - ::= { airIRRP100UnitStatus 32 } - -airIRRP100UnitStatusHumidifierCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidifier current of the unit - in tenths of amperes." - ::= { airIRRP100UnitStatus 33 } - -airIRRP100UnitStatusHumidifierWaterConductivity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The water conductivity in the humidifier of the unit - in microSiemens/cm." - ::= { airIRRP100UnitStatus 34 } - -airIRRP100UnitStatusCompressorDriveSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The compressor drive speed in hundredths of Hertz." - ::= { airIRRP100UnitStatus 35 } - -airIRRP100UnitStatusCompressorDrivePower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The compressor drive power consumption in - tenths of kiloWatts." - ::= { airIRRP100UnitStatus 36 } - -airIRRP100UnitStatusCompressorDriveVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The compressor drive voltage consumption in - tenths of volts." - ::= { airIRRP100UnitStatus 37 } - -airIRRP100UnitStatusCompressorDriveCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The compressor drive voltage consumption in - tenths of amperes." - ::= { airIRRP100UnitStatus 38 } - -airIRRP100UnitStatusCompressorDriveDCLinkVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The compressor drive DC link voltage in - tenths of volts." - ::= { airIRRP100UnitStatus 39 } - -airIRRP100UnitStatusCompressorDriveHeatSinkTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the compressor drive heatsink - in tenths of degrees Fahrenheit." - ::= { airIRRP100UnitStatus 40 } - -airIRRP100UnitStatusCompressorDriveHeatSinkTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the compressor drive heatsink - in tenths of degrees Celsius." - ::= { airIRRP100UnitStatus 41 } - -airIRRP100UnitStatusCompressorDriveControlCardTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the compressor drive control card - in tenths of degrees Fahrenheit." - ::= { airIRRP100UnitStatus 42 } - -airIRRP100UnitStatusCompressorDriveControlCardTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the compressor drive control card - in tenths of degrees Celsius." - ::= { airIRRP100UnitStatus 43 } - -airIRRP100UnitStatusCompressorDriveWarningStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The four byte warning status of the compressor drive - in hexadecimal." - ::= { airIRRP100UnitStatus 44 } - -airIRRP100UnitStatusCompressorDriveAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The four byte alarm status of the compressor drive - in hexadecimal." - ::= { airIRRP100UnitStatus 45 } - -airIRRP100UnitStatusSuctionPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit suction pressure in pounds per square inch (PSI)." - ::= { airIRRP100UnitStatus 46 } - -airIRRP100UnitStatusSuctionPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit suction pressure in kiloPascals (kPa)." - ::= { airIRRP100UnitStatus 47 } - -airIRRP100UnitStatusDischargePressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit discharge pressure in pounds per square inch (PSI)." - ::= { airIRRP100UnitStatus 48 } - -airIRRP100UnitStatusDischargePressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit discharge pressure in kiloPascals (kPa)." - ::= { airIRRP100UnitStatus 49 } - -airIRRP100UnitStatusLeakSensor OBJECT-TYPE - SYNTAX INTEGER { - no-leak (1), - leak (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state (no-leak/leak) of the leak sensor." - ::= { airIRRP100UnitStatus 50 } - --- airIRRP100 AIR CONDITIONER UNIT Ident - -airIRRP100UnitIdentID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit identification number." - ::= { airIRRP100UnitIdent 1 } - -airIRRP100UnitIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit name." - ::= { airIRRP100UnitIdent 2 } - -airIRRP100UnitIdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit location." - ::= { airIRRP100UnitIdent 3 } - -airIRRP100UnitIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit model number." - ::= { airIRRP100UnitIdent 4 } - -airIRRP100UnitIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit serial number." - ::= { airIRRP100UnitIdent 5 } - -airIRRP100UnitIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit firmware version." - ::= { airIRRP100UnitIdent 6 } - -airIRRP100UnitIdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit controller hardware revision." - ::= { airIRRP100UnitIdent 7 } - -airIRRP100UnitIdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit manufacture date." - ::= { airIRRP100UnitIdent 8 } - - --- airIRRP100 AIR CONDITIONER UNIT Runhours - -airIRRP100UnitRunHoursAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit air filter run hours." - ::= { airIRRP100UnitRunHours 1 } - -airIRRP100UnitRunHoursCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensate pump run hours." - ::= { airIRRP100UnitRunHours 2 } - -airIRRP100UnitRunHoursHumidifier OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan right power supply run hours." - ::= { airIRRP100UnitRunHours 3 } - -airIRRP100UnitRunHoursFan1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 1 run hours." - ::= { airIRRP100UnitRunHours 4 } - -airIRRP100UnitRunHoursHeater1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit heater 1 run hours." - ::= { airIRRP100UnitRunHours 5 } - -airIRRP100UnitRunHoursFan2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 2 run hours." - ::= { airIRRP100UnitRunHours 6 } - -airIRRP100UnitRunHoursHeater2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit Heater 2 run hours." - ::= { airIRRP100UnitRunHours 7 } - -airIRRP100UnitRunHoursCompressor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit compressor run hours." - ::= { airIRRP100UnitRunHours 8 } - -airIRRP100UnitRunHoursSystem OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total system run hours." - ::= { airIRRP100UnitRunHours 9 } - - --- airIRRP100 AIR CONDITIONER UNIT Service Intervals - -airIRRP100UnitServiceIntervalAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Air filter service interval in weeks." - ::= { airIRRP100UnitServiceIntervals 1 } - -airIRRP100UnitServiceIntervalAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The air filter service interval alarm enable/disable." - ::= { airIRRP100UnitServiceIntervals 2 } - -airIRRP100UnitServiceIntervalHumidifier OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier service interval in weeks." - ::= { airIRRP100UnitServiceIntervals 3 } - -airIRRP100UnitServiceIntervalHumidifierAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidifier service interval alarm enable/disable." - ::= { airIRRP100UnitServiceIntervals 4 } - -airIRRP100UnitServiceIntervalHeater OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Heater service interval in weeks." - ::= { airIRRP100UnitServiceIntervals 5 } - -airIRRP100UnitServiceIntervalHeaterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The heater service interval alarm enable/disable." - ::= { airIRRP100UnitServiceIntervals 6 } - -airIRRP100UnitServiceIntervalCompressor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor service interval in weeks." - ::= { airIRRP100UnitServiceIntervals 7 } - -airIRRP100UnitServiceIntervalCompressorAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The compressor service interval alarm enable/disable." - ::= { airIRRP100UnitServiceIntervals 8 } - -airIRRP100UnitServiceIntervalCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Condensate pump service interval in weeks." - ::= { airIRRP100UnitServiceIntervals 9 } - -airIRRP100UnitServiceIntervalCondensatePumpAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The condensate pump service interval alarm enable/disable." - ::= { airIRRP100UnitServiceIntervals 10 } - -airIRRP100UnitServiceIntervalFans OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Fans service interval in weeks." - ::= { airIRRP100UnitServiceIntervals 11 } - -airIRRP100UnitServiceIntervalFansAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The fans service interval alarm enable/disable." - ::= { airIRRP100UnitServiceIntervals 12 } - - - --- airIRRP100 AIR CONDITIONER UNIT Thresholds - -airIRRP100UnitThresholdsRackInletHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP100UnitThresholds 1 } - -airIRRP100UnitThresholdsRackInletHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRP100UnitThresholds 2 } - -airIRRP100UnitThresholdsSupplyAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP100UnitThresholds 3 } - -airIRRP100UnitThresholdsSupplyAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRP100UnitThresholds 4 } - -airIRRP100UnitThresholdsReturnAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP100UnitThresholds 5 } - -airIRRP100UnitThresholdsReturnAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRP100UnitThresholds 6 } - -airIRRP100UnitThresholdsSupplyHumidityHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply humidity high threshold in - tenths of percent relative humidity." - ::= { airIRRP100UnitThresholds 7 } - -airIRRP100UnitThresholdsSupplyHumidityLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply humidity low threshold in - tenths of percent relative humidity." - ::= { airIRRP100UnitThresholds 8 } - - --- airIRRP100 AIR CONDITIONER UNIT Config - -airIRRP100UnitConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The startup delay in seconds." - ::= { airIRRP100UnitConfig 1 } - -airIRRP100UnitConfigCoolCapacity OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - maximum (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The cooling capacity options setting." - ::= { airIRRP100UnitConfig 2 } - -airIRRP100UnitConfigIdleOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The idle on leak options setting." - ::= { airIRRP100UnitConfig 3 } - -airIRRP100UnitConfigInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the input contact." - ::= { airIRRP100UnitConfig 4 } - -airIRRP100UnitConfigOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the output relay." - ::= { airIRRP100UnitConfig 5 } - -airIRRP100UnitConfigOutputSource OBJECT-TYPE - SYNTAX INTEGER { - anyAlarm (1), - criticalAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The source of output relay change." - ::= { airIRRP100UnitConfig 6 } - -airIRRP100UnitConfigHumidifyEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable humidification." - ::= { airIRRP100UnitConfig 7 } - -airIRRP100UnitConfigHumidifierControl OBJECT-TYPE - SYNTAX INTEGER { - auto (1), - drainOff (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidifier drain control." - ::= { airIRRP100UnitConfig 8 } - -airIRRP100UnitConfigDehumidifyEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable dehumidification." - ::= { airIRRP100UnitConfig 9 } - -airIRRP100UnitConfigReheatEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable reheat." - ::= { airIRRP100UnitConfig 10 } - -airIRRP100UnitConfigHeatAssistEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable heat assist." - ::= { airIRRP100UnitConfig 11 } - -airIRRP100UnitConfigPowerSourceConfig OBJECT-TYPE - SYNTAX INTEGER { - single (1), - dual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the input power source: (1) single feed or (2) dual feed." - ::= { airIRRP100UnitConfig 12 } - -airIRRP100UnitConfigUnitRoleOverride OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - forcedOn (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When this OID value is (1) automatic, the system determines - which units are used as primary units and which units are used as backups. - When this OID value is (2) forcedOn, the connected unit is set as a primary - unit." - ::= { airIRRP100UnitConfig 13 } - -airIRRP100UnitConfigSecondaryPowerFeedCapability OBJECT-TYPE - SYNTAX INTEGER { - full (1), - reduced (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Available on chilled water units. When the power source config setting - is set to dual, setting this value to reduced (2) will inhibit the heater - and humdifier when the unit is being powered from the secondary - input." - ::= { airIRRP100UnitConfig 14 } - -airIRRP100UnitConfigIdleOnCoolFail OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When this OID value is (1) enable, the unit idles if it detects that it is blowing warm - air into the cold aisle. The unit will attempt to restart at 5 minute intervals." - ::= { airIRRP100UnitConfig 15 } - --- airIRRP500 AIR CONDITIONER Group Status - -airIRRP500GroupStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group air flow in cubic feet per minute." - ::= { airIRRP500GroupStatus 1 } - -airIRRP500GroupStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group air flow in liters per second." - ::= { airIRRP500GroupStatus 2 } - -airIRRP500GroupStatusMaxRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group maximum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP500GroupStatus 3 } - -airIRRP500GroupStatusMaxRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group maximum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRP500GroupStatus 4 } - -airIRRP500GroupStatusMinRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group minimum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP500GroupStatus 5 } - -airIRRP500GroupStatusMinRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group minimum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRP500GroupStatus 6 } - -airIRRP500GroupStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group coolant demand in tenths of kiloWatts." - ::= { airIRRP500GroupStatus 7 } - -airIRRP500GroupStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group coolant output in tenths of kiloWatts." - ::= { airIRRP500GroupStatus 8 } - -airIRRP500GroupStatusHumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of humidification the group is demanding - from the humidifiers in percent." - ::= { airIRRP500GroupStatus 9 } - -airIRRP500GroupStatusHumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual amount of humidification the group is - supplying in percent." - ::= { airIRRP500GroupStatus 10 } - -airIRRP500GroupStatusDehumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of dehumidification the group is demanding - from the electric heaters in percent." - ::= { airIRRP500GroupStatus 11 } - -airIRRP500GroupStatusDehumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual amount of dehumidification the group is - supplying in percent." - ::= { airIRRP500GroupStatus 12 } - -airIRRP500GroupStatusReheatDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of heating the group is demanding - from the electric heaters in percent." - ::= { airIRRP500GroupStatus 13 } - -airIRRP500GroupStatusReheatOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual amount of heating the group is - supplying in percent." - ::= { airIRRP500GroupStatus 14 } - - -airIRRP500GroupStatusActiveFlowControlStatus OBJECT-TYPE - SYNTAX INTEGER { - under (1), - okay (2), - over (3), - notApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status of the active flow control - system." - ::= { airIRRP500GroupStatus 15 } - -airIRRP500GroupStatusDewPointTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group average dew point temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP500GroupStatus 16 } - -airIRRP500GroupStatusDewPointTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Group average dew point temperature in tenths of - degrees Celsius." - ::= { airIRRP500GroupStatus 17 } - - --- airIRRP500 AIR CONDITIONER Group Setpoints - -airIRRP500GroupSetpointsCoolUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRP500GroupSetpoints 1 } - -airIRRP500GroupSetpointsCoolMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Celsius." - ::= { airIRRP500GroupSetpoints 2 } - -airIRRP500GroupSetpointsSupplyAirUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRP500GroupSetpoints 3 } - -airIRRP500GroupSetpointsSupplyAirMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRRP500GroupSetpoints 4 } - -airIRRP500GroupSetpointsHumidify OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group humidify setpoint in tenths of - percent relative humidity." - ::= { airIRRP500GroupSetpoints 5 } - -airIRRP500GroupSetpointsDehumidify OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group dehumidify setpoint in tenths of - percent relative humidity." - ::= { airIRRP500GroupSetpoints 6 } - -airIRRP500GroupSetpointsDehumidifyDeadband OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group dehumidify deadband in - percent relative humidity." - ::= { airIRRP500GroupSetpoints 7 } - -airIRRP500GroupSetpointsReheatUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRRP500GroupSetpoints 8 } - -airIRRP500GroupSetpointsReheatMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRRP500GroupSetpoints 9 } - -airIRRP500GroupSetpointsFanSpeedPreference OBJECT-TYPE - SYNTAX INTEGER { - low (1), - med-low (2), - med (3), - med-high (4), - high (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The preferred fan speed setting." - ::= { airIRRP500GroupSetpoints 10 } - -airIRRP500GroupSetpointsFanSpeedControl OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The fan speed control setting." - ::= { airIRRP500GroupSetpoints 11 } - -airIRRP500GroupSetpointsActiveFlowControlBias OBJECT-TYPE - SYNTAX INTEGER { - positive (1), - slightlyPositive (2), - zero (3), - slightlyNegative (4), - negative (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The active flow control bias setting." - ::= { airIRRP500GroupSetpoints 12 } - --- airIRRP500 AIR CONDITIONER Group Config - -airIRRP500GroupConfigNumberofCoolingUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cooling units." - ::= { airIRRP500GroupConfig 1 } - -airIRRP500GroupConfigConfigurationType OBJECT-TYPE - SYNTAX INTEGER { - racs (1), - hacs (2), - in-row (3), - cacs (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group configuration type." - ::= { airIRRP500GroupConfig 2 } - -airIRRP500GroupConfigPercentGlycol OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The glycol mixture in percent." - ::= { airIRRP500GroupConfig 3 } - -airIRRP500GroupConfigCoolGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the cool PID in hundredths." - ::= { airIRRP500GroupConfig 4 } - -airIRRP500GroupConfigCoolResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the cool PID in hundredths." - ::= { airIRRP500GroupConfig 5 } - -airIRRP500GroupConfigCoolDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the cool PID in hundredths." - ::= { airIRRP500GroupConfig 6 } - -airIRRP500GroupConfigHumidifySensitivityBand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The percent relative humidity below the setpoint that - will cause the humidifier to run at 100% capacity." - ::= { airIRRP500GroupConfig 7 } - -airIRRP500GroupConfigReheatGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the reheat PID in hundredths." - ::= { airIRRP500GroupConfig 8 } - -airIRRP500GroupConfigReheatResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the reheat PID in hundredths." - ::= { airIRRP500GroupConfig 9 } - -airIRRP500GroupConfigReheatDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the reheat PID in hundredths." - ::= { airIRRP500GroupConfig 10 } - -airIRRP500GroupConfigMaxFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum desired fan speed setting in percent." - ::= { airIRRP500GroupConfig 11 } - -airIRRP500GroupConfigNumberofBackupUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of backup units." - ::= { airIRRP500GroupConfig 12 } - -airIRRP500GroupConfigRuntimeBalancingEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable runtime balancing feature." - ::= { airIRRP500GroupConfig 13 } - -airIRRP500GroupConfigLoadAssistEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable load assist feature." - ::= { airIRRP500GroupConfig 14 } - -airIRRP500GroupConfigFullRPBackups OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of full featured RPs that can be used as backup units." - ::= { airIRRP500GroupConfig 15 } - -airIRRP500GroupConfigNumberOfActiveFlowControllers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of active flow controllers - present in the group." - ::= { airIRRP500GroupConfig 16 } - -airIRRP500GroupConfigActiveFlowControllerLampTest OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turns off/on the active flow - controller lamp test." - ::= { airIRRP500GroupConfig 17 } - -airIRRP500GroupConfigAltitudeUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in feet." - ::= { airIRRP500GroupConfig 18 } - -airIRRP500GroupConfigAltitudeMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in meters." - ::= { airIRRP500GroupConfig 19 } - --- airIRRP500 AIR CONDITIONER UNIT Status - -airIRRP500UnitStatusOperateMode OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - on (2), - idle (3), - prestart (4), - backup (5), - assist (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling unit operating mode." - ::= { airIRRP500UnitStatus 1 } - -airIRRP500UnitStatusMaximumRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum unit rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP500UnitStatus 2 } - -airIRRP500UnitStatusMaximumRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum unit rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRRP500UnitStatus 3 } - -airIRRP500UnitStatusSupplyAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP500UnitStatus 4 } - -airIRRP500UnitStatusSupplyAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Celsius." - ::= { airIRRP500UnitStatus 5 } - -airIRRP500UnitStatusReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRRP500UnitStatus 6 } - -airIRRP500UnitStatusReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Celsius." - ::= { airIRRP500UnitStatus 7 } - -airIRRP500UnitStatusSupplyHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The relative humidity of the supply air in - tenths of percent." - ::= { airIRRP500UnitStatus 8 } - -airIRRP500UnitStatusReturnHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The relative humidity of the return air in - tenths of percent." - ::= { airIRRP500UnitStatus 9 } - -airIRRP500UnitStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in cubic feet per minute." - ::= { airIRRP500UnitStatus 10 } - -airIRRP500UnitStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in hundredths of - liters per second." - ::= { airIRRP500UnitStatus 11 } - -airIRRP500UnitStatusFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit average fan speed in tenths of percent." - ::= { airIRRP500UnitStatus 12 } - -airIRRP500UnitStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling demand in tenths of kiloWatts." - ::= { airIRRP500UnitStatus 13 } - -airIRRP500UnitStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling output in tenths of kiloWatts." - ::= { airIRRP500UnitStatus 14 } - -airIRRP500UnitStatusHumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of humidification the unit is demanding - from the humidifier in percent." - ::= { airIRRP500UnitStatus 15 } - -airIRRP500UnitStatusHumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual humidification output of the unit - in percent." - ::= { airIRRP500UnitStatus 16 } - -airIRRP500UnitStatusDehumidifyDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of dehumidification the unit is - demanding in percent." - ::= { airIRRP500UnitStatus 17 } - -airIRRP500UnitStatusDehumidifyOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual dehumidification output of the unit - in percent." - ::= { airIRRP500UnitStatus 18 } - -airIRRP500UnitStatusReheatDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of heating the unit is demanding - from the electric heater in percent." - ::= { airIRRP500UnitStatus 19 } - -airIRRP500UnitStatusReheatOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual heating output of the unit - in percent." - ::= { airIRRP500UnitStatus 20 } - -airIRRP500UnitStatusInputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the input contact." - ::= { airIRRP500UnitStatus 21 } - -airIRRP500UnitStatusOutputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the output relay." - ::= { airIRRP500UnitStatus 22 } - -airIRRP500UnitStatusRackInletTemperature1US OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Fahrenheit." - ::= { airIRRP500UnitStatus 23 } - -airIRRP500UnitStatusRackInletTemperature1Metric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Celsius." - ::= { airIRRP500UnitStatus 24 } - -airIRRP500UnitStatusRackInletTemperature2US OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Fahrenheit." - ::= { airIRRP500UnitStatus 25 } - -airIRRP500UnitStatusRackInletTemperature2Metric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Celsius." - ::= { airIRRP500UnitStatus 26 } - -airIRRP500UnitStatusRackInletTemperature3US OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Fahrenheit." - ::= { airIRRP500UnitStatus 27 } - -airIRRP500UnitStatusRackInletTemperature3Metric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature sensor in tenths of - degrees Celsius." - ::= { airIRRP500UnitStatus 28 } - -airIRRP500UnitStatusContainmtDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in - hundredths of inches of water." - ::= { airIRRP500UnitStatus 29 } - -airIRRP500UnitStatusContainmtDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in Pa." - ::= { airIRRP500UnitStatus 30 } - -airIRRP500UnitStatusFilterDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in - hundredths of inches of water." - ::= { airIRRP500UnitStatus 31 } - -airIRRP500UnitStatusFilterDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in Pa." - ::= { airIRRP500UnitStatus 32 } - -airIRRP500UnitStatusHumidifierCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The humidifier current of the unit - in tenths of amperes." - ::= { airIRRP500UnitStatus 33 } - -airIRRP500UnitStatusHumidifierWaterConductivity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The water conductivity in the humidifier of the unit - in microSiemens/cm." - ::= { airIRRP500UnitStatus 34 } - -airIRRP500UnitStatusActivePowerSource OBJECT-TYPE - SYNTAX INTEGER { - sourceA (1), - sourceB (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power source that is powering the unit." - ::= { airIRRP500UnitStatus 35 } - -airIRRP500UnitStatusFluidValvePosition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid valve position in percent open." - ::= { airIRRP500UnitStatus 36 } - -airIRRP500UnitStatusFluidFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid flow in tenths of gallons per minute." - ::= { airIRRP500UnitStatus 37 } - -airIRRP500UnitStatusFluidFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The fluid flow in hundredths of liters per second." - ::= { airIRRP500UnitStatus 38 } - -airIRRP500UnitStatusEnteringFluidTemperatureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the entering fluid in - tenths of degrees Fahrenheit." - ::= { airIRRP500UnitStatus 39 } - -airIRRP500UnitStatusEnteringFluidTemperatureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the entering fluid in - tenths of degrees Celsius." - ::= { airIRRP500UnitStatus 40 } - -airIRRP500UnitStatusLeavingFluidTemperatureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the Leaving fluid in - tenths of degrees Fahrenheit." - ::= { airIRRP500UnitStatus 41 } - -airIRRP500UnitStatusLeavingFluidTemperatureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature of the Leaving fluid in - tenths of degrees Celsius." - ::= { airIRRP500UnitStatus 42 } - -airIRRP500UnitStatusLeakSensor OBJECT-TYPE - SYNTAX INTEGER { - no-leak (1), - leak (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state (no-leak/leak) of the leak sensor." - ::= { airIRRP500UnitStatus 43 } - - --- airIRRP500 AIR CONDITIONER UNIT Ident - -airIRRP500UnitIdentID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit identification number." - ::= { airIRRP500UnitIdent 1 } - -airIRRP500UnitIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit name." - ::= { airIRRP500UnitIdent 2 } - -airIRRP500UnitIdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit location." - ::= { airIRRP500UnitIdent 3 } - -airIRRP500UnitIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit model number." - ::= { airIRRP500UnitIdent 4 } - -airIRRP500UnitIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit serial number." - ::= { airIRRP500UnitIdent 5 } - -airIRRP500UnitIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit firmware version." - ::= { airIRRP500UnitIdent 6 } - -airIRRP500UnitIdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit controller hardware revision." - ::= { airIRRP500UnitIdent 7 } - -airIRRP500UnitIdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit manufacture date." - ::= { airIRRP500UnitIdent 8 } - - --- airIRRP500 AIR CONDITIONER UNIT Runhours - -airIRRP500UnitRunHoursAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit air filter run hours in hours." - ::= { airIRRP500UnitRunHours 1 } - -airIRRP500UnitRunHoursCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensate pump run hours in hours." - ::= { airIRRP500UnitRunHours 2 } - -airIRRP500UnitRunHoursHumidifier OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan right power supply run hours in hours." - ::= { airIRRP500UnitRunHours 3 } - -airIRRP500UnitRunHoursFan1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 1 run hours in hours." - ::= { airIRRP500UnitRunHours 4 } - -airIRRP500UnitRunHoursHeater1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit heater 1 run hours in hours." - ::= { airIRRP500UnitRunHours 5 } - -airIRRP500UnitRunHoursFan2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 2 run hours in hours." - ::= { airIRRP500UnitRunHours 6 } - -airIRRP500UnitRunHoursHeater2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit Heater 2 run hours in hours." - ::= { airIRRP500UnitRunHours 7 } - -airIRRP500UnitRunHoursFan3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan 3 run hours in hours." - ::= { airIRRP500UnitRunHours 8 } - -airIRRP500UnitRunHoursHeater3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit heater 3 run hours in hours." - ::= { airIRRP500UnitRunHours 9 } - -airIRRP500UnitRunHoursSystem OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Total system run hours." - ::= { airIRRP500UnitRunHours 10 } - - --- airIRRP500 AIR CONDITIONER UNIT Service Intervals - -airIRRP500UnitServiceIntervalAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Air filter service interval in weeks." - ::= { airIRRP500UnitServiceIntervals 1 } - -airIRRP500UnitServiceIntervalAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The air filter service interval alarm enable/disable." - ::= { airIRRP500UnitServiceIntervals 2 } - -airIRRP500UnitServiceIntervalHumidifier OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier service interval in weeks." - ::= { airIRRP500UnitServiceIntervals 3 } - -airIRRP500UnitServiceIntervalHumidifierAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidifier service interval alarm enable/disable." - ::= { airIRRP500UnitServiceIntervals 4 } - -airIRRP500UnitServiceIntervalHeater OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Heater service interval in weeks." - ::= { airIRRP500UnitServiceIntervals 5 } - -airIRRP500UnitServiceIntervalHeaterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The heater service interval alarm enable/disable." - ::= { airIRRP500UnitServiceIntervals 6 } - -airIRRP500UnitServiceIntervalCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Condensate pump service interval in weeks." - ::= { airIRRP500UnitServiceIntervals 7 } - -airIRRP500UnitServiceIntervalCondensatePumpAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The condensate pump service interval alarm enable/disable." - ::= { airIRRP500UnitServiceIntervals 8 } - -airIRRP500UnitServiceIntervalFans OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Fans service interval in weeks." - ::= { airIRRP500UnitServiceIntervals 9 } - -airIRRP500UnitServiceIntervalFansAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The fans service interval alarm enable/disable." - ::= { airIRRP500UnitServiceIntervals 10 } - - --- airIRRP500 AIR CONDITIONER UNIT Thresholds - -airIRRP500UnitThresholdsRackInletHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP500UnitThresholds 1 } - -airIRRP500UnitThresholdsRackInletHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRP500UnitThresholds 2 } - -airIRRP500UnitThresholdsSupplyAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air temperature high threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP500UnitThresholds 3 } - -airIRRP500UnitThresholdsSupplyAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature high threshold in - tenths of degrees Celsius." - ::= { airIRRP500UnitThresholds 4 } - -airIRRP500UnitThresholdsReturnAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP500UnitThresholds 5 } - -airIRRP500UnitThresholdsReturnAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRP500UnitThresholds 6 } - -airIRRP500UnitThresholdsSupplyHumidityHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply humidity high threshold in - tenths of percent relative humidity." - ::= { airIRRP500UnitThresholds 7 } - -airIRRP500UnitThresholdsSupplyHumidityLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply humidity low threshold in - tenths of percent relative humidity." - ::= { airIRRP500UnitThresholds 8 } - -airIRRP500UnitThresholdsEnteringFluidHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Entering fluid high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRRP500UnitThresholds 9 } - -airIRRP500UnitThresholdsEnteringFluidHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Entering fluid high temperature threshold in - tenths of degrees Celsius." - ::= { airIRRP500UnitThresholds 10 } - - --- airIRRP500 AIR CONDITIONER UNIT Config - -airIRRP500UnitConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The startup delay in seconds." - ::= { airIRRP500UnitConfig 1 } - -airIRRP500UnitConfigCoolCapacity OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - maximum (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The cooling capacity options setting." - ::= { airIRRP500UnitConfig 2 } - -airIRRP500UnitConfigIdleOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The idle on leak options setting." - ::= { airIRRP500UnitConfig 3 } - -airIRRP500UnitConfigInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the input contact." - ::= { airIRRP500UnitConfig 4 } - -airIRRP500UnitConfigOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the output relay." - ::= { airIRRP500UnitConfig 5 } - -airIRRP500UnitConfigOutputSource OBJECT-TYPE - SYNTAX INTEGER { - anyAlarm (1), - criticalAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The source of output relay change." - ::= { airIRRP500UnitConfig 6 } - -airIRRP500UnitConfigHumidifyEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable humidification." - ::= { airIRRP500UnitConfig 7 } - -airIRRP500UnitConfigHumidifierControl OBJECT-TYPE - SYNTAX INTEGER { - auto (1), - drainOff (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The humidifier drain control." - ::= { airIRRP500UnitConfig 8 } - -airIRRP500UnitConfigDehumidifyEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable dehumidification." - ::= { airIRRP500UnitConfig 9 } - -airIRRP500UnitConfigReheatEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable reheat." - ::= { airIRRP500UnitConfig 10 } - -airIRRP500UnitConfigHeatAssistEnable OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/disable heat assist." - ::= { airIRRP500UnitConfig 11 } - -airIRRP500UnitConfigPowerSourceConfig OBJECT-TYPE - SYNTAX INTEGER { - single (1), - dual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Configure the input power source: (1) single feed or (2) dual feed." - ::= { airIRRP500UnitConfig 12 } - -airIRRP500UnitConfigUnitRoleOverride OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - forcedOn (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When this OID value is (1) automatic, the system determines - which units are used as primary units and which units are used as backups. - When this OID value is (2) forcedOn, the connected unit is set as a primary - unit." - ::= { airIRRP500UnitConfig 13 } - -airIRRP500UnitConfigSecondaryPowerFeedCapability OBJECT-TYPE - SYNTAX INTEGER { - full (1), - reduced (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Available on chilled water units. When the power source config setting - is set to dual, setting this value to reduced (2) will inhibit the heater - and humdifier when the unit is being powered from the secondary - input." - ::= { airIRRP500UnitConfig 14 } - -airIRRP500UnitConfigIdleOnCoolFail OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When this OID value is (1) enable, the unit idles if it detects that it is blowing warm - air into the cold aisle. The unit will attempt to restart at 5 minute intervals." - ::= { airIRRP500UnitConfig 15 } - --- airIRSC AIR CONDITIONER Defines - -AirIRSCConfigType ::= INTEGER { - racs (1), - spot (2), - in-row (3) - } - -AirIRSCCapacityControlType ::= INTEGER { - discrete (1), - proportional (2) - } - -AirIRSCFanSpeedPreference ::= INTEGER { - low (1), - med-low (2), - med (3), - med-high (4), - high (5) - } - -AirIRSCFanSpeedControl ::= INTEGER { - automatic (1), - manual (2) - } - --- airIRSC AIR CONDITIONER UNIT Status - -airIRSCUnitStatusOperateMode OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - on (2), - idle (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling unit operating mode." - ::= { airIRSCUnitStatus 1 } - -airIRSCUnitStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling output in tenths of kW." - ::= { airIRSCUnitStatus 2 } - -airIRSCUnitStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling demand in tenths of kW." - ::= { airIRSCUnitStatus 3 } - -airIRSCUnitStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in cubic feet per minute." - ::= { airIRSCUnitStatus 4 } - -airIRSCUnitStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in liters per second." - ::= { airIRSCUnitStatus 5 } - -airIRSCUnitStatusRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 6 } - -airIRSCUnitStatusRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 7 } - -airIRSCUnitStatusSupplyAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 8 } - -airIRSCUnitStatusSupplyAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 9 } - -airIRSCUnitStatusReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 10 } - -airIRSCUnitStatusReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 11 } - -airIRSCUnitStatusSuctionTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit suction temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 12 } - -airIRSCUnitStatusSuctionTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit suction temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 13 } - -airIRSCUnitStatusSuperheatTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit superheat temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 14 } - -airIRSCUnitStatusSuperheatTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit superheat temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 15 } - -airIRSCUnitStatusContainmtDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in - hundredths of inches of water." - ::= { airIRSCUnitStatus 16 } - -airIRSCUnitStatusContainmtDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit containment differential pressure in Pa." - ::= { airIRSCUnitStatus 17 } - -airIRSCUnitStatusFilterDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in - hundredths of inches of water." - ::= { airIRSCUnitStatus 18 } - -airIRSCUnitStatusFilterDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in Pa." - ::= { airIRSCUnitStatus 19 } - -airIRSCUnitStatusSuctionPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit suction pressure in pounds per square inch (PSI)." - ::= { airIRSCUnitStatus 20 } - -airIRSCUnitStatusSuctionPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit suction pressure in kiloPascals (kPa)." - ::= { airIRSCUnitStatus 21 } - -airIRSCUnitStatusDischargePressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit discharge pressure in pounds per square inch (PSI)." - ::= { airIRSCUnitStatus 22 } - -airIRSCUnitStatusDischargePressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit discharge pressure in kiloPascals (kPa)." - ::= { airIRSCUnitStatus 23 } - -airIRSCUnitStatusEvaporatorFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit average evaporator fan speed in tenths of percent." - ::= { airIRSCUnitStatus 24 } - -airIRSCUnitStatusCondenserFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit average condenser fan speed in tenths of percent." - ::= { airIRSCUnitStatus 25 } - -airIRSCUnitStatusInputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the input contact." - ::= { airIRSCUnitStatus 26 } - -airIRSCUnitStatusOutputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the output relay." - ::= { airIRSCUnitStatus 27 } - -airIRSCUnitStatusCondOutletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit condenser outlet air temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 28 } - -airIRSCUnitStatusCondOutletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit condenser outlet air temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 29 } - -airIRSCUnitStatusCondInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit condenser inlet air temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitStatus 30 } - -airIRSCUnitStatusCondInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit condenser inlet air temperature in tenths of - degrees Celsius." - ::= { airIRSCUnitStatus 31 } - -airIRSCUnitStatusCompressor OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state (off/on) of the compressor." - ::= { airIRSCUnitStatus 32 } - -airIRSCUnitStatusLeakSensor OBJECT-TYPE - SYNTAX INTEGER { - no-leak (1), - leak (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state (no-leak/leak) of the leak sensor." - ::= { airIRSCUnitStatus 33 } - --- airIRSC AIR CONDITIONER UNIT Ident - -airIRSCUnitIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit name." - ::= { airIRSCUnitIdent 1 } - -airIRSCUnitIdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit location." - ::= { airIRSCUnitIdent 2 } - -airIRSCUnitIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit model number." - ::= { airIRSCUnitIdent 3 } - -airIRSCUnitIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit serial number." - ::= { airIRSCUnitIdent 4 } - -airIRSCUnitIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit firmware version." - ::= { airIRSCUnitIdent 5 } - -airIRSCUnitIdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit controller hardware revision." - ::= { airIRSCUnitIdent 6 } - -airIRSCUnitIdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the - unit manufacture date." - ::= { airIRSCUnitIdent 7 } - - --- airIRSC AIR CONDITIONER UNIT Runhours - -airIRSCUnitRunHoursAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit air filter run hours." - ::= { airIRSCUnitRunHours 1 } - -airIRSCUnitRunHoursEvaporatorFan1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporator fan 1 run hours." - ::= { airIRSCUnitRunHours 2 } - -airIRSCUnitRunHoursEvaporatorFan2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporator fan 2 run hours." - ::= { airIRSCUnitRunHours 3 } - -airIRSCUnitRunHoursEvaporatorFan3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporator fan 3 run hours." - ::= { airIRSCUnitRunHours 4 } - -airIRSCUnitRunHoursCondenserFan1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condenser fan 1 run hours." - ::= { airIRSCUnitRunHours 5 } - -airIRSCUnitRunHoursCondenserFan2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condenser fan 2 run hours." - ::= { airIRSCUnitRunHours 6 } - -airIRSCUnitRunHoursCondenserFan3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condenser fan 3 run hours." - ::= { airIRSCUnitRunHours 7 } - -airIRSCUnitRunHoursFanPowerSupplyLeft OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan left power supply run hours." - ::= { airIRSCUnitRunHours 8 } - -airIRSCUnitRunHoursFanPowerSupplyRight OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit fan right power supply run hours." - ::= { airIRSCUnitRunHours 9 } - -airIRSCUnitRunHoursCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensate pump run hours." - ::= { airIRSCUnitRunHours 10 } - -airIRSCUnitRunHoursCompressor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit compressor run hours." - ::= { airIRSCUnitRunHours 11 } - - --- airIRSC AIR CONDITIONER UNIT Service Intervals - -airIRSCUnitServiceIntervalsAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Air filter service interval in weeks." - ::= { airIRSCUnitServiceIntervals 1 } - -airIRSCUnitServiceIntervalsAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The air filter service interval alarm enable/disable." - ::= { airIRSCUnitServiceIntervals 2 } - - --- airIRSC AIR CONDITIONER UNIT Thresholds - -airIRSCUnitThresholdsRackInletHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRSCUnitThresholds 1 } - -airIRSCUnitThresholdsRackInletHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRSCUnitThresholds 2 } - -airIRSCUnitThresholdsSupplyAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRSCUnitThresholds 3 } - -airIRSCUnitThresholdsSupplyAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRSCUnitThresholds 4 } - -airIRSCUnitThresholdsReturnAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRSCUnitThresholds 5 } - -airIRSCUnitThresholdsReturnAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRSCUnitThresholds 6 } - --- airIRSC AIR CONDITIONER UNIT Setpoints - -airIRSCUnitSetptsCoolSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitSetpoints 1 } - -airIRSCUnitSetptsCoolSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit cooling setpoint in tenths of - degrees Celsius." - ::= { airIRSCUnitSetpoints 2 } - -airIRSCUnitSetptsCoolDeadbandUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit cooling deadband in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitSetpoints 3 } - -airIRSCUnitSetptsCoolDeadbandMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit cooling deadband in tenths of - degrees Celsius." - ::= { airIRSCUnitSetpoints 4 } - -airIRSCUnitSetptsFanSpeedPreference OBJECT-TYPE - SYNTAX AirIRSCFanSpeedPreference - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The preferred fan speed setting." - ::= { airIRSCUnitSetpoints 5 } - -airIRSCUnitSetptsSupplyAirSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRSCUnitSetpoints 6 } - -airIRSCUnitSetptsSupplyAirSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air setpoint in tenths of - degrees Celsius." - ::= { airIRSCUnitSetpoints 7 } - --- airIRSC AIR CONDITIONER UNIT Config - -airIRSCUnitConfigConfigurationType OBJECT-TYPE - SYNTAX AirIRSCConfigType - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit configuration type." - ::= { airIRSCUnitConfig 1 } - -airIRSCUnitConfigCapacityControlType OBJECT-TYPE - SYNTAX AirIRSCCapacityControlType - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit capacity control." - ::= { airIRSCUnitConfig 2 } - -airIRSCUnitConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The startup delay in seconds." - ::= { airIRSCUnitConfig 3 } - -airIRSCUnitConfigIdleOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The idle on leak options setting." - ::= { airIRSCUnitConfig 4 } - -airIRSCUnitConfigInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the input contact." - ::= { airIRSCUnitConfig 5 } - -airIRSCUnitConfigOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the output relay." - ::= { airIRSCUnitConfig 6 } - -airIRSCUnitConfigOutputSource OBJECT-TYPE - SYNTAX INTEGER { - anyAlarm (1), - criticalAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The source of output relay change." - ::= { airIRSCUnitConfig 7 } - -airIRSCUnitConfigAltitudeUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The altitude of the unit above sea level in feet." - ::= { airIRSCUnitConfig 8 } - -airIRSCUnitConfigAltitudeMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The altitude of the unit above sea level in meters." - ::= { airIRSCUnitConfig 9 } - -airIRSCUnitConfigOpControl OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The unit operational control." - ::= { airIRSCUnitConfig 10 } - - --- airIRSC AIR CONDITIONER GROUP Status - -airIRSCGroupStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group cooling output in tenths of kW." - ::= { airIRSCGroupStatus 1 } - -airIRSCGroupStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group cooling demand in tenths of kW." - ::= { airIRSCGroupStatus 2 } - -airIRSCGroupStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group air flow in cubic feet per minute." - ::= { airIRSCGroupStatus 3 } - -airIRSCGroupStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group air flow in liters per second." - ::= { airIRSCGroupStatus 4 } - -airIRSCGroupStatusMaxRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupStatus 5 } - -airIRSCGroupStatusMaxRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRSCGroupStatus 6 } - -airIRSCGroupStatusMinRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupStatus 7 } - -airIRSCGroupStatusMinRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRSCGroupStatus 8 } - -airIRSCGroupStatusMaxReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupStatus 9 } - -airIRSCGroupStatusMaxReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum return air temperature in tenths of - degrees Celsius." - ::= { airIRSCGroupStatus 10 } - -airIRSCGroupStatusMinReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupStatus 11 } - -airIRSCGroupStatusMinReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum return air temperature in tenths of - degrees Celsius." - ::= { airIRSCGroupStatus 12 } - -airIRSCGroupStatusActiveFlowControlStatus OBJECT-TYPE - SYNTAX INTEGER { - under (1), - okay (2), - over (3), - notApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status of the active flow control - system." - ::= { airIRSCGroupStatus 13 } - - --- airIRSC AIR CONDITIONER GROUP Setpoint - -airIRSCGroupSetptsCoolSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupSetpoints 1 } - -airIRSCGroupSetptsCoolSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Celsius." - ::= { airIRSCGroupSetpoints 2 } - -airIRSCGroupSetptsCoolDeadbandUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling deadband in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupSetpoints 3 } - -airIRSCGroupSetptsCoolDeadbandMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling deadband in tenths of - degrees Celsius." - ::= { airIRSCGroupSetpoints 4 } - -airIRSCGroupSetptsFanSpeedPreference OBJECT-TYPE - SYNTAX AirIRSCFanSpeedPreference - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group preferred fan speed setting." - ::= { airIRSCGroupSetpoints 5 } - -airIRSCGroupSetptsSupplyAirSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRSCGroupSetpoints 6 } - -airIRSCGroupSetptsSupplyAirSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRSCGroupSetpoints 7 } - -airIRSCGroupSetpointsActiveFlowControlBias OBJECT-TYPE - SYNTAX INTEGER { - positive (1), - slightlyPositive (2), - zero (3), - slightlyNegative (4), - negative (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The active flow control bias setting." - ::= { airIRSCGroupSetpoints 8 } - --- airIRSC AIR CONDITIONER GROUP Config - -airIRSCGroupConfigNumberofCoolingUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cooling units." - ::= { airIRSCGroupConfig 1 } - -airIRSCGroupConfigConfigurationType OBJECT-TYPE - SYNTAX AirIRSCConfigType - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group configuration type." - ::= { airIRSCGroupConfig 2 } - -airIRSCGroupConfigCapacityControlType OBJECT-TYPE - SYNTAX AirIRSCCapacityControlType - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group capacity control." - ::= { airIRSCGroupConfig 3 } - -airIRSCGroupConfigAltitudeUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in feet." - ::= { airIRSCGroupConfig 4 } - -airIRSCGroupConfigAltitudeMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in meters." - ::= { airIRSCGroupConfig 5 } - -airIRSCGroupConfigFanSpeedControl OBJECT-TYPE - SYNTAX AirIRSCFanSpeedControl - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group fan speed control." - ::= { airIRSCGroupConfig 6 } - -airIRSCGroupConfigNumberOfActiveFlowControllers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of active flow controllers - present in the group." - ::= { airIRSCGroupConfig 7 } - -airIRSCGroupConfigActiveFlowControllerLampTest OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turns off/on the active flow - controller lamp test." - ::= { airIRSCGroupConfig 8 } - --- ****************************************************************** --- airIRG2 Ident --- ****************************************************************** - -airIRG2IdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the unit name." - ::= { airIRG2Ident 1 } - -airIRG2IdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the unit location." - ::= { airIRG2Ident 2 } - -airIRG2IdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit model number." - ::= { airIRG2Ident 3 } - -airIRG2IdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit serial number." - ::= { airIRG2Ident 4 } - -airIRG2IdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit firmware version." - ::= { airIRG2Ident 5 } - -airIRG2IdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit controller hardware revision." - ::= { airIRG2Ident 6 } - -airIRG2IdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit manufacture date." - ::= { airIRG2Ident 7 } - -airIRG2IdentUnitSysOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID contains an OID path to the device's top level unit data." - ::= { airIRG2Ident 8 } - -airIRG2IdentGroupSysOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID contains an OID path to the device's top level group data." - ::= { airIRG2Ident 9 } - --- ****************************************************************** --- airIRG2 GROUP Status --- ****************************************************************** - -airIRG2GroupStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group cooling output in tenths of kilowatts (kW)." - ::= { airIRG2GroupStatus 1 } - -airIRG2GroupStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group cooling demand in tenths of kilowatts (kW)." - ::= { airIRG2GroupStatus 2 } - -airIRG2GroupStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group air flow in cubic feet per minute." - ::= { airIRG2GroupStatus 3 } - -airIRG2GroupStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group air flow in hundredths of - liters per second." - ::= { airIRG2GroupStatus 4 } - -airIRG2GroupStatusMaxRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupStatus 5 } - -airIRG2GroupStatusMaxRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRG2GroupStatus 6 } - -airIRG2GroupStatusMinRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupStatus 7 } - -airIRG2GroupStatusMinRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRG2GroupStatus 8 } - -airIRG2GroupStatusMaxReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupStatus 9 } - -airIRG2GroupStatusMaxReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum return air temperature in tenths of - degrees Celsius." - ::= { airIRG2GroupStatus 10 } - -airIRG2GroupStatusMinReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupStatus 11 } - -airIRG2GroupStatusMinReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum return air temperature in tenths of - degrees Celsius." - ::= { airIRG2GroupStatus 12 } - -airIRG2GroupStatusActiveFlowControlStatus OBJECT-TYPE - SYNTAX INTEGER { - under (1), - okay (2), - over (3), - notApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Status of the active flow control - system." - ::= { airIRG2GroupStatus 13 } - - --- ****************************************************************** --- airIRG2 GROUP Setpoint --- ****************************************************************** - -airIRG2GroupSetptsCoolSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupSetpoints 1 } - -airIRG2GroupSetptsCoolSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Celsius." - ::= { airIRG2GroupSetpoints 2 } - -airIRG2GroupSetptsCoolDeadbandUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling deadband in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupSetpoints 3 } - -airIRG2GroupSetptsCoolDeadbandMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling deadband in tenths of - degrees Celsius." - ::= { airIRG2GroupSetpoints 4 } - -airIRG2GroupSetptsFanSpeedPreference OBJECT-TYPE - SYNTAX INTEGER { - low (1), - med-low (2), - med (3), - med-high (4), - high (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group preferred fan speed setting." - ::= { airIRG2GroupSetpoints 5 } - -airIRG2GroupSetptsSupplyAirSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRG2GroupSetpoints 6 } - -airIRG2GroupSetptsSupplyAirSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRG2GroupSetpoints 7 } - -airIRG2GroupSetpointsActiveFlowControlBias OBJECT-TYPE - SYNTAX INTEGER { - positive (1), - slightlyPositive (2), - zero (3), - slightlyNegative (4), - negative (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The active flow control bias setting." - ::= { airIRG2GroupSetpoints 8 } - --- ****************************************************************** --- airIRG2 GROUP Config --- ****************************************************************** -airIRG2GroupConfigNumberofCoolingUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cooling units." - ::= { airIRG2GroupConfig 1 } - -airIRG2GroupConfigConfigurationType OBJECT-TYPE - SYNTAX INTEGER { - racs (1), - spot (2), - in-row (3), - hacs (4), - cacs (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group configuration type." - ::= { airIRG2GroupConfig 2 } - -airIRG2GroupConfigCapacityControlType OBJECT-TYPE - SYNTAX INTEGER { - discrete (1), - proportional (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group capacity control." - ::= { airIRG2GroupConfig 3 } - -airIRG2GroupConfigFanSpeedControl OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group fan speed control." - ::= { airIRG2GroupConfig 4 } - -airIRG2GroupConfigCoolGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the PID in hundredths." - ::= { airIRG2GroupConfig 5 } - -airIRG2GroupConfigCoolResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the PID in hundredths." - ::= { airIRG2GroupConfig 6 } - -airIRG2GroupConfigCoolDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the PID in hundredths." - ::= { airIRG2GroupConfig 7 } - -airIRG2GroupConfigCoolPIDReset OBJECT-TYPE - SYNTAX INTEGER { - readBack (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Will reset the PID coefficients back to the factory defaults." - ::= { airIRG2GroupConfig 8 } - -airIRG2GroupConfigNumberofBackupUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of backup units." - ::= { airIRG2GroupConfig 9 } - -airIRG2GroupConfigRuntimeBalancingEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable runtime balancing feature." - ::= { airIRG2GroupConfig 10 } - -airIRG2GroupConfigLoadAssistEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable load assist feature." - ::= { airIRG2GroupConfig 11 } - -airIRG2GroupConfigNumberOfActiveFlowControllers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of active flow controllers - present in the group." - ::= { airIRG2GroupConfig 12 } - -airIRG2GroupConfigActiveFlowControllerLampTest OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Turns off/on the active flow - controller lamp test." - ::= { airIRG2GroupConfig 13 } - -airIRG2GroupConfigAltitudeUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in feet." - ::= { airIRG2GroupConfig 14 } - -airIRG2GroupConfigAltitudeMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group altitude of the units above sea level in meters." - ::= { airIRG2GroupConfig 15 } - --- *************************************** --- airIRG2 Alarm Status --- *************************************** - -airIRG2AlarmsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active alarms in the airIRG2AlarmsTable." - ::= { airIRG2Alarms 1 } - -AirIRG2AlarmsEntry ::= SEQUENCE { - airIRG2AlarmsIndex INTEGER, - airIRG2AlarmsEventCode INTEGER, - airIRG2AlarmsDescription DisplayString - } - -airIRG2AlarmsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG2AlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of active alarms for the device." - ::= { airIRG2Alarms 2 } - -airIRG2AlarmsEntry OBJECT-TYPE - SYNTAX AirIRG2AlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Alarms specification" - INDEX { airIRG2AlarmsIndex } - ::= { airIRG2AlarmsTable 1 } - -airIRG2AlarmsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Alarm index." - ::= { airIRG2AlarmsEntry 1 } - -airIRG2AlarmsEventCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Code for the alarm." - ::= { airIRG2AlarmsEntry 2 } - -airIRG2AlarmsDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of the alarm." - ::= { airIRG2AlarmsEntry 3 } - --- *************************************** --- airIRG2RDType2 AIR CONDITIONER Defines --- *************************************** - -AirIRG2RDType2IOState ::= INTEGER { - open (1), - closed (2) -} - --- ****************************************************************** --- airIRG2RDT2 Status --- ****************************************************************** - -airIRG2RDT2StatusOperateMode OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - on (2), - idle (3), - reserved (4), - service (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling unit operating mode." - ::= { airIRG2RDT2Status 1 } - -airIRG2RDT2StatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling output in tenths of kilowatts (kW)." - ::= { airIRG2RDT2Status 2 } - -airIRG2RDT2StatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit cooling demand in tenths of kilowatts (kW)." - ::= { airIRG2RDT2Status 3 } - -airIRG2RDT2StatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in cubic feet per minute." - ::= { airIRG2RDT2Status 4 } - -airIRG2RDT2StatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air flow in liters per second." - ::= { airIRG2RDT2Status 5 } - -airIRG2RDT2StatusRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2RDT2Status 6 } - -airIRG2RDT2StatusRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRG2RDT2Status 7 } - -airIRG2RDT2StatusSupplyAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2RDT2Status 8 } - -airIRG2RDT2StatusSupplyAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit supply air temperature in tenths of - degrees Celsius." - ::= { airIRG2RDT2Status 9 } - -airIRG2RDT2StatusReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2RDT2Status 10 } - -airIRG2RDT2StatusReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit return air temperature in tenths of - degrees Celsius." - ::= { airIRG2RDT2Status 11 } - -airIRG2RDT2StatusSuctionTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit suction temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2RDT2Status 12 } - -airIRG2RDT2StatusSuctionTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit suction temperature in tenths of - degrees Celsius." - ::= { airIRG2RDT2Status 13 } - -airIRG2RDT2StatusSuperheatTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit superheat temperature in tenths of - degrees Fahrenheit." - ::= { airIRG2RDT2Status 14 } - -airIRG2RDT2StatusSuperheatTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit superheat temperature in tenths of - degrees Celsius." - ::= { airIRG2RDT2Status 15 } - -airIRG2RDT2StatusFilterDPUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in - hundredths of inches of water." - ::= { airIRG2RDT2Status 16 } - -airIRG2RDT2StatusFilterDPMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit air filter differential pressure in pascals (Pa)." - ::= { airIRG2RDT2Status 17 } - -airIRG2RDT2StatusSuctionPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit suction pressure in pounds per square inch (PSI)." - ::= { airIRG2RDT2Status 18 } - -airIRG2RDT2StatusSuctionPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit suction pressure in kiloPascals (kPa)." - ::= { airIRG2RDT2Status 19 } - -airIRG2RDT2StatusDischargePressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit discharge pressure in pounds per square inch (PSI)." - ::= { airIRG2RDT2Status 20 } - -airIRG2RDT2StatusDischargePressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit discharge pressure in kiloPascals (kPa)." - ::= { airIRG2RDT2Status 21 } - -airIRG2RDT2StatusEvaporatorFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The unit average evaporator fan speed in tenths of percent." - ::= { airIRG2RDT2Status 22 } - -airIRG2RDT2StatusInputState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the input contact." - ::= { airIRG2RDT2Status 23 } - -airIRG2RDT2StatusOutputState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the output relay." - ::= { airIRG2RDT2Status 24 } - -airIRG2RDT2StatusOHEInputState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the outside heat exchanger(OHE) input contact." - ::= { airIRG2RDT2Status 25 } - -airIRG2RDT2StatusOHEOutputState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of the outside heat exchanger(OHE) output relay." - ::= { airIRG2RDT2Status 26 } - -airIRG2RDT2StatusCompressor OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state (off/on) of the compressor." - ::= { airIRG2RDT2Status 27 } - -airIRG2RDT2StatusFluidValvePos OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the fluid valve in percent. This OID is only valid - when airIRG2RDT2ConfigUnitType indicates fluidCooled(1)." - ::= { airIRG2RDT2Status 28 } - -airIRG2RDT2StatusHotGasBypassValvePos OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The position of the hot gas bypass valve in hundredths of percent." - ::= { airIRG2RDT2Status 29 } - -airIRG2RDT2StatusLeakSensor OBJECT-TYPE - SYNTAX INTEGER { - no-leak (1), - leak (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state (no-leak/leak) of the leak sensor." - ::= { airIRG2RDT2Status 30 } - --- ****************************************************************** --- airIRG2RDT2 Runhours --- ****************************************************************** - -airIRG2RDT2RunHoursAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit air filter run hours." - ::= { airIRG2RDT2RunHours 1 } - -airIRG2RDT2RunHoursCondensatePump OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensate pump run hours." - ::= { airIRG2RDT2RunHours 2 } - -airIRG2RDT2RunHoursCompressor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit compressor run hours." - ::= { airIRG2RDT2RunHours 3 } - --- ******************************* --- Run Hour Fan Power supply table --- ******************************* -airIRG2RDT2RunHoursFanPSTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the run hour fan power supply table - (airIRG2RDT2RunHoursFanPSTable)." - ::= { airIRG2RDT2RunHours 4 } - -AirIRG2RDT2RunHoursFanPSEntry ::= - SEQUENCE { - airIRG2RDT2RunHoursFanPSIndex INTEGER, - airIRG2RDT2RunHoursFanPSPosition INTEGER, - airIRG2RDT2RunHoursFanPSHours INTEGER - } - -airIRG2RDT2RunHoursFanPSTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG2RDT2RunHoursFanPSEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting run hour information from each power supply." - ::= { airIRG2RDT2RunHours 5 } - -airIRG2RDT2RunHoursFanPSEntry OBJECT-TYPE - SYNTAX AirIRG2RDT2RunHoursFanPSEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The run hours fan power supply table entry." - INDEX { airIRG2RDT2RunHoursFanPSIndex } - ::= { airIRG2RDT2RunHoursFanPSTable 1 } - -airIRG2RDT2RunHoursFanPSIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of run hours fan power supply table." - ::= { airIRG2RDT2RunHoursFanPSEntry 1 } - -airIRG2RDT2RunHoursFanPSHours OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan power supply run time in hours." - ::= { airIRG2RDT2RunHoursFanPSEntry 2 } - -airIRG2RDT2RunHoursFanPSPosition OBJECT-TYPE - SYNTAX INTEGER { - upper (1), - lower (2), - left (3), - right (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Position of fan power supply within the unit." - ::= { airIRG2RDT2RunHoursFanPSEntry 3 } - --- ***************************** --- Run Hour Evaporator Fan table --- ***************************** -airIRG2RDT2RunHoursEvapFanTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the run hour evaporator fan table - (airIRG2RDT2RunHoursEvapFanTable)." - ::= { airIRG2RDT2RunHours 6 } - -AirIRG2RDT2RunHoursEvapFanEntry ::= - SEQUENCE { - airIRG2RDT2RunHoursEvapFanIndex INTEGER, - airIRG2RDT2RunHoursEvapFanHours INTEGER - } - -airIRG2RDT2RunHoursEvapFanTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG2RDT2RunHoursEvapFanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each evaporator fan run - hour in the system. " - ::= { airIRG2RDT2RunHours 7 } - -airIRG2RDT2RunHoursEvapFanEntry OBJECT-TYPE - SYNTAX AirIRG2RDT2RunHoursEvapFanEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information from each evaporator fan run - hour in the system. " - INDEX { airIRG2RDT2RunHoursEvapFanIndex } - ::= { airIRG2RDT2RunHoursEvapFanTable 1 } - -airIRG2RDT2RunHoursEvapFanIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of run hours evaporator fan table." - ::= { airIRG2RDT2RunHoursEvapFanEntry 1 } - -airIRG2RDT2RunHoursEvapFanHours OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Evaporator fan run time in hours." - ::= { airIRG2RDT2RunHoursEvapFanEntry 2 } - -airIRG2RDT2RunHoursUnit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit run time in hours." - ::= { airIRG2RDT2RunHours 8 } - --- ****************************************************************** --- airIRG2RDT2 Service Intervals --- ****************************************************************** - -airIRG2RDT2ServiceIntervalsAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Air filter service interval in weeks." - ::= { airIRG2RDT2ServiceIntervals 1 } - -airIRG2RDT2ServiceIntervalsAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The air filter service interval alarm enable/disable." - ::= { airIRG2RDT2ServiceIntervals 2 } - --- ****************************************************************** --- airIRG2RDT2 Thresholds --- ****************************************************************** - -airIRG2RDT2ThresholdsRackInletHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRG2RDT2Thresholds 1 } - -airIRG2RDT2ThresholdsRackInletHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit rack inlet air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRG2RDT2Thresholds 2 } - -airIRG2RDT2ThresholdsSupplyAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRG2RDT2Thresholds 3 } - -airIRG2RDT2ThresholdsSupplyAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit supply air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRG2RDT2Thresholds 4 } - -airIRG2RDT2ThresholdsReturnAirHighTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Fahrenheit." - ::= { airIRG2RDT2Thresholds 5 } - -airIRG2RDT2ThresholdsReturnAirHighTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Unit return air high temperature threshold in - tenths of degrees Celsius." - ::= { airIRG2RDT2Thresholds 6 } - --- ****************************************************************** --- airIRG2RDT2 Setpoints --- ****************************************************************** - --- There are no setpoint OIDs. This is just a placeholder in case --- we add some unit setpoints. - --- ****************************************************************** --- airIRG2RDT2 Config --- ****************************************************************** - -airIRG2RDT2ConfigUnitType OBJECT-TYPE - SYNTAX INTEGER { - fluidCooled (1), - airCooled (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of the unit." - ::= { airIRG2RDT2Config 1 } - -airIRG2RDT2ConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The startup delay in seconds." - ::= { airIRG2RDT2Config 2 } - -airIRG2RDT2ConfigIdleOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The idle on leak options setting." - ::= { airIRG2RDT2Config 3 } - -airIRG2RDT2ConfigInputNormalState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the input contact." - ::= { airIRG2RDT2Config 4 } - -airIRG2RDT2ConfigOutputNormalState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the output relay." - ::= { airIRG2RDT2Config 5 } - -airIRG2RDT2ConfigOutputSource OBJECT-TYPE - SYNTAX INTEGER { - anyAlarm (1), - criticalAlarm (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The source of output relay change." - ::= { airIRG2RDT2Config 6 } - -airIRG2RDT2ConfigOHEInputNormalState OBJECT-TYPE - SYNTAX AirIRG2RDType2IOState - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the outside heat exchanger(OHE) input relay." - ::= { airIRG2RDT2Config 7 } - -airIRG2RDT2ConfigUnitRoleOverride OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - forcedOn (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When this OID value is (1) automatic, the system determines - which units are used as primary units and which units are used as backups. - When this OID value is (2) forcedOn, the connected unit is set as a primary - unit." - ::= { airIRG2RDT2Config 8 } - -airIRG2RDT2ConfigUnitIdleOnCoolFail OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When this OID value is (2) yes, the unit idles if it detects that it is blowing warm - air into the cold aisle. The unit will attempt to restart at 5 minute intervals." - ::= { airIRG2RDT2Config 9 } - --- Beginning of AC InRoom - --- common InRoom values -AirIRmAlarmState ::= INTEGER { ok (1), alarm (2) } -AirIRmControlState ::= INTEGER { off (1), on (2) } -AirIRmStopState ::= INTEGER { maybeOn (1), unitOff (2) } -AirIRmActivityState ::= INTEGER { inactive (1), active (2) } - - --- *************************************** --- InRoom Ident --- *************************************** - -airIRmIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the unit name." - ::= { airIRmIdent 1 } - -airIRmIdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the unit location." - ::= { airIRmIdent 2 } - -airIRmIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit model number." - ::= { airIRmIdent 3 } - -airIRmIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit serial number." - ::= { airIRmIdent 4 } - -airIRmIdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit firmware version." - ::= { airIRmIdent 5 } - -airIRmIdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit controller hardware revision." - ::= { airIRmIdent 6 } - -airIRmIdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit manufacture date." - ::= { airIRmIdent 7 } - -airIRmIdentSysOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID contains an OID path to the device's top level data." - ::= { airIRmIdent 8 } - --- *************************************** --- InRoom Alarm Status --- *************************************** - -airIRmAlarmsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active alarms in the airIRG2AlarmsTable." - ::= { airIRmAlarms 1 } - -AirIRmAlarmsEntry ::= SEQUENCE { - airIRmAlarmsIndex INTEGER, - airIRmAlarmsEventCode INTEGER, - airIRmAlarmsDescription DisplayString - } - -airIRmAlarmsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRmAlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of active alarms for the device." - ::= { airIRmAlarms 2 } - -airIRmAlarmsEntry OBJECT-TYPE - SYNTAX AirIRmAlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Alarms specification" - INDEX { airIRmAlarmsIndex } - ::= { airIRmAlarmsTable 1 } - -airIRmAlarmsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Alarm index." - ::= { airIRmAlarmsEntry 1 } - -airIRmAlarmsEventCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Code for the alarm." - ::= { airIRmAlarmsEntry 2 } - -airIRmAlarmsDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of the alarm." - ::= { airIRmAlarmsEntry 3 } - - --- airIRmPmCommon1 - -airIRmPmUnitType OBJECT-TYPE - SYNTAX INTEGER { - mc (1), - dx (2), - cw (3), - ch (4), - ecoCool (5), - msc (6), - ge1 (7), - ge2 (8), - dualFluid (9), - cw2 (10), - unknown (256) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit type (1)." - ::= { airIRmPmCommon1 1 } - -airIRmPmSwVersion OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Software version (3)." - ::= { airIRmPmCommon1 3 } - -airIRmPmBusAddress OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Bus addresss of unit (5)." - ::= { airIRmPmCommon1 5 } - -airIRmPmControllerType OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - c4000 (2), - c1001 (3), - c1002 (4), - c5000 (5), - c6000 (6), - c1010 (7), - c7000IOC (8), - c7000AT (9), - c7000PT (10), - c5MSC (11), - c7000PT2 (12) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Controller type (7)." - ::= { airIRmPmCommon1 7 } - -airIRmPmGeneralError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "General Error (8)" - ::= { airIRmPmCommon1 8 } - -airIRmPmErrorOnBus OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Error On Bus (9)" - ::= { airIRmPmCommon1 9 } - --- airIRmPmCommon2 - -airIRmPmPCStop OBJECT-TYPE - SYNTAX AirIRmStopState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PC-STOP (1000)" - ::= { airIRmPmCommon2 1 } - -airIRmPmRemoteStop OBJECT-TYPE - SYNTAX AirIRmStopState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Remote Stop (1001)" - ::= { airIRmPmCommon2 2 } - -airIRmPmLocalStop OBJECT-TYPE - SYNTAX AirIRmStopState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Local Stop (1002)" - ::= { airIRmPmCommon2 3} - -airIRmPmTimerStop OBJECT-TYPE - SYNTAX AirIRmStopState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Timer Stop (1003)" - ::= { airIRmPmCommon2 4} - -airIRmPmSeqStop OBJECT-TYPE - SYNTAX AirIRmStopState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Seq. Stop (1004)" - ::= { airIRmPmCommon2 5} - -airIRmPmRemoteUPS OBJECT-TYPE - SYNTAX INTEGER { - off (1), - on (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Remote UPS (1006)" - ::= { airIRmPmCommon2 7} - -airIRmPmLocalUPS OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Local UPS (1007)" - ::= { airIRmPmCommon2 8} - -airIRmPmCommonAlarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Common alarm (1010)." - ::= { airIRmPmCommon2 11 } - -airIRmPmResetAllAlarms OBJECT-TYPE - SYNTAX INTEGER { - doNothing (1), - reset (2) } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Reset all alarms control (1011)." - ::= { airIRmPmCommon2 12 } - -airIRmPmUnitOnOff OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit running state (1013)." - ::= { airIRmPmCommon2 14 } - -airIRmPmMaintenance OBJECT-TYPE - SYNTAX INTEGER { - notNecessary (1), - necessary (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Maintenance necessary state (1014)." - ::= { airIRmPmCommon2 15 } - -airIRmPmUnitTemperatureScale OBJECT-TYPE - SYNTAX INTEGER { - celsius (1), - fahrenheit (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current Unit Temperature Scale (1022)." - ::= { airIRmPmCommon2 23 } - -airIRmPmUnitWinterMode OBJECT-TYPE - SYNTAX INTEGER { - summer (1), - winter (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Winter or summer configuration mode (1023)." - ::= { airIRmPmCommon2 24 } - -airIRmPmDayNightMode OBJECT-TYPE - SYNTAX INTEGER { - day (1), - night (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Day or night configuration mode (1024)." - ::= { airIRmPmCommon2 25 } - - --- airIRmPmCommon3 - -airIRmPmLastMaintenanceYear OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last maintenance year (1160)." - ::= { airIRmPmCommon3 1 } - -airIRmPmLastMaintenanceMonth OBJECT-TYPE - SYNTAX INTEGER (1..12) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last maintenance month (1161)." - ::= { airIRmPmCommon3 2 } - -airIRmPmLastMaintenanceDay OBJECT-TYPE - SYNTAX INTEGER (1..31) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Last maintenance day (1162)." - ::= { airIRmPmCommon3 3 } - -airIRmPmUnitMaintenanceInterval OBJECT-TYPE - SYNTAX INTEGER (1..255) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit maintenance interval in months (1163)." - ::= { airIRmPmCommon3 4 } - -airIRmPmRuntimeUnit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Runtime unit in hours (1164)." - ::= { airIRmPmCommon3 5 } - -airIRmPmStoptimeUnit OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit stoptime in hours (1165)" - ::= { airIRmPmCommon3 6 } - -airIRmPmRuntimeCooling OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Cooling runtime in hours (1166)" - ::= { airIRmPmCommon3 7 } - -airIRmPmRuntimeHeating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Heating runtime in hours (1167)" - ::= { airIRmPmCommon3 8 } - -airIRmPmRuntimeHumidification OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidification runtime in hours (1168)" - ::= { airIRmPmCommon3 9 } - -airIRmPmRuntimeDehumidification OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Dehumidification runtime in hours (1169)" - ::= { airIRmPmCommon3 10 } - -airIRmPmUnitTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon3 11 } -airIRmPmUnitTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit temperature in tenths of degrees Celsius (1170)." - ::= { airIRmPmUnitTemperature 1 } -airIRmPmUnitTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit temperature in tenths of degrees Fahrenheit (1170)." - ::= { airIRmPmUnitTemperature 2 } - -airIRmPmUnitHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit humidity in tenths of %RH (1171)." - ::= { airIRmPmCommon3 12 } - -airIRmPmSetpointTemperatureDay OBJECT IDENTIFIER ::= { airIRmPmCommon3 14 } -airIRmPmSetpointTemperatureDayC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setpoint daytime temperature in tenths - of degrees Celsius (1173)." - ::= { airIRmPmSetpointTemperatureDay 1 } -airIRmPmSetpointTemperatureDayF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setpoint daytime temperature in tenths - of degrees Fahrenheit (1173)." - ::= { airIRmPmSetpointTemperatureDay 2 } - -airIRmPmSetpointTemperatureNight OBJECT IDENTIFIER ::= { airIRmPmCommon3 15 } -airIRmPmSetpointTemperatureNightC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setpoint nighttime temperature in tenths - of degrees Celsius (1174)." - ::= { airIRmPmSetpointTemperatureNight 1 } -airIRmPmSetpointTemperatureNightF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setpoint nighttime temperature in tenths - of degrees Fahrenheit (1174)." - ::= { airIRmPmSetpointTemperatureNight 2 } - -airIRmPmSetpointHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setpoint humidity in tenths of %RH (1176)." - ::= { airIRmPmCommon3 17 } - -airIRmPmUnitControlType OBJECT-TYPE - SYNTAX INTEGER { - room (1), - supply (2), - room-SupplyLimit (3), - supply-RoomLimit (4) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Current unit control type (1183)." - ::= { airIRmPmCommon3 24 } - -airIRmPmWinterModeStartTemp OBJECT IDENTIFIER ::= { airIRmPmCommon3 29 } -airIRmPmWinterModeStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Winter mode start temperature in tenths of degrees Celsius (1188)." - ::= { airIRmPmWinterModeStartTemp 1 } -airIRmPmWinterModeStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Winter mode start temperature in tenths of degrees Fahrenheit (1188)." - ::= { airIRmPmWinterModeStartTemp 2 } - -airIRmPmWinterModeHysteresis OBJECT IDENTIFIER ::= { airIRmPmCommon3 30 } -airIRmPmWinterModeHysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Winter mode hysteresis in tenths of Kelvins (1189)" - ::= { airIRmPmWinterModeHysteresis 1 } -airIRmPmWinterModeHysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Winter mode hysteresis in tenths of degrees Fahrenheit (1189)" - ::= { airIRmPmWinterModeHysteresis 2 } - -airIRmPmWaterTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon3 32 } -airIRmPmWaterTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water temperature in tenths of degrees Celsius (1191)." - ::= { airIRmPmWaterTemperature 1 } -airIRmPmWaterTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water temperature in tenths of degrees Fahrenheit (1191)." - ::= { airIRmPmWaterTemperature 2 } - -airIRmPmReturnAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon3 33 } -airIRmPmReturnAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air temperature in tenths of degrees Celsius (1192)." - ::= { airIRmPmReturnAirTemperature 1 } -airIRmPmReturnAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air temperature in tenths of degrees Fahrenheit (1192)." - ::= { airIRmPmReturnAirTemperature 2 } - -airIRmPmSupplyAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon3 34 } -airIRmPmSupplyAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air temperature in tenths of degrees Celsius (1193)." - ::= { airIRmPmSupplyAirTemperature 1 } -airIRmPmSupplyAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air temperature in tenths of degrees Fahrenheit (1193)." - ::= { airIRmPmSupplyAirTemperature 2 } - -airIRmPmReturnAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air humidity in tenths of %RH (1194)." - ::= { airIRmPmCommon3 35 } - -airIRmPmSupplyAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air humidity in tenths of %RH (1195)." - ::= { airIRmPmCommon3 36 } - -airIRmPmOutsideAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon3 37 } -airIRmPmOutsideAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Outside air temperature in tenths of degrees Celsius (1196)" - ::= { airIRmPmOutsideAirTemperature 1 } -airIRmPmOutsideAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Outside air temperature in tenths of degrees Fahrenheit (1196)" - ::= { airIRmPmOutsideAirTemperature 2 } - -airIRmPmOutsideAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Outside air humidity in tenths of percent relative humidity (1197)" - ::= { airIRmPmCommon3 38 } - -airIRmPmCoolingPriority OBJECT-TYPE - SYNTAX INTEGER { - ge (1), - cw (2), - dx (3) } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Cooling priority (1198)." - ::= { airIRmPmCommon3 39 } - -airIRmPmWaterTemperature2 OBJECT IDENTIFIER ::= { airIRmPmCommon3 43 } -airIRmPmWaterTemperature2C OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water temperature 2 in tenths of degrees Celsius (1202)." - ::= { airIRmPmWaterTemperature2 1 } -airIRmPmWaterTemperature2F OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water temperature 2 in tenths of degrees Fahrenheit (1202)." - ::= { airIRmPmWaterTemperature2 2 } - -airIRmPmRuntimeFreeCooling OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Freecooling runtime in hours (1203)" - ::= { airIRmPmCommon3 44 } - -airIRmPmRuntimeMixedModeFreeCooling OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Mixed mode freecooling runtime in hours (1203)" - ::= { airIRmPmCommon3 45 } - --- airIRmPmCommon4 - -airIRmPmNumberOfCompressors OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of compressors (1761)" - ::= { airIRmPmCommon4 4 } - -airIRmPmNumberOfSuctionValves OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of suction valves (1762)" - ::= { airIRmPmCommon4 5 } - -airIRmPmNumberOfDryCoolers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of drycoolers (1763)" - ::= { airIRmPmCommon4 6 } - -airIRmPmNumberOfPumps OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of pumps (1764)" - ::= { airIRmPmCommon4 7 } - -airIRmPmNumberOfElectricHeaters OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of electric heaters (1765)" - ::= { airIRmPmCommon4 8 } - -airIRmPmNumberOfHumidifiers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of humidifiers (1766)" - ::= { airIRmPmCommon4 9 } - -airIRmPmNumberOfFans OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of fans (1767)" - ::= { airIRmPmCommon4 10 } - -airIRmPmNumberOfLouvers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of louvers (1768)" - ::= { airIRmPmCommon4 11 } - -airIRmPmNumberOfSensors OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of sensors (1769)" - ::= { airIRmPmCommon4 12 } - -airIRmPmNumberOfExternalAlarmInputs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of external alarm inputs (1770)" - ::= { airIRmPmCommon4 13 } - -airIRmPmNumberOfGECWValves OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of GE/CW valves (1771)" - ::= { airIRmPmCommon4 14 } - -airIRmPmNumberOfHotGasReheat OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of hot gas reheaters (1772)" - ::= { airIRmPmCommon4 15 } - -airIRmPmNumberOfPWWReheat OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of PWW reheaters (1773)" - ::= { airIRmPmCommon4 16 } - -airIRmPmNumberOfDehumidifiers OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of dehumidifiers (1774)" - ::= { airIRmPmCommon4 17 } - --- airIRmPmCommon5 - -airIRmPmUnitEvaporationTemperature1 OBJECT IDENTIFIER ::= { airIRmPmCommon5 1 } -airIRmPmUnitEvaporationTemperature1C OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporation temperature 1 in tenths - of degrees Celsius (2232)" - ::= { airIRmPmUnitEvaporationTemperature1 1 } -airIRmPmUnitEvaporationTemperature1F OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporation temperature 1 in tenths - of degrees Fahrenheit (2232)" - ::= { airIRmPmUnitEvaporationTemperature1 2 } - -airIRmPmUnitEvaporationPressure1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporation pressure 1 in tenths - of Bars (2233)" - ::= { airIRmPmCommon5 2 } - -airIRmPmUnitCondensationTemperature1 OBJECT IDENTIFIER ::= { airIRmPmCommon5 3 } -airIRmPmUnitCondensationTemperature1C OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensation temperature 1 in tenths - of degrees Celsius (2234)" - ::= { airIRmPmUnitCondensationTemperature1 1 } -airIRmPmUnitCondensationTemperature1F OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensation temperature 1 in tenths - of degrees Fahrenheit (2234)" - ::= { airIRmPmUnitCondensationTemperature1 2 } - -airIRmPmUnitCondensationPressure1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensation pressure 1 in tenths - of Bars (2235)" - ::= { airIRmPmCommon5 4 } - -airIRmPmMaxLimitReturnAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon5 8 } -airIRmPmMaxLimitReturnAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit return air temperature in tenths - of degrees Celsius (2239)." - ::= { airIRmPmMaxLimitReturnAirTemperature 1 } -airIRmPmMaxLimitReturnAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit return air temperature in tenths - of degrees Fahrenheit (2239)." - ::= { airIRmPmMaxLimitReturnAirTemperature 2 } - -airIRmPmMinLimitReturnAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon5 9 } -airIRmPmMinLimitReturnAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit return air temperature in tenths - of degrees Celsius (2240)." - ::= { airIRmPmMinLimitReturnAirTemperature 1 } -airIRmPmMinLimitReturnAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit return air temperature in tenths - of degrees Fahrenheit (2240)." - ::= { airIRmPmMinLimitReturnAirTemperature 2 } - -airIRmPmMaxLimitSupplyAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon5 10 } -airIRmPmMaxLimitSupplyAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit supply air temperature in tenths - of degrees Celsius (2241)." - ::= { airIRmPmMaxLimitSupplyAirTemperature 1 } -airIRmPmMaxLimitSupplyAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit supply air temperature in tenths - of degrees Fahrenheit (2241)." - ::= { airIRmPmMaxLimitSupplyAirTemperature 2 } - -airIRmPmMinLimitSupplyAirTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon5 11 } -airIRmPmMinLimitSupplyAirTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit supply air temperature in tenths - of degrees Celsius (2242)." - ::= { airIRmPmMinLimitSupplyAirTemperature 1 } -airIRmPmMinLimitSupplyAirTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit supply air temperature in tenths - of degrees Fahrenheit (2242)." - ::= { airIRmPmMinLimitSupplyAirTemperature 2 } - -airIRmPmMaxLimitWaterTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon5 12 } -airIRmPmMaxLimitWaterTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit water temperature in tenths of degrees Celsius (2243)." - ::= { airIRmPmMaxLimitWaterTemperature 1 } -airIRmPmMaxLimitWaterTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit water temperature in tenths - of degrees Fahrenheit (2243)." - ::= { airIRmPmMaxLimitWaterTemperature 2 } - -airIRmPmMinLimitWaterTemperature OBJECT IDENTIFIER ::= { airIRmPmCommon5 13 } -airIRmPmMinLimitWaterTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit water temperature in tenths - of degrees Celsius (2244)." - ::= { airIRmPmMinLimitWaterTemperature 1 } -airIRmPmMinLimitWaterTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit water temperature in tenths - of degrees Fahrenheit (2244)." - ::= { airIRmPmMinLimitWaterTemperature 2 } - -airIRmPmMaxLimitReturnAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit return air humidity in tenths of %RH (2245)." - ::= { airIRmPmCommon5 14 } - -airIRmPmMinLimitReturnAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit return air humidity in tenths of %RH (2246)." - ::= { airIRmPmCommon5 15 } - -airIRmPmMaxLimitSupplyAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Maximum limit supply air humidity in tenths of %RH (2247)." - ::= { airIRmPmCommon5 16 } - -airIRmPmMinLimitSupplyAirHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Minimum limit supply air humidity in tenths of %RH (2248)." - ::= { airIRmPmCommon5 17 } - -airIRmPmLowPressureWinterDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Winter mode low pressure delay in seconds (2249)" - ::= { airIRmPmCommon5 18 } - -airIRmPmUnitCondensationPressure2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensation pressure 2 in tenths of Bars (2250)" - ::= { airIRmPmCommon5 19 } - -airIRmPmUnitOverloadSwitch OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit overload switch setting in tenths of Kelvins (2251)" - ::= { airIRmPmCommon5 20 } - -airIRmPmUnitCondensationTemperature2 OBJECT IDENTIFIER ::= { airIRmPmCommon5 41 } -airIRmPmUnitCondensationTemperature2C OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensation temperature 2 in tenths - of degrees Celsius (2272)" - ::= { airIRmPmUnitCondensationTemperature2 1 } -airIRmPmUnitCondensationTemperature2F OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit condensation temperature 2 in tenths - of degrees Fahrenheit (2272)" - ::= { airIRmPmUnitCondensationTemperature2 2 } - -airIRmPmUnitEvaporationPressure2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporation pressure 2 in tenths - of Bars (2273)" - ::= { airIRmPmCommon5 42 } - -airIRmPmUnitEvaporationTemperature2 OBJECT IDENTIFIER ::= { airIRmPmCommon5 43 } -airIRmPmUnitEvaporationTemperature2C OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporation temperature 2 in tenths - of degrees Celsius (2274)" - ::= { airIRmPmUnitEvaporationTemperature2 1 } -airIRmPmUnitEvaporationTemperature2F OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Unit evaporation temperature 2 in tenths - of degrees Fahrenheit (2274)" - ::= { airIRmPmUnitEvaporationTemperature2 2 } - --- airIRmPmCompressor1 - -airIRmPmCmp1ManOperationActive OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 1 manual operation active (4401)" - ::= { airIRmPmCompressor1 2 } - -airIRmPmCmp1ManOperationState OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 1 manual operation state (4402)" - ::= { airIRmPmCompressor1 3 } - -airIRmPmCmp1Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 1 running (4403)" - ::= { airIRmPmCompressor1 4 } - -airIRmPmCmp1StartTempSummer OBJECT IDENTIFIER ::= { airIRmPmCompressor1 17 } -airIRmPmCmp1StartTempSummerK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 summer mode start temperature - in tenths of Kelvins (4416)" - ::= { airIRmPmCmp1StartTempSummer 1 } -airIRmPmCmp1StartTempSummerF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 summer mode start temperature - in tenths of degrees Fahrenheit (4416)" - ::= { airIRmPmCmp1StartTempSummer 2 } - -airIRmPmCmp1HysteresisSummer OBJECT IDENTIFIER ::= { airIRmPmCompressor1 18 } -airIRmPmCmp1HysteresisSummerK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 summer mode hysteresis setting - in tenths of Kelvins (4417)" - ::= { airIRmPmCmp1HysteresisSummer 1 } -airIRmPmCmp1HysteresisSummerF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 summer mode hysteresis setting - in tenths of Fahrenheit (4417)" - ::= { airIRmPmCmp1HysteresisSummer 2 } - -airIRmPmCmp1StartTempWinter OBJECT IDENTIFIER ::= { airIRmPmCompressor1 19 } -airIRmPmCmp1StartTempWinterK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 winter mode start temperature - in tenths of Kelvins (4418)" - ::= { airIRmPmCmp1StartTempWinter 1 } -airIRmPmCmp1StartTempWinterF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 winter mode start temperature - in tenths of degrees Fahrenheit (4418)" - ::= { airIRmPmCmp1StartTempWinter 2 } - -airIRmPmCmp1HysteresisWinter OBJECT IDENTIFIER ::= { airIRmPmCompressor1 20 } -airIRmPmCmp1HysteresisWinterK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 Winter mode hysteresis setting - in tenths of Kelvins (4419)" - ::= { airIRmPmCmp1HysteresisWinter 1 } -airIRmPmCmp1HysteresisWinterF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 1 Winter mode hysteresis setting - in tenths of Fahrenheit (4419)" - ::= { airIRmPmCmp1HysteresisWinter 2 } - -airIRmPmCmp1Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 1 runtime in hours (4428)" - ::= { airIRmPmCompressor1 29 } - --- airIRmPmCompressor2 - -airIRmPmCmp2ManOperationActive OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 2 manual operation active (4501)" - ::= { airIRmPmCompressor2 2 } - -airIRmPmCmp2ManOperationState OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 2 manual operation state (4502)" - ::= { airIRmPmCompressor2 3 } - -airIRmPmCmp2Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 2 running (4503)" - ::= { airIRmPmCompressor2 4 } - -airIRmPmCmp2StartTempSummer OBJECT IDENTIFIER ::= { airIRmPmCompressor2 17 } -airIRmPmCmp2StartTempSummerK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 summer mode start temperature - in tenths of Kelvins (4516)" - ::= { airIRmPmCmp2StartTempSummer 1 } -airIRmPmCmp2StartTempSummerF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 summer mode start temperature - in tenths of degrees Fahrenheit (4516)" - ::= { airIRmPmCmp2StartTempSummer 2 } - -airIRmPmCmp2HysteresisSummer OBJECT IDENTIFIER ::= { airIRmPmCompressor2 18 } -airIRmPmCmp2HysteresisSummerK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 summer mode hysteresis setting - in tenths of Kelvins (4517)" - ::= { airIRmPmCmp2HysteresisSummer 1 } -airIRmPmCmp2HysteresisSummerF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 summer mode hysteresis setting - in tenths of Fahrenheit (4517)" - ::= { airIRmPmCmp2HysteresisSummer 2 } - -airIRmPmCmp2StartTempWinter OBJECT IDENTIFIER ::= { airIRmPmCompressor2 19 } -airIRmPmCmp2StartTempWinterK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 winter mode start temperature - in tenths of Kelvins (4518)" - ::= { airIRmPmCmp2StartTempWinter 1 } -airIRmPmCmp2StartTempWinterF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 winter mode start temperature - in tenths of degrees Fahrenheit (4518)" - ::= { airIRmPmCmp2StartTempWinter 2 } - -airIRmPmCmp2HysteresisWinter OBJECT IDENTIFIER ::= { airIRmPmCompressor2 20 } -airIRmPmCmp2HysteresisWinterK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 Winter mode hysteresis setting - in tenths of Kelvins (4519)" - ::= { airIRmPmCmp2HysteresisWinter 1 } -airIRmPmCmp2HysteresisWinterF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Compressor 2 Winter mode hysteresis setting - in tenths of Fahrenheit (4519)" - ::= { airIRmPmCmp2HysteresisWinter 2 } - -airIRmPmCmp2Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor 2 runtime in hours (4528)" - ::= { airIRmPmCompressor2 29 } - --- airIRmPmSuctionValve1 --- Empty - --- airIRmPmSuctionValve2 --- Empty - --- airIRmPmEheating1 - -airIRmPmEheating1ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #1 manual operation enable (4801)" - ::= { airIRmPmEheating1 2 } - -airIRmPmEheating1Running OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #1 running state (4803)" - ::= { airIRmPmEheating1 4 } - -airIRmPmEheating1ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #1 running in manual operation mode (4804)" - ::= { airIRmPmEheating1 5 } - -airIRmPmEheating1Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - pwm (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #1 type (4808)" - ::= { airIRmPmEheating1 9 } - -airIRmPmEheating1StartTemperature OBJECT IDENTIFIER ::= { airIRmPmEheating1 10 } -airIRmPmEheating1StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #1 start temperature in tenths of Kelvins (4809)" - ::= { airIRmPmEheating1StartTemperature 1 } -airIRmPmEheating1StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #1 start temperature in tenths of degrees Fahrenheit (4809)" - ::= { airIRmPmEheating1StartTemperature 2 } - -airIRmPmEheating1Hysteresis OBJECT IDENTIFIER ::= { airIRmPmEheating1 11 } -airIRmPmEheating1HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #1 hysteresis in tenths of Kelvins (4810)" - ::= { airIRmPmEheating1Hysteresis 1 } -airIRmPmEheating1HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #1 hysteresis in tenths of degrees Fahrenheit (4810)" - ::= { airIRmPmEheating1Hysteresis 2 } - -airIRmPmEheating1Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #1 runtime in hours (4816)" - ::= { airIRmPmEheating1 17 } - --- airIRmPmEheating2 - -airIRmPmEheating2ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #2 manual operation enable (4901)" - ::= { airIRmPmEheating2 2 } - -airIRmPmEheating2Running OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #2 running state (4903)" - ::= { airIRmPmEheating2 4 } - -airIRmPmEheating2ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #2 running in manual operation mode (4904)" - ::= { airIRmPmEheating2 5 } - -airIRmPmEheating2Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - pwm (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #2 type (4908)" - ::= { airIRmPmEheating2 9 } - -airIRmPmEheating2StartTemperature OBJECT IDENTIFIER ::= { airIRmPmEheating2 10 } -airIRmPmEheating2StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #2 start temperature in tenths of Kelvins (4909)" - ::= { airIRmPmEheating2StartTemperature 1 } -airIRmPmEheating2StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #2 start temperature in tenths of degrees Fahrenheit (4909)" - ::= { airIRmPmEheating2StartTemperature 2 } - -airIRmPmEheating2Hysteresis OBJECT IDENTIFIER ::= { airIRmPmEheating2 11 } -airIRmPmEheating2HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #2 hysteresis in tenths of Kelvins (4910)" - ::= { airIRmPmEheating2Hysteresis 1 } -airIRmPmEheating2HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #2 hysteresis in tenths of degrees Fahrenheit (4910)" - ::= { airIRmPmEheating2Hysteresis 2 } - -airIRmPmEheating2Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #2 runtime in hours (4916)" - ::= { airIRmPmEheating2 17 } - --- airIRmPmEheating3 - -airIRmPmEheating3ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #3 manual operation enable (5001)" - ::= { airIRmPmEheating3 2 } - -airIRmPmEheating3Running OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #3 running state (5003)" - ::= { airIRmPmEheating3 4 } - -airIRmPmEheating3ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #3 running in manual operation mode (5004)" - ::= { airIRmPmEheating3 5 } - -airIRmPmEheating3Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - pwm (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #3 type (5008)" - ::= { airIRmPmEheating3 9 } - -airIRmPmEheating3StartTemperature OBJECT IDENTIFIER ::= { airIRmPmEheating3 10 } -airIRmPmEheating3StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #3 start temperature in tenths of Kelvins (5009)" - ::= { airIRmPmEheating3StartTemperature 1 } -airIRmPmEheating3StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #3 start temperature in tenths of degrees Fahrenheit (5009)" - ::= { airIRmPmEheating3StartTemperature 2 } - -airIRmPmEheating3Hysteresis OBJECT IDENTIFIER ::= { airIRmPmEheating3 11 } -airIRmPmEheating3HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #3 hysteresis in tenths of Kelvins (5010)" - ::= { airIRmPmEheating3Hysteresis 1 } -airIRmPmEheating3HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #3 hysteresis in tenths of degrees Fahrenheit (5010)" - ::= { airIRmPmEheating3Hysteresis 2 } - -airIRmPmEheating3Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #3 runtime in hours (5016)" - ::= { airIRmPmEheating3 17 } - --- airIRmPmEheating4 - -airIRmPmEheating4ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #4 manual operation enable (5101)" - ::= { airIRmPmEheating4 2 } - -airIRmPmEheating4Running OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #4 running state (5103)" - ::= { airIRmPmEheating4 4 } - -airIRmPmEheating4ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #4 running in manual operation mode (5104)" - ::= { airIRmPmEheating4 5 } - -airIRmPmEheating4Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - pwm (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #4 type (5108)" - ::= { airIRmPmEheating4 9 } - -airIRmPmEheating4StartTemperature OBJECT IDENTIFIER ::= { airIRmPmEheating4 10 } -airIRmPmEheating4StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #4 start temperature in tenths of Kelvins (5109)" - ::= { airIRmPmEheating4StartTemperature 1 } -airIRmPmEheating4StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #4 start temperature in tenths of degrees Fahrenheit (5109)" - ::= { airIRmPmEheating4StartTemperature 2 } - -airIRmPmEheating4Hysteresis OBJECT IDENTIFIER ::= { airIRmPmEheating4 11 } -airIRmPmEheating4HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #4 hysteresis in tenths of Kelvins (5110)" - ::= { airIRmPmEheating4Hysteresis 1 } -airIRmPmEheating4HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Electric heater #4 hysteresis in tenths of degrees Fahrenheit (5110)" - ::= { airIRmPmEheating4Hysteresis 2 } - -airIRmPmEheating4Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Electric heater #4 runtime in hours (5116)" - ::= { airIRmPmEheating4 17 } - --- airIRmPmGECWvalve - -airIRmPmGECWvalveManOpEnable OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "GE/CW valve manual operation enable (5201)" - ::= { airIRmPmGECWvalve 2 } - -airIRmPmGECWvalveStartTemperature OBJECT IDENTIFIER ::= { airIRmPmGECWvalve 9 } -airIRmPmGECWvalveStartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "GE/CW valve start temperature in tenths of Kelvins (5208)" - ::= { airIRmPmGECWvalveStartTemperature 1 } -airIRmPmGECWvalveStartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "GE/CW valve start temperature in tenths of degrees Fahrenheit (5208)" - ::= { airIRmPmGECWvalveStartTemperature 2 } - -airIRmPmGECWvalveLinearRange OBJECT IDENTIFIER ::= { airIRmPmGECWvalve 10 } -airIRmPmGECWvalveLinearRangeK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "GE/CW valve linear range in tenths of Kelvins (5209)" - ::= { airIRmPmGECWvalveLinearRange 1 } -airIRmPmGECWvalveLinearRangeF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "GE/CW valve linear range in tenths of degrees Fahrenheit (5209)" - ::= { airIRmPmGECWvalveLinearRange 2 } - -airIRmPmGECWvalveGEOffTemp OBJECT IDENTIFIER ::= { airIRmPmGECWvalve 12 } -airIRmPmGECWvalveGEOffTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "GE/CW valve GE off temperature in tenths of degrees Celsius (5211)" - ::= { airIRmPmGECWvalveGEOffTemp 1 } -airIRmPmGECWvalveGEOffTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "GE/CW valve GE off temperature in tenths of degrees Fahrenheit (5211)" - ::= { airIRmPmGECWvalveGEOffTemp 2 } - -airIRmPmGECWvalveOpeningGrade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "GE/CW valve opening grade in percent (5214)" - ::= { airIRmPmGECWvalve 15 } - -airIRmPmGECWvalveManOpOpeningGrade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "GE/CW valve manual operation opening grade in percent (5215)" - ::= { airIRmPmGECWvalve 16 } - --- airIRmPmGvalve - -airIRmPmGvalveManOperationEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "G-valve manual operation enable (5301)" - ::= { airIRmPmGvalve 2 } - -airIRmPmGvalvePreOpeningTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "G-valve pre-opening time in seconds (5310)" - ::= { airIRmPmGvalve 11 } - -airIRmPmGvalvePreOpeningGrade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "G-valve pre-opening grade in percent (5311)" - ::= { airIRmPmGvalve 12 } - -airIRmPmGvalveOpeningGrade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "G-valve opening grade in percent (5312)" - ::= { airIRmPmGvalve 13 } - -airIRmPmGvalveManOpOpeningGrade OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "G-valve manual operation opening grade in percent (5313)" - ::= { airIRmPmGvalve 14 } - --- airIRmPmDrycooler1 - -airIRmPmDrycooler1ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 1 manual operation enable setting (5401)" - ::= { airIRmPmDrycooler1 2 } - -airIRmPmDrycooler1Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 1 running (5402)" - ::= { airIRmPmDrycooler1 3 } - -airIRmPmDrycooler1ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 1 manual operation running (5404)" - ::= { airIRmPmDrycooler1 5 } - -airIRmPmDrycooler1WinterStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler1 9 } -airIRmPmDrycooler1WinterStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 1 winter mode start temperature - in tenths of degrees Celsius (5408)" - ::= { airIRmPmDrycooler1WinterStartTemp 1 } -airIRmPmDrycooler1WinterStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 1 winter mode start temperature - in tenths of degrees Fahrenheit (5408)" - ::= { airIRmPmDrycooler1WinterStartTemp 2 } - -airIRmPmDrycooler1SummerStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler1 10 } -airIRmPmDrycooler1SummerStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 1 summer mode start temperature - in tenths of degrees Celsius (5409)" - ::= { airIRmPmDrycooler1SummerStartTemp 1 } -airIRmPmDrycooler1SummerStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 1 summer mode start temperature - in tenths of degrees Fahrenheit (5409)" - ::= { airIRmPmDrycooler1SummerStartTemp 2 } - -airIRmPmDrycooler1Hysteresis OBJECT IDENTIFIER ::= { airIRmPmDrycooler1 11 } -airIRmPmDrycooler1HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 1 hysteresis in tenths of Kelvins (5410)" - ::= { airIRmPmDrycooler1Hysteresis 1 } -airIRmPmDrycooler1HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 1 hysteresis in tenths of degrees Fahrenheit (5410)" - ::= { airIRmPmDrycooler1Hysteresis 2 } - -airIRmPmDrycooler1Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 1 runtime in hours (5415)" - ::= { airIRmPmDrycooler1 16 } - --- airIRmPmDrycooler2 - -airIRmPmDrycooler2ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 2 manual operation enable setting (5501)" - ::= { airIRmPmDrycooler2 2 } - -airIRmPmDrycooler2Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 2 running (5502)" - ::= { airIRmPmDrycooler2 3 } - -airIRmPmDrycooler2ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 2 manual operation running (5504)" - ::= { airIRmPmDrycooler2 5 } - -airIRmPmDrycooler2WinterStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler2 9 } -airIRmPmDrycooler2WinterStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 2 winter mode start temperature - in tenths of degrees Celsius (5508)" - ::= { airIRmPmDrycooler2WinterStartTemp 1 } -airIRmPmDrycooler2WinterStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 2 winter mode start temperature - in tenths of degrees Fahrenheit (5508)" - ::= { airIRmPmDrycooler2WinterStartTemp 2 } - -airIRmPmDrycooler2SummerStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler2 10 } -airIRmPmDrycooler2SummerStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 2 summer mode start temperature - in tenths of degrees Celsius (5509)" - ::= { airIRmPmDrycooler2SummerStartTemp 1 } -airIRmPmDrycooler2SummerStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 2 summer mode start temperature - in tenths of degrees Fahrenheit (5509)" - ::= { airIRmPmDrycooler2SummerStartTemp 2 } - -airIRmPmDrycooler2Hysteresis OBJECT IDENTIFIER ::= { airIRmPmDrycooler2 11 } -airIRmPmDrycooler2HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 2 hysteresis in tenths of Kelvins (5510)" - ::= { airIRmPmDrycooler2Hysteresis 1 } -airIRmPmDrycooler2HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 2 hysteresis in tenths of degrees Fahrenheit (5510)" - ::= { airIRmPmDrycooler2Hysteresis 2 } - -airIRmPmDrycooler2Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 2 runtime in hours (5515)" - ::= { airIRmPmDrycooler2 16 } - --- airIRmPmDrycooler3 - -airIRmPmDrycooler3ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 3 manual operation enable setting (5601)" - ::= { airIRmPmDrycooler3 2 } - -airIRmPmDrycooler3Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 3 running (5602)" - ::= { airIRmPmDrycooler3 3 } - -airIRmPmDrycooler3ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 3 manual operation running (5604)" - ::= { airIRmPmDrycooler3 5 } - -airIRmPmDrycooler3WinterStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler3 9 } -airIRmPmDrycooler3WinterStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 3 winter mode start temperature - in tenths of degrees Celsius (5608)" - ::= { airIRmPmDrycooler3WinterStartTemp 1 } -airIRmPmDrycooler3WinterStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 3 winter mode start temperature - in tenths of degrees Fahrenheit (5608)" - ::= { airIRmPmDrycooler3WinterStartTemp 2 } - -airIRmPmDrycooler3SummerStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler3 10 } -airIRmPmDrycooler3SummerStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 3 summer mode start temperature - in tenths of degrees Celsius (5609)" - ::= { airIRmPmDrycooler3SummerStartTemp 1 } -airIRmPmDrycooler3SummerStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 3 summer mode start temperature - in tenths of degrees Fahrenheit (5609)" - ::= { airIRmPmDrycooler3SummerStartTemp 2 } - -airIRmPmDrycooler3Hysteresis OBJECT IDENTIFIER ::= { airIRmPmDrycooler3 11 } -airIRmPmDrycooler3HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 3 hysteresis in tenths of Kelvins (5610)" - ::= { airIRmPmDrycooler3Hysteresis 1 } -airIRmPmDrycooler3HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 3 hysteresis in tenths of degrees Fahrenheit (5610)" - ::= { airIRmPmDrycooler3Hysteresis 2 } - -airIRmPmDrycooler3Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 3 runtime in hours (5615)" - ::= { airIRmPmDrycooler3 16 } - --- airIRmPmDrycooler4 - -airIRmPmDrycooler4ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 4 manual operation enable setting (5701)" - ::= { airIRmPmDrycooler4 2 } - -airIRmPmDrycooler4Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 4 running (5702)" - ::= { airIRmPmDrycooler4 3 } - -airIRmPmDrycooler4ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 4 manual operation running (5704)" - ::= { airIRmPmDrycooler4 5 } - -airIRmPmDrycooler4WinterStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler4 9 } -airIRmPmDrycooler4WinterStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 4 winter mode start temperature - in tenths of degrees Celsius (5708)" - ::= { airIRmPmDrycooler4WinterStartTemp 1 } -airIRmPmDrycooler4WinterStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 4 winter mode start temperature - in tenths of degrees Fahrenheit (5708)" - ::= { airIRmPmDrycooler4WinterStartTemp 2 } - -airIRmPmDrycooler4SummerStartTemp OBJECT IDENTIFIER ::= { airIRmPmDrycooler4 10 } -airIRmPmDrycooler4SummerStartTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 4 summer mode start temperature - in tenths of degrees Celsius (5709)" - ::= { airIRmPmDrycooler4SummerStartTemp 1 } -airIRmPmDrycooler4SummerStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 4 summer mode start temperature - in tenths of degrees Fahrenheit (5709)" - ::= { airIRmPmDrycooler4SummerStartTemp 2 } - -airIRmPmDrycooler4Hysteresis OBJECT IDENTIFIER ::= { airIRmPmDrycooler4 11 } -airIRmPmDrycooler4HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 4 hysteresis in tenths of Kelvins (5710)" - ::= { airIRmPmDrycooler4Hysteresis 1 } -airIRmPmDrycooler4HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Drycooler 4 hysteresis in tenths of degrees Fahrenheit (5710)" - ::= { airIRmPmDrycooler4Hysteresis 2 } - -airIRmPmDrycooler4Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler 4 runtime in hours (5715)" - ::= { airIRmPmDrycooler4 16 } - --- airIRmPmPump1 - -airIRmPmPump1ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 1 manual operation enable state (5801)" - ::= { airIRmPmPump1 2 } - -airIRmPmPump1Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 1 running (5802)" - ::= { airIRmPmPump1 3 } - -airIRmPmPump1ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 1 manual operation running (5805)" - ::= { airIRmPmPump1 6 } - -airIRmPmPump1StartTemperature OBJECT IDENTIFIER ::= { airIRmPmPump1 10 } -airIRmPmPump1StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 starting temperature in tenths of Kelvins (5809)" - ::= { airIRmPmPump1StartTemperature 1 } -airIRmPmPump1StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 starting temperature in tenths of degrees Fahrenheit (5809)" - ::= { airIRmPmPump1StartTemperature 2 } - -airIRmPmPump1Hysteresis OBJECT IDENTIFIER ::= { airIRmPmPump1 11 } -airIRmPmPump1HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 hysteresis in tenths of Kelvins (5810)" - ::= { airIRmPmPump1Hysteresis 1 } -airIRmPmPump1HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 hysteresis in tenths of degrees Fahrenheit (5810)" - ::= { airIRmPmPump1Hysteresis 2 } - -airIRmPmPump1LinearRange OBJECT IDENTIFIER ::= { airIRmPmPump1 12 } -airIRmPmPump1LinearRangeK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 linear range in tenths of Kelvins (5811)" - ::= { airIRmPmPump1LinearRange 1 } -airIRmPmPump1LinearRangeF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 linear range in tenths of degrees Fahrenheit (5811)" - ::= { airIRmPmPump1LinearRange 2 } - -airIRmPmPump1PressureSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 pressure setpoint in tenths of Bars (5812)" - ::= { airIRmPmPump1 13 } - -airIRmPmPump1Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 1 runtime in hours (5820)" - ::= { airIRmPmPump1 21 } - -airIRmPmPump1Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 1 speed in percent (5821)" - ::= { airIRmPmPump1 22 } - -airIRmPmPump1ControlCycle OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 control cycle length in seconds (5827)" - ::= { airIRmPmPump1 28 } - -airIRmPmPump1MaxAdjust OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 maximum adjustment in percent (5828)" - ::= { airIRmPmPump1 29 } - -airIRmPmPump1ControlFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 1 control factor setting (5829)" - ::= { airIRmPmPump1 30 } - --- airIRmPmPump2 - -airIRmPmPump2ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 2 manual operation enable state (5901)" - ::= { airIRmPmPump2 2 } - -airIRmPmPump2Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 2 running (5902)" - ::= { airIRmPmPump2 3 } - -airIRmPmPump2ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 2 manual operation running (5905)" - ::= { airIRmPmPump2 6 } - -airIRmPmPump2StartTemperature OBJECT IDENTIFIER ::= { airIRmPmPump2 10 } -airIRmPmPump2StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 starting temperature in tenths of Kelvins (5909)" - ::= { airIRmPmPump2StartTemperature 1 } -airIRmPmPump2StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 starting temperature in tenths of degrees Fahrenheit (5909)" - ::= { airIRmPmPump2StartTemperature 2 } - -airIRmPmPump2Hysteresis OBJECT IDENTIFIER ::= { airIRmPmPump2 11 } -airIRmPmPump2HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 hysteresis in tenths of Kelvins (5910)" - ::= { airIRmPmPump2Hysteresis 1 } -airIRmPmPump2HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 hysteresis in tenths of degrees Fahrenheit (5910)" - ::= { airIRmPmPump2Hysteresis 2 } - -airIRmPmPump2LinearRange OBJECT IDENTIFIER ::= { airIRmPmPump2 12 } -airIRmPmPump2LinearRangeK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 linear range in tenths of Kelvins (5911)" - ::= { airIRmPmPump2LinearRange 1 } -airIRmPmPump2LinearRangeF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 linear range in tenths of degrees Fahrenheit (5911)" - ::= { airIRmPmPump2LinearRange 2 } - -airIRmPmPump2PressureSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 pressure setpoint in tenths of Bars (5912)" - ::= { airIRmPmPump2 13 } - -airIRmPmPump2Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 2 runtime in hours (5920)" - ::= { airIRmPmPump2 21 } - -airIRmPmPump2Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 2 speed in percent (5921)" - ::= { airIRmPmPump2 22 } - -airIRmPmPump2ControlCycle OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 control cycle length in seconds (5927)" - ::= { airIRmPmPump2 28 } - -airIRmPmPump2MaxAdjust OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 maximum adjustment in percent (5928)" - ::= { airIRmPmPump2 29 } - -airIRmPmPump2ControlFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 2 control factor setting (5929)" - ::= { airIRmPmPump2 30 } - --- airIRmPmPump3 - -airIRmPmPump3ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 3 manual operation enable state (6001)" - ::= { airIRmPmPump3 2 } - -airIRmPmPump3Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 3 running (6002)" - ::= { airIRmPmPump3 3 } - -airIRmPmPump3ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 3 manual operation running (6005)" - ::= { airIRmPmPump3 6 } - -airIRmPmPump3StartTemperature OBJECT IDENTIFIER ::= { airIRmPmPump3 10 } -airIRmPmPump3StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 starting temperature in tenths of Kelvins (6009)" - ::= { airIRmPmPump3StartTemperature 1 } -airIRmPmPump3StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 starting temperature in tenths of degrees Fahrenheit (6009)" - ::= { airIRmPmPump3StartTemperature 2 } - -airIRmPmPump3Hysteresis OBJECT IDENTIFIER ::= { airIRmPmPump3 11 } -airIRmPmPump3HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 hysteresis in tenths of Kelvins (6010)" - ::= { airIRmPmPump3Hysteresis 1 } -airIRmPmPump3HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 hysteresis in tenths of degrees Fahrenheit (6010)" - ::= { airIRmPmPump3Hysteresis 2 } - -airIRmPmPump3LinearRange OBJECT IDENTIFIER ::= { airIRmPmPump3 12 } -airIRmPmPump3LinearRangeK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 linear range in tenths of Kelvins (6011)" - ::= { airIRmPmPump3LinearRange 1 } -airIRmPmPump3LinearRangeF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 linear range in tenths of degrees Fahrenheit (6011)" - ::= { airIRmPmPump3LinearRange 2 } - -airIRmPmPump3PressureSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 pressure setpoint in tenths of Bars (6012)" - ::= { airIRmPmPump3 13 } - -airIRmPmPump3Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 3 runtime in hours (6020)" - ::= { airIRmPmPump3 21 } - -airIRmPmPump3Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 3 speed in percent (6021)" - ::= { airIRmPmPump3 22 } - -airIRmPmPump3ControlCycle OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 control cycle length in seconds (6027)" - ::= { airIRmPmPump3 28 } - -airIRmPmPump3MaxAdjust OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 maximum adjustment in percent (6028)" - ::= { airIRmPmPump3 29 } - -airIRmPmPump3ControlFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 3 control factor setting (6029)" - ::= { airIRmPmPump3 30 } - --- airIRmPmPump4 - -airIRmPmPump4ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 4 manual operation enable state (6101)" - ::= { airIRmPmPump4 2 } - -airIRmPmPump4Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 4 running (6102)" - ::= { airIRmPmPump4 3 } - -airIRmPmPump4ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 4 manual operation running (6105)" - ::= { airIRmPmPump4 6 } - -airIRmPmPump4StartTemperature OBJECT IDENTIFIER ::= { airIRmPmPump4 10 } -airIRmPmPump4StartTemperatureK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 starting temperature in tenths of Kelvins (6109)" - ::= { airIRmPmPump4StartTemperature 1 } -airIRmPmPump4StartTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 starting temperature in tenths of degrees Fahrenheit (6109)" - ::= { airIRmPmPump4StartTemperature 2 } - -airIRmPmPump4Hysteresis OBJECT IDENTIFIER ::= { airIRmPmPump4 11 } -airIRmPmPump4HysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 hysteresis in tenths of Kelvins (6110)" - ::= { airIRmPmPump4Hysteresis 1 } -airIRmPmPump4HysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 hysteresis in tenths of degrees Fahrenheit (6110)" - ::= { airIRmPmPump4Hysteresis 2 } - -airIRmPmPump4LinearRange OBJECT IDENTIFIER ::= { airIRmPmPump4 12 } -airIRmPmPump4LinearRangeK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 linear range in tenths of Kelvins (6111)" - ::= { airIRmPmPump4LinearRange 1 } -airIRmPmPump4LinearRangeF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 linear range in tenths of degrees Fahrenheit (6111)" - ::= { airIRmPmPump4LinearRange 2 } - -airIRmPmPump4PressureSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 pressure setpoint in tenths of Bars (6112)" - ::= { airIRmPmPump4 13 } - -airIRmPmPump4Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 4 runtime in hours (6120)" - ::= { airIRmPmPump4 21 } - -airIRmPmPump4Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump 4 speed in percent (6121)" - ::= { airIRmPmPump4 22 } - -airIRmPmPump4ControlCycle OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 control cycle length in seconds (6127)" - ::= { airIRmPmPump4 28 } - -airIRmPmPump4MaxAdjust OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 maximum adjustment in percent (6128)" - ::= { airIRmPmPump4 29 } - -airIRmPmPump4ControlFactor OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Pump 4 control factor setting (6129)" - ::= { airIRmPmPump4 30 } - --- airIRmPmHotgasHeating - -airIRmPmHotgasHeatRunning OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Hotgas heat running state. (6202)" - ::= { airIRmPmHotgasHeating 3 } - --- airIRmPmPWWHeating - -airIRmPmPWWHeatingManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PWW-heating manual operation enable (6301)" - ::= { airIRmPmPWWHeating 2 } - -airIRmPmPWWHeatingRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PWW-heating running (6302)" - ::= { airIRmPmPWWHeating 3 } - -airIRmPmPWWHeatingManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PWW-heating manual operation running (6303)" - ::= { airIRmPmPWWHeating 4 } - -airIRmPmPWWHeatingType OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - undefined (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "PWW-heating type (6308)" - ::= { airIRmPmPWWHeating 9 } - -airIRmPmPWWHeatingStartTemp OBJECT IDENTIFIER ::= { airIRmPmPWWHeating 10 } -airIRmPmPWWHeatingStartTempK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating starting temperature in Kelvins (6309)" - ::= { airIRmPmPWWHeatingStartTemp 1 } -airIRmPmPWWHeatingStartTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating starting temperature in degrees Fahrenheit (6309)" - ::= { airIRmPmPWWHeatingStartTemp 2 } - -airIRmPmPWWHeatingHysteresis OBJECT IDENTIFIER ::= { airIRmPmPWWHeating 12 } -airIRmPmPWWHeatingHysteresisK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating hysteresis in Kelvins (6311)" - ::= { airIRmPmPWWHeatingHysteresis 1 } -airIRmPmPWWHeatingHysteresisF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating hysteresis in degrees Fahrenheit (6311)" - ::= { airIRmPmPWWHeatingHysteresis 2 } - -airIRmPmPWWHeatingLinearRange OBJECT IDENTIFIER ::= { airIRmPmPWWHeating 13 } -airIRmPmPWWHeatingLinearRangeK OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating linear range in Kelvins (6312)" - ::= { airIRmPmPWWHeatingLinearRange 1 } -airIRmPmPWWHeatingLinearRangeF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating linear range in degrees Fahrenheit (6312)" - ::= { airIRmPmPWWHeatingLinearRange 2 } - -airIRmPmPWWHeatingCurrentValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating current value in percent (6315)" - ::= { airIRmPmPWWHeating 16 } - -airIRmPmPWWHeatingManOpValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "PWW-heating manual operation value in percent (6316)" - ::= { airIRmPmPWWHeating 17 } - --- airIRmPmHumidifier1 - -airIRmPmHumidifier1ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 manual operation enable (6401)" - ::= { airIRmPmHumidifier1 2 } - -airIRmPmHumidifier1Running OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 running state (6402)" - ::= { airIRmPmHumidifier1 3 } - -airIRmPmHumidifier1ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 manual operation running state (6404)" - ::= { airIRmPmHumidifier1 5 } - -airIRmPmHumidifier1Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - proportional (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 type (6416)" - ::= { airIRmPmHumidifier1 17 } - -airIRmPmHumidifier1StartHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #1 start humidity in tenths - of percent relative humidity (6417)" - ::= { airIRmPmHumidifier1 18 } - -airIRmPmHumidifier1Hysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #1 hysteresis in tenths - of percent relative humidity (6419)" - ::= { airIRmPmHumidifier1 20 } - -airIRmPmHumidifier1LinearRange OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #1 linear range in tenths - of percent relative humidity per Kelvin (6420)" - ::= { airIRmPmHumidifier1 21 } - -airIRmPmHumidifier1Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 runtime in hours (6426)" - ::= { airIRmPmHumidifier1 27 } - -airIRmPmHumidifier1CurrentValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 current value in percent (6427)" - ::= { airIRmPmHumidifier1 28 } - -airIRmPmHumidifier1ManOpValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #1 manual operation value in percent (6428)" - ::= { airIRmPmHumidifier1 29 } - --- airIRmPmHumidifier2 - -airIRmPmHumidifier2ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 manual operation enable (6501)" - ::= { airIRmPmHumidifier2 2 } - -airIRmPmHumidifier2Running OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 running state (6502)" - ::= { airIRmPmHumidifier2 3 } - -airIRmPmHumidifier2ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 manual operation running state (6504)" - ::= { airIRmPmHumidifier2 5 } - -airIRmPmHumidifier2Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - proportional (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 type (6516)" - ::= { airIRmPmHumidifier2 17 } - -airIRmPmHumidifier2StartHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #2 start humidity in tenths - of percent relative humidity (6517)" - ::= { airIRmPmHumidifier2 18 } - -airIRmPmHumidifier2Hysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #2 hysteresis in tenths - of percent relative humidity (6519)" - ::= { airIRmPmHumidifier2 20 } - -airIRmPmHumidifier2LinearRange OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #2 linear range in tenths - of percent relative humidity per Kelvin (6520)" - ::= { airIRmPmHumidifier2 21 } - -airIRmPmHumidifier2Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 runtime in hours (6526)" - ::= { airIRmPmHumidifier2 27 } - -airIRmPmHumidifier2CurrentValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 current value in percent (6527)" - ::= { airIRmPmHumidifier2 28 } - -airIRmPmHumidifier2ManOpValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Humidifier #2 manual operation value in percent (6528)" - ::= { airIRmPmHumidifier2 29 } - --- airIRmPmDehumidification - -airIRmPmDehumidificManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Dehumidifier manual operation enable setting (6801)" - ::= { airIRmPmDehumidification 2 } - -airIRmPmDehumidificRunning OBJECT-TYPE - SYNTAX AirIRmControlState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Dehumidifier running state (6802)" - ::= { airIRmPmDehumidification 3 } - -airIRmPmDehumidificManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Dehumidifier manual operation running (6804)" - ::= { airIRmPmDehumidification 5 } - -airIRmPmDehumidificStartHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier start humidity in tenths of percent relative humidity (6809)" - ::= { airIRmPmDehumidification 10 } - -airIRmPmDehumidificHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier hysteresis in tenths of percent relative humidity (6811)" - ::= { airIRmPmDehumidification 12 } - -airIRmPmDehumidificMinWaterTemp OBJECT IDENTIFIER ::= { airIRmPmDehumidification 18 } -airIRmPmDehumidificMinWaterTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier minimum water temperature in tenths of - degrees Celsius (6817)" - ::= { airIRmPmDehumidificMinWaterTemp 1 } -airIRmPmDehumidificMinWaterTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier minimum water temperature in tenths of - degrees Fahrenheit (6817)" - ::= { airIRmPmDehumidificMinWaterTemp 2 } - -airIRmPmDehumidificMaxWaterTemp OBJECT IDENTIFIER ::= { airIRmPmDehumidification 19 } -airIRmPmDehumidificMaxWaterTempC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier maximum water temperature in tenths of - degrees Celsius (6818)" - ::= { airIRmPmDehumidificMaxWaterTemp 1 } -airIRmPmDehumidificMaxWaterTempF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier maximum water temperature in tenths of - degrees Fahrenheit (6818)" - ::= { airIRmPmDehumidificMaxWaterTemp 2 } - -airIRmPmDehumidificRuntime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Dehumidifier runtime in hours (6820)" - ::= { airIRmPmDehumidification 21 } - --- airIRmPmFan1 - -airIRmPmFan1ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation enable (6901)" - ::= { airIRmPmFan1 2 } - -airIRmPmFan1Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 running (6902)" - ::= { airIRmPmFan1 3 } - -airIRmPmFan1ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation running (6905)" - ::= { airIRmPmFan1 6 } - -airIRmPmFan1Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - proportional (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 type (6908)" - ::= { airIRmPmFan1 9 } - -airIRmPmFan1Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 runtime in hours (6931)" - ::= { airIRmPmFan1 32 } - -airIRmPmFan1Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 speed in percent (6932)" - ::= { airIRmPmFan1 33 } - -airIRmPmFan1ManOpSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation speed in percent (6933)" - ::= { airIRmPmFan1 34 } - --- airIRmPmFan2 - -airIRmPmFan2ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation enable (7001)" - ::= { airIRmPmFan2 2 } - -airIRmPmFan2Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 running (7002)" - ::= { airIRmPmFan2 3 } - -airIRmPmFan2ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation running (7005)" - ::= { airIRmPmFan2 6 } - -airIRmPmFan2Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - proportional (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 2 type (7008)" - ::= { airIRmPmFan2 9 } - -airIRmPmFan2Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 runtime in hours (7031)" - ::= { airIRmPmFan2 32 } - -airIRmPmFan2Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 speed in percent (7032)" - ::= { airIRmPmFan2 33 } - -airIRmPmFan2ManOpSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation speed in percent (7033)" - ::= { airIRmPmFan2 34 } - --- airIRmPmFan3 - -airIRmPmFan3ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation enable (7101)" - ::= { airIRmPmFan3 2 } - -airIRmPmFan3Running OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 running (7102)" - ::= { airIRmPmFan3 3 } - -airIRmPmFan3ManOpRunning OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation running (7105)" - ::= { airIRmPmFan3 6 } - -airIRmPmFan3Type OBJECT-TYPE - SYNTAX INTEGER { - direct (1), - proportional (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 3 type (7108)" - ::= { airIRmPmFan3 9 } - -airIRmPmFan3Runtime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 runtime in hours (7131)" - ::= { airIRmPmFan3 32 } - -airIRmPmFan3Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 speed in percent (7132)" - ::= { airIRmPmFan3 33 } - -airIRmPmFan3ManOpSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan 1 manual operation speed in percent (7133)" - ::= { airIRmPmFan3 34 } - --- airIRmPmLouver1 - -airIRmPmLouver1ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 1 manual operation enable (7201)" - ::= { airIRmPmLouver1 2 } - -airIRmPmLouver1Position OBJECT-TYPE - SYNTAX INTEGER { - closed (1), - open (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 1 position (7202)" - ::= { airIRmPmLouver1 3 } - -airIRmPmLouver1ManOpPosition OBJECT-TYPE - SYNTAX INTEGER { - closed (1), - open (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 1 manual operation position setting (7203)" - ::= { airIRmPmLouver1 4 } - --- airIRmPmLouver2 - -airIRmPmLouver2ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 2 manual operation enable (7301)" - ::= { airIRmPmLouver2 2 } - -airIRmPmLouver2Position OBJECT-TYPE - SYNTAX INTEGER { - closed (1), - open (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 2 position (7302)" - ::= { airIRmPmLouver2 3 } - -airIRmPmLouver2ManOpPosition OBJECT-TYPE - SYNTAX INTEGER { - closed (1), - open (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 2 manual operation position setting (7303)" - ::= { airIRmPmLouver2 4 } - --- airIRmPmLouver3 - -airIRmPmLouver3ManOpEnable OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 3 manual operation enable (7401)" - ::= { airIRmPmLouver3 2 } - -airIRmPmLouver3Position OBJECT-TYPE - SYNTAX INTEGER { - closed (1), - open (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 3 position (7402)" - ::= { airIRmPmLouver3 3 } - -airIRmPmLouver3ManOpPosition OBJECT-TYPE - SYNTAX INTEGER { - closed (1), - open (2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Louver 3 manual operation position setting (7403)" - ::= { airIRmPmLouver3 4 } - --- airIRmPmAuxAlarm1 --- Empty - --- airIRmPmAuxAlarm2 --- Empty - --- airIRmPmAuxAlarm3 --- Empty - --- airIRmPmAuxAlarm4 --- Empty - --- airIRmPmAuxAlarm5 --- Empty - - --- airIRmPmAlarmBits - -airIRmPmFan1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan #1 failure (8500)." - ::= { airIRmPmAlarmBits 1 } - -airIRmPmFan2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan #2 failure (8501)." - ::= { airIRmPmAlarmBits 2 } - -airIRmPmFan3Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan #3 failure (8502)." - ::= { airIRmPmAlarmBits 3 } - -airIRmPmCompressor1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor #1 failure (8503)." - ::= { airIRmPmAlarmBits 4 } - -airIRmPmCompressor2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor #2 failure (8504)." - ::= { airIRmPmAlarmBits 5 } - -airIRmPmWaterDetector OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water detector alarm (8505)." - ::= { airIRmPmAlarmBits 6 } - -airIRmPmPhaseFailure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Phase failure (8506)." - ::= { airIRmPmAlarmBits 7 } - -airIRmPmFireSmokeDetector OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fire/smoke detector (8507)." - ::= { airIRmPmAlarmBits 8 } - -airIRmPmReturnAirTemperatureTooHigh OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air temperature too high (8508)." - ::= { airIRmPmAlarmBits 9 } - -airIRmPmReturnAirHumidityTooHigh OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air humidity too high (8509)." - ::= { airIRmPmAlarmBits 10 } - -airIRmPmSupplyAirTemperatureTooHigh OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air temperature too high (8510)." - ::= { airIRmPmAlarmBits 11 } - -airIRmPmSupplyAirHumidityTooHigh OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air humidity too high (8511)." - ::= { airIRmPmAlarmBits 12 } - -airIRmPmWaterTemperatureTooHigh OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water temperature too high (8512)." - ::= { airIRmPmAlarmBits 13 } - -airIRmPmReturnAirTemperatureTooLow OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air temperature too low (8513)." - ::= { airIRmPmAlarmBits 14 } - -airIRmPmReturnAirHumidityTooLow OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Return air humidity too low (8514)." - ::= { airIRmPmAlarmBits 15 } - -airIRmPmSupplyAirTemperatureTooLow OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air temperature too low (8515)." - ::= { airIRmPmAlarmBits 16 } - -airIRmPmSupplyAirHumidityTooLow OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Supply air humidity too low (8516)." - ::= { airIRmPmAlarmBits 17 } - -airIRmPmWaterTemperatureTooLow OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Water temperature too low (8517)." - ::= { airIRmPmAlarmBits 18 } - -airIRmPmSensor1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #1 failure (8518)." - ::= { airIRmPmAlarmBits 19 } - -airIRmPmSensor2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #2 failure (8519)." - ::= { airIRmPmAlarmBits 20 } - -airIRmPmSensor3Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #3 failure (8520)." - ::= { airIRmPmAlarmBits 21 } - -airIRmPmSensor4Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #4 failure (8521)." - ::= { airIRmPmAlarmBits 22 } - -airIRmPmSensor5Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #5 failure (8522)." - ::= { airIRmPmAlarmBits 23 } - -airIRmPmSensor6Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #6 failure (8523)." - ::= { airIRmPmAlarmBits 24 } - -airIRmPmSensor7Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #7 failure (8524)." - ::= { airIRmPmAlarmBits 25 } - -airIRmPmSensor8Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #8 failure (8525)." - ::= { airIRmPmAlarmBits 26 } - -airIRmPmSensor9Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #9 failure (8526)." - ::= { airIRmPmAlarmBits 27 } - -airIRmPmSensor10Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #10 failure (8527)." - ::= { airIRmPmAlarmBits 28 } - -airIRmPmSensor11Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #11 failure (8528)." - ::= { airIRmPmAlarmBits 29 } - -airIRmPmSensor12Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #12 failure (8529)." - ::= { airIRmPmAlarmBits 30 } - -airIRmPmSensor13Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #13 failure (8530)." - ::= { airIRmPmAlarmBits 31 } - -airIRmPmSensor14Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #14 failure (8531)." - ::= { airIRmPmAlarmBits 32 } - -airIRmPmSensor15Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #15 failure (8532)." - ::= { airIRmPmAlarmBits 33 } - -airIRmPmSensor16Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #16 failure (8533)." - ::= { airIRmPmAlarmBits 34 } - -airIRmPmSensor17Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #17 failure (8534)." - ::= { airIRmPmAlarmBits 35 } - -airIRmPmSensor18Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #18 failure (8535)." - ::= { airIRmPmAlarmBits 36 } - -airIRmPmSensor19Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #19 failure (8536)." - ::= { airIRmPmAlarmBits 37 } - -airIRmPmSensor20Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #20 failure (8537)." - ::= { airIRmPmAlarmBits 38 } - -airIRmPmSensor21Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #21 failure (8538)." - ::= { airIRmPmAlarmBits 39 } - -airIRmPmSensor1Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #1 defect (8539)." - ::= { airIRmPmAlarmBits 40 } - -airIRmPmSensor2Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #2 defect (8540)." - ::= { airIRmPmAlarmBits 41 } - -airIRmPmSensor3Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #3 defect (8541)." - ::= { airIRmPmAlarmBits 42 } - -airIRmPmSensor4Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #4 defect (8542)." - ::= { airIRmPmAlarmBits 43 } - -airIRmPmSensor5Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #5 defect (8543)." - ::= { airIRmPmAlarmBits 44 } - -airIRmPmSensor6Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #6 defect (8544)." - ::= { airIRmPmAlarmBits 45 } - -airIRmPmSensor7Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #7 defect (8545)." - ::= { airIRmPmAlarmBits 46 } - -airIRmPmSensor8Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #8 defect (8546)." - ::= { airIRmPmAlarmBits 47 } - -airIRmPmSensor9Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #9 defect (8547)." - ::= { airIRmPmAlarmBits 48 } - -airIRmPmSensor10Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #10 defect (8548)." - ::= { airIRmPmAlarmBits 49 } - -airIRmPmSensor11Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #11 defect (8549)." - ::= { airIRmPmAlarmBits 50 } - -airIRmPmSensor12Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #12 defect (8550)." - ::= { airIRmPmAlarmBits 51 } - -airIRmPmSensor13Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #13 defect (8551)." - ::= { airIRmPmAlarmBits 52 } - -airIRmPmSensor14Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #14 defect (8552)." - ::= { airIRmPmAlarmBits 53 } - -airIRmPmSensor15Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #15 defect (8553)." - ::= { airIRmPmAlarmBits 54 } - -airIRmPmSensor16Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #16 defect (8554)." - ::= { airIRmPmAlarmBits 55 } - -airIRmPmSensor17Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #17 defect (8555)." - ::= { airIRmPmAlarmBits 56 } - -airIRmPmSensor18Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #18 defect (8556)" - ::= { airIRmPmAlarmBits 57 } - -airIRmPmSensor19Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #19 defect (8557)." - ::= { airIRmPmAlarmBits 58 } - -airIRmPmSensor20Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #20 defect (8558)." - ::= { airIRmPmAlarmBits 59 } - -airIRmPmSensor21Defect OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Sensor #21 defect (8559)." - ::= { airIRmPmAlarmBits 60 } - -airIRmPmCompressor1Alarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor #1 alarm (8560)." - ::= { airIRmPmAlarmBits 61 } - -airIRmPmCompressor2Alarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor #2 alarm (8561)." - ::= { airIRmPmAlarmBits 62 } - -airIRmPmCompressor1LowPressure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor #1 low pressure (8562)." - ::= { airIRmPmAlarmBits 63 } - -airIRmPmCompressor2LowPressure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Compressor #2 low pressure (8563)." - ::= { airIRmPmAlarmBits 64 } - -airIRmPmReheat1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reheat #1 failure (8564)." - ::= { airIRmPmAlarmBits 65 } - -airIRmPmReheat2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reheat #2 failure (8565)." - ::= { airIRmPmAlarmBits 66 } - -airIRmPmReheat3Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reheat #3 failure (8566)." - ::= { airIRmPmAlarmBits 67 } - -airIRmPmReheat4Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Reheat #4 failure (8567)." - ::= { airIRmPmAlarmBits 68 } - -airIRmPmDrycooler1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler #1 failure (8568)." - ::= { airIRmPmAlarmBits 69 } - -airIRmPmDrycooler2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler #2 failure (8569)." - ::= { airIRmPmAlarmBits 70 } - -airIRmPmDrycooler3Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler #3 failure (8570)." - ::= { airIRmPmAlarmBits 71 } - -airIRmPmDrycooler4Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Drycooler #4 failure (8571)." - ::= { airIRmPmAlarmBits 72 } - -airIRmPmPump1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump #1 failure (8572)." - ::= { airIRmPmAlarmBits 73 } - -airIRmPmPump2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump #2 failure (8573)." - ::= { airIRmPmAlarmBits 74 } - -airIRmPmPump3Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump #3 failure (8574)." - ::= { airIRmPmAlarmBits 75 } - -airIRmPmPump4Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Pump #4 failure (8575)." - ::= { airIRmPmAlarmBits 76 } - -airIRmPmHumidifier1Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 failure (8576)." - ::= { airIRmPmAlarmBits 77 } - -airIRmPmHumidifier2Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 failure (8577)." - ::= { airIRmPmAlarmBits 78 } - -airIRmPmHumidifier3Failure OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #3 failure (8578)." - ::= { airIRmPmAlarmBits 79 } - -airIRmPmHumidifier1Alarm5us OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 5us alarm (8579)." - ::= { airIRmPmAlarmBits 80 } - -airIRmPmHumidifier2Alarm5us OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 5us alarm (8580)." - ::= { airIRmPmAlarmBits 81 } - -airIRmPmHumidifier3Alarm5us OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #3 5us alarm (8581)." - ::= { airIRmPmAlarmBits 82 } - -airIRmPmHumidifier1Alarm20us OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #1 20us alarm (8582)." - ::= { airIRmPmAlarmBits 83 } - -airIRmPmHumidifier2Alarm20us OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #2 20us alarm (8583)." - ::= { airIRmPmAlarmBits 84 } - -airIRmPmHumidifier3Alarm20us OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Humidifier #3 20us alarm (8584)." - ::= { airIRmPmAlarmBits 85 } - -airIRmPmFan1Alarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan #1 alarm (8585)." - ::= { airIRmPmAlarmBits 86 } - -airIRmPmFan2Alarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan #2 alarm (8586)." - ::= { airIRmPmAlarmBits 87 } - -airIRmPmFan3Alarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Fan #3 alarm (8587)." - ::= { airIRmPmAlarmBits 88 } - -airIRmPmFilter1Clogged OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Filter #1 clogged (8588)." - ::= { airIRmPmAlarmBits 89 } - -airIRmPmFilter2Clogged OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Filter #2 clogged (8589)." - ::= { airIRmPmAlarmBits 90 } - -airIRmPmFilter3Clogged OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Filter #3 clogged (8590)." - ::= { airIRmPmAlarmBits 91 } - -airIRmPmAuxiliaryAlarm1 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #1 alarm (8591)." - ::= { airIRmPmAlarmBits 92 } - -airIRmPmAuxiliaryAlarm2 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #2 alarm (8592)." - ::= { airIRmPmAlarmBits 93 } - -airIRmPmAuxiliaryAlarm3 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #3 alarm (8593)." - ::= { airIRmPmAlarmBits 94 } - -airIRmPmAuxiliaryAlarm4 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #4 alarm (8594)." - ::= { airIRmPmAlarmBits 95 } - -airIRmPmAuxiliaryAlarm5 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #5 alarm (8595)." - ::= { airIRmPmAlarmBits 96 } - -airIRmPmAuxiliaryAlarm6 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #6 alarm (8596)." - ::= { airIRmPmAlarmBits 97 } - -airIRmPmAuxiliaryAlarm7 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #7 alarm (8597)." - ::= { airIRmPmAlarmBits 98 } - -airIRmPmAuxiliaryAlarm8 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #8 alarm (8598)." - ::= { airIRmPmAlarmBits 99 } - -airIRmPmAuxiliaryAlarm9 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #9 alarm (8599)." - ::= { airIRmPmAlarmBits 100 } - -airIRmPmAuxiliaryAlarm10 OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Auxiliary #10 alarm (8600)." - ::= { airIRmPmAlarmBits 101 } - -airIRmPmHotGasHeatingAlarm OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Hot gas heating alarm (8601)." - ::= { airIRmPmAlarmBits 102 } - -airIRmPmEEV1PressureSensorError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "EEV1 pressure sensor error (8602)." - ::= { airIRmPmAlarmBits 103 } - -airIRmPmEEV1TemperatureSensorError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "EEV1 temperature sensor error (8603)." - ::= { airIRmPmAlarmBits 104 } - -airIRmPmEEV1StepperMotorError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "EEV1 stepper motor error (8604)." - ::= { airIRmPmAlarmBits 105 } - -airIRmPmEEV2PressureSensorError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "EEV2 pressure sensor error (8605)." - ::= { airIRmPmAlarmBits 106 } - -airIRmPmEEV2TemperatureSensorError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "EEV2 temperature sensor error (8606)." - ::= { airIRmPmAlarmBits 107 } - -airIRmPmEEV2StepperMotorError OBJECT-TYPE - SYNTAX AirIRmAlarmState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "EEV2 stepper motor error (8607)." - ::= { airIRmPmAlarmBits 108 } - --- airIRmPmMyZone - -airIRmPmMyZoneNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone number (11700)." - ::= { airIRmPmMyZone 1 } - -airIRmPmMyZoneRoomTemperature OBJECT IDENTIFIER ::= { airIRmPmMyZone 2 } -airIRmPmMyZoneRoomTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone room temperature in tenths of degrees Celsius (11701)." - ::= { airIRmPmMyZoneRoomTemperature 1 } -airIRmPmMyZoneRoomTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone room temperature in tenths of degrees Fahrenheit (11701)." - ::= { airIRmPmMyZoneRoomTemperature 2 } - -airIRmPmMyZoneRoomHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone room humidity in tenths of %RH (11702)." - ::= { airIRmPmMyZone 3 } - -airIRmPmMyZoneSupplyTemperature OBJECT IDENTIFIER ::= { airIRmPmMyZone 4 } -airIRmPmMyZoneSupplyTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone supply temperature in tenths of degrees Celsius (11703)." - ::= { airIRmPmMyZoneSupplyTemperature 1 } -airIRmPmMyZoneSupplyTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone supply temperature in tenths - of degrees Fahrenheit (11703)." - ::= { airIRmPmMyZoneSupplyTemperature 2 } - -airIRmPmMyZoneSupplyHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone supply humidity in tenths of %RH (11704)." - ::= { airIRmPmMyZone 5 } - -airIRmPmMyZoneSequencingTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone sequencing time in minutes (11705)." - ::= { airIRmPmMyZone 6 } - -airIRmPmMyZoneNumberOfErrorUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Number of error units in my zone (11706)." - ::= { airIRmPmMyZone 7 } - -airIRmPmMyZoneEmergencyTemperature OBJECT IDENTIFIER ::= { airIRmPmMyZone 8 } -airIRmPmMyZoneEmergencyTemperatureC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone emergency temperature in tenths of degrees Celsius (11707)." - ::= { airIRmPmMyZoneEmergencyTemperature 1 } -airIRmPmMyZoneEmergencyTemperatureF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone emergency temperature in tenths - of degrees Fahrenheit (11707)." - ::= { airIRmPmMyZoneEmergencyTemperature 2 } - -airIRmPmMyZoneCWEnergySaveMode OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "My zone CW energy save mode (11708)." - ::= { airIRmPmMyZone 9 } - --- airIRmPmGlobalZoneData - -airIRmPmGlobalZoneDataEmergencyOpMode OBJECT-TYPE - SYNTAX AirIRmActivityState - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Emergency operation mode (11800)." - ::= { airIRmPmGlobalZoneData 1 } - --- End of AC InRoom - --- Begining of airIRGen3 - --- ****************************************************************** ---airIRG3 Ident Group --- ****************************************************************** - -airIRG3IdentTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ident table size." - ::= { airIRG3Ident 1 } - -AirIRG3IdentEntry ::= SEQUENCE { - airIRG3IdentIndex INTEGER, - airIRG3IdentName DisplayString, - airIRG3IdentLocation DisplayString, - airIRG3IdentModelNumber DisplayString, - airIRG3IdentSerialNumber DisplayString, - airIRG3IdentFirmwareRevision DisplayString, - airIRG3IdentHardwareRevision DisplayString, - airIRG3IdentManufactureDate DisplayString, - airIRG3IdentRDUSysOID OBJECT IDENTIFIER, - airIRG3IdentCMSysOID OBJECT IDENTIFIER, - airIRG3IdentGroupSysOID OBJECT IDENTIFIER - } - -airIRG3IdentTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3IdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to get ident information of current RDU and its assigned CM's." - ::= { airIRG3Ident 2 } - -airIRG3IdentEntry OBJECT-TYPE - SYNTAX AirIRG3IdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The ident table entry." - INDEX { airIRG3IdentIndex} - ::= { airIRG3IdentTable 1 } - -airIRG3IdentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of ident table." - ::= { airIRG3IdentEntry 1 } - -airIRG3IdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the unit name." - ::= { airIRG3IdentEntry 2 } - -airIRG3IdentLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A character string identifying the unit location." - ::= { airIRG3IdentEntry 3 } - -airIRG3IdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit model number." - ::= { airIRG3IdentEntry 4 } - -airIRG3IdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit serial number." - ::= { airIRG3IdentEntry 5 } - -airIRG3IdentFirmwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit firmware version." - ::= { airIRG3IdentEntry 6 } - -airIRG3IdentHardwareRevision OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit controller hardware revision." - ::= { airIRG3IdentEntry 7 } - -airIRG3IdentManufactureDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the unit manufacture date." - ::= { airIRG3IdentEntry 8 } - -airIRG3IdentRDUSysOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID contains an OID path to the RDU data." - ::= { airIRG3IdentEntry 9 } - -airIRG3IdentCMSysOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID contains an OID path to the cooling module data." - ::= { airIRG3IdentEntry 10 } - -airIRG3IdentGroupSysOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID contains an OID path to the group data." - ::= { airIRG3IdentEntry 11 } - - - --- ****************************************************************** --- airIRG3 Group Status --- ****************************************************************** - -airIRG3GroupTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group table size." - ::= { airIRG3Group 1 } - - -AirIRG3GroupStatusEntry ::= SEQUENCE { - airIRG3GroupStatusIndex INTEGER, - airIRG3GroupStatusCoolOutput INTEGER, - airIRG3GroupStatusCoolDemand INTEGER, - airIRG3GroupStatusAirFlowUS INTEGER, - airIRG3GroupStatusAirFlowMetric INTEGER, - airIRG3GroupStatusMaxRackInletTempUS INTEGER, - airIRG3GroupStatusMaxRackInletTempMetric INTEGER, - airIRG3GroupStatusMinRackInletTempUS INTEGER, - airIRG3GroupStatusMinRackInletTempMetric INTEGER, - airIRG3GroupStatusMaxReturnAirTempUS INTEGER, - airIRG3GroupStatusMaxReturnAirTempMetric INTEGER, - airIRG3GroupStatusMinReturnAirTempUS INTEGER, - airIRG3GroupStatusMinReturnAirTempMetric INTEGER, - airIRG3GroupStatusAvgSupplyTempUS INTEGER, - airIRG3GroupStatusAvgSupplyTempMetric INTEGER, - airIRG3GroupStatusAvgReturnTempUS INTEGER, - airIRG3GroupStatusAvgReturnTempMetric INTEGER, - airIRG3GroupStatusAvgFanSpeed INTEGER, - airIRG3GroupStatusAvgAirFlowUS INTEGER, - airIRG3GroupStatusAvgAirFlowMetric INTEGER, - airIRG3GroupStatusTotalAirFlowUS INTEGER, - airIRG3GroupStatusTotalAirFlowMetric INTEGER - } - -airIRG3GroupStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3GroupStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to get group status information." - ::= { airIRG3Group 2 } - -airIRG3GroupStatusEntry OBJECT-TYPE - SYNTAX AirIRG3GroupStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The group staus table entry." - INDEX { airIRG3GroupStatusIndex} - ::= { airIRG3GroupStatusTable 1 } - -airIRG3GroupStatusIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of group status table." - ::= { airIRG3GroupStatusEntry 1 } - -airIRG3GroupStatusCoolOutput OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group cooling output in tenths of kilowatts (kW). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 2 } - -airIRG3GroupStatusCoolDemand OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group cooling demand in tenths of kilowatts (kW). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 3 } - -airIRG3GroupStatusAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group air flow in cubic feet per minute (CFM). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 4 } - -airIRG3GroupStatusAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group air flow in liters per second (L/s). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 5 } - -airIRG3GroupStatusMaxRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum rack inlet temperature in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 6 } - -airIRG3GroupStatusMaxRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum rack inlet temperature in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 7 } - -airIRG3GroupStatusMinRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum rack inlet temperature in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 8 } - -airIRG3GroupStatusMinRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum rack inlet temperature in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 9 } - -airIRG3GroupStatusMaxReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum return air temperature in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 10 } - -airIRG3GroupStatusMaxReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group maximum return air temperature in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 11 } - -airIRG3GroupStatusMinReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum return air temperature in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 12 } - -airIRG3GroupStatusMinReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group minimum return air temperature in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 13 } - -airIRG3GroupStatusAvgSupplyTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average supply air temperature in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 14 } - -airIRG3GroupStatusAvgSupplyTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average supply air temperature in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 15 } - -airIRG3GroupStatusAvgReturnTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average return air temperature in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 16 } - -airIRG3GroupStatusAvgReturnTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average return air temperature in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 17 } - -airIRG3GroupStatusAvgFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average fan speed in revolutions per minute (RPM). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 18 } - -airIRG3GroupStatusAvgAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average air flow in cubic feet per minute (CFM). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 19 } - -airIRG3GroupStatusAvgAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group average air flow in liters per second (L/s). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 20 } - -airIRG3GroupStatusTotalAirFlowUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group total air flow in cubic feet per minute (CFM). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 21 } - -airIRG3GroupStatusTotalAirFlowMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The group total air flow in liters per second (L/s). - Returns (-1) if not supported." - ::= { airIRG3GroupStatusEntry 22 } - - - --- ****************************************************************** ---airIRG3 Group Setpoints --- ****************************************************************** - -AirIRG3GroupSetpointsEntry ::= SEQUENCE { - airIRG3GroupSetpointsIndex INTEGER, - airIRG3GroupSetpointsCoolSetpointUS INTEGER, - airIRG3GroupSetpointsCoolSetpointMetric INTEGER, - airIRG3GroupSetpointsCoolDeadbandUS INTEGER, - airIRG3GroupSetpointsCoolDeadbandMetric INTEGER, - airIRG3GroupSetpointsFanSpeedPreference INTEGER, - airIRG3GroupSetpointsSupplyAirSetpointUS INTEGER, - airIRG3GroupSetpointsSupplyAirSetpointMetric INTEGER, - airIRG3GroupSetpointsAirFlowControl INTEGER, - airIRG3GroupSetpointsLightingOnTime INTEGER - } - -airIRG3GroupSetpointsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3GroupSetpointsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access the group setpoints." - ::= { airIRG3Group 3 } - -airIRG3GroupSetpointsEntry OBJECT-TYPE - SYNTAX AirIRG3GroupSetpointsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The group setpoints table entry." - INDEX { airIRG3GroupSetpointsIndex} - ::= { airIRG3GroupSetpointsTable 1 } - -airIRG3GroupSetpointsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of group setpoints table." - ::= { airIRG3GroupSetpointsEntry 1 } - -airIRG3GroupSetpointsCoolSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Fahrenheit." - ::= { airIRG3GroupSetpointsEntry 2 } - -airIRG3GroupSetpointsCoolSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling setpoint in tenths of - degrees Celsius." - ::= { airIRG3GroupSetpointsEntry 3 } - -airIRG3GroupSetpointsCoolDeadbandUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling deadband in tenths of - degrees Fahrenheit. Returns (-1) if not supported." - ::= { airIRG3GroupSetpointsEntry 4 } - -airIRG3GroupSetpointsCoolDeadbandMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group cooling deadband in tenths of - degrees Celsius. Returns (-1) if not supported." - ::= { airIRG3GroupSetpointsEntry 5 } - -airIRG3GroupSetpointsFanSpeedPreference OBJECT-TYPE - SYNTAX INTEGER { - low (1), - med-low (2), - med (3), - med-high (4), - high (5) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group preferred fan speed setting." - ::= { airIRG3GroupSetpointsEntry 6 } - -airIRG3GroupSetpointsSupplyAirSetpointUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Fahrenheit." - ::= { airIRG3GroupSetpointsEntry 7 } - -airIRG3GroupSetpointsSupplyAirSetpointMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Group supply air setpoint in tenths of - degrees Celsius." - ::= { airIRG3GroupSetpointsEntry 8 } - -airIRG3GroupSetpointsAirFlowControl OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group air flow control." - ::= { airIRG3GroupSetpointsEntry 9 } - -airIRG3GroupSetpointsLightingOnTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group lighting on time in minutes." - ::= { airIRG3GroupSetpointsEntry 10 } - - --- ****************************************************************** ---airIRG3 Group Config --- ****************************************************************** - -AirIRG3GroupConfigEntry ::= SEQUENCE { - airIRG3GroupConfigIndex INTEGER, - airIRG3GroupConfigNumberofCoolingUnits INTEGER, - airIRG3GroupConfigConfigurationType INTEGER, - airIRG3GroupConfigCapacityControlType INTEGER, - airIRG3GroupConfigFanSpeedControl INTEGER, - airIRG3GroupConfigCoolGainP INTEGER, - airIRG3GroupConfigCoolResetRateI INTEGER, - airIRG3GroupConfigCoolDerivativeD INTEGER, - airIRG3GroupConfigCoolPIDReset INTEGER, - airIRG3GroupConfigNumberofBackupUnits INTEGER, - airIRG3GroupConfigRuntimeBalancingEnable INTEGER, - airIRG3GroupConfigLoadAssistEnable INTEGER - } - -airIRG3GroupConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3GroupConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access group configuration table." - ::= { airIRG3Group 4 } - -airIRG3GroupConfigEntry OBJECT-TYPE - SYNTAX AirIRG3GroupConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The group config table entry." - INDEX { airIRG3GroupConfigIndex} - ::= { airIRG3GroupConfigTable 1 } - -airIRG3GroupConfigIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of group config table." - ::= { airIRG3GroupConfigEntry 1 } - -airIRG3GroupConfigNumberofCoolingUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of cooling units." - ::= { airIRG3GroupConfigEntry 2 } - -airIRG3GroupConfigConfigurationType OBJECT-TYPE - SYNTAX INTEGER { - racs (1), - spot (2), - in-row (3), - hacs (4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group configuration type. - The spot configuration type is not supported. - Returns (-1) if not supported." - ::= { airIRG3GroupConfigEntry 3 } - -airIRG3GroupConfigCapacityControlType OBJECT-TYPE - SYNTAX INTEGER { - discrete (1), - proportional (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group capacity control. Returns (-1) if not supported." - ::= { airIRG3GroupConfigEntry 4 } - -airIRG3GroupConfigFanSpeedControl OBJECT-TYPE - SYNTAX INTEGER { - automatic (1), - manual (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The group fan speed control." - ::= { airIRG3GroupConfigEntry 5 } - -airIRG3GroupConfigCoolGainP OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The gain component of the PID in hundredths." - ::= { airIRG3GroupConfigEntry 6 } - -airIRG3GroupConfigCoolResetRateI OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The integral component of the PID in hundredths." - ::= { airIRG3GroupConfigEntry 7 } - -airIRG3GroupConfigCoolDerivativeD OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The derivative component of the PID in hundredths." - ::= { airIRG3GroupConfigEntry 8 } - -airIRG3GroupConfigCoolPIDReset OBJECT-TYPE - SYNTAX INTEGER { - readBack (1), - reset (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Will reset the PID coefficients back to the factory defaults. - Readback is not supported, returns -1." - ::= { airIRG3GroupConfigEntry 9 } - -airIRG3GroupConfigNumberofBackupUnits OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of backup units." - ::= { airIRG3GroupConfigEntry 10 } - -airIRG3GroupConfigRuntimeBalancingEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable runtime balancing feature." - ::= { airIRG3GroupConfigEntry 11 } - -airIRG3GroupConfigLoadAssistEnable OBJECT-TYPE - SYNTAX INTEGER { - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable load assist feature." - ::= { airIRG3GroupConfigEntry 12 } - - --- *************************************** --- airIRG3 Alarm Status --- *************************************** - -airIRG3AlarmsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active alarms in the airIRG3AlarmsTable." - ::= { airIRG3Alarms 1 } - -AirIRG3AlarmsEntry ::= SEQUENCE { - airIRG3AlarmsIndex INTEGER, - airIRG3AlarmsEventCode INTEGER, - airIRG3AlarmsDescription DisplayString - } - -airIRG3AlarmsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3AlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Table of active alarms for the device." - ::= { airIRG3Alarms 2 } - -airIRG3AlarmsEntry OBJECT-TYPE - SYNTAX AirIRG3AlarmsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Alarms specification" - INDEX { airIRG3AlarmsIndex } - ::= { airIRG3AlarmsTable 1 } - -airIRG3AlarmsIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Alarm index." - ::= { airIRG3AlarmsEntry 1 } - -airIRG3AlarmsEventCode OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Event Code for the alarm. Returns (-1) if not supported." - ::= { airIRG3AlarmsEntry 2 } - -airIRG3AlarmsDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..64)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of the alarm. Returns (-1) if not supported." - ::= { airIRG3AlarmsEntry 3 } - --- *************************************** --- airIRG3 RDU Status --- *************************************** - -airIRG3RDUTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU table size." - ::= { airIRG3RDU 1 } - - -AirIRG3RDUStatusEntry ::= SEQUENCE { - airIRG3RDUStatusDeviceIndex INTEGER, - airIRG3RDUID DisplayString, - airIRG3RDUStatusOnReadyStandby INTEGER, - airIRG3RDUStatusOperatingMode INTEGER, - airIRG3RDUStatusLeadPump INTEGER, - airIRG3RDUStatusStartupDelay INTEGER, - airIRG3RDUStatusPumpChangeOverInterval INTEGER, - airIRG3RDUStatusStopOnLeakDetect INTEGER, - airIRG3RDUStatusPowerSource INTEGER, - airIRG3RDUStatusTotalRDUOutputPower INTEGER, - airIRG3RDUStatusInletWaterTempUS INTEGER, - airIRG3RDUStatusInletWaterTempMetric INTEGER, - airIRG3RDUStatusOutletWaterTempUS INTEGER, - airIRG3RDUStatusOutletWaterTempMetric INTEGER, - airIRG3RDUStatusCondenserSaturationTempUS INTEGER, - airIRG3RDUStatusCondenserSaturationTempMetric INTEGER, - airIRG3RDUStatusDewPointTempUS INTEGER, - airIRG3RDUStatusDewPointTempMetric INTEGER, - airIRG3RDUStatusPumpOutletTempUS INTEGER, - airIRG3RDUStatusPumpOutletTempMetric INTEGER, - airIRG3RDUStatusSubcoolerOutletTempUS INTEGER, - airIRG3RDUStatusSubcoolerOutletTempMetric INTEGER, - airIRG3RDUStatusCondenserOutletTempUS INTEGER, - airIRG3RDUStatusCondenserOutletTempMetric INTEGER, - airIRG3RDUStatusCondenserInletTempUS INTEGER, - airIRG3RDUStatusCondenserInletTempMetric INTEGER, - airIRG3RDUStatusCondenserOutletPressureUS INTEGER, - airIRG3RDUStatusCondenserOutletPressureMetric INTEGER, - airIRG3RDUStatusPump1HeadPressureUS INTEGER, - airIRG3RDUStatusPump1HeadPressureMetric INTEGER, - airIRG3RDUStatusPump2HeadPressureUS INTEGER, - airIRG3RDUStatusPump2HeadPressureMetric INTEGER, - airIRG3RDUStatusPump1Speed INTEGER, - airIRG3RDUStatusPump2Speed INTEGER, - airIRG3RDUStatusCWValvePosition INTEGER, - airIRG3RDUStatusReceiverLiquidLevel INTEGER, - airIRG3RDUStatusDCPowerSupply1Current INTEGER, - airIRG3RDUStatusDCPowerSupply2Current INTEGER, - airIRG3RDUStatusTotalDCPowerSupplyCurrent INTEGER, - airIRG3RDUStatusInputState INTEGER, - airIRG3RDUStatusOutputState INTEGER, - airIRG3RDUStatusByPassValvePosition INTEGER, - airIRG3RDUStatusRefrigerantLeakDetector INTEGER - } - -airIRG3RDUStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3RDUStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access RDU status table." - ::= { airIRG3RDU 2 } - -airIRG3RDUStatusEntry OBJECT-TYPE - SYNTAX AirIRG3RDUStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The RDU status table entry." - INDEX { airIRG3RDUStatusDeviceIndex} - ::= { airIRG3RDUStatusTable 1 } - -airIRG3RDUStatusDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of RDU status table." - ::= { airIRG3RDUStatusEntry 1 } - - -airIRG3RDUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current RDU ID (1 to F). - Configured RDU only shall display ID, else return -1. " - ::= { airIRG3RDUStatusEntry 2 } - - -airIRG3RDUStatusOnReadyStandby OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - ready (2), - on (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU current status." - ::= { airIRG3RDUStatusEntry 3 } - - -airIRG3RDUStatusOperatingMode OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - ready (2), - on (3), - stop (4), - maintenancemode (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU actual operating mode." - ::= { airIRG3RDUStatusEntry 4 } - - -airIRG3RDUStatusLeadPump OBJECT-TYPE - SYNTAX INTEGER { - pump1 (1), - pump2 (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU lead pump." - ::= { airIRG3RDUStatusEntry 5 } - - -airIRG3RDUStatusStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU start up delay in seconds." - ::= { airIRG3RDUStatusEntry 6 } - - -airIRG3RDUStatusPumpChangeOverInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU pump change over interval in days." - ::= { airIRG3RDUStatusEntry 7 } - - -airIRG3RDUStatusStopOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU status of stop on leak detect." - ::= { airIRG3RDUStatusEntry 8 } - - -airIRG3RDUStatusPowerSource OBJECT-TYPE - SYNTAX INTEGER { - singleFeed (1), - dualFeed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU power source status." - ::= { airIRG3RDUStatusEntry 9 } - - -airIRG3RDUStatusTotalRDUOutputPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU output power in tenths of kilowatts (kW)." - ::= { airIRG3RDUStatusEntry 10 } - - -airIRG3RDUStatusInletWaterTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU inlet water temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 11 } - - -airIRG3RDUStatusInletWaterTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU inlet water temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 12 } - - -airIRG3RDUStatusOutletWaterTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU outlet water temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 13 } - - -airIRG3RDUStatusOutletWaterTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU outlet water temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 14 } - - -airIRG3RDUStatusCondenserSaturationTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser saturation temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 15 } - - -airIRG3RDUStatusCondenserSaturationTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser saturation temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 16 } - - -airIRG3RDUStatusDewPointTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU dew point temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 17 } - - -airIRG3RDUStatusDewPointTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU dew point temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 18 } - - -airIRG3RDUStatusPumpOutletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU pump outlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 19 } - - -airIRG3RDUStatusPumpOutletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU pump outlet temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 20 } - - -airIRG3RDUStatusSubcoolerOutletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU sub cooler outlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 21 } - - -airIRG3RDUStatusSubcoolerOutletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU sub cooler outlet temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 22 } - - -airIRG3RDUStatusCondenserOutletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser outlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 23 } - - -airIRG3RDUStatusCondenserOutletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser outlet temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 24 } - - -airIRG3RDUStatusCondenserInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUStatusEntry 25 } - - -airIRG3RDUStatusCondenserInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser inlet temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUStatusEntry 26 } - - -airIRG3RDUStatusCondenserOutletPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser outlet pressure in - pounds per square inch (PSI)." - ::= { airIRG3RDUStatusEntry 27 } - -airIRG3RDUStatusCondenserOutletPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU condenser outlet pressure in kiloPascals (KPa)." - ::= { airIRG3RDUStatusEntry 28 } - - -airIRG3RDUStatusPump1HeadPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Pump 1 head pressure in pounds per square inch (PSI)." - ::= { airIRG3RDUStatusEntry 29 } - -airIRG3RDUStatusPump1HeadPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Pump 1 head pressure in kiloPascals (KPa)." - ::= { airIRG3RDUStatusEntry 30 } - -airIRG3RDUStatusPump2HeadPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Pump 2 head pressure in pounds per square inch (PSI)." - ::= { airIRG3RDUStatusEntry 31 } - -airIRG3RDUStatusPump2HeadPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Pump 2 head pressure in kiloPascals (KPa)." - ::= { airIRG3RDUStatusEntry 32 } - -airIRG3RDUStatusPump1Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Pump 1 speed in revolutions per minute (RPM)." - ::= { airIRG3RDUStatusEntry 33 } - - -airIRG3RDUStatusPump2Speed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Pump 2 speed in revolutions per minute (RPM)." - ::= { airIRG3RDUStatusEntry 34 } - - -airIRG3RDUStatusCWValvePosition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU CW Valve position in % open" - ::= { airIRG3RDUStatusEntry 35 } - - -airIRG3RDUStatusReceiverLiquidLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU receiver liquid level in % Full" - ::= { airIRG3RDUStatusEntry 36 } - - -airIRG3RDUStatusDCPowerSupply1Current OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU DC Power Supply 1 Current in Amps" - ::= { airIRG3RDUStatusEntry 37 } - - -airIRG3RDUStatusDCPowerSupply2Current OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU DC Power Supply 2 Current in Amps" - ::= { airIRG3RDUStatusEntry 38 } - - -airIRG3RDUStatusTotalDCPowerSupplyCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Total DC Power Supply Current in Amps" - ::= { airIRG3RDUStatusEntry 39 } - - -airIRG3RDUStatusInputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Input state." - ::= { airIRG3RDUStatusEntry 40 } - - -airIRG3RDUStatusOutputState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU Output state" - ::= { airIRG3RDUStatusEntry 41 } - -airIRG3RDUStatusByPassValvePosition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU By Pass Valve position in % open" - ::= { airIRG3RDUStatusEntry 42 } - -airIRG3RDUStatusRefrigerantLeakDetector OBJECT-TYPE - SYNTAX INTEGER { - suspended (1), - calibrating (2), - operating (3), - disabled (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU refrigerant leak detector status." - ::= { airIRG3RDUStatusEntry 43 } - - --- *************************************** --- airIRG3 RDU Run Hours --- *************************************** - -AirIRG3RDURunHoursEntry ::= SEQUENCE { - airIRG3RDURunHoursDeviceIndex INTEGER, - airIRG3RDURunHoursRDUID DisplayString, - airIRG3RDURunHoursPump1 INTEGER, - airIRG3RDURunHoursPump2 INTEGER, - airIRG3RDURunHoursPowerSupply1 INTEGER, - airIRG3RDURunHoursPowerSupply2 INTEGER - } - -airIRG3RDURunHoursTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3RDURunHoursEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access RDU run hours table." - ::= { airIRG3RDU 3 } - -airIRG3RDURunHoursEntry OBJECT-TYPE - SYNTAX AirIRG3RDURunHoursEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The RDU run hours table entry." - INDEX { airIRG3RDURunHoursDeviceIndex} - ::= { airIRG3RDURunHoursTable 1 } - -airIRG3RDURunHoursDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of RDU run hours table." - ::= { airIRG3RDURunHoursEntry 1 } - -airIRG3RDURunHoursRDUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current RDU ID (1 to F). - Configured RDU only shall display ID, else return -1. " - ::= { airIRG3RDURunHoursEntry 2 } - -airIRG3RDURunHoursPump1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU run hours of Pump 1." - ::= { airIRG3RDURunHoursEntry 3 } - -airIRG3RDURunHoursPump2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU run hours of Pump 2." - ::= { airIRG3RDURunHoursEntry 4 } - -airIRG3RDURunHoursPowerSupply1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU run hours of power supply 1." - ::= { airIRG3RDURunHoursEntry 5 } - -airIRG3RDURunHoursPowerSupply2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The RDU run hours of power supply 2." - ::= { airIRG3RDURunHoursEntry 6 } - - --- *************************************** --- airIRG3 RDU Service Intervals --- *************************************** - -AirIRG3RDUServiceIntervalsEntry ::= SEQUENCE { - airIRG3RDUServiceIntervalsDeviceIndex INTEGER, - airIRG3RDUServiceIntervalsRDUID DisplayString, - airIRG3RDUServiceIntervalsAirFilterInterval INTEGER, - airIRG3RDUServiceIntervalsAirFilterAlarm INTEGER - } - -airIRG3RDUServiceIntervalsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3RDUServiceIntervalsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access RDU service intervals table." - ::= { airIRG3RDU 4 } - -airIRG3RDUServiceIntervalsEntry OBJECT-TYPE - SYNTAX AirIRG3RDUServiceIntervalsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The service interval table entry." - INDEX { airIRG3RDUServiceIntervalsDeviceIndex} - ::= { airIRG3RDUServiceIntervalsTable 1 } - -airIRG3RDUServiceIntervalsDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of service interval table." - ::= { airIRG3RDUServiceIntervalsEntry 1 } - -airIRG3RDUServiceIntervalsRDUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current RDU ID (1 to F). - Configured RDU only shall display ID, else return -1. " - ::= { airIRG3RDUServiceIntervalsEntry 2 } - -airIRG3RDUServiceIntervalsAirFilterInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU service interval for air filter in hours. - Returns -1 if not supported." - ::= { airIRG3RDUServiceIntervalsEntry 3 } - - -airIRG3RDUServiceIntervalsAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER { - enable (1), - disable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU service interval air filter alarm status. - Returns -1 if not supported." - ::= { airIRG3RDUServiceIntervalsEntry 4 } - - - --- ******************************************* --- airIRG3 RDU Thresholds --- Currently there are no thresholds for RDU --- ******************************************* - -AirIRG3RDUThresholdsEntry ::= SEQUENCE { - airIRG3RDUThresholdsDeviceIndex INTEGER, - airIRG3RDUThresholdsRDUID DisplayString, - airIRG3RDUThresholdsEnteringFluidTempHighUS INTEGER, - airIRG3RDUThresholdsEnteringFluidTempHighMetric INTEGER - } - -airIRG3RDUThresholdsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3RDUThresholdsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access RDU thresholds table." - ::= { airIRG3RDU 5 } - -airIRG3RDUThresholdsEntry OBJECT-TYPE - SYNTAX AirIRG3RDUThresholdsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The RDU thresholds table entry." - INDEX { airIRG3RDUThresholdsDeviceIndex} - ::= { airIRG3RDUThresholdsTable 1 } - -airIRG3RDUThresholdsDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of RDU thresholds table." - ::= { airIRG3RDUThresholdsEntry 1 } - -airIRG3RDUThresholdsRDUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current RDU ID (1 to F). - Configured RDU only shall display ID, else return -1. " - ::= { airIRG3RDUThresholdsEntry 2 } - -airIRG3RDUThresholdsEnteringFluidTempHighUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU threshold for entering fluid temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3RDUThresholdsEntry 3 } - - -airIRG3RDUThresholdsEnteringFluidTempHighMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU threshold for entering fluid temperature in tenths of - degrees Celsius." - ::= { airIRG3RDUThresholdsEntry 4 } - - --- *************************************** --- airIRG3 RDU Setpoints --- *************************************** - -AirIRG3RDUSetpointsEntry ::= SEQUENCE { - airIRG3RDUSetpointsDeviceIndex INTEGER - } - -airIRG3RDUSetpointsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3RDUSetpointsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access RDU set points table." - ::= { airIRG3RDU 6 } - -airIRG3RDUSetpointsEntry OBJECT-TYPE - SYNTAX AirIRG3RDUSetpointsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The RDU set points table entry." - INDEX { airIRG3RDUSetpointsDeviceIndex} - ::= { airIRG3RDUSetpointsTable 1 } - -airIRG3RDUSetpointsDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of RDU set points table." - ::= { airIRG3RDUSetpointsEntry 1 } - - - --- *************************************** --- airIRG3 RDU Config --- *************************************** - -AirIRG3RDUConfigEntry ::= SEQUENCE { - airIRG3RDUConfigDeviceIndex INTEGER, - airIRG3RDUConfigRDUID DisplayString, - airIRG3RDUConfigStopOnLeakDetect INTEGER, - airIRG3RDUConfigStartupDelay INTEGER, - airIRG3RDUConfigPumpChangeOverInterval INTEGER, - airIRG3RDUConfigPowerSource INTEGER, - airIRG3RDUConfigOutputSource INTEGER, - airIRG3RDUConfigInputNormalState INTEGER, - airIRG3RDUConfigOutputNormalState INTEGER, - airIRG3RDUConfigByPassValveEnabled INTEGER, - airIRG3RDUConfigRefrigerantLeakDetectorEnabled INTEGER, - airIRG3RDUConfigCalibrateRefrigerantLeakDetector INTEGER, - airIRG3RDUConfigOnReadyStandby INTEGER - } - -airIRG3RDUConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3RDUConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access RDU configuration table." - ::= { airIRG3RDU 7 } - -airIRG3RDUConfigEntry OBJECT-TYPE - SYNTAX AirIRG3RDUConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The RDU configuration table entry." - INDEX { airIRG3RDUConfigDeviceIndex} - ::= { airIRG3RDUConfigTable 1 } - -airIRG3RDUConfigDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of RDU configuration table." - ::= { airIRG3RDUConfigEntry 1 } - -airIRG3RDUConfigRDUID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current RDU ID (1 to F). - Configured RDU only shall display ID, else return -1. " - ::= { airIRG3RDUConfigEntry 2 } - -airIRG3RDUConfigStopOnLeakDetect OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU stop on leak detect set." - ::= { airIRG3RDUConfigEntry 3 } - - -airIRG3RDUConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU start up delay in seconds." - ::= { airIRG3RDUConfigEntry 4 } - - -airIRG3RDUConfigPumpChangeOverInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU pump change over interval in days." - ::= { airIRG3RDUConfigEntry 5 } - - -airIRG3RDUConfigPowerSource OBJECT-TYPE - SYNTAX INTEGER { - singleFeed (1), - dualFeed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU power source." - ::= { airIRG3RDUConfigEntry 6 } - - -airIRG3RDUConfigOutputSource OBJECT-TYPE - SYNTAX INTEGER { - anyalarm (1), - onlycriticalalarms (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU output source." - ::= { airIRG3RDUConfigEntry 7 } - - -airIRG3RDUConfigInputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU Input Normal State." - ::= { airIRG3RDUConfigEntry 8 } - - -airIRG3RDUConfigOutputNormalState OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU Output Normal State." - ::= { airIRG3RDUConfigEntry 9 } - - -airIRG3RDUConfigByPassValveEnabled OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU By Pass Valve Enabled State." - ::= { airIRG3RDUConfigEntry 10 } - -airIRG3RDUConfigRefrigerantLeakDetectorEnabled OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The RDU Refrigerant Leak Detector Enabled State." - ::= { airIRG3RDUConfigEntry 11 } - -airIRG3RDUConfigCalibrateRefrigerantLeakDetector OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This parameter allows to calibrate the RDU Refrigerant Leak Detector and is write only. - The read returns -1. Only 'yes' is supported." - ::= { airIRG3RDUConfigEntry 12 } - -airIRG3RDUConfigOnReadyStandby OBJECT-TYPE - SYNTAX INTEGER { - standby (1), - ready (2), - on (3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This parameter allows to configure RDU on/standby parameter. - Ready is currently not supported. If unsupported returns -1. " - ::= { airIRG3RDUConfigEntry 13 } - - --- *************************************** --- airIRG3 CMStatus --- *************************************** - -airIRG3CMTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The cooling module table size." - ::= { airIRG3CM 1 } - - -AirIRG3CMStatusEntry ::= SEQUENCE { - airIRG3CMStatusDeviceIndex INTEGER, - airIRG3CMStatusCMID DisplayString, - airIRG3CMStatusOperatingMode INTEGER, - airIRG3CMStatusUnitType INTEGER, - airIRG3CMStatusRackInletTempUS INTEGER, - airIRG3CMStatusRackInletTempMetric INTEGER, - airIRG3CMStatusReturnAirTempUS INTEGER, - airIRG3CMStatusReturnAirTempMetric INTEGER, - airIRG3CMStatusLiquidTempUS INTEGER, - airIRG3CMStatusLiquidTempMetric INTEGER, - airIRG3CMStatusVaporTempUS INTEGER, - airIRG3CMStatusVaporTempMetric INTEGER, - airIRG3CMStatusEvaporatorTempUS INTEGER, - airIRG3CMStatusEvaporatorTempMetric INTEGER, - airIRG3CMStatusLiquidInletPressureUS INTEGER, - airIRG3CMStatusLiquidInletPressureMetric INTEGER, - airIRG3CMStatusVaporOutletPressureUS INTEGER, - airIRG3CMStatusVaporOutletPressureMetric INTEGER, - airIRG3CMStatusExpansionValvePosition INTEGER, - airIRG3CMStatusEPRValvePosition INTEGER, - airIRG3CMStatusLocalDisplayOnOffEnabled INTEGER, - airIRG3CMStatusAverageFanSpeed INTEGER - } - -airIRG3CMStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3CMStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access CM status table." - ::= { airIRG3CM 2 } - -airIRG3CMStatusEntry OBJECT-TYPE - SYNTAX AirIRG3CMStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The CM status table entry." - INDEX { airIRG3CMStatusDeviceIndex} - ::= { airIRG3CMStatusTable 1 } - -airIRG3CMStatusDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of CM status table." - ::= { airIRG3CMStatusEntry 1 } - -airIRG3CMStatusCMID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM ID (RDU Number - Group Number - CM Unit Number)." - ::= { airIRG3CMStatusEntry 2 } - -airIRG3CMStatusOperatingMode OBJECT-TYPE - SYNTAX INTEGER { - standBy (1), - on (2), - idle (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current operating mode of the CM." - ::= { airIRG3CMStatusEntry 3 } - - -airIRG3CMStatusUnitType OBJECT-TYPE - SYNTAX INTEGER{ - unconfigured (1), - oa (2), - ra (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current CM unit type." - ::= { airIRG3CMStatusEntry 4 } - - -airIRG3CMStatusRackInletTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMStatusEntry 5 } - - -airIRG3CMStatusRackInletTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRG3CMStatusEntry 6 } - - -airIRG3CMStatusReturnAirTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMStatusEntry 7 } - - -airIRG3CMStatusReturnAirTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM return air temperature in tenths of - degrees Celsius." - ::= { airIRG3CMStatusEntry 8 } - - -airIRG3CMStatusLiquidTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM liquid temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMStatusEntry 9 } - - -airIRG3CMStatusLiquidTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM liquid temperature in tenths of - degrees Celsius." - ::= { airIRG3CMStatusEntry 10 } - - -airIRG3CMStatusVaporTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM vapor temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMStatusEntry 11 } - - -airIRG3CMStatusVaporTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM vapor temperature in tenths of - degrees Celsius." - ::= { airIRG3CMStatusEntry 12 } - - -airIRG3CMStatusEvaporatorTempUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM saturation temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMStatusEntry 13 } - - -airIRG3CMStatusEvaporatorTempMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM saturation temperature in tenths of - degrees Celsius." - ::= { airIRG3CMStatusEntry 14 } - -airIRG3CMStatusLiquidInletPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM Liquid Inlet pressure in pounds per square inch (PSI)." - ::= { airIRG3CMStatusEntry 15 } - -airIRG3CMStatusLiquidInletPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM Liquid Inlet pressure in kiloPascals (kPa)." - ::= { airIRG3CMStatusEntry 16 } - -airIRG3CMStatusVaporOutletPressureUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM Vapor Outlet pressure in pounds per square inch (PSI)." - ::= { airIRG3CMStatusEntry 17 } - -airIRG3CMStatusVaporOutletPressureMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM Vapor Outlet pressure in kiloPascals (kPa)." - ::= { airIRG3CMStatusEntry 18 } - -airIRG3CMStatusExpansionValvePosition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM expansion valve position in % open" - ::= { airIRG3CMStatusEntry 19 } - - -airIRG3CMStatusEPRValvePosition OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM Evaporator Pressure Regulator Valve Position - in tenths of percent open" - ::= { airIRG3CMStatusEntry 20 } - - -airIRG3CMStatusLocalDisplayOnOffEnabled OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of the on/off control on the CM local display." - ::= { airIRG3CMStatusEntry 21 } - - -airIRG3CMStatusAverageFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM Average Fan Speed." - ::= { airIRG3CMStatusEntry 22 } - - --- *************************************** --- airIRG3 CM Run Hours --- *************************************** - -AirIRG3CMRunHoursEntry ::= SEQUENCE { - airIRG3CMRunHoursDeviceIndex INTEGER, - airIRG3CMRunHoursCMID DisplayString, - airIRG3CMRunHoursFan1 INTEGER, - airIRG3CMRunHoursFan2 INTEGER, - airIRG3CMRunHoursFan3 INTEGER, - airIRG3CMRunHoursFan4 INTEGER, - airIRG3CMRunHoursFan5 INTEGER, - airIRG3CMRunHoursAirFilter INTEGER - } - -airIRG3CMRunHoursTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3CMRunHoursEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access CM run hours table." - ::= { airIRG3CM 3 } - -airIRG3CMRunHoursEntry OBJECT-TYPE - SYNTAX AirIRG3CMRunHoursEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The CM run hours table entry." - INDEX { airIRG3CMRunHoursDeviceIndex} - ::= { airIRG3CMRunHoursTable 1 } - -airIRG3CMRunHoursDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of CM run hours table." - ::= { airIRG3CMRunHoursEntry 1 } - -airIRG3CMRunHoursCMID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM ID (RDU Number - Group Number - CM Unit Number)." - ::= { airIRG3CMRunHoursEntry 2 } - -airIRG3CMRunHoursFan1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM run hours for Fan1. - Returns (-1) if not appilcable." - ::= { airIRG3CMRunHoursEntry 3 } - -airIRG3CMRunHoursFan2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM run hours for Fan2. - Returns (-1) if not appilcable." - ::= { airIRG3CMRunHoursEntry 4 } - -airIRG3CMRunHoursFan3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM run hours for Fan3. - Returns (-1) if not appilcable." - ::= { airIRG3CMRunHoursEntry 5 } - -airIRG3CMRunHoursFan4 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM run hours for Fan4. - Returns (-1) if not appilcable." - ::= { airIRG3CMRunHoursEntry 6 } - -airIRG3CMRunHoursFan5 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM run hours for Fan5. - Returns (-1) if not appilcable." - ::= { airIRG3CMRunHoursEntry 7 } - -airIRG3CMRunHoursAirFilter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM run hours for air filter." - ::= { airIRG3CMRunHoursEntry 8 } - - - --- *************************************** --- airIRG3 CM Service Intervals --- *************************************** - -AirIRG3CMServiceIntervalsEntry ::= SEQUENCE { - airIRG3CMServiceIntervalsDeviceIndex INTEGER, - airIRG3CMServiceIntervalsCMID DisplayString, - airIRG3CMServiceIntervalsAirFilterInterval INTEGER, - airIRG3CMServiceIntervalsAirFilterAlarm INTEGER - } - -airIRG3CMServiceIntervalsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3CMServiceIntervalsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access CM service intervals table." - ::= { airIRG3CM 4 } - -airIRG3CMServiceIntervalsEntry OBJECT-TYPE - SYNTAX AirIRG3CMServiceIntervalsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The CM service interval table entry." - INDEX { airIRG3CMServiceIntervalsDeviceIndex} - ::= { airIRG3CMServiceIntervalsTable 1 } - -airIRG3CMServiceIntervalsDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of CM service intervals table." - ::= { airIRG3CMServiceIntervalsEntry 1 } - -airIRG3CMServiceIntervalsCMID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM ID (RDU Number - Group Number - CM Unit Number)." - ::= { airIRG3CMServiceIntervalsEntry 2 } - -airIRG3CMServiceIntervalsAirFilterInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM service interval for air filter in weeks. - Supported only for RA. Returns -1 if not supported." - ::= { airIRG3CMServiceIntervalsEntry 3 } - -airIRG3CMServiceIntervalsAirFilterAlarm OBJECT-TYPE - SYNTAX INTEGER{ - disable (1), - enable (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM service interval air filter alarm status. - Supported only for RA. Returns -1 if not supported." - ::= { airIRG3CMServiceIntervalsEntry 4 } - - --- *************************************** --- airIRG3 CM Thresholds --- *************************************** - -AirIRG3CMThresholdsEntry ::= SEQUENCE { - airIRG3CMThresholdsDeviceIndex INTEGER, - airIRG3CMThresholdsCMID DisplayString, - airIRG3CMThresholdsRackInletTempHighUS INTEGER, - airIRG3CMThresholdsRackInletTempHighMetric INTEGER, - airIRG3CMThresholdsSupplyAirTempHighUS INTEGER, - airIRG3CMThresholdsSupplyAirTempHighMetric INTEGER, - airIRG3CMThresholdsReturnAirTempHighUS INTEGER, - airIRG3CMThresholdsReturnAirTempHighMetric INTEGER - } - -airIRG3CMThresholdsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3CMThresholdsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access CM thresholds table." - ::= { airIRG3CM 5 } - -airIRG3CMThresholdsEntry OBJECT-TYPE - SYNTAX AirIRG3CMThresholdsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The CM thresholds table entry." - INDEX { airIRG3CMThresholdsDeviceIndex} - ::= { airIRG3CMThresholdsTable 1 } - -airIRG3CMThresholdsDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index for CM thresholds table." - ::= { airIRG3CMThresholdsEntry 1 } - -airIRG3CMThresholdsCMID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM ID (RDU Number - Group Number - CM Unit Number)." - ::= { airIRG3CMThresholdsEntry 2 } - -airIRG3CMThresholdsRackInletTempHighUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM high threshold for rack inlet temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMThresholdsEntry 3 } - - -airIRG3CMThresholdsRackInletTempHighMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM high threshold for rack inlet temperature in tenths of - degrees Celsius." - ::= { airIRG3CMThresholdsEntry 4 } - - -airIRG3CMThresholdsSupplyAirTempHighUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM high threshold for supply air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMThresholdsEntry 5 } - - -airIRG3CMThresholdsSupplyAirTempHighMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM high threshold for supply air temperature in tenths of - degrees Celsius." - ::= { airIRG3CMThresholdsEntry 6 } - - -airIRG3CMThresholdsReturnAirTempHighUS OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM high threshold for return air temperature in tenths of - degrees Fahrenheit." - ::= { airIRG3CMThresholdsEntry 7 } - - -airIRG3CMThresholdsReturnAirTempHighMetric OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM high threshold for return air temperature in tenths of - degrees Celsius." - ::= { airIRG3CMThresholdsEntry 8 } - - --- *************************************** --- airIRG3 CM Setpoints --- *************************************** - -AirIRG3CMSetpointsEntry ::= SEQUENCE { - airIRG3CMSetpointsDeviceIndex INTEGER - } - -airIRG3CMSetpointsTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3CMSetpointsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access CM set points table." - ::= { airIRG3CM 6 } - -airIRG3CMSetpointsEntry OBJECT-TYPE - SYNTAX AirIRG3CMSetpointsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The CM set points table entry." - INDEX { airIRG3CMSetpointsDeviceIndex} - ::= { airIRG3CMSetpointsTable 1 } - -airIRG3CMSetpointsDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of CM set points table." - ::= { airIRG3CMSetpointsEntry 1 } - - - --- *************************************** --- airIRG3 CM Config --- *************************************** - -AirIRG3CMConfigEntry ::= SEQUENCE { - airIRG3CMConfigDeviceIndex INTEGER, - airIRG3CMConfigCMID DisplayString, - airIRG3CMConfigStopOnCoolFail INTEGER, - airIRG3CMConfigStartupDelay INTEGER, - airIRG3CMConfigRemoteOnStandby INTEGER, - airIRG3CMConfigPowerSource INTEGER - } - -airIRG3CMConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF AirIRG3CMConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows to access CM configuration table." - ::= { airIRG3CM 7 } - -airIRG3CMConfigEntry OBJECT-TYPE - SYNTAX AirIRG3CMConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The CM configuration table entry." - INDEX { airIRG3CMConfigDeviceIndex} - ::= { airIRG3CMConfigTable 1 } - -airIRG3CMConfigDeviceIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Index of CM configuration table." - ::= { airIRG3CMConfigEntry 1 } - -airIRG3CMConfigCMID OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The CM ID (RDU Number - Group Number - CM Unit Number)." - ::= { airIRG3CMConfigEntry 2 } - -airIRG3CMConfigStopOnCoolFail OBJECT-TYPE - SYNTAX INTEGER{ - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable/Disable Stop On cool fail. When enabled, stops the unit - if it detects that it is blowing warm air into the cold aisle." - ::= { airIRG3CMConfigEntry 3 } - - -airIRG3CMConfigStartupDelay OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM start up delay in seconds." - ::= { airIRG3CMConfigEntry 4 } - - -airIRG3CMConfigRemoteOnStandby OBJECT-TYPE - SYNTAX INTEGER{ - standBy (1), - on (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM configuration for operating mode." - ::= { airIRG3CMConfigEntry 5 } - - -airIRG3CMConfigPowerSource OBJECT-TYPE - SYNTAX INTEGER{ - singleFeed (1), - dualFeed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The CM power source." - ::= { airIRG3CMConfigEntry 6 } - - --- End of airIRGen3 - - --- RACK AIR REMOVAL UNIT IDENT - -rARUIdentTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for query of the individual devices. - The number of entries is contained in the - rARUStatusAruDeviceCount OID." - ::= { rARUIdent 1 } - -rARUIdentEntry OBJECT-TYPE - SYNTAX RARUIdentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The device to query." - INDEX { rARUIdentAruIndex} - ::= { rARUIdentTable 1 } - -RARUIdentEntry ::= - SEQUENCE { - rARUIdentAruIndex INTEGER, - rARUIdentName DisplayString - } - -rARUIdentAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUIdentEntry 1 } - -rARUIdentName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the device. " - ::= { rARUIdentEntry 2 } - --- RACK AIR REMOVAL UNIT CONFIGURATION - -rARUConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuration of the individual ARU devices accessible from this IP address. - The number of entries is contained in the rARUStatusAruDeviceCount OID." - ::= { rARUConfig 1 } - -rARUConfigEntry OBJECT-TYPE - SYNTAX RARUConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The ARUs to configure." - INDEX { rARUConfigAruIndex } - ::= { rARUConfigTable 1 } - -RARUConfigEntry ::= - SEQUENCE { - rARUConfigAruIndex INTEGER, - rARUConfigAruName DisplayString, - rARUConfigAruRemoteSetpoint INTEGER, - rARUConfigAruTempOvrdEnableDisable INTEGER, - rARUConfigAruTempOvrdSetpoint INTEGER, - rARUConfigAruMasterControl INTEGER - } - -rARUConfigAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUConfigEntry 1 } - -rARUConfigAruName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The name of the ARU." - ::= { rARUConfigEntry 2 } - -rARUConfigAruRemoteSetpoint OBJECT-TYPE - SYNTAX INTEGER { - aruOff (1), - aru85F-29C (2), - aru90F-32C (3), - aru95F-35C (4), - aru100F-38C (5), - aru7kW-1200cfm (6), - aru5kW-800cfm (7), - aru3kW-500cfm (8), - aru2kW-300cfm (9), - aru400cfm (10), - aru600cfm (11), - aru700cfm (12), - aru900cfm (13), - aru1000cfm (14), - aru1400cfm (15), - aru1600cfm (16), - aru1800cfm (17), - aru2000cfm (18) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID defines the desired base airflow of the ARU, and sets the - speed of the ARU fans when the temperature override is inactive. - - Values specified in cfm (cubic feet per minute) can be converted - to metric values using the conversion factor: - - 1 cfm = 1.70 m^3/hr (cubic meters per hour). - - Values (1) through (9) are for support of legacy (1st generation) ARUs. - Writing these values to a 2nd generation ARU will result in the following: - A value greater than (9) will be ignored by a 1st generation ARU. - - aruOff (1) - Ignored - aru85F-29C (2) - 1200 cfm - aru90F-32C (3) - 800 cfm - aru95F-35C (4) - 500 cfm - aru100F-38C (5) - 400 cfm - aru7kW (6) - 1200 cfm - aru5kW (7) - 800 cfm - aru3kW (8) - 500 cfm - aru2kW (9) - 400 cfm - - NOTE: -1 will be returned if the ARU is not communicating." - ::= { rARUConfigEntry 3 } - -rARUConfigAruTempOvrdEnableDisable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID is used to enable/disable the remote temperature override setting of the ARU. - - If this OID is set to 1, the remote setting for temperature override is disabled. - If this OID is set to 2, the remote setting for temperature override is enabled." - ::= { rARUConfigEntry 4 } - -rARUConfigAruTempOvrdSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This OID is the Temperature Override setpoint of the ARU. - - NOTE: -1 will be returned if the ARU is not communicating. - - Values are represented in whole number degrees using the - units specified in the rARUStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { rARUConfigEntry 5 } - -rARUConfigAruMasterControl OBJECT-TYPE - SYNTAX INTEGER { - aruOn (1), - aruOff (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This is the master on/off control for the ARU." - ::= { rARUConfigEntry 6 } - --- RACK AIR REMOVAL UNIT STATUS - -rARUStatusAruDeviceCount OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ARUs accessible from this IP." - ::= { rARUStatus 1 } - -rARUStatusSysTempUnits OBJECT-TYPE - SYNTAX INTEGER { - celsius(1), - fahrenheit(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The temperature scale used to display the temperature - in the system, Celsius(1) or Fahrenheit(2). - This setting is based on the system preferences - configuration in the agent." - ::= { rARUStatus 2 } - -rARUStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for query of the individual ARUs accessible from this IP address. - The number of entries is contained in the rARUStatusAruDeviceCount OID." - ::= { rARUStatus 3 } - -rARUStatusEntry OBJECT-TYPE - SYNTAX RARUStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The ARUs to access." - INDEX { rARUStatusAruIndex } - ::= { rARUStatusTable 1 } - -RARUStatusEntry ::= - SEQUENCE { - rARUStatusAruIndex INTEGER, - rARUStatusAruName DisplayString, - rARUStatusAruRemoteSetpoint INTEGER, - rARUStatusAruManualSetpoint INTEGER, - rARUStatusAruTemp1 INTEGER, - rARUStatusAruTemp2 INTEGER, - rARUStatusAruTemp3 INTEGER, - rARUStatusAruTempOvrdEnableDisable INTEGER, - rARUStatusAruTempOvrdSetpoint INTEGER, - rARUStatusAruAlarmState DisplayString, - rARUStatusAruCommStatus INTEGER, - rARUStatusAruTempOvrdStatus INTEGER, - rARUStatusAruMasterControl INTEGER, - rARUStatusAruTotalAirflow INTEGER - } - -rARUStatusAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUStatusEntry 1 } - -rARUStatusAruName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The name of the ARU." - ::= { rARUStatusEntry 2 } - -rARUStatusAruRemoteSetpoint OBJECT-TYPE - SYNTAX INTEGER { - aruOff (1), - aru85F-29C (2), - aru90F-32C (3), - aru95F-35C (4), - aru100F-38C (5), - aru7kW-1200cfm (6), - aru5kW-800cfm (7), - aru3kW-500cfm (8), - aru2kW-300cfm (9), - aru400cfm (10), - aru600cfm (11), - aru700cfm (12), - aru900cfm (13), - aru1000cfm (14), - aru1400cfm (15), - aru1600cfm (16), - aru1800cfm (17), - aru2000cfm (18) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID defines the desired base airflow of the ARU, or the - speed of the ARU fans when the temperature override is inactive. - - See also the rARUConfigAruRemoteSetpoint OID. - - NOTE: -1 will be returned if the ARU is not communicating." - ::= { rARUStatusEntry 3 } - -rARUStatusAruManualSetpoint OBJECT-TYPE - SYNTAX INTEGER { - aruOff (1), - aru85F-29C (2), - aru90F-32C (3), - aru95F-35C (4), - aru100F-38C (5), - aru7kW (6), - aru5kW (7), - aru3kW (8), - aru2kW (9), - aruRem (10) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Manual operating setpoint of the ARU, which is set on the - panel of the ARU. If the ARU doesn't have a manual , - the OID will always return a value of aruRem (10). - - NOTE: -1 will be returned if the ARU is not communicating. - - Values are represented in whole number degrees or kW. - If the manual setpoint is set to Remote, or if the ARU doesn't - have a manual switch, this OID will return aruRem." - ::= { rARUStatusEntry 4 } - -rARUStatusAruTemp1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "ARU temperature probe #1 reading. - The summary exhaust temperature on 2nd generation ARUs. - - NOTE: -1 will be returned if the ARU is not communicating. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the rARUStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { rARUStatusEntry 5 } - -rARUStatusAruTemp2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "ARU temperature probe #2 reading. - The exhaust temperature in the upper plenum on 2nd generation ARUs. - - NOTE: -1 will be returned if the ARU is not communicating. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the rARUStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { rARUStatusEntry 6 } - -rARUStatusAruTemp3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "ARU temperature probe #3 reading. - The exhaust temperature in the lower plenum on 2nd generation ARUs. - - NOTE: -1 will be returned if the ARU is not communicating. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the rARUStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { rARUStatusEntry 7 } - -rARUStatusAruTempOvrdEnableDisable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This OID indicates whether the ARU remote temperature override is enabled or disabled. - If this OID is a 1, the remote setting for temperature override is disabled. - If this OID is a 2, the remote setting for temperature override is enabled." - ::= { rARUStatusEntry 8 } - -rARUStatusAruTempOvrdSetpoint OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "ARU remote temperature override setpoint setting. - - NOTE: -1 will be returned if the ARU is not communicating. - - Values are represented in whole number degrees. - Units are displayed in the scale shown in - the rARUStatusSysTempUnits OID (Celsius or Fahrenheit)." - ::= { rARUStatusEntry 9 } - -rARUStatusAruAlarmState OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ASCII string containing the 8 flags representing - the current alarm state of the ARU. If the state of - the ARU is unknown, this variable is set to 'UNKNOWN'. - - The flags are numbered 1 to 8, read from left to - right. The flags are defined as follows: - - Flag 1: Fan Fail 1 - Flag 2: Fan Fail 2 - Flag 3: Fan Fail 3 - Flag 4: Smoke (if ARU is equipped with smoke detector) - - Flag 5: High Temp (Out of Thermal Control) - Flag 6: Over Temp (Exhaust Temp. Exceeds Override Setpoint) - Flag 7: Fan Fail 4 (Gen 2 ARU only) - Flag 8: Reserved" - ::= { rARUStatusEntry 10 } - -rARUStatusAruCommStatus OBJECT-TYPE - SYNTAX INTEGER { - commsNeverDiscovered(1), - commsEstablished(2), - commsLost(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The state of communications to the device. - commNeverDiscovered(1) indicates there has never been communications with this device. - commsEstablished(2) indicates communication is normal and active with this device. - commsLost(3) indicates communication had been established, but is no device." - ::= { rARUStatusEntry 11 } - -rARUStatusAruTempOvrdStatus OBJECT-TYPE - SYNTAX INTEGER { - inactive (1), - active (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Specifies whether the ARU is increasing airflow because - exhaust air temperature has exceeded the setting specified in the - rARUConfigAruTempOvrdSetpoint OID." - ::= { rARUStatusEntry 12 } - -rARUStatusAruMasterControl OBJECT-TYPE - SYNTAX INTEGER { - aruOn (1), - aruOff (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is the master on/off control for the ARU." - ::= { rARUStatusEntry 13 } - -rARUStatusAruTotalAirflow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total airflow provided by the aru. Specified in cfm (cubic feet per minute). - Can be converted to metric values using the conversion factor: - 1 cfm = 1.70 m^3/hr (cubic meters per hour)." - ::= { rARUStatusEntry 14 } - --- RACK AIR REMOVAL UNIT FAN STATUS - -rARUFanStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUFanStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for query of the individual devices. - The number of entries is contained in the - rARUStatusAruDeviceCount OID." - ::= { rARUFanStatus 1 } - -rARUFanStatusEntry OBJECT-TYPE - SYNTAX RARUFanStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The device to query." - INDEX { rARUFanStatusAruIndex, rARUFanStatusFanIndex} - ::= { rARUFanStatusTable 1 } - -RARUFanStatusEntry ::= - SEQUENCE { - rARUFanStatusAruIndex INTEGER, - rARUFanStatusNominalFanSpeed INTEGER, - rARUFanStatusSelectedFanLevel INTEGER, - rARUFanStatusReplacementThreshold INTEGER, - rARUFanStatusFanIndex INTEGER, - rARUFanStatusFanOperatingStatus INTEGER, - rARUFanStatusFanRpmSpeed INTEGER, - rARUFanStatusFanFlowRate INTEGER, - rARUFanStatusFanInServiceDate DisplayString, - rARUFanStatusFanRunhourCounter INTEGER, - rARUFanStatusFanRunhourReset INTEGER - } - -rARUFanStatusAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUFanStatusEntry 1 } - -rARUFanStatusNominalFanSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal rotational speed (RPM) of the fans when they are - operating at the 100% level." - ::= { rARUFanStatusEntry 2 } - -rARUFanStatusSelectedFanLevel OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The currently selected ARU speed level, - specified in percent of full capacity." - ::= { rARUFanStatusEntry 3 } - -rARUFanStatusReplacementThreshold OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - khr20 (2), - khr25 (3), - khr30 (4), - khr35 (5), - khr40 (6), - khr50 (7) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Threshold above which a run hour alarm will exist, indicating - that it might be time to proactively replace a fan." - ::= { rARUFanStatusEntry 4 } - -rARUFanStatusFanIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to an individual fan table entry." - ::= { rARUFanStatusEntry 5 } - -rARUFanStatusFanOperatingStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - off (2), - onOk (3), - onDegraded (4), - offFailed (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current operating state of the fan." - ::= { rARUFanStatusEntry 6 } - -rARUFanStatusFanRpmSpeed OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current rotational speed of the fan, - specified in rotations per minute (RPM)." - ::= { rARUFanStatusEntry 7 } - -rARUFanStatusFanFlowRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The flow rate provided by the fan, based on its measured rotational speed. - Specified in cfm (cubic feet per minute). Can be converted to metric values - using the conversion factor: 1 cfm = 1.70 m^3/hr (cubic meters per hour)." - ::= { rARUFanStatusEntry 8 } - -rARUFanStatusFanInServiceDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The installation/replacement date of the fan." - ::= { rARUFanStatusEntry 9 } - -rARUFanStatusFanRunhourCounter OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total time for which the fan has been running. - Specified in 10ths of hours." - ::= { rARUFanStatusEntry 10 } - -rARUFanStatusFanRunhourReset OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Writing yes to this This OID will reset a fan's total run hour counter, - which is shown in the rARUFanStatusFanRunhourCounter OID." - ::= { rARUFanStatusEntry 11 } - --- RACK AIR REMOVAL UNIT INPUT POWER STATUS - -rARUPowerStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUPowerStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for query of the individual ARUs accessible from this IP address. - The number of entries is contained in the rARUStatusAruDeviceCount OID." - ::= { rARUPower 1 } - -rARUPowerStatusEntry OBJECT-TYPE - SYNTAX RARUPowerStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The device to query." - INDEX { rARUPowerStatusAruIndex} - ::= { rARUPowerStatusTable 1 } - -RARUPowerStatusEntry ::= - SEQUENCE { - rARUPowerStatusAruIndex INTEGER, - rARUPowerStatusPrimaryAcPresent INTEGER, - rARUPowerStatusAuxiliaryAcPresent INTEGER, - rARUPowerStatusRedundantAcConfig INTEGER - } - -rARUPowerStatusAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUPowerStatusEntry 1 } - -rARUPowerStatusPrimaryAcPresent OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not line voltage is present on AC input 1." - ::= { rARUPowerStatusEntry 2 } - -rARUPowerStatusAuxiliaryAcPresent OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not line voltage is present on AC input 2." - ::= { rARUPowerStatusEntry 3 } - -rARUPowerStatusRedundantAcConfig OBJECT-TYPE - SYNTAX INTEGER { - singleCord (1), - dualCord (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates whether or not a dual cord is in use. - When this setting is set to dualCord (2), aruRedundantPowerLostAlarm - traps will be generated when either primary or auxiliary input - voltage is not present. When this setting is set to singleCord (1), - aruRedundantPowerLostAlarm traps will not be generated." - ::= { rARUPowerStatusEntry 4 } - --- RACK AIR REMOVAL UNIT SENSOR STATUS - -rARUSensorsStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the rARUSensorsStatusTable." - ::= { rARUSensors 1 } - -rARUSensorsStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUSensorsStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting environmental sensor status information." - ::= { rARUSensors 2 } - -rARUSensorsStatusEntry OBJECT-TYPE - SYNTAX RARUSensorsStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { rARUSensorsStatusAruIndex, rARUSensorsStatusSensorNumber } - ::= { rARUSensorsStatusTable 1 } - -RARUSensorsStatusEntry ::= - SEQUENCE { - rARUSensorsStatusAruIndex INTEGER, - rARUSensorsStatusSensorNumber INTEGER, - rARUSensorsTemperature INTEGER - } - -rARUSensorsStatusAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUSensorsStatusEntry 1 } - -rARUSensorsStatusSensorNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the sensor on the device." - ::= { rARUSensorsStatusEntry 2 } - -rARUSensorsTemperature OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor's current temperature reading. The temperature scale - is based on the system preferences configuration." - ::= { rARUSensorsStatusEntry 3 } - - --- RACK AIR REMOVAL UNIT CONFIG STATUS - -rARUSensorsConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the rARUSensorsConfigTable." - ::= { rARUSensors 3 } - -rARUSensorsConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RARUSensorsConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting configuration information from - environmental sensors attached to the device." - ::= { rARUSensors 4 } - -rARUSensorsConfigEntry OBJECT-TYPE - SYNTAX RARUSensorsConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit to get data from." - INDEX { rARUSensorsConfigAruIndex, rARUSensorsConfigSensorNumber } - ::= { rARUSensorsConfigTable 1 } - -RARUSensorsConfigEntry ::= - SEQUENCE { - rARUSensorsConfigAruIndex INTEGER, - rARUSensorsConfigSensorNumber INTEGER, - rARUSensorsName DisplayString, - rARUSensorsLocation DisplayString, - rARUSensorsTempMaxThresh INTEGER, - rARUSensorsTempHighThresh INTEGER, - rARUSensorsTempLowThresh INTEGER, - rARUSensorsTempMinThresh INTEGER, - rARUSensorsTempThreshHysteresis INTEGER, - rARUSensorsTempShortDecRateThreshValue INTEGER, - rARUSensorsTempShortDecRateThreshTime INTEGER, - rARUSensorsTempShortIncRateThreshValue INTEGER, - rARUSensorsTempShortIncRateThreshTime INTEGER, - rARUSensorsTempLongDecRateThreshValue INTEGER, - rARUSensorsTempLongDecRateThreshTime INTEGER, - rARUSensorsTempLongIncRateThreshValue INTEGER, - rARUSensorsTempLongIncRateThreshTime INTEGER - } - -rARUSensorsConfigAruIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to the ARU entry." - ::= { rARUSensorsConfigEntry 1 } - -rARUSensorsConfigSensorNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the sensor on the device." - ::= { rARUSensorsConfigEntry 2 } - -rARUSensorsName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A descriptive name for the sensor." - ::= { rARUSensorsConfigEntry 3 } - -rARUSensorsLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the sensor." - ::= { rARUSensorsConfigEntry 4 } - -rARUSensorsTempMaxThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which a maximum temperature threshold - violation alarm will be generated for this sensor. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 5 } - -rARUSensorsTempHighThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which a high temperature threshold - violation alarm will be generated for this sensor. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 6 } - -rARUSensorsTempLowThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which a low temperature threshold - violation alarm will be generated for this sensor. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 7 } - -rARUSensorsTempMinThresh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The temperature at which a min temperature threshold - violation alarm will be generated for this sensor. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 8 } - -rARUSensorsTempThreshHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The change in temperature required to cause a - temperature alarm to change from an active to an - inactive state. The temperature scale is based on - the system preferences configuration." - ::= { rARUSensorsConfigEntry 9 } - -rARUSensorsTempShortDecRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature short-term decreasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 10 } - -rARUSensorsTempShortDecRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not decrease - beyond the value specified by the temperature short-term - decreasing rate threshold value." - ::= { rARUSensorsConfigEntry 11 } - -rARUSensorsTempShortIncRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature short-term increasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 12 } - -rARUSensorsTempShortIncRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not increase - beyond the value specified by the temperature short-term - increasing rate threshold value." - ::= { rARUSensorsConfigEntry 13 } - -rARUSensorsTempLongDecRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature long-term decreasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 14 } - -rARUSensorsTempLongDecRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not decrease - beyond the value specified by the temperature long-term - decreasing rate threshold value." - ::= { rARUSensorsConfigEntry 15 } - -rARUSensorsTempLongIncRateThreshValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of the temperature long-term increasing rate - time that will cause an alarm to be generated. - The temperature scale is based on the system preferences - configuration." - ::= { rARUSensorsConfigEntry 16 } - -rARUSensorsTempLongIncRateThreshTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time over which the temperature may not increase - beyond the value specified by the temperature long-term - increasing rate threshold value." - ::= { rARUSensorsConfigEntry 17 } - --- MODULAR DISTRIBUTION SYSTEM - --- Modular Information - -isxModularDistInfoTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the isxModularDistInfoTable." - ::= { isxModularDistInfo 1 } - -isxModularDistInfoTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information about the modular - distribution metering equipment." - ::= { isxModularDistInfo 2 } - -isxModularDistInfoEntry OBJECT-TYPE - SYNTAX IsxModularDistInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about an individual metering segment." - INDEX { isxModularDistInfoSegmentIndex } - ::= { isxModularDistInfoTable 1 } - -IsxModularDistInfoEntry ::= - SEQUENCE { - isxModularDistInfoSegmentIndex INTEGER, - isxModularDistInfoMeterModelNumber DisplayString, - isxModularDistInfoMeterSerialNumber DisplayString, - isxModularDistInfoMeterDateOfManufacture DisplayString, - isxModularDistInfoMeterFirmwareRev DisplayString, - isxModularDistInfoMeterHardwareRev DisplayString - } - -isxModularDistInfoSegmentIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the metering segment." - ::= { isxModularDistInfoEntry 1 } - -isxModularDistInfoMeterModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model number of the metering board for this segment." - ::= { isxModularDistInfoEntry 2 } - -isxModularDistInfoMeterSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the metering board for this segment." - ::= { isxModularDistInfoEntry 3 } - -isxModularDistInfoMeterDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date of manufacture for the metering board for this segment, - in the format mm/dd/yyyy." - ::= { isxModularDistInfoEntry 4 } - -isxModularDistInfoMeterFirmwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The firmware revision number of the metering board for this segment." - ::= { isxModularDistInfoEntry 5 } - -isxModularDistInfoMeterHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision number of the metering board for this segment." - ::= { isxModularDistInfoEntry 6 } - --- Distribution Modules - -isxModularDistModuleInfoTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the isxModularDistModuleInfoTable." - ::= { isxModularDistModules 1 } - -isxModularDistModuleInfoTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistModuleInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting basic information about the distribution modules - installed in the system." - ::= { isxModularDistModules 2 } - -isxModularDistModuleInfoEntry OBJECT-TYPE - SYNTAX IsxModularDistModuleInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about a specific distribution module." - INDEX { isxModularDistModuleInfoModIndex } - ::= { isxModularDistModuleInfoTable 1 } - -IsxModularDistModuleInfoEntry ::= - SEQUENCE { - isxModularDistModuleInfoModIndex INTEGER, - isxModularDistModuleInfoAlarmStatus INTEGER, - isxModularDistModuleInfoModelNumber DisplayString, - isxModularDistModuleInfoSerialNumber DisplayString, - isxModularDistModuleInfoDateOfManufacture DisplayString, - isxModularDistModuleInfoNumCables INTEGER - } - -isxModularDistModuleInfoModIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the distribution module." - ::= { isxModularDistModuleInfoEntry 1 } - -isxModularDistModuleInfoAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - warning (2), - critical (3), - notPresent (4), - unknown (5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of this module. This reflects the indicator lamp(s) on the front of the module. - A value of notPresent indicates that the module is not installed. - A value of unknown indicates that there is no communication with the - metering segment for this module." - ::= { isxModularDistModuleInfoEntry 2 } - -isxModularDistModuleInfoModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The model number of the distribution module." - ::= { isxModularDistModuleInfoEntry 3 } - -isxModularDistModuleInfoSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The serial number of the distribution module." - ::= { isxModularDistModuleInfoEntry 4 } - -isxModularDistModuleInfoDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date that the distribution module was manufactured." - ::= { isxModularDistModuleInfoEntry 5 } - -isxModularDistModuleInfoNumCables OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of cables provided by this distribution module." - ::= { isxModularDistModuleInfoEntry 6 } - -isxModularDistModuleBreakerTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the isxModularDistModuleBreakerTable." - ::= { isxModularDistModules 3 } - -isxModularDistModuleBreakerTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistModuleBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting operational information about the distribution modules." - ::= { isxModularDistModules 4 } - -isxModularDistModuleBreakerEntry OBJECT-TYPE - SYNTAX IsxModularDistModuleBreakerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about a specific distribution modules and circuit breakers." - INDEX { isxModularDistModuleBreakerModIndex, isxModularDistModuleBreakerPhaseIndex} - ::= { isxModularDistModuleBreakerTable 1 } - -IsxModularDistModuleBreakerEntry ::= - SEQUENCE { - isxModularDistModuleBreakerModIndex INTEGER, - isxModularDistModuleBreakerPhaseIndex INTEGER, - isxModularDistModuleBreakerAlarmStatus INTEGER, - isxModularDistModuleBreakerRating INTEGER, - isxModularDistModuleBreakerPhysicalGroup INTEGER, - isxModularDistModuleBreakerCableNum INTEGER, - isxModularDistModuleBreakerPosition INTEGER, - isxModularDistModuleBreakerPositionAlarms INTEGER, - isxModularDistModuleBreakerCurrent INTEGER, - isxModularDistModuleBreakerPercent INTEGER, - isxModularDistModuleBreakerPower INTEGER - } - -isxModularDistModuleBreakerModIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The distribution module number." - ::= { isxModularDistModuleBreakerEntry 1 } - -isxModularDistModuleBreakerPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phaseL1(1), - phaseL2(2), - phaseL3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index to an individual breaker in the distribution module. The index also corresponds - to the system phase to which the breaker is attached." - ::= { isxModularDistModuleBreakerEntry 2 } - -isxModularDistModuleBreakerAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a bit map representing the active alarms for this breaker: - - b0 - Minimum current threshold exceeded (critical) - b1 - Low current threshold exceeded (warning) - b2 - High current threshold exceeded (warning) - b3 - Maximum current threshold exceeded (critical) - b4 - Breaker is open (critical) - - If a bit is set, the corresponding alarm is active." - ::= { isxModularDistModuleBreakerEntry 3 } - -isxModularDistModuleBreakerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current rating of the breaker." - ::= { isxModularDistModuleBreakerEntry 4 } - -isxModularDistModuleBreakerPhysicalGroup OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Numeric value used to indicate that a breaker is a part of a multi-pole breaker. - Breakers within a distribution module, with equivalent physical group numbers, - may have their handles physically tied together. - A value of 1 indicates breakers that are physically tied together as part of a - multi-pole breaker. - A value of 0 indicates a single-handle breaker that is not physically tied to - another breaker." - ::= { isxModularDistModuleBreakerEntry 5 } - -isxModularDistModuleBreakerCableNum OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Numeric value used to indicate the distribution cable to which - this breaker is connected. These distribution cables are described - in the table isxModularDistModuleOutputTable, - and indexed by the OID isxModularDistModuleOutputCordIndex." - ::= { isxModularDistModuleBreakerEntry 6 } - -isxModularDistModuleBreakerPosition OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical status of this breaker pole, either closed or open (including tripped)." - ::= { isxModularDistModuleBreakerEntry 7 } - -isxModularDistModuleBreakerPositionAlarms OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable breaker position alarms for this circuit breaker." - ::= { isxModularDistModuleBreakerEntry 8 } - -isxModularDistModuleBreakerCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current flowing though this breaker. Measured in tenths of amps." - ::= { isxModularDistModuleBreakerEntry 9 } - -isxModularDistModuleBreakerPercent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The loading on this breaker as a percentage of the breaker's current rating. - Expressed in tenths of percent." - ::= { isxModularDistModuleBreakerEntry 10 } - -isxModularDistModuleBreakerPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power being supplied through this breaker. Measured in tenths of kW." - ::= { isxModularDistModuleBreakerEntry 11 } - -isxModularDistModuleOutputsTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the isxModularDistModuleOutputTable." - ::= { isxModularDistModules 5 } - -isxModularDistModuleOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistModuleOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting and setting information related to the - load equipment being fed by the distribution modules in the ISX - Modular Distribution System." - ::= { isxModularDistModules 6 } - -isxModularDistModuleOutputEntry OBJECT-TYPE - SYNTAX IsxModularDistModuleOutputEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about a specific distribution module - and its output distribution cables." - INDEX { isxModularDistModuleOutputModIndex, isxModularDistModuleOutputCordIndex } - ::= { isxModularDistModuleOutputTable 1 } - -IsxModularDistModuleOutputEntry ::= - SEQUENCE { - isxModularDistModuleOutputModIndex INTEGER, - isxModularDistModuleOutputNumCables INTEGER, - isxModularDistModuleOutputCordIndex INTEGER, - isxModularDistModuleOutputName DisplayString, - isxModularDistModuleOutputLocation DisplayString, - isxModularDistModuleOutputStatus INTEGER, - isxModularDistModuleOutputAlarmGeneration INTEGER, - isxModularDistModuleOutputBreakerMap INTEGER, - isxModularDistModuleOutputThresholdMin INTEGER, - isxModularDistModuleOutputThresholdLow INTEGER, - isxModularDistModuleOutputThresholdHigh INTEGER, - isxModularDistModuleOutputThresholdMax INTEGER, - isxModularDistModuleOutputAlarmMinEnable INTEGER, - isxModularDistModuleOutputAlarmLowEnable INTEGER, - isxModularDistModuleOutputAlarmHighEnable INTEGER, - isxModularDistModuleOutputAlarmMaxEnable INTEGER, - isxModularDistModuleOutputCableLength INTEGER, - isxModularDistModuleOutputConnectorType DisplayString, - isxModularDistModuleOutputAvailableVoltages INTEGER, - isxModularDistModuleOutputTotalPower INTEGER, - isxModularDistModuleOutputKwhUsage INTEGER, - isxModularDistModuleOutputKwhReset INTEGER, - isxModularDistModuleOutputKwhResetDate DisplayString - } - -isxModularDistModuleOutputModIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of the distribution module supplying power to the load equipment." - ::= { isxModularDistModuleOutputEntry 1 } - -isxModularDistModuleOutputNumCables OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of distribution cables provided by this module." - ::= { isxModularDistModuleOutputEntry 2 } - -isxModularDistModuleOutputCordIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an individual distribution cable supplied by this module." - ::= { isxModularDistModuleOutputEntry 3 } - -isxModularDistModuleOutputName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A string describing the load equipment being supplied by this distribution cable." - ::= { isxModularDistModuleOutputEntry 4 } - -isxModularDistModuleOutputLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A string describing the location of equipment being supplied by distribution cable." - ::= { isxModularDistModuleOutputEntry 5 } - -isxModularDistModuleOutputStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - warning (2), - critical (3), - notPresent (4), - unknown (6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This reflects the worse case severity for alarms associated with this distribution cable. - A value of notPresent indicates that the cable does not exist for this module. - A value of unknown indicates that the there is no communication with the - metering segment for this distribution cable's module." - ::= { isxModularDistModuleOutputEntry 6 } - -isxModularDistModuleOutputAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable all alarm generation related to this distribution cable." - ::= { isxModularDistModuleOutputEntry 7 } - -isxModularDistModuleOutputBreakerMap OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a bit map representing the breaker poles within the - module that are associated with this distribution cable. - The following 3 bits are used to indicate the indices of - the breakers feeding the cable: - - b0 - Module breaker L1 - b1 - Module breaker L2 - b2 - Module breaker L3 - - If a bit is set, the breaker is used to feed this distribution cable. - These breakers are described in the table isxModularDistModuleBreakerTable, - and indexed by the OID isxModularDistModuleBreakerPhaseIndex." - ::= { isxModularDistModuleOutputEntry 8 } - -isxModularDistModuleOutputThresholdMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current drops below this value a critical alarm will exist." - ::= { isxModularDistModuleOutputEntry 9 } - -isxModularDistModuleOutputThresholdLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current drops below this value a warning alarm will exist." - ::= { isxModularDistModuleOutputEntry 10 } - -isxModularDistModuleOutputThresholdHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current exceeds this value a warning alarm will exist." - ::= { isxModularDistModuleOutputEntry 11 } - -isxModularDistModuleOutputThresholdMax OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current exceeds this value a critical alarm will exist." - ::= { isxModularDistModuleOutputEntry 12 } - -isxModularDistModuleOutputAlarmMinEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable minimum current alarm generation for this distribution cable." - ::= { isxModularDistModuleOutputEntry 13 } - -isxModularDistModuleOutputAlarmLowEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable low current alarm generation for this distribution cable." - ::= { isxModularDistModuleOutputEntry 14 } - -isxModularDistModuleOutputAlarmHighEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable high current alarm generation for this distribution cable." - ::= { isxModularDistModuleOutputEntry 15 } - -isxModularDistModuleOutputAlarmMaxEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable maximum current alarm generation for this distribution cable." - ::= { isxModularDistModuleOutputEntry 16 } - -isxModularDistModuleOutputCableLength OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The length of this distribution cable. Specified in tenths of meters." - ::= { isxModularDistModuleOutputEntry 17 } - -isxModularDistModuleOutputConnectorType OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A string describing the connector on the end of this distribution cable." - ::= { isxModularDistModuleOutputEntry 18 } - -isxModularDistModuleOutputAvailableVoltages OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a bit map representing the voltages that are available at the connector. - 6 bits are used to indicate the following: - - b0 - L1 - b1 - L2 - b2 - L3 - b3 - L1-2 - b4 - L2-3 - b5 - L3-1" - ::= { isxModularDistModuleOutputEntry 19 } - -isxModularDistModuleOutputTotalPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total power being consumed by the load equipment supplied by this distribution cable. - Measured in tenths of kW." - ::= { isxModularDistModuleOutputEntry 20 } - -isxModularDistModuleOutputKwhUsage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total energy consumed by the load equipment fed by this distribution cable. - This is the total since the date specified in the isxModularDistModuleOutputKwhResetDate - OID, and may be cleared using the isxModularDistModuleOutputKwhReset OID. - Measured in tenths of kWh." - ::= { isxModularDistModuleOutputEntry 21 } - -isxModularDistModuleOutputKwhReset OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Writing yes to this OID will reset the total kWh usage shown - in the isxModularDistModuleOutputKwhUsage OID." - ::= { isxModularDistModuleOutputEntry 22 } - -isxModularDistModuleOutputKwhResetDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date that the kWh usage was reset, in the format mm/dd/yyyy. Example: 01/01/2000." - ::= { isxModularDistModuleOutputEntry 23 } - --- Distribution Subfeeds - -isxModularDistSubFeedInfoTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the isxModularDistSubFeedInfoTable." - ::= { isxModularDistSubFeeds 1 } - -isxModularDistSubFeedInfoTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistSubFeedInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting information about distribution subfeed breakers." - ::= { isxModularDistSubFeeds 2 } - -isxModularDistSubFeedInfoEntry OBJECT-TYPE - SYNTAX IsxModularDistSubFeedInfoEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing information about a specific distribution subfeed." - INDEX { isxModularDistSubFeedInfoSubIndex } - ::= { isxModularDistSubFeedInfoTable 1 } - -IsxModularDistSubFeedInfoEntry ::= - SEQUENCE { - isxModularDistSubFeedInfoSubIndex INTEGER, - isxModularDistSubFeedInfoName DisplayString, - isxModularDistSubFeedInfoLocation DisplayString, - isxModularDistSubFeedInfoBreakerRating INTEGER, - isxModularDistSubFeedInfoBreakerPosition INTEGER, - isxModularDistSubFeedInfoAlarmStatus INTEGER, - isxModularDistSubFeedInfoAlarmGeneration INTEGER, - isxModularDistSubFeedInfoThresholdMin INTEGER, - isxModularDistSubFeedInfoThresholdLow INTEGER, - isxModularDistSubFeedInfoThresholdHigh INTEGER, - isxModularDistSubFeedInfoThresholdMax INTEGER, - isxModularDistSubFeedInfoAlarmMinEnable INTEGER, - isxModularDistSubFeedInfoAlarmLowEnable INTEGER, - isxModularDistSubFeedInfoAlarmHighEnable INTEGER, - isxModularDistSubFeedInfoAlarmMaxEnable INTEGER, - isxModularDistSubFeedInfoBreakerAlarmEnable INTEGER, - isxModularDistSubFeedInfoTotalPower INTEGER, - isxModularDistSubFeedInfoKwhUsage INTEGER, - isxModularDistSubFeedInfoKwhReset INTEGER, - isxModularDistSubFeedInfoKwhResetDate DisplayString - } - -isxModularDistSubFeedInfoSubIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an individual subfeed." - ::= { isxModularDistSubFeedInfoEntry 1 } - -isxModularDistSubFeedInfoName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A string describing the load equipment being supplied by this subfeed." - ::= { isxModularDistSubFeedInfoEntry 2 } - -isxModularDistSubFeedInfoLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A string describing the location of the equipment being supplied by this subfeed." - ::= { isxModularDistSubFeedInfoEntry 3 } - -isxModularDistSubFeedInfoBreakerRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current rating of this subfeed breaker." - ::= { isxModularDistSubFeedInfoEntry 4 } - -isxModularDistSubFeedInfoBreakerPosition OBJECT-TYPE - SYNTAX INTEGER { - open (1), - closed (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The operational status of this breaker, either closed or open (including tripped)." - ::= { isxModularDistSubFeedInfoEntry 5 } - -isxModularDistSubFeedInfoAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - warning (2), - critical (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The worst case alarm status for this subfeed." - ::= { isxModularDistSubFeedInfoEntry 6 } - -isxModularDistSubFeedInfoAlarmGeneration OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable all alarm generation related to this subfeed." - ::= { isxModularDistSubFeedInfoEntry 7 } - -isxModularDistSubFeedInfoThresholdMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current drops below this value a critical alarm will exist." - ::= { isxModularDistSubFeedInfoEntry 8 } - -isxModularDistSubFeedInfoThresholdLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current drops below this value a warning alarm will exist." - ::= { isxModularDistSubFeedInfoEntry 9 } - -isxModularDistSubFeedInfoThresholdHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current exceeds this value a warning alarm will exist." - ::= { isxModularDistSubFeedInfoEntry 10 } - -isxModularDistSubFeedInfoThresholdMax OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the current exceeds this value a critical alarm will exist." - ::= { isxModularDistSubFeedInfoEntry 11 } - -isxModularDistSubFeedInfoAlarmMinEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable minimum current alarm generation for this subfeed." - ::= { isxModularDistSubFeedInfoEntry 12 } - -isxModularDistSubFeedInfoAlarmLowEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable low current alarm generation for this subfeed." - ::= { isxModularDistSubFeedInfoEntry 13 } - -isxModularDistSubFeedInfoAlarmHighEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable high current alarm generation for this subfeed." - ::= { isxModularDistSubFeedInfoEntry 14 } - -isxModularDistSubFeedInfoAlarmMaxEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable maximum current alarm generation for this subfeed." - ::= { isxModularDistSubFeedInfoEntry 15 } - -isxModularDistSubFeedInfoBreakerAlarmEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable breaker position alarms for this subfeed." - ::= { isxModularDistSubFeedInfoEntry 16 } - -isxModularDistSubFeedInfoTotalPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total power being supplied by this subfeed. Measured in tenths of kW." - ::= { isxModularDistSubFeedInfoEntry 17 } - -isxModularDistSubFeedInfoKwhUsage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total energy consumed by the load equipment fed by this subfeed. - This is the total since the date specified in the isxModularDistSubFeedInfoKwhResetDate - OID, and may be cleared using the isxModularDistSubFeedInfoKwhReset OID. - Measured in tenths of kWh." - ::= { isxModularDistSubFeedInfoEntry 18 } - -isxModularDistSubFeedInfoKwhReset OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Writing yes to this OID will reset the total kWh usage shown - in the isxModularDistSubFeedInfoKwhUsage OID." - ::= { isxModularDistSubFeedInfoEntry 19 } - -isxModularDistSubFeedInfoKwhResetDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date that the kWh usage was reset, in the format mm/dd/yyyy. Example: 01/01/2000." - ::= { isxModularDistSubFeedInfoEntry 20 } - -isxModularDistSubFeedLoadingTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the isxModularDistSubFeedLoadingTable." - ::= { isxModularDistSubFeeds 3 } - -isxModularDistSubFeedLoadingTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistSubFeedLoadingEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting subfeed phase loading information." - ::= { isxModularDistSubFeeds 4 } - -isxModularDistSubFeedLoadingEntry OBJECT-TYPE - SYNTAX IsxModularDistSubFeedLoadingEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing data for an individual subfeed." - INDEX { isxModularDistSubFeedLoadingSubIndex, isxModularDistSubFeedLoadingPhaseIndex } - ::= { isxModularDistSubFeedLoadingTable 1 } - -IsxModularDistSubFeedLoadingEntry ::= SEQUENCE { - isxModularDistSubFeedLoadingSubIndex INTEGER, - isxModularDistSubFeedLoadingPhaseIndex INTEGER, - isxModularDistSubFeedLoadingAlarmStatus INTEGER, - isxModularDistSubFeedLoadingCurrent INTEGER, - isxModularDistSubFeedLoadingPercent INTEGER, - isxModularDistSubFeedLoadingPower INTEGER - } - -isxModularDistSubFeedLoadingSubIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of an individual subfeed." - ::= { isxModularDistSubFeedLoadingEntry 1 } - -isxModularDistSubFeedLoadingPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each input phase entry in the table." - ::= { isxModularDistSubFeedLoadingEntry 2 } - -isxModularDistSubFeedLoadingAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a bit map representing the active alarms for this subfeed: - - b0 - Minimum current threshold exceeded (critical) - b1 - Low current threshold exceeded (warning) - b2 - High current threshold exceeded (warning) - b3 - Maximum current threshold exceeded (critical) - b4 - Breaker is open (critical) - - If a bit is set, the corresponding alarm is active." - ::= { isxModularDistSubFeedLoadingEntry 3 } - -isxModularDistSubFeedLoadingCurrent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current flowing though this subfeed phase. Measured in tenths of amps." - ::= { isxModularDistSubFeedLoadingEntry 4 } - -isxModularDistSubFeedLoadingPercent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The loading on this subfeed phase as a percentage of the subfeed's current rating. - Expressed in tenths of percent." - ::= { isxModularDistSubFeedLoadingEntry 5 } - -isxModularDistSubFeedLoadingPower OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power being supplied by this subfeed phase. Measured in tenths of kW." - ::= { isxModularDistSubFeedLoadingEntry 6 } - --- Distribution System Output Voltage - -isxModularDistSysOutputVoltageNominalLineToNeutral OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal line-to-neutral voltage available at the distribution panel." - ::= { isxModularDistSysVoltage 1 } - -isxModularDistSysOutputVoltageNominalLineToLine OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal line-to-line voltage available at the distribution panel." - ::= { isxModularDistSysVoltage 2 } - -isxModularDistSysOutputNominalFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal system output frequency. Measured in tenths of Hertz." - ::= { isxModularDistSysVoltage 3 } - -isxModularDistSysOutputFrequency OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The system output frequency in tenths of Hertz. - -1 if not available." - ::= { isxModularDistSysVoltage 4 } - -isxModularDistSysOutputVoltageMonitoring OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not output voltage alarm generation is present." - ::= { isxModularDistSysVoltage 5 } - -isxModularDistSysOutputVoltageThresholdMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the line-to-neutral voltage of any phase drops below this value a critical alarm will exist. - Specified as a percent of the nominal voltage, isxModularDistSysOutputVoltageNominalLineToNeutral. - This value is returned as a positive number which represents a negative percentage. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysVoltage 6 } - -isxModularDistSysOutputVoltageThresholdLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the line-to-neutral voltage of any phase drops below this value a warning alarm will exist. - Specified as a percent of the nominal voltage, isxModularDistSysOutputVoltageNominalLineToNeutral. - This value is returned as a positive number which represents a negative percentage. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysVoltage 7 } - -isxModularDistSysOutputVoltageThresholdHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the line-to-neutral voltage of any phase exceeds this value a warning alarm will exist. - Specified as a percent of the nominal voltage, isxModularDistSysOutputVoltageNominalLineToNeutral. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysVoltage 8 } - -isxModularDistSysOutputVoltageThresholdMax OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When the line-to-neutral voltage of any phase exceeds this value a critical alarm will exist. - Specified as a percent of the nominal voltage, isxModularDistSysOutputVoltageNominalLineToNeutral. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysVoltage 9 } - -isxModularDistSysOutputVoltageAlarmMinEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable minimum voltage alarm generation for the distribution panel." - ::= { isxModularDistSysVoltage 10 } - -isxModularDistSysOutputVoltageAlarmLowEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable low voltage alarm generation for the distribution panel." - ::= { isxModularDistSysVoltage 11 } - -isxModularDistSysOutputVoltageAlarmHighEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable high voltage alarm generation for the distribution panel." - ::= { isxModularDistSysVoltage 12 } - -isxModularDistSysOutputVoltageAlarmMaxEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable maximum voltage alarm generation for the distribution panel." - ::= { isxModularDistSysVoltage 13 } - -isxModularDistSysOutputVoltageFrequencyTolerance OBJECT-TYPE - SYNTAX INTEGER{ - freqToleranceOff (1), - freqTolerancePointTwo (2), - freqTolerancePointFive (3), - freqToleranceOne (4), - freqToleranceOnePointFive (5), - freqToleranceTwo (6), - freqToleranceThree (7), - freqToleranceFour (8), - freqToleranceFive (9), - freqToleranceNine (10), - freqToleranceNotAvailable (11) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The circuit panel output frequency tolerance in Hertz. - When the system output frequency deviates from the nominal by more than this range, - a critical alarm will be generated." - ::= { isxModularDistSysVoltage 14 } - -isxModularDistSysVoltageTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistSysVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting the system output voltage information." - ::= { isxModularDistSysVoltage 15 } - -isxModularDistSysVoltageEntry OBJECT-TYPE - SYNTAX IsxModularDistSysVoltageEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing data for an individual system output phase." - INDEX { isxModularDistSysVoltagePhaseIndex } - ::= { isxModularDistSysVoltageTable 1 } - -IsxModularDistSysVoltageEntry ::= - SEQUENCE { - isxModularDistSysVoltagePhaseIndex INTEGER, - isxModularDistSysVoltageAlarmStatus INTEGER, - isxModularDistSysVoltageLtoN INTEGER, - isxModularDistSysVoltageLtoL INTEGER - } - -isxModularDistSysVoltagePhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each phase entry in the table." - ::= { isxModularDistSysVoltageEntry 1 } - -isxModularDistSysVoltageAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a bit map representing the active alarms for this output phase: - - b0 - Minimum voltage threshold exceeded (critical) - b1 - Low voltage threshold exceeded (warning) - b2 - High voltage threshold exceeded (warning) - b3 - Maximum voltage threshold exceeded (critical) - - If a bit is set, the corresponding alarm is active." - ::= { isxModularDistSysVoltageEntry 2 } - -isxModularDistSysVoltageLtoN OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-neutral system output voltage available at the distribution panel. - Measured in tenths of Volts." - ::= { isxModularDistSysVoltageEntry 3 } - -isxModularDistSysVoltageLtoL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Line-to-line system output voltage available at the distribution panel. - Measured in tenths of Volts." - ::= { isxModularDistSysVoltageEntry 4 } - - --- Distribution System Total Output Current - -isxModularDistSysCurrentRating OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The 100 percent current rating of the distribution panel." - ::= { isxModularDistSysCurrent 1 } - -isxModularDistSysCurrentMonitoring OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not total output current measurements and alarm generation are present." - ::= { isxModularDistSysCurrent 2 } - -isxModularDistSysCurrentThresholdMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When total system current in any phase drops below this value a critical alarm will exist. - Specified as a percent of the panel rating, isxModularDistSysCurrentRating. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysCurrent 3 } - -isxModularDistSysCurrentThresholdLow OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When total system current in any phase drops below this value a warning alarm will exist. - Specified as a percent of the panel rating, isxModularDistSysCurrentRating. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysCurrent 4 } - -isxModularDistSysCurrentThresholdHigh OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When total system current in any phase exceeds this value a warning alarm will exist. - Specified as a percent of the panel rating, isxModularDistSysCurrentRating. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysCurrent 5 } - -isxModularDistSysCurrentThresholdMax OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "When total system current in any phase exceeds this value a critical alarm will exist. - Specified as a percent of the panel rating, isxModularDistSysCurrentRating. - A value of -1 indicates that the threshold is not available in the device." - ::= { isxModularDistSysCurrent 6 } - -isxModularDistSysCurrentAlarmMinEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable minimum total output current alarm generation." - ::= { isxModularDistSysCurrent 7 } - -isxModularDistSysCurrentAlarmLowEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable low total output current alarm generation." - ::= { isxModularDistSysCurrent 8 } - -isxModularDistSysCurrentAlarmHighEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable high total output current alarm generation." - ::= { isxModularDistSysCurrent 9 } - -isxModularDistSysCurrentAlarmMaxEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled (1), - enabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable maximum total output current alarm generation." - ::= { isxModularDistSysCurrent 10 } - -isxModularDistSysCurrentTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistSysCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting the total system phase current information." - ::= { isxModularDistSysCurrent 11 } - -isxModularDistSysCurrentEntry OBJECT-TYPE - SYNTAX IsxModularDistSysCurrentEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing data for an individual system output phase." - INDEX { isxModularDistSysCurrentPhaseIndex } - ::= { isxModularDistSysCurrentTable 1 } - -IsxModularDistSysCurrentEntry ::= - SEQUENCE { - isxModularDistSysCurrentPhaseIndex INTEGER, - isxModularDistSysCurrentAlarmStatus INTEGER, - isxModularDistSysCurrentAmps INTEGER, - isxModularDistSysCurrentPercent INTEGER - } - -isxModularDistSysCurrentPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each phase entry in the table." - ::= { isxModularDistSysCurrentEntry 1 } - -isxModularDistSysCurrentAlarmStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This is a bit map representing the active alarms for this output phase: - - b0 - Minimum current threshold exceeded (critical) - b1 - Low current threshold exceeded (warning) - b2 - High current threshold exceeded (warning) - b3 - Maximum current threshold exceeded (critical) - - If a bit is set, the corresponding alarm is active." - ::= { isxModularDistSysCurrentEntry 2 } - -isxModularDistSysCurrentAmps OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current flowing though this system output phase. Measured in tenths of amps." - ::= { isxModularDistSysCurrentEntry 3 } - -isxModularDistSysCurrentPercent OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The loading on this system output phase as a percentage of the panel current rating. - Expressed in tenths of percent." - ::= { isxModularDistSysCurrentEntry 4 } - --- Distribution System Total Output Power - -isxModularDistSysPowerTotal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total system power being supplied. Measured in tenths of kW." - ::= { isxModularDistSysPower 1 } - -isxModularDistSysPowerKwhUsage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total system energy consumed by the load equipment. - This is the total since the date specified in the isxModularDistSysOutputKwhResetDate - OID, and may be cleared using the isxModularDistSysOutputKwhReset OID. - Measured in tenths of kWh." - ::= { isxModularDistSysPower 2 } - -isxModularDistSysPowerKwhReset OBJECT-TYPE - SYNTAX INTEGER { - no (1), - yes (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Writing yes to this OID will reset the total kWh usage shown - in the isxModularDistSysPowerKwhUsage OID." - ::= { isxModularDistSysPower 3 } - -isxModularDistSysPowerKwhResetDate OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date that the kWh usage was reset, in the format mm/dd/yyyy. Example: 01/01/2000." - ::= { isxModularDistSysPower 4 } - -isxModularDistSysPowerTable OBJECT-TYPE - SYNTAX SEQUENCE OF IsxModularDistSysPowerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting the total system phase power loading information." - ::= { isxModularDistSysPower 5 } - -isxModularDistSysPowerEntry OBJECT-TYPE - SYNTAX IsxModularDistSysPowerEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An entry containing data for an individual system output phase." - INDEX { isxModularDistSysPowerPhaseIndex } - ::= { isxModularDistSysPowerTable 1 } - -IsxModularDistSysPowerEntry ::= - SEQUENCE { - isxModularDistSysPowerPhaseIndex INTEGER, - isxModularDistSysPowerKw INTEGER, - isxModularDistSysPowerKwhPhaseUsage INTEGER - } - -isxModularDistSysPowerPhaseIndex OBJECT-TYPE - SYNTAX INTEGER{ - phase1(1), - phase2(2), - phase3(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Description of each phase entry in the table." - ::= { isxModularDistSysPowerEntry 1 } - -isxModularDistSysPowerKw OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The power being supplied by this system output phase. Measured in tenths of kW." - ::= { isxModularDistSysPowerEntry 2 } - -isxModularDistSysPowerKwhPhaseUsage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The energy consumed by the load equipment on this system output phase. - This is the total since the date specified in the isxModularDistSysPowerKwhResetDate - OID, and may be cleared using the isxModularDistSysPowerKwhReset OID. - Measured in tenths of kWh." - ::= { isxModularDistSysPowerEntry 3 } - --- the isxModularPduIdent group - -isxModularPduIdentModelNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the model number of the PDU. - This value is set at the factory." - ::= { isxModularPduIdent 1 } - -isxModularPduIdentSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of the PDU. - This value is set at the factory." - ::= { isxModularPduIdent 2 } - -isxModularPduIdentDateOfManufacture OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The date when the PDU was manufactured in mm/dd/yyyy format. - This value is set at the factory." - ::= { isxModularPduIdent 3 } - -isxModularPduIdentMonitorCardSerialNumber OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A character string identifying the serial number of the PDU monitor card. - This value is set at the factory." - ::= { isxModularPduIdent 4 } - -isxModularPduIdentMonitorCardHardwareRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The hardware revision of the PDU monitor card. - This value is set at the factory." - ::= { isxModularPduIdent 5 } - -isxModularPduIdentMonitorCardFirmwareAppRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application firmware revision of the - PDU monitor card." - ::= { isxModularPduIdent 6 } - -isxModularPduIdentMonitorCardFirmwareAppOSRev OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An ID string identifying the application operating system firmware revision of the - PDU monitor card." - ::= { isxModularPduIdent 7 } - --- the isxModularPduDevice group - -isxModularPduDeviceTransformerPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - isoXfmrPresent (2), - autoXfmrPresent (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates the type of transformer present in this PDU." - ::= { isxModularPduDevice 1 } - -isxModularPduDeviceServiceType OBJECT-TYPE - SYNTAX INTEGER { - threeWire (1), - fourWire (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of utility input to the PDU. Either 3 wires (delta), or 4 wires (wye)." - ::= { isxModularPduDevice 2 } - -isxModularPduDeviceFansPresent OBJECT-TYPE - SYNTAX INTEGER { - notPresent (1), - present (2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates whether or not cooling fans are installed in the PDU." - ::= { isxModularPduDevice 3 } - -isxModularPduDeviceNominalMainInputVoltage OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The nominal main input voltage to the system. Measured in Volts, - line-to-line for a 3-wire (delta) service or line-to-neutral for a - 4-wire (wye) service. -1 if main input voltage is not being measured." - ::= { isxModularPduDevice 4 } - -isxModularPduAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - warning (2), - critical (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The overall status (worst case) of this PDU." - ::= { isxModularPduStatus 1 } - -isxModularPduTransformerTempStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - overtemp (2), - noTransformerPresent (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if the PDU isolation transformer is over temperature." - ::= { isxModularPduStatus 2 } - -isxModularPduFanStatus OBJECT-TYPE - SYNTAX INTEGER { - normal (1), - failed (2), - noCoolingFansPresent (3), - unknown (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "Indicates if one or more of the PDU's cooling fans have failed." - ::= { isxModularPduStatus 3 } - - --- Universal Input / Output (uio) - --- uio Sensor Status Table - -uioSensorStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the uioSensorStatusTable." - ::= { uioSensor 1 } - -uioSensorStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UIOSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting sensor status information." - ::= { uioSensor 2 } - -uioSensorStatusEntry OBJECT-TYPE - SYNTAX UIOSensorStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit from which to get data." - INDEX { uioSensorStatusPortID, uioSensorStatusSensorID } - ::= { uioSensorStatusTable 1 } - -UIOSensorStatusEntry ::= - SEQUENCE { - uioSensorStatusPortID INTEGER, - uioSensorStatusSensorID INTEGER, - uioSensorStatusSensorName DisplayString, - uioSensorStatusSensorLocation DisplayString, - uioSensorStatusTemperatureDegF INTEGER, - uioSensorStatusTemperatureDegC INTEGER, - uioSensorStatusHumidity INTEGER, - uioSensorStatusViolationStatus INTEGER, - uioSensorStatusAlarmStatus INTEGER, - uioSensorStatusCommStatus INTEGER - } - -uioSensorStatusPortID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the port to which the sensor is attached." - ::= { uioSensorStatusEntry 1 } - -uioSensorStatusSensorID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the sensor." - ::= { uioSensorStatusEntry 2 } - -uioSensorStatusSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor name." - ::= { uioSensorStatusEntry 3 } - -uioSensorStatusSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the sensor." - ::= { uioSensorStatusEntry 4 } - -uioSensorStatusTemperatureDegF OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor's current temperature reading in degrees Fahrenheit. - -1 indicates an invalid reading due to lost communications." - ::= { uioSensorStatusEntry 5 } - -uioSensorStatusTemperatureDegC OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor's current temperature reading in degrees Celsius. - -1 indicates an invalid reading due to lost communications." - ::= { uioSensorStatusEntry 6 } - -uioSensorStatusHumidity OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The sensor's current humidity reading in percent relative - humidity. -1 indicates an invalid reading due to either a - sensor that doesn't read humidity or lost communications." - ::= { uioSensorStatusEntry 7 } - -uioSensorStatusViolationStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The violation status of the sensor. This integer should be interpreted - as a bit map, with each bit representing the presence or absence of - the specific alarm conditions listed below. The bit will be '1' if - the condition is present, and '0' if the condition is not present. - - Bit Hex. Value Description - 1 0x0001 Maximum temperature exceeded. - 2 0x0002 High temperature exceeded. - 3 0x0004 Low temperature exceeded. - 4 0x0008 Minimum temperature exceeded. - 5 0x0010 Short-term increasing temperature rate exceeded (Not used). - 6 0x0020 Short-term decreasing temperature rate exceeded (Not used). - 7 0x0040 Long-term increasing temperature rate exceeded (Not used). - 8 0x0080 Long-term decreasing temperature rate exceeded (Not used). - 9 0x0100 Maximum humidity exceeded. - 10 0x0200 High humidity exceeded. - 11 0x0400 Low humidity exceeded. - 12 0x0800 Minimum humidity exceeded." - ::= { uioSensorStatusEntry 8 } - -uioSensorStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - uioNormal (1), - uioWarning (2), - uioCritical (3), - sensorStatusNotApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the sensor." - ::= { uioSensorStatusEntry 9 } - -uioSensorStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled (1), - commsOK (2), - commsLost (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the sensor." - ::= { uioSensorStatusEntry 10 } - - --- uio Sensor Config Table - -uioSensorConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the uioSensorConfigTable." - ::= { uioSensor 3 } - -uioSensorConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF UIOSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuring the sensor." - ::= { uioSensor 4 } - -uioSensorConfigEntry OBJECT-TYPE - SYNTAX UIOSensorConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The sensor from which to get configuration." - INDEX { uioSensorConfigPortID, uioSensorConfigSensorID } - ::= { uioSensorConfigTable 1 } - -UIOSensorConfigEntry ::= - SEQUENCE { - uioSensorConfigPortID INTEGER, - uioSensorConfigSensorID INTEGER, - uioSensorConfigSensorName DisplayString, - uioSensorConfigSensorLocation DisplayString, - uioSensorConfigMinTemperatureThreshold INTEGER, - uioSensorConfigLowTemperatureThreshold INTEGER, - uioSensorConfigHighTemperatureThreshold INTEGER, - uioSensorConfigMaxTemperatureThreshold INTEGER, - uioSensorConfigTemperatureHysteresis INTEGER, - uioSensorConfigMinTemperatureEnable INTEGER, - uioSensorConfigLowTemperatureEnable INTEGER, - uioSensorConfigHighTemperatureEnable INTEGER, - uioSensorConfigMaxTemperatureEnable INTEGER, - uioSensorConfigMinHumidityThreshold INTEGER, - uioSensorConfigLowHumidityThreshold INTEGER, - uioSensorConfigHighHumidityThreshold INTEGER, - uioSensorConfigMaxHumidityThreshold INTEGER, - uioSensorConfigHumidityHysteresis INTEGER, - uioSensorConfigMinHumidityEnable INTEGER, - uioSensorConfigLowHumidityEnable INTEGER, - uioSensorConfigHighHumidityEnable INTEGER, - uioSensorConfigMaxHumidityEnable INTEGER - } - -uioSensorConfigPortID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the port to which the sensor is attached." - ::= { uioSensorConfigEntry 1 } - -uioSensorConfigSensorID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the sensor." - ::= { uioSensorConfigEntry 2 } - -uioSensorConfigSensorName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The sensor name." - ::= { uioSensorConfigEntry 3 } - -uioSensorConfigSensorLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the sensor." - ::= { uioSensorConfigEntry 4 } - -uioSensorConfigMinTemperatureThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum (critical) temperature alarm threshold for the - probe in degrees C. Must be lower than the low threshold to - ensure proper sensor alarm behavior." - ::= { uioSensorConfigEntry 5 } - -uioSensorConfigLowTemperatureThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low (warning) temperature alarm threshold for the probe - in degrees C. Must be higher than the minimum threshold and - lower than the high threshold to ensure proper sensor alarm - behavior." - ::= { uioSensorConfigEntry 6 } - -uioSensorConfigHighTemperatureThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high (warning) temperature alarm threshold for the probe - in degrees C. Must be lower than the maximum threshold and - higher than the low threshold to ensure proper sensor alarm - behavior." - ::= { uioSensorConfigEntry 7 } - -uioSensorConfigMaxTemperatureThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum (critical) temperature alarm threshold for the - probe in degrees C. Must be higher than the high threshold - to ensure proper sensor alarm behavior." - ::= { uioSensorConfigEntry 8 } - -uioSensorConfigTemperatureHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of degrees C beyond the temperature thresholds at - which an active temperature alarm will be cleared. This value - applies to all temperature thresholds." - ::= { uioSensorConfigEntry 9 } - -uioSensorConfigMinTemperatureEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum temperature alarm enable/disable for the sensor. - 1 - disabled - 2 - enabled" - ::= { uioSensorConfigEntry 10 } - -uioSensorConfigLowTemperatureEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low temperature alarm enable/disable for the sensor. - 1 - disabled - 2 - enabled" - ::= { uioSensorConfigEntry 11 } - -uioSensorConfigHighTemperatureEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high temperature alarm enable/disable for the sensor. - 1 - disabled - 2 - enabled" - ::= { uioSensorConfigEntry 12 } - -uioSensorConfigMaxTemperatureEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum temperature alarm enable/disable for the sensor. - 1 - disabled - 2 - enabled" - ::= { uioSensorConfigEntry 13 } - -uioSensorConfigMinHumidityThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum (critical) humidity alarm threshold for the - probe in percent relative humidity. Must be lower than the - low threshold to ensure proper sensor alarm behavior. -1 if - the sensor doesn't read humidity." - ::= { uioSensorConfigEntry 14 } - -uioSensorConfigLowHumidityThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low (warning) humidity alarm threshold for the probe in - percent relative humidity. Must be higher than the minimum - threshold and lower than the high threshold to ensure proper - sensor alarm behavior. -1 if the sensor doesn't read - humidity." - ::= { uioSensorConfigEntry 15 } - -uioSensorConfigHighHumidityThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high (warning) humidity alarm threshold for the probe in - percent relative humidity. Must be lower than the maximum - threshold and higher than the low threshold to ensure proper - sensor alarm behavior. -1 if the sensor doesn't read - humidity." - ::= { uioSensorConfigEntry 16 } - -uioSensorConfigMaxHumidityThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum (critical) humidity alarm threshold for the - probe in percent relative humidity. Must be higher than the - high threshold to ensure proper sensor alarm behavior. -1 if - the sensor doesn't read humidity." - ::= { uioSensorConfigEntry 17 } - -uioSensorConfigHumidityHysteresis OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of percent relative humidity beyond the humidity - thresholds at which an active humidity alarm will be cleared. - This value applies to all humidity thresholds. -1 if the - sensor doesn't read humidity." - ::= { uioSensorConfigEntry 18 } - -uioSensorConfigMinHumidityEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum humidity alarm enable/disable for the sensor. - 1 - disabled (always set if the sensor doesn't read humidity) - 2 - enabled" - ::= { uioSensorConfigEntry 19 } - -uioSensorConfigLowHumidityEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The low humidity alarm enable/disable for the sensor. - 1 - disabled (always set if the sensor doesn't read humidity) - 2 - enabled" - ::= { uioSensorConfigEntry 20 } - -uioSensorConfigHighHumidityEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The high humidity alarm enable/disable for the sensor. - 1 - disabled (always set if the sensor doesn't read humidity) - 2 - enabled" - ::= { uioSensorConfigEntry 21 } - -uioSensorConfigMaxHumidityEnable OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum humidity alarm enable/disable for the sensor. - 1 - disabled (always set if the sensor doesn't read humidity) - 2 - enabled" - ::= { uioSensorConfigEntry 22 } - - --- uio Input Contact Status Table - -uioInputContactStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the uioInputContactStatusTable." - ::= { uioInputContact 1 } - -uioInputContactStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UIOInputContactStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting input contact status information." - ::= { uioInputContact 2 } - -uioInputContactStatusEntry OBJECT-TYPE - SYNTAX UIOInputContactStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contact from which to get data." - INDEX { uioInputContactStatusPortID, uioInputContactStatusContactID } - ::= { uioInputContactStatusTable 1 } - -UIOInputContactStatusEntry ::= - SEQUENCE { - uioInputContactStatusPortID INTEGER, - uioInputContactStatusContactID INTEGER, - uioInputContactStatusContactName DisplayString, - uioInputContactStatusContactLocation DisplayString, - uioInputContactStatusCurrentState INTEGER, - uioInputContactStatusAlarmStatus INTEGER, - uioInputContactStatusCommStatus INTEGER - } - -uioInputContactStatusPortID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the port to which the input contact is attached." - ::= { uioInputContactStatusEntry 1 } - -uioInputContactStatusContactID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the input contact on the module." - ::= { uioInputContactStatusEntry 2 } - -uioInputContactStatusContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The input contact name." - ::= { uioInputContactStatusEntry 3 } - -uioInputContactStatusContactLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the input contact." - ::= { uioInputContactStatusEntry 4 } - -uioInputContactStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - uioInputClosed (1), - uioInputOpen (2), - uioInputDisabled (3), - inputStateNotApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of the input contact. " - ::= { uioInputContactStatusEntry 5 } - -uioInputContactStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - uioNormal (1), - uioWarning (2), - uioCritical (3), - inputStatusNotApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the input contact." - ::= { uioInputContactStatusEntry 6 } - -uioInputContactStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled (1), - commsOK (2), - commsLost (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the input contact." - ::= { uioInputContactStatusEntry 7 } - - --- uio Input Contact Config Table - -uioInputContactConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the uioInputContactConfigTable." - ::= { uioInputContact 3 } - -uioInputContactConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF UIOInputContactConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuring the input contacts." - ::= { uioInputContact 4 } - -uioInputContactConfigEntry OBJECT-TYPE - SYNTAX UIOInputContactConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The input contact from which to get configuration." - INDEX { uioInputContactConfigPortID, uioInputContactConfigContactID } - ::= { uioInputContactConfigTable 1 } - -UIOInputContactConfigEntry ::= - SEQUENCE { - uioInputContactConfigPortID INTEGER, - uioInputContactConfigContactID INTEGER, - uioInputContactConfigContactName DisplayString, - uioInputContactConfigContactLocation DisplayString, - uioInputContactConfigEnable INTEGER, - uioInputContactConfigNormalState INTEGER, - uioInputContactConfigSeverity INTEGER - } - -uioInputContactConfigPortID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the port to which the input contact is attached." - ::= { uioInputContactConfigEntry 1 } - -uioInputContactConfigContactID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the input contact on the module." - ::= { uioInputContactConfigEntry 2 } - -uioInputContactConfigContactName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The input contact name." - ::= { uioInputContactConfigEntry 3 } - -uioInputContactConfigContactLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the input contact." - ::= { uioInputContactConfigEntry 4 } - -uioInputContactConfigEnable OBJECT-TYPE - SYNTAX INTEGER { - uioInputContactDisabled (1), - uioInputContactEnabled (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Enable or disable this input contact. - 1 - disabled - 2 - enabled" - ::= { uioInputContactConfigEntry 5 } - -uioInputContactConfigNormalState OBJECT-TYPE - SYNTAX INTEGER { - uioInputNormallyOpen (1), - uioInputNormallyClosed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal (non-alarm) state of the input contact. - 1 - normally open - 2 - normally closed" - ::= { uioInputContactConfigEntry 6 } - -uioInputContactConfigSeverity OBJECT-TYPE - SYNTAX INTEGER { - uioInputCriticalSeverity (1), - uioInputWarningSeverity (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The severity of the alarm that this input contact will - generate in the abnormal state. - 1 - critical severity - 2 - warning severity" - ::= { uioInputContactConfigEntry 7 } - - --- uio Output Relay Status Table - -uioOutputRelayStatusTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the uioOutputRelayStatusTable." - ::= { uioOutputRelay 1 } - -uioOutputRelayStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF UIOOutputRelayStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for getting output relay status information." - ::= { uioOutputRelay 2 } - -uioOutputRelayStatusEntry OBJECT-TYPE - SYNTAX UIOOutputRelayStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit from which to get data." - INDEX { uioOutputRelayStatusPortID, uioOutputRelayStatusRelayID } - ::= { uioOutputRelayStatusTable 1 } - -UIOOutputRelayStatusEntry ::= - SEQUENCE { - uioOutputRelayStatusPortID INTEGER, - uioOutputRelayStatusRelayID INTEGER, - uioOutputRelayStatusRelayName DisplayString, - uioOutputRelayStatusRelayLocation DisplayString, - uioOutputRelayStatusCurrentState INTEGER, - uioOutputRelayStatusAlarmStatus INTEGER, - uioOutputRelayStatusCommStatus INTEGER - } - -uioOutputRelayStatusPortID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the port to which the output relay is attached." - ::= { uioOutputRelayStatusEntry 1 } - -uioOutputRelayStatusRelayID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the output relay on the module." - ::= { uioOutputRelayStatusEntry 2 } - -uioOutputRelayStatusRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The output relay name." - ::= { uioOutputRelayStatusEntry 3 } - -uioOutputRelayStatusRelayLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The location of the output relay." - ::= { uioOutputRelayStatusEntry 4 } - -uioOutputRelayStatusCurrentState OBJECT-TYPE - SYNTAX INTEGER { - uioOutputClosed (1), - uioOutputOpen (2), - outputStateNotApplicable (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current state of the output relay." - ::= { uioOutputRelayStatusEntry 5 } - -uioOutputRelayStatusAlarmStatus OBJECT-TYPE - SYNTAX INTEGER { - uioNormal (1), - uioWarning (2), - uioCritical (3), - inputStatusNotApplicable (4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The alarm status of the output relay." - ::= { uioOutputRelayStatusEntry 6 } - -uioOutputRelayStatusCommStatus OBJECT-TYPE - SYNTAX INTEGER { - notInstalled (1), - commsOK (2), - commsLost (3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The communications status of the output relay." - ::= { uioOutputRelayStatusEntry 7 } - - --- uio Output Relay Config Table - -uioOutputRelayConfigTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of entries in the uioOutputRelayConfigTable." - ::= { uioOutputRelay 3 } - -uioOutputRelayConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF UIOOutputRelayConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Allows for configuring the output relay." - ::= { uioOutputRelay 4 } - -uioOutputRelayConfigEntry OBJECT-TYPE - SYNTAX UIOOutputRelayConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The unit from which to get configuration." - INDEX { uioOutputRelayConfigPortID, uioOutputRelayConfigRelayID } - ::= { uioOutputRelayConfigTable 1 } - -UIOOutputRelayConfigEntry ::= - SEQUENCE { - uioOutputRelayConfigPortID INTEGER, - uioOutputRelayConfigRelayID INTEGER, - uioOutputRelayConfigRelayName DisplayString, - uioOutputRelayConfigRelayLocation DisplayString, - uioOutputRelayConfigNormalState INTEGER, - uioOutputRelayConfigControlState INTEGER, - uioOutputRelayConfigDelay TimeTicks, - uioOutputRelayConfigHold TimeTicks - } - -uioOutputRelayConfigPortID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the port to which the output relay is attached." - ::= { uioOutputRelayConfigEntry 1 } - -uioOutputRelayConfigRelayID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The ID of the output relay on the module." - ::= { uioOutputRelayConfigEntry 2 } - -uioOutputRelayConfigRelayName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The output relay name." - ::= { uioOutputRelayConfigEntry 3 } - -uioOutputRelayConfigRelayLocation OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The location of the output relay." - ::= { uioOutputRelayConfigEntry 4 } - -uioOutputRelayConfigNormalState OBJECT-TYPE - SYNTAX INTEGER { - uioOutputNormallyOpen (1), - uioOutputNormallyClosed (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The normal state of the output relay. - 1 - normally open - 2 - normally closed" - ::= { uioOutputRelayConfigEntry 5 } - -uioOutputRelayConfigControlState OBJECT-TYPE - SYNTAX INTEGER { - uioOutputClose (1), - uioOutputOpen (2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Close or open the output relay for testing purposes. Always - returns 1 when read. - 1 - close output relay - 2 - open output relay" - ::= { uioOutputRelayConfigEntry 6 } - -uioOutputRelayConfigDelay OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The time a selected alarm condition must exist before the - output relay is activated. Valid values are whole seconds - from 0 to 65535." - ::= { uioOutputRelayConfigEntry 7 } - -uioOutputRelayConfigHold OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The minimum time the output relay remains activated after the - alarm occurs. Valid values are whole seconds from 0 to 65535." - ::= { uioOutputRelayConfigEntry 8 } - - --- Traps --- Annotations are provided for Novell's NMS product --- --- Each trap has at least one variable (mtrapargsString) which always appears --- as the last variable in the list. This variable contains either a static --- or dynamically-constructed string which provides an enhanced description of --- the trap's purpose and any pertinent information about the trap. - -communicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Communication to the UPS has been lost. Steps - to reestablish communication are in progress." - --#TYPE "APC UPS: Communication lost" - --#SUMMARY "Communication lost between the agent and the UPS." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 1 - -upsOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: The UPS has sensed a load greater than 100 percent - of its rated capacity." - --#TYPE "APC UPS: Overload" - --#SUMMARY "The UPS has sensed a load greater than 100 percent of its rated capacity." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 2 - -upsDiagnosticsFailed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: The UPS failed its internal diagnostic self-test." - --#TYPE "APC UPS: Failed self-test" - --#SUMMARY "The UPS has failed its internal self-test." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 3 - -upsDischarged TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: The UPS batteries are discharged; if utility power fails - an immediate low battery condition will exist. Sufficient runtime - for necessary action cannot be guaranteed." - --#TYPE "APC UPS: batteries are discharged" - --#SUMMARY "The UPS batteries are discharged." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 4 - -upsOnBattery TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS has switched to battery backup power." - --#TYPE "APC UPS: On battery" - --#SUMMARY "The UPS has switched to battery backup power." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 5 - -smartBoostOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS has enabled SmartBoost(TM)." - --#TYPE "APC UPS: SmartBoost(TM)" - --#SUMMARY "The UPS has enabled SmartBoost(TM); low incoming line voltage." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 6 - -lowBattery TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: The UPS batteries are low and will soon be exhausted. - If utility power is not restored the UPS will put itself - to 'sleep' and immediately cut power to the load." - --#TYPE "APC UPS: Low battery" - --#SUMMARY "The UPS system's batteries are low and will soon be exhausted." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 7 - -communicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communication with the UPS has been established." - --#TYPE "APC UPS: Communication established" - --#SUMMARY "UPS communication has been established." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 8 - -powerRestored TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Utility power has been restored." - --#TYPE "APC UPS: Utility power restored" - --#SUMMARY "Returned from battery backup power; utility power restored." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 9 - -upsDiagnosticsPassed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS passed its internal self-test." - --#TYPE "APC UPS: Passed self-test" - --#SUMMARY "The UPS passed internal self-test." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 10 - -returnFromLowBattery TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS has returned from a low battery - condition." - --#TYPE "APC UPS: Returned from Low-Battery condition" - --#SUMMARY "The UPS has returned from a Low-Battery condition." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 11 - -upsTurnedOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS has been turned 'off' by the management station." - --#TYPE "APC UPS: Turned off" - --#SUMMARY "The UPS has been switched off by a management station." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 12 - -upsSleeping TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS is entering 'sleep' mode. Power - to the load will be cut off." - --#TYPE "APC UPS: Entered sleep mode" - --#SUMMARY "The UPS entered sleep mode. Power to the load will be cut off." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 13 - -upsWokeUp TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATION: The UPS has returned from 'sleep' mode. Power - to the load has been restored." - --#TYPE "APC UPS: Wake up" - --#SUMMARY "The UPS has returned from sleep mode. Power to the load has been restored." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 14 - -upsRebootStarted TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS has started its reboot sequence. - The UPS will reboot itself at this time." - --#TYPE "APC UPS: Starting reboot" - --#SUMMARY "The UPS has started its reboot sequence." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 15 - -upsDipSwitchChanged TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The dip switch settings on the UPS have been - changed, possibly altering UPS performance." - --#TYPE "APC UPS: DIP switch altered" - --#SUMMARY "The DIP switch settings on the UPS have been changed." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 16 - -upsBatteryNeedsReplacement TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: The batteries of the UPS need immediate replacement." - --#TYPE "APC UPS: UPS batteries need replacement" - --#SUMMARY "The UPS batteries require immediate replacement." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 17 - - --- the Environmental Monitor traps - -contactFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: One of the contacts on the Environmental Monitor has - changed from its default position. The first variable is - the contact number that is faulted." - --#TYPE "APC Environment: Contact fault" - --#SUMMARY "An Environment contact closure has faulted." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 18 - -contactFaultResolved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A fault on one of the Environmental Monitor contacts - has been resolved. The first variable is - the contact number that has been resolved." - --#TYPE "APC Environment: Contact fault cleared." - --#SUMMARY "A Environment contact closure has returned to it's default state." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 19 - --- the Matrix-UPS traps - -hardwareFailureBypass TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: UPS on bypass due to internal fault" - --#TYPE "APC UPS: On bypass due to internal fault" - --#SUMMARY "The UPS is on bypass due to an internal fault." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 20 - -softwareBypass TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: UPS on bypass - user set via software or panel" - --#TYPE "APC UPS: On bypass by user via software or panel" - --#SUMMARY "UPS put on bypass by user via software or front UPS panel." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 21 - -switchedBypass TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: UPS on bypass - initiated by user" - --#TYPE "APC UPS: On bypass initiated by user" - --#SUMMARY "UPS put on bypass by user." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 22 - -returnFromBypass TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UPS has returned from bypass" - --#TYPE "APC UPS: UPS has returned from bypass" - --#SUMMARY "The UPS has returned from bypass mode." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 23 - -bypassPowerSupplyFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Base module bypass power supply needs repair" - --#TYPE "APC UPS: Base module bypass power supply needs repair" - --#SUMMARY "The base module bypass power supply needs repair." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 24 - -baseFanFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Base module fan needs repair" - --#TYPE "APC UPS: Base module fan needs repair" - --#SUMMARY "The base module fan needs repair." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 25 - -batteryPackCommLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Check installation of external battery packs signal cable" - --#TYPE "APC UPS: Communication lost with battery packs" - --#SUMMARY "Communication lost with external battery packs, check battery signal cable." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 26 - -batteryPackCommEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UPS is communicating with the external battery packs." - --#TYPE "APC UPS: Communication established with battery packs" - --#SUMMARY "Communication established with external battery packs." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 27 - -calibrationStart TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A battery calibration test has been initiated on the UPS." - --#TYPE "APC UPS: Calibration initiated" - --#SUMMARY "A battery run time calibration test has been initiated." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 28 - --- Misc. Traps - -restartAgent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Agent restarting as commanded by manager." - --#TYPE "APC SNMP Agent: Agent restarting" - --#SUMMARY "Agent restarting as commanded by manager." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 29 - -upsTurnedOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A UPS is turned on." - --#TYPE "APC UPS: A UPS is turned on." - --#SUMMARY " A UPS is turned on." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 30 - -smartAvrReducing TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS is reducing the line voltage via SmartTrim(TM)." - --#TYPE "APC UPS: SmartTrim(TM) reducing" - --#SUMMARY "The UPS has enabled SmartTrim(TM) voltage reduction." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 31 - -codeAuthenticationDone TRAP-TYPE - ENTERPRISE apc - VARIABLES { mconfigTFTPServerIP, newCodeAuthentViaTFTP } - DESCRIPTION - "INFORMATIONAL: Authentication on agent code image is done." - --#TYPE "APC CODE: Authentication on agent code image is done." - --#SUMMARY "Authentication on agent code image is done." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 32 - -upsOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The overload condition has been cleared." - --#TYPE "APC UPS: Overload cleared." - --#SUMMARY "The overload condition has been cleared. ." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 33 - -smartBoostOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS has returned from SmartBoost(TM)." - --#TYPE "APC UPS: SmartBoost(TM) off." - --#SUMMARY "The UPS has returned from SmartBoost(TM)." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 34 - -smartAvrReducingOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS has returned from SmartTrim(TM)." - --#TYPE "APC UPS: SmartTrim(TM) reducing off" - --#SUMMARY "The UPS has returned from SmartTrim(TM) voltage reduction." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 35 - -upsBatteryReplaced TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A bad battery fault has been cleared." - --#TYPE "APC UPS: Bad battery replaced" - --#SUMMARY "The UPS has returned from a bad battery fault." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 36 - -calibrationEnd TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS has finished calibrating." - --#TYPE "APC UPS: Calibration end" - --#SUMMARY "The UPS has finished calibrating" - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 37 - -dischargeCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A UPS discharge condition has been cleared." - --#TYPE "APC UPS: Discharge cleared." - --#SUMMARY "The UPS discharge condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 38 - -gracefulShutdown TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A graceful shutdown has been initiated." - --#TYPE "APC UPS: A graceful shutdown has been initiated." - --#SUMMARY "A graceful shutdown has been initiated." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 39 - - -outletOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUOutletControlIndex } - DESCRIPTION - "WARNING: The specified PDU outlet has turned on. - If sPDUOutletControlIndex equals zero, then all outlets have - turned on." - --#TYPE "APC PDU: Outlet has been turned on." - --#SUMMARY "Outlet has been turned on" - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 41 - - -outletOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUOutletControlIndex } - DESCRIPTION - "WARNING: The specified PDU outlet has turned off. - If sPDUOutletControlIndex equals zero, then all outlets - have turned off." - --#TYPE "APC PDU: Outlet has turned off." - --#SUMMARY "Outlet has turned off." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 42 - -outletReboot TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUOutletControlIndex } - DESCRIPTION - "WARNING: The specified PDU outlet has rebooted. - If sPDUOutletControlIndex equals zero, then all outlets - have rebooted." - --#TYPE "APC PDU: Outlet has rebooted." - --#SUMMARY "Outlet has rebooted." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 43 - -configChangeSNMP TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The SNMP configuration has been changed." - --#TYPE "APC: The SNMP configuration has been changed." - --#SUMMARY "The SNMP configuration has been changed." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 44 - - -configChangeOutlet TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUOutletConfigIndex } - DESCRIPTION - "WARNING: The specified PDU outlet has changed configuration. - If sPDUOutletConfigIndex equals zero, then the Master outlet - has changed configuration." - --#TYPE "APC PDU: Outlet configuration has been changed." - --#SUMMARY "Outlet configuration has been changed." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 45 - -accessViolationConsole TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: Someone has attempted to login via the console with the incorrect password." - --#TYPE "APC: Access violation via the console." - --#SUMMARY "Three unsuccessful logins have been attempted via the console." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 46 - -accessViolationHTTP TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: Someone has attempted to login via HTTP with the incorrect password." - --#TYPE "APC: Access violation via HTTP." - --#SUMMARY "An unsuccessful attempt to login via HTTP." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 47 - -passwordChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The password for the device has been changed." - --#TYPE "APC: Password change for the device." - --#SUMMARY "Someone has changed the password on the device." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 48 - -badVoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The output voltage is not within acceptable range." - --#TYPE "APC UPS: Bad output voltage." - --#SUMMARY "The output voltage is not within acceptable range." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 49 - -badVoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The output voltage has returned to an acceptable level." - --#TYPE "APC UPS: The bad voltage output condition has been cleared." - --#SUMMARY "The output voltage has returned to an acceptable level." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 50 - -chargerFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The battery charger has failed." - --#TYPE "APC UPS: The battery charger has failed." - --#SUMMARY "The battery charger has failed." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 51 - -chargerFailureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The battery charger failure condition has been cleared." - --#TYPE "APC UPS: The battery charger failure condition cleared" - --#SUMMARY "The battery charger failure condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 52 - -batteryOverTemperature TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The battery temperature threshold has been violated." - --#TYPE "APC UPS: The battery temperature threshold has been violated." - --#SUMMARY "The battery temperature threshold has been violated." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 53 - -batteryOverTemperatureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The battery over temperature has been cleared." - --#TYPE "APC UPS: The battery over temperature has been cleared." - --#SUMMARY "The battery over temperature has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 54 - - smartRelayFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: SmartBoost(TM) or SmartTrim(TM) relay fault." - --#TYPE "APC UPS: SmartBoost(TM) or SmartTrim(TM) relay fault." - --#SUMMARY "SmartBoost(TM) or SmartTrim(TM) relay fault." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 55 - -smartRelayFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: SmartBoost(TM) or SmartTrim(TM) relay fault has been cleared." - --#TYPE "APC UPS: SmartBoost(TM) or SmartTrim(TM) relay fault cleared." - --#SUMMARY "SmartBoost(TM) or SmartTrim(TM) relay fault has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 56 - -humidityThresholdViolation1 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Probe 1 humidity threshold violated. The - first variable is the current humidity." - --#TYPE "APC Environmental Monitor: Probe 1 humidity threshold violation" - --#SUMMARY "A humidity threshold has been violated on probe 1." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 57 - -humidityThresholdViolationCleared1 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Environmental Monitor humidity threshold violation has been cleared on probe 1." - --#TYPE "APC Environmental Monitor: Probe 1 humidity violation cleared" - --#SUMMARY "A humidity threshold violation has been cleared on probe 1." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 58 - -temperatureThresholdViolation1 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: An Environmental Monitor temperature threshold has been violated on probe 1. - The first variable is the current temperature." - --#TYPE "APC Environmental Monitor: Probe 1 temperature violation" - --#SUMMARY "A temperature threshold has been violated on probe 1." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 59 - -temperatureThresholdViolationCleared1 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Environmental Monitor temperature threshold violation has been cleared on probe 1." - --#TYPE "APC Environmental Monitor: Probe 1 temperature violation cleared" - --#SUMMARY "A temperature threshold violation has been cleared on probe 1." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 60 - -humidityThresholdViolation2 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: An Environmental Monitor humidity threshold has been violated on probe 2. - The first variable is the current humidity." - --#TYPE "APC Environmental Monitor: Probe 2 humidity violation" - --#SUMMARY "A humidity threshold has been violated on probe 2." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 61 - -humidityThresholdViolationCleared2 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Environmental Monitor humidity threshold violation has been cleared on probe 2." - --#TYPE "APC Environmental Monitor: Probe 2 humidity violation cleared" - --#SUMMARY "A humidity threshold violation has been cleared on probe 2." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 62 - -temperatureThresholdViolation2 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: An Environmental Monitor temperature threshold has been violated on probe 2. - The first variable is the current temperature." - --#TYPE "APC Environmental Monitor: Probe 2 temperature violation" - --#SUMMARY "A temperature threshold has been violated on probe 2." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 63 - -temperatureThresholdViolationCleared2 TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Environmental Monitor temperature threshold violation has been cleared on probe 2." - --#TYPE "APC Environmental Monitor: Probe 2 temperature violation cleared" - --#SUMMARY "A temperature threshold violation has been cleared on probe 2." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 64 - -mupsCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communication with the Environmental Monitor has been established." - --#TYPE "APC Environmental Monitor: Communication established" - --#SUMMARY "Communication established between the agent and the Environmental Monitor." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 65 - -mupsCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Communication to the Environmental Monitor has been lost. Steps - to reestablish communication are in progress." - --#TYPE "APC Environmental Monitor: Communication failure" - --#SUMMARY "Communication lost between the agent and the Environmental Monitor." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 66 - -batteryIncrease TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The number of batteries has increased." - --#TYPE "APC UPS: The number of batteries has increased." - --#SUMMARY "The number of batteries has increased." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 67 - -batteryDecrease TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The number of batteries has decreased." - --#TYPE "APC UPS: The number of batteries has decreased." - --#SUMMARY "The number of batteries has decreased." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 68 - -powerModuleIncrease TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The number of power modules has increased." - --#TYPE "APC UPS: The number of power modules has increased." - --#SUMMARY "The number of power modules has increased." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 69 - -powerModuleDecrease TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The number of power modules has decreased." - --#TYPE "APC UPS: The number of power modules has decreased." - --#SUMMARY "The number of power modules has decreased." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 70 - -intelligenceModuleInserted TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An intelligence module has been inserted." - --#TYPE "APC UPS: An intelligence module has been inserted." - --#SUMMARY "An intelligence module has been inserted." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 71 - -intelligenceModuleRemoved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An intelligence module has been removed." - --#TYPE "APC UPS: An intelligence module has been removed." - --#SUMMARY "An intelligence module has been removed." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 72 - -rintelligenceModuleInserted TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A redundant intelligence module has been inserted." - --#TYPE "APC UPS: A redundant intelligence module has been inserted." - --#SUMMARY "A redundant intelligence module has been inserted." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 73 - -rintelligenceModuleRemoved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A redundant intelligence module has been removed." - --#TYPE "APC UPS: A redundant intelligence module has been removed." - --#SUMMARY "A redundant intelligence module has been removed." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 74 - -extBatteryFrameIncease TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An external battery frame has been added." - --#TYPE "APC UPS: An external battery frame has been added." - --#SUMMARY "An external battery frame has been added." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 75 - -extBatteryFrameDecrease TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An external battery frame has been removed." - --#TYPE "APC UPS: An external battery frame has been removed." - --#SUMMARY "An external battery frame has been removed." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 76 - -abnormalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: An abnormal condition has been detected. - The first variable is the fault condition." - --#TYPE "APC: An abnormal condition has been detected." - --#SUMMARY "An abnormal condition has been detected." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 77 - -abnormalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An abnormal condition has been cleared. - The first variable is the fault condition." - --#TYPE "APC: An abnormal condition has been cleared." - --#SUMMARY "An abnormal condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 78 - -deviceStatusChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString} - DESCRIPTION - "INFORMATIONAL: The status of the device being monitored has changed." - --#TYPE "APC : The status of the device being monitored has changed." - --#SUMMARY "The status of the device being monitored has changed." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 79 - -noBatteries TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The UPS has no batteries attached." - --#TYPE "APC UPS: No batteries attached." - --#SUMMARY "The UPS has no batteries attached." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 80 - -noBatteriesCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS's batteries have been attached." - --#TYPE "APC UPS: The no batteries attached condition has been cleared." - --#SUMMARY "The UPS's batteries have been attached." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 81 - -userAdded TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A new user has been added." - --#TYPE "APC: A new user has been added." - --#SUMMARY "A new user has been added." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 82 - -userDeleted TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A user has been deleted." - --#TYPE "APC: A user has been deleted." - --#SUMMARY "A user has been deleted." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 83 - -userModified TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A user has been modified." - --#TYPE "APC: A user has been modified." - --#SUMMARY "A user has been modified." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 84 - --- MasterSwitch Vm Traps - -msvmCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communications with the MasterSwitch VM has been established." - --#TYPE "APC: Communications established with the MasterSwitch VM." - --#SUMMARY "Communications with the MasterSwitch VM has been established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 85 - -msvmCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "SEVERE: Communications with the MasterSwitch VM has been lost." - --#TYPE "APC: Communications lost with the MasterSwitch VM." - --#SUMMARY "Communications with the MasterSwitch VM has been lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 86 - -msvmOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "SEVERE: The MasterSwitch VM in an overload condition." - --#TYPE "APC: The MasterSwitch VM is near or at an overload condition." - --#SUMMARY "The MasterSwitch VM is near or at an overload condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 87 - -msvmOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The overload condition on the MasterSwitch VM has been cleared." - --#TYPE "APC: The overload condition cleared on the MasterSwitch VM." - --#SUMMARY "The overload condition on the MasterSwitch VM has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 88 - -msvmOutletOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, - sPDUOutletControlVMOutletIndex, sPDUOutletControlVMOutletName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on the MasterSwitch VM has turned on." - --#TYPE "APC: An outlet on the MasterSwitch VM has turned on." - --#SUMMARY "An outlet on the MasterSwitch VM has turned on." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 89 - -msvmOutletOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, - sPDUOutletControlVMOutletIndex, sPDUOutletControlVMOutletName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on the MasterSwitch VM has turned off." - --#TYPE "APC: An outlet on the MasterSwitch VM has turned off." - --#SUMMARY "An outlet on the MasterSwitch VM has turned off." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 90 - -msvmDeviceConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A device configuration change has been made on a MasterSwitch VM." - --#TYPE "APC: A device configuration change on a MasterSwitch VM." - --#SUMMARY "A device configuration change has been made on a MasterSwitch VM." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 91 - -msvmOutletConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, - sPDUOutletControlVMOutletIndex, sPDUOutletControlVMOutletName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet configuration change has been made on a MasterSwitch VM." - --#TYPE "APC: An outlet configuration change on a MasterSwitch VM." - --#SUMMARY "An outlet configuration change has been made on a MasterSwitch VM." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 92 - -msvmLowLoad TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The MasterSwitch VM has violated the low load threshold." - --#TYPE "APC: The MasterSwitch VM has violated the low load threshold." - --#SUMMARY "The MasterSwitch VM has violated the low load threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 93 - -msvmLowLoadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The low load condition on the MasterSwitch VM has been cleared." - --#TYPE "APC: The low load condition cleared on the MasterSwitch VM." - --#SUMMARY "The low load condition on the MasterSwitch VM has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 94 - -msvmNearOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "SEVERE: The MasterSwitch VM is approaching an overload condition." - --#TYPE "APC: The MasterSwitch VM is near or at an overload condition." - --#SUMMARY "The MasterSwitch VM is near or at an overload condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 95 - -msvmNearOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The near overload condition on the MasterSwitch VM has been cleared." - --#TYPE "APC: The overload condition cleared on the MasterSwitch VM." - --#SUMMARY "The overload condition on the MasterSwitch VM has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 96 - -msvmPowerSupplyStatusChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlVMIndex, sPDUMasterControlVMName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: The power supply status of the MasterSwitch VM has changed." - --#TYPE "APC: The power supply status changed on MasterSwitch VM" - --#SUMMARY "The power supply status of the MasterSwitch VM has changed." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 97 - --- MasterSwitch plus (MSP) Traps - -mspCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlMSPIndex, sPDUMasterControlMSPName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communications with the MasterSwitch plus has been established." - --#TYPE "APC: Communications established with the MasterSwitch plus." - --#SUMMARY "Communications with the MasterSwitch plus has been established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 98 - -mspCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlMSPIndex, sPDUMasterControlMSPName, mtrapargsString } - DESCRIPTION - "SEVERE: Communications with the MasterSwitch plus has been lost." - --#TYPE "APC: Communications lost with the MasterSwitch plus." - --#SUMMARY "Communications with the MasterSwitch plus has been lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 99 - -mspOutletOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlMSPIndex, sPDUMasterControlMSPName, - sPDUOutletControlMSPOutletIndex, sPDUOutletControlMSPOutletName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on the MasterSwitch plus has turned on." - --#TYPE "APC: An outlet on the MasterSwitch plus has turned on." - --#SUMMARY "An outlet on the MasterSwitch plus has turned on." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 100 - -mspOutletOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlMSPIndex, sPDUMasterControlMSPName, - sPDUOutletControlMSPOutletIndex, sPDUOutletControlMSPOutletName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on the MasterSwitch plus has turned off." - --#TYPE "APC: An outlet on the MasterSwitch plus has turned off." - --#SUMMARY "An outlet on the MasterSwitch plus has turned off." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 101 - -mspDeviceConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlMSPIndex, sPDUMasterControlMSPName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A device configuration change has been made on a MasterSwitch plus." - --#TYPE "APC: A device configuration change on a MasterSwitch plus." - --#SUMMARY "A device configuration change has been made on a MasterSwitch plus." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 102 - -mspOutletConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { sPDUMasterControlMSPIndex, sPDUMasterControlMSPName, sPDUOutletControlMSPOutletIndex, sPDUOutletControlMSPOutletName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet configuration change has been made on a MasterSwitch plus." - --#TYPE "APC: An outlet configuration change on a MasterSwitch plus." - --#SUMMARY "An outlet configuration change has been made on a MasterSwitch plus." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 103 - -rsSourceSwitched TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger02, mtrapargsString03, mtrapargsInteger, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The Redundant Switch has switched source. - The first variable is an integer representing the current source: 0=A, 1=B. - The second variable is the 32-character name of the current source. - The third variable is an integer representing the transfer cause: - 0=No Transfers Recorded, 1=Due to user action or preferred switching, - 3=Due to line notch or spike, 5=Due to low line voltage, - 7=Transfer due to high line voltage, - 9=Transfer due to frequency out of range. - The fourth variable is a character string listing the transfer cause." - --#TYPE "APC Redundant Switch: The Redundant Switch has switched source" - --#SUMMARY "The Redundant Switch has switched source." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 104 - -rsLostRedundancy TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: The Redundant Switch has lost redundancy. - The first variable is an integer representing the source which is no longer available: 0=A, 1=B. - The second variable is the 32-character name of the source which is no longer available." - --#TYPE "APC Redundant Switch: The Redundant Switch has lost redundancy" - --#SUMMARY "The Redundant Switch has lost redundancy." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 105 - -rsRedundancyRestored TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Redundancy has been restored to the Redundant Switch . - The first variable is an integer representing the source which has been restored: 0=A, 1=B. - The second variable is the 32-character name of the source which has been restored." - --#TYPE "APC Redundant Switch: Redundancy has been restored." - --#SUMMARY "Redundancy has been restored to the Redundant Switch ." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 106 - -rsConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A configuration change has been made on a Redundant Switch." - --#TYPE "APC: A configuration change on a Redundant Switch." - --#SUMMARY "A configuration change has been made on a Redundant Switch." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 107 - -rsCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communications with the Redundant Switch has been established." - --#TYPE "APC: Communications established with the Redundant Switch." - --#SUMMARY "Communications with the Redundant Switch has been established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 108 - -rsCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Communications with the Redundant Switch has been lost." - --#TYPE "APC: Communications lost with the Redundant Switch." - --#SUMMARY "Communications with the Redundant Switch has been lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 109 - -dcCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communications with the DC power plant has been established." - --#TYPE "APC: Communications established with the DC power plant." - --#SUMMARY "Communications with the DC power plant has been established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 110 - -dcCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Communications with the DC power plant has been lost." - --#TYPE "APC: Communications lost with the DC power plant." - --#SUMMARY "Communications with the DC power plant has been lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 111 - -dcPINChanged TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The active PIN on the DC controller has been changed." - --#TYPE "APC: The active PIN on the DC controller has been changed." - --#SUMMARY "The active PIN on the DC controller has been changed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 112 - -dcMajorAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: A Major alarm is active in the DC power plant." - --#TYPE "APC: A Major alarm is active in the DC power plant." - --#SUMMARY "A Major alarm is active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 113 - -dcMajorAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Major alarm is no longer active in the DC power plant." - --#TYPE "APC: A Major alarm is no longer active in the DC power plant." - --#SUMMARY "A Major alarm is no longer active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 114 - -dcMinorAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Minor alarm is active in the DC power plant." - --#TYPE "APC: A Minor alarm is active in the DC power plant." - --#SUMMARY "A Minor alarm is active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 115 - -dcMinorAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Minor alarm is no longer active in the DC power plant." - --#TYPE "APC: A Minor alarm is no longer active in the DC power plant." - --#SUMMARY "A Minor alarm is no longer active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 116 - -dcOutputRelayOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { dm3StatusOutRlyIndex, dm3StatusOutRlyName, mtrapargsString } - DESCRIPTION - "WARNING: An output relay for the powerplant has been activated (state changed to on). - The first variable is an integer representing the output relay number that has gone on. - The second variable is the 16-character name of the output relay." - --#TYPE "APC: An output relay has gone on." - --#SUMMARY "An output relay has gone on in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 117 - -dcOutputRelayOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { dm3StatusOutRlyIndex, dm3StatusOutRlyName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An output relay for the powerplant has been deactivated (state changed to off). - The first variable is an integer representing the output relay number that has gone off. - The second variable is the 16-character name of the output relay." - --#TYPE "APC: An output relay has gone off." - --#SUMMARY "An output relay has gone off in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 118 - -dcInputRelayOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { dm3StatusInRlyIndex, dm3StatusInRlyName, mtrapargsString } - DESCRIPTION - "WARNING: An input relay for the powerplant has been activated (state changed to on). - The first variable is an integer representing the input relay number that has gone on. - The second variable is the 16-character name of the input relay." - --#TYPE "APC: An input relay has gone on." - --#SUMMARY "An input relay has gone on in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 119 - -dcInputRelayOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { dm3StatusInRlyIndex, dm3StatusInRlyName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An input relay for the powerplant has been deactivated (state changed to off). - The first variable is an integer representing the input relay number that has gone off. - The second variable is the 16-character name of the input relay." - --#TYPE "APC: An input relay has gone off." - --#SUMMARY "An input relay has gone off in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 120 - -logicPowerSuppliesIncreased TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The number of system power supplies has increased." - --#TYPE "APC UPS: The number of system power supplies has increased." - --#SUMMARY "The number of system power supplies has increased." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 121 - -logicPowerSuppliesDecreased TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The number of system power supplies has decreased." - --#TYPE "APC UPS: The number of system power supplies has decreased." - --#SUMMARY "The number of system power supplies has decreased." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 122 - -externalSwitchGearClosed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: External Switch Gear closed." - --#TYPE "APC UPS: External Switch Gear closed." - --#SUMMARY "External Switch Gear closed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 123 - -externalSwitchGearOpened TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: External Switch Gear opened." - --#TYPE "APC UPS: External Switch Gear opened." - --#SUMMARY "External Switch Gear opened." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 124 - -generalDeviceEvent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: APC Device event." - --#TYPE "APC Device event" - --#SUMMARY "APC Device event." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 125 - -atsSourceSwitched TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The Automatic Transfer Switch has switched source. - The first variable is an integer representing the current source: 0=A, 1=B. - The second variable is the 32-character name of the current source." - --#TYPE "APC Automatic Transfer Switch: The ATS has switched source" - --#SUMMARY "The Automatic Transfer Switch has switched source." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 126 - -atsLostRedundancy TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: The Automatic Transfer Switch has lost redundancy. - The first variable is an integer representing the source which is no longer available: 0=A, 1=B. - The second variable is the 32-character name of the source which is no longer available." - --#TYPE "APC Automatic Transfer Switch: The ATS has lost redundancy. " - --#SUMMARY "The Automatic Transfer Switch has lost redundancy." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 127 - -atsRedundancyRestored TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Redundancy has been restored to the Automatic Transfer Switch . - The first variable is an integer representing the source which has been restored: 0=A, 1=B. - The second variable is the 32-character name of the source which has been restored." - --#TYPE "APC Automatic Transfer Switch: Redundancy has been restored." - --#SUMMARY "Redundancy has been restored to the Automatic Transfer Switch ." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 128 - -atsConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A configuration change has been made on the Automatic Transfer Switch. - The first variable is an integer representing the configuration setting which changed: - 0=Transfer Voltage Range, 1=Sensitivity, 2=Preferred Source - 3=Front Panel Lockout, 4=Current Limit, 5=Reset XA Processor, - 6=Reset to defaults, 7=Product Name, 8=Nominal Voltage, 9=Nominal Line Frequency, - 10=Narrow VRMS, 11=Medium VRMS, 12=Wide VRMS,13=Frequency Deviation, - 14=ColdStart ATS, 15=Events Count Cleared, 16=Phase or Bank Threshold. " - --#TYPE "APC Automatic Transfer Switch: ATS configuration changed." - --#SUMMARY "A configuration change has been made on a Automatic Transfer Switch." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 129 - -atsCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communications with the Automatic Transfer Switch has been established." - --#TYPE "APC Automatic Transfer Switch: Communications established." - --#SUMMARY "Communications with the Automatic Transfer Switch has been established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 130 - -atsCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Communications with the Automatic Transfer Switch has been lost." - --#TYPE "APC Automatic Transfer Switch: Communications lost." - --#SUMMARY "Communications with the Automatic Transfer Switch has been lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 131 - -atsOverCurrent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Output Current has exceeded threshold. This is same as atsOverload Trap - for phase or total in case banked units" - - --#TYPE "APC Automatic Transfer Switch: Output Current exceeded threshold" - --#SUMMARY "Output Current has exceeded Threshold. " - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 132 - -atsOverCurrentCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Output Current has returned below threshold.This is same as atsOverloadCleared Trap - for phase or total in case banked units" - --#TYPE "APC Automatic Transfer Switch: Output Current below threshold." - --#SUMMARY "Output Current has returned below threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 133 - -atsPowerSupplyFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The Automatic Transfer Switch Power Supply has failed. - The first variable is an integer representing the Power Supply which - has failed: 0 = Source A 24V, - 1 = 12V, - 2 = 5V, - 3 = Source B 24V." - --#TYPE "APC Automatic Transfer Switch: The ATS Power Supply has failed." - --#SUMMARY "The Automatic Transfer Switch Power Supply has failed." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 134 - -atsPowerSupplyFailureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The Automatic Transfer Power Supply Failure Cleared. - The first variable is an integer representing the Power Supply which - has cleared: 0 = Source A 24V, - 1 = 12V, - 2 = 5V, - 3 = Source B 24V." - --#TYPE "APC Automatic Transfer Switch: Power Supply Failure Cleared." - --#SUMMARY "The Automatic Transfer Switch Power Supply Failure Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 135 - -dcMainsFailAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Mains Fail alarm is active in the DC power plant." - --#TYPE "APC: A Mains Fail alarm is active in the DC power plant." - --#SUMMARY "A Mains Fail alarm is active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 136 - -dcMainsFailAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Mains Fail alarm is no longer active in the DC power plant." - --#TYPE "APC: Mains Fail alarm is no longer active in the DC power plant." - --#SUMMARY "Mains Fail alarm is no longer active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 137 - -dcFanFailAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Fan Fail alarm is active in the DC power plant." - --#TYPE "APC: A Fan Fail alarm is active in the DC power plant." - --#SUMMARY "A Fan Fail alarm is active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 138 - -dcFanFailAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Fan Fail alarm is no longer active in the DC power plant." - --#TYPE "APC: A Fan Fail alarm is no longer active in the DC power plant." - --#SUMMARY "A Fan Fail alarm is no longer active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 139 - -dcRectifierOvertempAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: Rect. Overtemp alarm is active in the power plant." - --#TYPE "APC: Rect. Overtemp alarm is active in the power plant." - --#SUMMARY "Rect. Overtemp alarm is active in the power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 140 - -dcRectifierOvertempAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Rect. Overtemp alarm is no longer active in the power plant." - --#TYPE "APC: Rect. Overtmp alarm is no longer active in the power plant." - --#SUMMARY "Rect. Overtemp alarm is no longer active in the power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 141 - -dcCurrentLimitAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Current Limit alarm is active in the power plant." - --#TYPE "APC: A Current Limit alarm is active in the power plant." - --#SUMMARY "A Current Limit alarm is active in the power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 142 - -dcCurrentLimitAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Current Limit alarm is no longer active in the power plant." - --#TYPE "APC: Current Limit alarm is no longer active in the power plant." - --#SUMMARY "Current Limit alarm is no longer active in the power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 143 - -dcRectifierFailAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Rect. Fail alarm is active in the power plant." - --#TYPE "APC: A Rect. Fail alarm is active in the power plant." - --#SUMMARY "A Rect. Fail alarm is active in the power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 144 - -dcRectifierFailAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Rect. Fail alarm is no longer active in the power plant." - --#TYPE "APC: Rect. Fail alarm is no longer active in the power plant." - --#SUMMARY "Rect. Fail alarm is no longer active in the power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 145 - -dcMultRectFailAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: Multiple Rect. Fail alarm is active in the powerplant." - --#TYPE "APC: Multiple Rect. Fail alarm is active in the powerplant." - --#SUMMARY "Multiple Rect. Fail alarm is active in the powerplant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 146 - -dcMultRectFailAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Multiple Rect Fail alarm is no longer active in the powerplant." - --#TYPE "APC: Multiple Rect Fail alarm is no longer active in powerplant." - --#SUMMARY "Multiple Rect Fail alarm is no longer active in the powerplant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 147 - -dcBatteryBreakerAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: Batt. Breaker alarm is active in the power plant." - --#TYPE "APC: Batt. Breaker alarm is active in the power plant." - --#SUMMARY "Batt. Breaker alarm is active in the power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 148 - -dcBatteryBreakerAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Batt. Breaker alarm is no longer active in the power plant." - --#TYPE "APC: Batt. Breaker alarm is no longer active in the power plant." - --#SUMMARY "Batt. Breaker alarm is no longer active in the power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 149 - -dcRectifierOVPAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Rect. OVP alarm is active in the power plant." - --#TYPE "APC: A Rect. OVP alarm is active in the power plant." - --#SUMMARY "A Rect. OVP alarm is active in the power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 150 - -dcRectifierOVPAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Rect. OVP alarm is no longer active in the power plant." - --#TYPE "APC: A Rect. OVP alarm is no longer active in the power plant." - --#SUMMARY "A Rect. OVP alarm is no longer active in the power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 151 - -dcLVDImminentAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A LVD Imminent alarm is active in the powerplant." - --#TYPE "APC: A LVD Imminent alarm is active in the powerplant." - --#SUMMARY "A LVD Imminent alarm is active in the powerplant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 152 - -dcLVDImminentAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A LVD Imminent alarm is no longer active in the powerplant." - --#TYPE "APC: A LVD Imminent alarm is no longer active in the powerplant." - --#SUMMARY "A LVD Imminent alarm is no longer active in the powerplant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 153 - -dcFuseCBAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Fuse/CB alarm is active in the DC power plant." - --#TYPE "APC: A Fuse/CB alarm is active in the DC power plant." - --#SUMMARY "A Fuse/CB alarm is active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 154 - -dcFuseCBAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Fuse/CB alarm is no longer active in the DC power plant." - --#TYPE "APC: A Fuse/CB alarm is no longer active in the DC power plant." - --#SUMMARY "A Fuse/CB alarm is no longer active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 155 - -dcBatteryTestFail TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Battery Test failed in the DC power plant." - --#TYPE "APC: A Battery Test failed in the DC power plant." - --#SUMMARY "A Battery Test failed in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 156 - -dcTemperatureAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Temperature is active in the power plant." - --#TYPE "APC: A Temperature alarm is active in the power plant." - --#SUMMARY "A Temperature alarm is active in the power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 157 - -dcTemperatureAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Temperature alarm is no longer active in the power plant." - --#TYPE "APC: A Temperature alarm is no longer active in the power plant." - --#SUMMARY "A Temperature alarm is no longer active in the power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 158 - -dcHumidityAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A Humidity alarm is active in the DC power plant." - --#TYPE "APC: A Humidity alarm is active in the DC power plant." - --#SUMMARY "A Humidity alarm is active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 159 - -dcHumidityAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Humidity alarm is no longer active in the DC power plant." - --#TYPE "APC: A Humidity alarm is no longer active in the DC power plant." - --#SUMMARY "A Humidity alarm is no longer active in the DC power plant." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 160 - -dcBBCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Power plant bridging board communications established." - --#TYPE "APC: Power plant bridging board communications established." - --#SUMMARY "Power plant bridging board communications established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 161 - -dcBBCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Power plant bridging board communications lost." - --#TYPE "APC: Power plant bridging board communications lost." - --#SUMMARY "Power plant bridging board communications lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 162 - -iemHighTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeCurrentTemp, iemStatusProbeTempUnits, iemStatusProbeNumber, - iemStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: High temperature threshold violated on Integrated - Environmental Monitor probe. The first variable is the - current temperature. The second variable is the temperature - scale. The third variable is the probe number. The fourth - variable is the probe name." - --#TYPE "APC IEM: High temperature threshold violation." - --#SUMMARY "High temperature threshold violation." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 163 - -iemHighTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeNumber, iemStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High temperature threshold violated on Integrated - Environmental Monitor probe has been cleared. The first variable - is the probe number. The second variable is the probe name." - --#TYPE "APC IEM: High temperature threshold violation cleared." - --#SUMMARY "High temperature threshold violation has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 164 - -iemLowTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeCurrentTemp, iemStatusProbeTempUnits, iemStatusProbeNumber, - iemStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Low temperature threshold violated on integrated - probe. The first variable is the current temperature. The - second variable is the temperature scale. The third - variable is the probe number. The fourth variable is the - probe name." - --#TYPE "APC IEM: Low temperature threshold violation." - --#SUMMARY "Low temperature threshold violation." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 165 - -iemLowTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeNumber, iemStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low temperature threshold violated on integrated - probe has been cleared. The first variable is the probe number. - The second variable is the probe name." - --#TYPE "APC IEM: Low temperature threshold violation cleared." - --#SUMMARY "Low temperature threshold violation has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 166 - -iemHighHumidThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeCurrentHumid, iemStatusProbeNumber, iemStatusProbeName, - mtrapargsString } - DESCRIPTION - "SEVERE: High humidity threshold violated on integrated - probe. The first variable is the current humidity. The - second variable is the probe number. The third variable - is the probe name." - --#TYPE "APC IEM: High humidity threshold violation." - --#SUMMARY "High humidity threshold violation." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 167 - -iemHighHumidThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeNumber, iemStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High humidity threshold violated on integrated - probe cleared. The first variable is the probe number. The second - variable is the probe name." - --#TYPE "APC IEM: High humidity threshold violation cleared." - --#SUMMARY "High humidity threshold violation has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 168 - -iemLowHumidThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeCurrentHumid, iemStatusProbeNumber, iemStatusProbeName, - mtrapargsString } - DESCRIPTION - "SEVERE: Low humidity threshold violated on integrated - probe. The first variable is the current humidity. The - second variable is the probe number. The third variable - is the probe name." - --#TYPE "APC IEM: Low humidity threshold violation." - --#SUMMARY "Low humidity threshold violation." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 169 - -iemLowHumidThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusProbeNumber, iemStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low humidity threshold violated on integrated - probe cleared. The first variable is the probe number. The second - variable is the probe name." - --#TYPE "APC IEM: Low humidity threshold violation cleared." - --#SUMMARY "Low humidity threshold violation has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 170 - -iemProbeDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The temperature/humidity probe on the Integrated - Environmental Monitor has been disconnected. This trap is - generated when a probe that has been in communication with - the Environmental Monitor has been disconnected or can no - longer communicate." - --#TYPE "APC IEM: Probe disconnected." - --#SUMMARY "Probe has been disconnected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 171 - -iemProbeConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The temperature/humidity probe on the Integrated - Environmental Monitor has been connected. This trap is generated - when the Environmental Monitor establishes communication with a - probe that had previously not been connected." - --#TYPE "APC IEM: Probe Connected." - --#SUMMARY "Probe has been connected." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 172 - -iemContactFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusContactNumber, iemStatusContactName, mtrapargsString } - DESCRIPTION - "SEVERE: There is a contact fault on the Integrated - Environmental Monitor. The first argument is the number - of the contact. The second argument is the name of the - contact." - --#TYPE "APC IEM: Contact fault." - --#SUMMARY "Contact fault." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 173 - -iemContactFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusContactNumber, iemStatusContactName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The contact fault on the Integrated - Environmental Monitor has been cleared. The first - argument is the number of the contact. The second - argument is the name of the contact." - --#TYPE "APC IEM: Contact fault." - --#SUMMARY "Contact fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 174 - -iemRelayFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusRelayNumber, iemStatusRelayName, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: The output relay on the Integrated Environmental - Monitor has switched to the fault state. The first - argument is the number of the output relay. The second - argument is the name of the output relay. The third - argument is the event that caused the fault." - --#TYPE "APC IEM: Output relay fault." - --#SUMMARY "Output relay has faulted." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 175 - -iemRelayFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { iemStatusRelayNumber, iemStatusRelayName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The fault condition on the output relay on the - Integrated Environmental Monitor has cleared. The first - argument is the number of the output relay. The second - argument is the name of the output relay." - --#TYPE "APC IEM: Output relay fault condition cleared." - --#SUMMARY "Output relay fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 176 - -bmBatManCommEstab TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Serial Communications Established with Battery Manager." - --#TYPE "BatMan : Communications Established." - --#SUMMARY "Communications Established." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 177 - -bmBatManCommLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Serial Communications Lost with Battery Manager." - --#TYPE "BatMan : Communications Lost." - --#SUMMARY "Communications Lost." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 178 - -bmBatManKneeAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Battery Voltage Knee Threshold Alarm Detected." - --#TYPE "BatMan : Knee Alarm Detected." - --#SUMMARY "Knee Alarm Detected." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 179 - -bmBatManKneeAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Battery Voltage Knee Threshold Alarm Cleared." - --#TYPE "BatMan : Knee Alarm Cleared." - --#SUMMARY "Knee Alarm Cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 180 - -bmBatManChargerAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Charger Alarm Detected." - --#TYPE "BatMan : Charger Alarm Detected." - --#SUMMARY "Charger Alarm Detected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 181 - -bmBatManChargerAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Charger Alarm Cleared." - --#TYPE "BatMan : Charger Alarm Cleared." - --#SUMMARY "Charger Alarm Cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 182 - -bmBatManBatteryAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Battery Alarm Detected." - --#TYPE "BatMan : Battery Alarm Detected." - --#SUMMARY "Battery Alarm Detected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 183 - -bmBatManBatteryAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Battery Alarm Cleared." - --#TYPE "BatMan : Battery Alarm Cleared." - --#SUMMARY "Battery Alarm Cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 184 - -bmBatManEnvironmentAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Environment Alarm Detected." - --#TYPE "BatMan : Environment Alarm Detected." - --#SUMMARY "Environment Alarm Detected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 185 - -bmBatManEnvironmentAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Environment Alarm Cleared." - --#TYPE "BatMan : Environment Alarm Cleared." - --#SUMMARY "Environment Alarm Cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 186 - -bmBatManMaintenanceAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Maintenance Alarm Detected." - --#TYPE "BatMan : Maintenance Due Alarm Detected." - --#SUMMARY "Maintenance Due Alarm Detected." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 187 - -bmBatManMaintenanceAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Maintenance Alarm Cleared." - --#TYPE "BatMan : Maintenance Due Alarm Cleared." - --#SUMMARY "Maintenance Due Alarm Cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 188 - -pduCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communication Established. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Communication Established." - --#SUMMARY "Communication Established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 189 - -pduCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: Communication Lost. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Communication Lost." - --#SUMMARY "Communication Lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 190 - -pduUtilityLineUndervoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Utility Line Undervoltage. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Utility Line Undervoltage." - --#SUMMARY "Utility Line Undervoltage." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 191 - -pduUtilityLineUndervoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Utility Line Undervoltage Cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Utility Line Undervoltage Cleared." - --#SUMMARY "Utility Line Undervoltage Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 192 - -pduUtilityLineOvervoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Utility Line Overvoltage. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Utility Line Overvoltage." - --#SUMMARY "Utility Line Overvoltage." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 193 - -pduUtilityLineOvervoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Utility Line Overvoltage Cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Utility Line Overvoltage Cleared." - --#SUMMARY "Utility Line Overvoltage Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 194 - -pduGroundOvercurrent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: Ground Overcurrent. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Ground Overcurrent." - --#SUMMARY "Ground Overcurrent." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 195 - -pduGroundOvercurrentCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Ground Overcurrent Cleared. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Ground Overcurrent Cleared." - --#SUMMARY "Ground Overcurrent Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 196 - -pduCircuitPanelInputUndervoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Circuit Panel Input Undervoltage. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Undervoltage." - --#SUMMARY "Circuit Panel Input Undervoltage." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 197 - -pduCircuitPanelInputUndervoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Circuit Panel Input Undervoltage Cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Undervoltage Cleared." - --#SUMMARY "Circuit Panel Input Undervoltage Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 198 - -pduCircuitPanelInputOvervoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Circuit Panel Input Overvoltage. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Overvoltage." - --#SUMMARY "Circuit Panel Input Overvoltage." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 199 - -pduCircuitPanelInputOvervoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Circuit Panel Input Overvoltage Cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Overvoltage Cleared." - --#SUMMARY "Circuit Panel Input Overvoltage Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 200 - -pduCircuitPanelInputUndercurrent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Circuit Panel Input Undercurrent. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Undercurrent." - --#SUMMARY "Circuit Panel Input Undercurrent." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 201 - -pduCircuitPanelInputUndercurrentCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Circuit Panel Input Undercurrent Cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Undercurrent Cleared." - --#SUMMARY "Circuit Panel Input Undercurrent Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 202 - -pduCircuitPanelInputOvercurrent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Circuit Panel Input Overcurrent. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Overcurrent." - --#SUMMARY "Circuit Panel Input Overcurrent." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 203 - -pduCircuitPanelInputOvercurrentCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Circuit Panel Input Overcurrent Cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: Circuit Panel Input Overcurrent Cleared." - --#SUMMARY "Circuit Panel Input Overcurrent Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 204 - -pduCircuitPanelFrequencyOutOfRange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: Circuit Panel Input Frequency Out Of Range. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Circuit Panel Input Frequency Out Of Range." - --#SUMMARY "Circuit Panel Input Frequency Out Of Range." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 205 - -pduCircuitPanelFrequencyOutofRangeCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Circuit Panel Input Frequency No Longer Out Of Range. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Circuit Panel Input Frequency No Longer Out Of Range." - --#SUMMARY "Circuit Panel Input Frequency No Longer Out Of Range." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 206 - -pduCircuitPanelNeutralOvercurrent TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: Circuit Panel Input Neutral Overcurrent. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Circuit Panel Input Neutral Overcurrent." - --#SUMMARY "Circuit Panel Input Neutral Overcurrent." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 207 - -pduCircuitPanelNeutralOvercurrentCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Circuit Panel Input Neutral Overcurrent Cleared. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Circuit Panel Input Neutral Overcurrent Cleared." - --#SUMMARY "Circuit Panel Input Neutral Overcurrent Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 208 - -pduSystemOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: PDU System Off. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: System Off." - --#SUMMARY "PDU System Off." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 209 - -pduOnBatteryMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: PDU is in On Battery Mode. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: On Battery Mode." - --#SUMMARY "PDU is in On Battery Mode." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 210 - -pduMaintenanceBypassMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: PDU is in Maintenance Bypass Mode. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Maintenance Bypass Mode." - --#SUMMARY "PDU is in Maintenance Bypass Mode." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 211 - -pduAtypicalBypassMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "WARNING: PDU is in Atypical Bypass Mode. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Atypical Bypass Mode." - --#SUMMARY "PDU is in Atypical Bypass Mode." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 212 - -pduNoPanelFeedMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: PDU is in No Panel Feed Mode. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: No Panel Feed Mode." - --#SUMMARY "PDU is in No Panel Feed Mode." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 213 - -pduUpsOperationMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: PDU is in Ups Operation Mode. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Ups Operation Mode." - --#SUMMARY "PDU is in Ups Operation Mode." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 214 - -pduForcedBypassMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "WARNING: PDU is in Forced Bypass Mode. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Forced Bypass Mode." - --#SUMMARY "PDU is in Forced Bypass Mode." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 215 - -pduInputTransformerOverTemperature TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: Input Transformer Over Temperature. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Input Transformer Over Temperature." - --#SUMMARY "Input Transformer Over Temperature." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 216 - -pduInputTransformerOverTemperatureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Input Transformer Over Temperature Cleared. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC PDU: Input Transformer Over Temperature Cleared." - --#SUMMARY "Input Transformer Over Temperature Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 217 - -pduUPSInputVoltageLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: UPS Input Voltage phase-N Lost. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: UPS Input Voltage phase-N Lost." - --#SUMMARY "UPS Input Voltage phase-N Lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 218 - -pduUPSInputVoltageRestored TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UPS Input Voltage phase-N Restored. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC PDU: UPS Input Voltage phase-N Restored." - --#SUMMARY "UPS Input Voltage phase-N Restored." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 219 - -pduContactFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: A contact closure in the PDU is in an abnormal position. - The first argument is the serial number. - The second argument is the device name. - The third argument is the number of the contact." - --#TYPE "APC PDU: Contact Abnormal." - --#SUMMARY "Contact Abnormal." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 220 - -pduContactFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A contact closure in the PDU is in a normal position. - The first argument is the serial number. - The second argument is the device name. - The third argument is the number of the contact." - --#TYPE "APC PDU: Contact Normal." - --#SUMMARY "Contact Normal." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 221 - -rPDUBankPhaseLowLoad TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusBankNumber, rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "WARNING: A bank or phase on the Rack PDU has violated the low load threshold. - The first argument is the serial number. - The second argument is the device name. - The third argument is the bank number (0 if this is phase data). - The fourth argument is the phase number (0 if this is bank data)." - --#TYPE "APC Rack PDU: Violation of bank or phase low load threshold." - --#SUMMARY "A bank or phase on the Rack PDU has violated the low load threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 222 - -rPDUBankPhaseLowLoadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusBankNumber, rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The bank or phase low load condition on a Rack PDU has been - cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the bank number (0 if this is phase data). - The fourth argument is the phase number (0 if this is bank data)." - --#TYPE "APC Rack PDU: Bank or phase low load condition cleared." - --#SUMMARY "The bank or phase low load condition on a Rack PDU has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 223 - -rPDUBankPhaseNearOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusBankNumber, rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "WARNING: A bank or phase of the Rack PDU is near an overload condition. - The first argument is the serial number. - The second argument is the device name. - The third argument is the bank number (0 if this is phase data). - The fourth argument is the phase number (0 if this is bank data)." - --#TYPE "APC Rack PDU: Bank or phase near an overload condition." - --#SUMMARY "A bank or phase of the Rack PDU is near an overload condition." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 224 - -rPDUBankPhaseNearOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusBankNumber, rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The bank or phase near overload condition on a Rack PDU has - been cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the bank number (0 if this is phase data). - The fourth argument is the phase number (0 if this is bank data)." - --#TYPE "APC Rack PDU: Bank or phase near overload condition has cleared." - --#SUMMARY "Rack PDU bank or phase near overload condition has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 225 - -rPDUBankPhaseOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusBankNumber, rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "SEVERE: A bank or phase of the Rack PDU is in an overload condition. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number. - The third argument is the bank number (0 if this is phase data). - The fourth argument is the phase number (0 if this is bank data)." - --#TYPE "APC Rack PDU: Bank or phase overload condition." - --#SUMMARY "A bank or phase of the Rack PDU is in an overload condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 226 - -rPDUBankPhaseOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusBankNumber, rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The bank or phase overload condition on a Rack PDU has been - cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the bank number (0 if this is phase data). - The fourth argument is the phase number (0 if this is bank data)." - --#TYPE "APC Rack PDU: Bank or phase overload condition has cleared." - --#SUMMARY "The bank or phase overload condition on a Rack PDU has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 227 - -aruDeviceConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Remote ARU Device Configuration change. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: ARU Device configuration change." - --#SUMMARY "ARU device configuration change." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 228 - -rmPDUCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString03, mtrapargsString02, mtrapargsString } - DESCRIPTION - "SEVERE: Communication Lost. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC RM PDU: Communication Lost." - --#SUMMARY "Communication Lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 229 - -emsCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communication Established. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC EMS: Communication Established." - --#SUMMARY "Communication Established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 230 - -emsCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "SEVERE: Communication Lost. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC EMS: Communication Lost." - --#SUMMARY "Communication Lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 231 - -emsProbeConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A probe has been connected to the EMS. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the probe number. - The fourth argument is the probe name." - --#TYPE "APC EMS: Probe Connected." - --#SUMMARY "Probe Connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 232 - -emsProbeDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: A probe has been disconnected from the EMS. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the probe number. - The fourth argument is the probe name." - --#TYPE "APC EMS: Probe Disconnected." - --#SUMMARY "Probe Disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 233 - -emsSensorConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsSensorStatusSensorIndex, emsSensorStatusSensorName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A sensor has been connected to the EMS. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the sensor number. - The fourth argument is the sensor name." - --#TYPE "APC EMS: Sensor Connected." - --#SUMMARY "Sensor Connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 234 - -emsSensorDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsSensorStatusSensorIndex, emsSensorStatusSensorName, mtrapargsString } - DESCRIPTION - "SEVERE: A sensor has been disconnected from the EMS. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the sensor number. - The fourth argument is the sensor name." - --#TYPE "APC EMS: Sensor Disconnected." - --#SUMMARY "Sensor Disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 235 - -emsSensorFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsSensorStatusSensorIndex, emsSensorStatusSensorName, mtrapargsString } - DESCRIPTION - "SEVERE: A EMS sensor is in the fault condition. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the sensor number. - The fourth argument is the sensor name." - --#TYPE "APC EMS: Sensor Fault." - --#SUMMARY "Sensor Fault." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 236 - -emsSensorFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsSensorStatusSensorIndex, emsSensorStatusSensorName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A EMS sensor fault condition has cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the sensor number. - The fourth argument is the sensor name." - --#TYPE "APC EMS: Sensor Fault Cleared." - --#SUMMARY "Sensor Fault Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 237 - -emsBeaconConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A beacon has been connected to the EMS. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC EMS: Beacon Connected." - --#SUMMARY "Beacon Connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 238 - -emsBeaconDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "SEVERE: A beacon has been disconnected from the EMS. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC EMS: Beacon Disconnected." - --#SUMMARY "Beacon Disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 239 - -emsBeaconOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A EMS beacon has gone on. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC EMS: Beacon On." - --#SUMMARY "Beacon On." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 240 - -emsBeaconOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A EMS beacon has gone off. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC EMS: Beacon Off." - --#SUMMARY "Beacon Off." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 241 - -emsMajorAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "SEVERE: A Major Alarm is present in the EMS. - The first argument is the EMS serial number. - The second argument is the EMS name." - --#TYPE "APC EMS: Major Alarm." - --#SUMMARY "Major Alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 242 - -emsMajorAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Major Alarm condition has been cleared in the EMS. - The first argument is the EMS serial number. - The second argument is the EMS name." - --#TYPE "APC EMS: Major Alarm Cleared." - --#SUMMARY "Major Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 243 - -emsMinorAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "SEVERE: A Minor Alarm is present in the EMS. - The first argument is the EMS serial number. - The second argument is the EMS name." - --#TYPE "APC EMS: Minor Alarm." - --#SUMMARY "Minor Alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 244 - -emsMinorAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Minor Alarm condition has been cleared in the EMS. - The first argument is the EMS serial number. - The second argument is the EMS name." - --#TYPE "APC EMS: Minor Alarm Cleared." - --#SUMMARY "Minor Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 245 - -emsOutletStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsOutletStatusOutletIndex, emsOutletStatusOutletName, - emsOutletStatusOutletState, emsOutletStatusOutletNormalState, mtrapargsString } - DESCRIPTION - "WARNING: An outlet on the EMS has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the outlet number. - The fourth argument is the outlet name. - The fifth argument is the current outlet state (1=ON, 2=OFF). - The sixth argument is the configured normal outlet state (1=ON, 2=OFF)." - --#TYPE "APC EMS: Outlet has changed to its abnormal state." - --#SUMMARY "Outlet has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 246 - -emsOutletStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsOutletStatusOutletIndex, emsOutletStatusOutletName, - emsOutletStatusOutletState, emsOutletStatusOutletNormalState, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on the EMS has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the outlet number. - The fourth argument is the outlet name. - The fifth argument is the current outlet state (1=ON, 2=OFF). - The sixth argument is the configured normal outlet state (1=ON, 2=OFF)." - --#TYPE "APC EMS: Outlet has changed to its normal state." - --#SUMMARY "Outlet has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 247 - -emsInputContactStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsInputContactStatusInputContactIndex, - emsInputContactStatusInputContactName, emsInputContactStatusInputContactState, - emsInputContactStatusInputContactNormalState, mtrapargsString } - DESCRIPTION - "WARNING: An input contact on the EMS has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the input contact number. - The fourth argument is the input contact name. - The fifth argument is the input contact state (1=CLOSED, 2=OPEN). - The sixth argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC EMS: Input contact has changed to its abnormal state." - --#SUMMARY "Input contact has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 248 - -emsInputContactStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsInputContactStatusInputContactIndex, - emsInputContactStatusInputContactName, emsInputContactStatusInputContactState, - emsInputContactStatusInputContactNormalState, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An input contact on the EMS has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the input contact number. - The fourth argument is the input contact name. - The fifth argument is the input contact state (1=CLOSED, 2=OPEN). - The sixth argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC EMS: Input contact has changed to its normal state." - --#SUMMARY "Input contact has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 249 - -emsOutputRelayStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsOutputRelayStatusOutputRelayIndex, - emsOutputRelayStatusOutputRelayName, emsOutputRelayStatusOutputRelayState, - emsOutputRelayStatusOutputRelayNormalState, mtrapargsString } - DESCRIPTION - "WARNING: An output relay on the EMS has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the output relay number. - The fourth argument is the output relay name. - The fifth argument is the current output relay state (1=CLOSED, 2=OPEN). - The sixth argument is the configured normal output relay state (1=CLOSED, 2=OPEN)." - --#TYPE "APC EMS: Output Relay has changed to its abnormal state." - --#SUMMARY "Output Relay has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 250 - -emsOutputRelayStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsOutputRelayStatusOutputRelayIndex, - emsOutputRelayStatusOutputRelayName, emsOutputRelayStatusOutputRelayState, - emsOutputRelayStatusOutputRelayNormalState, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An output relay on the EMS has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the output relay number. - The fourth argument is the output relay name. - The fifth argument is the current output relay state (1=CLOSED, 2=OPEN). - The sixth argument is the configured normal output relay state (1=CLOSED, 2=OPEN)." - --#TYPE "APC EMS: Output Relay has changed to its normal state." - --#SUMMARY "Output Relay has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 251 - -emsDeviceConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A device configuration change has been made on the EMS. - The first argument is the EMS serial number. - The second argument is the EMS name." - --#TYPE "APC: A device configuration change on a EMS." - --#SUMMARY "A device configuration change has been made on a EMS." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 252 - -envHighTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: High temperature threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: High temperature threshold violation." - --#SUMMARY "High temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 253 - -envHighTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High temperature threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: High temperature threshold violation cleared." - --#SUMMARY "High temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 254 - -envLowTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Low temperature threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Low temperature threshold violation." - --#SUMMARY "Low temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 255 - -envLowTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low temperature threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Low temperature threshold violation cleared." - --#SUMMARY "Low temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 256 - -envHighHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: High humidity threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: High humidity threshold violation." - --#SUMMARY "High humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 257 - -envHighHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High humidity threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity. - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: High humidity threshold violation cleared." - --#SUMMARY "High humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 258 - -envLowHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Low humidity threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: Low humidity threshold violation." - --#SUMMARY "Low humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 259 - -envLowHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low humidity threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity. - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: Low humidity threshold violation cleared." - --#SUMMARY "Low humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 260 - - --- Switched and Metered Rack PDU Traps - -rPDUCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communication with a Rack PDU has been established. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Communication established." - --#SUMMARY "Communication with a Rack PDU established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 266 - -rPDUCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "SEVERE: Communication with a Rack PDU has been lost. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Communication lost." - --#SUMMARY "Communication with a Rack PDU has been lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 267 - -rPDUOutletOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletControlIndex, rPDUOutletControlOutletName, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on a Switched Rack PDU has turned on. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet index number. - The fourth argument is the outlet name." - --#TYPE "APC Switched Rack PDU: An outlet has turned on." - --#SUMMARY "An outlet on a Switched Rack PDU has turned on." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 268 - -rPDUOutletOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletControlIndex, rPDUOutletControlOutletName, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on a Switched Rack PDU has turned off. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet index number. - The fourth argument is the outlet name." - --#TYPE "APC Switched Rack PDU: An outlet has turned off." - --#SUMMARY "An outlet on a Switched Rack PDU has turned off." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 269 - -rPDUDeviceConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A device configuration change has been made on a - Rack PDU. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Device configuration change made." - --#SUMMARY "Device configuration change has been made on a Rack PDU." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 270 - -rPDUOutletConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletControlIndex, rPDUOutletControlOutletName, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet configuration change has been made on a - Switched Rack PDU. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet index number. - The fourth argument is the outlet name." - --#TYPE "APC Switched Rack PDU: Outlet configuration change made." - --#SUMMARY "Outlet configuration change has been made on a Switched Rack PDU." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 271 - -rPDULowLoad TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "WARNING: A Rack PDU has violated the low load threshold. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC Rack PDU: Violation of low load threshold." - --#SUMMARY "A Rack PDU has violated the low load threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 272 - -rPDULowLoadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The low load condition on a Rack PDU has been - cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC Rack PDU: Low load condition cleared." - --#SUMMARY "The low load condition on a Rack PDU has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 273 - -rPDUNearOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "WARNING: A Rack PDU is near an overload condition. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC Rack PDU: Near an overload condition." - --#SUMMARY "A Rack PDU is near an overload condition." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 274 - -rPDUNearOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The near overload condition on a Rack PDU has - been cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC Rack PDU: Near overload condition has cleared." - --#SUMMARY "Rack PDU near overload condition has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 275 - -rPDUOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "SEVERE: A Rack PDU is in an overload condition. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC Rack PDU: Overload condition." - --#SUMMARY "A Rack PDU is in an overload condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 276 - -rPDUOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadStatusPhaseNumber, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The overload condition on a Rack PDU has been - cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase number." - --#TYPE "APC Rack PDU: Overload condition has cleared." - --#SUMMARY "The overload condition on a Rack PDU has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 277 - -rPDUPowerSupply1Fail TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "SEVERE: Power Supply 1 on Rack PDU is in FAIL state. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Power Supply 1 is in FAIL state." - --#SUMMARY "Power Supply 1 on Rack PDU is in FAIL state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 278 - -rPDUPowerSupply1Ok TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Power Supply 1 on Rack PDU is operating normally. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Power Supply 1 is operating normally." - --#SUMMARY "Power Supply 1 on Rack PDU is operating normally." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 279 - -rPDUPowerSupply2Fail TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "SEVERE: Power Supply 2 on Rack PDU is in FAIL state. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Power Supply 2 is in FAIL state." - --#SUMMARY "Power Supply 2 on Rack PDU is in FAIL state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 280 - -rPDUPowerSupply2Ok TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Power Supply 2 on Rack PDU is operating normally. - The first argument is the serial number. - The second argument is the device name." - --#TYPE "APC Rack PDU: Power Supply 2 is operating normally." - --#SUMMARY "Power Supply 2 on Rack PDU is operating normally." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 281 - -rPDUPhaseConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDULoadPhaseConfigIndex, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A phase configuration change has been made on a - Rack PDU. - The first argument is the serial number. - The second argument is the device name. - The third argument is the phase index number." - --#TYPE "APC Rack PDU: Phase configuration change made." - --#SUMMARY "Phase configuration change has been made on a Rack PDU." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 282 - -rPDUCancelPendingCommand TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletControlIndex, rPDUOutletControlOutletName, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A cancel pending command has been made on a - Switched Rack PDU. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet index number (0 indicates all outlets). - The fourth argument is the outlet name (or device name if all outlets)." - --#TYPE "APC Switched Rack PDU: Cancel Pending Command made." - --#SUMMARY "A Cancel Pending Command has been made on a Switched Rack PDU." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 283 - -aruAlinkCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Remote ARU Communication Established. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Communication Established." - --#SUMMARY "Communication Established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 284 - -aruAlinkCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "SEVERE: Remote ARU Communication Lost. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Communication Lost." - --#SUMMARY "Communication Lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 285 - -aruFanFail TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "SEVERE: Remote ARU Fan Fail. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Fan Failure." - --#SUMMARY "Fan Fail." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 286 - -aruFanFailCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Remote ARU Fan Fail Cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Fan Fail Cleared." - --#SUMMARY "Fan Fail Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 287 - -aruSmokeAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "SEVERE: Remote ARU Smoke Alarm. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Smoke Alarm." - --#SUMMARY "Smoke Alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 288 - -aruSmokeAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Remote ARU Smoke Alarm Cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Smoke Alarm Cleared." - --#SUMMARY "Smoke Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 289 - -aruHighTemperatureAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "WARNING: ARU Exhaust temperature has exceeded the override - threshold and the ARU has increased fan speed to - maintain a safe environment in the rack. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: High Temperature Alarm." - --#SUMMARY "High Temperature Alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 290 - -aruHighTemperatureAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: ARU temperature override state has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: High Temperature Alarm Cleared." - --#SUMMARY "High Temperature Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 291 - -aruExhaustTemperatureAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "SEVERE: ARU Extreme Exhaust Temperature Alarm. - The ARU is unable to control the temperature within the rack - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Exhaust Temperature Alarm." - --#SUMMARY "Exhaust Temperature Alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 292 - -aruExhaustTemperatureAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Remote ARU Exhaust Temperature Alarm Cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Exhaust Temperature Alarm Cleared." - --#SUMMARY "Exhaust Temperature Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 293 - -envAlinkCommunicationEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Remote Probe Communication Established. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the probe number. - The fourth argument is the probe name." - --#TYPE "APC ENV: Communication Established." - --#SUMMARY "Communication Established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 294 - -envAlinkCommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Remote Probe Communication Lost. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the probe number. - The fourth argument is the probe name." - --#TYPE "APC ENV: Communication Lost." - --#SUMMARY "Communication Lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 295 - -emsAlinkPowerOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "SEVERE: Alink Power Overload. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC EMS: Alink Power Overload." - --#SUMMARY "Alink Power Overload." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 296 - -emsAlinkPowerOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Alink Power Overload Cleared. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC EMS: Alink Power Overload Cleared." - --#SUMMARY "Alink Power Overload Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 297 - -upsOutletGroupTurnedOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { upsOutletGroupControlIndex, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The specified Outlet Group turned on." - --#TYPE "APC UPS: Outlet Group turned on." - --#SUMMARY "Outlet Group turned on" - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 298 - -upsOutletGroupTurnedOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { upsOutletGroupControlIndex, mtrapargsString } - DESCRIPTION - "WARNING: The specified Outlet Group turned off." - --#TYPE "APC UPS: Outlet Group turned off." - --#SUMMARY "Outlet Group turned off." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 299 - -smwCriticalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsGauge, mtrapargsString } - DESCRIPTION - "SEVERE: A Symmetra MW UPS critical condition has been detected. - The first variable is the fault condition." - --#TYPE "APC Symmetra MW UPS: A critical condition has been detected." - --#SUMMARY "A critical condition has been detected." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 300 - -smwCriticalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsGauge, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Symmetra MW UPS critical condition has been cleared. - The first variable is the fault condition." - --#TYPE "APC Symmetra MW UPS: A critical condition has been cleared." - --#SUMMARY "A critical condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 301 - -smwWarningCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsGauge, mtrapargsString } - DESCRIPTION - "WARNING: A Symmetra MW UPS warning condition has been detected. - The first variable is the fault condition." - --#TYPE "APC Symmetra MW UPS: A warning condition has been detected." - --#SUMMARY "A warning condition has been detected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 302 - -smwWarningConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsGauge, mtrapargsString } - DESCRIPTION - "WARNING: A Symmetra MW UPS warning condition has been cleared. - The first variable is the fault condition." - --#TYPE "APC Symmetra MW UPS: A warning condition has been cleared." - --#SUMMARY "A warning condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 303 - -smwInformationalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsGauge, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Symmetra MW UPS informational condition has been detected. - The first variable is the fault condition." - --#TYPE "APC Symmetra MW UPS: Informational condition detected." - --#SUMMARY "An informational condition has been detected." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 304 - -smwInformationalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsGauge, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Symmetra MW UPS informational condition has been cleared. - The first variable is the fault condition." - --#TYPE "APC Symmetra MW UPS: Informational condition cleared." - --#SUMMARY "An informational condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 305 - -airCriticalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: An Air critical condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC Air: A critical condition was detected. " - --#SUMMARY "A critical condition was detected. " - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 306 - -airCriticalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Air critical condition was cleared. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC Air: A critical condition was cleared. " - --#SUMMARY "A critical condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 307 - -airWarningCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: An Air warning condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC Air: A warning condition was detected. " - --#SUMMARY "A warning condition was detected. " - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 308 - -airWarningConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: An Air warning condition was cleared. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC Air: A warning condition was cleared. " - --#SUMMARY "A warning condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 309 - -airInformationalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Air informational condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC Air: Informational condition detected. " - --#SUMMARY "An informational condition was detected. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 310 - -airInformationalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An Air informational condition was cleared. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC Air: Informational condition was cleared. " - --#SUMMARY "An informational condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 311 - --- xPDU Traps (part 1) - -xPDUInputVoltageLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: Three-phase input voltage to the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC XPDU: Main input low voltage alarm." - --#SUMMARY "Input voltage is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 312 - -xPDUInputVoltageLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Three-phase input voltage to the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XPDU: Main input low voltage alarm cleared." - --#SUMMARY "Main input low voltage cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 313 - - -xPDUInputVoltageHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: Three-phase input voltage to the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, above which the alarm was generated." - --#TYPE "APC XPDU: Main input high voltage alarm." - --#SUMMARY "Main input voltage is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 314 - -xPDUInputVoltageHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Three-phase input voltage to the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XPDU: Main input high voltage alarm cleared." - --#SUMMARY "Main input high voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 315 - -xPDUBypassVoltageLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: Three-phase bypass input voltage to the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC XPDU: Bypass input low voltage alarm." - --#SUMMARY "Bypass input voltage is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 316 - -xPDUBypassVoltageLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Three-phase bypass input voltage to the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XPDU: Bypass input low voltage alarm cleared." - --#SUMMARY "Bypass input low voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 317 - -xPDUBypassVoltageHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: Three-phase bypass input voltage to the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, above which the alarm was generated." - --#TYPE "APC XPDU: Bypass input high voltage alarm." - --#SUMMARY "Bypass input voltage is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 318 - -xPDUBypassVoltageHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Three-phase bypass input voltage to the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XPDU: Bypass input high voltage alarm cleared." - --#SUMMARY "Bypass input voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 319 - -xPDUOutputVoltageLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The three-phase output voltage of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC XPDU: Output low voltage alarm." - --#SUMMARY "Output voltage is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 320 - -xPDUOutputVoltageLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The three-phase output voltage of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XPDU: Output low voltage alarm cleared." - --#SUMMARY "Output low voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 321 - -xPDUOutputVoltageHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The three-phase output voltage of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, above which the alarm was generated." - --#TYPE "APC XPDU: Output high voltage alarm." - --#SUMMARY "Output voltage is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 322 - -xPDUOutputVoltageHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The three-phase output voltage of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XPDU: Output high voltage alarm cleared." - --#SUMMARY "Output high voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 323 - -xPDUOutputCurrentLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The three-phase output load current of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in tenths of Amps. - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC XPDU: Output low current alarm." - --#SUMMARY "Output current is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 324 - -xPDUOutputCurrentLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The three-phase output load current of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Output low current alarm cleared." - --#SUMMARY "Output low current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 325 - -xPDUOutputCurrentHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The three-phase load current of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in tenths of Amps. - The fifth argument is the threshold, in tenths of Amps, above which the alarm was generated." - --#TYPE "APC XPDU: Output high current alarm." - --#SUMMARY "Output current is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 326 - -xPDUOutputCurrentHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The three-phase output current of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Output high current alarm cleared." - --#SUMMARY "Output high current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 327 - -xPDUOutputFrequencyAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The devices output frequency is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the frequency deviation from the nominal in tenths of Hertz." - --#TYPE "APC XPDU: Output frequency out-of-range alarm." - --#SUMMARY "Output frequency is out-of-range." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 328 - -xPDUOutputFrequencyAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The devices output frequency is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Output frequency back in range." - --#SUMMARY "Output frequency in range." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 329 - -xPDUSystemGroundCurrentAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "SEVERE: The earth ground current of the device is over the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the measured current in tenths of Amps. - The fourth argument is the threshold, in tenths of Amps, above which the alarm was generated." - --#TYPE "APC XPDU: Earth ground high current alarm." - --#SUMMARY "Earth ground current is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 330 - -xPDUSystemGroundCurrentAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The earth ground current of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Earth ground high current alarm cleared." - --#SUMMARY "Earth ground high current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 331 - -xPDUInputContactStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsString02, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: A user input contact on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the input contact number. - The fourth argument is the input contact name. - The fifth argument is the input contact state (1=OPEN, 2=CLOSED). - The sixth argument is the configured normal input contact state (1=OPEN, 2=CLOSED)." - --#TYPE "APC XPDU: Input contact has changed to its abnormal state." - --#SUMMARY "Input contact has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 332 - -xPDUInputContactStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsString02, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A user input contact on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the input contact number. - The fourth argument is the input contact name. - The fifth argument is the input contact state (1=CLOSED, 2=OPEN). - The sixth argument is the configured normal input contact state (1=OPEN, 2=CLOSED)." - --#TYPE "APC XPDU: Input contact has changed to its normal state." - --#SUMMARY "Input contact has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 333 - -xPDUOutputNeutralCurrentHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "WARNING: The three-phase neutral current of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the measured current in tenths of Amps. - The fourth argument is the threshold, in tenths of Amps, above which the alarm was generated." - --#TYPE "APC XPDU: Output high neutral current alarm." - --#SUMMARY "Output neutral current is above threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 334 - -xPDUOutputNeutralCurrentHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The output neutral current of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Output neutral high current alarm cleared." - --#SUMMARY "Output neutral high current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 335 - -xPDUCoolingFanAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: The device's internal cooling fans have failed. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Cooling fan failure alarm." - --#SUMMARY "Cooling fan failure." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 336 - -xPDUCoolingFanAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's cooling fans are now functioning properly. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Cooling fan alarm cleared." - --#SUMMARY "Cooling fan alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 337 - -xPDUTransformerTempAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: The device's isolation transformer is over temperature. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Isolation transformer over temperature alarm." - --#SUMMARY "Transformer temp alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 338 - -xPDUTransformerTempAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's isolation transformer is no longer over temperature. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Isolation transformer over temperature alarm cleared." - --#SUMMARY "Transformer temp alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 339 - -xPDUBranchCurrentLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: The current in a branch circuit is outside the limits specified for that - branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps. - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC XPDU: Branch circuit low current alarm." - --#SUMMARY "Branch circuit current is below threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 340 - -xPDUBranchCurrentLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a branch circuit is back within the limits - specified for that branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Branch circuit low current alarm cleared." - --#SUMMARY "Branch circuit low current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 341 - -xPDUBranchCurrentHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: The current in a branch circuit is outside the limits specified for that - branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps. - The fifth argument is the threshold, in tenths of Amps, above which the alarm was generated." - --#TYPE "APC XPDU: Branch circuit high current alarm." - --#SUMMARY "Branch circuit current is above threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 342 - -xPDUBranchCurrentHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a branch circuit is back within the limits - specified for that branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Branch circuit high current alarm cleared." - --#SUMMARY "Branch circuit high current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 343 - - -xPDUInternalCommError TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: There is an internal communication error in the device. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Internal communication error." - --#SUMMARY "Internal communication error." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 344 - -emsHardwareStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "SEVERE: The device's hardware is improperly configured and operating outside - normal bounds for the hardware. This can be caused by improper devices being - connected to the EMS ports or Alink Current limit detection." - --#TYPE "APC EMS: Hardware is in an abnormal state." - --#SUMMARY "Hardware is in an abnormal state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 345 - -emsHardwareStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's hardware is in its normal operational state. - The first argument is the host device serial number." - --#TYPE "APC EMS: Hardware is in a normal state." - --#SUMMARY "Hardware is in its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 346 - -ceSevereCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: A Custom Event severe condition was detected. - The first variable is the custom event text message. - The second variable is the custom event number." - --#TYPE "APC Custom Event: A severe condition was detected. " - --#SUMMARY "A severe condition was detected. " - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 347 - -ceSevereConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Custom Event severe condition was cleared. - The first variable is the custom event text message. - The second variable is the custom event number." - --#TYPE "APC Custom Event: A severe condition was cleared. " - --#SUMMARY "A severe condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 348 - -ceWarningCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: A Custom Event warning condition was detected. - The first variable is the custom event text message. - The second variable is the custom event number." - --#TYPE "APC Custom Event: A warning condition was detected. " - --#SUMMARY "A warning condition was detected. " - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 349 - -ceWarningConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Custom Event warning condition was cleared. - The first variable is the custom event text message. - The second variable is the custom event number." - --#TYPE "APC Custom Event: A warning condition was cleared. " - --#SUMMARY "A warning condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 350 - -ceInformationalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Custom Event informational condition was detected. - The first variable is the custom event text message. - The second variable is the custom event number." - --#TYPE "APC Custom Event: Informational condition detected. " - --#SUMMARY "An informational condition was detected. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 351 - -ceInformationalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Custom Event informational condition was cleared. - The first variable is the custom event text message. - The second variable is the custom event number." - --#TYPE "APC Custom Event: Informational condition was cleared. " - --#SUMMARY "An informational condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 352 - -upsInternalOverTemperature TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The internal over temperature condition exists." - --#TYPE "APC UPS: The internal over temperature condition exists." - --#SUMMARY "The internal over temperature condition exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 353 - -upsInternalOverTemperatureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The internal over temperature condition cleared." - --#TYPE "APC UPS: The internal over temperature condition cleared." - --#SUMMARY "The internal over temperature condition cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 354 - -upsMpuReset TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The MPU has been reset." - --#TYPE "APC UPS: The MPU has been reset." - --#SUMMARY "The MPU has been reset." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 355 - -upsOutputSwitchClosed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The Output Switch is closed." - --#TYPE "APC UPS: The Output Switch is closed." - --#SUMMARY "The Output Switch is closed." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 356 - -upsOutputSwitchOpened TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The Output Switch is open." - --#TYPE "APC UPS: The Output Switch is open." - --#SUMMARY "The Output Switch is open." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 357 - -upsCalibrationStackChanged TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A calibration value in the stack was changed." - --#TYPE "APC UPS: A calibration value in the stack was changed." - --#SUMMARY "A calibration value in the stack was changed." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 358 - - --- Upgraded EMS now has more env traps - -envMaxTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Max temperature threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Max temperature threshold violation." - --#SUMMARY "Max temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 359 - -envMaxTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Max temperature threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Max temperature threshold violation cleared." - --#SUMMARY "Max temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 360 - -envMinTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Min temperature threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Min temperature threshold violation." - --#SUMMARY "Min temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 361 - -envMinTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Min temperature threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Min temperature threshold violation cleared." - --#SUMMARY "Min temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 362 - -envMaxHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Max humidity threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: Max humidity threshold violation." - --#SUMMARY "Max humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 363 - -envMaxHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Max humidity threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity. - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: Max humidity threshold violation cleared." - --#SUMMARY "Max humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 364 - -envMinHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Min humidity threshold violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: Min humidity threshold violation." - --#SUMMARY "Min humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 365 - -envMinHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeHumidity, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Min humidity threshold violation cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current humidity. - The fourth argument is the probe number. - The fifth argument is the probe name." - --#TYPE "APC ENV: Min humidity threshold violation cleared." - --#SUMMARY "Min humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 366 - -envSTIncTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Short-term increasing temperature rate violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Short-term inc. temp rate violation." - --#SUMMARY "Short-term inc. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 367 - -envSTIncTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Short-term increasing temperature rate cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Short-term inc. temp rate violation cleared." - --#SUMMARY "Short-term inc. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 368 - -envSTDecTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Short-term decreasing temperature rate violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Short-term dec. temp rate violation." - --#SUMMARY "Short-term dec. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 369 - -envSTDecTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Short-term decreasing temperature rate cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Short-term dec. temp rate violation cleared." - --#SUMMARY "Short-term dec. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 370 - -envLTIncTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Long-term increasing temperature rate violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Long-term inc. temp rate violation." - --#SUMMARY "Long-term inc. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 371 - -envLTIncTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Long-term increasing temperature rate cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Long-term inc. temp rate violation cleared." - --#SUMMARY "Long-term inc. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 372 - -envLTDecTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "SEVERE: Long-term decreasing temperature rate violated on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Long-term dec. temp rate violation." - --#SUMMARY "Long-term dec. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 373 - -envLTDecTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, emsProbeStatusProbeTemperature, emsStatusSysTempUnits, - emsProbeStatusProbeIndex, emsProbeStatusProbeName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Long-term decreasing temperature rate cleared on the probe. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the current temperature. - The fourth argument is the temperature scale. - The fifth argument is the probe number. - The sixth argument is the probe name." - --#TYPE "APC ENV: Long-term dec. temp rate violation cleared." - --#SUMMARY "Long-term dec. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 374 - --- Battery Management System Traps - -bmsCriticalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: A Battery Management System critical condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC BMS: A critical condition was detected. " - --#SUMMARY "A critical condition was detected. " - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 375 - -bmsCriticalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Battery Management System critical condition was cleared. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC BMS: A critical condition was cleared. " - --#SUMMARY "A critical condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 376 - -bmsWarningCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: A Battery Management System warning condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC BMS: A warning condition was detected. " - --#SUMMARY "A warning condition was detected. " - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 377 - -bmsWarningConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: A Battery Management System warning condition was cleared. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC BMS: A warning condition was cleared. " - --#SUMMARY "A warning condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 378 - -bmsInformationalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Battery Management System informational condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC BMS: Informational condition detected. " - --#SUMMARY "An informational condition was detected. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 379 - -bmsInformationalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A Battery Management System informational condition was cleared. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "APC BMS: Informational condition was cleared. " - --#SUMMARY "An informational condition was cleared. " - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 380 - --- xATS Traps - -xATSOutputVoltageLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The device three-phase output voltage of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC XATS: Output low voltage alarm." - --#SUMMARY "Output voltage is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 381 - -xATSOutputVoltageLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The devices three-phase output voltage is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XATS: Output low voltage alarm cleared." - --#SUMMARY "Output low voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 382 - -xATSOutputVoltageHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The device three-phase output voltage of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts. - The fifth argument is the threshold, in tenths of Volts, above which the alarm is generated." - --#TYPE "APC XATS: Output high voltage alarm." - --#SUMMARY "Output voltage is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 383 - -xATSOutputVoltageHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The devices three-phase output voltage is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1-N, 2=L2-N, 3=L3-N, 4=unused, 5=L1-L2, 6=L2-L3, 7=L3-L1). - The fourth argument is the measured voltage in tenths of Volts." - --#TYPE "APC XATS: Output high voltage alarm cleared." - --#SUMMARY "Output high voltage alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 384 - -xATSOutputCurrentLowAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The three-phase load current of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in Amps. - The fifth argument is the threshold, in Amps, from which the alarm was generated." - --#TYPE "APC XATS: Output low current alarm." - --#SUMMARY "Output current is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 385 - -xATSOutputCurrentLowAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The three-phase load current of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in Amps." - --#TYPE "APC XATS: Output low current alarm cleared." - --#SUMMARY "Output low current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 386 - -xATSOutputCurrentHighAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The three-phase output load current of the device is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in Amps. - The fifth argument is the threshold, in Amps, from which the alarm was generated." - --#TYPE "APC XATS: Output high current alarm." - --#SUMMARY "Output current is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 387 - -xATSOutputCurrentHighAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The three-phase output load current of the device is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3). - The fourth argument is the measured current in Amps." - --#TYPE "APC XATS: Output high current alarm cleared." - --#SUMMARY "Output high current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 388 - - -xATSOutputFrequencyAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "SEVERE: The devices output frequency is outside the specified limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the frequency deviation from the nominal in tenths of Hertz. - The fourth argument is the frequency deviation threshold in tenths of Hertz, - from which the alarm was generated." - --#TYPE "APC XATS: Output frequency out-of-range alarm." - --#SUMMARY "Output frequency is out-of-range." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 389 - -xATSOutputFrequencyAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The devices output frequency is back within the specified limits. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Output frequency back in range." - --#SUMMARY "Output frequency in range." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 390 - -xATSInternalCommError TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: There is an internal communication error in the device. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Internal communication error." - --#SUMMARY "Internal communication error." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 391 - -xATSInternalCommErrorCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Internal communication has been restored. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Internal Communication error cleared." - --#SUMMARY "ATS Communication error cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 392 - -xATSDataCommMismatchError TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: A data incompatibility exists within the device. This - is typically the result of mismatches between firmware revisions - of the transfer switch controller and the Network Management interface. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Data mismatch error." - --#SUMMARY "ATS data mismatch error." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 393 - -xATSDataCommMismatchErrorCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The internal data incompatibility has been resolved. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: data mismatch error cleared." - --#SUMMARY "ATS data mismatch error cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 394 - -xATSGenCommLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The XATS cannot communicate with the generator. - This will make unavailable all the xATSGenerator OIDs. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: No communication with generator." - --#SUMMARY "ATS/Generator communication lost." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 395 - -xATSGenCommEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The XATS has established communication with the generator. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Communication with generator established." - --#SUMMARY "ATS/generator communication established." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 396 - -xATSNeutralPosition TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "WARNING: XATS has transferred to neutral position. - In this position neither Source 1 nor Source 2 is selected, - and the XATS will have no output voltage. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the mode in which the switch is operating - (1=Auto, 2=Not-in-Auto, Abnormal Condition 3=Not-in-Auto, manual)." - --#TYPE "APC XATS: Transferred to the neutral (no output power) position." - --#SUMMARY "Transferred to neutral." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 397 - -xATSSwitchTransferEvent TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: XATS has transferred from one source to the other. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the mode in which the switch is operating. - (1=Auto, 2=Not-in-Auto, Abnormal Condition 3=Not-in-Auto, manual). - The fourth argument is the input source selected (1=Source 1, 2=Source 2). - The fifth argument is type of transfer that took place. (1=Closed, 2=Open, 3=Unknown)" - --#TYPE "APC XATS: Transferred from Source-X to Source-Y." - --#SUMMARY "Source-to-Source transfer." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 398 - -xATSInternalATSFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: An internal XATS fault has been detected. - The XATS may have forced itself to not-in-auto mode (abnormal condition), - as indicated by the xATSSwitchStatusAutoSwitchOperationalMode OID. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument indicates the detected fault. - - 1=Cannot Close S1 - 2=Cannot Close S2 - 3=Cannot Open S1 - 4=Cannot Open S2 - 5=Cannot Trip Open S1 - 6=Cannot Trip Open S2 - 7=Start Contact Failure - 8=Voltage Sensing Failure" - - --#TYPE "APC XATS: Internal fault detected." - --#SUMMARY "ATS internal fault detected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 399 - -xATSInternalATSFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected internal XATS fault has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument indicates the detected fault. - - 1=Cannot Close S1 - 2=Cannot Close S2 - 3=Cannot Open S1 - 4=Cannot Open S2 - 5=Cannot Trip Open S1 - 6=Cannot Trip Open S2 - 7=Start Contact Failure - 8=Voltage Sensing Failure" - - --#TYPE "APC XATS: Internal fault cleared." - --#SUMMARY "ATS internal fault cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 400 - -xATSEngineStartAsserted TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The XATS has asserted the Engine Start contact. - This should result in the generator producing output voltage. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument indicates the reason that the start signal was asserted - 1=Unknown, 2=S1 Low Voltage, 3=S1 High Voltage, 4=S1 Line Imbalance, - 5=S1 Freq Range, 6=S1 Bad Rotation." - --#TYPE "APC XATS: Engine Start signal asserted." - --#SUMMARY "Engine Start asserted." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 401 - -xATSEngineStopAsserted TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The XATS has de-asserted the Engine Start contact. - This should result in the generator shutting down, and producing no output voltage. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Engine Stop signal asserted." - --#SUMMARY "Engine Stop asserted." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 402 - -xATSStartFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator failed to start. After assertion of the - Engine Start signal, the quality of Source 2 was not seen as good. - This alarm can be cleared using the xATSSwitchStatusClearLatchedAlarms OID. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument indicates the line quality at S2 - 1=Unknown, 2=S2 Low Voltage, 3=S2 High Voltage, 4=S2 Line Imbalance, - 4=S2 Freq Range, 5=S2 Bad Rotation." - --#TYPE "APC XATS: Generator failed to start alarm." - --#SUMMARY "Generator failed to start." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 403 - -xATSStopFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The generator failed to stop. After de-assertion of the - Engine Start signal, the quality of Source 2 continued to be seen as good. - This alarm can be cleared using the xATSSwitchStatusClearLatchedAlarms OID. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Generator failed to stop alarm." - --#SUMMARY "Generator failed to stop." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 404 - -xATSNotInAutomaticMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: Automatic Transfer Switch is not in automatic mode. - The first argument is the host device serial number. - The second argument is the host device name. - The xATSSwitchStatusAutoSwitchStatus OID and the - xATSSwitchStatusAutoSwitchOperationalMode OID - can provide more information about the state of the XATS." - --#TYPE "APC XATS: XATS is not-in-automatic mode." - --#SUMMARY "ATS not in auto." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 405 - -xATSNotInAutomaticModeCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Automatic Transfer Switch is in automatic mode. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: XATS in auto mode." - --#SUMMARY "ATS in auto mode." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 406 - -xATSEpoTripped TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: The device's Emergency Power Off (EPO) circuit is tripped. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Emergency Power Off (EPO) tripped." - --#SUMMARY "EPO tripped." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 407 - -xATSEpoReset TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's Emergency Power Off (EPO) circuit has been - reset to the armed position. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Emergency Power Off (EPO) reset." - --#SUMMARY "EPO armed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 408 - -xATSEpoTestMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The device's Emergency Power Off (EPO) circuit has been - switched back to the test position. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Emergency Power Off (EPO) in test mode." - --#SUMMARY "EPO disabled." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 409 - -xATSEpoArmed TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's Emergency Power Off (EPO) circuit has been - switched back to the armed position. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Emergency Power Off (EPO) enabled." - --#SUMMARY "EPO armed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 410 - -xATSTestInitiated TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A scheduled test has been initiated. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the type of test initiated (1=scheduled, 2=manual)." - --#TYPE "APC XATS: Test initiated." - --#SUMMARY "Test initiated." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 411 - -xATSTestCanceled TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The scheduled test has been canceled - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the type of test initiated (1=scheduled, 2=manual)." - --#TYPE "APC XATS: Test canceled." - --#SUMMARY "Test canceled." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 412 - -xATSTestFailed TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: The initiated test has failed. - This alarm can be cleared using the xATSSwitchStatusClearLatchedAlarms OID. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Initiated test failed." - --#SUMMARY "Initiated test failed." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 413 - -xATSTestPassed TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The initiated test has passed - switched back to the armed position. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Initiated test passed." - --#SUMMARY "Initiated test passed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 414 - -xATSInputContactStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsString02, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: A user input contact on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the input contact number. - The fourth argument is the input contact name. - The fifth argument is the input contact state (1=OPEN, 2=CLOSED). - The sixth argument is the configured normal input contact state (1=OPEN, 2=CLOSED)." - --#TYPE "APC XATS: Input contact has changed to its abnormal state." - --#SUMMARY "Input contact has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 415 - -xATSInputContactStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsString02, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A user input contact on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the input contact number. - The fourth argument is the input contact name. - The fifth argument is the input contact state (1=OPEN, 2=CLOSED). - The sixth argument is the configured normal input contact state (1=OPEN, 2=CLOSED)." - --#TYPE "APC XATS: Input contact has changed to its normal state." - --#SUMMARY "Input contact has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 416 - -xATSRemoteStartContactMismatch TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: The state of the generator's Remote Start input - and the ATS's Engine Start output do not match. - This indicates something wrong in the Engine Start wiring, - which must be corrected. This condition will prevent the - generator from being started when needed. - - (See also: xATSGeneratorStatusRemoteStart - and xATSSwitchStatusEngineStartSignal OIDs) - - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Generator/ATS start contact mismatch." - --#SUMMARY "Generator/ATS start contact mismatch." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 417 - -xATSRemoteStartContactMismatchCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Mismatch in the state of the generator's - Remote Start input and the ATS's Engine Start output as been resolved. - This indicates something wrong in the Engine Start wiring, - which must be corrected. This condition will prevent the - generator from being started when needed. - - (See also: xATSGeneratorStatusRemoteStart - and xATSSwitchStatusEngineStartSignal OIDs) - - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Generator/ATS start contact mismatch cleared." - --#SUMMARY "Generator/ATS start contact mismatch cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 418 - -xATSDoorOpenAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The XATS exterior panel door is open. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Panel door is open alarm." - --#SUMMARY "Panel door open alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 419 - -xATSDoorOpenAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The external door to the device is closed. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Panel door open alarm cleared." - --#SUMMARY "Panel door open alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 420 - -xATSDCBackupAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The XATS's DC backup has been lost. The XATS will lose power - on Source 1 failure, causing the Engine Start signal to be asserted. - The XATS will then restart from Source 2. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: DC backup failure." - --#SUMMARY "ATS DC backup failure." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 421 - -xATSDCBackupAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: DC backup alarm has been cleared in the device. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: DC backup alarm cleared." - --#SUMMARY "DC backup alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 422 - --- xATS Generator Traps - -xATSGeneratorLowCoolantLevelAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Low coolant level has been detected in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low coolant level alarm." - --#SUMMARY "Generator low coolant level alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 423 - -xATSGeneratorLowCoolantLevelAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected low coolant level has been cleared in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low coolant level alarm cleared." - --#SUMMARY "Generator low coolant level alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 424 - -xATSGeneratorVeryLowCoolantLevelAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Very low coolant level has been detected in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator very low coolant level alarm." - --#SUMMARY "Generator very low coolant level alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 425 - -xATSGeneratorVeryLowCoolantLevelAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected Very low coolant level has been cleared in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator very low coolant level alarm cleared." - --#SUMMARY "Generator very low coolant level alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 426 - -xATSGeneratorHighCoolantTempAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: High coolant temperature has been detected in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator high coolant temperature alarm." - --#SUMMARY "Generator high coolant temperature alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 427 - -xATSGeneratorHighCoolantTempAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected high coolant temperature has been cleared in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator high coolant temperature alarm cleared." - --#SUMMARY "Generator high coolant temperature alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 428 - -xATSGeneratorVeryHighCoolantTempAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Very high coolant temperature has been detected in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator very high coolant temperature alarm." - --#SUMMARY "Generator very high coolant temperature alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 429 - -xATSGeneratorVeryHighCoolantTempAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The Very high coolant temperature condition has been cleared in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator very high coolant temperature alarm cleared." - --#SUMMARY "Generator very high coolant temperature alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 430 - -xATSGeneratorLowCoolantTempAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Low coolant temperature has been detected in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low coolant temperature alarm." - --#SUMMARY "Generator low coolant temperature alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 431 - -xATSGeneratorLowCoolantTempAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The low coolant temperature condition has been cleared in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low coolant temperature alarm cleared." - --#SUMMARY "Generator low coolant temperature alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 432 - -xATSGeneratorLowOilLevelAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Low oil level has been detected in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low oil level alarm." - --#SUMMARY "Generator low oil level alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 433 - -xATSGeneratorLowOilLevelAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low oil level alarm has been cleared in the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low oil level alarm cleared." - --#SUMMARY "Generator low oil level alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 434 - -xATSGeneratorLowBatteryVoltDuringCrankAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator's battery voltage has been detected - as low while cranking the engine. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Low batt. voltage while cranking alarm." - --#SUMMARY "Generator low battery volts while cranking alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 435 - -xATSGeneratorLowBatteryVoltDuringCrankAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator's low battery voltage while - cranking condition has been cleared. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "XGEN: Generator low batt. voltage while cranking alarm cleared." - --#SUMMARY "Generator low battery volts while cranking alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 436 - -xATSGeneratorVeryLowBatteryVoltDuringCrankAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator's battery voltage has been detected - as very low while cranking the engine. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "XGEN: Generator v.low battery voltage while cranking alarm." - --#SUMMARY "Generator v.low battery volts while cranking alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 437 - -xATSGeneratorVeryLowBatteryVoltDuringCrankAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator's high battery voltage while - cranking condition has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "XGEN: Generator v.low batt volt, while cranking alarm cleared." - --#SUMMARY "Generator v.low battery volts while cranking alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 438 - -xATSGeneratorEStop TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "SEVERE: The generator's emergency stop input has been activated. - After the emergency stop signal has been removed, the E-Stop condition - must be cleared before the generator can be started again. - E-Stop conditions can only be cleared via the generator front panel. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code. - The fourth argument is the type of E-Stop (1=LOCAL, 2=REMOTE)." - --#TYPE "APC XGEN: Generator emergency stop engaged." - --#SUMMARY "Generator emergency stop engaged." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 439 - -xATSGeneratorEStopCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator's emergency stop condition has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code. - The fourth argument is the type of E-Stop (1=LOCAL, 2=REMOTE)." - --#TYPE "APC XGEN: Generator emergency stop condition cleared." - --#SUMMARY "Generator emergency stop condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 440 - -xATSGeneratorHighBatteryVolt TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: The generator's battery voltage has been detected as high. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator high battery voltage." - --#SUMMARY "Generator high battery volts." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 441 - -xATSGeneratorHighBatteryVoltCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected high battery voltage has been cleared, on the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator high battery voltage condition cleared." - --#SUMMARY "Generator high battery volts condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 442 - -xATSGeneratorLowBatteryVolt TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator's battery voltage has been detected as low. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low battery voltage." - --#SUMMARY "Generator low battery volts." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 443 - -xATSGeneratorLowBatteryVoltCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected low battery voltage has been cleared, on the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low battery voltage condition cleared." - --#SUMMARY "Generator low battery volts condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 444 - -xATSGeneratorControlSwitchNotAuto TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The control switch on the generator is not in auto position. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator not-in-automatic mode." - --#SUMMARY "Generator not-in-auto." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 445 - -xATSGeneratorControlSwitchNotAutoCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The control switch on the generator is in auto position. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator automatic mode restored." - --#SUMMARY "Generator not-in-auto cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 446 - -xATSGeneratorLowOilPressure TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator's oil pressure has been detected as low. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low oil pressure." - --#SUMMARY "Generator low oil pressure." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 447 - -xATSGeneratorLowOilPressureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected low oil pressure has been cleared, on the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator low oil pressure condition cleared." - --#SUMMARY "Generator low oil pressure condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 448 - -xATSGeneratorVeryLowOilPressure TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator's oil pressure has been detected as very low. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator v.low oil pressure." - --#SUMMARY "Generator v.low oil pressure." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 449 - -xATSGeneratorVeryLowOilPressureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected v.low oil pressure has been cleared, on the generator. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator v.low oil pressure condition cleared." - --#SUMMARY "Generator v.low oil pressure condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 450 - -xATSGeneratorOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator is overloaded. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator is in overload event." - --#SUMMARY "Generator on overload event." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 451 - -xATSGeneratorOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator is running within loading limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator is in overload event cleared." - --#SUMMARY "Generator on overload event cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 452 - -xATSGeneratorLowACVEvent TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator AC voltage is outside the acceptable bounds. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: State of the Generator AC voltage." - --#SUMMARY " State of the Generator AC voltage." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 453 - -xATSGeneratorLowACVEventCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator AC voltage is within normal bounds. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: State of the Generator AC voltage cleared." - --#SUMMARY "State of the Generator AC voltage cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 454 - -xATSGeneratorHighACVEvent TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator AC voltage is outside the acceptable bounds. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: State of the Generator AC voltage." - --#SUMMARY " State of the Generator AC voltage." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 455 - -xATSGeneratorHighACVEventCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator AC voltage is within normal bounds. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: State of the Generator AC voltage cleared." - --#SUMMARY "State of the Generator AC voltage cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 456 - -xATSGeneratorOverspeed TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator is running over the acceptable RPM. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator overspeed condition." - --#SUMMARY "Generator overspeed condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 457 - -xATSGeneratorOverspeedCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator overspeed shutdown has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator overspeed condition cleared." - --#SUMMARY "Generator overspeed condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 458 - -xATSGeneratorEngineCold TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator engine is cold, may not start. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator engine is cold, may not start." - --#SUMMARY "Generator engine is cold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 459 - -xATSGeneratorEngineColdCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The engine is not cold to start. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Engine is cold to start condition cleared." - --#SUMMARY "Engine is cold to start condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 460 - -xATSGeneratorOutputBreakerOpen TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generators output breaker has been detected as open. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator output breaker open alarm." - --#SUMMARY "Generator output breaker open." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 461 - -xATSGeneratorOutputBreakerOpenCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The engine is not cold to start. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator output breaker open alarm cleared." - --#SUMMARY "Generator output breaker open cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 462 - -xATSGeneratorLowFuelLevelAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: The tank fuel level is below the limits specified - in the xATSGeneratorFuelSystemLowFuelLevelThreshold OID. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the measured fuel level in percent of full." - --#TYPE "APC XGEN: Low fuel level alarm." - --#SUMMARY "Generator low fuel level alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 463 - -xATSGeneratorLowFuelLevelAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The tank fuel level is back above the specified limit. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XGEN: Low fuel level alarm cleared." - --#SUMMARY "Generator low fuel level alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 464 - -xATSGeneratorVeryLowFuelLevelAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The tank fuel level is below the low threshold limits. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the measured tank fuel level in percent of full." - --#TYPE "APC XGEN: Very Low fuel level alarm." - --#SUMMARY "Generator very low fuel level alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 465 - -xATSGeneratorVeryLowFuelLevelAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected low tank level has been cleared in the device. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XGEN: Very low fuel level alarm cleared." - --#SUMMARY "Generator very low fuel level alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 466 - -xATSGeneratorLowRunTimeAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: The estimated runtime is below the limits specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the estimated runtime in hours." - --#TYPE "APC XGEN: Low run time alarm." - --#SUMMARY "Generator low run time alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 467 - -xATSGeneratorLowRunTimeAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected low runtime has been cleared in the device. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XGEN: Low run time alarm cleared." - --#SUMMARY "Generator low run time alarm." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 468 - -xATSGeneratorVeryLowRunTimeAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The estimated runtime is below the limits specified - in the xATSGeneratorFuelSystemVeryLowRunTimeThreshold OID. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the estimated runtime in hours." - --#TYPE "APC XGEN: Very low run time alarm." - --#SUMMARY "Generator very low run time alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 469 - -xATSGeneratorVeryLowRunTimeAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The detected low runtime has been cleared in the device. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XGEN: Very low run time alarm cleared." - --#SUMMARY "Generator very low run time alarm." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 470 - -xATSGeneratorServiceDueAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The generator is due for scheduled service. - Generation of this alarm is based on calendar days since - and/or actual generator run-hours since last service. - This alarm is cleared using the xATSGeneratorServiceResetRecord OID. - - (See also: xATSGeneratorServiceCalendarIntervalThreshold - and xATSGeneratorServiceRunHoursThreshold OIDs) - - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Generator scheduled maintenance is due." - --#SUMMARY "Generator maintenance due." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 471 - -xATSGeneratorServiceDueAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator's service registers have been reset. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: Generator service due alarm is cleared." - --#SUMMARY "Generator service alarm is cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 472 - -xATSGeneratorShutdown TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator is shutdown. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator shutdown." - --#SUMMARY "Generator shutdown" - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 473 - -xATSGeneratorShutdownCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The generator shutdown alarm is cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator shutdown is cleared." - --#SUMMARY "Generator shutdown is cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 474 - -xATSGeneratorBatteryCharger TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The generator battery charger is nonfunctional. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator batt. charger is nonfunctional." - --#SUMMARY "Generator battery charger is nonfunctional" - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 475 - -xATSGeneratorBatteryChargerCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Fault in the generator battery charger is cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Fault in the generator battery charger is cleared." - --#SUMMARY "Fault in the generator battery charger is cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 476 - -xATSGeneratorGenericEvent TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Any generic generator event. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator generic event." - --#SUMMARY "Generator generic event." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 477 - -xATSGeneratorGenericEventCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Generated generic generator event is cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generic generator event is cleared." - --#SUMMARY "Generic generator event is cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 478 - --- xPDU Traps (part 2) - -xPDUInternalCommErrorCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Internal communication has been restored. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Internal Communication error cleared." - --#SUMMARY "Communication error cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 479 - - -xPDUSystemStateAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The PDU's breakers (Q1, Q2 & Q3) are in a configuration that might lead - to system unavailability. it may signify a temporary condition, when the breakers - are placed in an atypical manner as the user transitions to (UPS OPERATION or MAINTENANCE BYPASS) - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the type of state change (1=NO UPS INPUT, 2=NO PANEL FEED, 3=ATYPICAL BYPASS MODE). - note: The NO_PANEL_FEED alarm is applicable only for PDUs with system bypass." - --#TYPE "APC XPDU: System state change alarm." - --#SUMMARY "PDU state change alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 480 - -xPDUSystemStateAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The PDU's breakers (Q1, Q2 & Q3) are set in a configuration - that is a non-alarm state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the type of state change (1=NO UPS INPUT, 2=NO PANEL FEED, 3=ATYPICAL BYPASS MODE). - note: The NO_PANEL_FEED alarm is applicable only for PDUs with system bypass." - --#TYPE "APC XPDU: Normal system state change." - --#SUMMARY "PDU normal state change." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 481 - -xPDUEpoTestMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The device's Emergency Power Off (EPO) circuit has been - switched back to the test position. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Emergency Power Off (EPO) in test mode." - --#SUMMARY "EPO disabled." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 482 - -xPDUEpoArmed TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's Emergency Power Off (EPO) circuit has been - switched back to the armed position. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Emergency Power Off (EPO) enabled." - --#SUMMARY "EPO armed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 483 - -xPDUFuseBlownAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: One or more fuses in this PDU have been detected as open. - These fuses are in the feed to the UPS associated with this PDU. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3)." - --#TYPE "APC XPDU: Check fuse alarm." - --#SUMMARY "Fuse detected opened." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 484 - -xPDUFuseBlownAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A previous check fuse alarm in this PDU has cleared. - These fuses are in the feed to the UPS associated with this PDU. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase (1=L1, 2=L2, 3=L3)." - --#TYPE "APC XPDU: Check fuse alarm cleared." - --#SUMMARY "Fuse alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 485 - -xPDUBreakerPositionAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, - mtrapargsInteger, mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "SEVERE: A PDU breaker is in a state that compromises system availability. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the breaker (1=MAIN INPUT, 2=BYPASS INPUT, 3=CROSS TIE, 4=OUTPUT). - note: The OUTPUT breaker position alarm is applicable only for PDUs with no system bypass. - The fourth argument is the breaker position (1=OPEN, 2=CLOSED)." - --#TYPE "APC XPDU: Breaker position alarm." - --#SUMMARY "Breaker position alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 486 - -xPDUBreakerPositionAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A PDU breaker is no longer in a state that compromises system availability. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the breaker (1=MAIN INPUT, 2=BYPASS INPUT, 3=CROSS TIE, 4=OUTPUT). - note: The OUTPUT breaker position alarm cleared is applicable only for PDUs with no system bypass." - --#TYPE "APC XPDU: Breaker position alarm cleared." - --#SUMMARY "Breaker alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 487 - -xPDUBreakerChangeEvent TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A system breaker or switch within the device has changed state. - They are generated when any of the Q1, Q2 or Q3 breakers have changed states. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the breaker that has changed - (1=UPS FEED (Q1), 2=UPS OUTPUT(Q2), 3=MAINTENANCE BYPASS (Q3). - The fourth argument is the state of the breaker that has changed (1=OPEN, 2=CLOSED). - The fifth argument is a 8-bit field representing the state of all breakers in the system, - when any of one of the Q1, Q2 or Q3 breakers have changed state. - - The bit map is represented in the following manner (b7, b6 ... b0) - b0 - UPS FEED (Q1) - b1 - MAINTENANCE BYPASS (Q3) - b2 - UPS OUTPUT (Q2) - b3 - MAIN INPUT - b4 - BYPASS INPUT - b5 - CROSS-TIE OUTPUT - - Example: value of 60 (0x3C) indicates that the CROSS_TIE, BYPASS and MAIN INPUT, and Q2 breakers - are CLOSED and Q3, Q1 breakers are OPEN." - --#TYPE "APC XPDU: Breaker/switch change event." - --#SUMMARY "Breaker/switch change event." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 488 - -xPDUDataCommMismatchError TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: A data incompatibility exists within the device. This - is typically the result of mismatches between firmware revisions - of the transfer switch controller and the Network Management interface. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: Data mismatch error." - --#SUMMARY "XPDU data mismatch error." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 489 - -xPDUDataCommMismatchErrorCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The internal data incompatibility has been resolved. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: data mismatch error cleared." - --#SUMMARY "XPDU data mismatch error cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 490 - -xPDUSystemInMaintenanceBypassMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "WARNING: The PDU state has changed to maintenance bypass mode. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: System state changed to maintenance bypass." - --#SUMMARY "PDU state changed to maintenance bypass." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 491 - -xPDUSystemInUPSOperationalMode TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The PDU state has changed to UPS operational mode. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XPDU: System state changed to UPS operational." - --#SUMMARY "PDU state changed to UPS operational." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 492 - -xATSGeneratorFuelTankRuptureAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Detected a rupture in the inner wall of the generator fuel tank. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator inner wall rupture alarm." - --#SUMMARY "Generator inner wall rupture alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 493 - -xATSGeneratorFuelTankRuptureAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The rupture in the inner wall of the generator is not detected. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator inner wall rupture alarm cleared." - --#SUMMARY "Generator inner wall rupture alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 494 - -xATSGeneratorGroundFaultAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Generator ground fault alarm. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator ground fault alarm." - --#SUMMARY "Generator ground fault alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 495 - -xATSGeneratorGroundFaultAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Generator ground fault alarm cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the OEM's fault/event code." - --#TYPE "APC XGEN: Generator ground fault alarm cleared." - --#SUMMARY "Generator ground fault alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 496 - -xATSOutputLoadPoweredByGeneratorAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: The system load on the output of the ATS is being powered by source 2 (generator). - The first argument is the host device serial number. - The second argument is the host device name. - The third argument indicates if the load is powered by the generator, - when 'load testing' the generator (1 = LIVE, 2 = TEST)." - --#TYPE "APC XATS: System load powered by generator alarm." - --#SUMMARY "System load powered by generator." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 497 - -xATSOutputLoadPoweredByGeneratorAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The system load on the output of the ATS is no longer being powered by source 2 (generator). - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: System load powered by generator alarm cleared." - --#SUMMARY "System load powered by generator alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 498 - -xAPCControllerFirmwareUpdateTransferStart TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString05, mtrapargsString04, mtrapargsString02, mtrapargsString03, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Start controller firmware transfer in the device. - The first argument is the host device serial number. - The second argument is the host model name that initiated the transfer. - The third argument is the name of the file that is transferred. - The fourth argument is the updated revision of the file, if available - The fifth argument is the reason for the update, if available - (1=User request, 2=Automatic upgrade by NMC, 3=Unknown)." - --#TYPE "APC: Start update transfer." - --#SUMMARY "Start update transfer." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 499 - -xAPCControllerFirmwareUpdateTransferComplete TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString05, mtrapargsString04, mtrapargsString02, - mtrapargsString03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Transfer of controller firmware was completed in the device. - The first argument is the host device serial number. - The second argument is the host device model name that completed the transfer. - The third argument is the name of the file that was transferred. - The fourth argument is the revision of the file that was transferred, if available." - --#TYPE "APC : Update transfer complete." - --#SUMMARY "Update transfer complete." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 500 - - -xAPCControllerFirmwareUpdateTransferFailed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString05, mtrapargsString04, mtrapargsString02, - mtrapargsString03, mtrapargsString } - DESCRIPTION - "SEVERE: Transfer of controller firmware failed. - The first argument is the host device serial number. - The second argument is the host device model name that failed to transfer. - The third argument is the name of the file that failed the transfer, if available. - The fourth argument is the reason for failure." - --#TYPE "APC: Update transfer failed." - --#SUMMARY "Update transfer failed." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 501 - -upsPfcInputRelayFailure TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The PFC (Power Factor Correction) input relay failure exists." - --#TYPE "APC UPS: The PFC input relay failure exists." - --#SUMMARY "The PFC (Power Factor Correction) input relay failure exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 502 - -upsPfcInputRelayFailureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The PFC (Power Factor Correction) input relay failure cleared." - --#TYPE "APC UPS: The PFC input relay failure cleared." - --#SUMMARY "The PFC (Power Factor Correction) input relay failure cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 503 - -upsInverterOverTemperature TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The inverter over temperature condition exists." - --#TYPE "APC UPS: The inverter over temperature condition exists." - --#SUMMARY "The inverter over temperature condition exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 504 - -upsInverterOverTemperatureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The inverter over temperature condition cleared." - --#TYPE "APC UPS: The inverter over temperature condition cleared." - --#SUMMARY "The inverter over temperature condition cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 505 - -upsBatteryOverVoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The battery over voltage condition exists." - --#TYPE "APC UPS: The battery over voltage condition exists." - --#SUMMARY "The battery over voltage condition exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 506 - -upsBatteryOverVoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The battery over voltage condition cleared." - --#TYPE "APC UPS: The battery over voltage condition cleared." - --#SUMMARY "The battery over voltage condition cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 507 - -upsEepromFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The EEPROM fault exists." - --#TYPE "APC UPS: The EEPROM fault exists." - --#SUMMARY "The EEPROM fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 508 - -upsEepromFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The EEPROM fault cleared." - --#TYPE "APC UPS: The EEPROM fault cleared." - --#SUMMARY "The EEPROM fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 509 - --- rARU Traps (part 2) - -aruFanRuntimeAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: The total running hours for a fan has exceeded - the run hour threshold. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name. - The fifth argument indicates which fan in the ARU." - --#TYPE "APC ARU: Fan Runhour Warning." - --#SUMMARY "Fan Runhour Alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 510 - -aruFanRuntimeAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The total running hours for a fan is no longer - above the fan runhour threshold. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name. - The fifth argument indicates which fan in the ARU." - --#TYPE "APC ARU: Fan Runhour Alarm Cleared." - --#SUMMARY "Fan Runhour Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 511 - - -aruFanPoorPerformanceAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: Poor fan performance has been detected in the ARU, - indicating that the fan may be close to failing. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name. - The fifth argument indicates which fan in the ARU." - --#TYPE "APC ARU: Poor Fan Performance Warning." - --#SUMMARY "Fan Health Alarm." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 512 - -aruFanPoorPerformanceAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Fan performance is no longer degraded. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name. - The fifth argument indicates which fan in the ARU." - --#TYPE "APC ARU: Poor Fan Performance Warning Cleared." - --#SUMMARY "Fan Health Alarm Cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 513 - -aruRedundantPowerLostAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "WARNING: One of the redundant line cords on the ARU is no longer receiving AC power. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Redundant AC Input is not Present." - --#SUMMARY "AC Redundancy Lost." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 514 - -aruRedundantPowerLostAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { emsIdentSerialNumber, emsIdentEMSName, - rARUStatusAruIndex, rARUStatusAruName, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Line-cord redundancy has been restored to the ARU. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the ARU number. - The fourth argument is the ARU name." - --#TYPE "APC ARU: Redundant AC Input is Present." - --#SUMMARY "AC Redundancy Restored." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 515 - -apcDeviceConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A device configuration change has been made on the device. - The first argument is the device serial number. - The second argument is the device name. - The third argument is a secondary device id number." - --#TYPE "APC: A device configuration change on a device." - --#SUMMARY "A device configuration change has been made on a device." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 516 - -apcEnvSensorConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A sensor has been connected to the host device. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Sensor Connected." - --#SUMMARY "Sensor Connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 517 - -apcEnvSensorDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: A sensor has been disconnected from the device. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Sensor Disconnected." - --#SUMMARY "Sensor Disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 518 - -apcEnvMaxTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Max temperature threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Max temperature threshold violation." - --#SUMMARY "Max temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 519 - -apcEnvMaxTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Max temperature threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Max temperature threshold violation cleared." - --#SUMMARY "Max temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 520 - -apcEnvHighTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: High temperature threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: High temperature threshold violation." - --#SUMMARY "High temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 521 - -apcEnvHighTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High temperature threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: High temperature threshold violation cleared." - --#SUMMARY "High temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 522 - -apcEnvLowTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: Low temperature threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Low temperature threshold violation." - --#SUMMARY "Low temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 523 - -apcEnvLowTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low temperature threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Low temperature threshold violation cleared." - --#SUMMARY "Low temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 524 - -apcEnvMinTempThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Min temperature threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Min temperature threshold violation." - --#SUMMARY "Min temperature threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 525 - -apcEnvMinTempThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Min temperature threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The sixth argument is the sensor number. - The seventh argument is the sensor name." - --#TYPE "APC ENV: Min temperature threshold violation cleared." - --#SUMMARY "Min temperature threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 526 - -apcEnvSTIncTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Short-term increasing temperature rate violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Short-term inc. temp rate violation." - --#SUMMARY "Short-term inc. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 527 - -apcEnvSTIncTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Short-term increasing temperature rate cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Short-term inc. temp rate violation cleared." - --#SUMMARY "Short-term inc. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 528 - -apcEnvSTDecTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Short-term decreasing temperature rate violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Short-term dec. temp rate violation." - --#SUMMARY "Short-term dec. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 529 - -apcEnvSTDecTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Short-term decreasing temperature rate cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Short-term dec. temp rate violation cleared." - --#SUMMARY "Short-term dec. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 530 - -apcEnvLTIncTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Long-term increasing temperature rate violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Long-term inc. temp rate violation." - --#SUMMARY "Long-term inc. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 531 - -apcEnvLTIncTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Long-term increasing temperature rate cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Long-term inc. temp rate violation cleared." - --#SUMMARY "Long-term inc. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 532 - -apcEnvLTDecTempRateViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Long-term decreasing temperature rate violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Long-term dec. temp rate violation." - --#SUMMARY "Long-term dec. temp rate violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 533 - -apcEnvLTDecTempRateViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Long-term decreasing temperature rate cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Long-term dec. temp rate violation cleared." - --#SUMMARY "Long-term dec. temp rate violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 534 - -apcEnvMaxHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Max humidity threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Max humidity threshold violation." - --#SUMMARY "Max humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 535 - -apcEnvMaxHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Max humidity threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Max humidity threshold violation cleared." - --#SUMMARY "Max humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 536 - -apcEnvHighHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: High humidity threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: High humidity threshold violation." - --#SUMMARY "High humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 537 - -apcEnvHighHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High humidity threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: High humidity threshold violation cleared." - --#SUMMARY "High humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 538 - -apcEnvLowHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: Low humidity threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Low humidity threshold violation." - --#SUMMARY "Low humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 539 - -apcEnvLowHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low humidity threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Low humidity threshold violation cleared." - --#SUMMARY "Low humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 540 - -apcEnvMinHumidityThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Min humidity threshold violated on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Min humidity threshold violation." - --#SUMMARY "Min humidity threshold violation." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 541 - -apcEnvMinHumidityThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Min humidity threshold violation cleared on the sensor. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the sensor number. - The fifth argument is the sensor name." - --#TYPE "APC ENV: Min humidity threshold violation cleared." - --#SUMMARY "Min humidity threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 542 - -apcBeaconConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A beacon has been connected to the device. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number." - --#TYPE "APC: Beacon Connected." - --#SUMMARY "Beacon Connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 543 - -apcBeaconDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "SEVERE: A beacon has been disconnected from the device. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. " - --#TYPE "APC: Beacon Disconnected." - --#SUMMARY "Beacon Disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 544 - -apcBeaconOn TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A beacon has gone on (activated). - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. " - --#TYPE "APC: Beacon On." - --#SUMMARY "Beacon On." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 545 - -apcBeaconOff TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A beacon has gone off (deactivated). - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. " - --#TYPE "APC: Beacon Off." - --#SUMMARY "Beacon Off." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 546 - -apcOutletStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, mtrapargsString04, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: An outlet on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the outlet number. - The fifth argument is the outlet name. - The sixth argument is the current outlet state (1=ON, 2=OFF). - The seventh argument is the configured normal outlet state (1=ON, 2=OFF)." - --#TYPE "APC: Outlet has changed to its abnormal state." - --#SUMMARY "Outlet has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 547 - -apcOutletStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, mtrapargsString04, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An outlet on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the outlet number. - The fifth argument is the outlet name. - The sixth argument is the current outlet state (1=ON, 2=OFF). - The seventh argument is the configured normal outlet state (1=ON, 2=OFF)." - --#TYPE "APC: Outlet has changed to its normal state." - --#SUMMARY "Outlet has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 548 - -apcOutputRelayStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: An output relay on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the output relay number. - The fifth argument is the output relay name. - The sixth argument is the current output relay state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal output relay state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Output Relay has changed to its abnormal state." - --#SUMMARY "Output Relay has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 549 - -apcOutputRelayStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An output relay on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the output relay number. - The fifth argument is the output relay name. - The sixth argument is the current output relay state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal output relay state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Output Relay has changed to its normal state." - --#SUMMARY "Output Relay has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 550 - -apcHardwareStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - - "SEVERE: The device's hardware is improperly configured and operating outside - normal bounds for the hardware. This can be caused by improper devices being - connected to device ports or Alink Current limit detection. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is a hardware specific state code." - - --#TYPE "APC: Hardware is in an abnormal state." - --#SUMMARY "Hardware is in an abnormal state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 551 - -apcHardwareStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's hardware is in its normal operational state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number." - --#TYPE "APC EMS: Hardware is in a normal state." - --#SUMMARY "Hardware is in its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 552 - -apcCriticalDiscreteInputContactStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: A discrete input contact on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input contact number. - The fifth argument is the input contact name. - The sixth argument is the input contact state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Discrete input contact has changed to its abnormal state." - --#SUMMARY "Discrete input contact has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 553 - -apcCriticalDiscreteInputContactStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A discrete input contact on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input contact number. - The fifth argument is the input contact name. - The sixth argument is the input contact state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Discrete input contact has changed to its normal state." - --#SUMMARY "Discrete input contact has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 554 - -apcWarningDiscreteInputContactStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: A discrete input contact on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input contact number. - The fifth argument is the input contact name. - The sixth argument is the input contact state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Discrete input contact has changed to its abnormal state." - --#SUMMARY "Discrete input contact has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 555 - -apcWarningDiscreteInputContactStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A discrete input contact on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input contact number. - The fifth argument is the input contact name. - The sixth argument is the input contact state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Discrete input contact has changed to its normal state." - --#SUMMARY "Discrete input contact has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 556 - -apcInformationalDiscreteInputContactStateAbnormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A discrete input contact on the device has changed to its abnormal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input contact number. - The fifth argument is the input contact name. - The sixth argument is the input contact state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Discrete input contact has changed to its abnormal state." - --#SUMMARY "Discrete input contact has changed to its abnormal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 557 - -apcInformationalDiscreteInputContactStateNormal TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsInteger, - mtrapargsString04, mtrapargsInteger02, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A discrete input contact on the device has changed to its normal state. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input contact number. - The fifth argument is the input contact name. - The sixth argument is the input contact state (1=CLOSED, 2=OPEN). - The seventh argument is the configured normal input contact state (1=CLOSED, 2=OPEN)." - --#TYPE "APC: Discrete input contact has changed to its normal state." - --#SUMMARY "Discrete input contact has changed to its normal state." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 558 - -apcAnalogInputMaxThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Maximum threshold violated on an analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: Maximum threshold violation on analog input." - --#SUMMARY "Max threshold violation on input." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 559 - -apcAnalogInputMaxThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Maximum threshold violation cleared on the analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: Max threshold violation cleared." - --#SUMMARY "Max threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 560 - -apcAnalogInputHighThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: High threshold violated on an analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: High threshold violation on analog input." - --#SUMMARY "High threshold violation on input." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 561 - -apcAnalogInputHighThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: High threshold violation cleared on the analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: High threshold violation cleared." - --#SUMMARY "High threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 562 - -apcAnalogInputLowThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: Low threshold violated on an analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: Low threshold violation on analog input." - --#SUMMARY "Low threshold violation on input." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 563 - -apcAnalogInputLowThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Low threshold violation cleared on the analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: Low threshold violation cleared." - --#SUMMARY "Low threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 564 - -apcAnalogInputMinThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Minimum threshold violated on an analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: Min threshold violation on analog input." - --#SUMMARY "Min threshold violation on input." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 565 - -apcAnalogInputMinThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Minimum threshold violation cleared on the analog input. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is a secondary device id number. - The fourth argument is the input number. - The fifth argument is the input name." - --#TYPE "APC: Min threshold violation cleared." - --#SUMMARY "Min threshold violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 566 - -apcDeviceClearLostComms TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Lost communications reset command has been issued. - The first argument is the device serial number. - The second argument is the device name. - The third argument is a secondary device id number." - --#TYPE "APC: Lost communications reset command has been issued." - --#SUMMARY "Lost communications reset command has been issued." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - - ::= 567 - -apcDeviceConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A device has been connected to the host. - The first argument is the host serial number. - The second argument is the host name. - The third argument is the device number. - The fourth argument is the device name." - --#TYPE "APC: Device Connected." - --#SUMMARY "Device Connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 568 - -apcDeviceDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: A device has been disconnected from the host. - The first argument is the host serial number. - The second argument is the host name. - The third argument is the device number. - The fourth argument is the device name." - --#TYPE "APC: Device Disconnected." - --#SUMMARY "Device Disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 569 - -apcUnregisteredUserAccessDenied TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString04, - mtrapargsInteger, mtrapargsString05, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: An unregistered user has tried to access the device. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argumant is the door identifier. - The fifth argument is the unregistered user's RFID." - --#TYPE "APC: Unregistered user." - --#SUMMARY "Unregistered user." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 570 - - -apcRegisteredUserAccessDenied TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString04, - mtrapargsInteger, mtrapargsString05, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A registered user has been denied access to the device. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argumant is the door identifier. - The fifth argument is the user name." - --#TYPE "APC: Access denied." - --#SUMMARY "Access denied." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 571 - -apcRegisteredUserConfigChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsString05, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: Registered user configuration change. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the user name." - --#TYPE "APC: Registered user configuration change." - --#SUMMARY "Registered user configuration change." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 572 - -apcDoorUnlocked TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString04, - mtrapargsInteger, mtrapargsString05, mtrapargsInteger02, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door has been unlocked. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier. - The fifth argument is the door access user. - The sixth argument is the door access type." - --#TYPE "APC: Door unlocked." - --#SUMMARY "Door unlocked." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 573 - -apcDoorLocked TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString04, - mtrapargsInteger, mtrapargsString05, mtrapargsInteger02, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door has been locked. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier. - The fifth argument is the door access user. - The sixth argument is the door access type." - --#TYPE "APC: Door locked." - --#SUMMARY "Door locked." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 574 - -apcHandleOpened TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door handle has been opened. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Door handle opened." - --#SUMMARY "Door handle opened." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 575 - -apcHandleClosed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door handle has been closed. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Door handle closed." - --#SUMMARY "Door handle closed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 576 - - -apcDoorOpened TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door has been opened. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Door opened." - --#SUMMARY "Door opened." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 577 - -apcDoorClosed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door has been closed. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Door closed." - --#SUMMARY "Door closed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 578 - - -- trap number 579 available - - -apcKeyOverrideUnlocked TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: Key override unlock has occurred. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Key override unlock has occurred." - --#SUMMARY "Key override unlock has occurred." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 580 - - -apcKeyOverrideLocked TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: Key override lock has occurred. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Key override lock has occurred." - --#SUMMARY "Key override lock has occurred." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 581 - -apcForcedEntry TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: A forced entry condition has occurred. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: A forced entry condition has occurred." - --#SUMMARY "A forced entry has occurred." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 582 - -apcForcedEntryCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A forced entry condition has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: A forced entry condition has been cleared." - --#SUMMARY "A forced entry has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 583 - - -apcRelockTimeout TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: A relock timout has occurred. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Relock timout." - --#SUMMARY "Relock timeout." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 584 - -apcRelockTimeoutCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A relock timout has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: relock timout has been cleared." - --#SUMMARY "Relock timout has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 585 - -apcDoorSenseDisconnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: A door sensor was disconnected. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: A door sensor was disconnected." - --#SUMMARY "A door sensor was disconnected." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 586 - -apcDoorSenseConnected TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A forced entry condition has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: A door sensor was connected." - --#SUMMARY "A door sensor was connected." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 587 - - -apcDoorLostComms TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: Communications have been lost with the door. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: A door has lost communications." - --#SUMMARY "A door has lost communications." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 588 - -apcDoorEstablishedComms TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: Communications have been established with the door. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: A door has established communications." - --#SUMMARY "A door has established communications." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 589 - - - -apcRegisteredUserAccessChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsString05, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: Registered user access changed. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the user name." - --#TYPE "APC: Registered user access change." - --#SUMMARY "Registered user access change." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 590 - - -apcUnregisteredUserStatusChange TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsString05, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: Unregistered user status changed. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the user name." - --#TYPE "APC: Unregistered user status change." - --#SUMMARY "Unregistered user status change." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 591 - -apcDeviceClearUserConfigs TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: User configurations reset command has been issued. - The first argument is the device serial number. - The second argument is the device name. - The third argument is a secondary device id number." - --#TYPE "APC: User configurations reset command has been issued." - --#SUMMARY "User configurations reset command has been issued." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 592 - --- Add more events starting at 600 for UPS Devices - -upsBatteryTempSensorFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The battery temperature sensor fault exists." - --#TYPE "APC UPS: The battery temperature sensor fault exists." - --#SUMMARY "The battery temperature sensor fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 600 - -upsBatteryTempSensorFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The battery temperature sensor fault cleared." - --#TYPE "APC UPS: The battery temperature sensor fault cleared." - --#SUMMARY "The battery temperature sensor fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 601 - -upsBatterySoftBusStartFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A battery bus soft start fault exists." - --#TYPE "APC UPS: A battery bus soft start fault exists." - --#SUMMARY "A battery bus soft start fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 602 - -upsBatterySoftBusStartFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A battery bus soft start fault exists cleared." - --#TYPE "APC UPS: A battery bus soft start fault exists cleared." - --#SUMMARY "A battery bus soft start fault exists cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 603 - -apcOutputShortCircuit TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: An output short circuit condition exists." - --#TYPE "APC Device: An output short circuit condition exists." - --#SUMMARY "An output short circuit condition exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 604 - -apcOutputShortCircuitCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An output short circuit condition cleared." - --#TYPE "APC Device: An output short circuit condition cleared." - --#SUMMARY "An output short circuit condition cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 605 - -apcOutputRelayFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: An output relay (or its driver) fault exists." - --#TYPE "APC Device: An output relay (or its driver) fault exists." - --#SUMMARY "An output relay (or its driver) fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 606 - -apcOutputRelayFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An output relay (or its driver) fault cleared." - --#TYPE "APC Device: An output relay (or its driver) fault cleared." - --#SUMMARY "An output relay (or its driver) fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 607 - -upsPfcFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A PFC fault exists." - --#TYPE "APC UPS: A PFC fault exists." - --#SUMMARY "A PFC fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 608 - -upsPfcFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The PFC fault cleared." - --#TYPE "APC UPS: The PFC fault cleared." - --#SUMMARY "The PFC fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 609 - -apcDcBusOverVoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The DC bus voltage is too high." - --#TYPE "APC Devcie: DC bus voltage is too high." - --#SUMMARY "The DC bus voltage is too high." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 610 - -apcDcBusOverVoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The DC bus voltage is too high cleared." - --#TYPE "APC Device: The DC bus voltage is too high cleared." - --#SUMMARY "The DC bus voltage is too high cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 611 - -upsInverterFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The inverter fault exists." - --#TYPE "APC UPS: The inverter fault exists." - --#SUMMARY "The inverter fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 612 - -upsInverterFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The inverter fault cleared." - --#TYPE "APC UPS: The inverter fault cleared." - --#SUMMARY "The inverter fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 613 - -apcAdConverterFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The A/D converter fault exists." - --#TYPE "APC Device: The A/D converter fault exists." - --#SUMMARY "The A/D converter fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 614 - -apcAdConverterFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The A/D converter fault cleared." - --#TYPE "APC Device: The A/D converter fault cleared." - --#SUMMARY "The A/D converter fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 615 - -apcLogicPowerSupplyFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A logic power supply fault exists." - --#TYPE "APC Device: A logic power supply fault exists." - --#SUMMARY "A logic power supply fault exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 616 - -apcLogicPowerSupplyFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A logic power supply fault cleared." - --#TYPE "APC Device: A logic power supply fault cleared." - --#SUMMARY "A logic power supply fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 617 - -apcTransformerDCImbalanceFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The DC component of the transformer's current is too high." - --#TYPE "APC Device: The DC component of the tformer's curr is too high." - --#SUMMARY "The DC component of the transformer's current is too high." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 618 - -apcTransformerDCImbalanceFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The DC component of the transformer's current is normal." - --#TYPE "APC Device: The DC component of the tformer's curr is normal." - --#SUMMARY "The DC component of the transformer's current is normal." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 619 - -upsBackfeedRelayFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The backfeed relay (or its driver) has a fault." - --#TYPE "UPS Device: The backfeed relay (or its driver) has a fault." - --#SUMMARY "The backfeed relay (or its driver) has a fault." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 620 - -upsBackfeedRelayFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: The backfeed relay (or its driver) has a fault cleared." - --#TYPE "UPS Device: The bfeed rly (or its drver) has a flt cleared." - --#SUMMARY "The backfeed relay (or its driver) has a fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 621 - -upsBypassRelayFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A bypass relay (or its driver) has a fault." - --#TYPE "APC Device: A bypass relay (or its driver) has a fault." - --#SUMMARY "A bypass relay (or its driver) has a fault." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 622 - -upsBypassRelayFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A bypass relay (or its driver) has a fault cleared." - --#TYPE "APC Device: A bypass relay (or its driver) has a fault cleared." - --#SUMMARY "A bypass relay (or its driver) has a fault cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 623 - - -xPDUBranchCurrentMinAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The current in a branch circuit is outside the limits specified for that - branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps. - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC XPDU: Branch circuit minimum current alarm." - --#SUMMARY "Branch circuit current is below threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 626 - -xPDUBranchCurrentMinAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a branch circuit is back within the limits - specified for that branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Branch circuit minimum current alarm cleared." - --#SUMMARY "Branch circuit low current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 627 - -xPDUBranchCurrentMaxAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The current in a branch circuit is outside the limits specified for that - branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps. - The fifth argument is the threshold, in tenths of Amps, above which the alarm was generated." - --#TYPE "APC XPDU: Branch circuit maximum current alarm." - --#SUMMARY "Branch circuit current is above threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 628 - -xPDUBranchCurrentMaxAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xPDUIdentSerialNumber, xPDUIdentProductName, mtrapargsInteger, - mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a branch circuit is back within the limits - specified for that branch circuit. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the panel position of the branch circuit (1-based index). - The fourth argument is the measured current in tenths of Amps." - --#TYPE "APC XPDU: Branch circuit maximum current alarm cleared." - --#SUMMARY "Branch circuit high current alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 629 - - -rPDUOutletLowLoad TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletStatusIndex, mtrapargsString } - DESCRIPTION - "WARNING: A Rack PDU has violated the outlet low load threshold. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet number." - --#TYPE "APC Rack PDU: Violation of outlet low load threshold." - --#SUMMARY "A Rack PDU has violated the outlet low load threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 630 - -rPDUOutletLowLoadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletStatusIndex, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The outlet low load condition on a Rack PDU has been - cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet number." - --#TYPE "APC Rack PDU: Low load condition cleared." - --#SUMMARY "The low load condition on a Rack PDU has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 631 - -rPDUOutletNearOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletStatusIndex, mtrapargsString } - DESCRIPTION - "WARNING: A Rack PDU is near an outlet overload condition. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet number." - --#TYPE "APC Rack PDU: Near an overload condition." - --#SUMMARY "A Rack PDU is near an outlet overload condition." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 632 - -rPDUOutletNearOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletStatusIndex, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The outlet near overload condition on a Rack PDU has - been cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet number." - --#TYPE "APC Rack PDU: Outlet Near overload condition has cleared." - --#SUMMARY "Rack PDU outlet near overload condition has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 633 - -rPDUOutletOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletStatusIndex, mtrapargsString } - DESCRIPTION - "SEVERE: A Rack PDU is in an overload condition. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet number." - --#TYPE "APC Rack PDU: Outlet Overload condition." - --#SUMMARY "A Rack PDU is in an outlet overload condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 634 - -rPDUOutletOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { rPDUIdentSerialNumber, rPDUIdentName, - rPDUOutletStatusIndex, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The outlet overload condition on a Rack PDU has been - cleared. - The first argument is the serial number. - The second argument is the device name. - The third argument is the outlet number." - --#TYPE "APC Rack PDU: Overload condition has cleared." - --#SUMMARY "The outlet overload condition on a Rack PDU has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 635 - -apcTestTrap TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsInteger02, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Trap used to test SNMP trap functionality. - The first argument is a place holder for test variables." - --#TYPE "APC: Test trap." - --#SUMMARY "Test Trap." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 636 - -baseFanFailureCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Base module fan has been repaired" - --#TYPE "APC UPS: Base module fan has been repaired" - --#SUMMARY "The base module fan has been repaired." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 637 - - - -atsLowLoad TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - atsOutputPhaseIndex, atsOutputBank, mtrapargsString } - DESCRIPTION - "WARNING: ATS has violated the bank or phase low load threshold. - The first argument is the serial number. - The second argument is the product name. - The third argument is the phase number - The fourth argument is the bank number. -1 is returned if bank does not exist." - --#TYPE "APC ATS: Violation of bank or phase low load threshold." - --#SUMMARY "ATS has violated the bank or phase low load threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 638 - -atsLowLoadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - atsOutputPhaseIndex, atsOutputBank, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The bank or phase low load condition on an ATS has been - cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is the phase number - The fourth argument is the bank number. -1 is returned if bank does not exist." - --#TYPE "APC ATS: Low load condition cleared." - --#SUMMARY "The low load condition on an ATS has been cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 639 - -atsNearOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - atsOutputPhaseIndex, atsOutputBank, mtrapargsString } - DESCRIPTION - "WARNING: ATS has violated the bank or phase near overload threshold. - The first argument is the serial number. - The second argument is the product name. - The third argument is the phase number - The fourth argument is the bank number. -1 is returned if bank does not exist." - --#TYPE "APC ATS: Near an overload condition." - --#SUMMARY "ATS is near a bank or phase overload condition." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 640 - -atsNearOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - atsOutputPhaseIndex, atsOutputBank, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The bank or phase near overload condition on an ATS has - been cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is the phase number - The fourth argument is the bank number. -1 is returned if bank does not exist." - --#TYPE "APC ATS: Bank or phase near overload condition has cleared." - --#SUMMARY "ATS bank or phase near overload condition has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 641 - -atsOverload TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - atsOutputPhaseIndex, atsOutputBank, mtrapargsString } - DESCRIPTION - "SEVERE: ATS is in an overload condition. - The first argument is the serial number. - The second argument is the product name. - The third argument is the phase number. - The fourth argument is the bank number. -1 is returned if bank does not exist." - --#TYPE "APC ATS: Bank or Phase Overload condition." - --#SUMMARY "ATS is in overload condition." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 642 - -atsOverloadCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - atsOutputPhaseIndex, atsOutputBank, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The bank or phase overload condition on an ATS has been - cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is the phase number. - The fourth argument is the bank number. -1 is returned if bank does not exist." - --#TYPE "APC ATS: Overload condition has cleared." - --#SUMMARY "The bank or phase overload condition on an ATS has cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 643 - -atsRMSOverVoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Overvoltage condition violated. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: Overvoltage condition violated." - --#SUMMARY "Overvoltage condition violated." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 644 - -atsRMSOverVoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Overvoltage condition cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: Overvoltage condition cleared." - --#SUMMARY "Overvoltage condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 645 - -atsRMSUnderVoltage TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: Undervoltage condition violated. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: Undervoltage condition violated." - --#SUMMARY "Undervoltage condition violated." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 646 - -atsRMSUnderVoltageCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Undervoltage condition cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: Undervoltage condition cleared." - --#SUMMARY "Undervoltage condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 647 - -atsRMSOverFrequency TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: OverFrequency condition violated. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: OverFrequency condition violated." - --#SUMMARY "OverFrequency condition violated." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 648 - -atsRMSOverFrequencyCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: OverFrequency condition cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: OverFrequency condition cleared." - --#SUMMARY "OverFrequency condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 649 - -atsRMSUnderFrequency TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: UnderFrequency condition violated. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: UnderFrequency condition violated." - --#SUMMARY "UnderFrequency condition violated." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 650 - -atsRMSUnderFrequencyCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UnderFrequency condition cleared. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: UnderFrequency condition cleared." - --#SUMMARY "UnderFrequency condition cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 651 - - - --- MODULAR POWER DISTRIBUTION SYSTEM - -isxModularDistributionCommLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: Communication with a metering segment of the modular - distribution system has been lost. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the segment number. - The fourth argument describes the modules served by this metering segment." - --#TYPE "APC MDS: Com lost in modular distribution system." - --#SUMMARY "Modular distribution communication lost." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 652 - -isxModularDistributionCommEstablished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Communication with a metering segment of the modular - distribution system has been restored. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the segment number. - The fourth argument describes the modules served by this metering segment." - --#TYPE "APC MDS: Com restored in modular distribution system." - --#SUMMARY "Modular distribution communication restored." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 653 - -isxModularDistributionModuleInserted TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A distribution module has been inserted into the system. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module location number." - --#TYPE "APC MDS: Distribution module inserted." - --#SUMMARY "Distribution module inserted." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 654 - -isxModularDistributionModuleRemoved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A distribution module has been removed from the system. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module location number." - --#TYPE "APC MDS: Distribution module removed." - --#SUMMARY "Distribution module removed." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 655 - -isxModularBreakerOpenAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: A distribution module breaker is open and in an alarm condition. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the module breaker(s) (1=L1, 2=L2, 3=L3, 4=L12, 5=L23, 6=L123). - The fifth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution breaker open alarm." - --#SUMMARY "Distribution breaker open alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 656 - -isxModularBreakerOpenAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An alarm caused by a distribution breaker being open has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker(s) (1=L1, 2=L2, 3=L3, 4=L12, 5=L23, 6=L123). - The fifth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution breaker open alarm cleared." - --#SUMMARY "Distribution breaker open alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 657 - -isxModularMinCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: The current in a distribution module is below the minimum/critical - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution minimum current alarm." - --#SUMMARY "Distribution current is below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 658 - -isxModularMinCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution module is no longer below the minimum/critical - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution minimum current alarm cleared." - --#SUMMARY "Distribution current no longer below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 659 - -isxModularLowCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: The current in a distribution module is below the low/warning - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution low current alarm." - --#SUMMARY "Distribution current is below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 660 - -isxModularLowCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution module is no longer below the low/warning - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution low current alarm cleared." - --#SUMMARY "Distribution current no longer below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 661 - -isxModularHighCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: The current in a distribution module is above the high/warning - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution high current alarm." - --#SUMMARY "Distribution current is above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 662 - -isxModularHighCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution module is no longer above the high/warning - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution high current alarm cleared." - --#SUMMARY "Distribution current no longer above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 663 - -isxModularMaxCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: The current in a distribution module is above the maximum/critical - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution maximum current alarm." - --#SUMMARY "Distribution current is above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 664 - -isxModularMaxCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution module is no longer above the maximum/critical - limit specified for the circuit/cable. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the module number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the circuit/cable fed by this breaker." - --#TYPE "APC MDS: Distribution maximum current alarm cleared." - --#SUMMARY "Distribution current no longer above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 665 - -isxModularSubfeedBreakerOpenAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: A distribution subfeed breaker is open and in an alarm condition. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed breaker open alarm." - --#SUMMARY "Distribution subfeed breaker open alarm." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 666 - -isxModularSubfeedBreakerOpenAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An alarm caused by a distribution subfeed breaker being open has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed breaker open alarm cleared." - --#SUMMARY "Distribution subfeed breaker open alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 667 - -isxModularSubfeedMinCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: The current in a distribution subfeed is below the minimum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed minimum current alarm." - --#SUMMARY "Distribution subfeed current is below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 668 - -isxModularSubfeedMinCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution subfeed is no longer below the minimum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed minimum current alarm cleared." - --#SUMMARY "Distribution subfeed current no longer below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 669 - -isxModularSubfeedLowCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: The current in a distribution subfeed is below the low/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed low current alarm." - --#SUMMARY "Distribution subfeed current is below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 670 - -isxModularSubfeedLowCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution subfeed is no longer below the low/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed low current alarm cleared." - --#SUMMARY "Distribution subfeed current is no longer below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 671 - -isxModularSubfeedHighCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "WARNING: The current in a distribution subfeed is above the high/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed high current alarm." - --#SUMMARY "Distribution subfeed current is above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 672 - -isxModularSubfeedHighCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution subfeed is no longer above the high/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed high current alarm cleared." - --#SUMMARY "Distribution subfeed current no longer above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 673 - -isxModularSubfeedMaxCurrentThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsInteger02, mtrapargsString04, mtrapargsString } - DESCRIPTION - "SEVERE: The current in a distribution subfeed is above the maximum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the threshold, in tenths of Amps, from which the alarm was generated. - The sixth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed maximum current alarm." - --#SUMMARY "Distribution subfeed current is above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 674 - -isxModularSubfeedMaxCurrentThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger03, - mtrapargsString04, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The current in a distribution subfeed is no longer above the maximum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the subfeed number. - The fourth argument is the breaker/phase index (1=L1, 2=L2, 3=L3). - The fifth argument is the load name associated with the subfeed." - --#TYPE "APC MDS: Distribution subfeed maximum current alarm cleared." - --#SUMMARY "Distribution subfeed current no longer above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 675 - -isxModularTotalOutputCurrentMinThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The total output current of the distribution is below the minimum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC MDS: Total distribution output minimum current alarm." - --#SUMMARY "Distribution total current is below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 676 - -isxModularTotalOutputCurrentMinThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The total output current of the distribution is no longer below the minimum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Total output minimum current alarm cleared." - --#SUMMARY "Distribution total current no longer below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 677 - -isxModularTotalOutputCurrentLowThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: The total output current of the distribution is below the low/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC MDS: Total output low current alarm." - --#SUMMARY "Distribution total current is below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 678 - -isxModularTotalOutputCurrentLowThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The total output current of the distribution is no longer below the low/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Total output low current alarm cleared." - --#SUMMARY "Distribution total current no longer below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 679 - -isxModularTotalOutputCurrentHighThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: The total output current of the distribution is above the high/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC MDS: Total output high current alarm." - --#SUMMARY "Distribution total current is above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 680 - -isxModularTotalOutputCurrentHighThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The total output current of the distribution is no longer above the high/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Total output high current alarm cleared." - --#SUMMARY "Distribution total current no longer above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 681 - -isxModularTotalOutputCurrentMaxThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The total output current of the distribution is above the maximum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Amps, from which the alarm was generated." - --#TYPE "APC MDS: Total output maximum current alarm." - --#SUMMARY "Distribution total current is above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 682 - -isxModularTotalOutputCurrentMaxThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The total output current of the distribution is no longer above the maximum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Total output maximum current alarm cleared." - --#SUMMARY "Distribution total current no longer above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 683 - -isxModularOutputVoltageMinThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The distribution output voltage is below the minimum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC MDS: Distribution minimum output voltage alarm." - --#SUMMARY "Distribution output voltage is below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 684 - -isxModularOutputVoltageMinThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The distribution output voltage is no longer below the minimum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Distribution minimum output voltage alarm cleared." - --#SUMMARY "Distribution output voltage no longer below the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 685 - -isxModularOutputVoltageLowThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: The distribution output voltage is below the low/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC MDS: Distribution low output voltage alarm." - --#SUMMARY "Distribution output voltage is below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 686 - -isxModularOutputVoltageLowThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The distribution output voltage is no longer below the low/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Distribution low output voltage alarm cleared." - --#SUMMARY "Distribution output voltage no longer below the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 687 - -isxModularOutputVoltageHighThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: The distribution output voltage is above the high/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC MDS: Distribution high output voltage alarm." - --#SUMMARY "Distribution output voltage is above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 688 - -isxModularOutputVoltageHighThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The distribution output voltage is no longer above the high/warning limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Distribution high output voltage alarm cleared." - --#SUMMARY "Distribution output voltage no longer above the warning threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 689 - -isxModularOutputVoltageMaxThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: The distribution output voltage is above the maximum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3). - The fourth argument is the threshold, in tenths of Volts, from which the alarm was generated." - --#TYPE "APC MDS: Distribution maximum output voltage alarm." - --#SUMMARY "Distribution output voltage is above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 690 - -isxModularOutputVoltageMaxThresholdViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The distribution output voltage is no longer above the maximum/critical limit specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the phase index (1=L1, 2=L2, 3=L3)." - --#TYPE "APC MDS: Distribution maximum output voltage alarm cleared." - --#SUMMARY "Distribution output voltage no longer above the critical threshold." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 691 - -apcDoorClosedImproperly TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: A door has been closed improperly. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Door closed improperly." - --#SUMMARY "Door closed improperly." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 692 - -apcDoorClosedImproperlyCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: A door is no longer closed improperly. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: Door no longer closed improperly." - --#SUMMARY "Door no longer closed improperly." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 693 - -apcUserScheduleViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "SEVERE: A user has had a door opened past the scheduled access period. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: User schedule violated." - --#SUMMARY "User schedule violated." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 694 - -apcUserScheduleViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, - mtrapargsString04, mtrapargsInteger, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: User schedule violation has been cleared. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the host device location. - The fourth argument is the door identifier, (1=front, 2=rear)." - --#TYPE "APC: User schedule violation cleared." - --#SUMMARY "User schedule violation cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 695 - -isxModularOutputFrequencyThresholdViolation TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: The distribution output frequency is outside of the operating range specified. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the threshold, in tenths of Hertz, from which the alarm was generated." - --#TYPE "APC MDS: Distribution output frequency out of range." - --#SUMMARY "Distribution output frequency out of range." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 696 - -isxModularOutputFrequencyViolationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The distribution output frequency is no longer out of range. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC MDS: Distribution output frequency no longer out of range." - --#SUMMARY "Distribution output frequency no longer out of range." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 697 - -atsSourceStatusFail TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: ATS Source failed. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: ATS Source failed." - --#SUMMARY "ATS Source failed." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 698 - -atsSourceStatusOk TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: ATS Source OK. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the source: 0=A, 1=B." - --#TYPE "APC ATS: ATS Source OK." - --#SUMMARY "ATS Source OK." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 699 - -atsHardwareStatusFail TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: ATS display board hardware failed. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the failed hardware: - 0= Phase LEDs/Push-button hardware failure - 1= Seven-segment display hardware failure." - --#TYPE "APC ATS: ATS display board hardware failed." - --#SUMMARY "ATS display board hardware failed." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 700 - -atsHardwareStatusOk TRAP-TYPE - ENTERPRISE apc - VARIABLES { atsIdentSerialNumber, atsConfigProductName, - mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: ATS display board hardware ok. - The first argument is the serial number. - The second argument is the product name. - The third argument is an integer representing the hardware: - 0= Phase LEDs/Push-button hardware failure - 1= Seven-segment display hardware failure." - --#TYPE "APC ATS: ATS display board hardware ok." - --#SUMMARY "ATS display board hardware ok." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 701 - -atsControllerRestart TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: ATS Controller restarted." - --#TYPE "APC ATS: ATS Controller restarted." - --#SUMMARY "ATS Controller restarted." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 702 - - - - -xATSS1BadPhaseRotation TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString } - DESCRIPTION - "SEVERE: The device's source 1 phase rotation is bad. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: S1 bad phase rotation alarm." - --#SUMMARY "Phase rotation on source 1 is bad." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 724 - -xATSS1BadPhaseRotationCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: The device's source 1 phase rotation is back to normal. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: S1 phase rotation back to normal." - --#SUMMARY "S1 phase rotation back to normal." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 725 - -xATSS1BadPhaseBalance TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsInteger, - mtrapargsString} - DESCRIPTION - "SEVERE: The device's source 1 phase balance is out of bounds. - The first argument is the host device serial number. - The second argument is the host device name. - The third argument is the minimum phase balance as a percentage." - --#TYPE "APC XATS: S1 phase imbalance exceeds threshold alarm." - --#SUMMARY "Phase imbalance on source 1 exceeds threshold." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 726 - -xATSS1BadPhaseBalanceCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { xATSIdentSerialNumber, xATSIdentProductName, mtrapargsString} - DESCRIPTION - "INFORMATIONAL: The device's source 1 phase balance is back to normal. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC XATS: S1 phase balance back to normal." - --#SUMMARY "S1 phase balance back to normal." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 727 - -isxModularTransformerOverheating TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString } - DESCRIPTION - "SEVERE: The distribution transformer temperature is too hot. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC MDS: Transformer overheating." - --#SUMMARY "Distribution transformer temperature is too hot." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 728 - -isxModularTransformerOverheatingCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The distribution transformer temperature has returned to normal. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC MDS: Transformer temperature has returned to normal." - --#SUMMARY "Distribution transformer temperature has returned to normal." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 729 - -apcInternalCommunicationFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: An internal UPS communication fault exists." - --#TYPE "APC Device: An internal UPS communication fault exists." - --#SUMMARY "An internal UPS communication fault exists." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 730 - -apcInternalCommunicationFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An internal UPS communication fault no longer exists." - --#TYPE "APC Device:An internal UPS communication fault no longer exists." - --#SUMMARY "An internal UPS communication fault no longer exists." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 731 - -upsOutletGroupCommand TRAP-TYPE - ENTERPRISE apc - VARIABLES { upsOutletGroupControlIndex, mtrapargsString } - DESCRIPTION - "WARNING: The specified Outlet Group command has been issued." - --#TYPE "APC UPS: Outlet Group command issued." - --#SUMMARY "Outlet Group command issued." - --#ARGUMENTS { } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 732 - -onbatterycommunicationLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Communication to the UPS when the UPS is on Battery. Steps - to reestablish communication are in progress." - --#TYPE "APC UPS: Communication lost" - --#SUMMARY "Communication lost between the agent and the UPS when UPS is on Battery." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 733 - -upsCriticalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "SEVERE: A UPS critical condition was detected. - The first variable is the error condition text message. - The second variable is the error number." - --#TYPE "UPS: A critical condition has been detected." - --#SUMMARY "A critical condition has been detected." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 734 - -upsCriticalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A UPS critical condition has been cleared. - The first variable is the fault condition." - --#TYPE "UPS: A critical condition has been cleared." - --#SUMMARY "A critical condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 735 - -upsWarningCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: A UPS warning condition has been detected. - The first variable is the fault condition." - --#TYPE "UPS: A warning condition has been detected." - --#SUMMARY "A warning condition has been detected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 736 - -upsWarningConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "WARNING: A UPS warning condition has been cleared. - The first variable is the fault condition." - --#TYPE "UPS: A warning condition has been cleared." - --#SUMMARY "A warning condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 737 - -upsInformationalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A UPS informational condition has been detected. - The first variable is the fault condition." - --#TYPE "UPS: Informational condition detected." - --#SUMMARY "An informational condition has been detected." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 738 - -upsInformationalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsInteger, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A UPS informational condition has been cleared. - The first variable is the fault condition." - --#TYPE "UPS: Informational condition cleared." - --#SUMMARY "An informational condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 739 - -isxcInformationalAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An ISXC Alarm exists. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Informational Alarm exists." - --#SUMMARY "An ISXC Informational Alarm exists." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 740 - -isxcInformationalAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An ISXC Alarm has been cleared. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Informational Alarm has been cleared." - --#SUMMARY "An ISXC Informational Alarm has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 741 - -isxcWarningAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "WARNING: An ISXC Alarm exists. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Warning Alarm exists." - --#SUMMARY "An ISXC Warning Alarm exists." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 742 - -isxcWarningAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "WARNING: An ISXC Alarm has been cleared. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Warning Alarm has been cleared." - --#SUMMARY "An ISXC Warning Alarm has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 743 - -isxcErrorAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "ERROR: An ISXC Alarm exists. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Error Alarm exists." - --#SUMMARY "An ISXC Error Alarm exists." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 744 - -isxcErrorAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "ERROR: An ISXC Alarm has been cleared. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Error Alarm has been cleared." - --#SUMMARY "An ISXC Error Alarm has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 745 - -isxcCriticalAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "CRITICAL: An ISXC Alarm exists. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Critical Alarm exists." - --#SUMMARY "An ISXC Critical Alarm exists." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 746 - -isxcCriticalAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "CRITICAL: An ISXC Alarm has been cleared. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Critical Alarm has been cleared." - --#SUMMARY "An ISXC Critical Alarm has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 747 - -isxcFailureAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "FAILURE: An ISXC Alarm exists. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Failure Alarm exists." - --#SUMMARY "An ISXC Failure Alarm exists." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 748 - -isxcFailureAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, - mtrapargsOctetString, - mtrapargsInteger, - mtrapargsString03, - mtrapargsOctetString02, - mtrapargsString04, - mtrapargsOctetString03, - mtrapargsString05, - mtrapargsString06, - mtrapargsString07, - mtrapargsOctetString04, - mtrapargsOctetString05, - mtrapargsString08, - mtrapargsOctetString06, - mtrapargsOctetString07, - mtrapargsInteger02, - mtrapargsInteger03, - mtrapargsOctetString08, - mtrapargsString } - DESCRIPTION - "FAILURE: An ISXC Alarm has been cleared. - The first argument is the unique ISXC alarm ID. - The second argument is the ISXC alarm label as a UTF8 string. - The third argument is the ISXC alarm code. - The fourth argument is the unique ISXC device ID. - The fifth argument is the ISXC device label as a UTF8 string. - The sixth argument is the ISXC parent host. - The seventh argument is the ISXC device type as a UTF8 string. - The eighth argument is the device serial number. - The ninth argument is the device model number. - The tenth argument is the device host. - The eleventh argument is the device location as a UTF8 string. - The twelfth argument is the device contact as a UTF8 string. - The thirteenth argument is the unique ISXC sensor ID. - The fourteenth argument is the ISXC sensor label as a UTF8 string. - The fifteenth argument is the sensor value as a UTF8 string. - The sixteenth argument is the ISXC alarm start time. - The seventeenth argument is the ISXC alarm resolution time. - The eighteenth argument is the description as a UTF8 string." - --#TYPE "APC ISXC: An ISXC Failure Alarm has been cleared." - --#SUMMARY "An ISXC Failure Alarm has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 749 - --- rPDU2g Trap Section - -rpduCriticalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "SEVERE: A RPDU critical condition has been detected. - The first variable is the serial number. - The second variable is the device name. - The third variable is the error number. - The fourth variable is the device number. - The fifth variable is the instance number. - The sixth variable is the trap text message." - --#TYPE "RPDU: A critical condition has been detected." - --#SUMMARY "A critical condition has been detected." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 750 - -rpduCriticalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A RPDU critical condition has been cleared. - The first variable is the serial number. - The second variable is the device name. - The third variable is the error number. - The fourth variable is the device number. - The fifth variable is the instance number. - The sixth variable is the trap text message." - --#TYPE "RPDU: A critical condition has been cleared." - --#SUMMARY "A critical condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 751 - -rpduWarningCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: A RPDU warning condition has been detected. - The first variable is the serial number. - The second variable is the device name. - The third variable is the error number. - The fourth variable is the device number. - The fifth variable is the instance number. - The sixth variable is the trap text message." - --#TYPE "RPDU: A warning condition has been detected." - --#SUMMARY "A warning condition has been detected." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 752 - -rpduWarningConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "WARNING: A RPDU warning condition has been cleared. - The first variable is the serial number. - The second variable is the device name. - The third variable is the error number. - The fourth variable is the device number. - The fifth variable is the instance number. - The sixth variable is the trap text message." - --#TYPE "RPDU: A warning condition has been cleared." - --#SUMMARY "A warning condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 753 - -rpduInformationalCondition TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A RPDU informational condition has been detected. - The first variable is the serial number. - The second variable is the device name. - The third variable is the error number. - The fourth variable is the device number. - The fifth variable is the instance number. - The sixth variable is the trap text message." - --#TYPE "RPDU: Informational condition detected." - --#SUMMARY "An informational condition has been detected." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 754 - -rpduInformationalConditionCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsInteger, mtrapargsInteger02, mtrapargsInteger03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A RPDU informational condition has been cleared. - The first variable is the serial number. - The second variable is the device name. - The third variable is the error number. - The fourth variable is the device number. - The fifth variable is the instance number. - The sixth variable is the trap text message." - --#TYPE "RPDU: Informational condition cleared." - --#SUMMARY "An informational condition has been cleared." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 755 - -isxModularCoolingFanAlarm TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString } - DESCRIPTION - "SEVERE: The device's internal cooling fans have failed. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC MDS: Cooling fan failure." - --#SUMMARY "Cooling fan failure." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 756 - -isxModularCoolingFanAlarmCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString02, mtrapargsString03, mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The device's internal cooling fans are now functioning properly. - The first argument is the host device serial number. - The second argument is the host device name." - --#TYPE "APC MDS: Cooling fan alarm cleared." - --#SUMMARY "Cooling fan alarm cleared." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 757 - -upsFirmwareUpdateStarted TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: Updating UPS firmware." - --#TYPE "APC UPS: Updating firmware" - --#SUMMARY "The UPS has started a firmware update." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 758 - -upsFirmwareUpdateFinished TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Finished updating UPS firmware." - --#TYPE "APC UPS: Finished firmware update" - --#SUMMARY "The UPS has finished the firmware update." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 759 - -upsFirmwareUpdateSucceeded TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UPS firmware update succeeded." - --#TYPE "APC UPS: Firmware update succeeded" - --#SUMMARY "The UPS has successfully completed a firmware update." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 760 - -upsFirmwareUpdateFailed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: UPS firmware update failed." - --#TYPE "APC UPS: Firmware update failed" - --#SUMMARY "The UPS failed to complete a firmware update." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 761 - -upsHasNoValidFirmware TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: UPS has no valid firmware." - --#TYPE "APC UPS: No firmware" - --#SUMMARY "The UPS does not have a valid firmware." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 762 - -upsHasNoValidFirmwareCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UPS now has a valid firmware." - --#TYPE "APC UPS: Now has valid firmware" - --#SUMMARY "The UPS now has a valid firmware." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 763 - - -upsLocalDisplayButtonFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: A local display button fault exists." - --#TYPE "APC UPS: A local display button fault exists." - --#SUMMARY "The UPS has detected a local display button error. The button may be stuck in the closed position." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 767 - -upsLocalDisplayButtonFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A local display button fault no longer exists." - --#TYPE "APC UPS: A local display button fault no longer exists." - --#SUMMARY "The UPS no longer detects a local display button error." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 768 - -upsNeedsFactorySetupFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: UPS needs factory setup." - --#TYPE "APC UPS: needs factory setup." - --#SUMMARY "The UPS is missing factory configuration information. The UPS needs to be set up by the factory." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 769 - -upsNeedsFactorySetupFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: UPS no longer needs factory setup." - --#TYPE "APC UPS: no longer needs factory setup." - --#SUMMARY "The UPS now has the required factory configuration information." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 770 - -upsEPOActive TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: Emergency Power Off (EPO) active." - --#TYPE "APC UPS: Emergency Power Off (EPO) active." - --#SUMMARY "The EPO contact on the UPS was activated causing the UPS to turn off." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 771 - -upsEPOActiveCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: Emergency Power Off (EPO) now inactive." - --#TYPE "APC UPS: Emergency Power Off (EPO) now inactive." - --#SUMMARY "The EPO contact on the UPS is no longer activated. The UPS may be turned on." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 772 - -upsFirmwareMismatch TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: A firmware mismatch error exists." - --#TYPE "APC UPS: A firmware mismatch error exists." - --#SUMMARY "Parts of the system are running firmware versions not designed to work together. This may be due to an incomplete firmware update." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 773 - -upsFirmwareMismatchCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: A firmware mismatch error no longer exists." - --#TYPE "APC UPS: A firmware mismatch error no longer exists." - --#SUMMARY "The firmware versions on the system are now compatible." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 774 - -upsOscillatorFailed TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: An oscillator error exists." - --#TYPE "APC UPS: An oscillator error exists." - --#SUMMARY "One or more system clocks no longer keeps time due to a failed oscillator. Depending on the failure, this may result in a loss of time keeping, or render parts of the system inoperable." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE NONOPERATIONAL - ::= 775 - -upsOscillatorFailedCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: An oscillator error no longer exists." - --#TYPE "APC UPS: An oscillator error no longer exists." - --#SUMMARY "The oscillator error no longer exists." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 776 - -upsOnBatteryDueToFault TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: The UPS is on battery due to an error. - - Symmetra UPSes: Intelligence module has reported being in self-test for - too long. When this happens, the UPS is not usually in self-test, but the - batteries are draining slowly. If left uncorrected, the batteries will - become depleted and the UPS will not be able to turn on. If UPS has at - least N+1 redundancy, check power modules one by one to determine which - keeps the UPS in self-test. Once identified, replace the module." - --#TYPE "APC UPS: The UPS is on battery due to an error." - --#SUMMARY "The UPS is on battery due to an error." - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 777 - -upsOnBatteryDueToFaultCleared TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: The UPS is no longer on battery due to an error." - --#TYPE "APC UPS: The UPS is no longer on battery due to an error." - --#SUMMARY "The UPS is no longer on battery due to an error." - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 778 - - -pcnsCriticalEventActive TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: PowerChute Network Shutdown has begun a safe shutdown of the host." - --#TYPE "APC CODE: PowerChute Network Shutdown has begun a safe shutdown of the host." - --#SUMMARY "Safe Shutdown of host initiated." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 779 - -pcnsCriticalEventResolved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: PowerChute Network Shutdown critical event resolved. Safe shutdown will continue." - --#TYPE "APC CODE: PowerChute Network Shutdown critical event resolved. Safe shutdown will continue." - --#SUMMARY "Critical event resolved." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 780 - -pcnsNetworkComsLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: PowerChute cannot communicate with NMC" - --#TYPE "APC CODE: PowerChute cannot communicate with NMC" - --#SUMMARY "PowerChute cannot communicate with NMC" - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 781 - -pcnsNetworkComsLostResolved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: PowerChute can communicate with NMC again." - --#TYPE "APC CODE: PowerChute can communicate with NMC again." - --#SUMMARY "PowerChute can communicate with NMC again." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 782 - -pcnsNMCComsLost TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "SEVERE: NMC cannot communicate with UPS." - --#TYPE "APC CODE: NMC cannot communicate with UPS." - --#SUMMARY "NMC cannot communicate with UPS." - --#ARGUMENTS { } - --#SEVERITY SEVERE - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 783 - -pcnsNMCComsLostResolved TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: NMC can communicate with UPS again." - --#TYPE "APC CODE: NMC can communicate with UPS again." - --#SUMMARY "NMC can communicate with UPS again." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 784 - -pcnsTest TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: PowerChute has sent a test trap." - --#TYPE "APC CODE: PowerChute has sent a test trap." - --#SUMMARY "PowerChute has sent a test trap." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 785 - -pcnsUpdateAvailable TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "INFORMATIONAL: PowerChute has detected that a newer version is available." - --#TYPE "APC CODE: PowerChute has detected that a newer version is available." - --#SUMMARY "PowerChute has detected that a newer version is available." - --#ARGUMENTS { } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE OPERATIONAL - ::= 786 - -temporaryBypass TRAP-TYPE - ENTERPRISE apc - VARIABLES { mtrapargsString } - DESCRIPTION - "WARNING: UPS on temporary bypass" - --#TYPE "APC UPS: On temporary bypass" - --#SUMMARY "The UPS is on temporary bypass." - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#HELP "" - --#HELPTAG 0 - --#STATE DEGRADED - ::= 787 - - -END diff --git a/mibs/orig/RFC-1212 b/mibs/orig/RFC-1212 deleted file mode 100644 index a43c2fb..0000000 --- a/mibs/orig/RFC-1212 +++ /dev/null @@ -1,79 +0,0 @@ --- file: RFC-1212.my --- changes: --- Removed IMPORTS. --- Commented out OBJECT-TYPE macro definition and replaced --- with SMIC directive to enable it. --- dperkins@scruznet.com - - - -RFC-1212 DEFINITIONS ::= BEGIN - - -- Make builtin items known - -- SMI OBJECT-TYPE - - - -- OBJECT-TYPE MACRO ::= - -- BEGIN - -- TYPE NOTATION ::= - -- must conform to - -- RFC1155's ObjectSyntax - -- "SYNTAX" type(ObjectSyntax) - -- "ACCESS" Access - -- "STATUS" Status - -- DescrPart - -- ReferPart - -- IndexPart - -- DefValPart - -- VALUE NOTATION ::= value (VALUE ObjectName) - -- - -- Access ::= "read-only" - -- | "read-write" - -- | "write-only" - -- | "not-accessible" - -- Status ::= "mandatory" - -- | "optional" - -- | "obsolete" - -- | "deprecated" - -- - -- DescrPart ::= - -- "DESCRIPTION" value (description DisplayString) - -- | empty - -- - -- ReferPart ::= - -- "REFERENCE" value (reference DisplayString) - -- | empty - -- - -- IndexPart ::= - -- "INDEX" "{" IndexTypes "}" - -- | empty - -- IndexTypes ::= - -- IndexType | IndexTypes "," IndexType - -- IndexType ::= - -- if indexobject, use the SYNTAX - -- value of the correspondent - -- OBJECT-TYPE invocation - -- value (indexobject ObjectName) - -- otherwise use named SMI type - -- must conform to IndexSyntax below - -- | type (indextype) - -- - -- DefValPart ::= - -- "DEFVAL" "{" value (defvalue ObjectSyntax) "}" - -- | empty - -- END - -- - -- IndexSyntax ::= - -- CHOICE { - -- number - -- INTEGER (0..MAX), - -- string - -- OCTET STRING, - -- object - -- OBJECT IDENTIFIER, - -- address - -- NetworkAddress, - -- ipAddress - -- IpAddress - -- } -END diff --git a/mibs/orig/RFC-1215 b/mibs/orig/RFC-1215 deleted file mode 100644 index 7698006..0000000 --- a/mibs/orig/RFC-1215 +++ /dev/null @@ -1,110 +0,0 @@ - --- --- Changes to RFC1215 (A Convention for Defining Traps for use with the SNMP): --- Make it into a proper ASN.1 definition module (RFC-1215). --- Add appropriate IMPORTS. --- - RFC-1215 DEFINITIONS ::= BEGIN - - IMPORTS - ObjectName - FROM RFC1155-SMI - snmp, ifIndex, egpNeighAddr - FROM RFC1213-MIB; - --- --- SMIv1 Trap macro definition. --- - TRAP-TYPE MACRO ::= - BEGIN - TYPE NOTATION ::= "ENTERPRISE" value - (enterprise OBJECT IDENTIFIER) - VarPart - DescrPart - ReferPart - VALUE NOTATION ::= value (VALUE INTEGER) - - VarPart ::= - "VARIABLES" "{" VarTypes "}" - | empty - VarTypes ::= - VarType | VarTypes "," VarType - VarType ::= - value (vartype ObjectName) - - DescrPart ::= - "DESCRIPTION" value (description DisplayString) - | empty - - ReferPart ::= - "REFERENCE" value (reference DisplayString) - | empty - - END - --- --- SNMPv1 standard trap definitions. --- - coldStart TRAP-TYPE - ENTERPRISE snmp - DESCRIPTION - "A coldStart trap signifies that the sending - protocol entity is reinitializing itself such - that the agent's configuration or the rotocol - entity implementation may be altered." - ::= 0 - - warmStart TRAP-TYPE - ENTERPRISE snmp - DESCRIPTION - "A warmStart trap signifies that the sending - protocol entity is reinitializing itself such - that neither the agent configuration nor the - protocol entity implementation is altered." - ::= 1 - - linkDown TRAP-TYPE - ENTERPRISE snmp - VARIABLES { ifIndex } - DESCRIPTION - "A linkDown trap signifies that the sending - protocol entity recognizes a failure in one of - the communication links represented in the - agent's configuration." - ::= 2 - - linkUp TRAP-TYPE - ENTERPRISE snmp - VARIABLES { ifIndex } - DESCRIPTION - "A linkUp trap signifies that the sending - protocol entity recognizes that one of the - communication links represented in the agent's - configuration has come up." - ::= 3 - - authenticationFailure TRAP-TYPE - ENTERPRISE snmp - DESCRIPTION - "An authenticationFailure trap signifies that - the sending protocol entity is the addressee - of a protocol message that is not properly - authenticated. While implementations of the - SNMP must be capable of generating this trap, - they must also be capable of suppressing the - emission of such traps via an implementation- - specific mechanism." - ::= 4 - - - egpNeighborLoss TRAP-TYPE - ENTERPRISE snmp - VARIABLES { egpNeighAddr } - DESCRIPTION - "An egpNeighborLoss trap signifies that an EGP - neighbor for whom the sending protocol entity - was an EGP peer has been marked down and the - peer relationship no longer obtains." - ::= 5 - -END diff --git a/mibs/orig/RFC1155-SMI b/mibs/orig/RFC1155-SMI deleted file mode 100644 index 94f7029..0000000 --- a/mibs/orig/RFC1155-SMI +++ /dev/null @@ -1,183 +0,0 @@ --- smi.my - Internet-standard SMI definitions - --- $Header: C:/8Archive/shdsl/OEM/slc1024/zyxel/atmos/source/snmpr/mibs/rcs/RFC1155-SMI.my 1.1 2002/04/29 05:19:52 swtseng Exp $ --- --- Contributed by NYSERNet Inc. This work was partially supported by the --- U.S. Defense Advanced Research Projects Agency and the Rome Air Development --- Center of the U.S. Air Force Systems Command under contract number --- F30602-88-C-0016. --- --- - --- --- NOTICE --- --- Acquisition, use, and distribution of this module and related --- materials are subject to the restrictions of a license agreement. --- Consult the Preface in the User's Manual for the full terms of --- this agreement. --- --- - - -RFC1155-SMI DEFINITIONS ::= BEGIN - -EXPORTS -- EVERYTHING - internet, directory, mgmt, - experimental, private, enterprises, - OBJECT-TYPE, ObjectName, ObjectSyntax, SimpleSyntax, - ApplicationSyntax, NetworkAddress, IpAddress, - Counter, Gauge, TimeTicks, Opaque; - --- the path to the root - -internet OBJECT IDENTIFIER ::= { iso org(3) dod(6) 1 } - -directory OBJECT IDENTIFIER ::= { internet 1 } - -mgmt OBJECT IDENTIFIER ::= { internet 2 } - -experimental OBJECT IDENTIFIER ::= { internet 3 } - -private OBJECT IDENTIFIER ::= { internet 4 } -enterprises OBJECT IDENTIFIER ::= { private 1 } - - --- BSD UNIX-specific stuff - -unix OBJECT IDENTIFIER ::= { enterprises 4 } - - --- the agents group - -agents OBJECT IDENTIFIER ::= { unix 1 } - --- original "4BSD/ISODE SNMP" { agents 1 } - --- versions of the "4BSD/ISODE SNMP" agent are now under { agents 2 } -fourBSD-isode OBJECT IDENTIFIER ::= { agents 2 } --- fourBSD-isode.1: add SMUX --- fourBSD-isode.2: add views --- fourBSD-isode.3: add sets - - --- the SMUX peer group - -peers OBJECT IDENTIFIER ::= { unix 3 } - --- versions of the unixd program are under { peers 1 } -unixd OBJECT IDENTIFIER ::= { peers 1 } --- the current version is unixd.1 - - --- definition of object types - --- OBJECT-TYPE MACRO ::= --- BEGIN --- TYPE NOTATION ::= "SYNTAX" type (TYPE ObjectSyntax) --- "ACCESS" Access --- "STATUS" Status --- VALUE NOTATION ::= value (VALUE ObjectName) --- --- Access ::= "read-only" --- | "read-write" --- | "write-only" --- | "not-accessible" --- Status ::= "mandatory" --- | "optional" --- | "obsolete" --- | "deprecated" --- END - - --- names of objects in the MIB - -ObjectName ::= - OBJECT IDENTIFIER - --- syntax of objects in the MIB - -ObjectSyntax ::= - CHOICE { - simple - SimpleSyntax, - --- note that simple SEQUENCEs are not directly --- mentioned here to keep things simple (i.e., --- prevent mis-use). However, application-wide --- types which are IMPLICITly encoded simple --- SEQUENCEs may appear in the following CHOICE - - application-wide - ApplicationSyntax - } - -SimpleSyntax ::= - CHOICE { - number - INTEGER, - - string - OCTET STRING, - - object - OBJECT IDENTIFIER, - - empty - NULL - } - -ApplicationSyntax ::= - CHOICE { - address - NetworkAddress, - - counter - Counter, - - gauge - Gauge, - - ticks - TimeTicks, - - arbitrary - Opaque - --- other application-wide types, as they are --- defined, will be added here - } - - --- application-wide types - -NetworkAddress ::= - CHOICE { - internet - IpAddress - } - -IpAddress ::= - [APPLICATION 0] -- in network-byte order - IMPLICIT OCTET STRING (SIZE (4)) - -Counter ::= - [APPLICATION 1] - IMPLICIT INTEGER (0..4294967295) - -Gauge ::= - [APPLICATION 2] - IMPLICIT INTEGER (0..4294967295) - -TimeTicks ::= - [APPLICATION 3] - IMPLICIT INTEGER (0..4294967295) - -Opaque ::= - [APPLICATION 4] -- arbitrary ASN.1 value, - IMPLICIT OCTET STRING -- "double-wrapped" - -DisplayString ::= - OCTET STRING - -END diff --git a/mibs/orig/RFC1213-MIB b/mibs/orig/RFC1213-MIB deleted file mode 100644 index f89f8bf..0000000 --- a/mibs/orig/RFC1213-MIB +++ /dev/null @@ -1,2618 +0,0 @@ --- ***************************************************************** --- RFC1213-MIB.my: MIB-II MIB file --- --- April 1994, Jeffrey T. Johnson --- --- Copyright (c) 1994-1996 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** --- --- This mib was extracted from RFC 1213 --- The following changes have been applied: --- The enumerations unknown(4) and dormant(5) have been added to --- ifOperStatus to reflect a change to the ifTable introduced in --- RFC 1573 --- --- The SYNTAX of ifType has been changed to IANAifType, to reflect the --- change to the ifTable introduced in RFC1573. - - RFC1213-MIB DEFINITIONS ::= BEGIN - - IMPORTS - mgmt, NetworkAddress, IpAddress, Counter, Gauge, - TimeTicks - FROM RFC1155-SMI - OBJECT-TYPE - FROM RFC-1212 - TEXTUAL-CONVENTION - FROM SNMPv2-TC - IANAifType - FROM IANAifType-MIB; - - -- This MIB module uses the extended OBJECT-TYPE macro as - -- defined in [14]; - - - -- MIB-II (same prefix as MIB-I) - - mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } - - -- textual conventions - - DisplayString ::= - OCTET STRING - -- This data type is used to model textual information taken - -- from the NVT ASCII character set. By convention, objects - -- with this syntax are declared as having - -- - -- SIZE (0..255) - - PhysAddress ::= - OCTET STRING - -- This data type is used to model media addresses. For many - -- types of media, this will be in a binary representation. - -- For example, an ethernet address would be represented as - -- a string of 6 octets. - - - -- groups in MIB-II - - system OBJECT IDENTIFIER ::= { mib-2 1 } - - interfaces OBJECT IDENTIFIER ::= { mib-2 2 } - - at OBJECT IDENTIFIER ::= { mib-2 3 } - - ip OBJECT IDENTIFIER ::= { mib-2 4 } - - icmp OBJECT IDENTIFIER ::= { mib-2 5 } - - tcp OBJECT IDENTIFIER ::= { mib-2 6 } - - udp OBJECT IDENTIFIER ::= { mib-2 7 } - - egp OBJECT IDENTIFIER ::= { mib-2 8 } - - -- historical (some say hysterical) - -- cmot OBJECT IDENTIFIER ::= { mib-2 9 } - - transmission OBJECT IDENTIFIER ::= { mib-2 10 } - - snmp OBJECT IDENTIFIER ::= { mib-2 11 } - - - -- the System group - - -- Implementation of the System group is mandatory for all - -- systems. If an agent is not configured to have a value - -- for any of these variables, a string of length 0 is - -- returned. - - sysDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A textual description of the entity. This value - should include the full name and version - identification of the system's hardware type, - software operating-system, and networking - software. It is mandatory that this only contain - printable ASCII characters." - ::= { system 1 } - - sysObjectID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The vendor's authoritative identification of the - network management subsystem contained in the - entity. This value is allocated within the SMI - enterprises subtree (1.3.6.1.4.1) and provides an - easy and unambiguous means for determining `what - kind of box' is being managed. For example, if - vendor `Flintstones, Inc.' was assigned the - subtree 1.3.6.1.4.1.4242, it could assign the - identifier 1.3.6.1.4.1.4242.1.1 to its `Fred - Router'." - ::= { system 2 } - - sysUpTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The time (in hundredths of a second) since the - network management portion of the system was last - re-initialized." - ::= { system 3 } - - sysContact OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The textual identification of the contact person - for this managed node, together with information - on how to contact this person." - ::= { system 4 } - - sysName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An administratively-assigned name for this - managed node. By convention, this is the node's - fully-qualified domain name." - ::= { system 5 } - - sysLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The physical location of this node (e.g., - `telephone closet, 3rd floor')." - ::= { system 6 } - - sysServices OBJECT-TYPE - SYNTAX INTEGER (0..127) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A value which indicates the set of services that - this entity primarily offers. - - The value is a sum. This sum initially takes the - value zero, Then, for each layer, L, in the range - 1 through 7, that this node performs transactions - for, 2 raised to (L - 1) is added to the sum. For - example, a node which performs primarily routing - functions would have a value of 4 (2^(3-1)). In - contrast, a node which is a host offering - application services would have a value of 72 - (2^(4-1) + 2^(7-1)). Note that in the context of - the Internet suite of protocols, values should be - calculated accordingly: - - layer functionality - 1 physical (e.g., repeaters) - 2 datalink/subnetwork (e.g., bridges) - 3 internet (e.g., IP gateways) - 4 end-to-end (e.g., IP hosts) - 7 applications (e.g., mail relays) - - For systems including OSI protocols, layers 5 and - 6 may also be counted." - ::= { system 7 } - - -- the Interfaces group - - -- Implementation of the Interfaces group is mandatory for - -- all systems. - - ifNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of network interfaces (regardless of - their current state) present on this system." - ::= { interfaces 1 } - - - -- the Interfaces table - - -- The Interfaces table contains information on the entity's - -- interfaces. Each interface is thought of as being - -- attached to a `subnetwork'. Note that this term should - -- not be confused with `subnet' which refers to an - -- addressing partitioning scheme used in the Internet suite - -- of protocols. - - ifTable OBJECT-TYPE - SYNTAX SEQUENCE OF IfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of interface entries. The number of - entries is given by the value of ifNumber." - ::= { interfaces 2 } - - ifEntry OBJECT-TYPE - SYNTAX IfEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An interface entry containing objects at the - subnetwork layer and below for a particular - interface." - INDEX { ifIndex } - ::= { ifTable 1 } - - IfEntry ::= - SEQUENCE { - ifIndex - INTEGER, - ifDescr - DisplayString, - ifType - IANAifType, - ifMtu - INTEGER, - ifSpeed - Gauge, - ifPhysAddress - PhysAddress, - ifAdminStatus - INTEGER, - ifOperStatus - INTEGER, - ifLastChange - TimeTicks, - ifInOctets - Counter, - ifInUcastPkts - Counter, - ifInNUcastPkts - Counter, - ifInDiscards - Counter, - ifInErrors - Counter, - ifInUnknownProtos - Counter, - ifOutOctets - Counter, - ifOutUcastPkts - Counter, - ifOutNUcastPkts - Counter, - ifOutDiscards - Counter, - ifOutErrors - Counter, - ifOutQLen - Gauge, - ifSpecific - OBJECT IDENTIFIER - } - - ifIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A unique value for each interface. Its value - ranges between 1 and the value of ifNumber. The - value for each interface must remain constant at - least from one re-initialization of the entity's - network management system to the next re- - initialization." - ::= { ifEntry 1 } - - ifDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A textual string containing information about the - interface. This string should include the name of - the manufacturer, the product name and the version - of the hardware interface." - ::= { ifEntry 2 } - - ifType OBJECT-TYPE - SYNTAX IANAifType - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The type of interface. Additional values for ifType - are assigned by the Internet Assigned Numbers - Authority (IANA), through updating the syntax of the - IANAifType textual convention." - ::= { ifEntry 3 } - - - ifMtu OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the largest datagram which can be - sent/received on the interface, specified in - octets. For interfaces that are used for - transmitting network datagrams, this is the size - of the largest network datagram that can be sent - on the interface." - ::= { ifEntry 4 } - - ifSpeed OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An estimate of the interface's current bandwidth - in bits per second. For interfaces which do not - vary in bandwidth or for those where no accurate - estimation can be made, this object should contain - the nominal bandwidth." - ::= { ifEntry 5 } - - ifPhysAddress OBJECT-TYPE - SYNTAX PhysAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The interface's address at the protocol layer - immediately `below' the network layer in the - protocol stack. For interfaces which do not have - such an address (e.g., a serial line), this object - should contain an octet string of zero length." - ::= { ifEntry 6 } - - ifAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), -- ready to pass packets - down(2), - testing(3) -- in some test mode - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The desired state of the interface. The - testing(3) state indicates that no operational - packets can be passed." - ::= { ifEntry 7 } - - ifOperStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), -- ready to pass packets - down(2), - testing(3), -- in some test mode - unknown(4), - dormant(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current operational state of the interface. - The testing(3) state indicates that no operational - packets can be passed." - ::= { ifEntry 8 } - - ifLastChange OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the time the interface - entered its current operational state. If the - current state was entered prior to the last re- - initialization of the local network management - subsystem, then this object contains a zero - value." - ::= { ifEntry 9 } - - ifInOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets received on the - interface, including framing characters." - ::= { ifEntry 10 } - - ifInUcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of subnetwork-unicast packets - delivered to a higher-layer protocol." - ::= { ifEntry 11 } - - ifInNUcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of non-unicast (i.e., subnetwork- - broadcast or subnetwork-multicast) packets - delivered to a higher-layer protocol." - ::= { ifEntry 12 } - - ifInDiscards OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of inbound packets which were chosen - to be discarded even though no errors had been - detected to prevent their being deliverable to a - higher-layer protocol. One possible reason for - discarding such a packet could be to free up - buffer space." - ::= { ifEntry 13 } - - ifInErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of inbound packets that contained - errors preventing them from being deliverable to a - higher-layer protocol." - ::= { ifEntry 14 } - - ifInUnknownProtos OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets received via the interface - which were discarded because of an unknown or - unsupported protocol." - ::= { ifEntry 15 } - - ifOutOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets transmitted out of the - interface, including framing characters." - ::= { ifEntry 16 } - - ifOutUcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets that higher-level - protocols requested be transmitted to a - subnetwork-unicast address, including those that - were discarded or not sent." - ::= { ifEntry 17 } - - ifOutNUcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets that higher-level - protocols requested be transmitted to a non- - unicast (i.e., a subnetwork-broadcast or - subnetwork-multicast) address, including those - that were discarded or not sent." - ::= { ifEntry 18 } - - ifOutDiscards OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outbound packets which were chosen - to be discarded even though no errors had been - detected to prevent their being transmitted. One - possible reason for discarding such a packet could - be to free up buffer space." - ::= { ifEntry 19 } - - ifOutErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of outbound packets that could not be - transmitted because of errors." - ::= { ifEntry 20 } - - ifOutQLen OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The length of the output packet queue (in - packets)." - ::= { ifEntry 21 } - - ifSpecific OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A reference to MIB definitions specific to the - particular media being used to realize the - interface. For example, if the interface is - realized by an ethernet, then the value of this - object refers to a document defining objects - specific to ethernet. If this information is not - present, its value should be set to the OBJECT - IDENTIFIER { 0 0 }, which is a syntactically valid - object identifier, and any conformant - implementation of ASN.1 and BER must be able to - generate and recognize this value." - ::= { ifEntry 22 } - - - -- the Address Translation group - - -- Implementation of the Address Translation group is - -- mandatory for all systems. Note however that this group - -- is deprecated by MIB-II. That is, it is being included - -- solely for compatibility with MIB-I nodes, and will most - -- likely be excluded from MIB-III nodes. From MIB-II and - -- onwards, each network protocol group contains its own - -- address translation tables. - - -- The Address Translation group contains one table which is - -- the union across all interfaces of the translation tables - -- for converting a NetworkAddress (e.g., an IP address) into - -- a subnetwork-specific address. For lack of a better term, - -- this document refers to such a subnetwork-specific address - -- as a `physical' address. - - -- Examples of such translation tables are: for broadcast - -- media where ARP is in use, the translation table is - -- equivalent to the ARP cache; or, on an X.25 network where - -- non-algorithmic translation to X.121 addresses is - -- required, the translation table contains the - -- NetworkAddress to X.121 address equivalences. - - atTable OBJECT-TYPE - SYNTAX SEQUENCE OF AtEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "The Address Translation tables contain the - NetworkAddress to `physical' address equivalences. - Some interfaces do not use translation tables for - determining address equivalences (e.g., DDN-X.25 - has an algorithmic method); if all interfaces are - of this type, then the Address Translation table - is empty, i.e., has zero entries." - ::= { at 1 } - - atEntry OBJECT-TYPE - SYNTAX AtEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Each entry contains one NetworkAddress to - `physical' address equivalence." - INDEX { atIfIndex, - atNetAddress } - ::= { atTable 1 } - - AtEntry ::= - SEQUENCE { - atIfIndex - INTEGER, - atPhysAddress - PhysAddress, - atNetAddress - NetworkAddress - } - - atIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS deprecated - DESCRIPTION - "The interface on which this entry's equivalence - is effective. The interface identified by a - particular value of this index is the same - interface as identified by the same value of - ifIndex." - ::= { atEntry 1 } - - atPhysAddress OBJECT-TYPE - SYNTAX PhysAddress - ACCESS read-write - STATUS deprecated - DESCRIPTION - "The media-dependent `physical' address. - - Setting this object to a null string (one of zero - length) has the effect of invaliding the - corresponding entry in the atTable object. That - is, it effectively disassociates the interface - identified with said entry from the mapping - identified with said entry. It is an - implementation-specific matter as to whether the - agent removes an invalidated entry from the table. - Accordingly, management stations must be prepared - to receive tabular information from agents that - corresponds to entries not currently in use. - Proper interpretation of such entries requires - examination of the relevant atPhysAddress object." - ::= { atEntry 2 } - - atNetAddress OBJECT-TYPE - SYNTAX NetworkAddress - ACCESS read-write - STATUS deprecated - DESCRIPTION - "The NetworkAddress (e.g., the IP address) - corresponding to the media-dependent `physical' - address." - ::= { atEntry 3 } - - - -- the IP group - - -- Implementation of the IP group is mandatory for all - -- systems. - - ipForwarding OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), -- acting as a gateway - not-forwarding(2) -- NOT acting as a gateway - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The indication of whether this entity is acting - as an IP gateway in respect to the forwarding of - datagrams received by, but not addressed to, this - entity. IP gateways forward datagrams. IP hosts - do not (except those source-routed via the host). - - Note that for some managed nodes, this object may - take on only a subset of the values possible. - Accordingly, it is appropriate for an agent to - return a `badValue' response if a management - station attempts to change this object to an - inappropriate value." - ::= { ip 1 } - - ipDefaultTTL OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The default value inserted into the Time-To-Live - field of the IP header of datagrams originated at - this entity, whenever a TTL value is not supplied - by the transport layer protocol." - ::= { ip 2 } - - ipInReceives OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of input datagrams received from - interfaces, including those received in error." - ::= { ip 3 } - - ipInHdrErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input datagrams discarded due to - errors in their IP headers, including bad - checksums, version number mismatch, other format - errors, time-to-live exceeded, errors discovered - in processing their IP options, etc." - ::= { ip 4 } - - ipInAddrErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input datagrams discarded because - the IP address in their IP header's destination - field was not a valid address to be received at - this entity. This count includes invalid - addresses (e.g., 0.0.0.0) and addresses of - unsupported Classes (e.g., Class E). For entities - which are not IP Gateways and therefore do not - forward datagrams, this counter includes datagrams - discarded because the destination address was not - a local address." - ::= { ip 5 } - - ipForwDatagrams OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input datagrams for which this - entity was not their final IP destination, as a - result of which an attempt was made to find a - route to forward them to that final destination. - In entities which do not act as IP Gateways, this - counter will include only those packets which were - Source-Routed via this entity, and the Source- - Route option processing was successful." - ::= { ip 6 } - - ipInUnknownProtos OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of locally-addressed datagrams - received successfully but discarded because of an - unknown or unsupported protocol." - ::= { ip 7 } - - ipInDiscards OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of input IP datagrams for which no - problems were encountered to prevent their - continued processing, but which were discarded - (e.g., for lack of buffer space). Note that this - counter does not include any datagrams discarded - while awaiting re-assembly." - ::= { ip 8 } - - ipInDelivers OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of input datagrams successfully - delivered to IP user-protocols (including ICMP)." - ::= { ip 9 } - - ipOutRequests OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of IP datagrams which local IP - user-protocols (including ICMP) supplied to IP in - requests for transmission. Note that this counter - does not include any datagrams counted in - ipForwDatagrams." - ::= { ip 10 } - - ipOutDiscards OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of output IP datagrams for which no - problem was encountered to prevent their - transmission to their destination, but which were - discarded (e.g., for lack of buffer space). Note - that this counter would include datagrams counted - in ipForwDatagrams if any such packets met this - (discretionary) discard criterion." - ::= { ip 11 } - - ipOutNoRoutes OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of IP datagrams discarded because no - route could be found to transmit them to their - destination. Note that this counter includes any - packets counted in ipForwDatagrams which meet this - `no-route' criterion. Note that this includes any - datagrams which a host cannot route because all of - its default gateways are down." - ::= { ip 12 } - - ipReasmTimeout OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of seconds which received - fragments are held while they are awaiting - reassembly at this entity." - ::= { ip 13 } - - ipReasmReqds OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of IP fragments received which needed - to be reassembled at this entity." - ::= { ip 14 } - - ipReasmOKs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of IP datagrams successfully re- - assembled." - ::= { ip 15 } - - ipReasmFails OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of failures detected by the IP re- - assembly algorithm (for whatever reason: timed - out, errors, etc). Note that this is not - necessarily a count of discarded IP fragments - since some algorithms (notably the algorithm in - RFC 815) can lose track of the number of fragments - by combining them as they are received." - ::= { ip 16 } - - ipFragOKs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of IP datagrams that have been - successfully fragmented at this entity." - ::= { ip 17 } - - ipFragFails OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of IP datagrams that have been - discarded because they needed to be fragmented at - this entity but could not be, e.g., because their - Don't Fragment flag was set." - ::= { ip 18 } - - ipFragCreates OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of IP datagram fragments that have - been generated as a result of fragmentation at - this entity." - ::= { ip 19 } - - - - -- the IP address table - - -- The IP address table contains this entity's IP addressing - -- information. - - ipAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpAddrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The table of addressing information relevant to - this entity's IP addresses." - ::= { ip 20 } - - ipAddrEntry OBJECT-TYPE - SYNTAX IpAddrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The addressing information for one of this - entity's IP addresses." - INDEX { ipAdEntAddr } - ::= { ipAddrTable 1 } - - IpAddrEntry ::= - SEQUENCE { - ipAdEntAddr - IpAddress, - ipAdEntIfIndex - INTEGER, - ipAdEntNetMask - IpAddress, - ipAdEntBcastAddr - INTEGER, - ipAdEntReasmMaxSize - INTEGER (0..65535) - } - - ipAdEntAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP address to which this entry's addressing - information pertains." - ::= { ipAddrEntry 1 } - - - ipAdEntIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index value which uniquely identifies the - interface to which this entry is applicable. The - interface identified by a particular value of this - index is the same interface as identified by the - same value of ifIndex." - ::= { ipAddrEntry 2 } - - ipAdEntNetMask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The subnet mask associated with the IP address of - this entry. The value of the mask is an IP - address with all the network bits set to 1 and all - the hosts bits set to 0." - ::= { ipAddrEntry 3 } - - ipAdEntBcastAddr OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of the least-significant bit in the IP - broadcast address used for sending datagrams on - the (logical) interface associated with the IP - address of this entry. For example, when the - Internet standard all-ones broadcast address is - used, the value will be 1. This value applies to - both the subnet and network broadcasts addresses - used by the entity on this (logical) interface." - ::= { ipAddrEntry 4 } - - ipAdEntReasmMaxSize OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The size of the largest IP datagram which this - entity can re-assemble from incoming IP fragmented - datagrams received on this interface." - ::= { ipAddrEntry 5 } - - -- the IP routing table - - -- The IP routing table contains an entry for each route - -- presently known to this entity. - - ipRouteTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpRouteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This entity's IP Routing table." - ::= { ip 21 } - - ipRouteEntry OBJECT-TYPE - SYNTAX IpRouteEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A route to a particular destination." - INDEX { ipRouteDest } - ::= { ipRouteTable 1 } - - IpRouteEntry ::= - SEQUENCE { - ipRouteDest - IpAddress, - ipRouteIfIndex - INTEGER, - ipRouteMetric1 - INTEGER, - ipRouteMetric2 - INTEGER, - ipRouteMetric3 - INTEGER, - ipRouteMetric4 - INTEGER, - ipRouteNextHop - IpAddress, - ipRouteType - INTEGER, - ipRouteProto - INTEGER, - ipRouteAge - INTEGER, - ipRouteMask - IpAddress, - ipRouteMetric5 - INTEGER, - ipRouteInfo - OBJECT IDENTIFIER - } - - ipRouteDest OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The destination IP address of this route. An - entry with a value of 0.0.0.0 is considered a - default route. Multiple routes to a single - destination can appear in the table, but access to - such multiple entries is dependent on the table- - access mechanisms defined by the network - management protocol in use." - ::= { ipRouteEntry 1 } - - ipRouteIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The index value which uniquely identifies the - local interface through which the next hop of this - route should be reached. The interface identified - by a particular value of this index is the same - interface as identified by the same value of - ifIndex." - ::= { ipRouteEntry 2 } - - ipRouteMetric1 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The primary routing metric for this route. The - semantics of this metric are determined by the - routing-protocol specified in the route's - ipRouteProto value. If this metric is not used, - its value should be set to -1." - ::= { ipRouteEntry 3 } - - ipRouteMetric2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the - routing-protocol specified in the route's - ipRouteProto value. If this metric is not used, - its value should be set to -1." - ::= { ipRouteEntry 4 } - - ipRouteMetric3 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the - routing-protocol specified in the route's - ipRouteProto value. If this metric is not used, - its value should be set to -1." - ::= { ipRouteEntry 5 } - - ipRouteMetric4 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the - routing-protocol specified in the route's - ipRouteProto value. If this metric is not used, - its value should be set to -1." - ::= { ipRouteEntry 6 } - - ipRouteNextHop OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The IP address of the next hop of this route. - (In the case of a route bound to an interface - which is realized via a broadcast media, the value - of this field is the agent's IP address on that - interface.)" - ::= { ipRouteEntry 7 } - - ipRouteType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - - invalid(2), -- an invalidated route - -- route to directly - direct(3), -- connected (sub-)network - - -- route to a non-local - indirect(4) -- host/network/sub-network - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The type of route. Note that the values - direct(3) and indirect(4) refer to the notion of - direct and indirect routing in the IP - architecture. - - Setting this object to the value invalid(2) has - the effect of invalidating the corresponding entry - in the ipRouteTable object. That is, it - effectively disassociates the destination - identified with said entry from the route - identified with said entry. It is an - implementation-specific matter as to whether the - agent removes an invalidated entry from the table. - Accordingly, management stations must be prepared - to receive tabular information from agents that - corresponds to entries not currently in use. - Proper interpretation of such entries requires - examination of the relevant ipRouteType object." - ::= { ipRouteEntry 8 } - - ipRouteProto OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - - -- non-protocol information, - -- e.g., manually configured - local(2), -- entries - - -- set via a network - netmgmt(3), -- management protocol - - -- obtained via ICMP, - icmp(4), -- e.g., Redirect - - -- the remaining values are - -- all gateway routing - -- protocols - egp(5), - ggp(6), - hello(7), - rip(8), - is-is(9), - es-is(10), - ciscoIgrp(11), - bbnSpfIgp(12), - ospf(13), - bgp(14) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The routing mechanism via which this route was - learned. Inclusion of values for gateway routing - protocols is not intended to imply that hosts - should support those protocols." - ::= { ipRouteEntry 9 } - - ipRouteAge OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of seconds since this route was last - updated or otherwise determined to be correct. - Note that no semantics of `too old' can be implied - except through knowledge of the routing protocol - by which the route was learned." - ::= { ipRouteEntry 10 } - - ipRouteMask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicate the mask to be logical-ANDed with the - destination address before being compared to the - value in the ipRouteDest field. For those systems - that do not support arbitrary subnet masks, an - agent constructs the value of the ipRouteMask by - determining whether the value of the correspondent - ipRouteDest field belong to a class-A, B, or C - network, and then using one of: - - mask network - 255.0.0.0 class-A - 255.255.0.0 class-B - 255.255.255.0 class-C - - If the value of the ipRouteDest is 0.0.0.0 (a - default route), then the mask value is also - 0.0.0.0. It should be noted that all IP routing - subsystems implicitly use this mechanism." - ::= { ipRouteEntry 11 } - - ipRouteMetric5 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An alternate routing metric for this route. The - semantics of this metric are determined by the - routing-protocol specified in the route's - ipRouteProto value. If this metric is not used, - its value should be set to -1." - ::= { ipRouteEntry 12 } - - ipRouteInfo OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A reference to MIB definitions specific to the - particular routing protocol which is responsible - for this route, as determined by the value - specified in the route's ipRouteProto value. If - this information is not present, its value should - be set to the OBJECT IDENTIFIER { 0 0 }, which is - a syntactically valid object identifier, and any - conformant implementation of ASN.1 and BER must be - able to generate and recognize this value." - ::= { ipRouteEntry 13 } - - - -- the IP Address Translation table - - -- The IP address translation table contain the IpAddress to - -- `physical' address equivalences. Some interfaces do not - -- use translation tables for determining address - -- equivalences (e.g., DDN-X.25 has an algorithmic method); - -- if all interfaces are of this type, then the Address - -- Translation table is empty, i.e., has zero entries. - - ipNetToMediaTable OBJECT-TYPE - SYNTAX SEQUENCE OF IpNetToMediaEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The IP Address Translation table used for mapping - from IP addresses to physical addresses." - ::= { ip 22 } - - ipNetToMediaEntry OBJECT-TYPE - SYNTAX IpNetToMediaEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Each entry contains one IpAddress to `physical' - address equivalence." - INDEX { ipNetToMediaIfIndex, - ipNetToMediaNetAddress } - ::= { ipNetToMediaTable 1 } - - IpNetToMediaEntry ::= - SEQUENCE { - ipNetToMediaIfIndex - INTEGER, - ipNetToMediaPhysAddress - PhysAddress, - ipNetToMediaNetAddress - IpAddress, - ipNetToMediaType - INTEGER - } - - ipNetToMediaIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interface on which this entry's equivalence - is effective. The interface identified by a - particular value of this index is the same - interface as identified by the same value of - ifIndex." - ::= { ipNetToMediaEntry 1 } - - ipNetToMediaPhysAddress OBJECT-TYPE - SYNTAX PhysAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The media-dependent `physical' address." - ::= { ipNetToMediaEntry 2 } - - ipNetToMediaNetAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The IpAddress corresponding to the media- - dependent `physical' address." - ::= { ipNetToMediaEntry 3 } - - ipNetToMediaType OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - invalid(2), -- an invalidated mapping - dynamic(3), - static(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The type of mapping. - - Setting this object to the value invalid(2) has - the effect of invalidating the corresponding entry - in the ipNetToMediaTable. That is, it effectively - disassociates the interface identified with said - entry from the mapping identified with said entry. - It is an implementation-specific matter as to - whether the agent removes an invalidated entry - from the table. Accordingly, management stations - must be prepared to receive tabular information - from agents that corresponds to entries not - currently in use. Proper interpretation of such - entries requires examination of the relevant - ipNetToMediaType object." - ::= { ipNetToMediaEntry 4 } - - - -- additional IP objects - - ipRoutingDiscards OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of routing entries which were chosen - to be discarded even though they are valid. One - possible reason for discarding such an entry could - be to free-up buffer space for other routing - entries." - ::= { ip 23 } - - - -- the ICMP group - - -- Implementation of the ICMP group is mandatory for all - -- systems. - - icmpInMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ICMP messages which the - entity received. Note that this counter includes - all those counted by icmpInErrors." - ::= { icmp 1 } - - icmpInErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP messages which the entity - received but determined as having ICMP-specific - errors (bad ICMP checksums, bad length, etc.)." - ::= { icmp 2 } - - icmpInDestUnreachs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Destination Unreachable - messages received." - ::= { icmp 3 } - - icmpInTimeExcds OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Time Exceeded messages - received." - ::= { icmp 4 } - - - icmpInParmProbs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Parameter Problem messages - received." - ::= { icmp 5 } - - icmpInSrcQuenchs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Source Quench messages - received." - ::= { icmp 6 } - - icmpInRedirects OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Redirect messages received." - ::= { icmp 7 } - - icmpInEchos OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Echo (request) messages - received." - ::= { icmp 8 } - - icmpInEchoReps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Echo Reply messages received." - ::= { icmp 9 } - - icmpInTimestamps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Timestamp (request) messages - received." - ::= { icmp 10 } - - icmpInTimestampReps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Timestamp Reply messages - received." - ::= { icmp 11 } - - icmpInAddrMasks OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Address Mask Request messages - received." - ::= { icmp 12 } - - icmpInAddrMaskReps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Address Mask Reply messages - received." - ::= { icmp 13 } - - icmpOutMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ICMP messages which this - entity attempted to send. Note that this counter - includes all those counted by icmpOutErrors." - ::= { icmp 14 } - - icmpOutErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP messages which this entity did - not send due to problems discovered within ICMP - such as a lack of buffers. This value should not - include errors discovered outside the ICMP layer - such as the inability of IP to route the resultant - datagram. In some implementations there may be no - types of error which contribute to this counter's - value." - ::= { icmp 15 } - - icmpOutDestUnreachs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Destination Unreachable - messages sent." - ::= { icmp 16 } - - icmpOutTimeExcds OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Time Exceeded messages sent." - ::= { icmp 17 } - - icmpOutParmProbs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Parameter Problem messages - sent." - ::= { icmp 18 } - - icmpOutSrcQuenchs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Source Quench messages sent." - ::= { icmp 19 } - - icmpOutRedirects OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Redirect messages sent. For a - host, this object will always be zero, since hosts - do not send redirects." - ::= { icmp 20 } - - icmpOutEchos OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Echo (request) messages sent." - ::= { icmp 21 } - - icmpOutEchoReps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Echo Reply messages sent." - ::= { icmp 22 } - - icmpOutTimestamps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Timestamp (request) messages - sent." - ::= { icmp 23 } - - icmpOutTimestampReps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Timestamp Reply messages - sent." - ::= { icmp 24 } - - icmpOutAddrMasks OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Address Mask Request messages - sent." - ::= { icmp 25 } - - - icmpOutAddrMaskReps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ICMP Address Mask Reply messages - sent." - ::= { icmp 26 } - - - -- the TCP group - - -- Implementation of the TCP group is mandatory for all - -- systems that implement the TCP. - - -- Note that instances of object types that represent - -- information about a particular TCP connection are - -- transient; they persist only as long as the connection - -- in question. - - tcpRtoAlgorithm OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - - constant(2), -- a constant rto - rsre(3), -- MIL-STD-1778, Appendix B - vanj(4) -- Van Jacobson's algorithm [10] - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The algorithm used to determine the timeout value - used for retransmitting unacknowledged octets." - ::= { tcp 1 } - - tcpRtoMin OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The minimum value permitted by a TCP - implementation for the retransmission timeout, - measured in milliseconds. More refined semantics - for objects of this type depend upon the algorithm - used to determine the retransmission timeout. In - particular, when the timeout algorithm is rsre(3), - an object of this type has the semantics of the - LBOUND quantity described in RFC 793." - ::= { tcp 2 } - - - tcpRtoMax OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum value permitted by a TCP - implementation for the retransmission timeout, - measured in milliseconds. More refined semantics - for objects of this type depend upon the algorithm - used to determine the retransmission timeout. In - particular, when the timeout algorithm is rsre(3), - an object of this type has the semantics of the - UBOUND quantity described in RFC 793." - ::= { tcp 3 } - - tcpMaxConn OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The limit on the total number of TCP connections - the entity can support. In entities where the - maximum number of connections is dynamic, this - object should contain the value -1." - ::= { tcp 4 } - - tcpActiveOpens OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times TCP connections have made a - direct transition to the SYN-SENT state from the - CLOSED state." - ::= { tcp 5 } - - tcpPassiveOpens OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times TCP connections have made a - direct transition to the SYN-RCVD state from the - LISTEN state." - ::= { tcp 6 } - - tcpAttemptFails OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times TCP connections have made a - direct transition to the CLOSED state from either - the SYN-SENT state or the SYN-RCVD state, plus the - number of times TCP connections have made a direct - transition to the LISTEN state from the SYN-RCVD - state." - ::= { tcp 7 } - - tcpEstabResets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times TCP connections have made a - direct transition to the CLOSED state from either - the ESTABLISHED state or the CLOSE-WAIT state." - ::= { tcp 8 } - - tcpCurrEstab OBJECT-TYPE - SYNTAX Gauge - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of TCP connections for which the - current state is either ESTABLISHED or CLOSE- - WAIT." - ::= { tcp 9 } - - tcpInSegs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of segments received, including - those received in error. This count includes - segments received on currently established - connections." - ::= { tcp 10 } - - tcpOutSegs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of segments sent, including - those on current connections but excluding those - containing only retransmitted octets." - ::= { tcp 11 } - - tcpRetransSegs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of segments retransmitted - that - is, the number of TCP segments transmitted - containing one or more previously transmitted - octets." - ::= { tcp 12 } - - - -- the TCP Connection table - - -- The TCP connection table contains information about this - -- entity's existing TCP connections. - - tcpConnTable OBJECT-TYPE - SYNTAX SEQUENCE OF TcpConnEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table containing TCP connection-specific - information." - ::= { tcp 13 } - - tcpConnEntry OBJECT-TYPE - SYNTAX TcpConnEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Information about a particular current TCP - connection. An object of this type is transient, - in that it ceases to exist when (or soon after) - the connection makes the transition to the CLOSED - state." - INDEX { tcpConnLocalAddress, - tcpConnLocalPort, - tcpConnRemAddress, - tcpConnRemPort } - ::= { tcpConnTable 1 } - - TcpConnEntry ::= - SEQUENCE { - tcpConnState - INTEGER, - tcpConnLocalAddress - IpAddress, - tcpConnLocalPort - INTEGER (0..65535), - tcpConnRemAddress - IpAddress, - tcpConnRemPort - INTEGER (0..65535) - } - - tcpConnState OBJECT-TYPE - SYNTAX INTEGER { - closed(1), - listen(2), - synSent(3), - synReceived(4), - established(5), - finWait1(6), - finWait2(7), - closeWait(8), - lastAck(9), - closing(10), - timeWait(11), - deleteTCB(12) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The state of this TCP connection. - - The only value which may be set by a management - station is deleteTCB(12). Accordingly, it is - appropriate for an agent to return a `badValue' - response if a management station attempts to set - this object to any other value. - - If a management station sets this object to the - value deleteTCB(12), then this has the effect of - deleting the TCB (as defined in RFC 793) of the - corresponding connection on the managed node, - resulting in immediate termination of the - connection. - - As an implementation-specific option, a RST - segment may be sent from the managed node to the - other TCP endpoint (note however that RST segments - are not sent reliably)." - ::= { tcpConnEntry 1 } - - tcpConnLocalAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The local IP address for this TCP connection. In - the case of a connection in the listen state which - is willing to accept connections for any IP - interface associated with the node, the value - 0.0.0.0 is used." - ::= { tcpConnEntry 2 } - - tcpConnLocalPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The local port number for this TCP connection." - ::= { tcpConnEntry 3 } - - tcpConnRemAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remote IP address for this TCP connection." - ::= { tcpConnEntry 4 } - - tcpConnRemPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The remote port number for this TCP connection." - ::= { tcpConnEntry 5 } - - - -- additional TCP objects - - tcpInErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of segments received in error - (e.g., bad TCP checksums)." - ::= { tcp 14 } - - tcpOutRsts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of TCP segments sent containing the - RST flag." - ::= { tcp 15 } - - - -- the UDP group - - -- Implementation of the UDP group is mandatory for all - -- systems which implement the UDP. - - udpInDatagrams OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of UDP datagrams delivered to - UDP users." - ::= { udp 1 } - - udpNoPorts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of received UDP datagrams for - which there was no application at the destination - port." - ::= { udp 2 } - - udpInErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of received UDP datagrams that could - not be delivered for reasons other than the lack - of an application at the destination port." - ::= { udp 3 } - - udpOutDatagrams OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of UDP datagrams sent from this - entity." - ::= { udp 4 } - - - -- the UDP Listener table - - -- The UDP listener table contains information about this - -- entity's UDP end-points on which a local application is - -- currently accepting datagrams. - - udpTable OBJECT-TYPE - SYNTAX SEQUENCE OF UdpEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A table containing UDP listener information." - ::= { udp 5 } - - udpEntry OBJECT-TYPE - SYNTAX UdpEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Information about a particular current UDP - listener." - INDEX { udpLocalAddress, udpLocalPort } - ::= { udpTable 1 } - - UdpEntry ::= - SEQUENCE { - udpLocalAddress - IpAddress, - udpLocalPort - INTEGER (0..65535) - } - - udpLocalAddress OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The local IP address for this UDP listener. In - the case of a UDP listener which is willing to - accept datagrams for any IP interface associated - with the node, the value 0.0.0.0 is used." - ::= { udpEntry 1 } - - udpLocalPort OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The local port number for this UDP listener." - ::= { udpEntry 2 } - - - -- the EGP group - - -- Implementation of the EGP group is mandatory for all - -- systems which implement the EGP. - - egpInMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP messages received without - error." - ::= { egp 1 } - - egpInErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP messages received that proved - to be in error." - ::= { egp 2 } - - egpOutMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of locally generated EGP - messages." - ::= { egp 3 } - - egpOutErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of locally generated EGP messages not - sent due to resource limitations within an EGP - entity." - ::= { egp 4 } - - - -- the EGP Neighbor table - - -- The EGP neighbor table contains information about this - -- entity's EGP neighbors. - - egpNeighTable OBJECT-TYPE - SYNTAX SEQUENCE OF EgpNeighEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "The EGP neighbor table." - ::= { egp 5 } - - egpNeighEntry OBJECT-TYPE - SYNTAX EgpNeighEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Information about this entity's relationship with - a particular EGP neighbor." - INDEX { egpNeighAddr } - ::= { egpNeighTable 1 } - - EgpNeighEntry ::= - SEQUENCE { - egpNeighState - INTEGER, - egpNeighAddr - IpAddress, - egpNeighAs - INTEGER, - egpNeighInMsgs - Counter, - egpNeighInErrs - Counter, - egpNeighOutMsgs - Counter, - egpNeighOutErrs - Counter, - egpNeighInErrMsgs - Counter, - egpNeighOutErrMsgs - Counter, - egpNeighStateUps - Counter, - egpNeighStateDowns - Counter, - egpNeighIntervalHello - INTEGER, - egpNeighIntervalPoll - INTEGER, - egpNeighMode - INTEGER, - egpNeighEventTrigger - INTEGER - } - - egpNeighState OBJECT-TYPE - SYNTAX INTEGER { - idle(1), - acquisition(2), - down(3), - up(4), - cease(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The EGP state of the local system with respect to - this entry's EGP neighbor. Each EGP state is - represented by a value that is one greater than - the numerical value associated with said state in - RFC 904." - ::= { egpNeighEntry 1 } - - egpNeighAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The IP address of this entry's EGP neighbor." - ::= { egpNeighEntry 2 } - - egpNeighAs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The autonomous system of this EGP peer. Zero - should be specified if the autonomous system - number of the neighbor is not yet known." - ::= { egpNeighEntry 3 } - - egpNeighInMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP messages received without error - from this EGP peer." - ::= { egpNeighEntry 4 } - - egpNeighInErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP messages received from this EGP - peer that proved to be in error (e.g., bad EGP - checksum)." - ::= { egpNeighEntry 5 } - - egpNeighOutMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of locally generated EGP messages to - this EGP peer." - ::= { egpNeighEntry 6 } - - egpNeighOutErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of locally generated EGP messages not - sent to this EGP peer due to resource limitations - within an EGP entity." - ::= { egpNeighEntry 7 } - - egpNeighInErrMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP-defined error messages received - from this EGP peer." - ::= { egpNeighEntry 8 } - - egpNeighOutErrMsgs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP-defined error messages sent to - this EGP peer." - ::= { egpNeighEntry 9 } - - egpNeighStateUps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP state transitions to the UP - state with this EGP peer." - ::= { egpNeighEntry 10 } - - egpNeighStateDowns OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of EGP state transitions from the UP - state to any other state with this EGP peer." - ::= { egpNeighEntry 11 } - - egpNeighIntervalHello OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The interval between EGP Hello command - retransmissions (in hundredths of a second). This - represents the t1 timer as defined in RFC 904." - ::= { egpNeighEntry 12 } - - egpNeighIntervalPoll OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The interval between EGP poll command - retransmissions (in hundredths of a second). This - represents the t3 timer as defined in RFC 904." - ::= { egpNeighEntry 13 } - - egpNeighMode OBJECT-TYPE - SYNTAX INTEGER { active(1), passive(2) } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The polling mode of this EGP entity, either - passive or active." - ::= { egpNeighEntry 14 } - - egpNeighEventTrigger OBJECT-TYPE - SYNTAX INTEGER { start(1), stop(2) } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A control variable used to trigger operator- - initiated Start and Stop events. When read, this - variable always returns the most recent value that - egpNeighEventTrigger was set to. If it has not - been set since the last initialization of the - network management subsystem on the node, it - returns a value of `stop'. - - When set, this variable causes a Start or Stop - event on the specified neighbor, as specified on - pages 8-10 of RFC 904. Briefly, a Start event - causes an Idle peer to begin neighbor acquisition - and a non-Idle peer to reinitiate neighbor - acquisition. A stop event causes a non-Idle peer - to return to the Idle state until a Start event - occurs, either via egpNeighEventTrigger or - otherwise." - ::= { egpNeighEntry 15 } - - - -- additional EGP objects - - egpAs OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The autonomous system number of this EGP entity." - ::= { egp 6 } - - -- the Transmission group - - -- Based on the transmission media underlying each interface - -- on a system, the corresponding portion of the Transmission - -- group is mandatory for that system. - - -- When Internet-standard definitions for managing - -- transmission media are defined, the transmission group is - -- used to provide a prefix for the names of those objects. - - -- Typically, such definitions reside in the experimental - -- portion of the MIB until they are "proven", then as a - -- part of the Internet standardization process, the - -- definitions are accordingly elevated and a new object - -- identifier, under the transmission group is defined. By - -- convention, the name assigned is: - -- - -- type OBJECT IDENTIFIER ::= { transmission number } - -- - -- where "type" is the symbolic value used for the media in - -- the ifType column of the ifTable object, and "number" is - -- the actual integer value corresponding to the symbol. - - - -- the SNMP group - - -- Implementation of the SNMP group is mandatory for all - -- systems which support an SNMP protocol entity. Some of - -- the objects defined below will be zero-valued in those - -- SNMP implementations that are optimized to support only - -- those functions specific to either a management agent or - -- a management station. In particular, it should be - -- observed that the objects below refer to an SNMP entity, - -- and there may be several SNMP entities residing on a - -- managed node (e.g., if the node is hosting acting as - -- a management station). - - snmpInPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Messages delivered to the - SNMP entity from the transport service." - ::= { snmp 1 } - - snmpOutPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Messages which were - passed from the SNMP protocol entity to the - transport service." - ::= { snmp 2 } - - snmpInBadVersions OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Messages which were - delivered to the SNMP protocol entity and were for - an unsupported SNMP version." - ::= { snmp 3 } - - snmpInBadCommunityNames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Messages delivered to - the SNMP protocol entity which used a SNMP - community name not known to said entity." - ::= { snmp 4 } - - snmpInBadCommunityUses OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Messages delivered to - the SNMP protocol entity which represented an SNMP - operation which was not allowed by the SNMP - community named in the Message." - ::= { snmp 5 } - - snmpInASNParseErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ASN.1 or BER errors - encountered by the SNMP protocol entity when - decoding received SNMP Messages." - ::= { snmp 6 } - - -- { snmp 7 } is not used - - snmpInTooBigs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field is - `tooBig'." - ::= { snmp 8 } - - snmpInNoSuchNames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field is - `noSuchName'." - ::= { snmp 9 } - - snmpInBadValues OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field is - `badValue'." - ::= { snmp 10 } - - snmpInReadOnlys OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number valid SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field is - `readOnly'. It should be noted that it is a - protocol error to generate an SNMP PDU which - contains the value `readOnly' in the error-status - field, as such this object is provided as a means - of detecting incorrect implementations of the - SNMP." - ::= { snmp 11 } - - snmpInGenErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field is - `genErr'." - ::= { snmp 12 } - - snmpInTotalReqVars OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of MIB objects which have been - retrieved successfully by the SNMP protocol entity - as the result of receiving valid SNMP Get-Request - and Get-Next PDUs." - ::= { snmp 13 } - - snmpInTotalSetVars OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of MIB objects which have been - altered successfully by the SNMP protocol entity - as the result of receiving valid SNMP Set-Request - PDUs." - ::= { snmp 14 } - - snmpInGetRequests OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Get-Request PDUs which - have been accepted and processed by the SNMP - protocol entity." - ::= { snmp 15 } - - snmpInGetNexts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Get-Next PDUs which have - been accepted and processed by the SNMP protocol - entity." - ::= { snmp 16 } - - snmpInSetRequests OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Set-Request PDUs which - have been accepted and processed by the SNMP - protocol entity." - ::= { snmp 17 } - - snmpInGetResponses OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Get-Response PDUs which - have been accepted and processed by the SNMP - protocol entity." - ::= { snmp 18 } - - snmpInTraps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Trap PDUs which have - been accepted and processed by the SNMP protocol - entity." - ::= { snmp 19 } - - snmpOutTooBigs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - generated by the SNMP protocol entity and for - which the value of the error-status field is - `tooBig.'" - ::= { snmp 20 } - - snmpOutNoSuchNames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - generated by the SNMP protocol entity and for - which the value of the error-status is - `noSuchName'." - ::= { snmp 21 } - - snmpOutBadValues OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - generated by the SNMP protocol entity and for - which the value of the error-status field is - `badValue'." - ::= { snmp 22 } - - -- { snmp 23 } is not used - - snmpOutGenErrs OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP PDUs which were - generated by the SNMP protocol entity and for - which the value of the error-status field is - `genErr'." - ::= { snmp 24 } - - snmpOutGetRequests OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Get-Request PDUs which - have been generated by the SNMP protocol entity." - ::= { snmp 25 } - - snmpOutGetNexts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Get-Next PDUs which have - been generated by the SNMP protocol entity." - ::= { snmp 26 } - - snmpOutSetRequests OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Set-Request PDUs which - have been generated by the SNMP protocol entity." - ::= { snmp 27 } - - snmpOutGetResponses OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Get-Response PDUs which - have been generated by the SNMP protocol entity." - ::= { snmp 28 } - - snmpOutTraps OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of SNMP Trap PDUs which have - been generated by the SNMP protocol entity." - ::= { snmp 29 } - - snmpEnableAuthenTraps OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Indicates whether the SNMP agent process is - permitted to generate authentication-failure - traps. The value of this object overrides any - configuration information; as such, it provides a - means whereby all authentication-failure traps may - be disabled. - - Note that it is strongly recommended that this - object be stored in non-volatile memory so that it - remains constant between re-initializations of the - network management system." - ::= { snmp 30 } - -END diff --git a/mibs/orig/RFC1271-MIB b/mibs/orig/RFC1271-MIB deleted file mode 100644 index 6b0591e..0000000 --- a/mibs/orig/RFC1271-MIB +++ /dev/null @@ -1,3357 +0,0 @@ -RFC1271-MIB DEFINITIONS ::= BEGIN - - IMPORTS - Counter, TimeTicks FROM RFC1155-SMI - mib-2, DisplayString FROM RFC1213-MIB - OBJECT-TYPE FROM RFC-1212; - --- This MIB module uses the extended OBJECT-TYPE macro as --- defined in [9]. - - --- Remote Network Monitoring MIB - - rmon OBJECT IDENTIFIER ::= { mib-2 16 } - - - -- textual conventions - - OwnerString ::= DisplayString - -- This data type is used to model an administratively - -- assigned name of the owner of a resource. This - -- information is taken from the NVT ASCII character set. - -- It is suggested that this name contain one or more - -- of the following: - -- IP address, management station name, network manager's - -- name, location, or phone number. - -- In some cases the agent itself will be the owner of - -- an entry. In these cases, this string shall be set - -- to a string starting with 'monitor'. - - -- - -- SNMP access control is articulated entirely in terms of - -- the contents of MIB views; access to a particular SNMP - -- object instance depends only upon its presence or - -- absence in a particular MIB view and never upon its - -- value or the value of related object instances. Thus, - -- objects of this type afford resolution of resource - -- contention only among cooperating managers; they - -- realize no access control function with respect - -- to uncooperative parties. - -- - -- By convention, objects with this syntax are declared - -- as having - -- - -- SIZE (0..127) - - - EntryStatus ::= INTEGER - { valid(1), - createRequest(2), - underCreation(3), - invalid(4) - } - - -- The status of a table entry. - -- - -- Setting this object to the value invalid(4) has the - -- effect of invalidating the corresponding entry. - -- That is, it effectively disassociates the mapping - -- identified with said entry. - -- It is an implementation-specific matter as to whether - -- the agent removes an invalidated entry from the table. - -- Accordingly, management stations must be prepared to - -- receive tabular information from agents that corresponds - -- to entries currently not in use. Proper - -- interpretation of such entries requires examination - -- of the relevant EntryStatus object. - -- - -- An existing instance of this object cannot be set to - -- createRequest(2). This object may only be set to - -- createRequest(2) when this instance is created. When - -- this object is created, the agent may wish to create - -- supplemental object instances to complete a conceptual - -- row in this table. Immediately after completing the - -- create operation, the agent must set this object to - -- underCreation(3). - -- - -- Entries shall exist in the underCreation(3) state until - - -- the management station is finished configuring the - -- entry and sets this object to valid(1) or aborts, - -- setting this object to invalid(4). If the agent - -- determines that an entry has been in the - -- underCreation(3) state for an abnormally long time, - -- it may decide that the management station has - -- crashed. If the agent makes this decision, - -- it may set this object to invalid(4) to reclaim the - -- entry. A prudent agent will understand that the - -- management station may need to wait for human input - -- and will allow for that possibility in its - -- determination of this abnormally long period. - - - statistics OBJECT IDENTIFIER ::= { rmon 1 } - history OBJECT IDENTIFIER ::= { rmon 2 } - alarm OBJECT IDENTIFIER ::= { rmon 3 } - hosts OBJECT IDENTIFIER ::= { rmon 4 } - hostTopN OBJECT IDENTIFIER ::= { rmon 5 } - matrix OBJECT IDENTIFIER ::= { rmon 6 } - filter OBJECT IDENTIFIER ::= { rmon 7 } - capture OBJECT IDENTIFIER ::= { rmon 8 } - event OBJECT IDENTIFIER ::= { rmon 9 } - - --- The Statistics Group --- --- Implementation of the Statistics group is optional. --- --- The statistics group contains statistics measured by the --- probe for each monitored interface on this device. These --- statistics take the form of free running counters that --- start from zero when a valid entry is created. --- --- This group currently has statistics defined only for --- Ethernet interfaces. Each etherStatsEntry contains --- statistics for one Ethernet interface. The probe must --- create one etherStats entry for each monitored Ethernet --- interface on the device. - -etherStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF EtherStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Ethernet statistics entries." - ::= { statistics 1 } - -etherStatsEntry OBJECT-TYPE - SYNTAX EtherStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics kept for a particular - Ethernet interface." - INDEX { etherStatsIndex } - ::= { etherStatsTable 1 } - -EtherStatsEntry ::= SEQUENCE { - etherStatsIndex INTEGER (1..65535), - etherStatsDataSource OBJECT IDENTIFIER, - etherStatsDropEvents Counter, - etherStatsOctets Counter, - etherStatsPkts Counter, - etherStatsBroadcastPkts Counter, - etherStatsMulticastPkts Counter, - etherStatsCRCAlignErrors Counter, - etherStatsUndersizePkts Counter, - etherStatsOversizePkts Counter, - etherStatsFragments Counter, - etherStatsJabbers Counter, - etherStatsCollisions Counter, - etherStatsPkts64Octets Counter, - etherStatsPkts65to127Octets Counter, - etherStatsPkts128to255Octets Counter, - etherStatsPkts256to511Octets Counter, - etherStatsPkts512to1023Octets Counter, - etherStatsPkts1024to1518Octets Counter, - etherStatsOwner OwnerString, - etherStatsStatus INTEGER -} - -etherStatsIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies this - etherStats entry." - ::= { etherStatsEntry 1 } - -etherStatsDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the source of the data that - this etherStats entry is configured to analyze. This - source can be any ethernet interface on this device. - In order to identify a particular interface, this - object shall identify the instance of the ifIndex - object, defined in [4,6], for the desired interface. - For example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - etherStatsStatus object is equal to valid(1)." - ::= { etherStatsEntry 2 } - -etherStatsDropEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of events in which packets - were dropped by the probe due to lack of resources. - Note that this number is not necessarily the number of - packets dropped; it is just the number of times this - condition has been detected." - ::= { etherStatsEntry 3 } - -etherStatsOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets of data (including - those in bad packets) received on the - network (excluding framing bits but including - FCS octets)." - ::= { etherStatsEntry 4 } - -etherStatsPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error packets) - received." - ::= { etherStatsEntry 5 } - -etherStatsBroadcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good packets received that were - directed to the broadcast address." - ::= { etherStatsEntry 6 } - -etherStatsMulticastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good packets received that were - directed to a multicast address. Note that this - number does not include packets directed to the - broadcast address." - ::= { etherStatsEntry 7 } - -etherStatsCRCAlignErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets received that - had a length (excluding framing bits, but - including FCS octets) of between 64 and 1518 - octets, inclusive, but were not an integral number - of octets in length or had a bad Frame Check - Sequence (FCS)." - ::= { etherStatsEntry 8 } - -etherStatsUndersizePkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets received that were - less than 64 octets long (excluding framing bits, - but including FCS octets) and were otherwise well - formed." - ::= { etherStatsEntry 9 } - -etherStatsOversizePkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets received that were - longer than 1518 octets (excluding framing bits, - but including FCS octets) and were otherwise - well formed." - ::= { etherStatsEntry 10 } - -etherStatsFragments OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets received that were not an - integral number of octets in length or that had a bad - Frame Check Sequence (FCS), and were less than 64 - octets in length (excluding framing bits but - including FCS octets)." - ::= { etherStatsEntry 11 } - -etherStatsJabbers OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets received that were - longer than 1518 octets (excluding framing bits, - but including FCS octets), and were not an - integral number of octets in length or had - a bad Frame Check Sequence (FCS)." - ::= { etherStatsEntry 12 } - -etherStatsCollisions OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The best estimate of the total number of collisions - on this Ethernet segment." - ::= { etherStatsEntry 13 } - -etherStatsPkts64Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error - packets) received that were 64 octets in length - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 14 } - -etherStatsPkts65to127Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error - packets) received that were between - 65 and 127 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 15 } - -etherStatsPkts128to255Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error - packets) received that were between - 128 and 255 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 16 } - -etherStatsPkts256to511Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error - packets) received that were between - 256 and 511 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 17 } - -etherStatsPkts512to1023Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error - packets) received that were between - 512 and 1023 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 18 } - -etherStatsPkts1024to1518Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets (including error - packets) received that were between - 1024 and 1518 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 19 } - -etherStatsOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { etherStatsEntry 20 } - -etherStatsStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this etherStats entry." - ::= { etherStatsEntry 21 } - - --- The History Group - --- Implementation of the History group is optional. --- --- The history group records periodic statistical samples from --- a network and stores them for later retrieval. The --- historyControl table stores configuration entries that each --- define an interface, polling period, and other parameters. --- Once samples are taken, their data is stored in an entry --- in a media-specific table. Each such entry defines one --- sample, and is associated with the historyControlEntry that --- caused the sample to be taken. Currently the only media- --- specific table defined is the etherHistoryTable, for --- Ethernet networks. --- --- If the probe keeps track of the time of day, it should --- start the first sample of the history at a time such that --- when the next hour of the day begins, a sample is --- started at that instant. This tends to make more - --- user-friendly reports, and enables comparison of reports --- from different probes that have relatively accurate time --- of day. --- --- The monitor is encouraged to add two history control entries --- per monitored interface upon initialization that describe --- a short term and a long term polling period. Suggested --- parameters are 30 seconds for the short term polling --- period and 30 minutes for the long term period. - -historyControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HistoryControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of history control entries." - ::= { history 1 } - -historyControlEntry OBJECT-TYPE - SYNTAX HistoryControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of parameters that set up a periodic - sampling of statistics." - INDEX { historyControlIndex } - ::= { historyControlTable 1 } - -HistoryControlEntry ::= SEQUENCE { - historyControlIndex INTEGER (1..65535), - historyControlDataSource OBJECT IDENTIFIER, - historyControlBucketsRequested INTEGER (1..65535), - historyControlBucketsGranted INTEGER (1..65535), - historyControlInterval INTEGER (1..3600), - historyControlOwner OwnerString, - historyControlStatus INTEGER -} - -historyControlIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in the - historyControl table. Each such entry defines a - set of samples at a particular interval for an - interface on the device." - ::= { historyControlEntry 1 } - -historyControlDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the source of the data for - which historical data was collected and - placed in a media-specific table on behalf of this - historyControlEntry. This source can be any - interface on this device. In order to identify - a particular interface, this object shall identify - the instance of the ifIndex object, defined - in [4,6], for the desired interface. For example, - if an entry were to receive data from interface #1, - this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - historyControlStatus object is equal to valid(1)." - ::= { historyControlEntry 2 } - -historyControlBucketsRequested OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The requested number of discrete time intervals - over which data is to be saved in the part of the - media-specific table associated with this - historyControl entry. - - When this object is created or modified, the probe - should set historyControlBucketsGranted as closely to - this object as is possible for the particular probe - implementation and available resources." - DEFVAL { 50 } - ::= { historyControlEntry 3 } - -historyControlBucketsGranted OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of discrete sampling intervals - over which data shall be saved in the part of - the media-specific table associated with this - historyControl entry. - - When the associated historyControlBucketsRequested - object is created or modified, the probe - should set this object as closely to the requested - value as is possible for the particular - probe implementation and available resources. The - probe must not lower this value except as a result - of a modification to the associated - historyControlBucketsRequested object. - - There will be times when the actual number of - buckets associated with this entry is less than - the value of this object. In this case, at the - end of each sampling interval, a new bucket will - be added to the media-specific table. - - When the number of buckets reaches the value of - this object and a new bucket is to be added to the - media-specific table, the oldest bucket associated - with this historyControlEntry shall be deleted by - the agent so that the new bucket can be added. - - When the value of this object changes to a value less - than the current value, entries are deleted - from the media-specific table associated with this - historyControlEntry. Enough of the oldest of these - entries shall be deleted by the agent so that their - number remains less than or equal to the new value of - this object. - - When the value of this object changes to a value - greater than the current value, the number of - associated media-specific entries may be allowed - to grow." - ::= { historyControlEntry 4 } - -historyControlInterval OBJECT-TYPE - SYNTAX INTEGER (1..3600) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval in seconds over which the data is - sampled for each bucket in the part of the - media-specific table associated with this - historyControl entry. This interval can - be set to any number of seconds between 1 and - 3600 (1 hour). - - Because the counters in a bucket may overflow at their - maximum value with no indication, a prudent manager - will take into account the possibility of overflow - in any of the associated counters. It is important - to consider the minimum time in which any counter - could overflow on a particular media type and set - the historyControlInterval object to a value less - than this interval. This is typically most - important for the 'octets' counter in any - media-specific table. For example, on an Ethernet - network, the etherHistoryOctets counter could overflow - in about one hour at the Ethernet's maximum - utilization. - - This object may not be modified if the associated - historyControlStatus object is equal to valid(1)." - DEFVAL { 1800 } - ::= { historyControlEntry 5 } - -historyControlOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { historyControlEntry 6 } - -historyControlStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this historyControl entry. - - Each instance of the media-specific table associated - with this historyControlEntry will be deleted by the - agent if this historyControlEntry is not equal to - valid(1)." - ::= { historyControlEntry 7 } - - --- Ether History table - -etherHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF EtherHistoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Ethernet history entries." - ::= { history 2 } - -etherHistoryEntry OBJECT-TYPE - SYNTAX EtherHistoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "An historical sample of Ethernet statistics on a - particular Ethernet interface. This sample is - associated with the historyControlEntry which set - up the parameters for a regular collection of these - samples." - INDEX { etherHistoryIndex , etherHistorySampleIndex } - ::= { etherHistoryTable 1 } - -EtherHistoryEntry ::= SEQUENCE { - etherHistoryIndex INTEGER (1..65535), - etherHistorySampleIndex INTEGER, - etherHistoryIntervalStart TimeTicks, - etherHistoryDropEvents Counter, - etherHistoryOctets Counter, - etherHistoryPkts Counter, - etherHistoryBroadcastPkts Counter, - etherHistoryMulticastPkts Counter, - etherHistoryCRCAlignErrors Counter, - etherHistoryUndersizePkts Counter, - etherHistoryOversizePkts Counter, - etherHistoryFragments Counter, - etherHistoryJabbers Counter, - etherHistoryCollisions Counter, - etherHistoryUtilization INTEGER (0..10000) -} - -etherHistoryIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The history of which this entry is a part. The - history identified by a particular value of this - index is the same history as identified - by the same value of historyControlIndex." - ::= { etherHistoryEntry 1 } - -etherHistorySampleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies the particular - sample this entry represents among all samples - associated with the same historyControlEntry. - This index starts at 1 and increases by one - as each new sample is taken." - ::= { etherHistoryEntry 2 } - -etherHistoryIntervalStart OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the start of the interval - over which this sample was measured. If the probe - keeps track of the time of day, it should start - the first sample of the history at a time such that - when the next hour of the day begins, a sample is - started at that instant. Note that following this - rule may require the probe to delay collecting the - first sample of the history, as each sample must be - of the same interval. Also note that the sample which - is currently being collected is not accessible in this - table until the end of its interval." - ::= { etherHistoryEntry 3 } - -etherHistoryDropEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of events in which packets - were dropped by the probe due to lack of resources - during this interval. Note that this number is not - necessarily the number of packets dropped, it is just - the number of times this condition has been detected." - ::= { etherHistoryEntry 4 } - -etherHistoryOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets of data (including - those in bad packets) received on the - network (excluding framing bits but including - FCS octets)." - ::= { etherHistoryEntry 5 } - -etherHistoryPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets (including error packets) - received during this sampling interval." - ::= { etherHistoryEntry 6 } - -etherHistoryBroadcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of good packets received during this - sampling interval that were directed to the - broadcast address." - ::= { etherHistoryEntry 7 } - -etherHistoryMulticastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of good packets received during this - sampling interval that were directed to a - multicast address. Note that this number does not - include packets addressed to the broadcast address." - ::= { etherHistoryEntry 8 } - -etherHistoryCRCAlignErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets received during this - sampling interval that had a length (excluding - framing bits but including FCS octets) between - 64 and 1518 octets, inclusive, but were not an - integral number of octets in length or had a - bad Frame Check Sequence (FCS)." - ::= { etherHistoryEntry 9 } - -etherHistoryUndersizePkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets received during this - interval that were less than 64 octets long - (excluding framing bits but including FCS - octets) and were otherwise well formed." - ::= { etherHistoryEntry 10 } - -etherHistoryOversizePkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets received during this - interval that were longer than 1518 octets - (excluding framing bits but including FCS - octets) but were otherwise well formed." - ::= { etherHistoryEntry 11 } - -etherHistoryFragments OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of packets received during this - sampling interval that were not an integral - number of octets in length or that - had a bad Frame Check Sequence (FCS), and - were less than 64 octets in length (excluding - framing bits but including FCS octets)." - ::= { etherHistoryEntry 12 } - -etherHistoryJabbers OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets received during this - interval that were longer than 1518 octets - (excluding framing bits but including FCS octets), - and were not an integral number of octets in - length or had a bad Frame Check Sequence (FCS)." - ::= { etherHistoryEntry 13 } - -etherHistoryCollisions OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The best estimate of the total number of collisions - on this Ethernet segment during this interval." - ::= { etherHistoryEntry 14 } - -etherHistoryUtilization OBJECT-TYPE - SYNTAX INTEGER (0..10000) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The best estimate of the mean physical layer - network utilization on this interface during this - interval, in hundredths of a percent." - ::= { etherHistoryEntry 15 } - - --- The Alarm Group - --- Implementation of the Alarm group is optional. --- --- The Alarm Group requires the implementation of the Event --- group. --- --- The Alarm group periodically takes statistical samples from --- variables in the probe and compares them to thresholds --- that have been configured. The alarm table stores --- configuration entries that each define a variable, --- polling period, and threshold parameters. If a sample is --- found to cross the threshold values, an event is --- generated. Only variables that resolve to an ASN.1 --- primitive type of INTEGER (INTEGER, Counter, --- Gauge, or TimeTicks) may be monitored in this way. --- --- This function has a hysteresis mechanism to limit the --- generation of events. This mechanism generates one event --- as a threshold is crossed in the appropriate direction. --- No more events are generated for that threshold until the --- opposite threshold is crossed. --- --- In the case of a sampling a deltaValue, a probe may --- implement this mechanism with more precision if it takes --- a delta sample twice per period, each time comparing the --- sum of the latest two samples to the threshold. This --- allows the detection of threshold crossings - --- that span the sampling boundary. Note that this does not --- require any special configuration of the threshold value. --- It is suggested that probes implement this more precise --- algorithm. - -alarmTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlarmEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of alarm entries." - ::= { alarm 1 } - -alarmEntry OBJECT-TYPE - SYNTAX AlarmEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of parameters that set up a periodic checking - for alarm conditions." - INDEX { alarmIndex } - ::= { alarmTable 1 } - -AlarmEntry ::= SEQUENCE { - alarmIndex INTEGER (1..65535), - alarmInterval INTEGER, - alarmVariable OBJECT IDENTIFIER, - alarmSampleType INTEGER, - alarmValue INTEGER, - alarmStartupAlarm INTEGER, - alarmRisingThreshold INTEGER, - alarmFallingThreshold INTEGER, - alarmRisingEventIndex INTEGER (1..65535), - alarmFallingEventIndex INTEGER (1..65535), - alarmOwner OwnerString, - alarmStatus INTEGER -} - -alarmIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in the - alarm table. Each such entry defines a - diagnostic sample at a particular interval - for an object on the device." - ::= { alarmEntry 1 } - -alarmInterval OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The interval in seconds over which the data is - sampled and compared with the rising and falling - thresholds. When setting this variable, care - should be given to ensure that the variable being - monitored will not exceed 2^31 - 1 and roll - over the alarmValue object during the interval. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 2 } - -alarmVariable OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The object identifier of the particular variable to - be sampled. Only variables that resolve to an ASN.1 - primitive type of INTEGER (INTEGER, Counter, Gauge, - or TimeTicks) may be sampled. - - Because SNMP access control is articulated entirely - in terms of the contents of MIB views, no access - control mechanism exists that can restrict the value of - this object to identify only those objects that exist - in a particular MIB view. Because there is thus no - acceptable means of restricting the read access that - could be obtained through the alarm mechanism, the - probe must only grant write access to this object in - those views that have read access to all objects on - the probe. - - During a set operation, if the supplied variable - name is not available in the selected MIB view, a - badValue error must be returned. If at any time - the variable name of an established alarmEntry is - no longer available in the selected MIB view, the - probe must change the status of this alarmEntry - to invalid(4). - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 3 } - -alarmSampleType OBJECT-TYPE - SYNTAX INTEGER { - absoluteValue(1), - deltaValue(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The method of sampling the selected variable and - calculating the value to be compared against the - thresholds. If the value of this object is - absoluteValue(1), the value of the selected variable - will be compared directly with the thresholds at the - end of the sampling interval. If the value of this - object is deltaValue(2), the value of the selected - variable at the last sample will be subtracted from - the current value, and the difference compared with - the thresholds. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 4 } - -alarmValue OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of the statistic during the last sampling - period. The value during the current sampling period - is not made available until the period is completed." - ::= { alarmEntry 5 } - -alarmStartupAlarm OBJECT-TYPE - SYNTAX INTEGER { - risingAlarm(1), - fallingAlarm(2), - risingOrFallingAlarm(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The alarm that may be sent when this entry is first - set to valid. If the first sample after this entry - becomes valid is greater than or equal to the - risingThreshold and alarmStartupAlarm is equal to - risingAlarm(1) or risingOrFallingAlarm(3), then a - single rising alarm will be generated. If the first - sample after this entry becomes valid is less than - or equal to the fallingThreshold and - alarmStartupAlarm is equal to fallingAlarm(2) or - risingOrFallingAlarm(3), then a single falling - alarm will be generated. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 6 } - -alarmRisingThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold for the sampled statistic. When the - current sampled value is greater than or equal to - this threshold, and the value at the last sampling - interval was less than this threshold, a single - event will be generated. - A single event will also be generated if the first - sample after this entry becomes valid is greater - than or equal to this threshold and the associated - alarmStartupAlarm is equal to risingAlarm(1) or - risingOrFallingAlarm(3). - - After a rising event is generated, another such event - will not be generated until the sampled value - falls below this threshold and reaches the - alarmFallingThreshold. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 7 } - -alarmFallingThreshold OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A threshold for the sampled statistic. When the - current sampled value is less than or equal to - this threshold, and the value at the last sampling - interval was greater than this threshold, a single - event will be generated. - A single event will also be generated if the first - sample after this entry becomes valid is less than or - equal to this threshold and the associated - alarmStartupAlarm is equal to fallingAlarm(2) or - risingOrFallingAlarm(3). - - After a falling event is generated, another such event - will not be generated until the sampled value - rises above this threshold and reaches the - alarmRisingThreshold. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 8 } - -alarmRisingEventIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The index of the eventEntry that is - used when a rising threshold is crossed. The - eventEntry identified by a particular value of - this index is the same as identified by the same value - of the eventIndex object. If there is no - corresponding entry in the eventTable, then - no association exists. In particular, if this value - is zero, no associated event will be generated, as - zero is not a valid event index. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 9 } - -alarmFallingEventIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The index of the eventEntry that is - used when a falling threshold is crossed. The - eventEntry identified by a particular value of - this index is the same as identified by the same value - of the eventIndex object. If there is no - corresponding entry in the eventTable, then - no association exists. In particular, if this value - is zero, no associated event will be generated, as - zero is not a valid event index. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 10 } - -alarmOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { alarmEntry 11 } - -alarmStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this alarm entry." - ::= { alarmEntry 12 } - - --- The Host Group - --- Implementation of the Host group is optional. --- --- The host group discovers new hosts on the network by --- keeping a list of source and destination MAC Addresses seen --- in good packets. For each of these addresses, the host --- group keeps a set of statistics. The hostControlTable --- controls which interfaces this function is performed on, --- and contains some information about the process. On --- behalf of each hostControlEntry, data is collected on an --- interface and placed both the hostTable and the --- hostTimeTable. If the monitoring device finds itself --- short of resources, it may delete entries as needed. It --- is suggested that the device delete the least recently --- used entries first. - --- The hostTable contains entries for each address --- discovered on a particular interface. Each entry --- contains statistical data about that host. This table --- is indexed by the MAC address of the host, through --- which a random access may be achieved. - --- The hostTimeTable contains data in the same format as the --- hostTable, and must contain the same set of hosts, but is --- indexed using hostTimeCreationOrder rather than hostAddress. --- The hostTimeCreationOrder is an integer which reflects --- the relative order in which a particular entry was - --- discovered and thus inserted into the table. As this --- order, and thus index, is among those entries currently --- in the table, the index for a particular entry may change --- if an (earlier) entry is deleted. Thus the association --- between hostTimeCreationOrder and hostTimeEntry may be --- broken at any time. - --- The hostTimeTable has two important uses. The first is the --- fast download of this potentially large table. Because the --- index of this table runs from 1 to the size of the table, --- inclusive, its values are predictable. This allows very --- efficient packing of variables into SNMP PDU's and allows --- a table transfer to have multiple packets outstanding. --- These benefits increase transfer rates tremendously. - --- The second use of the hostTimeTable is the efficient --- discovery by the management station of new entries added --- to the table. After the management station has --- downloaded the entire table, it knows that new entries --- will be added immediately after the end of the current --- table. It can thus detect new entries there --- and retrieve them easily. - --- Because the association between hostTimeCreationOrder and --- hostTimeEntry may be broken at any time, the management --- station must monitor the related hostControlLastDeleteTime --- object. When the management station thus detects a deletion, --- it must assume that any such associations have been broken, --- and invalidate any it has stored locally. This includes --- restarting any download of the hostTimeTable that may have --- been in progress, as well as rediscovering the end of the --- hostTimeTable so that it may detect new entries. If the --- management station does not detect the broken association, --- it may continue to refer to a particular host by its --- creationOrder while unwittingly retrieving the data --- associated with another host entirely. If this happens --- while downloading the host table, the management station --- may fail to download all of the entries in the table. - - -hostControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of host table control entries." - ::= { hosts 1 } - -hostControlEntry OBJECT-TYPE - SYNTAX HostControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of parameters that set up the discovery of - hosts on a particular interface and the collection - of statistics about these hosts." - INDEX { hostControlIndex } - ::= { hostControlTable 1 } - -HostControlEntry ::= SEQUENCE { - hostControlIndex INTEGER (1..65535), - hostControlDataSource OBJECT IDENTIFIER, - hostControlTableSize INTEGER, - hostControlLastDeleteTime TimeTicks, - hostControlOwner OwnerString, - hostControlStatus INTEGER -} - -hostControlIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in the - hostControl table. Each such entry defines - a function that discovers hosts on a particular - interface and places statistics about them in the - hostTable and the hostTimeTable on behalf of this - hostControlEntry." - ::= { hostControlEntry 1 } - -hostControlDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the source of the data for - this instance of the host function. This source - can be any interface on this device. In order - to identify a particular interface, this object shall - identify the instance of the ifIndex object, defined - in [4,6], for the desired interface. For example, - if an entry were to receive data from interface #1, - this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - hostControlStatus object is equal to valid(1)." - ::= { hostControlEntry 2 } - -hostControlTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of hostEntries in the hostTable and the - hostTimeTable associated with this hostControlEntry." - ::= { hostControlEntry 3 } - -hostControlLastDeleteTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime when the last entry - was deleted from the portion of the hostTable - associated with this hostControlEntry. If no - deletions have occurred, this value shall be zero." - ::= { hostControlEntry 4 } - -hostControlOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { hostControlEntry 5 } - -hostControlStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this hostControl entry. - - If this object is not equal to valid(1), all - associated entries in the hostTable, - hostTimeTable, and the hostTopNTable shall be - deleted by the agent." - ::= { hostControlEntry 6 } - -hostTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of host entries." - ::= { hosts 2 } - -hostEntry OBJECT-TYPE - SYNTAX HostEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for a particular host - that has been discovered on an interface of this - device." - INDEX { hostIndex, hostAddress } - ::= { hostTable 1 } - -HostEntry ::= SEQUENCE { - hostAddress OCTET STRING, - hostCreationOrder INTEGER (1..65535), - hostIndex INTEGER (1..65535), - hostInPkts Counter, - hostOutPkts Counter, - hostInOctets Counter, - hostOutOctets Counter, - hostOutErrors Counter, - hostOutBroadcastPkts Counter, - hostOutMulticastPkts Counter -} - -hostAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of this host." - ::= { hostEntry 1 } - -hostCreationOrder OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that defines the relative ordering of - the creation time of hosts captured for a - particular hostControlEntry. This index shall - be between 1 and N, where N is the value of - the associated hostControlTableSize. The ordering - of the indexes is based on the order of each entry's - insertion into the table, in which entries added - earlier have a lower index value than entries added - later. - - It is important to note that the order for a - particular entry may change as an (earlier) entry - is deleted from the table. Because this order may - change, management stations should make use of the - hostControlLastDeleteTime variable in the - hostControlEntry associated with the relevant - portion of the hostTable. By observing - this variable, the management station may detect - the circumstances where a previous association - between a value of hostCreationOrder - and a hostEntry may no longer hold." - ::= { hostEntry 2 } - -hostIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The set of collected host statistics of which - this entry is a part. The set of hosts - identified by a particular value of this - index is associated with the hostControlEntry - as identified by the same value of hostControlIndex." - ::= { hostEntry 3 } - -hostInPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets without errors transmitted to - this address since it was added to the hostTable." - ::= { hostEntry 4 } - -hostOutPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets including errors transmitted - by this address since it was added to the hostTable." - ::= { hostEntry 5 } - -hostInOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets transmitted to this address - since it was added to the hostTable (excluding - framing bits but including FCS octets), except for - those octets in packets that contained errors." - ::= { hostEntry 6 } - -hostOutOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets transmitted by this address - since it was added to the hostTable (excluding - framing bits but including FCS octets), including - those octets in packets that contained errors." - ::= { hostEntry 7 } - -hostOutErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of error packets transmitted by this - address since this host was added to the hostTable." - ::= { hostEntry 8 } - -hostOutBroadcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to the broadcast address - since this host was added to the hostTable." - ::= { hostEntry 9 } - -hostOutMulticastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to a multicast address - since this host was added to the hostTable. - Note that this number does not include packets - directed to the broadcast address." - ::= { hostEntry 10 } - - --- host Time Table - -hostTimeTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostTimeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of time-ordered host table entries." - ::= { hosts 3 } - -hostTimeEntry OBJECT-TYPE - SYNTAX HostTimeEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for a particular host - that has been discovered on an interface of this - device. This collection includes the relative - ordering of the creation time of this object." - INDEX { hostTimeIndex, hostTimeCreationOrder } - ::= { hostTimeTable 1 } - -HostTimeEntry ::= SEQUENCE { - hostTimeAddress OCTET STRING, - hostTimeCreationOrder INTEGER (1..65535), - hostTimeIndex INTEGER (1..65535), - hostTimeInPkts Counter, - hostTimeOutPkts Counter, - hostTimeInOctets Counter, - hostTimeOutOctets Counter, - hostTimeOutErrors Counter, - hostTimeOutBroadcastPkts Counter, - hostTimeOutMulticastPkts Counter -} - -hostTimeAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of this host." - ::= { hostTimeEntry 1 } - -hostTimeCreationOrder OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in - the hostTime table among those entries associated - with the same hostControlEntry. This index shall - be between 1 and N, where N is the value of - the associated hostControlTableSize. The ordering - of the indexes is based on the order of each entry's - insertion into the table, in which entries added - earlier have a lower index value than entries added - later. Thus the management station has the ability - to learn of new entries added to this table without - downloading the entire table. - - It is important to note that the index for a - particular entry may change as an (earlier) entry - is deleted from the table. Because this order may - change, management stations should make use of the - hostControlLastDeleteTime variable in the - hostControlEntry associated with the relevant - portion of the hostTimeTable. By observing - this variable, the management station may detect - the circumstances where a download of the table - may have missed entries, and where a previous - association between a value of hostTimeCreationOrder - and a hostTimeEntry may no longer hold." - ::= { hostTimeEntry 2 } - -hostTimeIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The set of collected host statistics of which - this entry is a part. The set of hosts - identified by a particular value of this - index is associated with the hostControlEntry - as identified by the same value of hostControlIndex." - ::= { hostTimeEntry 3 } - -hostTimeInPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets without errors transmitted to - this address since it was added to the hostTimeTable." - ::= { hostTimeEntry 4 } - -hostTimeOutPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets including errors transmitted - by this address since it was added to the - hostTimeTable." - ::= { hostTimeEntry 5 } - -hostTimeInOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets transmitted to this address - since it was added to the hostTimeTable (excluding - framing bits but including FCS octets), except for - those octets in packets that contained errors." - ::= { hostTimeEntry 6 } - -hostTimeOutOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets transmitted by this address since - it was added to the hostTimeTable (excluding framing - bits but including FCS octets), including those - octets in packets that contained errors." - ::= { hostTimeEntry 7 } - -hostTimeOutErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of error packets transmitted by this - address since this host was added to the - hostTimeTable." - ::= { hostTimeEntry 8 } - -hostTimeOutBroadcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to the broadcast address - since this host was added to the hostTimeTable." - ::= { hostTimeEntry 9 } - -hostTimeOutMulticastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to a multicast address - since this host was added to the hostTimeTable. - Note that this number does not include packets - directed to the broadcast address." - ::= { hostTimeEntry 10 } - - --- The Host Top "N" Group - --- Implementation of the Host Top N group is optional. --- --- The Host Top N group requires the implementation of the --- host group. --- --- The Host Top N group is used to prepare reports that --- describe the hosts that top a list ordered by one of --- their statistics. The available statistics are samples --- of one of their base statistics, over an interval --- specified by the management station. Thus, these --- statistics are rate based. The management --- station also selects how many such hosts are reported. - --- The hostTopNControlTable is used to initiate the generation --- of such a report. The management station may select the --- parameters of such a report, such as which interface, --- which statistic, how many hosts, and the start and stop --- times of the sampling. When the report is prepared, --- entries are created in the hostTopNTable associated with --- the relevant hostTopNControlEntry. These entries are - --- static for each report after it has been prepared. - -hostTopNControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostTopNControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of top N host control entries." - ::= { hostTopN 1 } - -hostTopNControlEntry OBJECT-TYPE - SYNTAX HostTopNControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of parameters that control the creation of a - report of the top N hosts according to several - metrics." - INDEX { hostTopNControlIndex } - ::= { hostTopNControlTable 1 } - -HostTopNControlEntry ::= SEQUENCE { - hostTopNControlIndex INTEGER (1..65535), - hostTopNHostIndex INTEGER (1..65535), - hostTopNRateBase INTEGER, - hostTopNTimeRemaining INTEGER, - hostTopNDuration INTEGER, - hostTopNRequestedSize INTEGER, - hostTopNGrantedSize INTEGER, - hostTopNStartTime TimeTicks, - hostTopNOwner OwnerString, - hostTopNStatus INTEGER -} - -hostTopNControlIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry - in the hostTopNControl table. Each such - entry defines one top N report prepared for - one interface." - ::= { hostTopNControlEntry 1 } - -hostTopNHostIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The host table for which a top N report will be - prepared on behalf of this entry. The host table - identified by a particular value of this index is - associated with the same host table as identified - by the same value of hostIndex. - - This object may not be modified if the associated - hostTopNStatus object is equal to valid(1)." - ::= { hostTopNControlEntry 2 } - -hostTopNRateBase OBJECT-TYPE - SYNTAX INTEGER { - hostTopNInPkts(1), - hostTopNOutPkts(2), - hostTopNInOctets(3), - hostTopNOutOctets(4), - hostTopNOutErrors(5), - hostTopNOutBroadcastPkts(6), - hostTopNOutMulticastPkts(7) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The variable for each host that the hostTopNRate - variable is based upon. - - This object may not be modified if the associated - hostTopNStatus object is equal to valid(1)." - ::= { hostTopNControlEntry 3 } - -hostTopNTimeRemaining OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The number of seconds left in the report currently - being collected. When this object is modified by - the management station, a new collection is started, - possibly aborting a currently running report. The - new value is used as the requested duration of this - report, which is loaded into the associated - hostTopNDuration object. - - When this object is set to a non-zero value, any - associated hostTopNEntries shall be made - inaccessible by the monitor. While the value of this - object is non-zero, it decrements by one per second - until it reaches zero. During this time, all - associated hostTopNEntries shall remain - inaccessible. At the time that this object - decrements to zero, the report is made - accessible in the hostTopNTable. Thus, the hostTopN - table needs to be created only at the end of the - collection interval." - DEFVAL { 0 } - ::= { hostTopNControlEntry 4 } - -hostTopNDuration OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of seconds that this report has collected - during the last sampling interval, or if this - report is currently being collected, the number - of seconds that this report is being collected - during this sampling interval. - - When the associated hostTopNTimeRemaining object is - set, this object shall be set by the probe to the - same value and shall not be modified until the next - time the hostTopNTimeRemaining is set. - - This value shall be zero if no reports have been - requested for this hostTopNControlEntry." - DEFVAL { 0 } - ::= { hostTopNControlEntry 5 } - -hostTopNRequestedSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum number of hosts requested for the top N - table. - - When this object is created or modified, the probe - should set hostTopNGrantedSize as closely to this - object as is possible for the particular probe - implementation and available resources." - DEFVAL { 10 } - ::= { hostTopNControlEntry 6 } - -hostTopNGrantedSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of hosts in the top N table. - - When the associated hostTopNRequestedSize object is - created or modified, the probe should set this - object as closely to the requested value as is - possible for the particular implementation and - available resources. The probe must not lower this - value except as a result of a set to the associated - hostTopNRequestedSize object. - - Hosts with the highest value of hostTopNRate shall be - placed in this table in decreasing order of this rate - until there is no more room or until there are no more - hosts." - ::= { hostTopNControlEntry 7 } - -hostTopNStartTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime when this top N report was - last started. In other words, this is the time that - the associated hostTopNTimeRemaining object was - modified to start the requested report." - ::= { hostTopNControlEntry 8 } - -hostTopNOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { hostTopNControlEntry 9 } - -hostTopNStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this hostTopNControl entry. - If this object is not equal to valid(1), all - associated hostTopNEntries shall be deleted by - the agent." - ::= { hostTopNControlEntry 10 } - -hostTopNTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostTopNEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of top N host entries." - ::= { hostTopN 2 } - -hostTopNEntry OBJECT-TYPE - SYNTAX HostTopNEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of statistics for a host that is part of a - top N report." - INDEX { hostTopNReport, hostTopNIndex } - ::= { hostTopNTable 1 } - -HostTopNEntry ::= SEQUENCE { - hostTopNReport INTEGER (1..65535), - hostTopNIndex INTEGER (1..65535), - hostTopNAddress OCTET STRING, - hostTopNRate INTEGER -} - -hostTopNReport OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This object identifies the top N report of which - this entry is a part. The set of hosts - identified by a particular value of this - object is part of the same report as identified - by the same value of the hostTopNControlIndex object." - ::= { hostTopNEntry 1 } - -hostTopNIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in - the hostTopN table among those in the same report. - This index is between 1 and N, where N is the - number of entries in this table. Increasing values - of hostTopNIndex shall be assigned to entries with - decreasing values of hostTopNRate until index N - is assigned to the entry with the lowest value of - hostTopNRate or there are no more hostTopNEntries." - ::= { hostTopNEntry 2 } - -hostTopNAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of this host." - ::= { hostTopNEntry 3 } - -hostTopNRate OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of change in the selected variable - during this sampling interval. The selected - variable is this host's instance of the object - selected by hostTopNRateBase." - ::= { hostTopNEntry 4 } - - --- The Matrix Group - --- Implementation of the Matrix group is optional. --- --- The Matrix group consists of the matrixControlTable, --- matrixSDTable and the matrixDSTable. These tables --- store statistics for a particular conversation between --- two addresses. As the device detects a new conversation, --- including those to a non-unicast address, it creates a --- new entry in both of the matrix tables. --- It must only create new entries based on information --- received in good packets. If the monitoring device finds --- itself short of resources, it may delete entries as needed. --- It is suggested that the device delete the least recently --- used entries first. - -matrixControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of information entries for the - traffic matrix on each interface." - ::= { matrix 1 } - -matrixControlEntry OBJECT-TYPE - SYNTAX MatrixControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "Information about a traffic matrix on a - particular interface." - INDEX { matrixControlIndex } - ::= { matrixControlTable 1 } - -MatrixControlEntry ::= SEQUENCE { - matrixControlIndex INTEGER (1..65535), - matrixControlDataSource OBJECT IDENTIFIER, - matrixControlTableSize INTEGER, - matrixControlLastDeleteTime TimeTicks, - matrixControlOwner OwnerString, - matrixControlStatus INTEGER -} - -matrixControlIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in the - matrixControl table. Each such entry defines - a function that discovers conversations on a particular - interface and places statistics about them in the - matrixSDTable and the matrixDSTable on behalf of this - matrixControlEntry." - ::= { matrixControlEntry 1 } - -matrixControlDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the source of - the data from which this entry creates a traffic matrix. - This source can be any interface on this device. In - order to identify a particular interface, this object - shall identify the instance of the ifIndex object, - defined in [4,6], for the desired interface. For - example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - matrixControlStatus object is equal to valid(1)." - ::= { matrixControlEntry 2 } - -matrixControlTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of matrixSDEntries in the matrixSDTable - for this interface. This must also be the value of - the number of entries in the matrixDSTable for this - interface." - ::= { matrixControlEntry 3 } - -matrixControlLastDeleteTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime when the last entry - was deleted from the portion of the matrixSDTable - or matrixDSTable associated with this - matrixControlEntry. - If no deletions have occurred, this value shall be - zero." - ::= { matrixControlEntry 4 } - -matrixControlOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { matrixControlEntry 5 } - -matrixControlStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this matrixControl entry. - - If this object is not equal to valid(1), all - associated entries in the matrixSDTable and the - matrixDSTable shall be deleted by the agent." - ::= { matrixControlEntry 6 } - -matrixSDTable OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixSDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of traffic matrix entries indexed by - source and destination MAC address." - ::= { matrix 2 } - -matrixSDEntry OBJECT-TYPE - SYNTAX MatrixSDEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for communications between - two addresses on a particular interface." - INDEX { matrixSDIndex, - matrixSDSourceAddress, matrixSDDestAddress } - ::= { matrixSDTable 1 } - -MatrixSDEntry ::= SEQUENCE { - matrixSDSourceAddress OCTET STRING, - matrixSDDestAddress OCTET STRING, - matrixSDIndex INTEGER (1..65535), - matrixSDPkts Counter, - matrixSDOctets Counter, - matrixSDErrors Counter -} - -matrixSDSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The source physical address." - ::= { matrixSDEntry 1 } - -matrixSDDestAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The destination physical address." - ::= { matrixSDEntry 2 } - -matrixSDIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The set of collected matrix statistics of which - this entry is a part. The set of matrix statistics - identified by a particular value of this index - is associated with the same matrixControlEntry - as identified by the same value of matrixControlIndex." - ::= { matrixSDEntry 3 } - -matrixSDPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets transmitted from the source - address to the destination address (this number - includes error packets)." - ::= { matrixSDEntry 4 } - -matrixSDOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets (excluding framing bits but - including FCS octets) contained in all packets - transmitted from the source address to the - destination address." - ::= { matrixSDEntry 5 } - -matrixSDErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of error packets transmitted from - the source address to the destination address." - ::= { matrixSDEntry 6 } - - --- Traffic matrix tables from destination to source - -matrixDSTable OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixDSEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of traffic matrix entries indexed by - destination and source MAC address." - ::= { matrix 3 } - -matrixDSEntry OBJECT-TYPE - SYNTAX MatrixDSEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for communications between - two address on a particular interface." - INDEX { matrixDSIndex, - matrixDSDestAddress, matrixDSSourceAddress } - ::= { matrixDSTable 1 } - -MatrixDSEntry ::= SEQUENCE { - matrixDSSourceAddress OCTET STRING, - matrixDSDestAddress OCTET STRING, - matrixDSIndex INTEGER (1..65535), - matrixDSPkts Counter, - matrixDSOctets Counter, - matrixDSErrors Counter -} - -matrixDSSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The source physical address." - ::= { matrixDSEntry 1 } - -matrixDSDestAddress OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The destination physical address." - ::= { matrixDSEntry 2 } - -matrixDSIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The set of collected matrix statistics of which - this entry is a part. The set of matrix statistics - identified by a particular value of this index - is associated with the same matrixControlEntry - as identified by the same value of matrixControlIndex." - ::= { matrixDSEntry 3 } - -matrixDSPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets transmitted from the source - address to the destination address (this number - includes error packets)." - ::= { matrixDSEntry 4 } - -matrixDSOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of octets (excluding framing bits - but including FCS octets) contained in all packets - transmitted from the source address to the - destination address." - ::= { matrixDSEntry 5 } - -matrixDSErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of error packets transmitted from - the source address to the destination address." - ::= { matrixDSEntry 6 } - - --- The Filter Group - --- Implementation of the Filter group is optional. - --- --- The Filter group allows packets to be captured with an --- arbitrary filter expression. A logical data and --- event stream or "channel" is formed by the packets --- that match the filter expression. --- --- This filter mechanism allows the creation of an arbitrary --- logical expression with which to filter packets. Each --- filter associated with a channel is OR'ed with the others. --- Within a filter, any bits checked in the data and status are --- AND'ed with respect to other bits in the same filter. The --- NotMask also allows for checking for inequality. Finally, --- the channelAcceptType object allows for inversion of the --- whole equation. --- --- The channel can be turned on or off, and can also --- generate events when packets pass through it. - -filterTable OBJECT-TYPE - SYNTAX SEQUENCE OF FilterEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of packet filter entries." - ::= { filter 1 } - -filterEntry OBJECT-TYPE - SYNTAX FilterEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of parameters for a packet filter applied on a - particular interface." - INDEX { filterIndex } - ::= { filterTable 1 } - -FilterEntry ::= SEQUENCE { - filterIndex INTEGER (1..65535), - filterChannelIndex INTEGER (1..65535), - filterPktDataOffset INTEGER, - filterPktData OCTET STRING, - filterPktDataMask OCTET STRING, - filterPktDataNotMask OCTET STRING, - filterPktStatus INTEGER, - filterPktStatusMask INTEGER, - filterPktStatusNotMask INTEGER, - filterOwner OwnerString, - filterStatus INTEGER -} - -filterIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry - in the filter table. Each such entry defines - one filter that is to be applied to every packet - received on an interface." - ::= { filterEntry 1 } - -filterChannelIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the channel of which this - filter is a part. The filters identified by a - particular value of this object are associated - with the same channel as identified by the same - value of the channelIndex object." - ::= { filterEntry 2 } - -filterPktDataOffset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The offset from the beginning of each packet where - a match of packet data will be attempted. This offset - is measured from the point in the physical layer - packet after the framing bits, if any. For example, - in an Ethernet frame, this point is at the beginning - of the destination MAC address. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - DEFVAL { 0 } - ::= { filterEntry 3 } - -filterPktData OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The data that is to be matched with the input packet. - For each packet received, this filter and the - accompanying filterPktDataMask and - filterPktDataNotMask will be adjusted for the - offset. The only bits relevant to this - match algorithm are those that have the corresponding - filterPktDataMask bit equal to one. The following - three rules are then applied to every packet: - - (1) If the packet is too short and does not have data - corresponding to part of the filterPktData, the - packet will fail this data match. - - (2) For each relevant bit from the packet with the - corresponding filterPktDataNotMask bit set to - zero, if the bit from the packet is not equal to - the corresponding bit from the filterPktData, - then the packet will fail this data match. - - (3) If for every relevant bit from the packet with the - corresponding filterPktDataNotMask bit set to one, - the bit from the packet is equal to the - corresponding bit from the filterPktData, then - the packet will fail this data match. - - Any packets that have not failed any of the three - matches above have passed this data match. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 4 } - -filterPktDataMask OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The mask that is applied to the match process. - After adjusting this mask for the offset, only those - bits in the received packet that correspond to bits - set in this mask are relevant for further processing - by the match algorithm. The offset is applied to - filterPktDataMask in the same way it is applied to - the filter. For the purposes of the matching - algorithm, if the associated filterPktData object - is longer than this mask, this mask is conceptually - extended with '1' bits until it reaches the - length of the filterPktData object. - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 5 } - -filterPktDataNotMask OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The inversion mask that is applied to the match - process. After adjusting this mask for the offset, - those relevant bits in the received packet that - correspond to bits cleared in this mask must all - be equal to their corresponding bits in the - filterPktData object for the packet to be accepted. - In addition, at least one of those relevant - bits in the received packet that correspond to bits - set in this mask must be different to its - corresponding bit in the filterPktData object. - - For the purposes of the matching algorithm, if - the associated filterPktData object is longer than - this mask, this mask is conceptually extended with - '0' bits until it reaches the length of the - filterPktData object. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 6 } - -filterPktStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status that is to be matched with the input - packet. The only bits relevant to this match - algorithm are those that have the corresponding - filterPktStatusMask bit equal to one. - - The following two rules are then applied to every - packet: - - (1) For each relevant bit from the packet status - with the corresponding filterPktStatusNotMask - bit set to zero, if the bit from the packet - status is not equal to the corresponding bit - from the filterPktStatus, then the packet will - fail this status match. - - (2) If for every relevant bit from the packet status - with the corresponding filterPktStatusNotMask - bit set to one, the bit from the packet status - is equal to the corresponding bit from the - filterPktStatus, then the packet will fail - this status match. - - Any packets that have not failed either of the two - matches above have passed this status match. - - The value of the packet status is a sum. This sum - initially takes the value zero. Then, for each - error, E, that has been discovered in this packet, - 2 raised to a value representing E is added to the sum. - The errors and the bits that represent them are - dependent on the media type of the interface that - this channel is receiving packets from. - - The errors defined for a packet captured off of an - Ethernet interface are as follows: - - bit # Error - 0 Packet is longer than 1518 octets - 1 Packet is shorter than 64 octets - 2 Packet experienced a CRC or Alignment - error - - For example, an Ethernet fragment would have a - value of 6 (2^1 + 2^2). - - As this MIB is expanded to new media types, this - object will have other media-specific errors defined. - - For the purposes of this status matching algorithm, if - the packet status is longer than this - object, filterPktStatus this object is conceptually - extended with '0' bits until it reaches the size of - the packet status. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 7 } - -filterPktStatusMask OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The mask that is applied to the status match process. - Only those bits in the received packet that correspond - to bits set in this mask are relevant for further - processing by the status match algorithm. For the - purposes of the matching algorithm, if the - associated filterPktStatus object is longer than - this mask, this mask is conceptually extended with - '1' bits until it reaches the size of the - filterPktStatus. In addition, if a packet status is - longer than this mask, this mask is conceptually - extended with '0' bits until it reaches the size of - the packet status. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 8 } - -filterPktStatusNotMask OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The inversion mask that is applied to the status match - process. Those relevant bits in the received packet - status that correspond to bits cleared in this mask - must all be equal to their corresponding bits in the - filterPktStatus object for the packet to be accepted. - In addition, at least one of those relevant bits in the - received packet status that correspond to bits set in - this mask must be different to its corresponding bit - in the filterPktStatus object for the packet to be - accepted. - - For the purposes of the matching algorithm, if the - associated filterPktStatus object or a packet status - is longer than this mask, this mask is conceptually - extended with '0' bits until it reaches the longer of - the lengths of the filterPktStatus object and the - packet status. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 9 } - -filterOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { filterEntry 10 } - -filterStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this filter entry." - ::= { filterEntry 11 } - -channelTable OBJECT-TYPE - SYNTAX SEQUENCE OF ChannelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of packet channel entries." - ::= { filter 2 } - -channelEntry OBJECT-TYPE - SYNTAX ChannelEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of parameters for a packet channel applied on a - particular interface." - INDEX { channelIndex } - ::= { channelTable 1 } - -ChannelEntry ::= SEQUENCE { - channelIndex INTEGER (1..65535), - channelIfIndex INTEGER (1..65535), - channelAcceptType INTEGER, - channelDataControl INTEGER, - channelTurnOnEventIndex INTEGER (0..65535), - channelTurnOffEventIndex INTEGER (0..65535), - channelEventIndex INTEGER (0..65535), - channelEventStatus INTEGER, - channelMatches Counter, - channelDescription DisplayString (SIZE (0..127)), - channelOwner OwnerString, - channelStatus INTEGER -} - -channelIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry - in the channel table. Each such - entry defines one channel, a logical data - and event stream." - ::= { channelEntry 1 } - -channelIfIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies the - interface on this remote network monitoring device - to which the associated filters are applied to allow - data into this channel. The interface identified by - a particular value of this object is the same - interface as identified by the same value of the - ifIndex object, defined in [4,6]. The filters in - this group are applied to all packets on the local - network segment attached to the identified - interface. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 2 } - -channelAcceptType OBJECT-TYPE - SYNTAX INTEGER { - acceptMatched(1), - acceptFailed(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object controls the action of the filters - associated with this channel. If this object is equal - to acceptMatched(1), packets will be accepted to this - channel if they are accepted by both the packet data - and packet status matches of an associated filter. If - this object is equal to acceptFailed(2), packets will - be accepted to this channel only if they fail either - the packet data match or the packet status match of - each of the associated filters. - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 3 } - -channelDataControl OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object controls the flow of data through this - channel. If this object is on(1), data, status and - events flow through this channel. If this object is - off(2), data, status and events will not flow through - this channel." - DEFVAL { off } - ::= { channelEntry 4 } - -channelTurnOnEventIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of this object identifies the event - that is configured to turn the associated - channelDataControl from off to on when the event is - generated. The event identified by a particular value - of this object is the same event as identified by the - same value of the eventIndex object. If there is no - corresponding entry in the eventTable, then no - association exists. In fact, if no event is intended - for this channel, channelTurnOnEventIndex must be - set to zero, a non-existent event index. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 5 } - -channelTurnOffEventIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of this object identifies the event - that is configured to turn the associated - channelDataControl from on to off when the event is - generated. The event identified by a particular value - of this object is the same event as identified by the - same value of the eventIndex object. If there is no - corresponding entry in the eventTable, then no - association exists. In fact, if no event is intended - for this channel, channelTurnOffEventIndex must be - set to zero, a non-existent event index. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 6 } - -channelEventIndex OBJECT-TYPE - SYNTAX INTEGER (0..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The value of this object identifies the event - that is configured to be generated when the - associated channelDataControl is on and a packet - is matched. The event identified by a particular value - of this object is the same event as identified by the - same value of the eventIndex object. If there is no - corresponding entry in the eventTable, then no - association exists. In fact, if no event is intended - for this channel, channelEventIndex must be - set to zero, a non-existent event index. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 7 } - -channelEventStatus OBJECT-TYPE - SYNTAX INTEGER { - eventReady(1), - eventFired(2), - eventAlwaysReady(3) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The event status of this channel. - - If this channel is configured to generate events - when packets are matched, a means of controlling - the flow of those events is often needed. When - this object is equal to eventReady(1), a single - event may be generated, after which this object - will be set by the probe to eventFired(2). While - in the eventFired(2) state, no events will be - generated until the object is modified to - eventReady(1) (or eventAlwaysReady(3)). The - management station can thus easily respond to a - notification of an event by re-enabling this object. - - If the management station wishes to disable this - flow control and allow events to be generated - at will, this object may be set to - eventAlwaysReady(3). Disabling the flow control - is discouraged as it can result in high network - traffic or other performance problems." - DEFVAL { eventReady } - ::= { channelEntry 8 } - -channelMatches OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times this channel has matched a packet. - Note that this object is updated even when - channelDataControl is set to off." - ::= { channelEntry 9 } - -channelDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A comment describing this channel." - ::= { channelEntry 10 } - -channelOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { channelEntry 11 } - -channelStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this channel entry." - ::= { channelEntry 12 } - - --- The Packet Capture Group - --- Implementation of the Packet Capture group is optional. --- --- The Packet Capture Group requires implementation of the --- Filter Group. --- --- The Packet Capture group allows packets to be captured --- upon a filter match. The bufferControlTable controls --- the captured packets output from a channel that is --- associated with it. The captured packets are placed --- in entries in the captureBufferTable. These entries are --- associated with the bufferControlEntry on whose behalf they --- were stored. - -bufferControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF BufferControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of buffers control entries." - ::= { capture 1 } - -bufferControlEntry OBJECT-TYPE - SYNTAX BufferControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of parameters that control the collection of - a stream of packets that have matched filters." - INDEX { bufferControlIndex } - ::= { bufferControlTable 1 } - -BufferControlEntry ::= SEQUENCE { - bufferControlIndex INTEGER (1..65535), - bufferControlChannelIndex INTEGER (1..65535), - bufferControlFullStatus INTEGER, - bufferControlFullAction INTEGER, - bufferControlCaptureSliceSize INTEGER, - bufferControlDownloadSliceSize INTEGER, - bufferControlDownloadOffset INTEGER, - bufferControlMaxOctetsRequested INTEGER, - bufferControlMaxOctetsGranted INTEGER, - bufferControlCapturedPackets INTEGER, - bufferControlTurnOnTime TimeTicks, - bufferControlOwner OwnerString, - bufferControlStatus INTEGER -} - -bufferControlIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry - in the bufferControl table. The value of this - index shall never be zero. Each such - entry defines one set of packets that is - captured and controlled by one or more filters." - ::= { bufferControlEntry 1 } - -bufferControlChannelIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "An index that identifies the channel that is the - source of packets for this bufferControl table. - The channel identified by a particular value of this - index is the same as identified by the same value of - the channelIndex object. - - This object may not be modified if the associated - bufferControlStatus object is equal to valid(1)." - ::= { bufferControlEntry 2 } - -bufferControlFullStatus OBJECT-TYPE - SYNTAX INTEGER { - spaceAvailable(1), - full(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This object shows whether the buffer has room to - accept new packets or if it is full. - - If the status is spaceAvailable(1), the buffer is - accepting new packets normally. If the status is - full(2) and the associated bufferControlFullAction - object is wrapWhenFull, the buffer is accepting new - packets by deleting enough of the oldest packets - to make room for new ones as they arrive. Otherwise, - if the status is full(2) and the - bufferControlFullAction object is lockWhenFull, - then the buffer has stopped collecting packets. - - When this object is set to full(2) the probe must - not later set it to spaceAvailable(1) except in the - case of a significant gain in resources such as - an increase of bufferControlOctetsGranted. In - particular, the wrap-mode action of deleting old - packets to make room for newly arrived packets - must not affect the value of this object." - ::= { bufferControlEntry 3 } - -bufferControlFullAction OBJECT-TYPE - SYNTAX INTEGER { - lockWhenFull(1), - wrapWhenFull(2) -- FIFO - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Controls the action of the buffer when it - reaches the full status. When in the lockWhenFull(1) - state a packet is added to the buffer that - fills the buffer, the bufferControlFullStatus will - be set to full(2) and this buffer will stop capturing - packets." - ::= { bufferControlEntry 4 } - -bufferControlCaptureSliceSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum number of octets of each packet - that will be saved in this capture buffer. - For example, if a 1500 octet packet is received by - the probe and this object is set to 500, then only - 500 octets of the packet will be stored in the - associated capture buffer. If this variable is set - to 0, the capture buffer will save as many octets - as is possible. - - This object may not be modified if the associated - bufferControlStatus object is equal to valid(1)." - DEFVAL { 100 } - ::= { bufferControlEntry 5 } - -bufferControlDownloadSliceSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The maximum number of octets of each packet - in this capture buffer that will be returned in - an SNMP retrieval of that packet. For example, - if 500 octets of a packet have been stored in the - associated capture buffer, the associated - bufferControlDownloadOffset is 0, and this - object is set to 100, then the captureBufferPacket - object that contains the packet will contain only - the first 100 octets of the packet. - - A prudent manager will take into account possible - interoperability or fragmentation problems that may - occur if the download slice size is set too large. - In particular, conformant SNMP implementations are not - required to accept messages whose length exceeds 484 - octets, although they are encouraged to support larger - datagrams whenever feasible." - DEFVAL { 100 } - ::= { bufferControlEntry 6 } - -bufferControlDownloadOffset OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The offset of the first octet of each packet - in this capture buffer that will be returned in - an SNMP retrieval of that packet. For example, - if 500 octets of a packet have been stored in the - associated capture buffer and this object is set to - 100, then the captureBufferPacket object that - contains the packet will contain bytes starting - 100 octets into the packet." - DEFVAL { 0 } - ::= { bufferControlEntry 7 } - -bufferControlMaxOctetsRequested OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The requested maximum number of octets to be - saved in this captureBuffer, including any - implementation-specific overhead. If this variable - is set to -1, the capture buffer will save as many - octets as is possible. - - When this object is created or modified, the probe - should set bufferControlMaxOctetsGranted as closely - to this object as is possible for the particular probe - implementation and available resources. However, if - the object has the special value of -1, the probe - must set bufferControlMaxOctetsGranted to -1." - DEFVAL { -1 } - ::= { bufferControlEntry 8 } - -bufferControlMaxOctetsGranted OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of octets that can be - saved in this captureBuffer, including overhead. - If this variable is -1, the capture buffer will save - as many octets as possible. - - When the bufferControlMaxOctetsRequested object is - created or modified, the probe should set this object - as closely to the requested value as is possible for - the particular probe implementation and available - resources. However, if the request object has the - special value of -1, the probe must set this object - to -1. The probe must not lower this value except - as a result of a modification to the associated - bufferControlMaxOctetsRequested object. - - When this maximum number of octets is reached - and a new packet is to be added to this - capture buffer and the corresponding - bufferControlFullAction is set to wrapWhenFull(2), - enough of the oldest packets associated with this - capture buffer shall be deleted by the agent so - that the new packet can be added. If the - corresponding bufferControlFullAction is set to - lockWhenFull(1), the new packet shall be discarded. - In either case, the probe must set - bufferControlFullStatus to full(2). - - When the value of this object changes to a value less - than the current value, entries are deleted from - the captureBufferTable associated with this - bufferControlEntry. Enough of the - oldest of these captureBufferEntries shall be - deleted by the agent so that the number of octets - used remains less than or equal to the new value of - this object. - - When the value of this object changes to a value greater - than the current value, the number of associated - captureBufferEntries may be allowed to grow." - ::= { bufferControlEntry 9 } - -bufferControlCapturedPackets OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of packets currently in this captureBuffer." - ::= { bufferControlEntry 10 } - -bufferControlTurnOnTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime when this capture buffer was - first turned on." - ::= { bufferControlEntry 11 } - -bufferControlOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { bufferControlEntry 12 } - -bufferControlStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this buffer Control Entry." - ::= { bufferControlEntry 13 } - -captureBufferTable OBJECT-TYPE - SYNTAX SEQUENCE OF CaptureBufferEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of packets captured off of a channel." - ::= { capture 2 } - -captureBufferEntry OBJECT-TYPE - SYNTAX CaptureBufferEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A packet captured off of an attached network." - INDEX { captureBufferControlIndex, captureBufferIndex } - ::= { captureBufferTable 1 } - -CaptureBufferEntry ::= SEQUENCE { - captureBufferControlIndex INTEGER (1..65535), - captureBufferIndex INTEGER, - captureBufferPacketID INTEGER, - captureBufferPacketData OCTET STRING, - captureBufferPacketLength INTEGER, - captureBufferPacketTime INTEGER, - captureBufferPacketStatus INTEGER -} - -captureBufferControlIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The index of the bufferControlEntry with which - this packet is associated." - ::= { captureBufferEntry 1 } - -captureBufferIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry - in the captureBuffer table associated with a - particular bufferControlEntry. This index will - start at 1 and increase by one for each new packet - added with the same captureBufferControlIndex." - ::= { captureBufferEntry 2 } - -captureBufferPacketID OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that describes the order of packets - that are received on a particular interface. - The packetID of a packet captured on an - interface is defined to be greater than the - packetID's of all packets captured previously on - the same interface. As the captureBufferPacketID - object has a maximum positive value of 2^31 - 1, - any captureBufferPacketID object shall have the - value of the associated packet's packetID mod 2^31." - ::= { captureBufferEntry 3 } - -captureBufferPacketData OBJECT-TYPE - SYNTAX OCTET STRING - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The data inside the packet, starting at the beginning - of the packet plus any offset specified in the - associated bufferControlDownloadOffset, including any - link level headers. The length of the data in this - object is the minimum of the length of the captured - packet minus the offset, the length of the associated - bufferControlCaptureSliceSize minus the offset, and the - associated bufferControlDownloadSliceSize. If this - minimum is less than zero, this object shall have a - length of zero." - ::= { captureBufferEntry 4 } - -captureBufferPacketLength OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The actual length (off the wire) of the packet stored - in this entry, including FCS octets." - ::= { captureBufferEntry 5 } - -captureBufferPacketTime OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of milliseconds that had passed since - this capture buffer was first turned on when this - packet was captured." - ::= { captureBufferEntry 6 } - -captureBufferPacketStatus OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "A value which indicates the error status of this - packet. - - The value of this object is defined in the same way as - filterPacketStatus. The value is a sum. This sum - initially takes the value zero. Then, for each - error, E, that has been discovered in this packet, - 2 raised to a value representing E is added to the sum. - - The errors defined for a packet captured off of an - Ethernet interface are as follows: - - bit # Error - 0 Packet is longer than 1518 octets - 1 Packet is shorter than 64 octets - 2 Packet experienced a CRC or Alignment - error - 3 First packet in this capture buffer after - it was detected that some packets were - not processed correctly. - - For example, an Ethernet fragment would have a - value of 6 (2^1 + 2^2). - - As this MIB is expanded to new media types, this object - will have other media-specific errors defined." - ::= { captureBufferEntry 7 } - - --- The Event Group - --- Implementation of the Event group is optional. --- --- The Event group controls the generation and notification --- of events from this device. Each entry in the eventTable --- describes the parameters of the event that can be triggered. --- Each event entry is fired by an associated condition located --- elsewhere in the MIB. An event entry may also be associated --- with a function elsewhere in the MIB that will be executed --- when the event is generated. For example, a channel may --- be turned on or off by the firing of an event. --- --- Each eventEntry may optionally specify that a log entry - --- be created on its behalf whenever the event occurs. --- Each entry may also specify that notification should --- occur by way of SNMP trap messages. In this case, the --- community for the trap message is given in the associated --- eventCommunity object. The enterprise and specific trap --- fields of the trap are determined by the condition that --- triggered the event. Three traps are defined in a companion --- document: risingAlarm, fallingAlarm, and packetMatch. --- If the eventTable is triggered by a condition specified --- elsewhere, the enterprise and specific trap fields --- must be specified for traps generated for that condition. - -eventTable OBJECT-TYPE - SYNTAX SEQUENCE OF EventEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of events to be generated." - ::= { event 1 } - -eventEntry OBJECT-TYPE - SYNTAX EventEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of parameters that describe an event to be - generated when certain conditions are met." - INDEX { eventIndex } - ::= { eventTable 1 } - -EventEntry ::= SEQUENCE { - eventIndex INTEGER (1..65535), - eventDescription DisplayString (SIZE (0..127)), - eventType INTEGER, - eventCommunity OCTET STRING (SIZE (0..127)), - eventLastTimeSent TimeTicks, - eventOwner OwnerString, - eventStatus INTEGER -} - -eventIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry in the - event table. Each such entry defines one event that - is to be generated when the appropriate conditions - occur." - ::= { eventEntry 1 } - -eventDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "A comment describing this event entry." - ::= { eventEntry 2 } - -eventType OBJECT-TYPE - SYNTAX INTEGER { - none(1), - log(2), - snmp-trap(3), -- send an SNMP trap - log-and-trap(4) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The type of notification that the probe will make - about this event. In the case of log, an entry is - made in the log table for each event. In the case of - snmp-trap, an SNMP trap is sent to one or more - management stations." - ::= { eventEntry 3 } - -eventCommunity OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..127)) - ACCESS read-write - STATUS mandatory - DESCRIPTION - "If an SNMP trap is to be sent, it will be sent to - the SNMP community specified by this octet string. - In the future this table will be extended to include - the party security mechanism. This object shall be - set to a string of length zero if it is intended that - that mechanism be used to specify the destination of - the trap." - ::= { eventEntry 4 } - -eventLastTimeSent OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the time this event - entry last generated an event. If this entry has - not generated any events, this value will be - zero." - ::= { eventEntry 5 } - -eventOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it. - - If this object contains a string starting with 'monitor' - and has associated entries in the log table, all - connected management stations should retrieve those - log entries, as they may have significance to all - management stations connected to this device" - ::= { eventEntry 6 } - -eventStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this event entry. - - If this object is not equal to valid(1), all associated - log entries shall be deleted by the agent." - ::= { eventEntry 7 } - --- -logTable OBJECT-TYPE - SYNTAX SEQUENCE OF LogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of events that have been logged." - ::= { event 2 } - -logEntry OBJECT-TYPE - SYNTAX LogEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A set of data describing an event that has been - logged." - INDEX { logEventIndex, logIndex } - ::= { logTable 1 } - -LogEntry ::= SEQUENCE { - logEventIndex INTEGER (1..65535), - logIndex INTEGER, - logTime TimeTicks, - logDescription DisplayString (SIZE (0..255)) -} - -logEventIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The event entry that generated this log - entry. The log identified by a particular - value of this index is associated with the same - eventEntry as identified by the same value - of eventIndex." - ::= { logEntry 1 } - -logIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies an entry - in the log table amongst those generated by the - same eventEntries. These indexes are - assigned beginning with 1 and increase by one - with each new log entry. The association - between values of logIndex and logEntries - is fixed for the lifetime of each logEntry. - The agent may choose to delete the oldest - instances of logEntry as required because of - lack of memory. It is an implementation-specific - matter as to when this deletion may occur." - ::= { logEntry 2 } - -logTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime when this log entry was - created." - ::= { logEntry 3 } - -logDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An implementation dependent description of the - event that activated this log entry." - ::= { logEntry 4 } - -END - diff --git a/mibs/orig/RMON-MIB b/mibs/orig/RMON-MIB deleted file mode 100644 index 10730b6..0000000 --- a/mibs/orig/RMON-MIB +++ /dev/null @@ -1,3948 +0,0 @@ - -RMON-MIB DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, - NOTIFICATION-TYPE, mib-2, Counter32, - Integer32, TimeTicks FROM SNMPv2-SMI - - TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC - - MODULE-COMPLIANCE, OBJECT-GROUP, - NOTIFICATION-GROUP FROM SNMPv2-CONF; - - - -- Remote Network Monitoring MIB - - rmonMibModule MODULE-IDENTITY - LAST-UPDATED "200005110000Z" -- 11 May, 2000 - ORGANIZATION "IETF RMON MIB Working Group" - CONTACT-INFO - "Steve Waldbusser - Phone: +1-650-948-6500 - Fax: +1-650-745-0671 - Email: waldbusser@nextbeacon.com" - DESCRIPTION - "Remote network monitoring devices, often called - monitors or probes, are instruments that exist for - the purpose of managing a network. This MIB defines - objects for managing remote network monitoring devices." - - REVISION "200005110000Z" -- 11 May, 2000 - DESCRIPTION - "Reformatted into SMIv2 format. - - This version published as RFC 2819." - - REVISION "199502010000Z" -- 1 Feb, 1995 - DESCRIPTION - "Bug fixes, clarifications and minor changes based on - implementation experience, published as RFC1757 [18]. - - Two changes were made to object definitions: - - 1) A new status bit has been defined for the - captureBufferPacketStatus object, indicating that the - packet order within the capture buffer may not be identical to - the packet order as received off the wire. This bit may only - be used for packets transmitted by the probe. Older NMS - applications can safely ignore this status bit, which might be - used by newer agents. - - 2) The packetMatch trap has been removed. This trap was never - actually 'approved' and was not added to this document along - with the risingAlarm and fallingAlarm traps. The packetMatch - trap could not be throttled, which could cause disruption of - normal network traffic under some circumstances. An NMS should - configure a risingAlarm threshold on the appropriate - channelMatches instance if a trap is desired for a packetMatch - event. Note that logging of packetMatch events is still - supported--only trap generation for such events has been - removed. - - In addition, several clarifications to individual object - definitions have been added to assist agent and NMS - implementors: - - - global definition of 'good packets' and 'bad packets' - - - more detailed text governing conceptual row creation and - modification - - - instructions for probes relating to interface changes and - disruptions - - - clarification of some ethernet counter definitions - - - recommended formula for calculating network utilization - - - clarification of channel and captureBuffer behavior for some - unusual conditions - - - examples of proper instance naming for each table" - - REVISION "199111010000Z" -- 1 Nov, 1991 - DESCRIPTION - "The original version of this MIB, published as RFC1271." - ::= { rmonConformance 8 } - - rmon OBJECT IDENTIFIER ::= { mib-2 16 } - - - -- textual conventions - - OwnerString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This data type is used to model an administratively - assigned name of the owner of a resource. Implementations - must accept values composed of well-formed NVT ASCII - sequences. In addition, implementations should accept - values composed of well-formed UTF-8 sequences. - - It is suggested that this name contain one or more of - the following: IP address, management station name, - network manager's name, location, or phone number. - In some cases the agent itself will be the owner of - an entry. In these cases, this string shall be set - to a string starting with 'monitor'. - - SNMP access control is articulated entirely in terms - of the contents of MIB views; access to a particular - SNMP object instance depends only upon its presence - or absence in a particular MIB view and never upon - its value or the value of related object instances. - Thus, objects of this type afford resolution of - resource contention only among cooperating - managers; they realize no access control function - with respect to uncooperative parties." - SYNTAX OCTET STRING (SIZE (0..127)) - - EntryStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The status of a table entry. - - Setting this object to the value invalid(4) has the - effect of invalidating the corresponding entry. - That is, it effectively disassociates the mapping - identified with said entry. - It is an implementation-specific matter as to whether - the agent removes an invalidated entry from the table. - Accordingly, management stations must be prepared to - receive tabular information from agents that corresponds - to entries currently not in use. Proper - interpretation of such entries requires examination - of the relevant EntryStatus object. - - An existing instance of this object cannot be set to - createRequest(2). This object may only be set to - createRequest(2) when this instance is created. When - this object is created, the agent may wish to create - supplemental object instances with default values - to complete a conceptual row in this table. Because the - creation of these default objects is entirely at the option - of the agent, the manager must not assume that any will be - created, but may make use of any that are created. - Immediately after completing the create operation, the agent - must set this object to underCreation(3). - - When in the underCreation(3) state, an entry is allowed to - exist in a possibly incomplete, possibly inconsistent state, - usually to allow it to be modified in multiple PDUs. When in - this state, an entry is not fully active. - Entries shall exist in the underCreation(3) state until - the management station is finished configuring the entry - and sets this object to valid(1) or aborts, setting this - object to invalid(4). If the agent determines that an - entry has been in the underCreation(3) state for an - abnormally long time, it may decide that the management - station has crashed. If the agent makes this decision, - it may set this object to invalid(4) to reclaim the - entry. A prudent agent will understand that the - management station may need to wait for human input - and will allow for that possibility in its - determination of this abnormally long period. - - An entry in the valid(1) state is fully configured and - consistent and fully represents the configuration or - operation such a row is intended to represent. For - example, it could be a statistical function that is - configured and active, or a filter that is available - in the list of filters processed by the packet capture - process. - - A manager is restricted to changing the state of an entry in - the following ways: - - To: valid createRequest underCreation invalid - From: - valid OK NO OK OK - createRequest N/A N/A N/A N/A - underCreation OK NO OK OK - invalid NO NO NO OK - nonExistent NO OK NO OK - - In the table above, it is not applicable to move the state - from the createRequest state to any other state because the - manager will never find the variable in that state. The - nonExistent state is not a value of the enumeration, rather - it means that the entryStatus variable does not exist at all. - - An agent may allow an entryStatus variable to change state in - additional ways, so long as the semantics of the states are - followed. This allowance is made to ease the implementation of - the agent and is made despite the fact that managers should - never exercise these additional state transitions." - SYNTAX INTEGER { - valid(1), - createRequest(2), - underCreation(3), - invalid(4) - } - - statistics OBJECT IDENTIFIER ::= { rmon 1 } - history OBJECT IDENTIFIER ::= { rmon 2 } - alarm OBJECT IDENTIFIER ::= { rmon 3 } - hosts OBJECT IDENTIFIER ::= { rmon 4 } - hostTopN OBJECT IDENTIFIER ::= { rmon 5 } - matrix OBJECT IDENTIFIER ::= { rmon 6 } - filter OBJECT IDENTIFIER ::= { rmon 7 } - capture OBJECT IDENTIFIER ::= { rmon 8 } - event OBJECT IDENTIFIER ::= { rmon 9 } - rmonConformance OBJECT IDENTIFIER ::= { rmon 20 } - - -- The Ethernet Statistics Group - -- - -- Implementation of the Ethernet Statistics group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The ethernet statistics group contains statistics measured by the - -- probe for each monitored interface on this device. These - -- statistics take the form of free running counters that start from - -- zero when a valid entry is created. - -- - -- This group currently has statistics defined only for - -- Ethernet interfaces. Each etherStatsEntry contains statistics - -- for one Ethernet interface. The probe must create one - -- etherStats entry for each monitored Ethernet interface - -- on the device. - - etherStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF EtherStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of Ethernet statistics entries." - ::= { statistics 1 } - - etherStatsEntry OBJECT-TYPE - SYNTAX EtherStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics kept for a particular - Ethernet interface. As an example, an instance of the - etherStatsPkts object might be named etherStatsPkts.1" - INDEX { etherStatsIndex } - ::= { etherStatsTable 1 } - - EtherStatsEntry ::= SEQUENCE { - etherStatsIndex Integer32, - etherStatsDataSource OBJECT IDENTIFIER, - etherStatsDropEvents Counter32, - etherStatsOctets Counter32, - etherStatsPkts Counter32, - etherStatsBroadcastPkts Counter32, - etherStatsMulticastPkts Counter32, - etherStatsCRCAlignErrors Counter32, - etherStatsUndersizePkts Counter32, - etherStatsOversizePkts Counter32, - etherStatsFragments Counter32, - etherStatsJabbers Counter32, - etherStatsCollisions Counter32, - etherStatsPkts64Octets Counter32, - etherStatsPkts65to127Octets Counter32, - etherStatsPkts128to255Octets Counter32, - etherStatsPkts256to511Octets Counter32, - etherStatsPkts512to1023Octets Counter32, - etherStatsPkts1024to1518Octets Counter32, - etherStatsOwner OwnerString, - etherStatsStatus EntryStatus - } - - etherStatsIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object uniquely identifies this - etherStats entry." - ::= { etherStatsEntry 1 } - - etherStatsDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object identifies the source of the data that - this etherStats entry is configured to analyze. This - source can be any ethernet interface on this device. - In order to identify a particular interface, this object - shall identify the instance of the ifIndex object, - defined in RFC 2233 [17], for the desired interface. - For example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the identified - interface. - - An agent may or may not be able to tell if fundamental - changes to the media of the interface have occurred and - necessitate an invalidation of this entry. For example, a - hot-pluggable ethernet card could be pulled out and replaced - by a token-ring card. In such a case, if the agent has such - knowledge of the change, it is recommended that it - invalidate this entry. - - This object may not be modified if the associated - etherStatsStatus object is equal to valid(1)." - ::= { etherStatsEntry 2 } - - etherStatsDropEvents OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of events in which packets - were dropped by the probe due to lack of resources. - Note that this number is not necessarily the number of - packets dropped; it is just the number of times this - condition has been detected." - ::= { etherStatsEntry 3 } - - etherStatsOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets of data (including - those in bad packets) received on the - network (excluding framing bits but including - FCS octets). - This object can be used as a reasonable estimate of - 10-Megabit ethernet utilization. If greater precision is - desired, the etherStatsPkts and etherStatsOctets objects - should be sampled before and after a common interval. The - differences in the sampled values are Pkts and Octets, - respectively, and the number of seconds in the interval is - Interval. These values are used to calculate the Utilization - as follows: - - Pkts * (9.6 + 6.4) + (Octets * .8) - Utilization = ------------------------------------- - Interval * 10,000 - - The result of this equation is the value Utilization which - is the percent utilization of the ethernet segment on a - scale of 0 to 100 percent." - ::= { etherStatsEntry 4 } - - etherStatsPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad packets, - broadcast packets, and multicast packets) received." - ::= { etherStatsEntry 5 } - - etherStatsBroadcastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of good packets received that were - directed to the broadcast address. Note that this - does not include multicast packets." - ::= { etherStatsEntry 6 } - - etherStatsMulticastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of good packets received that were - directed to a multicast address. Note that this number - does not include packets directed to the broadcast - address." - ::= { etherStatsEntry 7 } - - etherStatsCRCAlignErrors OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets received that - had a length (excluding framing bits, but - including FCS octets) of between 64 and 1518 - octets, inclusive, but had either a bad - Frame Check Sequence (FCS) with an integral - number of octets (FCS Error) or a bad FCS with - a non-integral number of octets (Alignment Error)." - ::= { etherStatsEntry 8 } - - etherStatsUndersizePkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets received that were - less than 64 octets long (excluding framing bits, - but including FCS octets) and were otherwise well - formed." - ::= { etherStatsEntry 9 } - - etherStatsOversizePkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets received that were - longer than 1518 octets (excluding framing bits, - but including FCS octets) and were otherwise - well formed." - ::= { etherStatsEntry 10 } - - etherStatsFragments OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets received that were less than - 64 octets in length (excluding framing bits but including - FCS octets) and had either a bad Frame Check Sequence - (FCS) with an integral number of octets (FCS Error) or a - bad FCS with a non-integral number of octets (Alignment - Error). - - Note that it is entirely normal for etherStatsFragments to - increment. This is because it counts both runts (which are - normal occurrences due to collisions) and noise hits." - ::= { etherStatsEntry 11 } - - etherStatsJabbers OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets received that were - longer than 1518 octets (excluding framing bits, - but including FCS octets), and had either a bad - Frame Check Sequence (FCS) with an integral number - of octets (FCS Error) or a bad FCS with a non-integral - number of octets (Alignment Error). - - Note that this definition of jabber is different - than the definition in IEEE-802.3 section 8.2.1.5 - (10BASE5) and section 10.3.1.4 (10BASE2). These - documents define jabber as the condition where any - packet exceeds 20 ms. The allowed range to detect - jabber is between 20 ms and 150 ms." - ::= { etherStatsEntry 12 } - - etherStatsCollisions OBJECT-TYPE - SYNTAX Counter32 - UNITS "Collisions" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The best estimate of the total number of collisions - on this Ethernet segment. - - The value returned will depend on the location of the - RMON probe. Section 8.2.1.3 (10BASE-5) and section - 10.3.1.3 (10BASE-2) of IEEE standard 802.3 states that a - station must detect a collision, in the receive mode, if - three or more stations are transmitting simultaneously. A - repeater port must detect a collision when two or more - stations are transmitting simultaneously. Thus a probe - placed on a repeater port could record more collisions - than a probe connected to a station on the same segment - would. - - Probe location plays a much smaller role when considering - 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE standard 802.3 - defines a collision as the simultaneous presence of signals - on the DO and RD circuits (transmitting and receiving - at the same time). A 10BASE-T station can only detect - collisions when it is transmitting. Thus probes placed on - a station and a repeater, should report the same number of - collisions. - - Note also that an RMON probe inside a repeater should - ideally report collisions between the repeater and one or - more other hosts (transmit collisions as defined by IEEE - 802.3k) plus receiver collisions observed on any coax - segments to which the repeater is connected." - ::= { etherStatsEntry 13 } - - etherStatsPkts64Octets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad - packets) received that were 64 octets in length - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 14 } - - etherStatsPkts65to127Octets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad - packets) received that were between - 65 and 127 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 15 } - - etherStatsPkts128to255Octets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad - packets) received that were between - 128 and 255 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 16 } - - etherStatsPkts256to511Octets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad - packets) received that were between - 256 and 511 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 17 } - - etherStatsPkts512to1023Octets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad - packets) received that were between - 512 and 1023 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 18 } - - etherStatsPkts1024to1518Octets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets (including bad - packets) received that were between - 1024 and 1518 octets in length inclusive - (excluding framing bits but including FCS octets)." - ::= { etherStatsEntry 19 } - - etherStatsOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { etherStatsEntry 20 } - - etherStatsStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this etherStats entry." - ::= { etherStatsEntry 21 } - - -- The History Control Group - - -- Implementation of the History Control group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The history control group controls the periodic statistical - -- sampling of data from various types of networks. The - -- historyControlTable stores configuration entries that each - -- define an interface, polling period, and other parameters. - -- Once samples are taken, their data is stored in an entry - -- in a media-specific table. Each such entry defines one - -- sample, and is associated with the historyControlEntry that - -- caused the sample to be taken. Each counter in the - -- etherHistoryEntry counts the same event as its similarly-named - -- counterpart in the etherStatsEntry, except that each value here - -- is a cumulative sum during a sampling period. - -- - -- If the probe keeps track of the time of day, it should start - -- the first sample of the history at a time such that - -- when the next hour of the day begins, a sample is - -- started at that instant. This tends to make more - -- user-friendly reports, and enables comparison of reports - -- from different probes that have relatively accurate time - -- of day. - -- - -- The probe is encouraged to add two history control entries - -- per monitored interface upon initialization that describe a short - -- term and a long term polling period. Suggested parameters are 30 - -- seconds for the short term polling period and 30 minutes for - -- the long term period. - - historyControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HistoryControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of history control entries." - ::= { history 1 } - - historyControlEntry OBJECT-TYPE - SYNTAX HistoryControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of parameters that set up a periodic sampling of - statistics. As an example, an instance of the - historyControlInterval object might be named - historyControlInterval.2" - INDEX { historyControlIndex } - ::= { historyControlTable 1 } - - HistoryControlEntry ::= SEQUENCE { - historyControlIndex Integer32, - historyControlDataSource OBJECT IDENTIFIER, - historyControlBucketsRequested Integer32, - historyControlBucketsGranted Integer32, - historyControlInterval Integer32, - historyControlOwner OwnerString, - historyControlStatus EntryStatus - } - - historyControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - historyControl table. Each such entry defines a - set of samples at a particular interval for an - interface on the device." - ::= { historyControlEntry 1 } - - historyControlDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object identifies the source of the data for - which historical data was collected and - placed in a media-specific table on behalf of this - historyControlEntry. This source can be any - interface on this device. In order to identify - a particular interface, this object shall identify - the instance of the ifIndex object, defined - in RFC 2233 [17], for the desired interface. - For example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the identified - interface. - - An agent may or may not be able to tell if fundamental - changes to the media of the interface have occurred and - necessitate an invalidation of this entry. For example, a - hot-pluggable ethernet card could be pulled out and replaced - by a token-ring card. In such a case, if the agent has such - knowledge of the change, it is recommended that it - invalidate this entry. - - This object may not be modified if the associated - historyControlStatus object is equal to valid(1)." - ::= { historyControlEntry 2 } - - historyControlBucketsRequested OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The requested number of discrete time intervals - over which data is to be saved in the part of the - media-specific table associated with this - historyControlEntry. - - When this object is created or modified, the probe - should set historyControlBucketsGranted as closely to - this object as is possible for the particular probe - implementation and available resources." - DEFVAL { 50 } - ::= { historyControlEntry 3 } - - historyControlBucketsGranted OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of discrete sampling intervals - over which data shall be saved in the part of - the media-specific table associated with this - historyControlEntry. - When the associated historyControlBucketsRequested - object is created or modified, the probe - should set this object as closely to the requested - value as is possible for the particular - probe implementation and available resources. The - probe must not lower this value except as a result - of a modification to the associated - historyControlBucketsRequested object. - - There will be times when the actual number of - buckets associated with this entry is less than - the value of this object. In this case, at the - end of each sampling interval, a new bucket will - be added to the media-specific table. - - When the number of buckets reaches the value of - this object and a new bucket is to be added to the - media-specific table, the oldest bucket associated - with this historyControlEntry shall be deleted by - the agent so that the new bucket can be added. - - When the value of this object changes to a value less - than the current value, entries are deleted - from the media-specific table associated with this - historyControlEntry. Enough of the oldest of these - entries shall be deleted by the agent so that their - number remains less than or equal to the new value of - this object. - - When the value of this object changes to a value greater - than the current value, the number of associated media- - specific entries may be allowed to grow." - ::= { historyControlEntry 4 } - - historyControlInterval OBJECT-TYPE - SYNTAX Integer32 (1..3600) - UNITS "Seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The interval in seconds over which the data is - sampled for each bucket in the part of the - media-specific table associated with this - historyControlEntry. This interval can - be set to any number of seconds between 1 and - 3600 (1 hour). - - Because the counters in a bucket may overflow at their - maximum value with no indication, a prudent manager will - take into account the possibility of overflow in any of - the associated counters. It is important to consider the - minimum time in which any counter could overflow on a - particular media type and set the historyControlInterval - object to a value less than this interval. This is - typically most important for the 'octets' counter in any - media-specific table. For example, on an Ethernet - network, the etherHistoryOctets counter could overflow - in about one hour at the Ethernet's maximum - utilization. - - This object may not be modified if the associated - historyControlStatus object is equal to valid(1)." - DEFVAL { 1800 } - ::= { historyControlEntry 5 } - - historyControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { historyControlEntry 6 } - - historyControlStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this historyControl entry. - - Each instance of the media-specific table associated - with this historyControlEntry will be deleted by the agent - if this historyControlEntry is not equal to valid(1)." - ::= { historyControlEntry 7 } - - -- The Ethernet History Group - - -- Implementation of the Ethernet History group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Ethernet History group records periodic statistical samples - -- from a network and stores them for later retrieval. - -- Once samples are taken, their data is stored in an entry - -- in a media-specific table. Each such entry defines one - -- sample, and is associated with the historyControlEntry that - -- caused the sample to be taken. This group defines the - -- etherHistoryTable, for Ethernet networks. - -- - - etherHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF EtherHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of Ethernet history entries." - ::= { history 2 } - - etherHistoryEntry OBJECT-TYPE - SYNTAX EtherHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An historical sample of Ethernet statistics on a particular - Ethernet interface. This sample is associated with the - historyControlEntry which set up the parameters for - a regular collection of these samples. As an example, an - instance of the etherHistoryPkts object might be named - etherHistoryPkts.2.89" - INDEX { etherHistoryIndex , etherHistorySampleIndex } - ::= { etherHistoryTable 1 } - - EtherHistoryEntry ::= SEQUENCE { - etherHistoryIndex Integer32, - etherHistorySampleIndex Integer32, - etherHistoryIntervalStart TimeTicks, - etherHistoryDropEvents Counter32, - etherHistoryOctets Counter32, - etherHistoryPkts Counter32, - etherHistoryBroadcastPkts Counter32, - etherHistoryMulticastPkts Counter32, - etherHistoryCRCAlignErrors Counter32, - etherHistoryUndersizePkts Counter32, - etherHistoryOversizePkts Counter32, - etherHistoryFragments Counter32, - etherHistoryJabbers Counter32, - etherHistoryCollisions Counter32, - etherHistoryUtilization Integer32 - } - - etherHistoryIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The history of which this entry is a part. The - history identified by a particular value of this - index is the same history as identified - by the same value of historyControlIndex." - ::= { etherHistoryEntry 1 } - - etherHistorySampleIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies the particular - sample this entry represents among all samples - associated with the same historyControlEntry. - This index starts at 1 and increases by one - as each new sample is taken." - ::= { etherHistoryEntry 2 } - - etherHistoryIntervalStart OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the start of the interval - over which this sample was measured. If the probe - keeps track of the time of day, it should start - the first sample of the history at a time such that - when the next hour of the day begins, a sample is - started at that instant. Note that following this - rule may require the probe to delay collecting the - first sample of the history, as each sample must be - of the same interval. Also note that the sample which - is currently being collected is not accessible in this - table until the end of its interval." - ::= { etherHistoryEntry 3 } - - etherHistoryDropEvents OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of events in which packets - were dropped by the probe due to lack of resources - during this sampling interval. Note that this number - is not necessarily the number of packets dropped, it - is just the number of times this condition has been - detected." - ::= { etherHistoryEntry 4 } - - etherHistoryOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of octets of data (including - those in bad packets) received on the - network (excluding framing bits but including - FCS octets)." - ::= { etherHistoryEntry 5 } - - etherHistoryPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets (including bad packets) - received during this sampling interval." - ::= { etherHistoryEntry 6 } - - etherHistoryBroadcastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets received during this - sampling interval that were directed to the - broadcast address." - ::= { etherHistoryEntry 7 } - - etherHistoryMulticastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets received during this - sampling interval that were directed to a - multicast address. Note that this number does not - include packets addressed to the broadcast address." - ::= { etherHistoryEntry 8 } - - etherHistoryCRCAlignErrors OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets received during this - sampling interval that had a length (excluding - framing bits but including FCS octets) between - 64 and 1518 octets, inclusive, but had either a bad Frame - Check Sequence (FCS) with an integral number of octets - (FCS Error) or a bad FCS with a non-integral number - of octets (Alignment Error)." - ::= { etherHistoryEntry 9 } - - etherHistoryUndersizePkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets received during this - sampling interval that were less than 64 octets - long (excluding framing bits but including FCS - octets) and were otherwise well formed." - ::= { etherHistoryEntry 10 } - - etherHistoryOversizePkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets received during this - sampling interval that were longer than 1518 - octets (excluding framing bits but including - FCS octets) but were otherwise well formed." - ::= { etherHistoryEntry 11 } - - etherHistoryFragments OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of packets received during this - sampling interval that were less than 64 octets in - length (excluding framing bits but including FCS - octets) had either a bad Frame Check Sequence (FCS) - with an integral number of octets (FCS Error) or a bad - FCS with a non-integral number of octets (Alignment - Error). - - Note that it is entirely normal for etherHistoryFragments to - increment. This is because it counts both runts (which are - normal occurrences due to collisions) and noise hits." - ::= { etherHistoryEntry 12 } - - etherHistoryJabbers OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets received during this - sampling interval that were longer than 1518 octets - (excluding framing bits but including FCS octets), - and had either a bad Frame Check Sequence (FCS) - with an integral number of octets (FCS Error) or - a bad FCS with a non-integral number of octets - (Alignment Error). - - Note that this definition of jabber is different - than the definition in IEEE-802.3 section 8.2.1.5 - (10BASE5) and section 10.3.1.4 (10BASE2). These - documents define jabber as the condition where any - packet exceeds 20 ms. The allowed range to detect - jabber is between 20 ms and 150 ms." - ::= { etherHistoryEntry 13 } - - etherHistoryCollisions OBJECT-TYPE - SYNTAX Counter32 - UNITS "Collisions" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The best estimate of the total number of collisions - on this Ethernet segment during this sampling - interval. - - The value returned will depend on the location of the - RMON probe. Section 8.2.1.3 (10BASE-5) and section - 10.3.1.3 (10BASE-2) of IEEE standard 802.3 states that a - station must detect a collision, in the receive mode, if - three or more stations are transmitting simultaneously. A - repeater port must detect a collision when two or more - stations are transmitting simultaneously. Thus a probe - placed on a repeater port could record more collisions - than a probe connected to a station on the same segment - would. - - Probe location plays a much smaller role when considering - 10BASE-T. 14.2.1.4 (10BASE-T) of IEEE standard 802.3 - defines a collision as the simultaneous presence of signals - on the DO and RD circuits (transmitting and receiving - at the same time). A 10BASE-T station can only detect - collisions when it is transmitting. Thus probes placed on - a station and a repeater, should report the same number of - collisions. - - Note also that an RMON probe inside a repeater should - ideally report collisions between the repeater and one or - more other hosts (transmit collisions as defined by IEEE - 802.3k) plus receiver collisions observed on any coax - segments to which the repeater is connected." - ::= { etherHistoryEntry 14 } - - etherHistoryUtilization OBJECT-TYPE - SYNTAX Integer32 (0..10000) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The best estimate of the mean physical layer - network utilization on this interface during this - sampling interval, in hundredths of a percent." - ::= { etherHistoryEntry 15 } - - -- The Alarm Group - - -- Implementation of the Alarm group is optional. The Alarm Group - -- requires the implementation of the Event group. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Alarm group periodically takes statistical samples from - -- variables in the probe and compares them to thresholds that have - -- been configured. The alarm table stores configuration - -- entries that each define a variable, polling period, and - -- threshold parameters. If a sample is found to cross the - -- threshold values, an event is generated. Only variables that - -- resolve to an ASN.1 primitive type of INTEGER (INTEGER, Integer32, - -- Counter32, Counter64, Gauge32, or TimeTicks) may be monitored in - -- this way. - -- - -- This function has a hysteresis mechanism to limit the generation - -- of events. This mechanism generates one event as a threshold - -- is crossed in the appropriate direction. No more events are - -- generated for that threshold until the opposite threshold is - -- crossed. - -- - -- In the case of a sampling a deltaValue, a probe may implement - -- this mechanism with more precision if it takes a delta sample - -- twice per period, each time comparing the sum of the latest two - -- samples to the threshold. This allows the detection of threshold - -- crossings that span the sampling boundary. Note that this does - -- not require any special configuration of the threshold value. - -- It is suggested that probes implement this more precise algorithm. - - alarmTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlarmEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of alarm entries." - ::= { alarm 1 } - - alarmEntry OBJECT-TYPE - SYNTAX AlarmEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of parameters that set up a periodic checking - for alarm conditions. For example, an instance of the - alarmValue object might be named alarmValue.8" - INDEX { alarmIndex } - ::= { alarmTable 1 } - - AlarmEntry ::= SEQUENCE { - alarmIndex Integer32, - alarmInterval Integer32, - alarmVariable OBJECT IDENTIFIER, - alarmSampleType INTEGER, - alarmValue Integer32, - alarmStartupAlarm INTEGER, - alarmRisingThreshold Integer32, - alarmFallingThreshold Integer32, - alarmRisingEventIndex Integer32, - alarmFallingEventIndex Integer32, - alarmOwner OwnerString, - alarmStatus EntryStatus - } - - alarmIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - alarm table. Each such entry defines a - diagnostic sample at a particular interval - for an object on the device." - ::= { alarmEntry 1 } - - alarmInterval OBJECT-TYPE - SYNTAX Integer32 - UNITS "Seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The interval in seconds over which the data is - sampled and compared with the rising and falling - thresholds. When setting this variable, care - should be taken in the case of deltaValue - sampling - the interval should be set short enough - that the sampled variable is very unlikely to - increase or decrease by more than 2^31 - 1 during - a single sampling interval. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 2 } - - alarmVariable OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The object identifier of the particular variable to be - sampled. Only variables that resolve to an ASN.1 primitive - type of INTEGER (INTEGER, Integer32, Counter32, Counter64, - Gauge, or TimeTicks) may be sampled. - - Because SNMP access control is articulated entirely - in terms of the contents of MIB views, no access - control mechanism exists that can restrict the value of - this object to identify only those objects that exist - in a particular MIB view. Because there is thus no - acceptable means of restricting the read access that - could be obtained through the alarm mechanism, the - probe must only grant write access to this object in - those views that have read access to all objects on - the probe. - - During a set operation, if the supplied variable name is - not available in the selected MIB view, a badValue error - must be returned. If at any time the variable name of - an established alarmEntry is no longer available in the - selected MIB view, the probe must change the status of - this alarmEntry to invalid(4). - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 3 } - - alarmSampleType OBJECT-TYPE - SYNTAX INTEGER { - absoluteValue(1), - deltaValue(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The method of sampling the selected variable and - calculating the value to be compared against the - thresholds. If the value of this object is - absoluteValue(1), the value of the selected variable - will be compared directly with the thresholds at the - end of the sampling interval. If the value of this - object is deltaValue(2), the value of the selected - variable at the last sample will be subtracted from - the current value, and the difference compared with - the thresholds. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 4 } - - alarmValue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the statistic during the last sampling - period. For example, if the sample type is deltaValue, - this value will be the difference between the samples - at the beginning and end of the period. If the sample - type is absoluteValue, this value will be the sampled - value at the end of the period. - This is the value that is compared with the rising and - falling thresholds. - - The value during the current sampling period is not - made available until the period is completed and will - remain available until the next period completes." - ::= { alarmEntry 5 } - - alarmStartupAlarm OBJECT-TYPE - SYNTAX INTEGER { - risingAlarm(1), - fallingAlarm(2), - risingOrFallingAlarm(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The alarm that may be sent when this entry is first - set to valid. If the first sample after this entry - becomes valid is greater than or equal to the - risingThreshold and alarmStartupAlarm is equal to - risingAlarm(1) or risingOrFallingAlarm(3), then a single - rising alarm will be generated. If the first sample - after this entry becomes valid is less than or equal - to the fallingThreshold and alarmStartupAlarm is equal - to fallingAlarm(2) or risingOrFallingAlarm(3), then a - single falling alarm will be generated. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 6 } - - alarmRisingThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A threshold for the sampled statistic. When the current - sampled value is greater than or equal to this threshold, - and the value at the last sampling interval was less than - this threshold, a single event will be generated. - A single event will also be generated if the first - sample after this entry becomes valid is greater than or - equal to this threshold and the associated - alarmStartupAlarm is equal to risingAlarm(1) or - risingOrFallingAlarm(3). - - After a rising event is generated, another such event - will not be generated until the sampled value - falls below this threshold and reaches the - alarmFallingThreshold. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 7 } - - alarmFallingThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A threshold for the sampled statistic. When the current - sampled value is less than or equal to this threshold, - and the value at the last sampling interval was greater than - this threshold, a single event will be generated. - A single event will also be generated if the first - sample after this entry becomes valid is less than or - equal to this threshold and the associated - alarmStartupAlarm is equal to fallingAlarm(2) or - risingOrFallingAlarm(3). - - After a falling event is generated, another such event - will not be generated until the sampled value - rises above this threshold and reaches the - alarmRisingThreshold. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 8 } - - alarmRisingEventIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The index of the eventEntry that is - used when a rising threshold is crossed. The - eventEntry identified by a particular value of - this index is the same as identified by the same value - of the eventIndex object. If there is no - corresponding entry in the eventTable, then - no association exists. In particular, if this value - is zero, no associated event will be generated, as - zero is not a valid event index. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 9 } - - alarmFallingEventIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The index of the eventEntry that is - used when a falling threshold is crossed. The - eventEntry identified by a particular value of - this index is the same as identified by the same value - of the eventIndex object. If there is no - corresponding entry in the eventTable, then - no association exists. In particular, if this value - is zero, no associated event will be generated, as - zero is not a valid event index. - - This object may not be modified if the associated - alarmStatus object is equal to valid(1)." - ::= { alarmEntry 10 } - - alarmOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { alarmEntry 11 } - - alarmStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this alarm entry." - ::= { alarmEntry 12 } - - -- The Host Group - - -- Implementation of the Host group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The host group discovers new hosts on the network by - -- keeping a list of source and destination MAC Addresses seen - -- in good packets. For each of these addresses, the host group - -- keeps a set of statistics. The hostControlTable controls - -- which interfaces this function is performed on, and contains - -- some information about the process. On behalf of each - -- hostControlEntry, data is collected on an interface and placed - -- in both the hostTable and the hostTimeTable. If the - -- monitoring device finds itself short of resources, it may - -- delete entries as needed. It is suggested that the device - -- delete the least recently used entries first. - - -- The hostTable contains entries for each address discovered on - -- a particular interface. Each entry contains statistical - -- data about that host. This table is indexed by the - -- MAC address of the host, through which a random access - -- may be achieved. - - -- The hostTimeTable contains data in the same format as the - -- hostTable, and must contain the same set of hosts, but is - -- indexed using hostTimeCreationOrder rather than hostAddress. - -- The hostTimeCreationOrder is an integer which reflects - -- the relative order in which a particular entry was discovered - -- and thus inserted into the table. As this order, and thus - -- the index, is among those entries currently in the table, - -- the index for a particular entry may change if an - -- (earlier) entry is deleted. Thus the association between - -- hostTimeCreationOrder and hostTimeEntry may be broken at - -- any time. - - -- The hostTimeTable has two important uses. The first is the - -- fast download of this potentially large table. Because the - -- index of this table runs from 1 to the size of the table, - -- inclusive, its values are predictable. This allows very - -- efficient packing of variables into SNMP PDU's and allows - -- a table transfer to have multiple packets outstanding. - -- These benefits increase transfer rates tremendously. - - -- The second use of the hostTimeTable is the efficient discovery - -- by the management station of new entries added to the table. - -- After the management station has downloaded the entire table, - -- it knows that new entries will be added immediately after the - -- end of the current table. It can thus detect new entries there - -- and retrieve them easily. - - -- Because the association between hostTimeCreationOrder and - -- hostTimeEntry may be broken at any time, the management - -- station must monitor the related hostControlLastDeleteTime - -- object. When the management station thus detects a deletion, - -- it must assume that any such associations have been broken, - -- and invalidate any it has stored locally. This includes - -- restarting any download of the hostTimeTable that may have been - -- in progress, as well as rediscovering the end of the - -- hostTimeTable so that it may detect new entries. If the - -- management station does not detect the broken association, - -- it may continue to refer to a particular host by its - -- creationOrder while unwittingly retrieving the data associated - -- with another host entirely. If this happens while downloading - -- the host table, the management station may fail to download - -- all of the entries in the table. - - - hostControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of host table control entries." - ::= { hosts 1 } - - hostControlEntry OBJECT-TYPE - SYNTAX HostControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of parameters that set up the discovery of hosts - on a particular interface and the collection of statistics - about these hosts. For example, an instance of the - hostControlTableSize object might be named - hostControlTableSize.1" - INDEX { hostControlIndex } - ::= { hostControlTable 1 } - - HostControlEntry ::= SEQUENCE { - - hostControlIndex Integer32, - hostControlDataSource OBJECT IDENTIFIER, - hostControlTableSize Integer32, - hostControlLastDeleteTime TimeTicks, - hostControlOwner OwnerString, - hostControlStatus EntryStatus - } - - hostControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - hostControl table. Each such entry defines - a function that discovers hosts on a particular interface - and places statistics about them in the hostTable and - the hostTimeTable on behalf of this hostControlEntry." - ::= { hostControlEntry 1 } - - hostControlDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object identifies the source of the data for - this instance of the host function. This source - can be any interface on this device. In order - to identify a particular interface, this object shall - identify the instance of the ifIndex object, defined - in RFC 2233 [17], for the desired interface. - For example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the identified - interface. - - An agent may or may not be able to tell if fundamental - changes to the media of the interface have occurred and - necessitate an invalidation of this entry. For example, a - hot-pluggable ethernet card could be pulled out and replaced - by a token-ring card. In such a case, if the agent has such - knowledge of the change, it is recommended that it - invalidate this entry. - - This object may not be modified if the associated - hostControlStatus object is equal to valid(1)." - ::= { hostControlEntry 2 } - - hostControlTableSize OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of hostEntries in the hostTable and the - hostTimeTable associated with this hostControlEntry." - ::= { hostControlEntry 3 } - - hostControlLastDeleteTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when the last entry - was deleted from the portion of the hostTable - associated with this hostControlEntry. If no - deletions have occurred, this value shall be zero." - ::= { hostControlEntry 4 } - - hostControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { hostControlEntry 5 } - - hostControlStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this hostControl entry. - - If this object is not equal to valid(1), all associated - entries in the hostTable, hostTimeTable, and the - hostTopNTable shall be deleted by the agent." - ::= { hostControlEntry 6 } - - hostTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of host entries." - ::= { hosts 2 } - - hostEntry OBJECT-TYPE - SYNTAX HostEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics for a particular host that has - been discovered on an interface of this device. For example, - an instance of the hostOutBroadcastPkts object might be - named hostOutBroadcastPkts.1.6.8.0.32.27.3.176" - INDEX { hostIndex, hostAddress } - ::= { hostTable 1 } - HostEntry ::= SEQUENCE { - hostAddress OCTET STRING, - hostCreationOrder Integer32, - hostIndex Integer32, - hostInPkts Counter32, - hostOutPkts Counter32, - hostInOctets Counter32, - hostOutOctets Counter32, - hostOutErrors Counter32, - hostOutBroadcastPkts Counter32, - hostOutMulticastPkts Counter32 - } - - hostAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical address of this host." - ::= { hostEntry 1 } - - hostCreationOrder OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that defines the relative ordering of - the creation time of hosts captured for a - particular hostControlEntry. This index shall - be between 1 and N, where N is the value of - the associated hostControlTableSize. The ordering - of the indexes is based on the order of each entry's - insertion into the table, in which entries added earlier - have a lower index value than entries added later. - - It is important to note that the order for a - particular entry may change as an (earlier) entry - is deleted from the table. Because this order may - change, management stations should make use of the - hostControlLastDeleteTime variable in the - hostControlEntry associated with the relevant - portion of the hostTable. By observing - this variable, the management station may detect - the circumstances where a previous association - between a value of hostCreationOrder - and a hostEntry may no longer hold." - ::= { hostEntry 2 } - - hostIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The set of collected host statistics of which - this entry is a part. The set of hosts - identified by a particular value of this - index is associated with the hostControlEntry - as identified by the same value of hostControlIndex." - ::= { hostEntry 3 } - - hostInPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets transmitted to this - address since it was added to the hostTable." - ::= { hostEntry 4 } - - hostOutPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, including bad packets, transmitted - by this address since it was added to the hostTable." - ::= { hostEntry 5 } - - hostInOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted to this address since - it was added to the hostTable (excluding framing - bits but including FCS octets), except for those - octets in bad packets." - ::= { hostEntry 6 } - - hostOutOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted by this address since - it was added to the hostTable (excluding framing - bits but including FCS octets), including those - octets in bad packets." - ::= { hostEntry 7 } - - hostOutErrors OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bad packets transmitted by this address - since this host was added to the hostTable." - ::= { hostEntry 8 } - - hostOutBroadcastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to the broadcast address - since this host was added to the hostTable." - ::= { hostEntry 9 } - - hostOutMulticastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to a multicast address - since this host was added to the hostTable. - Note that this number does not include packets - directed to the broadcast address." - ::= { hostEntry 10 } - - -- host Time Table - - hostTimeTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostTimeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of time-ordered host table entries." - ::= { hosts 3 } - - hostTimeEntry OBJECT-TYPE - SYNTAX HostTimeEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics for a particular host that has - been discovered on an interface of this device. This - collection includes the relative ordering of the creation - time of this object. For example, an instance of the - hostTimeOutBroadcastPkts object might be named - hostTimeOutBroadcastPkts.1.687" - INDEX { hostTimeIndex, hostTimeCreationOrder } - ::= { hostTimeTable 1 } - - HostTimeEntry ::= SEQUENCE { - hostTimeAddress OCTET STRING, - hostTimeCreationOrder Integer32, - hostTimeIndex Integer32, - hostTimeInPkts Counter32, - hostTimeOutPkts Counter32, - hostTimeInOctets Counter32, - hostTimeOutOctets Counter32, - hostTimeOutErrors Counter32, - hostTimeOutBroadcastPkts Counter32, - hostTimeOutMulticastPkts Counter32 - } - - hostTimeAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical address of this host." - ::= { hostTimeEntry 1 } - - hostTimeCreationOrder OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in - the hostTime table among those entries associated - with the same hostControlEntry. This index shall - be between 1 and N, where N is the value of - the associated hostControlTableSize. The ordering - of the indexes is based on the order of each entry's - insertion into the table, in which entries added earlier - have a lower index value than entries added later. - Thus the management station has the ability to - learn of new entries added to this table without - downloading the entire table. - - It is important to note that the index for a - particular entry may change as an (earlier) entry - is deleted from the table. Because this order may - change, management stations should make use of the - hostControlLastDeleteTime variable in the - hostControlEntry associated with the relevant - portion of the hostTimeTable. By observing - this variable, the management station may detect - the circumstances where a download of the table - may have missed entries, and where a previous - association between a value of hostTimeCreationOrder - and a hostTimeEntry may no longer hold." - ::= { hostTimeEntry 2 } - - hostTimeIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The set of collected host statistics of which - this entry is a part. The set of hosts - identified by a particular value of this - index is associated with the hostControlEntry - as identified by the same value of hostControlIndex." - ::= { hostTimeEntry 3 } - - hostTimeInPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets transmitted to this - address since it was added to the hostTimeTable." - ::= { hostTimeEntry 4 } - - hostTimeOutPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets, including bad packets, transmitted - by this address since it was added to the hostTimeTable." - ::= { hostTimeEntry 5 } - - hostTimeInOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted to this address since - it was added to the hostTimeTable (excluding framing - bits but including FCS octets), except for those - octets in bad packets." - ::= { hostTimeEntry 6 } - - hostTimeOutOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted by this address since - it was added to the hostTimeTable (excluding framing - bits but including FCS octets), including those - octets in bad packets." - ::= { hostTimeEntry 7 } - - hostTimeOutErrors OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bad packets transmitted by this address - since this host was added to the hostTimeTable." - ::= { hostTimeEntry 8 } - - hostTimeOutBroadcastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to the broadcast address - since this host was added to the hostTimeTable." - ::= { hostTimeEntry 9 } - - hostTimeOutMulticastPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of good packets transmitted by this - address that were directed to a multicast address - since this host was added to the hostTimeTable. - Note that this number does not include packets directed - to the broadcast address." - ::= { hostTimeEntry 10 } - - -- The Host Top "N" Group - - -- Implementation of the Host Top N group is optional. The Host Top N - -- group requires the implementation of the host group. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Host Top N group is used to prepare reports that describe - -- the hosts that top a list ordered by one of their statistics. - -- The available statistics are samples of one of their - -- base statistics, over an interval specified by the management - -- station. Thus, these statistics are rate based. The management - -- station also selects how many such hosts are reported. - - -- The hostTopNControlTable is used to initiate the generation of - -- such a report. The management station may select the parameters - -- of such a report, such as which interface, which statistic, - -- how many hosts, and the start and stop times of the sampling. - -- When the report is prepared, entries are created in the - -- hostTopNTable associated with the relevant hostTopNControlEntry. - -- These entries are static for each report after it has been - -- prepared. - - hostTopNControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostTopNControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of top N host control entries." - ::= { hostTopN 1 } - - hostTopNControlEntry OBJECT-TYPE - SYNTAX HostTopNControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters that control the creation of a report - of the top N hosts according to several metrics. For - example, an instance of the hostTopNDuration object might - be named hostTopNDuration.3" - INDEX { hostTopNControlIndex } - ::= { hostTopNControlTable 1 } - - HostTopNControlEntry ::= SEQUENCE { - hostTopNControlIndex Integer32, - hostTopNHostIndex Integer32, - hostTopNRateBase INTEGER, - hostTopNTimeRemaining Integer32, - hostTopNDuration Integer32, - hostTopNRequestedSize Integer32, - hostTopNGrantedSize Integer32, - hostTopNStartTime TimeTicks, - hostTopNOwner OwnerString, - hostTopNStatus EntryStatus - } - - hostTopNControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the hostTopNControl table. Each such - entry defines one top N report prepared for - one interface." - ::= { hostTopNControlEntry 1 } - - hostTopNHostIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The host table for which a top N report will be prepared - on behalf of this entry. The host table identified by a - particular value of this index is associated with the same - host table as identified by the same value of - hostIndex. - - This object may not be modified if the associated - hostTopNStatus object is equal to valid(1)." - ::= { hostTopNControlEntry 2 } - - hostTopNRateBase OBJECT-TYPE - SYNTAX INTEGER { - hostTopNInPkts(1), - hostTopNOutPkts(2), - hostTopNInOctets(3), - hostTopNOutOctets(4), - hostTopNOutErrors(5), - hostTopNOutBroadcastPkts(6), - hostTopNOutMulticastPkts(7) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The variable for each host that the hostTopNRate - variable is based upon. - - This object may not be modified if the associated - hostTopNStatus object is equal to valid(1)." - ::= { hostTopNControlEntry 3 } - - hostTopNTimeRemaining OBJECT-TYPE - SYNTAX Integer32 - UNITS "Seconds" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The number of seconds left in the report currently being - collected. When this object is modified by the management - station, a new collection is started, possibly aborting - a currently running report. The new value is used - as the requested duration of this report, which is - loaded into the associated hostTopNDuration object. - - When this object is set to a non-zero value, any - associated hostTopNEntries shall be made - inaccessible by the monitor. While the value of this - object is non-zero, it decrements by one per second until - it reaches zero. During this time, all associated - hostTopNEntries shall remain inaccessible. At the time - that this object decrements to zero, the report is made - accessible in the hostTopNTable. Thus, the hostTopN - table needs to be created only at the end of the collection - interval." - DEFVAL { 0 } - ::= { hostTopNControlEntry 4 } - - hostTopNDuration OBJECT-TYPE - SYNTAX Integer32 - UNITS "Seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of seconds that this report has collected - during the last sampling interval, or if this - report is currently being collected, the number - of seconds that this report is being collected - during this sampling interval. - - When the associated hostTopNTimeRemaining object is set, - this object shall be set by the probe to the same value - and shall not be modified until the next time - the hostTopNTimeRemaining is set. - - This value shall be zero if no reports have been - requested for this hostTopNControlEntry." - DEFVAL { 0 } - ::= { hostTopNControlEntry 5 } - - hostTopNRequestedSize OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of hosts requested for the top N - table. - - When this object is created or modified, the probe - should set hostTopNGrantedSize as closely to this - object as is possible for the particular probe - implementation and available resources." - DEFVAL { 10 } - ::= { hostTopNControlEntry 6 } - - hostTopNGrantedSize OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of hosts in the top N table. - - When the associated hostTopNRequestedSize object is - created or modified, the probe should set this - object as closely to the requested value as is possible - for the particular implementation and available - resources. The probe must not lower this value except - as a result of a set to the associated - hostTopNRequestedSize object. - - Hosts with the highest value of hostTopNRate shall be - placed in this table in decreasing order of this rate - until there is no more room or until there are no more - hosts." - ::= { hostTopNControlEntry 7 } - - hostTopNStartTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this top N report was - last started. In other words, this is the time that - the associated hostTopNTimeRemaining object was - modified to start the requested report." - ::= { hostTopNControlEntry 8 } - - hostTopNOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { hostTopNControlEntry 9 } - - hostTopNStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this hostTopNControl entry. - - If this object is not equal to valid(1), all associated - hostTopNEntries shall be deleted by the agent." - ::= { hostTopNControlEntry 10 } - - hostTopNTable OBJECT-TYPE - SYNTAX SEQUENCE OF HostTopNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of top N host entries." - ::= { hostTopN 2 } - hostTopNEntry OBJECT-TYPE - SYNTAX HostTopNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of statistics for a host that is part of a top N - report. For example, an instance of the hostTopNRate - object might be named hostTopNRate.3.10" - INDEX { hostTopNReport, hostTopNIndex } - ::= { hostTopNTable 1 } - - HostTopNEntry ::= SEQUENCE { - hostTopNReport Integer32, - hostTopNIndex Integer32, - hostTopNAddress OCTET STRING, - hostTopNRate Integer32 - } - - hostTopNReport OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object identifies the top N report of which - this entry is a part. The set of hosts - identified by a particular value of this - object is part of the same report as identified - by the same value of the hostTopNControlIndex object." - ::= { hostTopNEntry 1 } - - hostTopNIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in - the hostTopN table among those in the same report. - This index is between 1 and N, where N is the - number of entries in this table. Increasing values - of hostTopNIndex shall be assigned to entries with - decreasing values of hostTopNRate until index N - is assigned to the entry with the lowest value of - hostTopNRate or there are no more hostTopNEntries." - ::= { hostTopNEntry 2 } - - hostTopNAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The physical address of this host." - ::= { hostTopNEntry 3 } - - hostTopNRate OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of change in the selected variable - during this sampling interval. The selected - variable is this host's instance of the object - selected by hostTopNRateBase." - ::= { hostTopNEntry 4 } - - -- The Matrix Group - - -- Implementation of the Matrix group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Matrix group consists of the matrixControlTable, matrixSDTable - -- and the matrixDSTable. These tables store statistics for a - -- particular conversation between two addresses. As the device - -- detects a new conversation, including those to a non-unicast - -- address, it creates a new entry in both of the matrix tables. - -- It must only create new entries based on information - -- received in good packets. If the monitoring device finds - -- itself short of resources, it may delete entries as needed. - -- It is suggested that the device delete the least recently used - -- entries first. - - matrixControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of information entries for the - traffic matrix on each interface." - ::= { matrix 1 } - - matrixControlEntry OBJECT-TYPE - SYNTAX MatrixControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a traffic matrix on a particular - interface. For example, an instance of the - matrixControlLastDeleteTime object might be named - matrixControlLastDeleteTime.1" - INDEX { matrixControlIndex } - ::= { matrixControlTable 1 } - - MatrixControlEntry ::= SEQUENCE { - matrixControlIndex Integer32, - matrixControlDataSource OBJECT IDENTIFIER, - matrixControlTableSize Integer32, - matrixControlLastDeleteTime TimeTicks, - matrixControlOwner OwnerString, - matrixControlStatus EntryStatus - } - - matrixControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - matrixControl table. Each such entry defines - a function that discovers conversations on a particular - interface and places statistics about them in the - matrixSDTable and the matrixDSTable on behalf of this - matrixControlEntry." - ::= { matrixControlEntry 1 } - - matrixControlDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object identifies the source of - the data from which this entry creates a traffic matrix. - This source can be any interface on this device. In - order to identify a particular interface, this object - shall identify the instance of the ifIndex object, - defined in RFC 2233 [17], for the desired - interface. For example, if an entry were to receive data - from interface #1, this object would be set to ifIndex.1. - - The statistics in this group reflect all packets - on the local network segment attached to the identified - interface. - - An agent may or may not be able to tell if fundamental - changes to the media of the interface have occurred and - necessitate an invalidation of this entry. For example, a - hot-pluggable ethernet card could be pulled out and replaced - by a token-ring card. In such a case, if the agent has such - knowledge of the change, it is recommended that it - invalidate this entry. - - This object may not be modified if the associated - matrixControlStatus object is equal to valid(1)." - ::= { matrixControlEntry 2 } - - matrixControlTableSize OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of matrixSDEntries in the matrixSDTable - for this interface. This must also be the value of - the number of entries in the matrixDSTable for this - interface." - ::= { matrixControlEntry 3 } - - matrixControlLastDeleteTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when the last entry - was deleted from the portion of the matrixSDTable - or matrixDSTable associated with this matrixControlEntry. - If no deletions have occurred, this value shall be - zero." - ::= { matrixControlEntry 4 } - - matrixControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { matrixControlEntry 5 } - - matrixControlStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this matrixControl entry. - If this object is not equal to valid(1), all associated - entries in the matrixSDTable and the matrixDSTable - shall be deleted by the agent." - ::= { matrixControlEntry 6 } - - matrixSDTable OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixSDEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of traffic matrix entries indexed by - source and destination MAC address." - ::= { matrix 2 } - - matrixSDEntry OBJECT-TYPE - SYNTAX MatrixSDEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics for communications between - two addresses on a particular interface. For example, - an instance of the matrixSDPkts object might be named - matrixSDPkts.1.6.8.0.32.27.3.176.6.8.0.32.10.8.113" - INDEX { matrixSDIndex, - matrixSDSourceAddress, matrixSDDestAddress } - ::= { matrixSDTable 1 } - - MatrixSDEntry ::= SEQUENCE { - matrixSDSourceAddress OCTET STRING, - matrixSDDestAddress OCTET STRING, - matrixSDIndex Integer32, - matrixSDPkts Counter32, - matrixSDOctets Counter32, - matrixSDErrors Counter32 - } - - matrixSDSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The source physical address." - ::= { matrixSDEntry 1 } - - matrixSDDestAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The destination physical address." - ::= { matrixSDEntry 2 } - - matrixSDIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The set of collected matrix statistics of which - this entry is a part. The set of matrix statistics - identified by a particular value of this index - is associated with the same matrixControlEntry - as identified by the same value of matrixControlIndex." - ::= { matrixSDEntry 3 } - - matrixSDPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets transmitted from the source - address to the destination address (this number includes - bad packets)." - ::= { matrixSDEntry 4 } - - matrixSDOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets (excluding framing bits but - including FCS octets) contained in all packets - transmitted from the source address to the - destination address." - ::= { matrixSDEntry 5 } - - matrixSDErrors OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bad packets transmitted from - the source address to the destination address." - ::= { matrixSDEntry 6 } - - - -- Traffic matrix tables from destination to source - - matrixDSTable OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixDSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of traffic matrix entries indexed by - destination and source MAC address." - ::= { matrix 3 } - - matrixDSEntry OBJECT-TYPE - SYNTAX MatrixDSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics for communications between - two addresses on a particular interface. For example, - an instance of the matrixSDPkts object might be named - matrixSDPkts.1.6.8.0.32.10.8.113.6.8.0.32.27.3.176" - INDEX { matrixDSIndex, - matrixDSDestAddress, matrixDSSourceAddress } - ::= { matrixDSTable 1 } - - MatrixDSEntry ::= SEQUENCE { - matrixDSSourceAddress OCTET STRING, - matrixDSDestAddress OCTET STRING, - matrixDSIndex Integer32, - matrixDSPkts Counter32, - matrixDSOctets Counter32, - matrixDSErrors Counter32 - } - - matrixDSSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The source physical address." - ::= { matrixDSEntry 1 } - - matrixDSDestAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The destination physical address." - ::= { matrixDSEntry 2 } - - matrixDSIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The set of collected matrix statistics of which - this entry is a part. The set of matrix statistics - identified by a particular value of this index - is associated with the same matrixControlEntry - as identified by the same value of matrixControlIndex." - ::= { matrixDSEntry 3 } - - matrixDSPkts OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets transmitted from the source - address to the destination address (this number includes - bad packets)." - ::= { matrixDSEntry 4 } - - matrixDSOctets OBJECT-TYPE - SYNTAX Counter32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets (excluding framing bits - but including FCS octets) contained in all packets - transmitted from the source address to the - destination address." - ::= { matrixDSEntry 5 } - - matrixDSErrors OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bad packets transmitted from - the source address to the destination address." - ::= { matrixDSEntry 6 } - - -- The Filter Group - - -- Implementation of the Filter group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Filter group allows packets to be captured with an - -- arbitrary filter expression. A logical data and - -- event stream or "channel" is formed by the packets - -- that match the filter expression. - -- - -- This filter mechanism allows the creation of an arbitrary - -- logical expression with which to filter packets. Each - -- filter associated with a channel is OR'ed with the others. - -- Within a filter, any bits checked in the data and status are - -- AND'ed with respect to other bits in the same filter. The - -- NotMask also allows for checking for inequality. Finally, - -- the channelAcceptType object allows for inversion of the - -- whole equation. - -- - -- If a management station wishes to receive a trap to alert it - -- that new packets have been captured and are available for - -- download, it is recommended that it set up an alarm entry that - -- monitors the value of the relevant channelMatches instance. - -- - -- The channel can be turned on or off, and can also - -- generate events when packets pass through it. - - filterTable OBJECT-TYPE - SYNTAX SEQUENCE OF FilterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of packet filter entries." - ::= { filter 1 } - - filterEntry OBJECT-TYPE - SYNTAX FilterEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters for a packet filter applied on a - particular interface. As an example, an instance of the - filterPktData object might be named filterPktData.12" - INDEX { filterIndex } - ::= { filterTable 1 } - - FilterEntry ::= SEQUENCE { - filterIndex Integer32, - filterChannelIndex Integer32, - filterPktDataOffset Integer32, - filterPktData OCTET STRING, - filterPktDataMask OCTET STRING, - filterPktDataNotMask OCTET STRING, - filterPktStatus Integer32, - filterPktStatusMask Integer32, - filterPktStatusNotMask Integer32, - filterOwner OwnerString, - filterStatus EntryStatus - } - - filterIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the filter table. Each such entry defines - one filter that is to be applied to every packet - received on an interface." - ::= { filterEntry 1 } - - filterChannelIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object identifies the channel of which this filter - is a part. The filters identified by a particular value - of this object are associated with the same channel as - identified by the same value of the channelIndex object." - ::= { filterEntry 2 } - - filterPktDataOffset OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The offset from the beginning of each packet where - a match of packet data will be attempted. This offset - is measured from the point in the physical layer - packet after the framing bits, if any. For example, - in an Ethernet frame, this point is at the beginning of - the destination MAC address. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - DEFVAL { 0 } - ::= { filterEntry 3 } - - filterPktData OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The data that is to be matched with the input packet. - For each packet received, this filter and the accompanying - filterPktDataMask and filterPktDataNotMask will be - adjusted for the offset. The only bits relevant to this - match algorithm are those that have the corresponding - filterPktDataMask bit equal to one. The following three - rules are then applied to every packet: - - (1) If the packet is too short and does not have data - corresponding to part of the filterPktData, the packet - will fail this data match. - - (2) For each relevant bit from the packet with the - corresponding filterPktDataNotMask bit set to zero, if - the bit from the packet is not equal to the corresponding - bit from the filterPktData, then the packet will fail - this data match. - - (3) If for every relevant bit from the packet with the - corresponding filterPktDataNotMask bit set to one, the - bit from the packet is equal to the corresponding bit - from the filterPktData, then the packet will fail this - data match. - - Any packets that have not failed any of the three matches - above have passed this data match. In particular, a zero - length filter will match any packet. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 4 } - - filterPktDataMask OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The mask that is applied to the match process. - After adjusting this mask for the offset, only those - bits in the received packet that correspond to bits set - in this mask are relevant for further processing by the - match algorithm. The offset is applied to filterPktDataMask - in the same way it is applied to the filter. For the - purposes of the matching algorithm, if the associated - filterPktData object is longer than this mask, this mask is - conceptually extended with '1' bits until it reaches the - length of the filterPktData object. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 5 } - - filterPktDataNotMask OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The inversion mask that is applied to the match - process. After adjusting this mask for the offset, - those relevant bits in the received packet that correspond - to bits cleared in this mask must all be equal to their - corresponding bits in the filterPktData object for the packet - to be accepted. In addition, at least one of those relevant - bits in the received packet that correspond to bits set in - this mask must be different to its corresponding bit in the - filterPktData object. - - For the purposes of the matching algorithm, if the associated - filterPktData object is longer than this mask, this mask is - conceptually extended with '0' bits until it reaches the - length of the filterPktData object. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 6 } - - filterPktStatus OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status that is to be matched with the input packet. - The only bits relevant to this match algorithm are those that - have the corresponding filterPktStatusMask bit equal to one. - The following two rules are then applied to every packet: - - (1) For each relevant bit from the packet status with the - corresponding filterPktStatusNotMask bit set to zero, if - the bit from the packet status is not equal to the - corresponding bit from the filterPktStatus, then the - packet will fail this status match. - - (2) If for every relevant bit from the packet status with the - corresponding filterPktStatusNotMask bit set to one, the - bit from the packet status is equal to the corresponding - bit from the filterPktStatus, then the packet will fail - this status match. - - Any packets that have not failed either of the two matches - above have passed this status match. In particular, a zero - length status filter will match any packet's status. - - The value of the packet status is a sum. This sum - initially takes the value zero. Then, for each - error, E, that has been discovered in this packet, - 2 raised to a value representing E is added to the sum. - The errors and the bits that represent them are dependent - on the media type of the interface that this channel - is receiving packets from. - - The errors defined for a packet captured off of an - Ethernet interface are as follows: - - bit # Error - 0 Packet is longer than 1518 octets - 1 Packet is shorter than 64 octets - 2 Packet experienced a CRC or Alignment error - - For example, an Ethernet fragment would have a - value of 6 (2^1 + 2^2). - - As this MIB is expanded to new media types, this object - will have other media-specific errors defined. - - For the purposes of this status matching algorithm, if the - packet status is longer than this filterPktStatus object, - this object is conceptually extended with '0' bits until it - reaches the size of the packet status. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 7 } - - filterPktStatusMask OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The mask that is applied to the status match process. - Only those bits in the received packet that correspond to - bits set in this mask are relevant for further processing - by the status match algorithm. For the purposes - of the matching algorithm, if the associated filterPktStatus - object is longer than this mask, this mask is conceptually - extended with '1' bits until it reaches the size of the - filterPktStatus. In addition, if a packet status is longer - than this mask, this mask is conceptually extended with '0' - bits until it reaches the size of the packet status. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 8 } - - filterPktStatusNotMask OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The inversion mask that is applied to the status match - process. Those relevant bits in the received packet status - that correspond to bits cleared in this mask must all be - equal to their corresponding bits in the filterPktStatus - object for the packet to be accepted. In addition, at least - one of those relevant bits in the received packet status - that correspond to bits set in this mask must be different - to its corresponding bit in the filterPktStatus object for - the packet to be accepted. - - For the purposes of the matching algorithm, if the associated - filterPktStatus object or a packet status is longer than this - mask, this mask is conceptually extended with '0' bits until - it reaches the longer of the lengths of the filterPktStatus - object and the packet status. - - This object may not be modified if the associated - filterStatus object is equal to valid(1)." - ::= { filterEntry 9 } - - filterOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { filterEntry 10 } - - filterStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this filter entry." - ::= { filterEntry 11 } - - channelTable OBJECT-TYPE - SYNTAX SEQUENCE OF ChannelEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of packet channel entries." - ::= { filter 2 } - - channelEntry OBJECT-TYPE - SYNTAX ChannelEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters for a packet channel applied on a - particular interface. As an example, an instance of the - channelMatches object might be named channelMatches.3" - INDEX { channelIndex } - ::= { channelTable 1 } - - ChannelEntry ::= SEQUENCE { - channelIndex Integer32, - channelIfIndex Integer32, - channelAcceptType INTEGER, - channelDataControl INTEGER, - channelTurnOnEventIndex Integer32, - channelTurnOffEventIndex Integer32, - channelEventIndex Integer32, - channelEventStatus INTEGER, - channelMatches Counter32, - channelDescription DisplayString, - channelOwner OwnerString, - channelStatus EntryStatus - } - - channelIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the channel - table. Each such entry defines one channel, a logical - data and event stream. - - It is suggested that before creating a channel, an - application should scan all instances of the - filterChannelIndex object to make sure that there are no - pre-existing filters that would be inadvertently be linked - to the channel." - ::= { channelEntry 1 } - - channelIfIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object uniquely identifies the - interface on this remote network monitoring device to which - the associated filters are applied to allow data into this - channel. The interface identified by a particular value - of this object is the same interface as identified by the - same value of the ifIndex object, defined in RFC 2233 [17]. - - The filters in this group are applied to all packets on - the local network segment attached to the identified - interface. - - An agent may or may not be able to tell if fundamental - changes to the media of the interface have occurred and - necessitate an invalidation of this entry. For example, a - hot-pluggable ethernet card could be pulled out and replaced - by a token-ring card. In such a case, if the agent has such - knowledge of the change, it is recommended that it - invalidate this entry. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 2 } - - channelAcceptType OBJECT-TYPE - SYNTAX INTEGER { - acceptMatched(1), - acceptFailed(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object controls the action of the filters - associated with this channel. If this object is equal - to acceptMatched(1), packets will be accepted to this - channel if they are accepted by both the packet data and - packet status matches of an associated filter. If - this object is equal to acceptFailed(2), packets will - be accepted to this channel only if they fail either - the packet data match or the packet status match of - each of the associated filters. - - In particular, a channel with no associated filters will - match no packets if set to acceptMatched(1) case and will - match all packets in the acceptFailed(2) case. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 3 } - - channelDataControl OBJECT-TYPE - SYNTAX INTEGER { - on(1), - off(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object controls the flow of data through this channel. - If this object is on(1), data, status and events flow - through this channel. If this object is off(2), data, - status and events will not flow through this channel." - DEFVAL { off } - ::= { channelEntry 4 } - - channelTurnOnEventIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object identifies the event - that is configured to turn the associated - channelDataControl from off to on when the event is - generated. The event identified by a particular value - of this object is the same event as identified by the - same value of the eventIndex object. If there is no - corresponding entry in the eventTable, then no - association exists. In fact, if no event is intended - for this channel, channelTurnOnEventIndex must be - set to zero, a non-existent event index. - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 5 } - - channelTurnOffEventIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object identifies the event - that is configured to turn the associated - channelDataControl from on to off when the event is - generated. The event identified by a particular value - of this object is the same event as identified by the - same value of the eventIndex object. If there is no - corresponding entry in the eventTable, then no - association exists. In fact, if no event is intended - for this channel, channelTurnOffEventIndex must be - set to zero, a non-existent event index. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 6 } - - channelEventIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The value of this object identifies the event - that is configured to be generated when the - associated channelDataControl is on and a packet - is matched. The event identified by a particular value - of this object is the same event as identified by the - same value of the eventIndex object. If there is no - corresponding entry in the eventTable, then no - association exists. In fact, if no event is intended - for this channel, channelEventIndex must be - set to zero, a non-existent event index. - - This object may not be modified if the associated - channelStatus object is equal to valid(1)." - ::= { channelEntry 7 } - - channelEventStatus OBJECT-TYPE - SYNTAX INTEGER { - eventReady(1), - eventFired(2), - eventAlwaysReady(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The event status of this channel. - - If this channel is configured to generate events - when packets are matched, a means of controlling - the flow of those events is often needed. When - this object is equal to eventReady(1), a single - event may be generated, after which this object - will be set by the probe to eventFired(2). While - in the eventFired(2) state, no events will be - generated until the object is modified to - eventReady(1) (or eventAlwaysReady(3)). The - management station can thus easily respond to a - notification of an event by re-enabling this object. - - If the management station wishes to disable this - flow control and allow events to be generated - at will, this object may be set to - eventAlwaysReady(3). Disabling the flow control - is discouraged as it can result in high network - traffic or other performance problems." - DEFVAL { eventReady } - ::= { channelEntry 8 } - - channelMatches OBJECT-TYPE - SYNTAX Counter32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times this channel has matched a packet. - Note that this object is updated even when - channelDataControl is set to off." - ::= { channelEntry 9 } - - channelDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A comment describing this channel." - ::= { channelEntry 10 } - - channelOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { channelEntry 11 } - - channelStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this channel entry." - ::= { channelEntry 12 } - - -- The Packet Capture Group - - -- Implementation of the Packet Capture group is optional. The Packet - -- Capture Group requires implementation of the Filter Group. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Packet Capture group allows packets to be captured - -- upon a filter match. The bufferControlTable controls - -- the captured packets output from a channel that is - -- associated with it. The captured packets are placed - -- in entries in the captureBufferTable. These entries are - -- associated with the bufferControlEntry on whose behalf they - -- were stored. - - bufferControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF BufferControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of buffers control entries." - ::= { capture 1 } - - bufferControlEntry OBJECT-TYPE - SYNTAX BufferControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters that control the collection of a stream - of packets that have matched filters. As an example, an - instance of the bufferControlCaptureSliceSize object might - be named bufferControlCaptureSliceSize.3" - INDEX { bufferControlIndex } - ::= { bufferControlTable 1 } - - BufferControlEntry ::= SEQUENCE { - bufferControlIndex Integer32, - bufferControlChannelIndex Integer32, - bufferControlFullStatus INTEGER, - bufferControlFullAction INTEGER, - bufferControlCaptureSliceSize Integer32, - bufferControlDownloadSliceSize Integer32, - bufferControlDownloadOffset Integer32, - bufferControlMaxOctetsRequested Integer32, - bufferControlMaxOctetsGranted Integer32, - bufferControlCapturedPackets Integer32, - bufferControlTurnOnTime TimeTicks, - bufferControlOwner OwnerString, - bufferControlStatus EntryStatus - } - - bufferControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the bufferControl table. The value of this - index shall never be zero. Each such - entry defines one set of packets that is - captured and controlled by one or more filters." - ::= { bufferControlEntry 1 } - - bufferControlChannelIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "An index that identifies the channel that is the - source of packets for this bufferControl table. - The channel identified by a particular value of this - index is the same as identified by the same value of - the channelIndex object. - - This object may not be modified if the associated - bufferControlStatus object is equal to valid(1)." - ::= { bufferControlEntry 2 } - - bufferControlFullStatus OBJECT-TYPE - SYNTAX INTEGER { - spaceAvailable(1), - full(2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object shows whether the buffer has room to - accept new packets or if it is full. - - If the status is spaceAvailable(1), the buffer is - accepting new packets normally. If the status is - full(2) and the associated bufferControlFullAction - object is wrapWhenFull, the buffer is accepting new - packets by deleting enough of the oldest packets - to make room for new ones as they arrive. Otherwise, - if the status is full(2) and the - bufferControlFullAction object is lockWhenFull, - then the buffer has stopped collecting packets. - - When this object is set to full(2) the probe must - not later set it to spaceAvailable(1) except in the - case of a significant gain in resources such as - an increase of bufferControlOctetsGranted. In - particular, the wrap-mode action of deleting old - packets to make room for newly arrived packets - must not affect the value of this object." - ::= { bufferControlEntry 3 } - - bufferControlFullAction OBJECT-TYPE - SYNTAX INTEGER { - lockWhenFull(1), - wrapWhenFull(2) -- FIFO - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "Controls the action of the buffer when it - reaches the full status. When in the lockWhenFull(1) - state and a packet is added to the buffer that - fills the buffer, the bufferControlFullStatus will - be set to full(2) and this buffer will stop capturing - packets." - ::= { bufferControlEntry 4 } - - bufferControlCaptureSliceSize OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of octets of each packet - that will be saved in this capture buffer. - For example, if a 1500 octet packet is received by - the probe and this object is set to 500, then only - 500 octets of the packet will be stored in the - associated capture buffer. If this variable is set - to 0, the capture buffer will save as many octets - as is possible. - - This object may not be modified if the associated - bufferControlStatus object is equal to valid(1)." - DEFVAL { 100 } - ::= { bufferControlEntry 5 } - - bufferControlDownloadSliceSize OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of octets of each packet - in this capture buffer that will be returned in - an SNMP retrieval of that packet. For example, - if 500 octets of a packet have been stored in the - associated capture buffer, the associated - bufferControlDownloadOffset is 0, and this - object is set to 100, then the captureBufferPacket - object that contains the packet will contain only - the first 100 octets of the packet. - - A prudent manager will take into account possible - interoperability or fragmentation problems that may - occur if the download slice size is set too large. - In particular, conformant SNMP implementations are not - required to accept messages whose length exceeds 484 - octets, although they are encouraged to support larger - datagrams whenever feasible." - DEFVAL { 100 } - ::= { bufferControlEntry 6 } - - bufferControlDownloadOffset OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The offset of the first octet of each packet - in this capture buffer that will be returned in - an SNMP retrieval of that packet. For example, - if 500 octets of a packet have been stored in the - associated capture buffer and this object is set to - 100, then the captureBufferPacket object that - contains the packet will contain bytes starting - 100 octets into the packet." - DEFVAL { 0 } - ::= { bufferControlEntry 7 } - - bufferControlMaxOctetsRequested OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The requested maximum number of octets to be - saved in this captureBuffer, including any - implementation-specific overhead. If this variable - is set to -1, the capture buffer will save as many - octets as is possible. - - When this object is created or modified, the probe - should set bufferControlMaxOctetsGranted as closely - to this object as is possible for the particular probe - implementation and available resources. However, if - the object has the special value of -1, the probe - must set bufferControlMaxOctetsGranted to -1." - DEFVAL { -1 } - ::= { bufferControlEntry 8 } - - bufferControlMaxOctetsGranted OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of octets that can be - saved in this captureBuffer, including overhead. - If this variable is -1, the capture buffer will save - as many octets as possible. - - When the bufferControlMaxOctetsRequested object is - created or modified, the probe should set this object - as closely to the requested value as is possible for the - particular probe implementation and available resources. - However, if the request object has the special value - of -1, the probe must set this object to -1. - - The probe must not lower this value except as a result of - a modification to the associated - bufferControlMaxOctetsRequested object. - - When this maximum number of octets is reached - and a new packet is to be added to this - capture buffer and the corresponding - bufferControlFullAction is set to wrapWhenFull(2), - enough of the oldest packets associated with this - capture buffer shall be deleted by the agent so - that the new packet can be added. If the corresponding - bufferControlFullAction is set to lockWhenFull(1), - the new packet shall be discarded. In either case, - the probe must set bufferControlFullStatus to - full(2). - - When the value of this object changes to a value less - than the current value, entries are deleted from - the captureBufferTable associated with this - bufferControlEntry. Enough of the - oldest of these captureBufferEntries shall be - deleted by the agent so that the number of octets - used remains less than or equal to the new value of - this object. - - When the value of this object changes to a value greater - than the current value, the number of associated - captureBufferEntries may be allowed to grow." - ::= { bufferControlEntry 9 } - - bufferControlCapturedPackets OBJECT-TYPE - SYNTAX Integer32 - UNITS "Packets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets currently in this captureBuffer." - ::= { bufferControlEntry 10 } - - bufferControlTurnOnTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this capture buffer was - first turned on." - ::= { bufferControlEntry 11 } - - bufferControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it." - ::= { bufferControlEntry 12 } - - bufferControlStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this buffer Control Entry." - ::= { bufferControlEntry 13 } - - captureBufferTable OBJECT-TYPE - SYNTAX SEQUENCE OF CaptureBufferEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of packets captured off of a channel." - ::= { capture 2 } - - captureBufferEntry OBJECT-TYPE - SYNTAX CaptureBufferEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A packet captured off of an attached network. As an - example, an instance of the captureBufferPacketData - object might be named captureBufferPacketData.3.1783" - INDEX { captureBufferControlIndex, captureBufferIndex } - ::= { captureBufferTable 1 } - - CaptureBufferEntry ::= SEQUENCE { - captureBufferControlIndex Integer32, - captureBufferIndex Integer32, - captureBufferPacketID Integer32, - captureBufferPacketData OCTET STRING, - captureBufferPacketLength Integer32, - captureBufferPacketTime Integer32, - captureBufferPacketStatus Integer32 - } - - captureBufferControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The index of the bufferControlEntry with which - this packet is associated." - ::= { captureBufferEntry 1 } - - captureBufferIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the captureBuffer table associated with a - particular bufferControlEntry. This index will - start at 1 and increase by one for each new packet - added with the same captureBufferControlIndex. - - Should this value reach 2147483647, the next packet - added with the same captureBufferControlIndex shall - cause this value to wrap around to 1." - ::= { captureBufferEntry 2 } - - captureBufferPacketID OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that describes the order of packets - that are received on a particular interface. - The packetID of a packet captured on an - interface is defined to be greater than the - packetID's of all packets captured previously on - the same interface. As the captureBufferPacketID - object has a maximum positive value of 2^31 - 1, - any captureBufferPacketID object shall have the - value of the associated packet's packetID mod 2^31." - ::= { captureBufferEntry 3 } - - captureBufferPacketData OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The data inside the packet, starting at the beginning - of the packet plus any offset specified in the - associated bufferControlDownloadOffset, including any - link level headers. The length of the data in this object - is the minimum of the length of the captured packet minus - the offset, the length of the associated - bufferControlCaptureSliceSize minus the offset, and the - associated bufferControlDownloadSliceSize. If this minimum - is less than zero, this object shall have a length of zero." - ::= { captureBufferEntry 4 } - - captureBufferPacketLength OBJECT-TYPE - SYNTAX Integer32 - UNITS "Octets" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The actual length (off the wire) of the packet stored - in this entry, including FCS octets." - ::= { captureBufferEntry 5 } - - captureBufferPacketTime OBJECT-TYPE - SYNTAX Integer32 - UNITS "Milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of milliseconds that had passed since - this capture buffer was first turned on when this - packet was captured." - ::= { captureBufferEntry 6 } - - captureBufferPacketStatus OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A value which indicates the error status of this packet. - - The value of this object is defined in the same way as - filterPktStatus. The value is a sum. This sum - initially takes the value zero. Then, for each - error, E, that has been discovered in this packet, - 2 raised to a value representing E is added to the sum. - - The errors defined for a packet captured off of an - Ethernet interface are as follows: - - bit # Error - 0 Packet is longer than 1518 octets - 1 Packet is shorter than 64 octets - 2 Packet experienced a CRC or Alignment error - 3 First packet in this capture buffer after - it was detected that some packets were - not processed correctly. - 4 Packet's order in buffer is only approximate - (May only be set for packets sent from - the probe) - - For example, an Ethernet fragment would have a - value of 6 (2^1 + 2^2). - - As this MIB is expanded to new media types, this object - will have other media-specific errors defined." - ::= { captureBufferEntry 7 } - - -- The Event Group - - -- Implementation of the Event group is optional. - -- Consult the MODULE-COMPLIANCE macro for the authoritative - -- conformance information for this MIB. - -- - -- The Event group controls the generation and notification - -- of events from this device. Each entry in the eventTable - -- describes the parameters of the event that can be triggered. - -- Each event entry is fired by an associated condition located - -- elsewhere in the MIB. An event entry may also be associated - -- with a function elsewhere in the MIB that will be executed - -- when the event is generated. For example, a channel may - -- be turned on or off by the firing of an event. - -- - -- Each eventEntry may optionally specify that a log entry - -- be created on its behalf whenever the event occurs. - -- Each entry may also specify that notification should - -- occur by way of SNMP trap messages. In this case, the - -- community for the trap message is given in the associated - -- eventCommunity object. The enterprise and specific trap - -- fields of the trap are determined by the condition that - -- triggered the event. Two traps are defined: risingAlarm and - -- fallingAlarm. If the eventTable is triggered by a condition - -- specified elsewhere, the enterprise and specific trap fields - -- must be specified for traps generated for that condition. - - eventTable OBJECT-TYPE - SYNTAX SEQUENCE OF EventEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of events to be generated." - ::= { event 1 } - - eventEntry OBJECT-TYPE - SYNTAX EventEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters that describe an event to be generated - when certain conditions are met. As an example, an instance - of the eventLastTimeSent object might be named - eventLastTimeSent.6" - INDEX { eventIndex } - ::= { eventTable 1 } - - EventEntry ::= SEQUENCE { - eventIndex Integer32, - eventDescription DisplayString, - eventType INTEGER, - eventCommunity OCTET STRING, - eventLastTimeSent TimeTicks, - eventOwner OwnerString, - eventStatus EntryStatus - } - - eventIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - event table. Each such entry defines one event that - is to be generated when the appropriate conditions - occur." - ::= { eventEntry 1 } - - eventDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..127)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A comment describing this event entry." - ::= { eventEntry 2 } - - eventType OBJECT-TYPE - SYNTAX INTEGER { - none(1), - log(2), - snmptrap(3), -- send an SNMP trap - logandtrap(4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The type of notification that the probe will make - about this event. In the case of log, an entry is - made in the log table for each event. In the case of - snmp-trap, an SNMP trap is sent to one or more - management stations." - ::= { eventEntry 3 } - - eventCommunity OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..127)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "If an SNMP trap is to be sent, it will be sent to - the SNMP community specified by this octet string." - ::= { eventEntry 4 } - - eventLastTimeSent OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this event - entry last generated an event. If this entry has - not generated any events, this value will be - zero." - ::= { eventEntry 5 } - - eventOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is therefore - using the resources assigned to it. - - If this object contains a string starting with 'monitor' - and has associated entries in the log table, all connected - management stations should retrieve those log entries, - as they may have significance to all management stations - connected to this device" - ::= { eventEntry 6 } - - eventStatus OBJECT-TYPE - SYNTAX EntryStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this event entry. - - If this object is not equal to valid(1), all associated - log entries shall be deleted by the agent." - ::= { eventEntry 7 } - - -- - logTable OBJECT-TYPE - SYNTAX SEQUENCE OF LogEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of events that have been logged." - ::= { event 2 } - - logEntry OBJECT-TYPE - SYNTAX LogEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of data describing an event that has been - logged. For example, an instance of the logDescription - object might be named logDescription.6.47" - INDEX { logEventIndex, logIndex } - ::= { logTable 1 } - - LogEntry ::= SEQUENCE { - logEventIndex Integer32, - logIndex Integer32, - logTime TimeTicks, - logDescription DisplayString - } - - logEventIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The event entry that generated this log - entry. The log identified by a particular - value of this index is associated with the same - eventEntry as identified by the same value - of eventIndex." - ::= { logEntry 1 } - - logIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the log table amongst those generated by the - same eventEntries. These indexes are - assigned beginning with 1 and increase by one - with each new log entry. The association - between values of logIndex and logEntries - is fixed for the lifetime of each logEntry. - The agent may choose to delete the oldest - instances of logEntry as required because of - lack of memory. It is an implementation-specific - matter as to when this deletion may occur." - ::= { logEntry 2 } - - logTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this log entry was created." - ::= { logEntry 3 } - - logDescription OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An implementation dependent description of the - event that activated this log entry." - ::= { logEntry 4 } - - -- Remote Network Monitoring Traps - - rmonEventsV2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "Definition point for RMON notifications." - ::= { rmon 0 } - - risingAlarm NOTIFICATION-TYPE - OBJECTS { alarmIndex, alarmVariable, alarmSampleType, - alarmValue, alarmRisingThreshold } - STATUS current - DESCRIPTION - "The SNMP trap that is generated when an alarm - entry crosses its rising threshold and generates - an event that is configured for sending SNMP - traps." - ::= { rmonEventsV2 1 } - - fallingAlarm NOTIFICATION-TYPE - OBJECTS { alarmIndex, alarmVariable, alarmSampleType, - alarmValue, alarmFallingThreshold } - STATUS current - DESCRIPTION - "The SNMP trap that is generated when an alarm - entry crosses its falling threshold and generates - an event that is configured for sending SNMP - traps." - ::= { rmonEventsV2 2 } - - -- Conformance information - - rmonCompliances OBJECT IDENTIFIER ::= { rmonConformance 9 } - rmonGroups OBJECT IDENTIFIER ::= { rmonConformance 10 } - - -- Compliance Statements - rmonCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The requirements for conformance to the RMON MIB. At least - one of the groups in this module must be implemented to - conform to the RMON MIB. Implementations of this MIB - must also implement the system group of MIB-II [16] and the - IF-MIB [17]." - MODULE -- this module - - GROUP rmonEtherStatsGroup - DESCRIPTION - "The RMON Ethernet Statistics Group is optional." - - GROUP rmonHistoryControlGroup - DESCRIPTION - "The RMON History Control Group is optional." - - GROUP rmonEthernetHistoryGroup - DESCRIPTION - "The RMON Ethernet History Group is optional." - - GROUP rmonAlarmGroup - DESCRIPTION - "The RMON Alarm Group is optional." - - GROUP rmonHostGroup - DESCRIPTION - "The RMON Host Group is mandatory when the - rmonHostTopNGroup is implemented." - - GROUP rmonHostTopNGroup - DESCRIPTION - "The RMON Host Top N Group is optional." - - GROUP rmonMatrixGroup - DESCRIPTION - "The RMON Matrix Group is optional." - - GROUP rmonFilterGroup - DESCRIPTION - "The RMON Filter Group is mandatory when the - rmonPacketCaptureGroup is implemented." - - GROUP rmonPacketCaptureGroup - DESCRIPTION - "The RMON Packet Capture Group is optional." - - GROUP rmonEventGroup - DESCRIPTION - "The RMON Event Group is mandatory when the - rmonAlarmGroup is implemented." - ::= { rmonCompliances 1 } - - rmonEtherStatsGroup OBJECT-GROUP - OBJECTS { - etherStatsIndex, etherStatsDataSource, - etherStatsDropEvents, etherStatsOctets, etherStatsPkts, - etherStatsBroadcastPkts, etherStatsMulticastPkts, - etherStatsCRCAlignErrors, etherStatsUndersizePkts, - etherStatsOversizePkts, etherStatsFragments, - etherStatsJabbers, etherStatsCollisions, - etherStatsPkts64Octets, etherStatsPkts65to127Octets, - etherStatsPkts128to255Octets, - etherStatsPkts256to511Octets, - etherStatsPkts512to1023Octets, - etherStatsPkts1024to1518Octets, - etherStatsOwner, etherStatsStatus - } - STATUS current - DESCRIPTION - "The RMON Ethernet Statistics Group." - ::= { rmonGroups 1 } - - rmonHistoryControlGroup OBJECT-GROUP - OBJECTS { - historyControlIndex, historyControlDataSource, - historyControlBucketsRequested, - historyControlBucketsGranted, historyControlInterval, - historyControlOwner, historyControlStatus - } - STATUS current - DESCRIPTION - "The RMON History Control Group." - ::= { rmonGroups 2 } - - rmonEthernetHistoryGroup OBJECT-GROUP - OBJECTS { - etherHistoryIndex, etherHistorySampleIndex, - etherHistoryIntervalStart, etherHistoryDropEvents, - etherHistoryOctets, etherHistoryPkts, - etherHistoryBroadcastPkts, etherHistoryMulticastPkts, - etherHistoryCRCAlignErrors, etherHistoryUndersizePkts, - etherHistoryOversizePkts, etherHistoryFragments, - etherHistoryJabbers, etherHistoryCollisions, - etherHistoryUtilization - } - STATUS current - DESCRIPTION - "The RMON Ethernet History Group." - ::= { rmonGroups 3 } - - rmonAlarmGroup OBJECT-GROUP - OBJECTS { - alarmIndex, alarmInterval, alarmVariable, - alarmSampleType, alarmValue, alarmStartupAlarm, - alarmRisingThreshold, alarmFallingThreshold, - alarmRisingEventIndex, alarmFallingEventIndex, - alarmOwner, alarmStatus - } - STATUS current - DESCRIPTION - "The RMON Alarm Group." - ::= { rmonGroups 4 } - - rmonHostGroup OBJECT-GROUP - OBJECTS { - hostControlIndex, hostControlDataSource, - hostControlTableSize, hostControlLastDeleteTime, - hostControlOwner, hostControlStatus, - hostAddress, hostCreationOrder, hostIndex, - hostInPkts, hostOutPkts, hostInOctets, - hostOutOctets, hostOutErrors, hostOutBroadcastPkts, - hostOutMulticastPkts, hostTimeAddress, - hostTimeCreationOrder, hostTimeIndex, - hostTimeInPkts, hostTimeOutPkts, hostTimeInOctets, - hostTimeOutOctets, hostTimeOutErrors, - hostTimeOutBroadcastPkts, hostTimeOutMulticastPkts - } - STATUS current - DESCRIPTION - "The RMON Host Group." - ::= { rmonGroups 5 } - - rmonHostTopNGroup OBJECT-GROUP - OBJECTS { - hostTopNControlIndex, hostTopNHostIndex, - hostTopNRateBase, hostTopNTimeRemaining, - hostTopNDuration, hostTopNRequestedSize, - hostTopNGrantedSize, hostTopNStartTime, - hostTopNOwner, hostTopNStatus, - hostTopNReport, hostTopNIndex, - hostTopNAddress, hostTopNRate - } - STATUS current - DESCRIPTION - "The RMON Host Top 'N' Group." - ::= { rmonGroups 6 } - - rmonMatrixGroup OBJECT-GROUP - OBJECTS { - matrixControlIndex, matrixControlDataSource, - matrixControlTableSize, matrixControlLastDeleteTime, - matrixControlOwner, matrixControlStatus, - matrixSDSourceAddress, matrixSDDestAddress, - matrixSDIndex, matrixSDPkts, - matrixSDOctets, matrixSDErrors, - matrixDSSourceAddress, matrixDSDestAddress, - matrixDSIndex, matrixDSPkts, - matrixDSOctets, matrixDSErrors - } - STATUS current - DESCRIPTION - "The RMON Matrix Group." - ::= { rmonGroups 7 } - - rmonFilterGroup OBJECT-GROUP - OBJECTS { - filterIndex, filterChannelIndex, filterPktDataOffset, - filterPktData, filterPktDataMask, - filterPktDataNotMask, filterPktStatus, - filterPktStatusMask, filterPktStatusNotMask, - filterOwner, filterStatus, - channelIndex, channelIfIndex, channelAcceptType, - channelDataControl, channelTurnOnEventIndex, - channelTurnOffEventIndex, channelEventIndex, - channelEventStatus, channelMatches, - channelDescription, channelOwner, channelStatus - } - STATUS current - DESCRIPTION - "The RMON Filter Group." - ::= { rmonGroups 8 } - - rmonPacketCaptureGroup OBJECT-GROUP - OBJECTS { - bufferControlIndex, bufferControlChannelIndex, - bufferControlFullStatus, bufferControlFullAction, - bufferControlCaptureSliceSize, - bufferControlDownloadSliceSize, - bufferControlDownloadOffset, - bufferControlMaxOctetsRequested, - bufferControlMaxOctetsGranted, - bufferControlCapturedPackets, - bufferControlTurnOnTime, - bufferControlOwner, bufferControlStatus, - captureBufferControlIndex, captureBufferIndex, - captureBufferPacketID, captureBufferPacketData, - captureBufferPacketLength, captureBufferPacketTime, - captureBufferPacketStatus - } - STATUS current - DESCRIPTION - "The RMON Packet Capture Group." - ::= { rmonGroups 9 } - - rmonEventGroup OBJECT-GROUP - OBJECTS { - eventIndex, eventDescription, eventType, - eventCommunity, eventLastTimeSent, - eventOwner, eventStatus, - logEventIndex, logIndex, logTime, - logDescription - } - STATUS current - DESCRIPTION - "The RMON Event Group." - ::= { rmonGroups 10 } - - rmonNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { risingAlarm, fallingAlarm } - STATUS current - DESCRIPTION - "The RMON Notification Group." - ::= { rmonGroups 11 } - END diff --git a/mibs/orig/RMON2-MIB b/mibs/orig/RMON2-MIB deleted file mode 100644 index 7f84a9e..0000000 --- a/mibs/orig/RMON2-MIB +++ /dev/null @@ -1,5953 +0,0 @@ -RMON2-MIB DEFINITIONS ::= BEGIN -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32, - Gauge32, IpAddress, TimeTicks, mib-2 FROM SNMPv2-SMI - TEXTUAL-CONVENTION, RowStatus, DisplayString, TimeStamp - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF - ifIndex FROM IF-MIB - OwnerString, statistics, history, hosts, - matrix, filter, etherStatsEntry, historyControlEntry, - hostControlEntry, matrixControlEntry, filterEntry, - channelEntry FROM RMON-MIB - tokenRing, tokenRingMLStatsEntry, tokenRingPStatsEntry, - ringStationControlEntry, sourceRoutingStatsEntry - FROM TOKEN-RING-RMON-MIB; --- Remote Network Monitoring MIB - -rmon MODULE-IDENTITY - LAST-UPDATED "200605020000Z" -- May 2, 2006 - ORGANIZATION "IETF RMON MIB Working Group" - CONTACT-INFO - "Author: - Steve Waldbusser - Phone: +1-650-948-6500 - Fax : +1-650-745-0671 - Email: waldbusser@nextbeacon.com - - Working Group Chair: - Andy Bierman - E-mail: ietf@andybierman.com - - Working Group Mailing List: - To subscribe send email to: " - DESCRIPTION - "The MIB module for managing remote monitoring - device implementations. This MIB module - extends the architecture introduced in the original - RMON MIB as specified in RFC 2819. - - Copyright (C) The Internet Society (2006). This version of - this MIB module is part of RFC 4502; see the RFC itself for - full legal notices." - - REVISION "200605020000Z" -- May 2, 2006 - DESCRIPTION - "This version updates the proposed-standard version of the - RMON2 MIB (published as RFC 2021) by adding 2 new - enumerations to the nlMatrixTopNControlRateBase object and - 4 new enumerations to the alMatrixTopNControlRateBase object. - These new enumerations support the creation of high-capacity - topN reports in the High Capacity RMON MIB [RFC3273]. - - Additionally, the following objects have been deprecated, as - they have not had enough independent implementations to - demonstrate interoperability to meet the requirements of a - Draft Standard: - - probeDownloadFile - probeDownloadTFTPServer - probeDownloadAction - probeDownloadStatus - - - - - serialMode - serialProtocol - serialTimeout - serialModemInitString - serialModemHangUpString - serialModemConnectResp - serialModemNoConnectResp - serialDialoutTimeout - serialStatus - serialConnectDestIpAddress - serialConnectType - serialConnectDialString - serialConnectSwitchConnectSeq - serialConnectSwitchDisconnectSeq - serialConnectSwitchResetSeq - serialConnectOwner - serialConnectStatus - netConfigIPAddress - netConfigSubnetMask - netConfigStatus - netDefaultGateway - tokenRingMLStats2DroppedFrames - tokenRingMLStats2CreateTime - tokenRingPStats2DroppedFrames - tokenRingPStats2CreateTime - ringStationControl2DroppedFrames - ringStationControl2CreateTime - sourceRoutingStats2DroppedFrames - sourceRoutingStats2CreateTime - trapDestIndex - trapDestCommunity - trapDestProtocol - trapDestAddress - trapDestOwner - trapDestStatus - - In addition, two corrections were made. The LastCreateTime - Textual Convention had been defined with a base type of - another textual convention, which isn't allowed in SMIv2. The - definition has been modified to use TimeTicks as the base - type. - - Further, the SerialConfigEntry SEQUENCE definition included - sub-typing information that is not allowed in SMIv2. This - information has been deleted. Ranges were added to a number of - objects and textual-conventions to constrain their maximum - (and sometimes minimum) sizes. The addition of these ranges - documents existing practice for these objects. These objects - - - - - are: - ControlString - protocolDirID - protocolDirParameters - addressMapNetworkAddress - nlHostAddress - nlMatrixSDSourceAddress - nlMatrixSDDestAddress - nlMatrixDSSourceAddress - nlMatrixDSDestAddress - nlMatrixTopNSourceAddress - nlMatrixTopNDestAddress - alHostEntry - alMatrixSDEntry - alMatrixDSEntry - alMatrixTopNSourceAddress - alMatrixTopNDestAddress - - Finally, the TimeFilter TC has been updated to encourage agent - implementations that allow a MIB walk to behave well even when - performed by an application that is not aware of the special - TimeFilter semantics." - - REVISION "200207080000Z" -- 08 July, 2002 - DESCRIPTION - "Added new enumerations to support the High-Capacity RMON - MIB as defined in RFC 3273. Also fixed some typos and - added clarifications." - - REVISION "199605270000Z" -- 27 May, 1996 - DESCRIPTION - "Original version. Published as RFC 2021." - ::= { mib-2 16 } - --- { rmon 1 } through { rmon 10 } are defined in RMON and --- the Token Ring RMON MIB [RFC1513] - - protocolDir OBJECT IDENTIFIER ::= { rmon 11 } - protocolDist OBJECT IDENTIFIER ::= { rmon 12 } - addressMap OBJECT IDENTIFIER ::= { rmon 13 } - nlHost OBJECT IDENTIFIER ::= { rmon 14 } - nlMatrix OBJECT IDENTIFIER ::= { rmon 15 } - alHost OBJECT IDENTIFIER ::= { rmon 16 } - alMatrix OBJECT IDENTIFIER ::= { rmon 17 } - usrHistory OBJECT IDENTIFIER ::= { rmon 18 } - probeConfig OBJECT IDENTIFIER ::= { rmon 19 } - rmonConformance OBJECT IDENTIFIER ::= { rmon 20 } - --- Textual Conventions - -ZeroBasedCounter32 ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC describes an object that counts events with the - following semantics: objects of this type will be set to - zero(0) on creation and will thereafter count appropriate - events, wrapping back to zero(0) when the value 2^32 is - reached. - - Provided that an application discovers the new object within - the minimum time to wrap, it can use the initial value as a - delta since it last polled the table of which this object is - part. It is important for a management station to be aware of - this minimum time and the actual time between polls, and to - discard data if the actual time is too long or there is no - defined minimum time. - - Typically, this TC is used in tables where the INDEX space is - constantly changing and/or the TimeFilter mechanism is in use." - SYNTAX Gauge32 - -LastCreateTime ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC describes an object that stores the value of the - sysUpTime object at the last time its entry was created. - - This can be used for polling applications to determine that an - entry has been deleted and re-created between polls, causing - an otherwise undetectable discontinuity in the data. - - If sysUpTime is reset to zero as a result of a re- - initialization of the network management (sub)system, then - the values of all LastCreateTime objects are also reset. - However, after approximately 497 days without a re- - initialization, the sysUpTime object will reach 2^^32-1 and - then increment to zero; in this case, existing values - of TimeStamp objects do not change. This can lead to - ambiguities in the value of TimeStamp objects." - SYNTAX TimeTicks - -TimeFilter ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "To be used for the index to a table. Allows an application - to download only those rows changed since a particular time. - Note that this is not a history mechanism. Only current values - of underlying objects are returned; saved instance values - associated with particular values of sysUpTime are not. - - An entry is considered changed if the value of any object in the - entry changes, if the row is created, or if any object in the - entry is created or deleted. Note that deleted entries cannot - be detected or downloaded. - - A time-filtered conceptual table is created by inserting a - single object of SYNTAX TimeFilter as the first INDEX component - in a copy of an existing basic conceptual table (i.e., any - SEQUENCE without a TimeFilter INDEX component). Thus, for - each conceptual entry 'I' in the basic table, there exists N - conceptual entries in the time-filtered version, indexed N.I, - where 'N' is equal to the value of sysUpTime. - - When an application retrieves conceptual instances from a - time-filtered table, and an INDEX value is provided for the - TimeFilter INDEX component 'N', the agent will only consider - returning basic conceptual entries (e.g., 'fooColumn.N.I') if - any column within the basic conceptual entry has changed since - sysUpTime 'N'. If not, the basic conceptual entry will - be ignored for the particular retrieval operation. - - When sysUpTime is equal to zero, this table shall be empty. - - One conceptual entry exists for each past value of sysUpTime, - except that the whole table is purged should sysUpTime wrap. - - As an entry in a time-filtered table is updated (i.e., one of - the columns in the basic conceptual table is changed), new - conceptual entries are also created in the time-filtered version - (which still shares the now updated object values with all other - instances). The number of unique time-filtered instances that - are created is determined by the value of sysUpTime at which the - basic entry was last updated. One unique instance will exist - for each value of sysUpTime at the last update time for the row. - However, a new TimeFilter index instance is created for each new - sysUpTime value. The TimeFilter index values not associated - with entry updates are called duplicate time-filtered instances. - - After some deployment experience, it has been determined that - a time-filtered table is more efficient if the agent - stops a MIB walk operation by skipping over rows with a - TimeFilter index value higher than the value in the received - GetNext/GetBulk request. That is, instead of incrementing a - TimeFilter index value, the agent will continue to the next - - - - - object or table. As a consequence, GetNext or GetBulk - operations will provide only one pass through a time-filtered - table. - - It is suggested that an agent implement a time-filtered table - in this manner to improve performance and avoid a MIB walk - getting stuck in time-filtered tables. It is, however, still - acceptable for an agent to implement a time-filtered table in - the traditional manner (i.e., every conceptual time-filtered - instance is returned in GetNext and GetBulk PDU responses), and - management applications must be able to deal with such - traditional implementations. - - See the appendix for further discussion of this textual - convention. - - The following example is provided to demonstrate TimeFilter - behavior: - - Consider the following basic conceptual table, basicFooTable. - (Note that the basic version of a time-filtered table may not - actually be defined.) - - basicFooTable: - - basicFooTable ... - INDEX { fooIndex } - - BasicFooEntry { - fooIndex Integer32, - fooCounts Counter32 - } - - For this example, the basicFooTable contains two static - conceptual entries (fooIndex equals '1' and '2'), created at - time zero. It also contains one dynamic conceptual entry - (fooIndex equals '3'), which is created at time '3' and deleted - at time '7'. - - The time-filtered version of the basicFooTable could be defined - as follows: - - FooTable: - - fooTable ... - INDEX { fooTimeMark, fooIndex } - - FooEntry { - fooTimeMark TimeFilter, - fooIndex Integer32, - fooCounts Counter32 - } - Note that entries exist in the time-filtered conceptual table - only if they actually exist in the underlying (basic) table. - - For this example, the fooTable will have three underlying - basic entries (fooIndex == 1, 2, and 3), with the following - activity (for sysUpTime equal 0 to 9): - - - fooEntry.N.1 is created at time '0' and most recently - updated at time '6' to the value '5'. - - fooEntry.N.2 is created at time '0' and most recently - updated at time '8' to the value '9'. - - fooEntry.N.3 is created at time '3', updated at time '5' - to the value '17', and deleted at time '7'. - - The following tables show the values that would be returned for - MIB walk operations with various TimeFilter values, done at - different times. An application issues a retrieval request at - time 'T', with a TimeFilter value, 'N' (typically set to a lower - value, such as the value of sysUpTime at the last polling cycle). - - The following values would be returned in a MIB walk of - fooCounts.N if T equals '0' and N equals '0': - - fooCounts.N.I Value - ========================== - fooCounts.0.1 0 - fooCounts.0.2 0 - - Note that nothing is returned for fooCounts.0.3, since that - entry does not exist at sysUpTime equals '0'. - - The following values would be returned in a full (traditional) MIB - walk of fooCounts.N if T equals '3' and N equals '0': - - fooCounts.N.I Value - ======================= - fooCounts.0.1 0 - fooCounts.0.2 0 - fooCounts.0.3 0 - fooCounts.1.3 0 - fooCounts.2.3 0 - fooCounts.3.3 0 - - - - - Note that there are no instances for T equals 1 or 2 for the - first two values of N, as these entries did not change - since they were created at time '0'. - - Note that the current value for 'fooCounts.N.3' is returned - here, even for values of N less than '3' (when the entry was - created). The agent only considers the current existence of an - entry in the TimeFilter algorithm, not the time when the entry - was created. - - Note that the instances 'fooCounts.0.3', 'fooCounts.1.3', - and 'fooCounts.2.3' are duplicates and can be suppressed by the - agent in a MIB walk. - - The following values would be returned in a full (traditional) - MIB walk of fooCounts.N if T equals '6' and N equals '3': - - fooCounts.N.I Value - ======================= - fooCounts.3.1 5 - fooCounts.3.3 17 - fooCounts.4.1 5 - fooCounts.4.3 17 - fooCounts.5.1 5 - fooCounts.5.3 17 - fooCounts.6.1 5 - - Note that no instances for entry 'fooCounts.N.2' are returned, - since it has not changed since time '3'. - - Note that all instances except 'fooCounts.5.3' and - 'fooCounts.6.1' are duplicates and can be suppressed by the - agent in a MIB walk. - - The following values would be returned in a full (traditional) - MIB walk of fooCounts.N if T equals '9' and N equals '6': - - fooCounts.N.I Value - ======================= - fooCounts.6.1 5 - fooCounts.6.2 9 - fooCounts.7.2 9 - fooCounts.8.2 9 - - Note that no instances for entry 'fooCounts.N.3' are returned, - since it was deleted at time '7'. - - Note that instances 'fooCounts.6.2' and 'fooCounts.7.2' - are duplicates and can be suppressed by the agent in a MIB - walk." - - SYNTAX TimeTicks - -DataSource ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Identifies the source of the data that the associated - function is configured to analyze. This source can be any - interface on this device. - - In order to identify a particular interface, this - object shall identify the instance of the ifIndex - object, defined in [RFC2863], for the desired interface. - - For example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1." - SYNTAX OBJECT IDENTIFIER - --- --- Protocol Directory Group --- --- Lists the inventory of protocols the probe has the capability of --- monitoring and allows the addition, deletion, and configuration of --- entries in this list. - -protocolDirLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time the protocol directory - was last modified, either through insertions or deletions, - or through modifications of the - protocolDirAddressMapConfig, protocolDirHostConfig, or - protocolDirMatrixConfig." - ::= { protocolDir 1 } - -protocolDirTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProtocolDirEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table lists the protocols that this agent has the - capability to decode and count. There is one entry in this - table for each such protocol. These protocols represent - different network-layer, transport-layer, and higher-layer - - - - - protocols. The agent should boot up with this table - preconfigured with those protocols that it knows about and - wishes to monitor. Implementations are strongly encouraged to - support protocols higher than the network layer (at least for - the protocol distribution group), even for implementations - that don't support the application-layer groups." - ::= { protocolDir 2 } - -protocolDirEntry OBJECT-TYPE - SYNTAX ProtocolDirEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the protocolDirTable. - - An example of the indexing of this entry is - protocolDirLocalIndex.8.0.0.0.1.0.0.8.0.2.0.0, which is the - encoding of a length of 8, followed by 8 subids encoding the - protocolDirID of 1.2048, followed by a length of 2 and the - 2 subids encoding zero-valued parameters. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { protocolDirID, protocolDirParameters } - ::= { protocolDirTable 1 } - -ProtocolDirEntry ::= SEQUENCE { - protocolDirID OCTET STRING, - protocolDirParameters OCTET STRING, - protocolDirLocalIndex Integer32, - protocolDirDescr DisplayString, - protocolDirType BITS, - protocolDirAddressMapConfig INTEGER, - protocolDirHostConfig INTEGER, - protocolDirMatrixConfig INTEGER, - protocolDirOwner OwnerString, - protocolDirStatus RowStatus -} - -protocolDirID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (4..128)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A unique identifier for a particular protocol. Standard - identifiers will be defined in such a manner that they - - - - - can often be used as specifications for new protocols - i.e., - a tree-structured assignment mechanism that matches the - protocol encapsulation 'tree' and that has algorithmic - assignment mechanisms for certain subtrees. See RFC 2074 for - more details. - - Despite the algorithmic mechanism, the probe will only place - entries in here for those protocols it chooses to collect. In - other words, it need not populate this table with all - possible ethernet protocol types, nor need it create them on - the fly when it sees them. Whether it does these - things is a matter of product definition (cost/benefit, - usability) and is up to the designer of the product. - - If an entry is written to this table with a protocolDirID that - the agent doesn't understand, either directly or - algorithmically, the SET request will be rejected with an - inconsistentName or badValue (for SNMPv1) error." - ::= { protocolDirEntry 1 } - -protocolDirParameters OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..32)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters for the associated protocolDirID. - See the associated RMON2 Protocol Identifiers document - for a description of the possible parameters. There - will be one octet in this string for each sub-identifier in - the protocolDirID, and the parameters will appear here in the - same order as the associated sub-identifiers appear in the - protocolDirID. - - Every node in the protocolDirID tree has a different, optional - set of parameters defined (that is, the definition of - parameters for a node is optional). The proper parameter - value for each node is included in this string. Note that the - inclusion of a parameter value in this string for each node is - not optional. What is optional is that a node may have no - parameters defined, in which case the parameter field for that - node will be zero." - ::= { protocolDirEntry 2 } - -protocolDirLocalIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - - - "The locally arbitrary but unique identifier associated - with this protocolDir entry. - - The value for each supported protocol must remain constant at - least from one re-initialization of the entity's network - management system to the next re-initialization, except that - if a protocol is deleted and re-created, it must be re-created - with a new value that has not been used since the last - re-initialization. - - The specific value is meaningful only within a given SNMP - entity. A protocolDirLocalIndex must not be re-used until the - next agent restart in the event that the protocol directory - entry is deleted." - ::= { protocolDirEntry 3 } - -protocolDirDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (1..64)) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "A textual description of the protocol encapsulation. - A probe may choose to describe only a subset of the - entire encapsulation (e.g., only the highest layer). - - This object is intended for human consumption only. - - This object may not be modified if the associated - protocolDirStatus object is equal to active(1)." - ::= { protocolDirEntry 4 } - -protocolDirType OBJECT-TYPE - SYNTAX BITS { - extensible(0), - addressRecognitionCapable(1) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object describes 2 attributes of this protocol - directory entry. - - The presence or absence of the 'extensible' bit describes - whether this protocol directory entry can be extended - by the user by creating protocol directory entries that are - children of this protocol. - - An example of an entry that will often allow extensibility is - - - - - 'ip.udp'. The probe may automatically populate some children - of this node, such as 'ip.udp.snmp' and 'ip.udp.dns'. - A probe administrator or user may also populate additional - children via remote SNMP requests that create entries in this - table. When a child node is added for a protocol for which the - probe has no built-in support extending a parent node (for - which the probe does have built-in support), - that child node is not extendable. This is termed 'limited - extensibility'. - - When a child node is added through this extensibility - mechanism, the values of protocolDirLocalIndex and - protocolDirType shall be assigned by the agent. - - The other objects in the entry will be assigned by the - manager who is creating the new entry. - - This object also describes whether this agent can - recognize addresses for this protocol, should it be a - network-level protocol. That is, while a probe may be able - to recognize packets of a particular network-layer protocol - and count them, it takes additional logic to be able to - recognize the addresses in this protocol and to populate - network-layer or application-layer tables with the addresses - in this protocol. If this bit is set, the agent will - recognize network-layer addresses for this protocol and - populate the network- and application-layer host and matrix - tables with these protocols. - - Note that when an entry is created, the agent will supply - values for the bits that match the capabilities of the agent - with respect to this protocol. Note that since row creations - usually exercise the limited extensibility feature, these - bits will usually be set to zero." - ::= { protocolDirEntry 5 } - -protocolDirAddressMapConfig OBJECT-TYPE - SYNTAX INTEGER { - notSupported(1), - supportedOff(2), - supportedOn(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object describes and configures the probe's support for - address mapping for this protocol. When the probe creates - entries in this table for all protocols that it understands, - it will set the entry to notSupported(1) if it doesn't have - the capability to perform address mapping for the protocol or - if this protocol is not a network-layer protocol. When - an entry is created in this table by a management operation as - part of the limited extensibility feature, the probe must set - this value to notSupported(1), because limited extensibility - of the protocolDirTable does not extend to interpreting - addresses of the extended protocols. - - If the value of this object is notSupported(1), the probe - will not perform address mapping for this protocol and - shall not allow this object to be changed to any other value. - If the value of this object is supportedOn(3), the probe - supports address mapping for this protocol and is configured - to perform address mapping for this protocol for all - addressMappingControlEntries and all interfaces. - If the value of this object is supportedOff(2), the probe - supports address mapping for this protocol but is configured - to not perform address mapping for this protocol for any - addressMappingControlEntries and all interfaces. - Whenever this value changes from supportedOn(3) to - supportedOff(2), the probe shall delete all related entries in - the addressMappingTable." - ::= { protocolDirEntry 6 } - -protocolDirHostConfig OBJECT-TYPE - SYNTAX INTEGER { - notSupported(1), - supportedOff(2), - supportedOn(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object describes and configures the probe's support for - the network-layer and application-layer host tables for this - protocol. When the probe creates entries in this table for - all protocols that it understands, it will set the entry to - notSupported(1) if it doesn't have the capability to track the - nlHostTable for this protocol or if the alHostTable is - implemented but doesn't have the capability to track this - protocol. Note that if the alHostTable is implemented, the - probe may only support a protocol if it is supported in both - the nlHostTable and the alHostTable. - - If the associated protocolDirType object has the - addressRecognitionCapable bit set, then this is a network- - layer protocol for which the probe recognizes addresses, and - - - - - thus the probe will populate the nlHostTable and alHostTable - with addresses it discovers for this protocol. - - If the value of this object is notSupported(1), the probe - will not track the nlHostTable or alHostTable for this - protocol and shall not allow this object to be changed to any - other value. If the value of this object is supportedOn(3), - the probe supports tracking of the nlHostTable and alHostTable - for this protocol and is configured to track both tables - for this protocol for all control entries and all interfaces. - If the value of this object is supportedOff(2), the probe - supports tracking of the nlHostTable and alHostTable for this - protocol but is configured to not track these tables - for any control entries or interfaces. - Whenever this value changes from supportedOn(3) to - supportedOff(2), the probe shall delete all related entries in - the nlHostTable and alHostTable. - - Note that since each alHostEntry references 2 protocol - directory entries, one for the network address and one for the - type of the highest protocol recognized, an entry will - only be created in that table if this value is supportedOn(3) - for both protocols." - ::= { protocolDirEntry 7 } - -protocolDirMatrixConfig OBJECT-TYPE - SYNTAX INTEGER { - notSupported(1), - supportedOff(2), - supportedOn(3) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object describes and configures the probe's support for - the network-layer and application-layer matrix tables for this - protocol. When the probe creates entries in this table for - all protocols that it understands, it will set the entry to - notSupported(1) if it doesn't have the capability to track the - nlMatrixTables for this protocol or if the alMatrixTables are - implemented but don't have the capability to track this - protocol. Note that if the alMatrix tables are implemented, - the probe may only support a protocol if it is supported in - both of the nlMatrixTables and both of the - alMatrixTables. - - If the associated protocolDirType object has the - addressRecognitionCapable bit set, then this is a network- - layer protocol for which the probe recognizes addresses, and - thus the probe will populate both of the nlMatrixTables and - both of the alMatrixTables with addresses it discovers for - this protocol. - - If the value of this object is notSupported(1), the probe - will not track either of the nlMatrixTables or the - alMatrixTables for this protocol and shall not allow this - object to be changed to any other value. If the value of this - object is supportedOn(3), the probe supports tracking of both - of the nlMatrixTables and (if implemented) both of the - alMatrixTables for this protocol and is configured to track - these tables for this protocol for all control entries and all - interfaces. If the value of this object is supportedOff(2), - the probe supports tracking of both of the nlMatrixTables and - (if implemented) both of the alMatrixTables for this protocol - but is configured to not track these tables for this - protocol for any control entries or interfaces. - Whenever this value changes from supportedOn(3) to - supportedOff(2), the probe shall delete all related entries in - the nlMatrixTables and the alMatrixTables. - - Note that since each alMatrixEntry references 2 protocol - directory entries, one for the network address and one for the - type of the highest protocol recognized, an entry will - only be created in that table if this value is supportedOn(3) - for both protocols." - ::= { protocolDirEntry 8 } - -protocolDirOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { protocolDirEntry 9 } - -protocolDirStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this protocol directory entry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all associated - entries in the nlHostTable, nlMatrixSDTable, nlMatrixDSTable, - alHostTable, alMatrixSDTable, and alMatrixDSTable shall be - deleted." - ::= { protocolDirEntry 10 } - --- --- Protocol Distribution Group (protocolDist) --- --- Collects the relative amounts of octets and packets for the --- different protocols detected on a network segment. --- protocolDistControlTable, --- protocolDistStatsTable - -protocolDistControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProtocolDistControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Controls the setup of protocol type distribution statistics - tables. - - Implementations are encouraged to add an entry per monitored - interface upon initialization so that a default collection - of protocol statistics is available. - - Rationale: - This table controls collection of very basic statistics - for any or all of the protocols detected on a given interface. - An NMS can use this table to quickly determine bandwidth - allocation utilized by different protocols. - - A media-specific statistics collection could also - be configured (e.g., etherStats, trPStats) to easily obtain - total frame, octet, and droppedEvents for the same - interface." - ::= { protocolDist 1 } - -protocolDistControlEntry OBJECT-TYPE - SYNTAX ProtocolDistControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the protocolDistControlTable. - - An example of the indexing of this entry is - protocolDistControlDroppedFrames.7" - INDEX { protocolDistControlIndex } - ::= { protocolDistControlTable 1 } - -ProtocolDistControlEntry ::= SEQUENCE { - protocolDistControlIndex Integer32, - protocolDistControlDataSource DataSource, - protocolDistControlDroppedFrames Counter32, - protocolDistControlCreateTime LastCreateTime, - protocolDistControlOwner OwnerString, - protocolDistControlStatus RowStatus -} - -protocolDistControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A unique index for this protocolDistControlEntry." - ::= { protocolDistControlEntry 1 } - -protocolDistControlDataSource OBJECT-TYPE - SYNTAX DataSource - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The source of data for the this protocol distribution. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - protocolDistControlStatus object is equal to active(1)." - ::= { protocolDistControlEntry 2 } - -protocolDistControlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the probe - is out of some resources and decides to shed load from this - collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { protocolDistControlEntry 3 } - -protocolDistControlCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { protocolDistControlEntry 4 } - -protocolDistControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { protocolDistControlEntry 5 } - -protocolDistControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this row. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all associated - entries in the protocolDistStatsTable shall be deleted." - ::= { protocolDistControlEntry 6 } - --- per interface protocol distribution statistics table -protocolDistStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF ProtocolDistStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry is made in this table for every protocol in the - protocolDirTable that has been seen in at least one packet. - Counters are updated in this table for every protocol type - that is encountered when parsing a packet, but no counters are - - - - - updated for packets with MAC-layer errors. - - Note that if a protocolDirEntry is deleted, all associated - entries in this table are removed." - ::= { protocolDist 2 } - -protocolDistStatsEntry OBJECT-TYPE - SYNTAX ProtocolDistStatsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the protocolDistStatsTable. - - The index is composed of the protocolDistControlIndex of the - associated protocolDistControlEntry, followed by the - protocolDirLocalIndex of the associated protocol that this - entry represents. In other words, the index identifies the - protocol distribution an entry is a part of and the - particular protocol that it represents. - - An example of the indexing of this entry is - protocolDistStatsPkts.1.18" - INDEX { protocolDistControlIndex, protocolDirLocalIndex } - ::= { protocolDistStatsTable 1 } - -ProtocolDistStatsEntry ::= SEQUENCE { - protocolDistStatsPkts ZeroBasedCounter32, - protocolDistStatsOctets ZeroBasedCounter32 -} - -protocolDistStatsPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets of this protocol type received - without errors. Note that this is the number of - link-layer packets, so if a single network-layer packet - is fragmented into several link-layer frames, this counter - is incremented several times." - ::= { protocolDistStatsEntry 1 } - -protocolDistStatsOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets in packets of this protocol type - - - - - received since it was added to the protocolDistStatsTable - (excluding framing bits, but including FCS octets), except for - those octets in packets that contained errors. - - Note that this doesn't count just those octets in the - particular protocol frames but includes the entire packet - that contained the protocol." - ::= { protocolDistStatsEntry 2 } - --- --- Address Map Group (addressMap) --- --- Lists MAC address to network address bindings discovered by the --- probe and what interface they were last seen on. --- addressMapControlTable --- addressMapTable - -addressMapInserts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an address mapping entry has been - inserted into the addressMapTable. If an entry is inserted, - then deleted, and then inserted, this counter will be - incremented by 2. - - Note that the table size can be determined by subtracting - addressMapDeletes from addressMapInserts." - ::= { addressMap 1 } - -addressMapDeletes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an address mapping entry has been - deleted from the addressMapTable (for any reason). If - an entry is deleted, then inserted, and then deleted, this - counter will be incremented by 2. - - Note that the table size can be determined by subtracting - addressMapDeletes from addressMapInserts." - ::= { addressMap 2 } - -addressMapMaxDesiredEntries OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-write - - - - - STATUS current - DESCRIPTION - "The maximum number of entries that are desired in the - addressMapTable. The probe will not create more than - this number of entries in the table but may choose to create - fewer entries in this table for any reason, including the lack - of resources. - - If this object is set to a value less than the current number - of entries, enough entries are chosen in an - implementation-dependent manner and deleted so that the number - of entries in the table equals the value of this object. - - If this value is set to -1, the probe may create any number - of entries in this table. - - This object may be used to control how resources are allocated - on the probe for the various RMON functions." - ::= { addressMap 3 } - -addressMapControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF AddressMapControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table to control the collection of mappings from network - layer address to physical address to interface. - - Note that this is not like the typical RMON - controlTable and dataTable in which each entry creates - its own data table. Each entry in this table enables the - discovery of addresses on a new interface and the placement - of address mappings into the central addressMapTable. - - Implementations are encouraged to add an entry per monitored - interface upon initialization so that a default collection - of address mappings is available." - ::= { addressMap 4 } - -addressMapControlEntry OBJECT-TYPE - SYNTAX AddressMapControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the addressMapControlTable. - - An example of the indexing of this entry is - addressMapControlDroppedFrames.1" - INDEX { addressMapControlIndex } - ::= { addressMapControlTable 1 } - -AddressMapControlEntry ::= SEQUENCE { - addressMapControlIndex Integer32, - addressMapControlDataSource DataSource, - addressMapControlDroppedFrames Counter32, - addressMapControlOwner OwnerString, - addressMapControlStatus RowStatus -} - -addressMapControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A unique index for this entry in the addressMapControlTable." - ::= { addressMapControlEntry 1 } - -addressMapControlDataSource OBJECT-TYPE - SYNTAX DataSource - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The source of data for this addressMapControlEntry." - ::= { addressMapControlEntry 2 } - -addressMapControlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the probe - is out of some resources and decides to shed load from this - collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { addressMapControlEntry 3 } - -addressMapControlOwner OBJECT-TYPE - SYNTAX OwnerString - - - - - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { addressMapControlEntry 4 } - -addressMapControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this addressMap control entry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all associated - entries in the addressMapTable shall be deleted." - ::= { addressMapControlEntry 5 } - -addressMapTable OBJECT-TYPE - SYNTAX SEQUENCE OF AddressMapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of mappings from network layer address to physical - address to interface. - - The probe will add entries to this table based on the source - MAC and network addresses seen in packets without MAC-level - errors. The probe will populate this table for all protocols - in the protocol directory table whose value of - protocolDirAddressMapConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirAddressMapConfig value of supportedOff(2)." - ::= { addressMap 5 } - -addressMapEntry OBJECT-TYPE - SYNTAX AddressMapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the addressMapTable. - - The protocolDirLocalIndex in the index identifies the network - layer protocol of the addressMapNetworkAddress. - - An example of the indexing of this entry is - addressMapSource.783495.18.4.128.2.6.6.11.1.3.6.1.2.1.2.2.1.1.1. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { addressMapTimeMark, protocolDirLocalIndex, - addressMapNetworkAddress, addressMapSource } - ::= { addressMapTable 1 } - -AddressMapEntry ::= SEQUENCE { - addressMapTimeMark TimeFilter, - addressMapNetworkAddress OCTET STRING, - addressMapSource OBJECT IDENTIFIER, - addressMapPhysicalAddress OCTET STRING, - addressMapLastChange TimeStamp -} - -addressMapTimeMark OBJECT-TYPE - SYNTAX TimeFilter - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { addressMapEntry 1 } - -addressMapNetworkAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The network address for this relation. - - This is represented as an octet string with - specific semantics and length as identified - by the protocolDirLocalIndex component of the - index. - - For example, if the protocolDirLocalIndex indicates an - encapsulation of ip, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { addressMapEntry 2 } - -addressMapSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - - - - - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The interface or port on which the associated network - address was most recently seen. - - If this address mapping was discovered on an interface, this - object shall identify the instance of the ifIndex - object, defined in [RFC2863], for the desired interface. - For example, if an entry were to receive data from - interface #1, this object would be set to ifIndex.1. - - If this address mapping was discovered on a port, this - object shall identify the instance of the rptrGroupPortIndex - object, defined in [RFC2108], for the desired port. - For example, if an entry were to receive data from - group #1, port #1, this object would be set to - rptrGroupPortIndex.1.1. - - Note that while the dataSource associated with this entry - may only point to index objects, this object may at times - point to repeater port objects. This situation occurs when - the dataSource points to an interface that is a locally - attached repeater and the agent has additional information - about the source port of traffic seen on that repeater." - ::= { addressMapEntry 3 } - -addressMapPhysicalAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The last source physical address on which the associated - network address was seen. If the protocol of the associated - network address was encapsulated inside of a network-level or - higher protocol, this will be the address of the next-lower - protocol with the addressRecognitionCapable bit enabled and - will be formatted as specified for that protocol." - ::= { addressMapEntry 4 } - -addressMapLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this entry was last - created or the values of the physical address changed. - - This can be used to help detect duplicate address problems, in - which case this object will be updated frequently." - ::= { addressMapEntry 5 } - --- --- Network Layer Host Group --- --- Counts the amount of traffic sent from and to each network address --- discovered by the probe. --- Note that while the hlHostControlTable also has objects that --- control an optional alHostTable, implementation of the alHostTable is --- not required to fully implement this group. - -hlHostControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HlHostControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of higher-layer (i.e., non-MAC) host table control - entries. - - These entries will enable the collection of the network- and - application-level host tables indexed by network addresses. - Both the network- and application-level host tables are - controlled by this table so that they will both be created - and deleted at the same time, further increasing the ease with - which they can be implemented as a single datastore. (Note that - if an implementation stores application-layer host records in - memory, it can derive network-layer host records from them.) - - Entries in the nlHostTable will be created on behalf of each - entry in this table. Additionally, if this probe implements - the alHostTable, entries in the alHostTable will be created on - behalf of each entry in this table. - - Implementations are encouraged to add an entry per monitored - interface upon initialization so that a default collection - of host statistics is available." - ::= { nlHost 1 } - -hlHostControlEntry OBJECT-TYPE - SYNTAX HlHostControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the hlHostControlTable. - - An example of the indexing of this entry is - - - - - hlHostControlNlDroppedFrames.1" - INDEX { hlHostControlIndex } - ::= { hlHostControlTable 1 } - -HlHostControlEntry ::= SEQUENCE { - hlHostControlIndex Integer32, - hlHostControlDataSource DataSource, - hlHostControlNlDroppedFrames Counter32, - hlHostControlNlInserts Counter32, - hlHostControlNlDeletes Counter32, - hlHostControlNlMaxDesiredEntries Integer32, - hlHostControlAlDroppedFrames Counter32, - hlHostControlAlInserts Counter32, - hlHostControlAlDeletes Counter32, - hlHostControlAlMaxDesiredEntries Integer32, - hlHostControlOwner OwnerString, - hlHostControlStatus RowStatus -} - -hlHostControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - hlHostControlTable. Each such entry defines - a function that discovers hosts on a particular - interface and places statistics about them in the - nlHostTable, and optionally in the alHostTable, on - behalf of this hlHostControlEntry." - ::= { hlHostControlEntry 1 } - -hlHostControlDataSource OBJECT-TYPE - SYNTAX DataSource - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The source of data for the associated host tables. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - hlHostControlStatus object is equal to active(1)." - ::= { hlHostControlEntry 2 } - -hlHostControlNlDroppedFrames OBJECT-TYPE - - - - - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for the associated - nlHost entries for whatever reason. Most often, this event - occurs when the probe is out of some resources and decides to - shed load from this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that if the nlHostTable is inactive because no protocols - are enabled in the protocol directory, this value should be 0. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { hlHostControlEntry 3 } - -hlHostControlNlInserts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an nlHost entry has been - inserted into the nlHost table. If an entry is inserted, then - deleted, and then inserted, this counter will be incremented - by 2. - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlHostControlNlDeletes from hlHostControlNlInserts." - ::= { hlHostControlEntry 4 } - -hlHostControlNlDeletes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an nlHost entry has been - - - - - deleted from the nlHost table (for any reason). If an entry - is deleted, then inserted, and then deleted, this counter will - be incremented by 2. - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlHostControlNlDeletes from hlHostControlNlInserts." - ::= { hlHostControlEntry 5 } - -hlHostControlNlMaxDesiredEntries OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of entries that are desired in the - nlHostTable on behalf of this control entry. The probe will - not create more than this number of associated entries in the - table but may choose to create fewer entries in this table - for any reason, including the lack of resources. - - If this object is set to a value less than the current number - of entries, enough entries are chosen in an - implementation-dependent manner and deleted so that the number - of entries in the table equals the value of this object. - - If this value is set to -1, the probe may create any number - of entries in this table. If the associated - hlHostControlStatus object is equal to 'active', this - object may not be modified. - - This object may be used to control how resources are allocated - on the probe for the various RMON functions." - ::= { hlHostControlEntry 6 } - -hlHostControlAlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for the associated - - - - - alHost entries for whatever reason. Most often, this event - occurs when the probe is out of some resources and decides to - shed load from this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that if the alHostTable is not implemented or is inactive - because no protocols are enabled in the protocol directory, - this value should be 0. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { hlHostControlEntry 7 } - -hlHostControlAlInserts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an alHost entry has been - inserted into the alHost table. If an entry is inserted, then - deleted, and then inserted, this counter will be incremented - by 2. - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlHostControlAlDeletes from hlHostControlAlInserts." - ::= { hlHostControlEntry 8 } - -hlHostControlAlDeletes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an alHost entry has been - deleted from the alHost table (for any reason). If an entry - is deleted, then inserted, and then deleted, this counter will - be incremented by 2. - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - - - - - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlHostControlAlDeletes from hlHostControlAlInserts." - ::= { hlHostControlEntry 9 } - -hlHostControlAlMaxDesiredEntries OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of entries that are desired in the alHost - table on behalf of this control entry. The probe will not - create more than this number of associated entries in the - table but may choose to create fewer entries in this table - for any reason, including the lack of resources. - - If this object is set to a value less than the current number - of entries, enough entries are chosen in an - implementation-dependent manner and deleted so that the number - of entries in the table equals the value of this object. - - If this value is set to -1, the probe may create any number - of entries in this table. If the associated - hlHostControlStatus object is equal to 'active', this - object may not be modified. - - This object may be used to control how resources are allocated - on the probe for the various RMON functions." - ::= { hlHostControlEntry 10 } - -hlHostControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { hlHostControlEntry 11 } - -hlHostControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - - - - - "The status of this hlHostControlEntry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all associated - entries in the nlHostTable and alHostTable shall be deleted." - ::= { hlHostControlEntry 12 } - -nlHostTable OBJECT-TYPE - SYNTAX SEQUENCE OF NlHostEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics for a particular network layer - address that has been discovered on an interface of this - device. - - The probe will populate this table for all network layer - protocols in the protocol directory table whose value of - protocolDirHostConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirHostConfig value of supportedOff(2). - - The probe will add to this table all addresses seen - as the source or destination address in all packets with no - MAC errors, and will increment octet and packet counts in the - table for all packets with no MAC errors." -::= { nlHost 2 } - -nlHostEntry OBJECT-TYPE - SYNTAX NlHostEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the nlHostTable. - - The hlHostControlIndex value in the index identifies the - hlHostControlEntry on whose behalf this entry was created. - The protocolDirLocalIndex value in the index identifies the - network layer protocol of the nlHostAddress. - - An example of the indexing of this entry is - nlHostOutPkts.1.783495.18.4.128.2.6.6. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - - - - - care to avoid such combinations." - INDEX { hlHostControlIndex, nlHostTimeMark, - protocolDirLocalIndex, nlHostAddress } - ::= { nlHostTable 1 } - -NlHostEntry ::= SEQUENCE { - nlHostTimeMark TimeFilter, - nlHostAddress OCTET STRING, - nlHostInPkts ZeroBasedCounter32, - nlHostOutPkts ZeroBasedCounter32, - nlHostInOctets ZeroBasedCounter32, - nlHostOutOctets ZeroBasedCounter32, - nlHostOutMacNonUnicastPkts ZeroBasedCounter32, - nlHostCreateTime LastCreateTime -} - -nlHostTimeMark OBJECT-TYPE - SYNTAX TimeFilter - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { nlHostEntry 1 } - -nlHostAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The network address for this nlHostEntry. - - This is represented as an octet string with - specific semantics and length as identified - by the protocolDirLocalIndex component of the index. - - For example, if the protocolDirLocalIndex indicates an - encapsulation of IP, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlHostEntry 2 } - -nlHostInPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets without errors transmitted to - - - - - this address since it was added to the nlHostTable. Note that - this is the number of link-layer packets, so if a single - network-layer packet is fragmented into several link-layer - frames, this counter is incremented several times." - ::= { nlHostEntry 3 } - -nlHostOutPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets without errors transmitted by - this address since it was added to the nlHostTable. Note that - this is the number of link-layer packets, so if a single - network-layer packet is fragmented into several link-layer - frames, this counter is incremented several times." - ::= { nlHostEntry 4 } - -nlHostInOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted to this address - since it was added to the nlHostTable (excluding - framing bits, but including FCS octets), excluding - octets in packets that contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { nlHostEntry 5 } - -nlHostOutOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted by this address - since it was added to the nlHostTable (excluding - framing bits, but including FCS octets), excluding - octets in packets that contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { nlHostEntry 6 } - -nlHostOutMacNonUnicastPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets without errors transmitted by this - address that were directed to any MAC broadcast addresses - or to any MAC multicast addresses since this host was - added to the nlHostTable. Note that this is the number of - link-layer packets, so if a single network-layer packet is - fragmented into several link-layer frames, this counter is - incremented several times." - ::= { nlHostEntry 7 } - -nlHostCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this entry was last activated. - This can be used by the management station to ensure that the - entry has not been deleted and recreated between polls." - ::= { nlHostEntry 8 } - --- --- Network Layer Matrix Group --- --- Counts the amount of traffic sent between each pair of network --- addresses discovered by the probe. --- Note that while the hlMatrixControlTable also has objects that --- control optional alMatrixTables, implementation of the --- alMatrixTables is not required to fully implement this group. - -hlMatrixControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF HlMatrixControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of higher-layer (i.e., non-MAC) matrix control entries. - - These entries will enable the collection of the network- and - application-level matrix tables containing conversation - statistics indexed by pairs of network addresses. - Both the network- and application-level matrix tables are - controlled by this table so that they will both be created - and deleted at the same time, further increasing the ease with - which they can be implemented as a single datastore. (Note that - if an implementation stores application-layer matrix records - - - - - in memory, it can derive network-layer matrix records from - them.) - - Entries in the nlMatrixSDTable and nlMatrixDSTable will be - created on behalf of each entry in this table. Additionally, - if this probe implements the alMatrix tables, entries in the - alMatrix tables will be created on behalf of each entry in - this table." - ::= { nlMatrix 1 } - -hlMatrixControlEntry OBJECT-TYPE - SYNTAX HlMatrixControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the hlMatrixControlTable. - - An example of indexing of this entry is - hlMatrixControlNlDroppedFrames.1" - INDEX { hlMatrixControlIndex } - ::= { hlMatrixControlTable 1 } - -HlMatrixControlEntry ::= SEQUENCE { - hlMatrixControlIndex Integer32, - hlMatrixControlDataSource DataSource, - hlMatrixControlNlDroppedFrames Counter32, - hlMatrixControlNlInserts Counter32, - hlMatrixControlNlDeletes Counter32, - hlMatrixControlNlMaxDesiredEntries Integer32, - hlMatrixControlAlDroppedFrames Counter32, - hlMatrixControlAlInserts Counter32, - hlMatrixControlAlDeletes Counter32, - hlMatrixControlAlMaxDesiredEntries Integer32, - hlMatrixControlOwner OwnerString, - hlMatrixControlStatus RowStatus -} - -hlMatrixControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - hlMatrixControlTable. Each such entry defines - a function that discovers conversations on a particular - interface and places statistics about them in the - nlMatrixSDTable and the nlMatrixDSTable, and optionally the - alMatrixSDTable and alMatrixDSTable, on behalf of this - - - - - hlMatrixControlEntry." - ::= { hlMatrixControlEntry 1 } - -hlMatrixControlDataSource OBJECT-TYPE - SYNTAX DataSource - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The source of the data for the associated matrix tables. - - The statistics in this group reflect all packets - on the local network segment attached to the - identified interface. - - This object may not be modified if the associated - hlMatrixControlStatus object is equal to active(1)." - ::= { hlMatrixControlEntry 2 } - -hlMatrixControlNlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the probe - is out of some resources and decides to shed load from this - collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that if the nlMatrixTables are inactive because no - protocols are enabled in the protocol directory, this value - should be 0. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { hlMatrixControlEntry 3 } - -hlMatrixControlNlInserts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an nlMatrix entry has been - inserted into the nlMatrix tables. If an entry is inserted, - then deleted, and then inserted, this counter will be - incremented by 2. The addition of a conversation into both - the nlMatrixSDTable and nlMatrixDSTable shall be counted as - two insertions (even though every addition into one table must - be accompanied by an insertion into the other). - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the sum of then nlMatrixSDTable and nlMatrixDSTable - sizes can be determined by subtracting - hlMatrixControlNlDeletes from hlMatrixControlNlInserts." - ::= { hlMatrixControlEntry 4 } - -hlMatrixControlNlDeletes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an nlMatrix entry has been - deleted from the nlMatrix tables (for any reason). If an - entry is deleted, then inserted, and then deleted, this - counter will be incremented by 2. The deletion of a - conversation from both the nlMatrixSDTable and nlMatrixDSTable - shall be counted as two deletions (even though every deletion - from one table must be accompanied by a deletion from the - other). - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlMatrixControlNlDeletes from hlMatrixControlNlInserts." - ::= { hlMatrixControlEntry 5 } - -hlMatrixControlNlMaxDesiredEntries OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - - - - - "The maximum number of entries that are desired in the - nlMatrix tables on behalf of this control entry. The probe - will not create more than this number of associated entries in - the table but may choose to create fewer entries in this - table for any reason, including the lack of resources. - - If this object is set to a value less than the current number - of entries, enough entries are chosen in an - implementation-dependent manner and deleted so that the number - of entries in the table equals the value of this object. - - If this value is set to -1, the probe may create any number - of entries in this table. If the associated - hlMatrixControlStatus object is equal to 'active', this - object may not be modified. - - This object may be used to control how resources are allocated - on the probe for the various RMON functions." - ::= { hlMatrixControlEntry 6 } - -hlMatrixControlAlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the probe - is out of some resources and decides to shed load from this - collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that if the alMatrixTables are not implemented or are - inactive because no protocols are enabled in the protocol - directory, this value should be 0. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { hlMatrixControlEntry 7 } - -hlMatrixControlAlInserts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - - - "The number of times an alMatrix entry has been - inserted into the alMatrix tables. If an entry is inserted, - then deleted, and then inserted, this counter will be - incremented by 2. The addition of a conversation into both - the alMatrixSDTable and alMatrixDSTable shall be counted as - two insertions (even though every addition into one table must - be accompanied by an insertion into the other). - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlMatrixControlAlDeletes from hlMatrixControlAlInserts." - ::= { hlMatrixControlEntry 8 } - -hlMatrixControlAlDeletes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times an alMatrix entry has been - deleted from the alMatrix tables. If an entry is deleted, - then inserted, and then deleted, this counter will be - incremented by 2. The deletion of a conversation from both - the alMatrixSDTable and alMatrixDSTable shall be counted as - two deletions (even though every deletion from one table must - be accompanied by a deletion from the other). - - To allow for efficient implementation strategies, agents may - delay updating this object for short periods of time. For - example, an implementation strategy may allow internal - data structures to differ from those visible via SNMP for - short periods of time. This counter may reflect the internal - data structures for those short periods of time. - - Note that the table size can be determined by subtracting - hlMatrixControlAlDeletes from hlMatrixControlAlInserts." - ::= { hlMatrixControlEntry 9 } - -hlMatrixControlAlMaxDesiredEntries OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - - - - - "The maximum number of entries that are desired in the - alMatrix tables on behalf of this control entry. The probe - will not create more than this number of associated entries in - the table but may choose to create fewer entries in this - table for any reason, including the lack of resources. - - If this object is set to a value less than the current number - of entries, enough entries are chosen in an - implementation-dependent manner and deleted so that the number - of entries in the table equals the value of this object. - - If this value is set to -1, the probe may create any number - of entries in this table. If the associated - hlMatrixControlStatus object is equal to 'active', this - object may not be modified. - - This object may be used to control how resources are allocated - on the probe for the various RMON functions." - ::= { hlMatrixControlEntry 10 } - -hlMatrixControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { hlMatrixControlEntry 11 } - -hlMatrixControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this hlMatrixControlEntry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all - associated entries in the nlMatrixSDTable, - nlMatrixDSTable, alMatrixSDTable, and alMatrixDSTable - shall be deleted by the agent." - ::= { hlMatrixControlEntry 12 } - -nlMatrixSDTable OBJECT-TYPE - SYNTAX SEQUENCE OF NlMatrixSDEntry - MAX-ACCESS not-accessible - - - - - STATUS current - DESCRIPTION - "A list of traffic matrix entries that collect statistics for - conversations between two network-level addresses. This table - is indexed first by the source address and then by the - destination address to make it convenient to collect all - conversations from a particular address. - - The probe will populate this table for all network layer - protocols in the protocol directory table whose value of - protocolDirMatrixConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirMatrixConfig value of supportedOff(2). - - The probe will add to this table all pairs of addresses - seen in all packets with no MAC errors and will increment - octet and packet counts in the table for all packets with no - MAC errors. - - Further, this table will only contain entries that have a - corresponding entry in the nlMatrixDSTable with the same - source address and destination address." - ::= { nlMatrix 2 } - -nlMatrixSDEntry OBJECT-TYPE - SYNTAX NlMatrixSDEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the nlMatrixSDTable. - - The hlMatrixControlIndex value in the index identifies the - hlMatrixControlEntry on whose behalf this entry was created. - The protocolDirLocalIndex value in the index identifies the - network-layer protocol of the nlMatrixSDSourceAddress and - nlMatrixSDDestAddress. - - An example of the indexing of this table is - nlMatrixSDPkts.1.783495.18.4.128.2.6.6.4.128.2.6.7. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { hlMatrixControlIndex, nlMatrixSDTimeMark, - protocolDirLocalIndex, - nlMatrixSDSourceAddress, nlMatrixSDDestAddress } - ::= { nlMatrixSDTable 1 } - - -NlMatrixSDEntry ::= SEQUENCE { - nlMatrixSDTimeMark TimeFilter, - nlMatrixSDSourceAddress OCTET STRING, - nlMatrixSDDestAddress OCTET STRING, - nlMatrixSDPkts ZeroBasedCounter32, - nlMatrixSDOctets ZeroBasedCounter32, - nlMatrixSDCreateTime LastCreateTime -} - -nlMatrixSDTimeMark OBJECT-TYPE - SYNTAX TimeFilter - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { nlMatrixSDEntry 1 } - -nlMatrixSDSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The network source address for this nlMatrixSDEntry. - - This is represented as an octet string with - specific semantics and length as identified - by the protocolDirLocalIndex component of the index. - - For example, if the protocolDirLocalIndex indicates an - encapsulation of IP, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlMatrixSDEntry 2 } - -nlMatrixSDDestAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The network destination address for this - nlMatrixSDEntry. - - This is represented as an octet string with - specific semantics and length as identified - by the protocolDirLocalIndex component of the index. - - For example, if the protocolDirLocalIndex indicates an - - - - - encapsulation of IP, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlMatrixSDEntry 3 } - -nlMatrixSDPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets without errors transmitted from the - source address to the destination address since this entry was - added to the nlMatrixSDTable. Note that this is the number of - link-layer packets, so if a single network-layer packet is - fragmented into several link-layer frames, this counter is - incremented several times." - ::= { nlMatrixSDEntry 4 } - -nlMatrixSDOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted from the source address to - the destination address since this entry was added to the - nlMatrixSDTable (excluding framing bits, but - including FCS octets), excluding octets in packets that - contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { nlMatrixSDEntry 5 } - -nlMatrixSDCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this entry was last activated. - This can be used by the management station to ensure that the - entry has not been deleted and recreated between polls." - ::= { nlMatrixSDEntry 6 } --- Traffic matrix tables from destination to source - -nlMatrixDSTable OBJECT-TYPE - - - - - SYNTAX SEQUENCE OF NlMatrixDSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of traffic matrix entries that collect statistics for - conversations between two network-level addresses. This table - is indexed first by the destination address and then by the - source address to make it convenient to collect all - conversations to a particular address. - - The probe will populate this table for all network layer - protocols in the protocol directory table whose value of - protocolDirMatrixConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirMatrixConfig value of supportedOff(2). - - The probe will add to this table all pairs of addresses - seen in all packets with no MAC errors and will increment - octet and packet counts in the table for all packets with no - MAC errors. - - Further, this table will only contain entries that have a - corresponding entry in the nlMatrixSDTable with the same - source address and destination address." - ::= { nlMatrix 3 } - -nlMatrixDSEntry OBJECT-TYPE - SYNTAX NlMatrixDSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the nlMatrixDSTable. - - The hlMatrixControlIndex value in the index identifies the - hlMatrixControlEntry on whose behalf this entry was created. - The protocolDirLocalIndex value in the index identifies the - network-layer protocol of the nlMatrixDSSourceAddress and - nlMatrixDSDestAddress. - - An example of the indexing of this table is - nlMatrixDSPkts.1.783495.18.4.128.2.6.7.4.128.2.6.6. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { hlMatrixControlIndex, nlMatrixDSTimeMark, - protocolDirLocalIndex, - nlMatrixDSDestAddress, nlMatrixDSSourceAddress } - ::= { nlMatrixDSTable 1 } - -NlMatrixDSEntry ::= SEQUENCE { - nlMatrixDSTimeMark TimeFilter, - nlMatrixDSSourceAddress OCTET STRING, - nlMatrixDSDestAddress OCTET STRING, - nlMatrixDSPkts ZeroBasedCounter32, - nlMatrixDSOctets ZeroBasedCounter32, - nlMatrixDSCreateTime LastCreateTime -} - -nlMatrixDSTimeMark OBJECT-TYPE - SYNTAX TimeFilter - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { nlMatrixDSEntry 1 } - -nlMatrixDSSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The network source address for this nlMatrixDSEntry. - - This is represented as an octet string with - specific semantics and length as identified - by the protocolDirLocalIndex component of the index. - - For example, if the protocolDirLocalIndex indicates an - encapsulation of IP, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlMatrixDSEntry 2 } - -nlMatrixDSDestAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The network destination address for this - nlMatrixDSEntry. - - This is represented as an octet string with - specific semantics and length as identified - - - - - by the protocolDirLocalIndex component of the index. - - For example, if the protocolDirLocalIndex indicates an - encapsulation of IP, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlMatrixDSEntry 3 } - -nlMatrixDSPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets without errors transmitted from the - source address to the destination address since this entry was - added to the nlMatrixDSTable. Note that this is the number of - link-layer packets, so if a single network-layer packet is - fragmented into several link-layer frames, this counter is - incremented several times." - ::= { nlMatrixDSEntry 4 } - -nlMatrixDSOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted from the source address - to the destination address since this entry was added to the - nlMatrixDSTable (excluding framing bits, but - including FCS octets), excluding octets in packets that - contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { nlMatrixDSEntry 5 } - -nlMatrixDSCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this entry was last activated. - This can be used by the management station to ensure that the - entry has not been deleted and recreated between polls." - ::= { nlMatrixDSEntry 6 } - -nlMatrixTopNControlTable OBJECT-TYPE - - - - - SYNTAX SEQUENCE OF NlMatrixTopNControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters that control the creation of a - report of the top N matrix entries according to - a selected metric." - ::= { nlMatrix 4 } - -nlMatrixTopNControlEntry OBJECT-TYPE - SYNTAX NlMatrixTopNControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the nlMatrixTopNControlTable. - - An example of the indexing of this table is - nlMatrixTopNControlDuration.3" - INDEX { nlMatrixTopNControlIndex } - ::= { nlMatrixTopNControlTable 1 } - -NlMatrixTopNControlEntry ::= SEQUENCE { - nlMatrixTopNControlIndex Integer32, - nlMatrixTopNControlMatrixIndex Integer32, - nlMatrixTopNControlRateBase INTEGER, - nlMatrixTopNControlTimeRemaining Integer32, - nlMatrixTopNControlGeneratedReports Counter32, - nlMatrixTopNControlDuration Integer32, - nlMatrixTopNControlRequestedSize Integer32, - nlMatrixTopNControlGrantedSize Integer32, - nlMatrixTopNControlStartTime TimeStamp, - nlMatrixTopNControlOwner OwnerString, - nlMatrixTopNControlStatus RowStatus -} - -nlMatrixTopNControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the nlMatrixTopNControlTable. Each such - entry defines one topN report prepared for - one interface." - ::= { nlMatrixTopNControlEntry 1 } - -nlMatrixTopNControlMatrixIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The nlMatrix[SD/DS] table for which a topN report will be - prepared on behalf of this entry. The nlMatrix[SD/DS] table - is identified by the value of the hlMatrixControlIndex - for that table - that value is used here to identify the - particular table. - - This object may not be modified if the associated - nlMatrixTopNControlStatus object is equal to active(1)." - ::= { nlMatrixTopNControlEntry 2 } - -nlMatrixTopNControlRateBase OBJECT-TYPE - SYNTAX INTEGER { - nlMatrixTopNPkts(1), - nlMatrixTopNOctets(2), - nlMatrixTopNHighCapacityPkts(3), - nlMatrixTopNHighCapacityOctets(4) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The variable for each nlMatrix[SD/DS] entry that the - nlMatrixTopNEntries are sorted by, as well as a control - for the table that the results will be reported in. - - This object may not be modified if the associated - nlMatrixTopNControlStatus object is equal to active(1). - - If this value is less than or equal to 2, when the report - is prepared, entries are created in the nlMatrixTopNTable - associated with this object. - If this value is greater than or equal to 3, when the report - is prepared, entries are created in the - nlMatrixTopNHighCapacityTable associated with this object." - ::= { nlMatrixTopNControlEntry 3 } - -nlMatrixTopNControlTimeRemaining OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The number of seconds left in the report currently - being collected. When this object is modified by - the management station, a new collection is started, - possibly aborting a currently running report. The - new value is used as the requested duration of this - - - - - report and is immediately loaded into the associated - nlMatrixTopNControlDuration object. - - When the report finishes, the probe will automatically - start another collection with the same initial value - of nlMatrixTopNControlTimeRemaining. Thus, the management - station may simply read the resulting reports repeatedly, - checking the startTime and duration each time to ensure that a - report was not missed or that the report parameters were not - changed. - - While the value of this object is non-zero, it decrements - by one per second until it reaches zero. At the time - that this object decrements to zero, the report is made - accessible in the nlMatrixTopNTable, overwriting any report - that may be there. - - When this object is modified by the management station, any - associated entries in the nlMatrixTopNTable shall be deleted. - - (Note that this is a different algorithm than the one used - in the hostTopNTable)." - DEFVAL { 1800 } - ::= { nlMatrixTopNControlEntry 4 } - -nlMatrixTopNControlGeneratedReports OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of reports that have been generated by this entry." - ::= { nlMatrixTopNControlEntry 5 } - -nlMatrixTopNControlDuration OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of seconds that this report has collected - during the last sampling interval. - - When the associated nlMatrixTopNControlTimeRemaining object is - set, this object shall be set by the probe to the - same value and shall not be modified until the next - time the nlMatrixTopNControlTimeRemaining is set. - - This value shall be zero if no reports have been - requested for this nlMatrixTopNControlEntry." - ::= { nlMatrixTopNControlEntry 6 } - -nlMatrixTopNControlRequestedSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of matrix entries requested for this report. - - When this object is created or modified, the probe - should set nlMatrixTopNControlGrantedSize as closely to this - object as possible for the particular probe - implementation and available resources." - DEFVAL { 150 } - ::= { nlMatrixTopNControlEntry 7 } - -nlMatrixTopNControlGrantedSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of matrix entries in this report. - - When the associated nlMatrixTopNControlRequestedSize object is - created or modified, the probe should set this - object as closely to the requested value as - possible for the particular implementation and - available resources. The probe must not lower this - value except as a side-effect of a set to the associated - nlMatrixTopNControlRequestedSize object. - - If the value of nlMatrixTopNControlRateBase is equal to - nlMatrixTopNPkts, when the next topN report is generated, - matrix entries with the highest value of nlMatrixTopNPktRate - shall be placed in this table in decreasing order of this rate - until there is no more room or until there are no more - matrix entries. - - If the value of nlMatrixTopNControlRateBase is equal to - nlMatrixTopNOctets, when the next topN report is generated, - matrix entries with the highest value of nlMatrixTopNOctetRate - shall be placed in this table in decreasing order of this rate - until there is no more room or until there are no more - matrix entries. - - It is an implementation-specific matter how entries with the - same value of nlMatrixTopNPktRate or nlMatrixTopNOctetRate are - sorted. It is also an implementation-specific matter as to - - - - - whether zero-valued entries are available." - ::= { nlMatrixTopNControlEntry 8 } - -nlMatrixTopNControlStartTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this topN report was - last started. In other words, this is the time that - the associated nlMatrixTopNControlTimeRemaining object was - modified to start the requested report or the time - the report was last automatically (re)started. - - This object may be used by the management station to - determine whether a report was missed." - ::= { nlMatrixTopNControlEntry 9 } - -nlMatrixTopNControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { nlMatrixTopNControlEntry 10 } - -nlMatrixTopNControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this nlMatrixTopNControlEntry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all - associated entries in the nlMatrixTopNTable shall be deleted - by the agent." - ::= { nlMatrixTopNControlEntry 11 } - -nlMatrixTopNTable OBJECT-TYPE - SYNTAX SEQUENCE OF NlMatrixTopNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of statistics for those network-layer matrix entries - - - - - that have counted the highest number of octets or packets." - ::= { nlMatrix 5 } - -nlMatrixTopNEntry OBJECT-TYPE - SYNTAX NlMatrixTopNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the nlMatrixTopNTable. - - The nlMatrixTopNControlIndex value in the index identifies the - nlMatrixTopNControlEntry on whose behalf this entry was - created. - - An example of the indexing of this table is - nlMatrixTopNPktRate.3.10" - INDEX { nlMatrixTopNControlIndex, nlMatrixTopNIndex } - ::= { nlMatrixTopNTable 1 } - -NlMatrixTopNEntry ::= SEQUENCE { - nlMatrixTopNIndex Integer32, - nlMatrixTopNProtocolDirLocalIndex Integer32, - nlMatrixTopNSourceAddress OCTET STRING, - nlMatrixTopNDestAddress OCTET STRING, - nlMatrixTopNPktRate Gauge32, - nlMatrixTopNReversePktRate Gauge32, - nlMatrixTopNOctetRate Gauge32, - nlMatrixTopNReverseOctetRate Gauge32 -} - -nlMatrixTopNIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in - the nlMatrixTopNTable among those in the same report. - This index is between 1 and N, where N is the - number of entries in this report. - - If the value of nlMatrixTopNControlRateBase is equal to - nlMatrixTopNPkts, increasing values of nlMatrixTopNIndex shall - be assigned to entries with decreasing values of - nlMatrixTopNPktRate until index N is assigned or there are no - more nlMatrixTopNEntries. - - If the value of nlMatrixTopNControlRateBase is equal to - nlMatrixTopNOctets, increasing values of nlMatrixTopNIndex - - - - - shall be assigned to entries with decreasing values of - nlMatrixTopNOctetRate until index N is assigned or there are - no more nlMatrixTopNEntries." - ::= { nlMatrixTopNEntry 1 } - -nlMatrixTopNProtocolDirLocalIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The protocolDirLocalIndex of the network-layer protocol of - this entry's network address." - ::= { nlMatrixTopNEntry 2 } - -nlMatrixTopNSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The network-layer address of the source host in this - conversation. - - This is represented as an octet string with - specific semantics and length as identified - by the associated nlMatrixTopNProtocolDirLocalIndex. - - For example, if the protocolDirLocalIndex indicates an - encapsulation of IP, this object is encoded as a length - octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlMatrixTopNEntry 3 } - -nlMatrixTopNDestAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The network-layer address of the destination host in this - conversation. - - This is represented as an octet string with - specific semantics and length as identified - by the associated nlMatrixTopNProtocolDirLocalIndex. - - For example, if the nlMatrixTopNProtocolDirLocalIndex - indicates an encapsulation of IP, this object is encoded as a - length octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { nlMatrixTopNEntry 4 } - -nlMatrixTopNPktRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets seen from the source host - to the destination host during this sampling interval, counted - using the rules for counting the nlMatrixSDPkts object. - If the value of nlMatrixTopNControlRateBase is - nlMatrixTopNPkts, this variable will be used to sort this - report." - ::= { nlMatrixTopNEntry 5 } - -nlMatrixTopNReversePktRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets seen from the destination host to the - source host during this sampling interval, counted - using the rules for counting the nlMatrixSDPkts object. (Note - that the corresponding nlMatrixSDPkts object selected is the - one whose source address is equal to nlMatrixTopNDestAddress - and whose destination address is equal to - nlMatrixTopNSourceAddress.) - - Note that if the value of nlMatrixTopNControlRateBase is equal - to nlMatrixTopNPkts, the sort of topN entries is based - entirely on nlMatrixTopNPktRate, and not on the value of this - object." - ::= { nlMatrixTopNEntry 6 } - -nlMatrixTopNOctetRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets seen from the source host - to the destination host during this sampling interval, counted - using the rules for counting the nlMatrixSDOctets object. If - the value of nlMatrixTopNControlRateBase is - nlMatrixTopNOctets, this variable will be used to sort this - report." - ::= { nlMatrixTopNEntry 7 } - -nlMatrixTopNReverseOctetRate OBJECT-TYPE - - - - - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets seen from the destination host to the - source host during this sampling interval, counted - using the rules for counting the nlMatrixDSOctets object. (Note - that the corresponding nlMatrixSDOctets object selected is the - one whose source address is equal to nlMatrixTopNDestAddress - and whose destination address is equal to - nlMatrixTopNSourceAddress.) - - Note that if the value of nlMatrixTopNControlRateBase is equal - to nlMatrixTopNOctets, the sort of topN entries is based - entirely on nlMatrixTopNOctetRate, and not on the value of - this object." - ::= { nlMatrixTopNEntry 8 } - --- Application Layer Functions --- --- The application layer host, matrix, and matrixTopN functions report --- on protocol usage at the network layer or higher. Note that the --- use of the term application layer does not imply that only --- application-layer protocols are counted, rather it means that --- protocols up to and including the application layer are supported. - --- --- Application Layer Host Group --- --- Counts the amount of traffic, by protocol, sent from and to each --- network address discovered by the probe. --- Implementation of this group requires implementation of the Network --- Layer Host Group. - -alHostTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlHostEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A collection of statistics for a particular protocol from a - particular network address that has been discovered on an - interface of this device. - - The probe will populate this table for all protocols in the - protocol directory table whose value of - protocolDirHostConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirHostConfig value of supportedOff(2). - The probe will add to this table all addresses - seen as the source or destination address in all packets with - no MAC errors and will increment octet and packet counts in - the table for all packets with no MAC errors. Further, - entries will only be added to this table if their address - exists in the nlHostTable and will be deleted from this table - if their address is deleted from the nlHostTable." - ::= { alHost 1 } - -alHostEntry OBJECT-TYPE - SYNTAX AlHostEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the alHostTable. - - The hlHostControlIndex value in the index identifies the - hlHostControlEntry on whose behalf this entry was created. - The first protocolDirLocalIndex value in the index identifies - the network-layer protocol of the address. - The nlHostAddress value in the index identifies the network- - layer address of this entry. - The second protocolDirLocalIndex value in the index identifies - the protocol that is counted by this entry. - - An example of the indexing in this entry is - alHostOutPkts.1.783495.18.4.128.2.6.6.34. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { hlHostControlIndex, alHostTimeMark, - protocolDirLocalIndex, nlHostAddress, - protocolDirLocalIndex } - ::= { alHostTable 1 } - -AlHostEntry ::= SEQUENCE { - alHostTimeMark TimeFilter, - alHostInPkts ZeroBasedCounter32, - alHostOutPkts ZeroBasedCounter32, - alHostInOctets ZeroBasedCounter32, - alHostOutOctets ZeroBasedCounter32, - alHostCreateTime LastCreateTime -} - -alHostTimeMark OBJECT-TYPE - SYNTAX TimeFilter - - - - - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { alHostEntry 1 } - -alHostInPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets of this protocol type without errors - transmitted to this address since it was added to the - alHostTable. Note that this is the number of link-layer - packets, so if a single network-layer packet is fragmented - into several link-layer frames, this counter is incremented - several times." - ::= { alHostEntry 2 } - -alHostOutPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets of this protocol type without errors - transmitted by this address since it was added to the - alHostTable. Note that this is the number of link-layer - packets, so if a single network-layer packet is fragmented - into several link-layer frames, this counter is incremented - several times." - ::= { alHostEntry 3 } - -alHostInOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted to this address - of this protocol type since it was added to the - alHostTable (excluding framing bits, but including - FCS octets), excluding octets in packets that - contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { alHostEntry 4 } - - -alHostOutOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets transmitted by this address - of this protocol type since it was added to the - alHostTable (excluding framing bits, but including - FCS octets), excluding octets in packets that - contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { alHostEntry 5 } - -alHostCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this entry was last activated. - This can be used by the management station to ensure that the - entry has not been deleted and recreated between polls." - ::= { alHostEntry 6 } - --- --- Application Layer Matrix Group --- --- Counts the amount of traffic, by protocol, sent between each pair --- of network addresses discovered by the probe. --- Implementation of this group requires implementation of the Network --- Layer Matrix Group. - -alMatrixSDTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlMatrixSDEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of application traffic matrix entries that collect - statistics for conversations of a particular protocol between - two network-level addresses. This table is indexed first by - the source address and then by the destination address to make - it convenient to collect all statistics from a particular - address. - - The probe will populate this table for all protocols in the - protocol directory table whose value of - - - - - protocolDirMatrixConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirMatrixConfig value of supportedOff(2). - - The probe will add to this table all pairs of addresses for - all protocols seen in all packets with no MAC errors and will - increment octet and packet counts in the table for all packets - with no MAC errors. Further, entries will only be added to - this table if their address pair exists in the nlMatrixSDTable - and will be deleted from this table if the address pair is - deleted from the nlMatrixSDTable." - ::= { alMatrix 1 } - -alMatrixSDEntry OBJECT-TYPE - SYNTAX AlMatrixSDEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the alMatrixSDTable. - - The hlMatrixControlIndex value in the index identifies the - hlMatrixControlEntry on whose behalf this entry was created. - The first protocolDirLocalIndex value in the index identifies - the network-layer protocol of the nlMatrixSDSourceAddress and - nlMatrixSDDestAddress. - The nlMatrixSDSourceAddress value in the index identifies the - network-layer address of the source host in this conversation. - The nlMatrixSDDestAddress value in the index identifies the - network-layer address of the destination host in this - conversation. - The second protocolDirLocalIndex value in the index identifies - the protocol that is counted by this entry. - - An example of the indexing of this entry is - alMatrixSDPkts.1.783495.18.4.128.2.6.6.4.128.2.6.7.34. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { hlMatrixControlIndex, alMatrixSDTimeMark, - protocolDirLocalIndex, - nlMatrixSDSourceAddress, nlMatrixSDDestAddress, - protocolDirLocalIndex } - ::= { alMatrixSDTable 1 } - -AlMatrixSDEntry ::= SEQUENCE { - alMatrixSDTimeMark TimeFilter, - alMatrixSDPkts ZeroBasedCounter32, - alMatrixSDOctets ZeroBasedCounter32, - alMatrixSDCreateTime LastCreateTime -} - -alMatrixSDTimeMark OBJECT-TYPE - SYNTAX TimeFilter - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { alMatrixSDEntry 1 } - -alMatrixSDPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets of this protocol type without errors - transmitted from the source address to the destination address - since this entry was added to the alMatrixSDTable. Note that - this is the number of link-layer packets, so if a single - network-layer packet is fragmented into several link-layer - frames, this counter is incremented several times." - ::= { alMatrixSDEntry 2 } - -alMatrixSDOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets in packets of this protocol type - transmitted from the source address to the destination address - since this entry was added to the alMatrixSDTable (excluding - framing bits, but including FCS octets), excluding octets - in packets that contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { alMatrixSDEntry 3 } - -alMatrixSDCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - - - "The value of sysUpTime when this entry was last activated. - This can be used by the management station to ensure that the - entry has not been deleted and recreated between polls." - ::= { alMatrixSDEntry 4 } - --- Traffic matrix tables from destination to source - -alMatrixDSTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlMatrixDSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of application traffic matrix entries that collect - statistics for conversations of a particular protocol between - two network-level addresses. This table is indexed first by - the destination address and then by the source address to make - it convenient to collect all statistics to a particular - address. - - The probe will populate this table for all protocols in the - protocol directory table whose value of - protocolDirMatrixConfig is equal to supportedOn(3), and - will delete any entries whose protocolDirEntry is deleted or - has a protocolDirMatrixConfig value of supportedOff(2). - - The probe will add to this table all pairs of addresses for - all protocols seen in all packets with no MAC errors and will - increment octet and packet counts in the table for all packets - with no MAC errors. Further, entries will only be added to - this table if their address pair exists in the nlMatrixDSTable - and will be deleted from this table if the address pair is - deleted from the nlMatrixDSTable." - ::= { alMatrix 2 } - -alMatrixDSEntry OBJECT-TYPE - SYNTAX AlMatrixDSEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the alMatrixDSTable. - - The hlMatrixControlIndex value in the index identifies the - hlMatrixControlEntry on whose behalf this entry was created. - The first protocolDirLocalIndex value in the index identifies - the network-layer protocol of the alMatrixDSSourceAddress and - alMatrixDSDestAddress. - The nlMatrixDSDestAddress value in the index identifies the - network-layer address of the destination host in this - - - - - conversation. - The nlMatrixDSSourceAddress value in the index identifies the - network-layer address of the source host in this conversation. - The second protocolDirLocalIndex value in the index identifies - the protocol that is counted by this entry. - - An example of the indexing of this entry is - alMatrixDSPkts.1.783495.18.4.128.2.6.7.4.128.2.6.6.34. - - Note that some combinations of index values may result in an - index that exceeds 128 sub-identifiers in length, which exceeds - the maximum for the SNMP protocol. Implementations should take - care to avoid such combinations." - INDEX { hlMatrixControlIndex, alMatrixDSTimeMark, - protocolDirLocalIndex, - nlMatrixDSDestAddress, nlMatrixDSSourceAddress, - protocolDirLocalIndex } - ::= { alMatrixDSTable 1 } - -AlMatrixDSEntry ::= SEQUENCE { - alMatrixDSTimeMark TimeFilter, - alMatrixDSPkts ZeroBasedCounter32, - alMatrixDSOctets ZeroBasedCounter32, - alMatrixDSCreateTime LastCreateTime -} - -alMatrixDSTimeMark OBJECT-TYPE - SYNTAX TimeFilter - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A TimeFilter for this entry. See the TimeFilter textual - convention to see how this works." - ::= { alMatrixDSEntry 1 } - -alMatrixDSPkts OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets of this protocol type without errors - transmitted from the source address to the destination address - since this entry was added to the alMatrixDSTable. Note that - this is the number of link-layer packets, so if a single - network-layer packet is fragmented into several link-layer - frames, this counter is incremented several times." - ::= { alMatrixDSEntry 2 } - -alMatrixDSOctets OBJECT-TYPE - SYNTAX ZeroBasedCounter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets in packets of this protocol type - transmitted from the source address to the destination address - since this entry was added to the alMatrixDSTable (excluding - framing bits, but including FCS octets), excluding octets - in packets that contained errors. - - Note that this doesn't count just those octets in the particular - protocol frames but includes the entire packet that contained - the protocol." - ::= { alMatrixDSEntry 3 } - -alMatrixDSCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this entry was last activated. - This can be used by the management station to ensure that the - entry has not been deleted and recreated between polls." - ::= { alMatrixDSEntry 4 } - -alMatrixTopNControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlMatrixTopNControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of parameters that control the creation of a - report of the top N matrix entries according to - a selected metric." - ::= { alMatrix 3 } - -alMatrixTopNControlEntry OBJECT-TYPE - SYNTAX AlMatrixTopNControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the alMatrixTopNControlTable. - - An example of the indexing of this table is - alMatrixTopNControlDuration.3" - INDEX { alMatrixTopNControlIndex } - ::= { alMatrixTopNControlTable 1 } - -AlMatrixTopNControlEntry ::= SEQUENCE { - alMatrixTopNControlIndex Integer32, - alMatrixTopNControlMatrixIndex Integer32, - alMatrixTopNControlRateBase INTEGER, - alMatrixTopNControlTimeRemaining Integer32, - alMatrixTopNControlGeneratedReports Counter32, - alMatrixTopNControlDuration Integer32, - alMatrixTopNControlRequestedSize Integer32, - alMatrixTopNControlGrantedSize Integer32, - alMatrixTopNControlStartTime TimeStamp, - alMatrixTopNControlOwner OwnerString, - alMatrixTopNControlStatus RowStatus -} - -alMatrixTopNControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry - in the alMatrixTopNControlTable. Each such - entry defines one topN report prepared for - one interface." - ::= { alMatrixTopNControlEntry 1 } - -alMatrixTopNControlMatrixIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The alMatrix[SD/DS] table for which a topN report will be - prepared on behalf of this entry. The alMatrix[SD/DS] table - is identified by the value of the hlMatrixControlIndex - for that table - that value is used here to identify the - particular table. - - This object may not be modified if the associated - alMatrixTopNControlStatus object is equal to active(1)." - ::= { alMatrixTopNControlEntry 2 } - -alMatrixTopNControlRateBase OBJECT-TYPE - SYNTAX INTEGER { - alMatrixTopNTerminalsPkts(1), - alMatrixTopNTerminalsOctets(2), - alMatrixTopNAllPkts(3), - alMatrixTopNAllOctets(4), - alMatrixTopNTerminalsHighCapacityPkts(5), - alMatrixTopNTerminalsHighCapacityOctets(6), - alMatrixTopNAllHighCapacityPkts(7), - alMatrixTopNAllHighCapacityOctets(8) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "This object controls which alMatrix[SD/DS] entry that the - alMatrixTopNEntries are sorted by, which view of the matrix - table that will be used, as well as which table the results - will be reported in. - - The values alMatrixTopNTerminalsPkts, - alMatrixTopNTerminalsOctets, - alMatrixTopNTerminalsHighCapacityPkts, and - alMatrixTopNTerminalsHighCapacityOctets cause collection - only from protocols that have no child protocols that are - counted. The values alMatrixTopNAllPkts, - alMatrixTopNAllOctets, alMatrixTopNAllHighCapacityPkts, and - alMatrixTopNAllHighCapacityOctets cause collection from all - alMatrix entries. - - This object may not be modified if the associated - alMatrixTopNControlStatus object is equal to active(1)." - ::= { alMatrixTopNControlEntry 3 } - -alMatrixTopNControlTimeRemaining OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The number of seconds left in the report currently - being collected. When this object is modified by - the management station, a new collection is started, - possibly aborting a currently running report. The - new value is used as the requested duration of this - report and is immediately loaded into the associated - alMatrixTopNControlDuration object. - - When the report finishes, the probe will automatically - start another collection with the same initial value - of alMatrixTopNControlTimeRemaining. Thus, the management - station may simply read the resulting reports repeatedly, - checking the startTime and duration each time to ensure that a - report was not missed or that the report parameters were not - changed. - - While the value of this object is non-zero, it decrements - by one per second until it reaches zero. At the time - - - - - that this object decrements to zero, the report is made - accessible in the alMatrixTopNTable, overwriting any report - that may be there. - - When this object is modified by the management station, any - associated entries in the alMatrixTopNTable shall be deleted. - - (Note that this is a different algorithm than the one used - in the hostTopNTable)." - DEFVAL { 1800 } - ::= { alMatrixTopNControlEntry 4 } - -alMatrixTopNControlGeneratedReports OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of reports that have been generated by this entry." - ::= { alMatrixTopNControlEntry 5 } - -alMatrixTopNControlDuration OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of seconds that this report has collected - during the last sampling interval. - - When the associated alMatrixTopNControlTimeRemaining object - is set, this object shall be set by the probe to the - same value and shall not be modified until the next - time the alMatrixTopNControlTimeRemaining is set. - - This value shall be zero if no reports have been - requested for this alMatrixTopNControlEntry." - ::= { alMatrixTopNControlEntry 6 } - -alMatrixTopNControlRequestedSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The maximum number of matrix entries requested for this report. - - When this object is created or modified, the probe - should set alMatrixTopNControlGrantedSize as closely to this - object as possible for the particular probe - implementation and available resources." - DEFVAL { 150 } - ::= { alMatrixTopNControlEntry 7 } - -alMatrixTopNControlGrantedSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of matrix entries in this report. - - When the associated alMatrixTopNControlRequestedSize object - is created or modified, the probe should set this - object as closely to the requested value as - possible for the particular implementation and - available resources. The probe must not lower this - value except as a side-effect of a set to the associated - alMatrixTopNControlRequestedSize object. - - If the value of alMatrixTopNControlRateBase is equal to - alMatrixTopNTerminalsPkts or alMatrixTopNAllPkts, when the - next topN report is generated, matrix entries with the highest - value of alMatrixTopNPktRate shall be placed in this table in - decreasing order of this rate until there is no more room or - until there are no more matrix entries. - - If the value of alMatrixTopNControlRateBase is equal to - alMatrixTopNTerminalsOctets or alMatrixTopNAllOctets, when the - next topN report is generated, matrix entries with the highest - value of alMatrixTopNOctetRate shall be placed in this table - in decreasing order of this rate until there is no more room - or until there are no more matrix entries. - - It is an implementation-specific matter how entries with the - same value of alMatrixTopNPktRate or alMatrixTopNOctetRate are - sorted. It is also an implementation-specific matter as to - whether zero-valued entries are available." - ::= { alMatrixTopNControlEntry 8 } - -alMatrixTopNControlStartTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this topN report was - last started. In other words, this is the time that - the associated alMatrixTopNControlTimeRemaining object - was modified to start the requested report or the time - the report was last automatically (re)started. - This object may be used by the management station to - determine whether a report was missed." - ::= { alMatrixTopNControlEntry 9 } - -alMatrixTopNControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { alMatrixTopNControlEntry 10 } - -alMatrixTopNControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this alMatrixTopNControlEntry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all - associated entries in the alMatrixTopNTable shall be - deleted by the agent." - ::= { alMatrixTopNControlEntry 11 } - -alMatrixTopNTable OBJECT-TYPE - SYNTAX SEQUENCE OF AlMatrixTopNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A set of statistics for those application-layer matrix - entries that have counted the highest number of octets or - packets." - ::= { alMatrix 4 } - -alMatrixTopNEntry OBJECT-TYPE - SYNTAX AlMatrixTopNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row in the alMatrixTopNTable. - - The alMatrixTopNControlIndex value in the index identifies - the alMatrixTopNControlEntry on whose behalf this entry was - created. - An example of the indexing of this table is - alMatrixTopNPktRate.3.10" - INDEX { alMatrixTopNControlIndex, alMatrixTopNIndex } - ::= { alMatrixTopNTable 1 } - -AlMatrixTopNEntry ::= SEQUENCE { - alMatrixTopNIndex Integer32, - alMatrixTopNProtocolDirLocalIndex Integer32, - alMatrixTopNSourceAddress OCTET STRING, - alMatrixTopNDestAddress OCTET STRING, - alMatrixTopNAppProtocolDirLocalIndex Integer32, - alMatrixTopNPktRate Gauge32, - alMatrixTopNReversePktRate Gauge32, - alMatrixTopNOctetRate Gauge32, - alMatrixTopNReverseOctetRate Gauge32 - } - -alMatrixTopNIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in - the alMatrixTopNTable among those in the same report. - - This index is between 1 and N, where N is the - number of entries in this report. - - If the value of alMatrixTopNControlRateBase is equal to - alMatrixTopNTerminalsPkts or alMatrixTopNAllPkts, increasing - values of alMatrixTopNIndex shall be assigned to entries with - decreasing values of alMatrixTopNPktRate until index N is - assigned or there are no more alMatrixTopNEntries. - - If the value of alMatrixTopNControlRateBase is equal to - alMatrixTopNTerminalsOctets or alMatrixTopNAllOctets, - increasing values of alMatrixTopNIndex shall be assigned to - entries with decreasing values of alMatrixTopNOctetRate until - index N is assigned or there are no more alMatrixTopNEntries." - ::= { alMatrixTopNEntry 1 } - -alMatrixTopNProtocolDirLocalIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The protocolDirLocalIndex of the network-layer protocol of - this entry's network address." - ::= { alMatrixTopNEntry 2 } - -alMatrixTopNSourceAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The network-layer address of the source host in this - conversation. - - This is represented as an octet string with - specific semantics and length as identified - by the associated alMatrixTopNProtocolDirLocalIndex. - - For example, if the alMatrixTopNProtocolDirLocalIndex - indicates an encapsulation of IP, this object is encoded as a - length octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { alMatrixTopNEntry 3 } - -alMatrixTopNDestAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (1..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The network-layer address of the destination host in this - conversation. - - This is represented as an octet string with - specific semantics and length as identified - by the associated alMatrixTopNProtocolDirLocalIndex. - - For example, if the alMatrixTopNProtocolDirLocalIndex - indicates an encapsulation of IP, this object is encoded as a - length octet of 4, followed by the 4 octets of the IP address, - in network byte order." - ::= { alMatrixTopNEntry 4 } - -alMatrixTopNAppProtocolDirLocalIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The type of the protocol counted by this matrix entry." - ::= { alMatrixTopNEntry 5 } - -alMatrixTopNPktRate OBJECT-TYPE - SYNTAX Gauge32 - - - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets seen of this protocol from the source - host to the destination host during this sampling interval, - counted using the rules for counting the alMatrixSDPkts - object. - - If the value of alMatrixTopNControlRateBase is - alMatrixTopNTerminalsPkts or alMatrixTopNAllPkts, this - variable will be used to sort this report." - ::= { alMatrixTopNEntry 6 } - -alMatrixTopNReversePktRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of packets seen of this protocol from the - destination host to the source host during this sampling - interval, counted using the rules for counting the - alMatrixDSPkts object. (Note that the corresponding - alMatrixSDPkts object selected is the one whose source address - is equal to alMatrixTopNDestAddress and whose destination - address is equal to alMatrixTopNSourceAddress.) - - Note that if the value of alMatrixTopNControlRateBase is equal - to alMatrixTopNTerminalsPkts or alMatrixTopNAllPkts, the sort - of topN entries is based entirely on alMatrixTopNPktRate, and - not on the value of this object." - ::= { alMatrixTopNEntry 7 } - -alMatrixTopNOctetRate OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets seen of this protocol from the source - host to the destination host during this sampling interval, - counted using the rules for counting the alMatrixSDOctets - object. - - If the value of alMatrixTopNControlRateBase is - alMatrixTopNTerminalsOctets or alMatrixTopNAllOctets, this - variable will be used to sort this report." - ::= { alMatrixTopNEntry 8 } - -alMatrixTopNReverseOctetRate OBJECT-TYPE - - - - - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of octets seen of this protocol from the - destination host to the source host during this sampling - interval, counted using the rules for counting the - alMatrixDSOctets object. (Note that the corresponding - alMatrixSDOctets object selected is the one whose source - address is equal to alMatrixTopNDestAddress and whose - destination address is equal to alMatrixTopNSourceAddress.) - - Note that if the value of alMatrixTopNControlRateBase is equal - to alMatrixTopNTerminalsOctets or alMatrixTopNAllOctets, the - sort of topN entries is based entirely on - alMatrixTopNOctetRate, and not on the value of this object." - ::= { alMatrixTopNEntry 9 } - --- --- User History Collection Group (usrHistory) --- --- The usrHistory group combines mechanisms seen in the alarm and --- history groups to provide user-specified history collection, --- utilizing two additional control tables and one additional data --- table. This function has traditionally been done by NMS --- applications, via periodic polling. The usrHistory group allows --- this task to be offloaded to an RMON probe. --- --- Data (an ASN.1 INTEGER based object) is collected in the same --- manner as any history data table (e.g., etherHistoryTable) except --- that the user specifies the MIB instances to be collected. Objects --- are collected in bucket-groups, with the intent that all MIB --- instances in the same bucket-group are collected as atomically as --- possible by the RMON probe. --- --- The usrHistoryControlTable is a one-dimensional read-create table. --- Each row configures a collection of user history buckets, much --- the same as a historyControlEntry, except that the creation of a --- row in this table will cause one or more associated instances in --- the usrHistoryObjectTable to be created. The user specifies the --- number of bucket elements (rows in the usrHistoryObjectTable) --- requested, as well as the number of buckets requested. --- --- The usrHistoryObjectTable is a 2-d read-write table. --- Each row configures a single MIB instance to be collected. --- All rows with the same major index constitute a bucket-group. --- --- The usrHistoryTable is a 3-d read-only table containing - - - - --- the data of associated usrHistoryControlEntries. Each --- entry represents the value of a single MIB instance --- during a specific sampling interval (or the rate of --- change during the interval). --- --- A sample value is stored in two objects - an absolute value and --- a status object. This allows numbers from -(2G-1) to +4G to be --- stored. The status object also indicates whether a sample is --- valid. This allows data collection to continue if periodic --- retrieval of a particular instance fails for any reason. --- --- Row Creation Order Relationships --- --- The static nature of the usrHistoryObjectTable creates --- some row creation/modification issues. The rows in this --- table need to be set before the associated --- usrHistoryControlEntry can be activated. --- --- Note that the usrHistoryObject entries associated with a --- particular usrHistoryControlEntry are not required to --- be active before the control entry is activated. However, --- the usrHistory data entries associated with an inactive --- usrHistoryObject entry will be inactive (i.e., --- usrHistoryValStatus == valueNotAvailable). --- - -usrHistoryControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF UsrHistoryControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of data-collection configuration entries." - ::= { usrHistory 1 } - -usrHistoryControlEntry OBJECT-TYPE - SYNTAX UsrHistoryControlEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of parameters that set up a group of user-defined - MIB objects to be sampled periodically (called a - bucket-group). - - For example, an instance of usrHistoryControlInterval - might be named usrHistoryControlInterval.1" - INDEX { usrHistoryControlIndex } - ::= { usrHistoryControlTable 1 } - -UsrHistoryControlEntry ::= SEQUENCE { - usrHistoryControlIndex Integer32, - usrHistoryControlObjects Integer32, - usrHistoryControlBucketsRequested Integer32, - usrHistoryControlBucketsGranted Integer32, - usrHistoryControlInterval Integer32, - usrHistoryControlOwner OwnerString, - usrHistoryControlStatus RowStatus -} - -usrHistoryControlIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index that uniquely identifies an entry in the - usrHistoryControlTable. Each such entry defines a - set of samples at a particular interval for a specified - set of MIB instances available from the managed system." - ::= { usrHistoryControlEntry 1 } - -usrHistoryControlObjects OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The number of MIB objects to be collected - in the portion of usrHistoryTable associated with this - usrHistoryControlEntry. - - This object may not be modified if the associated instance - of usrHistoryControlStatus is equal to active(1)." - ::= { usrHistoryControlEntry 2 } - -usrHistoryControlBucketsRequested OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The requested number of discrete time intervals - over which data is to be saved in the part of the - usrHistoryTable associated with this usrHistoryControlEntry. - - When this object is created or modified, the probe - should set usrHistoryControlBucketsGranted as closely to - this object as possible for the particular probe - implementation and available resources." - DEFVAL { 50 } - ::= { usrHistoryControlEntry 3 } - -usrHistoryControlBucketsGranted OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of discrete sampling intervals - over which data shall be saved in the part of - the usrHistoryTable associated with this - usrHistoryControlEntry. - - When the associated usrHistoryControlBucketsRequested - object is created or modified, the probe should set - this object as closely to the requested value as - possible for the particular probe implementation and - available resources. The probe must not lower this - value except as a result of a modification to the associated - usrHistoryControlBucketsRequested object. - - The associated usrHistoryControlBucketsRequested object - should be set before or at the same time as this object - to allow the probe to accurately estimate the resources - required for this usrHistoryControlEntry. - - There will be times when the actual number of buckets - associated with this entry is less than the value of - this object. In this case, at the end of each sampling - interval, a new bucket will be added to the usrHistoryTable. - - When the number of buckets reaches the value of this object - and a new bucket is to be added to the usrHistoryTable, - the oldest bucket associated with this usrHistoryControlEntry - shall be deleted by the agent so that the new bucket can be - added. - - When the value of this object changes to a value less than - the current value, entries are deleted from the - usrHistoryTable associated with this usrHistoryControlEntry. - Enough of the oldest of these entries shall be deleted by the - agent so that their number remains less than or equal to the - new value of this object. - - When the value of this object changes to a value greater - than the current value, the number of associated usrHistory - entries may be allowed to grow." - ::= { usrHistoryControlEntry 4 } - -usrHistoryControlInterval OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The interval in seconds over which the data is - sampled for each bucket in the part of the usrHistory - table associated with this usrHistoryControlEntry. - - Because the counters in a bucket may overflow at their - maximum value with no indication, a prudent manager will - take into account the possibility of overflow in any of - the associated counters. It is important to consider the - minimum time in which any counter could overflow on a - particular media type and to set the usrHistoryControlInterval - object to a value less than this interval. - - This object may not be modified if the associated - usrHistoryControlStatus object is equal to active(1)." - DEFVAL { 1800 } - ::= { usrHistoryControlEntry 5 } - -usrHistoryControlOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { usrHistoryControlEntry 6 } - -usrHistoryControlStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The status of this variable history control entry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value. - - If this object is not equal to active(1), all associated - entries in the usrHistoryTable shall be deleted." - ::= { usrHistoryControlEntry 7 } - --- Object table - -usrHistoryObjectTable OBJECT-TYPE - - - - - SYNTAX SEQUENCE OF UsrHistoryObjectEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of data-collection configuration entries." - ::= { usrHistory 2 } - -usrHistoryObjectEntry OBJECT-TYPE - SYNTAX UsrHistoryObjectEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of MIB instances to be sampled periodically. - - Entries in this table are created when an associated - usrHistoryControlObjects object is created. - - The usrHistoryControlIndex value in the index is - that of the associated usrHistoryControlEntry. - - For example, an instance of usrHistoryObjectVariable might be - usrHistoryObjectVariable.1.3" - INDEX { usrHistoryControlIndex, usrHistoryObjectIndex } - ::= { usrHistoryObjectTable 1 } - -UsrHistoryObjectEntry ::= SEQUENCE { - usrHistoryObjectIndex Integer32, - usrHistoryObjectVariable OBJECT IDENTIFIER, - usrHistoryObjectSampleType INTEGER -} - -usrHistoryObjectIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An index used to uniquely identify an entry in the - usrHistoryObject table. Each such entry defines a - MIB instance to be collected periodically." - ::= { usrHistoryObjectEntry 1 } - - -usrHistoryObjectVariable OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The object identifier of the particular variable to be - - - - - sampled. - - Only variables that resolve to an ASN.1 primitive type of - Integer32 (Integer32, Counter, Gauge, or TimeTicks) may be - sampled. - - Because SNMP access control is articulated entirely in terms - of the contents of MIB views, no access control mechanism - exists that can restrict the value of this object to identify - only those objects that exist in a particular MIB view. - Because there is thus no acceptable means of restricting the - read access that could be obtained through the user history - mechanism, the probe must only grant write access to this - object in those views that have read access to all objects on - the probe. See USM [RFC3414] and VACM [RFC3415] for more - information. - - During a set operation, if the supplied variable name is not - available in the selected MIB view, a badValue error must be - returned. - - This object may not be modified if the associated - usrHistoryControlStatus object is equal to active(1)." - ::= { usrHistoryObjectEntry 2 } - -usrHistoryObjectSampleType OBJECT-TYPE - SYNTAX INTEGER { - absoluteValue(1), - deltaValue(2) - } - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "The method of sampling the selected variable for storage in - the usrHistoryTable. - - If the value of this object is absoluteValue(1), the value of - the selected variable will be copied directly into the history - bucket. - - If the value of this object is deltaValue(2), the value of the - selected variable at the last sample will be subtracted from - the current value, and the difference will be stored in the - history bucket. If the associated usrHistoryObjectVariable - instance could not be obtained at the previous sample - interval, then a delta sample is not possible, and the value - of the associated usrHistoryValStatus object for this interval - will be valueNotAvailable(1). - This object may not be modified if the associated - usrHistoryControlStatus object is equal to active(1)." - ::= { usrHistoryObjectEntry 3 } - --- data table - -usrHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF UsrHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of user-defined history entries." - ::= { usrHistory 3 } - -usrHistoryEntry OBJECT-TYPE - SYNTAX UsrHistoryEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A historical sample of user-defined variables. This sample - is associated with the usrHistoryControlEntry that set up the - parameters for a regular collection of these samples. - - The usrHistoryControlIndex value in the index identifies the - usrHistoryControlEntry on whose behalf this entry was created. - The usrHistoryObjectIndex value in the index identifies the - usrHistoryObjectEntry on whose behalf this entry was created. - - For example, an instance of usrHistoryAbsValue, which represents - the 14th sample of a variable collected as specified by - usrHistoryControlEntry.1 and usrHistoryObjectEntry.1.5, - would be named usrHistoryAbsValue.1.14.5" - INDEX { usrHistoryControlIndex, usrHistorySampleIndex, - usrHistoryObjectIndex } - ::= { usrHistoryTable 1 } - -UsrHistoryEntry ::= SEQUENCE { - usrHistorySampleIndex Integer32, - usrHistoryIntervalStart TimeStamp, - usrHistoryIntervalEnd TimeStamp, - usrHistoryAbsValue Gauge32, - usrHistoryValStatus INTEGER -} - -usrHistorySampleIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - - - - - DESCRIPTION - "An index that uniquely identifies the particular sample this - entry represents among all samples associated with the same - usrHistoryControlEntry. This index starts at 1 and increases - by one as each new sample is taken." - ::= { usrHistoryEntry 1 } - -usrHistoryIntervalStart OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the start of the interval over - which this sample was measured. If the probe keeps track of - the time of day, it should start the first sample of the - history at a time such that when the next hour of the day - begins, a sample is started at that instant. - - Note that following this rule may require that the probe delay - collecting the first sample of the history, as each sample - must be of the same interval. Also note that the sample that - is currently being collected is not accessible in this table - until the end of its interval." - ::= { usrHistoryEntry 2 } - -usrHistoryIntervalEnd OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the end of the interval over which - this sample was measured." - ::= { usrHistoryEntry 3 } - -usrHistoryAbsValue OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The absolute value (i.e., unsigned value) of the - user-specified statistic during the last sampling period. The - value during the current sampling period is not made available - until the period is completed. - - To obtain the true value for this sampling interval, the - associated instance of usrHistoryValStatus must be checked, - and usrHistoryAbsValue adjusted as necessary. - - If the MIB instance could not be accessed during the sampling - interval, then this object will have a value of zero, and the - associated instance of usrHistoryValStatus will be set to - 'valueNotAvailable(1)'. - - The access control check prescribed in the definition of - usrHistoryObjectVariable SHOULD be checked for each sampling - interval. If this check determines that access should not be - allowed, then this object will have a value of zero, and the - associated instance of usrHistoryValStatus will be set to - 'valueNotAvailable(1)'." - ::= { usrHistoryEntry 4 } - - -usrHistoryValStatus OBJECT-TYPE - SYNTAX INTEGER { - valueNotAvailable(1), - valuePositive(2), - valueNegative(3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates the validity and sign of the data in - the associated instance of usrHistoryAbsValue. - - If the MIB instance could not be accessed during the sampling - interval, then 'valueNotAvailable(1)' will be returned. - - If the sample is valid and the actual value of the sample is - greater than or equal to zero, then 'valuePositive(2)' is - returned. - - If the sample is valid and the actual value of the sample is - less than zero, 'valueNegative(3)' will be returned. The - associated instance of usrHistoryAbsValue should be multiplied - by -1 to obtain the true sample value." - ::= { usrHistoryEntry 5 } - --- The Probe Configuration Group --- --- This group controls the configuration of various operating --- parameters of the probe. - -ControlString ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This data type is used to communicate with a modem or a - - - - - serial data switch. A ControlString contains embedded - commands to control how the device will interact with the - remote device through the serial interface. Commands are - represented as two-character sequences beginning with - the '^' character. - - The following commands are recognized by the device (note - that command characters are case sensitive): - - ^s Send string that follows, which is terminated by the - next command or the end of string. - ^c Delay for the number of seconds that follows. Toss - out any data received rather than store it in a - buffer for parsing. - ^t Set timeout to the value represented by the decimal - digits that follow. The default timeout is 20 - seconds. Note that this timeout may be overridden - by a smaller serialTimeout configured for the - associated serial interface (see serialConfigTable). - ^w Wait for the reply string that follows, which is - terminated by the next command or the end of string. - Partial and case-insensitive matching is applied, i.e., - if the reply string (any case combination) is found - anywhere in the received string, then the a match is - found. If the current timeout elapses without a match, - then the remaining control string is ignored. - ^! The ^ character. - ^d Delay the number of seconds specified by the decimal - digits that follow. - ^b Send break for the number of milliseconds specified by - the decimal digits that follow. If no digits follow, - break will be enforced for 250 milliseconds by default. - - The following ASCII control characters may be inserted into - the '^s' send string or the '^w' reply string: - - ^@ 0x00 - ^A 0x01 - .. - ^M 0x0D - .. - ^Z 0x1A - ^[ 0x1B - ^ 0x1C - ^] 0x1D - ^^ 0x1E - ^_ 0x1F - - - - Binary data may also be inserted into the data stream. The - control sequence for each byte of binary data is ^0x##, where - ## is the hexadecimal representation of the data byte. Two - ASCII characters (0-9, a-f, A-F) must follow the '^0x' - control prefix. For example, '^0x0D^0x0A' is interpreted as a - carriage return followed by a line feed." - SYNTAX OCTET STRING (SIZE (0..255)) - -probeCapabilities OBJECT-TYPE - SYNTAX BITS { - etherStats(0), - historyControl(1), - etherHistory(2), - alarm(3), - hosts(4), - hostTopN(5), - matrix(6), - filter(7), - capture(8), - event(9), - tokenRingMLStats(10), - tokenRingPStats(11), - tokenRingMLHistory(12), - tokenRingPHistory(13), - ringStation(14), - ringStationOrder(15), - ringStationConfig(16), - sourceRouting(17), - protocolDirectory(18), - protocolDistribution(19), - addressMapping(20), - nlHost(21), - nlMatrix(22), - alHost(23), - alMatrix(24), - usrHistory(25), - probeConfig(26) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the RMON MIB groups supported - on at least one interface by this probe." - ::= { probeConfig 1 } - -probeSoftwareRev OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..15)) - MAX-ACCESS read-only - - - - - STATUS current - DESCRIPTION - "The software revision of this device. This string will have - a zero length if the revision is unknown." - ::= { probeConfig 2 } - -probeHardwareRev OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..31)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The hardware revision of this device. This string will have - a zero length if the revision is unknown." - ::= { probeConfig 3 } - -probeDateTime OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0 | 8 | 11)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Probe's current date and time. - - 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 minutes 0..59 - 6 7 seconds 0..60 - (use 60 for leap-second) - 7 8 deci-seconds 0..9 - 8 9 direction from UTC '+' / '-' - 9 10 hours from UTC 0..11 - 10 11 minutes from UTC 0..59 - - For example, Tuesday May 26, 1992 at 1:30:15 PM - EDT would be displayed as: - - 1992-5-26,13:30:15.0,-4:0 - - Note that if only local time is known, then - time zone information (fields 8-10) is not - present, and that if no time information is known, the - null string is returned." - ::= { probeConfig 4 } - -probeResetControl OBJECT-TYPE - - - - - SYNTAX INTEGER { - running(1), - warmBoot(2), - coldBoot(3) - } - - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this object to warmBoot(2) causes the device to - restart the application software with current configuration - parameters saved in non-volatile memory. Setting this - object to coldBoot(3) causes the device to reinitialize - configuration parameters in non-volatile memory to default - values and to restart the application software. When the device - is running normally, this variable has a value of - running(1)." - ::= { probeConfig 5 } - --- The following download objects do not restrict an implementation --- from implementing additional download mechanisms (controlled in an --- implementation-specific manner). Further, in the case where the RMON --- agent shares a processor with other types of systems, the --- implementation is not required to download those non-RMON functions --- with this mechanism. - -probeDownloadFile OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..127)) - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "The file name to be downloaded from the TFTP server when a - download is next requested via this MIB. This value is set to - the zero-length string when no file name has been specified. - - This object has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability to - meet the requirements of a Draft Standard." - ::= { probeConfig 6 } - -probeDownloadTFTPServer OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "The IP address of the TFTP server that contains the boot - image to load when a download is next requested via this MIB. - This value is set to '0.0.0.0' when no IP address has been - - - - - specified. - - This object has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability to - meet the requirements of a Draft Standard." - ::= { probeConfig 7 } - -probeDownloadAction OBJECT-TYPE - SYNTAX INTEGER { - notDownloading(1), - downloadToPROM(2), - downloadToRAM(3) - } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "When this object is set to downloadToRAM(3) or - downloadToPROM(2), the device will discontinue its - normal operation and begin download of the image specified - by probeDownloadFile from the server specified by - probeDownloadTFTPServer using the TFTP protocol. If - downloadToRAM(3) is specified, the new image is copied - to RAM only (the old image remains unaltered in the flash - EPROM). If downloadToPROM(2) is specified, - the new image is written to the flash EPROM - memory after its checksum has been verified to be correct. - When the download process is completed, the device will - warm boot to restart the newly loaded application. - When the device is not downloading, this object will have - a value of notDownloading(1). - - This object has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability to - meet the requirements of a Draft Standard." - ::= { probeConfig 8 } - -probeDownloadStatus OBJECT-TYPE - SYNTAX INTEGER { - downloadSuccess(1), - downloadStatusUnknown(2), - downloadGeneralError(3), - downloadNoResponseFromServer(4), - downloadChecksumError(5), - downloadIncompatibleImage(6), - downloadTftpFileNotFound(7), - downloadTftpAccessViolation(8) - } - MAX-ACCESS read-only - - - - - STATUS deprecated - DESCRIPTION - "The status of the last download procedure, if any. This - object will have a value of downloadStatusUnknown(2) if no - download process has been performed. - - This object has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability to - meet the requirements of a Draft Standard." - ::= { probeConfig 9 } - -serialConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF SerialConfigEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of serial interface configuration entries. This data - will be stored in non-volatile memory and preserved across - probe resets or power loss. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability to - meet the requirements of a Draft Standard." - ::= { probeConfig 10 } - -serialConfigEntry OBJECT-TYPE - SYNTAX SerialConfigEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A set of configuration parameters for a particular - serial interface on this device. If the device has no serial - interfaces, this table is empty. - - The index is composed of the ifIndex assigned to this serial - line interface." - INDEX { ifIndex } - ::= { serialConfigTable 1 } - -SerialConfigEntry ::= SEQUENCE { - serialMode INTEGER, - serialProtocol INTEGER, - serialTimeout Integer32, - serialModemInitString ControlString, - serialModemHangUpString ControlString, - serialModemConnectResp DisplayString, - serialModemNoConnectResp DisplayString, - serialDialoutTimeout Integer32, - serialStatus RowStatus -} - -serialMode OBJECT-TYPE - SYNTAX INTEGER { - direct(1), - modem(2) - } - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The type of incoming connection to be expected on this - serial interface." - DEFVAL { direct } - ::= { serialConfigEntry 1 } - -serialProtocol OBJECT-TYPE - SYNTAX INTEGER { - other(1), - slip(2), - ppp(3) - } - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The type of data link encapsulation to be used on this - serial interface." - DEFVAL { slip } - ::= { serialConfigEntry 2 } - -serialTimeout OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "This timeout value is used when the Management Station has - initiated the conversation over the serial link. This variable - represents the number of seconds of inactivity allowed before - terminating the connection on this serial interface. Use the - serialDialoutTimeout in the case where the probe has initiated - the connection for the purpose of sending a trap." - DEFVAL { 300 } - ::= { serialConfigEntry 3 } - -serialModemInitString OBJECT-TYPE - SYNTAX ControlString (SIZE (0..255)) - MAX-ACCESS read-create - STATUS deprecated - - - - - DESCRIPTION - "A control string that controls how a modem attached to this - serial interface should be initialized. The initialization - is performed once during startup and again after each - connection is terminated if the associated serialMode has the - value of modem(2). - - A control string that is appropriate for a wide variety of - modems is: '^s^MATE0Q0V1X4 S0=1 S2=43^M'." - ::= { serialConfigEntry 4 } - -serialModemHangUpString OBJECT-TYPE - SYNTAX ControlString (SIZE (0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A control string that specifies how to disconnect a modem - connection on this serial interface. This object is only - meaningful if the associated serialMode has the value - of modem(2). - - A control string that is appropriate for a wide variety of - modems is: '^d2^s+++^d2^sATH0^M^d2'." - ::= { serialConfigEntry 5 } - -serialModemConnectResp OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "An ASCII string containing substrings that describe the - expected modem connection response code and associated bps - rate. The substrings are delimited by the first character - in the string, for example: - /CONNECT/300/CONNECT 1200/1200/CONNECT 2400/2400/ - CONNECT 4800/4800/CONNECT 9600/9600 - will be interpreted as: - response code bps rate - CONNECT 300 - CONNECT 1200 1200 - CONNECT 2400 2400 - CONNECT 4800 4800 - CONNECT 9600 9600 - The agent will use the information in this string to adjust - the bps rate of this serial interface once a modem connection - is established. - - A value that is appropriate for a wide variety of modems is: - '/CONNECT/300/CONNECT 1200/1200/CONNECT 2400/2400/ - CONNECT 4800/4800/CONNECT 9600/9600/CONNECT 14400/14400/ - CONNECT 19200/19200/CONNECT 38400/38400/'." - ::= { serialConfigEntry 6 } - -serialModemNoConnectResp OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "An ASCII string containing response codes that may be - generated by a modem to report the reason why a connection - attempt has failed. The response codes are delimited by - the first character in the string, for example: - /NO CARRIER/BUSY/NO DIALTONE/NO ANSWER/ERROR/ - - If one of these response codes is received via this serial - interface while attempting to make a modem connection, - the agent will issue the hang up command as specified by - serialModemHangUpString. - - A value that is appropriate for a wide variety of modems is: - '/NO CARRIER/BUSY/NO DIALTONE/NO ANSWER/ERROR/'." - ::= { serialConfigEntry 7 } - -serialDialoutTimeout OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "This timeout value is used when the probe initiates the - serial connection with the intention of contacting a - management station. This variable represents the number - of seconds of inactivity allowed before terminating the - connection on this serial interface." - DEFVAL { 20 } - ::= { serialConfigEntry 8 } - -serialStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The status of this serialConfigEntry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value." - ::= { serialConfigEntry 9 } - - -netConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF NetConfigEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table of netConfigEntries. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability to - meet the requirements of a Draft Standard." - ::= { probeConfig 11 } - -netConfigEntry OBJECT-TYPE - SYNTAX NetConfigEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A set of configuration parameters for a particular - network interface on this device. If the device has no network - interface, this table is empty. - - The index is composed of the ifIndex assigned to the - corresponding interface." - INDEX { ifIndex } - ::= { netConfigTable 1 } - -NetConfigEntry ::= SEQUENCE { - netConfigIPAddress IpAddress, - netConfigSubnetMask IpAddress, - netConfigStatus RowStatus -} - -netConfigIPAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The IP address of this Net interface. The default value - for this object is 0.0.0.0. If either the netConfigIPAddress - or netConfigSubnetMask is 0.0.0.0, then when the device - boots, it may use BOOTP to try to figure out what these - values should be. If BOOTP fails before the device - can talk on the network, this value must be configured - (e.g., through a terminal attached to the device). If BOOTP is - used, care should be taken to not send BOOTP broadcasts too - frequently and to eventually send them very infrequently if no - replies are received." - ::= { netConfigEntry 1 } - - -netConfigSubnetMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The subnet mask of this Net interface. The default value - for this object is 0.0.0.0. If either the netConfigIPAddress - or netConfigSubnetMask is 0.0.0.0, then when the device - boots, it may use BOOTP to try to figure out what these - values should be. If BOOTP fails before the device - can talk on the network, this value must be configured - (e.g., through a terminal attached to the device). If BOOTP is - used, care should be taken to not send BOOTP broadcasts too - frequently and to eventually send them very infrequently if no - replies are received." - ::= { netConfigEntry 2 } - -netConfigStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The status of this netConfigEntry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value." - ::= { netConfigEntry 3 } - -netDefaultGateway OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "The IP Address of the default gateway. If this value is - undefined or unknown, it shall have the value 0.0.0.0." - ::= { probeConfig 12 } - --- Trap Destination Table --- --- This table defines the destination addresses for traps generated --- from the device. This table maps a community to one or more trap --- destination entries. --- --- The same trap will be sent to all destinations specified in the --- entries that have the same trapDestCommunity as the eventCommunity --- (as defined by RMON MIB), as long as no access control mechanism --- (e.g., VACM) prohibits sending to one or more of the destinations. --- Information in this table will be stored in non-volatile memory. --- If the device has gone through a hard restart, this information --- will be reset to its default state. - -trapDestTable OBJECT-TYPE - SYNTAX SEQUENCE OF TrapDestEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A list of trap destination entries." - ::= { probeConfig 13 } - -trapDestEntry OBJECT-TYPE - SYNTAX TrapDestEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "This entry includes a destination IP address to which - traps are sent for this community." - INDEX { trapDestIndex } - ::= { trapDestTable 1 } - -TrapDestEntry ::= SEQUENCE { - trapDestIndex Integer32, - trapDestCommunity OCTET STRING, - trapDestProtocol INTEGER, - trapDestAddress OCTET STRING, - trapDestOwner OwnerString, - trapDestStatus RowStatus -} - -trapDestIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A value that uniquely identifies this trapDestEntry." - ::= { trapDestEntry 1 } - -trapDestCommunity OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..127)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A community to which this destination address belongs. - This entry is associated with any eventEntries in the RMON - MIB whose value of eventCommunity is equal to the value of - this object. Every time an associated event entry sends a - trap due to an event, that trap will be sent to each - - - - - address in the trapDestTable with a trapDestCommunity equal - to eventCommunity, as long as no access control mechanism - precludes it (e.g., VACM). - - This object may not be modified if the associated - trapDestStatus object is equal to active(1)." - ::= { trapDestEntry 2 } - -trapDestProtocol OBJECT-TYPE - SYNTAX INTEGER { - ip(1), - ipx(2) - } - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The protocol with which this trap is to be sent." - ::= { trapDestEntry 3 } - -trapDestAddress OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The destination address for traps on behalf of this entry. - - If the associated trapDestProtocol object is equal to ip(1), - the encoding of this object is the same as the snmpUDPAddress - textual convention in RFC 3417, 'Transport Mappings for the - Simple Network Management Protocol (SNMP)' [RFC3417]: - -- for a SnmpUDPAddress of length 6: - -- - -- octets contents encoding - -- 1-4 IP-address network-byte order - -- 5-6 UDP-port network-byte order - - If the associated trapDestProtocol object is equal to ipx(2), - the encoding of this object is the same as the snmpIPXAddress - textual convention in RFC 3417, 'Transport Mappings for the - Simple Network Management Protocol (SNMP)' [RFC3417]: - -- for a SnmpIPXAddress of length 12: - -- - -- octets contents encoding - -- 1-4 network-number network-byte order - -- 5-10 physical-address network-byte order - -- 11-12 socket-number network-byte order - - This object may not be modified if the associated - - - - - trapDestStatus object is equal to active(1)." - ::= { trapDestEntry 4 } - -trapDestOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { trapDestEntry 5 } - -trapDestStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The status of this trap destination entry. - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value." - ::= { trapDestEntry 6 } - --- Serial Connection Table --- --- The device may communicate with a management station using --- SLIP. In order for the device to send traps via SLIP, it must --- be able to initiate a connection over the serial interface. The --- serialConnectionTable stores the parameters for such connection --- initiation. - -serialConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF SerialConnectionEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A list of serialConnectionEntries. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability - to meet the requirements of a Draft Standard." - ::= { probeConfig 14 } - -serialConnectionEntry OBJECT-TYPE - SYNTAX SerialConnectionEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - - - - - "Configuration for a SLIP link over a serial line." - INDEX { serialConnectIndex } - ::= { serialConnectionTable 1 } - -SerialConnectionEntry ::= SEQUENCE { - serialConnectIndex Integer32, - serialConnectDestIpAddress IpAddress, - serialConnectType INTEGER, - serialConnectDialString ControlString, - serialConnectSwitchConnectSeq ControlString, - serialConnectSwitchDisconnectSeq ControlString, - serialConnectSwitchResetSeq ControlString, - serialConnectOwner OwnerString, - serialConnectStatus RowStatus -} - -serialConnectIndex OBJECT-TYPE - SYNTAX Integer32 (1..65535) - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A value that uniquely identifies this serialConnection - entry." - ::= { serialConnectionEntry 1 } - -serialConnectDestIpAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The IP Address that can be reached at the other end of this - serial connection. - - This object may not be modified if the associated - serialConnectStatus object is equal to active(1)." - ::= { serialConnectionEntry 2 } - - -serialConnectType OBJECT-TYPE - SYNTAX INTEGER { - direct(1), - modem(2), - switch(3), - modemSwitch(4) - } - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - - - - - "The type of outgoing connection to be made. If this object - has the value direct(1), then a direct serial connection - is assumed. If this object has the value modem(2), - then serialConnectDialString will be used to make a modem - connection. If this object has the value switch(3), - then serialConnectSwitchConnectSeq will be used to establish - the connection over a serial data switch, and - serialConnectSwitchDisconnectSeq will be used to terminate - the connection. If this object has the value - modem-switch(4), then a modem connection will be made first, - followed by the switch connection. - - This object may not be modified if the associated - serialConnectStatus object is equal to active(1)." - DEFVAL { direct } - ::= { serialConnectionEntry 3 } - -serialConnectDialString OBJECT-TYPE - SYNTAX ControlString (SIZE(0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A control string that specifies how to dial the phone - number in order to establish a modem connection. The - string should include the dialing prefix and suffix. For - example: '^s^MATD9,888-1234^M' will instruct the Probe - to send a carriage return, followed by the dialing prefix - 'ATD', the phone number '9,888-1234', and a carriage - return as the dialing suffix. - - This object may not be modified if the associated - serialConnectStatus object is equal to active(1)." - ::= { serialConnectionEntry 4 } - -serialConnectSwitchConnectSeq OBJECT-TYPE - SYNTAX ControlString (SIZE(0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A control string that specifies how to establish a - data switch connection. - - This object may not be modified if the associated - serialConnectStatus object is equal to active(1)." - ::= { serialConnectionEntry 5 } - -serialConnectSwitchDisconnectSeq OBJECT-TYPE - SYNTAX ControlString (SIZE(0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A control string that specifies how to terminate a - data switch connection. - - This object may not be modified if the associated - serialConnectStatus object is equal to active(1)." - ::= { serialConnectionEntry 6 } - -serialConnectSwitchResetSeq OBJECT-TYPE - SYNTAX ControlString (SIZE(0..255)) - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "A control string that specifies how to reset a data - switch in the event of a timeout. - - This object may not be modified if the associated - serialConnectStatus object is equal to active(1)." - ::= { serialConnectionEntry 7 } - -serialConnectOwner OBJECT-TYPE - SYNTAX OwnerString - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { serialConnectionEntry 8 } - -serialConnectStatus OBJECT-TYPE - SYNTAX RowStatus - MAX-ACCESS read-create - STATUS deprecated - DESCRIPTION - "The status of this serialConnectionEntry. - - If the manager attempts to set this object to active(1) when - the serialConnectType is set to modem(2) or modem-switch(4) - and the serialConnectDialString is a zero-length string or - cannot be correctly parsed as a ConnectString, the set - request will be rejected with badValue(3). - - If the manager attempts to set this object to active(1) when - the serialConnectType is set to switch(3) or modem-switch(4) - and the serialConnectSwitchConnectSeq, - the serialConnectSwitchDisconnectSeq, or - - - - - the serialConnectSwitchResetSeq is a zero-length string - or cannot be correctly parsed as a ConnectString, the set - request will be rejected with badValue(3). - - An entry may not exist in the active state unless all - objects in the entry have an appropriate value." - ::= { serialConnectionEntry 9 } - --- --- Extensions to the RMON 1 MIB for RMON 2 devices --- --- These extensions include the standard LastCreateTime Textual --- Convention for all control tables, as well as an augmentation of --- the filter entry that provides variable-length offsets into --- packets. --- Each of the following, except for filterDroppedFrames, is a --- read-only object which, if implemented, automatically appears when --- the RMON1 row it is associated with is created. - -etherStats2Table OBJECT-TYPE - SYNTAX SEQUENCE OF EtherStats2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - ::= { statistics 4 } - -etherStats2Entry OBJECT-TYPE - SYNTAX EtherStats2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { etherStatsEntry } - ::= { etherStats2Table 1 } - -EtherStats2Entry ::= SEQUENCE { - etherStatsDroppedFrames Counter32, - etherStatsCreateTime LastCreateTime -} - -etherStatsDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - - - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { etherStats2Entry 1 } - -etherStatsCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { etherStats2Entry 2 } - -historyControl2Table OBJECT-TYPE - SYNTAX SEQUENCE OF HistoryControl2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - ::= { history 5 } - -historyControl2Entry OBJECT-TYPE - SYNTAX HistoryControl2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { historyControlEntry } - ::= { historyControl2Table 1 } - -HistoryControl2Entry ::= SEQUENCE { - historyControlDroppedFrames Counter32 -} - -historyControlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - - - - - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { historyControl2Entry 1 } - -hostControl2Table OBJECT-TYPE - SYNTAX SEQUENCE OF HostControl2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - ::= { hosts 4 } - -hostControl2Entry OBJECT-TYPE - SYNTAX HostControl2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { hostControlEntry } - ::= { hostControl2Table 1 } - -HostControl2Entry ::= SEQUENCE { - hostControlDroppedFrames Counter32, - hostControlCreateTime LastCreateTime -} - -hostControlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - - - - - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { hostControl2Entry 1 } - -hostControlCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { hostControl2Entry 2 } - -matrixControl2Table OBJECT-TYPE - SYNTAX SEQUENCE OF MatrixControl2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - ::= { matrix 4 } - -matrixControl2Entry OBJECT-TYPE - SYNTAX MatrixControl2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { matrixControlEntry } - ::= { matrixControl2Table 1 } - -MatrixControl2Entry ::= SEQUENCE { - matrixControlDroppedFrames Counter32, - matrixControlCreateTime LastCreateTime -} - -matrixControlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - - - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { matrixControl2Entry 1 } - -matrixControlCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { matrixControl2Entry 2 } - -channel2Table OBJECT-TYPE - SYNTAX SEQUENCE OF Channel2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - ::= { filter 3 } - -channel2Entry OBJECT-TYPE - SYNTAX Channel2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { channelEntry } - ::= { channel2Table 1 } - -Channel2Entry ::= SEQUENCE { - channelDroppedFrames Counter32, - channelCreateTime LastCreateTime -} - -channelDroppedFrames OBJECT-TYPE - - - - - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { channel2Entry 1 } - -channelCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { channel2Entry 2 } - -tokenRingMLStats2Table OBJECT-TYPE - SYNTAX SEQUENCE OF TokenRingMLStats2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability - to meet the requirements of a Draft Standard." - ::= { statistics 5 } - -tokenRingMLStats2Entry OBJECT-TYPE - SYNTAX TokenRingMLStats2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { tokenRingMLStatsEntry } - ::= { tokenRingMLStats2Table 1 } - -TokenRingMLStats2Entry ::= SEQUENCE { - tokenRingMLStatsDroppedFrames Counter32, - tokenRingMLStatsCreateTime LastCreateTime -} - -tokenRingMLStatsDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { tokenRingMLStats2Entry 1 } - -tokenRingMLStatsCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { tokenRingMLStats2Entry 2 } - -tokenRingPStats2Table OBJECT-TYPE - SYNTAX SEQUENCE OF TokenRingPStats2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability - to meet the requirements of a Draft Standard." - ::= { statistics 6 } - - -tokenRingPStats2Entry OBJECT-TYPE - SYNTAX TokenRingPStats2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { tokenRingPStatsEntry } - ::= { tokenRingPStats2Table 1 } - -TokenRingPStats2Entry ::= SEQUENCE { - tokenRingPStatsDroppedFrames Counter32, - tokenRingPStatsCreateTime LastCreateTime -} - -tokenRingPStatsDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { tokenRingPStats2Entry 1 } - -tokenRingPStatsCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { tokenRingPStats2Entry 2 } - -ringStationControl2Table OBJECT-TYPE - SYNTAX SEQUENCE OF RingStationControl2Entry - MAX-ACCESS not-accessible - STATUS deprecated - - - - - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability - to meet the requirements of a Draft Standard." - ::= { tokenRing 7 } - -ringStationControl2Entry OBJECT-TYPE - SYNTAX RingStationControl2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { ringStationControlEntry } - ::= { ringStationControl2Table 1 } - -RingStationControl2Entry ::= SEQUENCE { - ringStationControlDroppedFrames Counter32, - ringStationControlCreateTime LastCreateTime -} - -ringStationControlDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { ringStationControl2Entry 1 } - -ringStationControlCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - - - - - ensure that the table has not been deleted and recreated - between polls." - ::= { ringStationControl2Entry 2 } - -sourceRoutingStats2Table OBJECT-TYPE - SYNTAX SEQUENCE OF SourceRoutingStats2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1. - - This table has been deprecated, as it has not had enough - independent implementations to demonstrate interoperability - to meet the requirements of a Draft Standard." - ::= { tokenRing 8 } - -sourceRoutingStats2Entry OBJECT-TYPE - SYNTAX SourceRoutingStats2Entry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Contains the RMON-2 augmentations to RMON-1." - AUGMENTS { sourceRoutingStatsEntry } - ::= { sourceRoutingStats2Table 1 } - -SourceRoutingStats2Entry ::= SEQUENCE { - sourceRoutingStatsDroppedFrames Counter32, - sourceRoutingStatsCreateTime LastCreateTime -} - -sourceRoutingStatsDroppedFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The total number of frames that were received by the probe - and therefore not accounted for in the *StatsDropEvents, but - that the probe chose not to count for this entry for - whatever reason. Most often, this event occurs when the - probe is out of some resources and decides to shed load from - this collection. - - This count does not include packets that were not counted - because they had MAC-layer errors. - - Note that, unlike the dropEvents counter, this number is the - exact number of frames dropped." - ::= { sourceRoutingStats2Entry 1 } - - -sourceRoutingStatsCreateTime OBJECT-TYPE - SYNTAX LastCreateTime - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The value of sysUpTime when this control entry was last - activated. This can be used by the management station to - ensure that the table has not been deleted and recreated - between polls." - ::= { sourceRoutingStats2Entry 2 } - -filter2Table OBJECT-TYPE - SYNTAX SEQUENCE OF Filter2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Provides a variable-length packet filter feature to the - RMON-1 filter table." - ::= { filter 4 } - -filter2Entry OBJECT-TYPE - SYNTAX Filter2Entry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Provides a variable-length packet filter feature to the - RMON-1 filter table." - AUGMENTS { filterEntry } - ::= { filter2Table 1 } - -Filter2Entry ::= SEQUENCE { - filterProtocolDirDataLocalIndex Integer32, - filterProtocolDirLocalIndex Integer32 -} - -filterProtocolDirDataLocalIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "When this object is set to a non-zero value, the filter that - it is associated with performs the following operations on - every packet: - - 1) If the packet doesn't match the protocol directory entry - identified by this object, discard the packet and exit - (i.e., discard the packet if it is not of the identified - protocol). - 2) If the associated filterProtocolDirLocalIndex is non-zero - and the packet doesn't match the protocol directory - entry identified by that object, discard the packet and - exit. - 3) If the packet matches, perform the regular filter - algorithm as if the beginning of this named protocol is - the beginning of the packet, potentially applying the - filterOffset value to move further into the packet." - DEFVAL { 0 } - ::= { filter2Entry 1 } - -filterProtocolDirLocalIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-create - STATUS current - DESCRIPTION - "When this object is set to a non-zero value, the filter that - it is associated with will discard the packet if the packet - doesn't match this protocol directory entry." - DEFVAL { 0 } - ::= { filter2Entry 2 } - --- Conformance Macros - -rmon2MIBCompliances OBJECT IDENTIFIER ::= { rmonConformance 1 } -rmon2MIBGroups OBJECT IDENTIFIER ::= { rmonConformance 2 } - - -rmon2MIBCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "Describes the requirements for conformance to - the RMON2 MIB" - MODULE -- this module - MANDATORY-GROUPS { protocolDirectoryGroup, - protocolDistributionGroup, - addressMapGroup, - nlHostGroup, - nlMatrixGroup, - usrHistoryGroup, - probeInformationGroup } - - OBJECT nlMatrixTopNControlRateBase - SYNTAX INTEGER { - nlMatrixTopNPkts(1), - nlMatrixTopNOctets(2) - } - DESCRIPTION - - - - - "Conformance to RMON2 requires only support for these - values of nlMatrixTopNControlRateBase." - - GROUP rmon1EnhancementGroup - DESCRIPTION - "The rmon1EnhancementGroup is mandatory for systems - that implement RMON [RFC2819]." - GROUP rmon1EthernetEnhancementGroup - DESCRIPTION - "The rmon1EthernetEnhancementGroup is optional and is - appropriate for systems that implement the Ethernet - group of RMON [RFC2819]." - ::= { rmon2MIBCompliances 1 } - -rmon2MIBApplicationLayerCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "Describes the requirements for conformance to - the RMON2 MIB with Application-Layer Enhancements." - MODULE -- this module - MANDATORY-GROUPS { protocolDirectoryGroup, - protocolDistributionGroup, - addressMapGroup, - nlHostGroup, - nlMatrixGroup, - alHostGroup, - alMatrixGroup, - usrHistoryGroup, - probeInformationGroup } - - OBJECT nlMatrixTopNControlRateBase - SYNTAX INTEGER { - nlMatrixTopNPkts(1), - nlMatrixTopNOctets(2) - } - DESCRIPTION - "Conformance to RMON2 requires only support for these - values of nlMatrixTopNControlRateBase." - - OBJECT alMatrixTopNControlRateBase - SYNTAX INTEGER { - alMatrixTopNTerminalsPkts(1), - alMatrixTopNTerminalsOctets(2), - alMatrixTopNAllPkts(3), - alMatrixTopNAllOctets(4) - } - DESCRIPTION - "Conformance to RMON2 requires only support for these - - - - - values of alMatrixTopNControlRateBase." - - GROUP rmon1EnhancementGroup - DESCRIPTION - "The rmon1EnhancementGroup is mandatory for systems - that implement RMON [RFC2819]." - GROUP rmon1EthernetEnhancementGroup - DESCRIPTION - "The rmon1EthernetEnhancementGroup is optional and is - appropriate for systems that implement the Ethernet - group of RMON [RFC2819]." - ::= { rmon2MIBCompliances 2 } - - -protocolDirectoryGroup OBJECT-GROUP - OBJECTS { protocolDirLastChange, - protocolDirLocalIndex, protocolDirDescr, - protocolDirType, protocolDirAddressMapConfig, - protocolDirHostConfig, protocolDirMatrixConfig, - protocolDirOwner, protocolDirStatus } - STATUS current - DESCRIPTION - "Lists the inventory of protocols the probe has the - capability of monitoring and allows the addition, deletion, - and configuration of entries in this list." - ::= { rmon2MIBGroups 1 } - -protocolDistributionGroup OBJECT-GROUP - OBJECTS { protocolDistControlDataSource, - protocolDistControlDroppedFrames, - protocolDistControlCreateTime, - protocolDistControlOwner, protocolDistControlStatus, - protocolDistStatsPkts, protocolDistStatsOctets } - STATUS current - DESCRIPTION - "Collects the relative amounts of octets and packets for the - different protocols detected on a network segment." - ::= { rmon2MIBGroups 2 } - -addressMapGroup OBJECT-GROUP - OBJECTS { addressMapInserts, addressMapDeletes, - addressMapMaxDesiredEntries, - addressMapControlDataSource, - addressMapControlDroppedFrames, - addressMapControlOwner, addressMapControlStatus, - addressMapPhysicalAddress, - addressMapLastChange } - STATUS current - - - - - DESCRIPTION - "Lists MAC address to network address bindings discovered by - the probe and what interface they were last seen on." - ::= { rmon2MIBGroups 3 } - -nlHostGroup OBJECT-GROUP - OBJECTS { hlHostControlDataSource, - hlHostControlNlDroppedFrames, hlHostControlNlInserts, - hlHostControlNlDeletes, - hlHostControlNlMaxDesiredEntries, - hlHostControlAlDroppedFrames, hlHostControlAlInserts, - hlHostControlAlDeletes, - hlHostControlAlMaxDesiredEntries, hlHostControlOwner, - hlHostControlStatus, nlHostInPkts, nlHostOutPkts, - nlHostInOctets, nlHostOutOctets, - nlHostOutMacNonUnicastPkts, nlHostCreateTime } - STATUS current - DESCRIPTION - "Counts the amount of traffic sent from and to each network - address discovered by the probe. Note that while the - hlHostControlTable also has objects that control an optional - alHostTable, implementation of the alHostTable is not - required to fully implement this group." - ::= { rmon2MIBGroups 4 } - -nlMatrixGroup OBJECT-GROUP - OBJECTS { hlMatrixControlDataSource, - hlMatrixControlNlDroppedFrames, - hlMatrixControlNlInserts, hlMatrixControlNlDeletes, - hlMatrixControlNlMaxDesiredEntries, - hlMatrixControlAlDroppedFrames, - hlMatrixControlAlInserts, hlMatrixControlAlDeletes, - hlMatrixControlAlMaxDesiredEntries, - hlMatrixControlOwner, hlMatrixControlStatus, - nlMatrixSDPkts, nlMatrixSDOctets, nlMatrixSDCreateTime, - nlMatrixDSPkts, nlMatrixDSOctets, nlMatrixDSCreateTime, - nlMatrixTopNControlMatrixIndex, - nlMatrixTopNControlRateBase, - nlMatrixTopNControlTimeRemaining, - nlMatrixTopNControlGeneratedReports, - nlMatrixTopNControlDuration, - nlMatrixTopNControlRequestedSize, - nlMatrixTopNControlGrantedSize, - nlMatrixTopNControlStartTime, - nlMatrixTopNControlOwner, nlMatrixTopNControlStatus, - nlMatrixTopNProtocolDirLocalIndex, - nlMatrixTopNSourceAddress, nlMatrixTopNDestAddress, - nlMatrixTopNPktRate, nlMatrixTopNReversePktRate, - nlMatrixTopNOctetRate, nlMatrixTopNReverseOctetRate } - STATUS current - DESCRIPTION - "Counts the amount of traffic sent between each pair of - network addresses discovered by the probe. Note that while - the hlMatrixControlTable also has objects that control - optional alMatrixTables, implementation of the - alMatrixTables is not required to fully implement this - group." - ::= { rmon2MIBGroups 5 } - -alHostGroup OBJECT-GROUP - OBJECTS { alHostInPkts, alHostOutPkts, - alHostInOctets, alHostOutOctets, alHostCreateTime } - STATUS current - DESCRIPTION - "Counts the amount of traffic, by protocol, sent from and to - each network address discovered by the probe. Implementation - of this group requires implementation of the Network-Layer - Host Group." - ::= { rmon2MIBGroups 6 } - -alMatrixGroup OBJECT-GROUP - OBJECTS { alMatrixSDPkts, alMatrixSDOctets, alMatrixSDCreateTime, - alMatrixDSPkts, alMatrixDSOctets, alMatrixDSCreateTime, - alMatrixTopNControlMatrixIndex, - alMatrixTopNControlRateBase, - alMatrixTopNControlTimeRemaining, - alMatrixTopNControlGeneratedReports, - alMatrixTopNControlDuration, - alMatrixTopNControlRequestedSize, - alMatrixTopNControlGrantedSize, - alMatrixTopNControlStartTime, - alMatrixTopNControlOwner, alMatrixTopNControlStatus, - alMatrixTopNProtocolDirLocalIndex, - alMatrixTopNSourceAddress, alMatrixTopNDestAddress, - alMatrixTopNAppProtocolDirLocalIndex, - alMatrixTopNPktRate, alMatrixTopNReversePktRate, - alMatrixTopNOctetRate, alMatrixTopNReverseOctetRate } - STATUS current - DESCRIPTION - "Counts the amount of traffic, by protocol, sent between each - pair of network addresses discovered by the - probe. Implementation of this group requires implementation - of the Network-Layer Matrix Group." - ::= { rmon2MIBGroups 7 } - -usrHistoryGroup OBJECT-GROUP - - - - - OBJECTS { usrHistoryControlObjects, - usrHistoryControlBucketsRequested, - usrHistoryControlBucketsGranted, - usrHistoryControlInterval, - usrHistoryControlOwner, usrHistoryControlStatus, - usrHistoryObjectVariable, usrHistoryObjectSampleType, - usrHistoryIntervalStart, usrHistoryIntervalEnd, - usrHistoryAbsValue, usrHistoryValStatus } - STATUS current - DESCRIPTION - "The usrHistoryGroup provides user-defined collection of - historical information from MIB objects on the probe." - ::= { rmon2MIBGroups 8 } - -probeInformationGroup OBJECT-GROUP - OBJECTS { probeCapabilities, - probeSoftwareRev, probeHardwareRev, probeDateTime } - STATUS current - DESCRIPTION - "This group describes various operating parameters of the - probe and controls the local time of the probe." - ::= { rmon2MIBGroups 9 } - -probeConfigurationGroup OBJECT-GROUP - OBJECTS { probeResetControl, probeDownloadFile, - probeDownloadTFTPServer, probeDownloadAction, - probeDownloadStatus, - serialMode, serialProtocol, serialTimeout, - serialModemInitString, serialModemHangUpString, - serialModemConnectResp, serialModemNoConnectResp, - serialDialoutTimeout, serialStatus, - netConfigIPAddress, netConfigSubnetMask, - netConfigStatus, netDefaultGateway, - trapDestCommunity, trapDestProtocol, trapDestAddress, - trapDestOwner, trapDestStatus, - serialConnectDestIpAddress, serialConnectType, - serialConnectDialString, serialConnectSwitchConnectSeq, - serialConnectSwitchDisconnectSeq, - serialConnectSwitchResetSeq, - serialConnectOwner, serialConnectStatus } - STATUS deprecated - DESCRIPTION - "This group controls the configuration of various operating - parameters of the probe. This group is not referenced by any - MODULE-COMPLIANCE macro because it is 'grandfathered' from - more recent MIB review rules that would require it." - ::= { rmon2MIBGroups 10 } - -rmon1EnhancementGroup OBJECT-GROUP - OBJECTS { historyControlDroppedFrames, hostControlDroppedFrames, - hostControlCreateTime, matrixControlDroppedFrames, - matrixControlCreateTime, channelDroppedFrames, - channelCreateTime, filterProtocolDirDataLocalIndex, - filterProtocolDirLocalIndex } - STATUS current - DESCRIPTION - "This group adds some enhancements to RMON-1 that help - management stations." - ::= { rmon2MIBGroups 11 } - -rmon1EthernetEnhancementGroup OBJECT-GROUP - OBJECTS { etherStatsDroppedFrames, etherStatsCreateTime } - STATUS current - DESCRIPTION - "This group adds some enhancements to RMON-1 that help - management stations." - ::= { rmon2MIBGroups 12 } - -rmon1TokenRingEnhancementGroup OBJECT-GROUP - OBJECTS { tokenRingMLStatsDroppedFrames, - tokenRingMLStatsCreateTime, - tokenRingPStatsDroppedFrames, tokenRingPStatsCreateTime, - ringStationControlDroppedFrames, - ringStationControlCreateTime, - sourceRoutingStatsDroppedFrames, - sourceRoutingStatsCreateTime } - STATUS deprecated - DESCRIPTION - "This group adds some enhancements to RMON-1 that help - management stations. This group is not referenced by any - MODULE-COMPLIANCE macro because it is 'grandfathered' from - more recent MIB review rules that would require it." - ::= { rmon2MIBGroups 13 } -END diff --git a/mibs/orig/SNMP-FRAMEWORK-MIB b/mibs/orig/SNMP-FRAMEWORK-MIB deleted file mode 100644 index f87d8b8..0000000 --- a/mibs/orig/SNMP-FRAMEWORK-MIB +++ /dev/null @@ -1,538 +0,0 @@ -SNMP-FRAMEWORK-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, - OBJECT-IDENTITY, - snmpModules FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF; - -snmpFrameworkMIB MODULE-IDENTITY - LAST-UPDATED "200210140000Z" - ORGANIZATION "SNMPv3 Working Group" - CONTACT-INFO "WG-EMail: snmpv3@lists.tislabs.com - Subscribe: snmpv3-request@lists.tislabs.com - - Co-Chair: Russ Mundy - Network Associates Laboratories - postal: 15204 Omega Drive, Suite 300 - Rockville, MD 20850-4601 - USA - EMail: mundy@tislabs.com - phone: +1 301-947-7107 - - Co-Chair & - Co-editor: David Harrington - Enterasys Networks - postal: 35 Industrial Way - P. O. Box 5005 - Rochester, New Hampshire 03866-5005 - USA - EMail: dbh@enterasys.com - phone: +1 603-337-2614 - - Co-editor: Randy Presuhn - BMC Software, Inc. - postal: 2141 North First Street - San Jose, California 95131 - USA - EMail: randy_presuhn@bmc.com - phone: +1 408-546-1006 - - Co-editor: Bert Wijnen - Lucent Technologies - postal: Schagen 33 - 3461 GL Linschoten - Netherlands - - - EMail: bwijnen@lucent.com - phone: +31 348-680-485 - " - DESCRIPTION "The SNMP Management Architecture MIB - - Copyright (C) The Internet Society (2002). This - version of this MIB module is part of RFC 3411; - see the RFC itself for full legal notices. - " - - REVISION "200210140000Z" -- 14 October 2002 - DESCRIPTION "Changes in this revision: - - Updated various administrative information. - - Corrected some typos. - - Corrected typo in description of SnmpEngineID - that led to range overlap for 127. - - Changed '255a' to '255t' in definition of - SnmpAdminString to align with current SMI. - - Reworded 'reserved' for value zero in - DESCRIPTION of SnmpSecurityModel. - - The algorithm for allocating security models - should give 256 per enterprise block, rather - than 255. - - The example engine ID of 'abcd' is not - legal. Replaced with '800002b804616263'H based - on example enterprise 696, string 'abc'. - - Added clarification that engineID should - persist across re-initializations. - This revision published as RFC 3411. - " - REVISION "199901190000Z" -- 19 January 1999 - DESCRIPTION "Updated editors' addresses, fixed typos. - Published as RFC 2571. - " - REVISION "199711200000Z" -- 20 November 1997 - DESCRIPTION "The initial version, published in RFC 2271. - " - ::= { snmpModules 10 } - - -- Textual Conventions used in the SNMP Management Architecture *** - -SnmpEngineID ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "An SNMP engine's administratively-unique identifier. - Objects of this type are for identification, not for - addressing, even though it is possible that an - address may have been used in the generation of - a specific value. - - - The value for this object may not be all zeros or - all 'ff'H or the empty (zero length) string. - - The initial value for this object may be configured - via an operator console entry or via an algorithmic - function. In the latter case, the following - example algorithm is recommended. - - In cases where there are multiple engines on the - same system, the use of this algorithm is NOT - appropriate, as it would result in all of those - engines ending up with the same ID value. - - 1) The very first bit is used to indicate how the - rest of the data is composed. - - 0 - as defined by enterprise using former methods - that existed before SNMPv3. See item 2 below. - - 1 - as defined by this architecture, see item 3 - below. - - Note that this allows existing uses of the - engineID (also known as AgentID [RFC1910]) to - co-exist with any new uses. - - 2) The snmpEngineID has a length of 12 octets. - - The first four octets are set to the binary - equivalent of the agent's SNMP management - private enterprise number as assigned by the - Internet Assigned Numbers Authority (IANA). - For example, if Acme Networks has been assigned - { enterprises 696 }, the first four octets would - be assigned '000002b8'H. - - The remaining eight octets are determined via - one or more enterprise-specific methods. Such - methods must be designed so as to maximize the - possibility that the value of this object will - be unique in the agent's administrative domain. - For example, it may be the IP address of the SNMP - entity, or the MAC address of one of the - interfaces, with each address suitably padded - with random octets. If multiple methods are - defined, then it is recommended that the first - octet indicate the method being used and the - remaining octets be a function of the method. - - - 3) The length of the octet string varies. - - The first four octets are set to the binary - equivalent of the agent's SNMP management - private enterprise number as assigned by the - Internet Assigned Numbers Authority (IANA). - For example, if Acme Networks has been assigned - { enterprises 696 }, the first four octets would - be assigned '000002b8'H. - - The very first bit is set to 1. For example, the - above value for Acme Networks now changes to be - '800002b8'H. - - The fifth octet indicates how the rest (6th and - following octets) are formatted. The values for - the fifth octet are: - - 0 - reserved, unused. - - 1 - IPv4 address (4 octets) - lowest non-special IP address - - 2 - IPv6 address (16 octets) - lowest non-special IP address - - 3 - MAC address (6 octets) - lowest IEEE MAC address, canonical - order - - 4 - Text, administratively assigned - Maximum remaining length 27 - - 5 - Octets, administratively assigned - Maximum remaining length 27 - - 6-127 - reserved, unused - - 128-255 - as defined by the enterprise - Maximum remaining length 27 - " - SYNTAX OCTET STRING (SIZE(5..32)) - - -SnmpSecurityModel ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "An identifier that uniquely identifies a - Security Model of the Security Subsystem within - this SNMP Management Architecture. - - The values for securityModel are allocated as - follows: - - - The zero value does not identify any particular - security model. - - - Values between 1 and 255, inclusive, are reserved - for standards-track Security Models and are - managed by the Internet Assigned Numbers Authority - (IANA). - - Values greater than 255 are allocated to - enterprise-specific Security Models. An - enterprise-specific securityModel value is defined - to be: - - enterpriseID * 256 + security model within - enterprise - - For example, the fourth Security Model defined by - the enterprise whose enterpriseID is 1 would be - 259. - - This scheme for allocation of securityModel - values allows for a maximum of 255 standards- - based Security Models, and for a maximum of - 256 Security Models per enterprise. - - It is believed that the assignment of new - securityModel values will be rare in practice - because the larger the number of simultaneously - utilized Security Models, the larger the - chance that interoperability will suffer. - Consequently, it is believed that such a range - will be sufficient. In the unlikely event that - the standards committee finds this number to be - insufficient over time, an enterprise number - can be allocated to obtain an additional 256 - possible values. - - Note that the most significant bit must be zero; - hence, there are 23 bits allocated for various - organizations to design and define non-standard - - - securityModels. This limits the ability to - define new proprietary implementations of Security - Models to the first 8,388,608 enterprises. - - It is worthwhile to note that, in its encoded - form, the securityModel value will normally - require only a single byte since, in practice, - the leftmost bits will be zero for most messages - and sign extension is suppressed by the encoding - rules. - - As of this writing, there are several values - of securityModel defined for use with SNMP or - reserved for use with supporting MIB objects. - They are as follows: - - 0 reserved for 'any' - 1 reserved for SNMPv1 - 2 reserved for SNMPv2c - 3 User-Based Security Model (USM) - " - SYNTAX INTEGER(0 .. 2147483647) - -SnmpMessageProcessingModel ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "An identifier that uniquely identifies a Message - Processing Model of the Message Processing - Subsystem within this SNMP Management Architecture. - - The values for messageProcessingModel are - allocated as follows: - - - Values between 0 and 255, inclusive, are - reserved for standards-track Message Processing - Models and are managed by the Internet Assigned - Numbers Authority (IANA). - - - Values greater than 255 are allocated to - enterprise-specific Message Processing Models. - An enterprise messageProcessingModel value is - defined to be: - - enterpriseID * 256 + - messageProcessingModel within enterprise - - For example, the fourth Message Processing Model - defined by the enterprise whose enterpriseID - - - is 1 would be 259. - - This scheme for allocating messageProcessingModel - values allows for a maximum of 255 standards- - based Message Processing Models, and for a - maximum of 256 Message Processing Models per - enterprise. - - It is believed that the assignment of new - messageProcessingModel values will be rare - in practice because the larger the number of - simultaneously utilized Message Processing Models, - the larger the chance that interoperability - will suffer. It is believed that such a range - will be sufficient. In the unlikely event that - the standards committee finds this number to be - insufficient over time, an enterprise number - can be allocated to obtain an additional 256 - possible values. - - Note that the most significant bit must be zero; - hence, there are 23 bits allocated for various - organizations to design and define non-standard - messageProcessingModels. This limits the ability - to define new proprietary implementations of - Message Processing Models to the first 8,388,608 - enterprises. - - It is worthwhile to note that, in its encoded - form, the messageProcessingModel value will - normally require only a single byte since, in - practice, the leftmost bits will be zero for - most messages and sign extension is suppressed - by the encoding rules. - - As of this writing, there are several values of - messageProcessingModel defined for use with SNMP. - They are as follows: - - 0 reserved for SNMPv1 - 1 reserved for SNMPv2c - 2 reserved for SNMPv2u and SNMPv2* - 3 reserved for SNMPv3 - " - SYNTAX INTEGER(0 .. 2147483647) - - -SnmpSecurityLevel ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "A Level of Security at which SNMP messages can be - sent or with which operations are being processed; - in particular, one of: - - noAuthNoPriv - without authentication and - without privacy, - authNoPriv - with authentication but - without privacy, - authPriv - with authentication and - with privacy. - - These three values are ordered such that - noAuthNoPriv is less than authNoPriv and - authNoPriv is less than authPriv. - " - SYNTAX INTEGER { noAuthNoPriv(1), - authNoPriv(2), - authPriv(3) - } - -SnmpAdminString ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255t" - STATUS current - DESCRIPTION "An octet string containing administrative - information, preferably in human-readable form. - - To facilitate internationalization, this - information is represented using the ISO/IEC - IS 10646-1 character set, encoded as an octet - string using the UTF-8 transformation format - described in [RFC2279]. - - Since additional code points are added by - amendments to the 10646 standard from time - to time, implementations must be prepared to - encounter any code point from 0x00000000 to - 0x7fffffff. Byte sequences that do not - correspond to the valid UTF-8 encoding of a - code point or are outside this range are - prohibited. - - The use of control codes should be avoided. - - When it is necessary to represent a newline, - the control code sequence CR LF should be used. - - - The use of leading or trailing white space should - be avoided. - - For code points not directly supported by user - interface hardware or software, an alternative - means of entry and display, such as hexadecimal, - may be provided. - - For information encoded in 7-bit US-ASCII, - the UTF-8 encoding is identical to the - US-ASCII encoding. - - UTF-8 may require multiple bytes to represent a - single character / code point; thus the length - of this object in octets may be different from - the number of characters encoded. Similarly, - size constraints refer to the number of encoded - octets, not the number of characters represented - by an encoding. - - Note that when this TC is used for an object that - is used or envisioned to be used as an index, then - a SIZE restriction MUST be specified so that the - number of sub-identifiers for any object instance - does not exceed the limit of 128, as defined by - [RFC3416]. - - Note that the size of an SnmpAdminString object is - measured in octets, not characters. - " - SYNTAX OCTET STRING (SIZE (0..255)) - --- Administrative assignments *************************************** - -snmpFrameworkAdmin - OBJECT IDENTIFIER ::= { snmpFrameworkMIB 1 } -snmpFrameworkMIBObjects - OBJECT IDENTIFIER ::= { snmpFrameworkMIB 2 } -snmpFrameworkMIBConformance - OBJECT IDENTIFIER ::= { snmpFrameworkMIB 3 } - --- the snmpEngine Group ******************************************** - -snmpEngine OBJECT IDENTIFIER ::= { snmpFrameworkMIBObjects 1 } - - -snmpEngineID OBJECT-TYPE - SYNTAX SnmpEngineID - MAX-ACCESS read-only - STATUS current - DESCRIPTION "An SNMP engine's administratively-unique identifier. - - This information SHOULD be stored in non-volatile - storage so that it remains constant across - re-initializations of the SNMP engine. - " - ::= { snmpEngine 1 } - -snmpEngineBoots OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of times that the SNMP engine has - (re-)initialized itself since snmpEngineID - was last configured. - " - ::= { snmpEngine 2 } - -snmpEngineTime OBJECT-TYPE - SYNTAX INTEGER (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of seconds since the value of - the snmpEngineBoots object last changed. - When incrementing this object's value would - cause it to exceed its maximum, - snmpEngineBoots is incremented as if a - re-initialization had occurred, and this - object's value consequently reverts to zero. - " - ::= { snmpEngine 3 } - -snmpEngineMaxMessageSize OBJECT-TYPE - SYNTAX INTEGER (484..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The maximum length in octets of an SNMP message - which this SNMP engine can send or receive and - process, determined as the minimum of the maximum - message size values supported among all of the - transports available to and supported by the engine. - " - ::= { snmpEngine 4 } - - --- Registration Points for Authentication and Privacy Protocols ** - -snmpAuthProtocols OBJECT-IDENTITY - STATUS current - DESCRIPTION "Registration point for standards-track - authentication protocols used in SNMP Management - Frameworks. - " - ::= { snmpFrameworkAdmin 1 } - -snmpPrivProtocols OBJECT-IDENTITY - STATUS current - DESCRIPTION "Registration point for standards-track privacy - protocols used in SNMP Management Frameworks. - " - ::= { snmpFrameworkAdmin 2 } - --- Conformance information ****************************************** - -snmpFrameworkMIBCompliances - OBJECT IDENTIFIER ::= {snmpFrameworkMIBConformance 1} -snmpFrameworkMIBGroups - OBJECT IDENTIFIER ::= {snmpFrameworkMIBConformance 2} - --- compliance statements - -snmpFrameworkMIBCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION "The compliance statement for SNMP engines which - implement the SNMP Management Framework MIB. - " - MODULE -- this module - MANDATORY-GROUPS { snmpEngineGroup } - - ::= { snmpFrameworkMIBCompliances 1 } - --- units of conformance - -snmpEngineGroup OBJECT-GROUP - OBJECTS { - snmpEngineID, - snmpEngineBoots, - snmpEngineTime, - snmpEngineMaxMessageSize - } - STATUS current - DESCRIPTION "A collection of objects for identifying and - determining the configuration and current timeliness - - - values of an SNMP engine. - " - ::= { snmpFrameworkMIBGroups 1 } - -END diff --git a/mibs/orig/SNMPv2-CONF b/mibs/orig/SNMPv2-CONF deleted file mode 100644 index d2c66ad..0000000 --- a/mibs/orig/SNMPv2-CONF +++ /dev/null @@ -1,19 +0,0 @@ --- ***************************************************************** --- SNMPv2-CONF.my: SNMPv2 Conformance MIB file --- --- May 1994, Jeffrey T. Johnson --- --- Copyright (c) 1994,1996 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** --- --- This mib was extracted from RFC 1904 --- All macro definitions have been removed because they are --- predefined in the mib compiler - -SNMPv2-CONF DEFINITIONS ::= BEGIN - --- everything is predefined in the mib compiler - -END diff --git a/mibs/orig/SNMPv2-MIB b/mibs/orig/SNMPv2-MIB deleted file mode 100644 index dc20ecd..0000000 --- a/mibs/orig/SNMPv2-MIB +++ /dev/null @@ -1,864 +0,0 @@ --- ***************************************************************** --- SNMPv2-MIB.my: Management Information Base (MIB) for the --- Simple Network Management Protocol (SNMP) --- --- March 2006, Wen Xu --- --- Copyright (c) 2006 by cisco Systems, Inc. --- All rights reserved. --- ***************************************************************** --- --- This mib was extracted from RFC 3418 - - -SNMPv2-MIB DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, - TimeTicks, Counter32, snmpModules, mib-2 - FROM SNMPv2-SMI - DisplayString, TestAndIncr, TimeStamp - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF; - - snmpMIB MODULE-IDENTITY - LAST-UPDATED "200210160000Z" - ORGANIZATION "IETF SNMPv3 Working Group" - CONTACT-INFO - "WG-EMail: snmpv3@lists.tislabs.com - Subscribe: snmpv3-request@lists.tislabs.com - - Co-Chair: Russ Mundy - Network Associates Laboratories - postal: 15204 Omega Drive, Suite 300 - Rockville, MD 20850-4601 - USA - EMail: mundy@tislabs.com - phone: +1 301 947-7107 - - Co-Chair: David Harrington - Enterasys Networks - postal: 35 Industrial Way - P. O. Box 5005 - Rochester, NH 03866-5005 - USA - EMail: dbh@enterasys.com - phone: +1 603 337-2614 - - Editor: Randy Presuhn - BMC Software, Inc. - postal: 2141 North First Street - San Jose, CA 95131 - USA - EMail: randy_presuhn@bmc.com - phone: +1 408 546-1006" - DESCRIPTION - "The MIB module for SNMP entities. - - Copyright (C) The Internet Society (2002). This - version of this MIB module is part of RFC 3418; - see the RFC itself for full legal notices. - " - REVISION "200210160000Z" - DESCRIPTION - "This revision of this MIB module was published as - RFC 3418." - REVISION "199511090000Z" - DESCRIPTION - "This revision of this MIB module was published as - RFC 1907." - REVISION "199304010000Z" - DESCRIPTION - "The initial revision of this MIB module was published - as RFC 1450." - ::= { snmpModules 1 } - - snmpMIBObjects OBJECT IDENTIFIER ::= { snmpMIB 1 } - - -- ::= { snmpMIBObjects 1 } this OID is obsolete - -- ::= { snmpMIBObjects 2 } this OID is obsolete - -- ::= { snmpMIBObjects 3 } this OID is obsolete - - -- the System group - -- - -- a collection of objects common to all managed systems. - - system OBJECT IDENTIFIER ::= { mib-2 1 } - - sysDescr OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the entity. This value should - include the full name and version identification of - the system's hardware type, software operating-system, - and networking software." - ::= { system 1 } - - sysObjectID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor's authoritative identification of the - network management subsystem contained in the entity. - This value is allocated within the SMI enterprises - subtree (1.3.6.1.4.1) and provides an easy and - unambiguous means for determining `what kind of box' is - being managed. For example, if vendor `Flintstones, - Inc.' was assigned the subtree 1.3.6.1.4.1.424242, - it could assign the identifier 1.3.6.1.4.1.424242.1.1 - to its `Fred Router'." - ::= { system 2 } - - sysUpTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The time (in hundredths of a second) since the - network management portion of the system was last - re-initialized." - ::= { system 3 } - - sysContact OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The textual identification of the contact person for - this managed node, together with information on how - to contact this person. If no contact information is - known, the value is the zero-length string." - ::= { system 4 } - - sysName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "An administratively-assigned name for this managed - node. By convention, this is the node's fully-qualified - domain name. If the name is unknown, the value is - the zero-length string." - ::= { system 5 } - - sysLocation OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The physical location of this node (e.g., 'telephone - closet, 3rd floor'). If the location is unknown, the - value is the zero-length string." - ::= { system 6 } - - sysServices OBJECT-TYPE - SYNTAX INTEGER (0..127) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A value which indicates the set of services that this - entity may potentially offer. The value is a sum. - This sum initially takes the value zero. Then, for - each layer, L, in the range 1 through 7, that this node - performs transactions for, 2 raised to (L - 1) is added - to the sum. For example, a node which performs only - routing functions would have a value of 4 (2^(3-1)). - In contrast, a node which is a host offering application - services would have a value of 72 (2^(4-1) + 2^(7-1)). - Note that in the context of the Internet suite of - protocols, values should be calculated accordingly: - - layer functionality - 1 physical (e.g., repeaters) - 2 datalink/subnetwork (e.g., bridges) - 3 internet (e.g., supports the IP) - 4 end-to-end (e.g., supports the TCP) - 7 applications (e.g., supports the SMTP) - - For systems including OSI protocols, layers 5 and 6 - may also be counted." - ::= { system 7 } - - -- object resource information - -- - -- a collection of objects which describe the SNMP entity's - -- (statically and dynamically configurable) support of - -- various MIB modules. - - sysORLastChange OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time of the most recent - change in state or value of any instance of sysORID." - ::= { system 8 } - - sysORTable OBJECT-TYPE - SYNTAX SEQUENCE OF SysOREntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The (conceptual) table listing the capabilities of - the local SNMP application acting as a command - responder with respect to various MIB modules. - SNMP entities having dynamically-configurable support - of MIB modules will have a dynamically-varying number - of conceptual rows." - ::= { system 9 } - - sysOREntry OBJECT-TYPE - SYNTAX SysOREntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry (conceptual row) in the sysORTable." - INDEX { sysORIndex } - ::= { sysORTable 1 } - - SysOREntry ::= SEQUENCE { - sysORIndex INTEGER, - sysORID OBJECT IDENTIFIER, - sysORDescr DisplayString, - sysORUpTime TimeStamp - } - - sysORIndex OBJECT-TYPE - SYNTAX INTEGER (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The auxiliary variable used for identifying instances - of the columnar objects in the sysORTable." - ::= { sysOREntry 1 } - - sysORID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An authoritative identification of a capabilities - statement with respect to various MIB modules supported - by the local SNMP application acting as a command - responder." - ::= { sysOREntry 2 } - - sysORDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the capabilities identified - by the corresponding instance of sysORID." - ::= { sysOREntry 3 } - - sysORUpTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time this conceptual - row was last instantiated." - ::= { sysOREntry 4 } - - -- the SNMP group - -- - -- a collection of objects providing basic instrumentation and - -- control of an SNMP entity. - - snmp OBJECT IDENTIFIER ::= { mib-2 11 } - - snmpInPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of messages delivered to the SNMP - entity from the transport service." - ::= { snmp 1 } - - snmpInBadVersions OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of SNMP messages which were delivered - to the SNMP entity and were for an unsupported SNMP - version." - ::= { snmp 3 } - - snmpInBadCommunityNames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of community-based SNMP messages (for - example, SNMPv1) delivered to the SNMP entity which - used an SNMP community name not known to said entity. - Also, implementations which authenticate community-based - SNMP messages using check(s) in addition to matching - the community name (for example, by also checking - whether the message originated from a transport address - allowed to use a specified community name) MAY include - in this value the number of messages which failed the - additional check(s). It is strongly RECOMMENDED that - the documentation for any security model which is used - to authenticate community-based SNMP messages specify - the precise conditions that contribute to this value." - ::= { snmp 4 } - - snmpInBadCommunityUses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of community-based SNMP messages (for - example, SNMPv1) delivered to the SNMP entity which - represented an SNMP operation that was not allowed for - the SNMP community named in the message. The precise - conditions under which this counter is incremented - (if at all) depend on how the SNMP entity implements - its access control mechanism and how its applications - interact with that access control mechanism. It is - strongly RECOMMENDED that the documentation for any - access control mechanism which is used to control access - to and visibility of MIB instrumentation specify the - precise conditions that contribute to this value." - ::= { snmp 5 } - - snmpInASNParseErrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of ASN.1 or BER errors encountered by - the SNMP entity when decoding received SNMP messages." - ::= { snmp 6 } - - snmpEnableAuthenTraps OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Indicates whether the SNMP entity is permitted to - generate authenticationFailure traps. The value of this - object overrides any configuration information; as such, - it provides a means whereby all authenticationFailure - traps may be disabled. - - Note that it is strongly recommended that this object - be stored in non-volatile memory so that it remains - constant across re-initializations of the network - management system." - ::= { snmp 30 } - - snmpSilentDrops OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of Confirmed Class PDUs (such as - GetRequest-PDUs, GetNextRequest-PDUs, - GetBulkRequest-PDUs, SetRequest-PDUs, and - InformRequest-PDUs) delivered to the SNMP entity which - were silently dropped because the size of a reply - containing an alternate Response Class PDU (such as a - Response-PDU) with an empty variable-bindings field - was greater than either a local constraint or the - maximum message size associated with the originator of - the request." - ::= { snmp 31 } - - snmpProxyDrops OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of Confirmed Class PDUs - (such as GetRequest-PDUs, GetNextRequest-PDUs, - GetBulkRequest-PDUs, SetRequest-PDUs, and - InformRequest-PDUs) delivered to the SNMP entity which - were silently dropped because the transmission of - the (possibly translated) message to a proxy target - failed in a manner (other than a time-out) such that - no Response Class PDU (such as a Response-PDU) could - be returned." - ::= { snmp 32 } - - -- information for notifications - -- - -- a collection of objects which allow the SNMP entity, when - -- supporting a notification originator application, - -- to be configured to generate SNMPv2-Trap-PDUs. - - snmpTrap OBJECT IDENTIFIER ::= { snmpMIBObjects 4 } - - snmpTrapOID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The authoritative identification of the notification - currently being sent. This variable occurs as - the second varbind in every SNMPv2-Trap-PDU and - InformRequest-PDU." - ::= { snmpTrap 1 } - - -- ::= { snmpTrap 2 } this OID is obsolete - - snmpTrapEnterprise OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS accessible-for-notify - STATUS current - DESCRIPTION - "The authoritative identification of the enterprise - associated with the trap currently being sent. When an - SNMP proxy agent is mapping an RFC1157 Trap-PDU - into a SNMPv2-Trap-PDU, this variable occurs as the - last varbind." - ::= { snmpTrap 3 } - - -- ::= { snmpTrap 4 } this OID is obsolete - - -- well-known traps - - snmpTraps OBJECT IDENTIFIER ::= { snmpMIBObjects 5 } - - coldStart NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "A coldStart trap signifies that the SNMP entity, - supporting a notification originator application, is - reinitializing itself and that its configuration may - have been altered." - ::= { snmpTraps 1 } - - warmStart NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "A warmStart trap signifies that the SNMP entity, - supporting a notification originator application, - is reinitializing itself such that its configuration - is unaltered." - ::= { snmpTraps 2 } - - -- Note the linkDown NOTIFICATION-TYPE ::= { snmpTraps 3 } - -- and the linkUp NOTIFICATION-TYPE ::= { snmpTraps 4 } - -- are defined in RFC 2863 [RFC2863] - - authenticationFailure NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "An authenticationFailure trap signifies that the SNMP - entity has received a protocol message that is not - properly authenticated. While all implementations - of SNMP entities MAY be capable of generating this - trap, the snmpEnableAuthenTraps object indicates - whether this trap will be generated." - ::= { snmpTraps 5 } - - -- Note the egpNeighborLoss notification is defined - -- as { snmpTraps 6 } in RFC 1213 - - -- the set group - -- - -- a collection of objects which allow several cooperating - -- command generator applications to coordinate their use of the - -- set operation. - - snmpSet OBJECT IDENTIFIER ::= { snmpMIBObjects 6 } - - snmpSetSerialNo OBJECT-TYPE - SYNTAX TestAndIncr - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "An advisory lock used to allow several cooperating - command generator applications to coordinate their - use of the SNMP set operation. - - This object is used for coarse-grain coordination. - To achieve fine-grain coordination, one or more similar - objects might be defined within each MIB group, as - appropriate." - ::= { snmpSet 1 } - - -- conformance information - - snmpMIBConformance - OBJECT IDENTIFIER ::= { snmpMIB 2 } - - snmpMIBCompliances - OBJECT IDENTIFIER ::= { snmpMIBConformance 1 } - snmpMIBGroups OBJECT IDENTIFIER ::= { snmpMIBConformance 2 } - - -- compliance statements - -- ::= { snmpMIBCompliances 1 } this OID is obsolete - snmpBasicCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for SNMPv2 entities which - implement the SNMPv2 MIB. - - This compliance statement is replaced by - snmpBasicComplianceRev2." - MODULE -- this module - MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup, - snmpBasicNotificationsGroup } - - GROUP snmpCommunityGroup1 - DESCRIPTION - "This group is mandatory for SNMPv2 entities which - support community-based authentication." - - ::= { snmpMIBCompliances 2 } - - snmpBasicComplianceRev2 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for SNMP entities which - implement this MIB module." - MODULE -- this module - MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup, - snmpBasicNotificationsGroup } - - GROUP snmpCommunityGroup1 - DESCRIPTION - "This group is mandatory for SNMP entities which - support community-based authentication." - - GROUP snmpWarmStartNotificationGroup - DESCRIPTION - "This group is mandatory for an SNMP entity which - supports command responder applications, and is - able to reinitialize itself such that its - configuration is unaltered." - - ::= { snmpMIBCompliances 3 } - - -- units of conformance - - -- ::= { snmpMIBGroups 1 } this OID is obsolete - -- ::= { snmpMIBGroups 2 } this OID is obsolete - -- ::= { snmpMIBGroups 3 } this OID is obsolete - -- ::= { snmpMIBGroups 4 } this OID is obsolete - - snmpGroup OBJECT-GROUP - OBJECTS { snmpInPkts, - snmpInBadVersions, - snmpInASNParseErrs, - snmpSilentDrops, - snmpProxyDrops, - snmpEnableAuthenTraps } - STATUS current - DESCRIPTION - "A collection of objects providing basic instrumentation - and control of an SNMP entity." - ::= { snmpMIBGroups 8 } - - snmpCommunityGroup1 OBJECT-GROUP - OBJECTS { snmpInBadCommunityNames, - snmpInBadCommunityUses } - STATUS current - DESCRIPTION - "A collection of objects providing basic instrumentation - of a SNMP entity which supports community-based - authentication." - ::= { snmpMIBGroups 9 } - - snmpSetGroup OBJECT-GROUP - OBJECTS { snmpSetSerialNo } - STATUS current - DESCRIPTION - "A collection of objects which allow several cooperating - command generator applications to coordinate their - use of the set operation." - ::= { snmpMIBGroups 5 } - - systemGroup OBJECT-GROUP - OBJECTS { sysDescr, sysObjectID, sysUpTime, - sysContact, sysName, sysLocation, - sysServices, - sysORLastChange, sysORID, - sysORUpTime, sysORDescr } - STATUS current - DESCRIPTION - "The system group defines objects which are common to all - managed systems." - ::= { snmpMIBGroups 6 } - - snmpBasicNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { coldStart, authenticationFailure } - STATUS current - DESCRIPTION - "The basic notifications implemented by an SNMP entity - supporting command responder applications." - ::= { snmpMIBGroups 7 } - - snmpWarmStartNotificationGroup NOTIFICATION-GROUP - NOTIFICATIONS { warmStart } - STATUS current - DESCRIPTION - "An additional notification for an SNMP entity supporting - command responder applications, if it is able to reinitialize - itself such that its configuration is unaltered." - ::= { snmpMIBGroups 11 } - - snmpNotificationGroup OBJECT-GROUP - OBJECTS { snmpTrapOID, snmpTrapEnterprise } - STATUS current - DESCRIPTION - "These objects are required for entities - which support notification originator applications." - ::= { snmpMIBGroups 12 } - - -- definitions in RFC 1213 made obsolete by the inclusion of a - -- subset of the snmp group in this MIB - - snmpOutPkts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Messages which were - passed from the SNMP protocol entity to the - transport service." - ::= { snmp 2 } - - -- { snmp 7 } is not used - - snmpInTooBigs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field was - `tooBig'." - ::= { snmp 8 } - - snmpInNoSuchNames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field was - `noSuchName'." - ::= { snmp 9 } - - snmpInBadValues OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were - delivered to the SNMP protocol entity and for - which the value of the error-status field was - `badValue'." - ::= { snmp 10 } - - snmpInReadOnlys OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number valid SNMP PDUs which were delivered - to the SNMP protocol entity and for which the value - of the error-status field was `readOnly'. It should - be noted that it is a protocol error to generate an - SNMP PDU which contains the value `readOnly' in the - error-status field, as such this object is provided - as a means of detecting incorrect implementations of - the SNMP." - ::= { snmp 11 } - - snmpInGenErrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were delivered - to the SNMP protocol entity and for which the value - of the error-status field was `genErr'." - ::= { snmp 12 } - - snmpInTotalReqVars OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of MIB objects which have been - retrieved successfully by the SNMP protocol entity - as the result of receiving valid SNMP Get-Request - and Get-Next PDUs." - ::= { snmp 13 } - - snmpInTotalSetVars OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of MIB objects which have been - altered successfully by the SNMP protocol entity as - the result of receiving valid SNMP Set-Request PDUs." - ::= { snmp 14 } - - snmpInGetRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Get-Request PDUs which - have been accepted and processed by the SNMP - protocol entity." - ::= { snmp 15 } - - snmpInGetNexts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Get-Next PDUs which have been - accepted and processed by the SNMP protocol entity." - ::= { snmp 16 } - - snmpInSetRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Set-Request PDUs which - have been accepted and processed by the SNMP protocol - entity." - ::= { snmp 17 } - - snmpInGetResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Get-Response PDUs which - have been accepted and processed by the SNMP protocol - entity." - ::= { snmp 18 } - - snmpInTraps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Trap PDUs which have been - accepted and processed by the SNMP protocol entity." - ::= { snmp 19 } - - snmpOutTooBigs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were generated - by the SNMP protocol entity and for which the value - of the error-status field was `tooBig.'" - ::= { snmp 20 } - - snmpOutNoSuchNames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were generated - by the SNMP protocol entity and for which the value - of the error-status was `noSuchName'." - ::= { snmp 21 } - - snmpOutBadValues OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were generated - by the SNMP protocol entity and for which the value - of the error-status field was `badValue'." - ::= { snmp 22 } - - -- { snmp 23 } is not used - - snmpOutGenErrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP PDUs which were generated - by the SNMP protocol entity and for which the value - of the error-status field was `genErr'." - ::= { snmp 24 } - - snmpOutGetRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Get-Request PDUs which - have been generated by the SNMP protocol entity." - ::= { snmp 25 } - - snmpOutGetNexts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Get-Next PDUs which have - been generated by the SNMP protocol entity." - ::= { snmp 26 } - - snmpOutSetRequests OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Set-Request PDUs which - have been generated by the SNMP protocol entity." - ::= { snmp 27 } - - snmpOutGetResponses OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Get-Response PDUs which - have been generated by the SNMP protocol entity." - ::= { snmp 28 } - - snmpOutTraps OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION - "The total number of SNMP Trap PDUs which have - been generated by the SNMP protocol entity." - ::= { snmp 29 } - - snmpObsoleteGroup OBJECT-GROUP - OBJECTS { snmpOutPkts, snmpInTooBigs, snmpInNoSuchNames, - snmpInBadValues, snmpInReadOnlys, snmpInGenErrs, - snmpInTotalReqVars, snmpInTotalSetVars, - snmpInGetRequests, snmpInGetNexts, snmpInSetRequests, - snmpInGetResponses, snmpInTraps, snmpOutTooBigs, - snmpOutNoSuchNames, snmpOutBadValues, - snmpOutGenErrs, snmpOutGetRequests, snmpOutGetNexts, - snmpOutSetRequests, snmpOutGetResponses, snmpOutTraps - } - STATUS obsolete - DESCRIPTION - "A collection of objects from RFC 1213 made obsolete - by this MIB module." - ::= { snmpMIBGroups 10 } - -END diff --git a/mibs/orig/SNMPv2-SMI b/mibs/orig/SNMPv2-SMI deleted file mode 100644 index 1c01e1d..0000000 --- a/mibs/orig/SNMPv2-SMI +++ /dev/null @@ -1,344 +0,0 @@ -SNMPv2-SMI DEFINITIONS ::= BEGIN - --- the path to the root - -org OBJECT IDENTIFIER ::= { iso 3 } -- "iso" = 1 -dod OBJECT IDENTIFIER ::= { org 6 } -internet OBJECT IDENTIFIER ::= { dod 1 } - -directory OBJECT IDENTIFIER ::= { internet 1 } - -mgmt OBJECT IDENTIFIER ::= { internet 2 } -mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } -transmission OBJECT IDENTIFIER ::= { mib-2 10 } - -experimental OBJECT IDENTIFIER ::= { internet 3 } - -private OBJECT IDENTIFIER ::= { internet 4 } -enterprises OBJECT IDENTIFIER ::= { private 1 } - -security OBJECT IDENTIFIER ::= { internet 5 } - -snmpV2 OBJECT IDENTIFIER ::= { internet 6 } - --- transport domains -snmpDomains OBJECT IDENTIFIER ::= { snmpV2 1 } - --- transport proxies -snmpProxys OBJECT IDENTIFIER ::= { snmpV2 2 } - --- module identities -snmpModules OBJECT IDENTIFIER ::= { snmpV2 3 } - --- Extended UTCTime, to allow dates with four-digit years --- (Note that this definition of ExtUTCTime is not to be IMPORTed --- by MIB modules.) -ExtUTCTime ::= OCTET STRING(SIZE(11 | 13)) - -- format is YYMMDDHHMMZ or YYYYMMDDHHMMZ - - -- where: YY - last two digits of year (only years - -- between 1900-1999) - -- YYYY - last four digits of the year (any year) - -- MM - month (01 through 12) - -- DD - day of month (01 through 31) - -- HH - hours (00 through 23) - -- MM - minutes (00 through 59) - -- Z - denotes GMT (the ASCII character Z) - -- - -- For example, "9502192015Z" and "199502192015Z" represent - -- 8:15pm GMT on 19 February 1995. Years after 1999 must use - -- the four digit year format. Years 1900-1999 may use the - -- two or four digit format. - --- definitions for information modules - -MODULE-IDENTITY MACRO ::= -BEGIN - TYPE NOTATION ::= - "LAST-UPDATED" value(Update ExtUTCTime) - "ORGANIZATION" Text - "CONTACT-INFO" Text - "DESCRIPTION" Text - RevisionPart - - VALUE NOTATION ::= - value(VALUE OBJECT IDENTIFIER) - - RevisionPart ::= - Revisions - | empty - Revisions ::= - Revision - | Revisions Revision - Revision ::= - "REVISION" value(Update ExtUTCTime) - "DESCRIPTION" Text - - -- a character string as defined in section 3.1.1 - Text ::= value(IA5String) -END - -OBJECT-IDENTITY MACRO ::= -BEGIN - TYPE NOTATION ::= - "STATUS" Status - "DESCRIPTION" Text - - ReferPart - - VALUE NOTATION ::= - value(VALUE OBJECT IDENTIFIER) - - Status ::= - "current" - | "deprecated" - | "obsolete" - - ReferPart ::= - "REFERENCE" Text - | empty - - -- a character string as defined in section 3.1.1 - Text ::= value(IA5String) -END - --- names of objects --- (Note that these definitions of ObjectName and NotificationName --- are not to be IMPORTed by MIB modules.) - -ObjectName ::= - OBJECT IDENTIFIER - -NotificationName ::= - OBJECT IDENTIFIER - --- syntax of objects - --- the "base types" defined here are: --- 3 built-in ASN.1 types: INTEGER, OCTET STRING, OBJECT IDENTIFIER --- 8 application-defined types: Integer32, IpAddress, Counter32, --- Gauge32, Unsigned32, TimeTicks, Opaque, and Counter64 - -ObjectSyntax ::= - CHOICE { - simple - SimpleSyntax, - -- note that SEQUENCEs for conceptual tables and - -- rows are not mentioned here... - - application-wide - ApplicationSyntax - } - --- built-in ASN.1 types - -SimpleSyntax ::= - CHOICE { - -- INTEGERs with a more restrictive range - -- may also be used - integer-value -- includes Integer32 - INTEGER (-2147483648..2147483647), - -- OCTET STRINGs with a more restrictive size - -- may also be used - string-value - OCTET STRING (SIZE (0..65535)), - objectID-value - OBJECT IDENTIFIER - } - --- indistinguishable from INTEGER, but never needs more than --- 32-bits for a two's complement representation -Integer32 ::= - INTEGER (-2147483648..2147483647) - --- application-wide types - -ApplicationSyntax ::= - CHOICE { - ipAddress-value - IpAddress, - counter-value - Counter32, - timeticks-value - TimeTicks, - arbitrary-value - Opaque, - big-counter-value - Counter64, - unsigned-integer-value -- includes Gauge32 - Unsigned32 - } - --- in network-byte order - --- (this is a tagged type for historical reasons) -IpAddress ::= - [APPLICATION 0] - IMPLICIT OCTET STRING (SIZE (4)) - --- this wraps -Counter32 ::= - [APPLICATION 1] - IMPLICIT INTEGER (0..4294967295) - --- this doesn't wrap -Gauge32 ::= - [APPLICATION 2] - IMPLICIT INTEGER (0..4294967295) - --- an unsigned 32-bit quantity --- indistinguishable from Gauge32 -Unsigned32 ::= - [APPLICATION 2] - IMPLICIT INTEGER (0..4294967295) - --- hundredths of seconds since an epoch -TimeTicks ::= - [APPLICATION 3] - IMPLICIT INTEGER (0..4294967295) - --- for backward-compatibility only -Opaque ::= - [APPLICATION 4] - IMPLICIT OCTET STRING - --- for counters that wrap in less than one hour with only 32 bits -Counter64 ::= - [APPLICATION 6] - IMPLICIT INTEGER (0..18446744073709551615) - --- definition for objects - -OBJECT-TYPE MACRO ::= -BEGIN - TYPE NOTATION ::= - "SYNTAX" Syntax - UnitsPart - "MAX-ACCESS" Access - "STATUS" Status - "DESCRIPTION" Text - ReferPart - - IndexPart - DefValPart - - VALUE NOTATION ::= - value(VALUE ObjectName) - - Syntax ::= -- Must be one of the following: - -- a base type (or its refinement), - -- a textual convention (or its refinement), or - -- a BITS pseudo-type - type - | "BITS" "{" NamedBits "}" - - NamedBits ::= NamedBit - | NamedBits "," NamedBit - - NamedBit ::= identifier "(" number ")" -- number is nonnegative - - UnitsPart ::= - "UNITS" Text - | empty - - Access ::= - "not-accessible" - | "accessible-for-notify" - | "read-only" - | "read-write" - | "read-create" - - Status ::= - "current" - | "deprecated" - | "obsolete" - - ReferPart ::= - "REFERENCE" Text - | empty - - IndexPart ::= - "INDEX" "{" IndexTypes "}" - | "AUGMENTS" "{" Entry "}" - | empty - IndexTypes ::= - IndexType - | IndexTypes "," IndexType - IndexType ::= - "IMPLIED" Index - | Index - - Index ::= - -- use the SYNTAX value of the - -- correspondent OBJECT-TYPE invocation - value(ObjectName) - Entry ::= - -- use the INDEX value of the - -- correspondent OBJECT-TYPE invocation - value(ObjectName) - - DefValPart ::= "DEFVAL" "{" Defvalue "}" - | empty - - Defvalue ::= -- must be valid for the type specified in - -- SYNTAX clause of same OBJECT-TYPE macro - value(ObjectSyntax) - | "{" BitsValue "}" - - BitsValue ::= BitNames - | empty - - BitNames ::= BitName - | BitNames "," BitName - - BitName ::= identifier - - -- a character string as defined in section 3.1.1 - Text ::= value(IA5String) -END - --- definitions for notifications - -NOTIFICATION-TYPE MACRO ::= -BEGIN - TYPE NOTATION ::= - ObjectsPart - "STATUS" Status - "DESCRIPTION" Text - ReferPart - - VALUE NOTATION ::= - value(VALUE NotificationName) - - ObjectsPart ::= - "OBJECTS" "{" Objects "}" - | empty - Objects ::= - Object - - | Objects "," Object - Object ::= - value(ObjectName) - - Status ::= - "current" - | "deprecated" - | "obsolete" - - ReferPart ::= - "REFERENCE" Text - | empty - - -- a character string as defined in section 3.1.1 - Text ::= value(IA5String) -END - --- definitions of administrative identifiers - -zeroDotZero OBJECT-IDENTITY - STATUS current - DESCRIPTION - "A value used for null identifiers." - ::= { 0 0 } - -END diff --git a/mibs/orig/SNMPv2-TC b/mibs/orig/SNMPv2-TC deleted file mode 100644 index 71ecf44..0000000 --- a/mibs/orig/SNMPv2-TC +++ /dev/null @@ -1,729 +0,0 @@ --- ***************************************************************** --- SNMPv2-TC.my: SNMPv2 Textual Conventions --- --- May 1994, Jeffrey T. Johnson --- --- Copyright (c) 1994,1996 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** --- --- This file was extracted from RFC 1903 --- All macro definitions have been removed because they are --- predefined in the mib compiler - - -SNMPv2-TC DEFINITIONS ::= BEGIN - -IMPORTS - ObjectSyntax, TimeTicks - FROM SNMPv2-SMI; - - --- definition of textual conventions - -DisplayString ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255a" - STATUS current - DESCRIPTION - "Represents textual information taken from the NVT ASCII - character set, as defined in pages 4, 10-11 of RFC 854. - - To summarize RFC 854, the NVT ASCII repertoire specifies: - - - the use of character codes 0-127 (decimal) - - - the graphics characters (32-126) are interpreted as - US ASCII - - - NUL, LF, CR, BEL, BS, HT, VT and FF have the special - meanings specified in RFC 854 - - - the other 25 codes have no standard interpretation - - - the sequence 'CR LF' means newline - - - the sequence 'CR NUL' means carriage-return - - - an 'LF' not preceded by a 'CR' means moving to the - same column on the next line. - - - the sequence 'CR x' for any x other than LF or NUL is - illegal. (Note that this also means that a string may - end with either 'CR LF' or 'CR NUL', but not with CR.) - - Any object defined using this syntax may not exceed 255 - characters in length." - SYNTAX OCTET STRING (SIZE (0..255)) - - -PhysAddress ::= TEXTUAL-CONVENTION - DISPLAY-HINT "1x:" - STATUS current - DESCRIPTION - "Represents media- or physical-level addresses." - SYNTAX OCTET STRING - - -MacAddress ::= TEXTUAL-CONVENTION - DISPLAY-HINT "1x:" - STATUS current - DESCRIPTION - "Represents an 802 MAC address represented in the - `canonical' order defined by IEEE 802.1a, i.e., as if it - were transmitted least significant bit first, even though - 802.5 (in contrast to other 802.x protocols) requires MAC - addresses to be transmitted most significant bit first." - SYNTAX OCTET STRING (SIZE (6)) - - -TruthValue ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a boolean value." - SYNTAX INTEGER { true(1), false(2) } - -TestAndIncr ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents integer-valued information used for atomic - operations. When the management protocol is used to specify - that an object instance having this syntax is to be - modified, the new value supplied via the management protocol - must precisely match the value presently held by the - instance. If not, the management protocol set operation - fails with an error of `inconsistentValue'. Otherwise, if - the current value is the maximum value of 2^31-1 (2147483647 - decimal), then the value held by the instance is wrapped to - zero; otherwise, the value held by the instance is - incremented by one. (Note that regardless of whether the - management protocol set operation succeeds, the variable- - binding in the request and response PDUs are identical.) - - The value of the ACCESS clause for objects having this - syntax is either `read-write' or `read-create'. When an - instance of a columnar object having this syntax is created, - any value may be supplied via the management protocol. - - When the network management portion of the system is re- - initialized, the value of every object instance having this - syntax must either be incremented from its value prior to - the re-initialization, or (if the value prior to the re- - initialization is unknown) be set to a pseudo-randomly - generated value." - SYNTAX INTEGER (0..2147483647) - - -AutonomousType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents an independently extensible type identification - value. It may, for example, indicate a particular sub-tree - with further MIB definitions, or define a particular type of - protocol or hardware." - SYNTAX OBJECT IDENTIFIER - - -InstancePointer ::= TEXTUAL-CONVENTION - STATUS obsolete - DESCRIPTION - "A pointer to either a specific instance of a MIB object or - a conceptual row of a MIB table in the managed device. In - the latter case, by convention, it is the name of the - particular instance of the first accessible columnar object - in the conceptual row. - - The two uses of this textual convention are replaced by - VariablePointer and RowPointer, respectively." - SYNTAX OBJECT IDENTIFIER - - -VariablePointer ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A pointer to a specific object instance. For example, - sysContact.0 or ifInOctets.3." - SYNTAX OBJECT IDENTIFIER - - -RowPointer ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a pointer to a conceptual row. The value is the - name of the instance of the first accessible columnar object - in the conceptual row. - - For example, ifIndex.3 would point to the 3rd row in the - ifTable (note that if ifIndex were not-accessible, then - ifDescr.3 would be used instead)." - SYNTAX OBJECT IDENTIFIER - - -RowStatus ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The RowStatus textual convention is used to manage the - creation and deletion of conceptual rows, and is used as the - value of the SYNTAX clause for the status column of a - conceptual row (as described in Section 7.7.1 of [2].) - - The status column has six defined values: - - - `active', which indicates that the conceptual row is - available for use by the managed device; - - - `notInService', which indicates that the conceptual - row exists in the agent, but is unavailable for use by - the managed device (see NOTE below); - - - `notReady', which indicates that the conceptual row - exists in the agent, but is missing information - necessary in order to be available for use by the - managed device; - - - `createAndGo', which is supplied by a management - station wishing to create a new instance of a - conceptual row and to have its status automatically set - to active, making it available for use by the managed - device; - - - `createAndWait', which is supplied by a management - station wishing to create a new instance of a - conceptual row (but not make it available for use by - the managed device); and, - - - `destroy', which is supplied by a management station - wishing to delete all of the instances associated with - an existing conceptual row. - - Whereas five of the six values (all except `notReady') may - be specified in a management protocol set operation, only - three values will be returned in response to a management - protocol retrieval operation: `notReady', `notInService' or - `active'. That is, when queried, an existing conceptual row - has only three states: it is either available for use by - the managed device (the status column has value `active'); - it is not available for use by the managed device, though - the agent has sufficient information to make it so (the - status column has value `notInService'); or, it is not - available for use by the managed device, and an attempt to - make it so would fail because the agent has insufficient - information (the state column has value `notReady'). - - NOTE WELL - - This textual convention may be used for a MIB table, - irrespective of whether the values of that table's - conceptual rows are able to be modified while it is - active, or whether its conceptual rows must be taken - out of service in order to be modified. That is, it is - the responsibility of the DESCRIPTION clause of the - status column to specify whether the status column must - not be `active' in order for the value of some other - column of the same conceptual row to be modified. If - such a specification is made, affected columns may be - changed by an SNMP set PDU if the RowStatus would not - be equal to `active' either immediately before or after - processing the PDU. In other words, if the PDU also - contained a varbind that would change the RowStatus - value, the column in question may be changed if the - RowStatus was not equal to `active' as the PDU was - received, or if the varbind sets the status to a value - other than 'active'. - - - Also note that whenever any elements of a row exist, the - RowStatus column must also exist. - - - To summarize the effect of having a conceptual row with a - status column having a SYNTAX clause value of RowStatus, - consider the following state diagram: - - - STATE - +--------------+-----------+-------------+------------- - | A | B | C | D - | |status col.|status column| - |status column | is | is |status column - ACTION |does not exist| notReady | notInService| is active ---------------+--------------+-----------+-------------+------------- -set status |noError ->D|inconsist- |inconsistent-|inconsistent- -column to | or | entValue| Value| Value -createAndGo |inconsistent- | | | - | Value| | | ---------------+--------------+-----------+-------------+------------- -set status |noError see 1|inconsist- |inconsistent-|inconsistent- -column to | or | entValue| Value| Value -createAndWait |wrongValue | | | ---------------+--------------+-----------+-------------+------------- -set status |inconsistent- |inconsist- |noError |noError -column to | Value| entValue| | -active | | | | - | | or | | - | | | | - | |see 2 ->D| ->D| ->D ---------------+--------------+-----------+-------------+------------- -set status |inconsistent- |inconsist- |noError |noError ->C -column to | Value| entValue| | -notInService | | | | - | | or | | or - | | | | - | |see 3 ->C| ->C|wrongValue ---------------+--------------+-----------+-------------+------------- -set status |noError |noError |noError |noError -column to | | | | -destroy | ->A| ->A| ->A| ->A ---------------+--------------+-----------+-------------+------------- -set any other |see 4 |noError |noError |see 5 -column to some| | | | -value | | see 1| ->C| ->D ---------------+--------------+-----------+-------------+------------- - - (1) goto B or C, depending on information available to the - agent. - - (2) if other variable bindings included in the same PDU, - provide values for all columns which are missing but - required, then return noError and goto D. - - (3) if other variable bindings included in the same PDU, - provide values for all columns which are missing but - required, then return noError and goto C. - - (4) at the discretion of the agent, the return value may be - either: - - inconsistentName: because the agent does not choose to - create such an instance when the corresponding - RowStatus instance does not exist, or - - inconsistentValue: if the supplied value is - inconsistent with the state of some other MIB object's - value, or - - noError: because the agent chooses to create the - instance. - - If noError is returned, then the instance of the status - column must also be created, and the new state is B or C, - depending on the information available to the agent. If - inconsistentName or inconsistentValue is returned, the row - remains in state A. - - (5) depending on the MIB definition for the column/table, - either noError or inconsistentValue may be returned. - - NOTE: Other processing of the set request may result in a - response other than noError being returned, e.g., - wrongValue, noCreation, etc. - - - Conceptual Row Creation - - There are four potential interactions when creating a - conceptual row: selecting an instance-identifier which is - not in use; creating the conceptual row; initializing any - objects for which the agent does not supply a default; and, - making the conceptual row available for use by the managed - device. - - Interaction 1: Selecting an Instance-Identifier - - The algorithm used to select an instance-identifier varies - for each conceptual row. In some cases, the instance- - identifier is semantically significant, e.g., the - destination address of a route, and a management station - selects the instance-identifier according to the semantics. - - In other cases, the instance-identifier is used solely to - distinguish conceptual rows, and a management station - without specific knowledge of the conceptual row might - examine the instances present in order to determine an - unused instance-identifier. (This approach may be used, but - it is often highly sub-optimal; however, it is also a - questionable practice for a naive management station to - attempt conceptual row creation.) - - Alternately, the MIB module which defines the conceptual row - might provide one or more objects which provide assistance - in determining an unused instance-identifier. For example, - if the conceptual row is indexed by an integer-value, then - an object having an integer-valued SYNTAX clause might be - defined for such a purpose, allowing a management station to - issue a management protocol retrieval operation. In order - to avoid unnecessary collisions between competing management - stations, `adjacent' retrievals of this object should be - different. - - Finally, the management station could select a pseudo-random - number to use as the index. In the event that this index - was already in use and an inconsistentValue was returned in - response to the management protocol set operation, the - management station should simply select a new pseudo-random - number and retry the operation. - - A MIB designer should choose between the two latter - algorithms based on the size of the table (and therefore the - efficiency of each algorithm). For tables in which a large - number of entries are expected, it is recommended that a MIB - object be defined that returns an acceptable index for - creation. For tables with small numbers of entries, it is - recommended that the latter pseudo-random index mechanism be - used. - - Interaction 2: Creating the Conceptual Row - - Once an unused instance-identifier has been selected, the - management station determines if it wishes to create and - activate the conceptual row in one transaction or in a - negotiated set of interactions. - - Interaction 2a: Creating and Activating the Conceptual Row - - The management station must first determine the column - requirements, i.e., it must determine those columns for - which it must or must not provide values. Depending on the - complexity of the table and the management station's - knowledge of the agent's capabilities, this determination - can be made locally by the management station. Alternately, - the management station issues a management protocol get - operation to examine all columns in the conceptual row that - it wishes to create. In response, for each column, there - are three possible outcomes: - - - a value is returned, indicating that some other - management station has already created this conceptual - row. We return to interaction 1. - - - the exception `noSuchInstance' is returned, - indicating that the agent implements the object-type - associated with this column, and that this column in at - least one conceptual row would be accessible in the MIB - view used by the retrieval were it to exist. For those - columns to which the agent provides read-create access, - the `noSuchInstance' exception tells the management - station that it should supply a value for this column - when the conceptual row is to be created. - - - the exception `noSuchObject' is returned, indicating - that the agent does not implement the object-type - associated with this column or that there is no - conceptual row for which this column would be - accessible in the MIB view used by the retrieval. As - such, the management station can not issue any - management protocol set operations to create an - instance of this column. - - Once the column requirements have been determined, a - management protocol set operation is accordingly issued. - This operation also sets the new instance of the status - column to `createAndGo'. - - When the agent processes the set operation, it verifies that - it has sufficient information to make the conceptual row - available for use by the managed device. The information - available to the agent is provided by two sources: the - management protocol set operation which creates the - conceptual row, and, implementation-specific defaults - supplied by the agent (note that an agent must provide - implementation-specific defaults for at least those objects - which it implements as read-only). If there is sufficient - information available, then the conceptual row is created, a - `noError' response is returned, the status column is set to - `active', and no further interactions are necessary (i.e., - interactions 3 and 4 are skipped). If there is insufficient - information, then the conceptual row is not created, and the - set operation fails with an error of `inconsistentValue'. - On this error, the management station can issue a management - protocol retrieval operation to determine if this was - because it failed to specify a value for a required column, - or, because the selected instance of the status column - already existed. In the latter case, we return to - interaction 1. In the former case, the management station - can re-issue the set operation with the additional - information, or begin interaction 2 again using - `createAndWait' in order to negotiate creation of the - conceptual row. - - NOTE WELL - - Regardless of the method used to determine the column - requirements, it is possible that the management - station might deem a column necessary when, in fact, - the agent will not allow that particular columnar - instance to be created or written. In this case, the - management protocol set operation will fail with an - error such as `noCreation' or `notWritable'. In this - case, the management station decides whether it needs - to be able to set a value for that particular columnar - instance. If not, the management station re-issues the - management protocol set operation, but without setting - a value for that particular columnar instance; - otherwise, the management station aborts the row - creation algorithm. - - Interaction 2b: Negotiating the Creation of the Conceptual - Row - - The management station issues a management protocol set - operation which sets the desired instance of the status - column to `createAndWait'. If the agent is unwilling to - process a request of this sort, the set operation fails with - an error of `wrongValue'. (As a consequence, such an agent - must be prepared to accept a single management protocol set - operation, i.e., interaction 2a above, containing all of the - columns indicated by its column requirements.) Otherwise, - the conceptual row is created, a `noError' response is - returned, and the status column is immediately set to either - `notInService' or `notReady', depending on whether it has - sufficient information to make the conceptual row available - for use by the managed device. If there is sufficient - information available, then the status column is set to - `notInService'; otherwise, if there is insufficient - information, then the status column is set to `notReady'. - Regardless, we proceed to interaction 3. - - Interaction 3: Initializing non-defaulted Objects - - The management station must now determine the column - requirements. It issues a management protocol get operation - to examine all columns in the created conceptual row. In - the response, for each column, there are three possible - outcomes: - - - a value is returned, indicating that the agent - implements the object-type associated with this column - and had sufficient information to provide a value. For - those columns to which the agent provides read-create - access (and for which the agent allows their values to - be changed after their creation), a value return tells - the management station that it may issue additional - management protocol set operations, if it desires, in - order to change the value associated with this column. - - - the exception `noSuchInstance' is returned, - indicating that the agent implements the object-type - associated with this column, and that this column in at - least one conceptual row would be accessible in the MIB - view used by the retrieval were it to exist. However, - the agent does not have sufficient information to - provide a value, and until a value is provided, the - conceptual row may not be made available for use by the - managed device. For those columns to which the agent - provides read-create access, the `noSuchInstance' - exception tells the management station that it must - issue additional management protocol set operations, in - order to provide a value associated with this column. - - - the exception `noSuchObject' is returned, indicating - that the agent does not implement the object-type - associated with this column or that there is no - conceptual row for which this column would be - accessible in the MIB view used by the retrieval. As - such, the management station can not issue any - management protocol set operations to create an - instance of this column. - - If the value associated with the status column is - `notReady', then the management station must first deal with - all `noSuchInstance' columns, if any. Having done so, the - value of the status column becomes `notInService', and we - proceed to interaction 4. - - Interaction 4: Making the Conceptual Row Available - - Once the management station is satisfied with the values - associated with the columns of the conceptual row, it issues - a management protocol set operation to set the status column - to `active'. If the agent has sufficient information to - make the conceptual row available for use by the managed - device, the management protocol set operation succeeds (a - `noError' response is returned). Otherwise, the management - protocol set operation fails with an error of - `inconsistentValue'. - - - NOTE WELL - - A conceptual row having a status column with value - `notInService' or `notReady' is unavailable to the - managed device. As such, it is possible for the - managed device to create its own instances during the - time between the management protocol set operation - which sets the status column to `createAndWait' and the - management protocol set operation which sets the status - column to `active'. In this case, when the management - protocol set operation is issued to set the status - column to `active', the values held in the agent - supersede those used by the managed device. - - If the management station is prevented from setting the - status column to `active' (e.g., due to management station - or network failure) the conceptual row will be left in the - `notInService' or `notReady' state, consuming resources - indefinitely. The agent must detect conceptual rows that - have been in either state for an abnormally long period of - time and remove them. It is the responsibility of the - DESCRIPTION clause of the status column to indicate what an - abnormally long period of time would be. This period of - time should be long enough to allow for human response time - (including `think time') between the creation of the - conceptual row and the setting of the status to `active'. - In the absense of such information in the DESCRIPTION - clause, it is suggested that this period be approximately 5 - minutes in length. This removal action applies not only to - newly-created rows, but also to previously active rows which - are set to, and left in, the notInService state for a - prolonged period exceeding that which is considered normal - for such a conceptual row. - - - Conceptual Row Suspension - - When a conceptual row is `active', the management station - may issue a management protocol set operation which sets the - instance of the status column to `notInService'. If the - agent is unwilling to do so, the set operation fails with an - error of `wrongValue'. Otherwise, the conceptual row is - taken out of service, and a `noError' response is returned. - It is the responsibility of the DESCRIPTION clause of the - status column to indicate under what circumstances the - status column should be taken out of service (e.g., in order - for the value of some other column of the same conceptual - row to be modified). - - - Conceptual Row Deletion - - For deletion of conceptual rows, a management protocol set - operation is issued which sets the instance of the status - column to `destroy'. This request may be made regardless of - the current value of the status column (e.g., it is possible - to delete conceptual rows which are either `notReady', - `notInService' or `active'.) If the operation succeeds, - then all instances associated with the conceptual row are - immediately removed." - - - SYNTAX INTEGER { - -- the following two values are states: - -- these values may be read or written - active(1), - notInService(2), - - -- the following value is a state: - -- this value may be read, but not written - notReady(3), - - -- the following three values are - -- actions: these values may be written, - -- but are never read - createAndGo(4), - createAndWait(5), - destroy(6) - } - - -TimeStamp ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "The value of the sysUpTime object at which a specific - occurrence happened. The specific occurrence must be - defined in the description of any object defined using this - type." - SYNTAX TimeTicks - - -TimeInterval ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A period of time, measured in units of 0.01 seconds." - SYNTAX INTEGER (0..2147483647) - - -DateAndTime ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2d-1d-1d,1d:1d:1d.1d,1a1d:1d" - STATUS current - DESCRIPTION - "A date-time specification. - - 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 minutes 0..59 - 6 7 seconds 0..60 - (use 60 for leap-second) - 7 8 deci-seconds 0..9 - 8 9 direction from UTC '+' / '-' - 9 10 hours from UTC 0..11 - 10 11 minutes from UTC 0..59 - - For example, Tuesday May 26, 1992 at 1:30:15 PM EDT would be - displayed as: - - 1992-5-26,13:30:15.0,-4:0 - - Note that if only local time is known, then timezone - information (fields 8-10) is not present." - SYNTAX OCTET STRING (SIZE (8 | 11)) - - -StorageType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Describes the memory realization of a conceptual row. A - row which is volatile(2) is lost upon reboot. A row which - is either nonVolatile(3), permanent(4) or readOnly(5), is - backed up by stable storage. A row which is permanent(4) - can be changed but not deleted. A row which is readOnly(5) - cannot be changed nor deleted. - - If the value of an object with this syntax is either - permanent(4) or readOnly(5), it cannot be modified. - Conversely, if the value is either other(1), volatile(2) or - nonVolatile(3), it cannot be modified to be permanent(4) or - readOnly(5). - - Every usage of this textual convention is required to - specify the columnar objects which a permanent(4) row must - at a minimum allow to be writable." - SYNTAX INTEGER { - other(1), -- eh? - volatile(2), -- e.g., in RAM - nonVolatile(3), -- e.g., in NVRAM - permanent(4), -- e.g., partially in ROM - readOnly(5) -- e.g., completely in ROM - } - - -TDomain ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Denotes a kind of transport service. - - Some possible values, such as snmpUDPDomain, are defined in - 'Transport Mappings for Version 2 of the Simple Network - Management Protocol (SNMPv2)'." - SYNTAX OBJECT IDENTIFIER - - -TAddress ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Denotes a transport service address. - - For snmpUDPDomain, a TAddress is 6 octets long, the initial 4 - octets containing the IP-address in network-byte order and the - last 2 containing the UDP port in network-byte order. Consult - 'Transport Mappings for Version 2 of the Simple Network - Management Protocol (SNMPv2)' for further information on - snmpUDPDomain." - SYNTAX OCTET STRING (SIZE (1..255)) - - -END - diff --git a/mibs/orig/STATISTICS-MIB b/mibs/orig/STATISTICS-MIB deleted file mode 100644 index 1127143..0000000 --- a/mibs/orig/STATISTICS-MIB +++ /dev/null @@ -1,1523 +0,0 @@ --- HP Enterprise Switch Statistics MIB - - -STATISTICS-MIB DEFINITIONS ::= BEGIN - - IMPORTS - Counter, IpAddress - FROM RFC1155-SMI - OBJECT-TYPE - FROM RFC-1212 - DisplayString - FROM RFC1213-MIB - HpSwitchPortType, VidList - FROM HP-ICF-TC - InetAddress, InetAddressType, - InetPortNumber - FROM INET-ADDRESS-MIB - hpSwitch - FROM HP-ICF-OID; - - -- Icf Switch Specific - hpSwitchStatistics OBJECT IDENTIFIER ::= { hpSwitch 9 } - - MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet address - -- in the - -- "canonical" - -- order - - VlanID ::= INTEGER (1..65535) - - -- ########################################################### - -- the hpSwitchStatistics Group - - -- This group contains switch statistics related variables. - -- These variables keep the operational value of the variable - -- while the similar variable in the hpConfig group keep the - -- config. value which will take effect after reboot the - -- switch. - -- ########################################################### - - -- The IPX Operational Table - - hpSwitchIpxStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 1 } - - hpSwitchIpxStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchIpxStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about the - operational IPX status of the virtual LAN in this - device." - ::= { hpSwitchIpxStat 1 } - - hpSwitchIpxStatEntry OBJECT-TYPE - SYNTAX HpSwitchIpxStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Information about the operational IPX status of a - virtual LAN in this device." - INDEX { hpSwitchIpxStatIndex } - ::= { hpSwitchIpxStatTable 1 } - - HpSwitchIpxStatEntry ::= - SEQUENCE { - hpSwitchIpxStatIndex VlanID, - hpSwitchIpxStatNodeAddr MacAddress, - hpSwitchIpxStatGatewayAddr MacAddress, - hpSwitchIpxStatGatewayEncap INTEGER, - hpSwitchIpxStatAdminStatus INTEGER - } - - - hpSwitchIpxStatIndex OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS mandatory - DESCRIPTION "An index that uniquely identifies the operational - IPX status of a virtual LAN for which this entry - contains information." - ::= { hpSwitchIpxStatEntry 1 } - - hpSwitchIpxStatNodeAddr OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "The current IPX node address of this virtual LAN." - ::= { hpSwitchIpxStatEntry 2 } - - hpSwitchIpxStatGatewayAddr OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "The current IPX node address of the gateway for - this virtual LAN." - ::= { hpSwitchIpxStatEntry 3 } - - hpSwitchIpxStatGatewayEncap OBJECT-TYPE - SYNTAX INTEGER { - ethernetII(1), - ieee8022(2), - snap(3), - ieee8023Raw(4), - noGateway(5) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "The current type of encapsulation of the gateway." - ::= { hpSwitchIpxStatEntry 4 } - - hpSwitchIpxStatAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - enable(1), - disable(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "The operational status of the IPX protocol entity." - ::= { hpSwitchIpxStatEntry 5 } - - -- The IP Operational Table - - hpSwitchIpStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 2 } - - hpSwitchIpStatTimepAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - enable(1), - disable(2) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION "The operational status of the Time protocol." - ::= { hpSwitchIpStat 1 } - - hpSwitchIpStatTimepServerAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS obsolete - DESCRIPTION "The current IP address of the Time server." - ::= { hpSwitchIpStat 2 } - - - hpSwitchIpStatTimepPollInterval OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS obsolete - DESCRIPTION "The current client poll interval of the Time server - in minute." - ::= { hpSwitchIpStat 3 } - - hpSwitchIpStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchIpStatEntry - ACCESS not-accessible - STATUS obsolete - DESCRIPTION "A table that contains information about the current - IP status of the virtual LAN in this device." - ::= { hpSwitchIpStat 4 } - - hpSwitchIpStatEntry OBJECT-TYPE - SYNTAX HpSwitchIpStatEntry - ACCESS not-accessible - STATUS obsolete - DESCRIPTION "Information about the IP status of a specific virtual - LAN in this device." - INDEX { hpSwitchIpStatIndex } - ::= { hpSwitchIpStatTable 1 } - - HpSwitchIpStatEntry ::= - SEQUENCE { - hpSwitchIpStatIndex VlanID, - hpSwitchIpStatAddr IpAddress, - hpSwitchIpStatMask IpAddress, - hpSwitchIpStatGatewayAddr IpAddress, - hpSwitchIpStatAdminStatus INTEGER - } - - hpSwitchIpStatIndex OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS obsolete - DESCRIPTION "An index that uniquely identifies the IP status of - a virtual LAN for which this entry contains - information." - ::= { hpSwitchIpStatEntry 1 } - - hpSwitchIpStatAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS obsolete - DESCRIPTION "The current IP address of this Virtual LAN." - ::= { hpSwitchIpStatEntry 2 } - - hpSwitchIpStatMask OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS obsolete - DESCRIPTION "The current IP subnet mask of this virtual LAN." - ::= { hpSwitchIpStatEntry 3 } - - hpSwitchIpStatGatewayAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS obsolete - DESCRIPTION "The current IP address of the gateway for this - virtual LAN." - ::= { hpSwitchIpStatEntry 4 } - - hpSwitchIpStatAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - enable(1), - disable(2), - bootp(3) - } - ACCESS read-only - STATUS obsolete - DESCRIPTION "The operational status of the IP protocol for this - virtual LAN. If the value of this variable is 3, the - IP protocol entity will utilize BOOTP during - initialization." - ::= { hpSwitchIpStatEntry 5 } - - -- The Forwarding Database for VLAN - - hpSwitchFdbInfo OBJECT IDENTIFIER ::= { hpSwitchStatistics 4 } - - hpSwitchVlanFdbAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchVlanFdbAddrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about unicast - entries for which the VLAN has forwarding and/or - filtering information. This information is used - by the VLAN bridging function in determining how - to propagate a received frame." - ::= { hpSwitchFdbInfo 1 } - - hpSwitchVlanFdbAddrEntry OBJECT-TYPE - SYNTAX HpSwitchVlanFdbAddrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Information about a specific unicast MAC address - for which the VLAN has some forwarding and/or - filtering information." - INDEX { hpSwitchVlanFdbId, hpSwitchVlanFdbAddress } - ::= { hpSwitchVlanFdbAddrTable 1 } - - HpSwitchVlanFdbAddrEntry ::= - SEQUENCE { - hpSwitchVlanFdbId VlanID, - hpSwitchVlanFdbAddress MacAddress, - hpSwitchVlanFdbPort INTEGER - } - - hpSwitchVlanFdbId OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS mandatory - DESCRIPTION "An index that uniquely identifies a virtual LAN - for which this entry contains information." - ::= { hpSwitchVlanFdbAddrEntry 1 } - - hpSwitchVlanFdbAddress OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "A unicast MAC address for which the VLAN has - forwarding and/or filtering information." - ::= { hpSwitchVlanFdbAddrEntry 2 } - - hpSwitchVlanFdbPort OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The port number of the port on which a frame - having a source address equal to the value of - the corresponding instance of hpSwitchVlanFdbAddress - has been seen." - ::= { hpSwitchVlanFdbAddrEntry 3 } - - - hpSwitchPortFdbAddrTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchPortFdbAddrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about unicast - entries for which the port has forwarding and/or - filtering information. This information is used - by the bridging function in determining how to - propagate a received frame." - ::= { hpSwitchFdbInfo 2 } - - hpSwitchPortFdbAddrEntry OBJECT-TYPE - SYNTAX HpSwitchPortFdbAddrEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Information about a specific unicast MAC address - for which the port has some forwarding and/or - filtering information." - INDEX { hpSwitchPortFdbId, hpSwitchPortFdbAddress } - ::= { hpSwitchPortFdbAddrTable 1 } - - HpSwitchPortFdbAddrEntry ::= - SEQUENCE { - hpSwitchPortFdbId INTEGER, - hpSwitchPortFdbAddress MacAddress, - hpSwitchPortFdbVlanId VlanID, - hpSwitchPortFdbVidList VidList - } - - hpSwitchPortFdbId OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table. The corresponding row in the - Interfaces Table must exist prior to the index being - used in this table." - ::= { hpSwitchPortFdbAddrEntry 1 } - - hpSwitchPortFdbAddress OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "A unicast MAC address for which the port has - forwarding and/or filtering information." - ::= { hpSwitchPortFdbAddrEntry 2 } - - hpSwitchPortFdbVlanId OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS deprecated - DESCRIPTION "The VLAN ID to which this entry belongs. - Deprecated - hpSwitchPortFdbVidList - should be used instead." - ::= { hpSwitchPortFdbAddrEntry 3 } - - hpSwitchPortFdbVidList OBJECT-TYPE - SYNTAX VidList - ACCESS read-only - STATUS mandatory - DESCRIPTION "A VidList of VLAN IDs to which this entry belongs." - ::= { hpSwitchPortFdbAddrEntry 4 } - - hpSwitchStpStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 5 } - - hpSwitchStpStatAdminStatus OBJECT-TYPE - SYNTAX INTEGER { - enable(1), - disable(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "The operational status of the spanning tree protocol." - ::= { hpSwitchStpStat 1 } - - hpSwitchMiscStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 6 } - - hpSwitchCpuStat OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The CPU utilization in percent(%)." - ::= { hpSwitchMiscStat 1 } - - -- The FDDI IP Fragmentation Statistic Group - - hpSwitchFddiIpFragStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 7 } - - -- The FDDI IP Fragmentation Statistic Table - - hpSwitchFddiIpFragStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchFddiIpFragStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A list of IP fragmentation statistics - for the FDDI cards in the switch." - ::= { hpSwitchFddiIpFragStat 1 } - - hpSwitchFddiIpFragStatEntry OBJECT-TYPE - SYNTAX HpSwitchFddiIpFragStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "An Fddi IP fragmentation entry which is - containing statistics for the FDDI - cards in the switch." - INDEX { hpSwitchFddiIpFragStatIndex } - ::= { hpSwitchFddiIpFragStatTable 1 } - - HpSwitchFddiIpFragStatEntry ::= - SEQUENCE { - hpSwitchFddiIpFragStatIndex INTEGER, - hpSwitchFddiIpFragFramesFragmented Counter, - hpSwitchFddiIpFragFramesCreated Counter, - hpSwitchFddiIpFragFrameErrors Counter - } - - hpSwitchFddiIpFragStatIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "A unique value for each FDDI Card. - The value for each FDDI card must remain constant - at least from one re-initialization of the entity's - network management system to the next - re-initialization." - ::= { hpSwitchFddiIpFragStatEntry 1 } - - hpSwitchFddiIpFragFramesFragmented OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number of FDDI Frames which get fragmented when they - are larger than Ethernet Frame size, 1518 bytes." - ::= { hpSwitchFddiIpFragStatEntry 2 } - - hpSwitchFddiIpFragFramesCreated OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number of inbound FDDI frames which get created when - they larger than Ethernet Frame size, 1518 bytes." - ::= { hpSwitchFddiIpFragStatEntry 3 } - - hpSwitchFddiIpFragFrameErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "Number of large inbound FDDI frames that contains - error which preventing them from being fragmented - when they are larger than Ethernet Frame size, 1518 - bytes. Or number of large frames which are dropped - because the FDDI IP fragmentation is disabled " - ::= { hpSwitchFddiIpFragStatEntry 4 } - - -- The FDDI System Information and Statistic Group - - hpSwitchFddiSystemStat OBJECT IDENTIFIER ::= { hpSwitchStatistics 8 } - - -- The FDDI System Information and Statistic Table - - hpSwitchFddiSystemStatTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchFddiSystemStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A list of system infomations and statistics - for the FDDI cards in the switch." - ::= { hpSwitchFddiSystemStat 1 } - - hpSwitchFddiSystemStatEntry OBJECT-TYPE - SYNTAX HpSwitchFddiSystemStatEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "An Fddi system entry which is - containing statistics for the FDDI - cards in the switch." - INDEX { hpSwitchFddiSystemStatIndex } - ::= { hpSwitchFddiSystemStatTable 1 } - - HpSwitchFddiSystemStatEntry ::= - SEQUENCE { - hpSwitchFddiSystemStatIndex INTEGER, - hpSwitchFddiSystemOsVersion DisplayString, - hpSwitchFddiSystemRomVersion DisplayString, - hpSwitchFddiSystemMemoryTotal INTEGER, - hpSwitchFddiSystemMemoryFree INTEGER, - hpSwitchFddiSystemCpuUtil INTEGER, - hpSwitchFddiSystemBuildDirectory OCTET STRING, - hpSwitchFddiSystemBuildDate OCTET STRING, - hpSwitchFddiSystemBuildNumber OCTET STRING - } - - hpSwitchFddiSystemStatIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "A unique value for each FDDI Card. - The value for each FDDI card must remain constant - at least from one re-initialization of the entity's - network management system to the next - re-initialization." - ::= { hpSwitchFddiSystemStatEntry 1 } - - hpSwitchFddiSystemOsVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Contains the operating code version number (also - known as software or firmware). For example, a - software version such as A.08.01 is described as - follows: - A the function set available in your switch - 08 the common release number - 01 updates to the current common release" - ::= { hpSwitchFddiSystemStatEntry 2 } - - hpSwitchFddiSystemRomVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..10) ) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Contains the ROM version number (such as A.08.01 - is described as follows: - A the function set available in your router - 08 the common release number - 01 updates to the current common release" - ::= { hpSwitchFddiSystemStatEntry 3 } - - hpSwitchFddiSystemMemoryTotal OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of currently installed bytes." - ::= { hpSwitchFddiSystemStatEntry 4 } - - hpSwitchFddiSystemMemoryFree OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of available (unallocated) bytes." - ::= { hpSwitchFddiSystemStatEntry 5 } - - hpSwitchFddiSystemCpuUtil OBJECT-TYPE - SYNTAX INTEGER (0..100) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The CPU utilization in percent(%)." - ::= { hpSwitchFddiSystemStatEntry 6 } - - hpSwitchFddiSystemBuildDirectory OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (80)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The Build directory the FDDI firmware image " - ::= { hpSwitchFddiSystemStatEntry 7 } - - hpSwitchFddiSystemBuildDate OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (40)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The Build date and time of the FDDI firmware image" - ::= { hpSwitchFddiSystemStatEntry 8 } - - hpSwitchFddiSystemBuildNumber OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (20)) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The Build number of the FDDI firmware image" - ::= { hpSwitchFddiSystemStatEntry 9 } - - -- The Automatic Broadcast Control (ABC) Statistic Group - - hpABCStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 9 } - - hpABCStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpABCStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains statistic information about - Automatic Broadcast Control on any given VLAN on - the switch." - ::= { hpABCStats 1 } - - hpABCStatsEntry OBJECT-TYPE - SYNTAX HpABCStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with each row in the - ABC Statistics Table." - INDEX { hpABCStatsVlanIndex,hpABCStatsPortIndex } - ::= { hpABCStatsTable 1 } - - HpABCStatsEntry ::= - SEQUENCE { - hpABCStatsVlanIndex VlanID, - hpABCStatsPortIndex INTEGER, - hpABCStatsPortType HpSwitchPortType, - hpABCStatsArpReplies Counter, - hpABCStatsIpxReplies Counter, - hpABCStatsIpRipControl INTEGER, - hpABCStatsIpxRipSapControl INTEGER - } - - hpABCStatsVlanIndex OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS mandatory - DESCRIPTION "The value which uniquely identifies configuration of - a virtual LAN for which entry contains information." - ::= { hpABCStatsEntry 1 } - - hpABCStatsPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpABCStatsEntry 2 } - - hpABCStatsPortType OBJECT-TYPE - SYNTAX HpSwitchPortType - ACCESS read-only - STATUS mandatory - DESCRIPTION "The type of port." - ::= { hpABCStatsEntry 3 } - - hpABCStatsArpReplies OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "This counter reports the number of ARP responses sent - out by the switch (running ABC) to proxy respond for - hosts learned in the switch ARP cashe." - ::= { hpABCStatsEntry 4 } - - hpABCStatsIpxReplies OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "This counter reports the number of RIP and SAP - responses sent out by the switch (running ABC) to - proxy respond for routes and services learned by - switch." - ::= { hpABCStatsEntry 5 } - - hpABCStatsIpRipControl OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), - notforwarding(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "This status field shows if IP RIP packets are being - forwarded or not forwarded on the ports shown." - ::= { hpABCStatsEntry 6 } - - hpABCStatsIpxRipSapControl OBJECT-TYPE - SYNTAX INTEGER { - forwarding(1), - notforwarding(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "This status field shows if IPX RIP and/or IPX SAP - packets are being forwarded or not forwarded on the - ports shown." - ::= { hpABCStatsEntry 7 } - - -- The IGMP Statistic Group - - hpIgmpStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 10 } - - hpIgmpStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpIgmpStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains statistic information about - Multicast Groups on any given VLAN on the switch." - ::= { hpIgmpStats 1 } - - hpIgmpStatsEntry OBJECT-TYPE - SYNTAX HpIgmpStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with each member in - particular multicast group." - INDEX { hpIgmpStatsVlanIndex, hpIgmpStatsActiveGroupAddr } - ::= { hpIgmpStatsTable 1 } - - HpIgmpStatsEntry ::= - SEQUENCE { - hpIgmpStatsVlanIndex VlanID, - hpIgmpStatsActiveGroupAddr IpAddress, - hpIgmpStatsReports Counter, - hpIgmpStatsQueries Counter, - hpIgmpStatsQuerierAccessPort INTEGER - } - - hpIgmpStatsVlanIndex OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS mandatory - DESCRIPTION "The value which uniquely identifies configuration of - a virtual LAN for which entry contains information." - ::= { hpIgmpStatsEntry 1 } - - hpIgmpStatsActiveGroupAddr OBJECT-TYPE - SYNTAX IpAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "An IP Multicast Group Membership address that has been - sent, via IGMP Membership Reports, through the switch - to querier." - ::= { hpIgmpStatsEntry 2 } - - hpIgmpStatsReports OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of IGMP report packets that the switch has - seen for this group address." - ::= { hpIgmpStatsEntry 3 } - - hpIgmpStatsQueries OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of IGMP query packets the switch has seen - for this group address. Note: This object is based - on a group, thus if a query is heard before this - object's group joins, the value will be zero. It will - be non-zero when an all host query, or group specific - query for the associated group, is heard after the - associated group has joined." - ::= { hpIgmpStatsEntry 4 } - - hpIgmpStatsQuerierAccessPort OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The port on which the switch detects IGMP query - packets from the querier (device sending out query - packets). If no queries are heard, the value of the - object is zero and we are querier or electing to be - querier. Anytime a querier besides our switch is - heard the value of the object becomes the port number - on which the other querier was heard and the query - election process will be halted if currently running." - ::= { hpIgmpStatsEntry 5 } - - hpIgmpStatsPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpIgmpStatsPortEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION "A table that contains information about status - of the IGMP port configurations on this switch." - ::= { hpIgmpStats 2 } - - hpIgmpStatsPortEntry OBJECT-TYPE - SYNTAX HpIgmpStatsPortEntry - ACCESS not-accessible - STATUS deprecated - DESCRIPTION "The information associated with status of each IGMP - port configuration." - INDEX { hpIgmpStatsActiveGroupAddr, hpIgmpStatsPortIndex } - ::= { hpIgmpStatsPortTable 1 } - - - HpIgmpStatsPortEntry ::= - SEQUENCE { - hpIgmpStatsPortIndex INTEGER, - hpIgmpStatsPortType HpSwitchPortType, - hpIgmpStatsPortAccess INTEGER - } - - hpIgmpStatsPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS deprecated - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpIgmpStatsPortEntry 1 } - - hpIgmpStatsPortType OBJECT-TYPE - SYNTAX HpSwitchPortType - ACCESS read-only - STATUS deprecated - DESCRIPTION "The type of port." - ::= { hpIgmpStatsPortEntry 2 } - - hpIgmpStatsPortAccess OBJECT-TYPE - SYNTAX INTEGER{ - host(1), - router(2), - host-router(3) - } - ACCESS read-only - STATUS deprecated - DESCRIPTION "If this value is host then this port has seen IGMP - report packets for this active group address. If this - value is router then this port has detected IGMP query - packets from the querier (device sending out query - packets). If this value is host-router then this port - has seen report packets, and IGMP query packets from - the querier." - ::= { hpIgmpStatsPortEntry 3 } - - hpIgmpStatsPortTable2 OBJECT-TYPE - SYNTAX SEQUENCE OF HpIgmpStatsPortEntry2 - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about status - of the IGMP port configurations on this switch. - This table2 is supersedes hpIgmpStatsPortTable for - switches which support multiple vlans per port." - ::= { hpIgmpStats 3 } - - hpIgmpStatsPortEntry2 OBJECT-TYPE - SYNTAX HpIgmpStatsPortEntry2 - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with status of each IGMP - port configuration." - INDEX { hpIgmpStatsVlanIndex, - hpIgmpStatsActiveGroupAddr, - hpIgmpStatsPortIndex2 } - ::= { hpIgmpStatsPortTable2 1 } - - - HpIgmpStatsPortEntry2 ::= - SEQUENCE { - hpIgmpStatsPortIndex2 INTEGER, - hpIgmpStatsPortType2 HpSwitchPortType, - hpIgmpStatsPortAccess2 INTEGER, - hpIgmpStatsPortAgeTimer2 INTEGER, - hpIgmpStatsPortLeaveTimer2 INTEGER - } - - hpIgmpStatsPortIndex2 OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpIgmpStatsPortEntry2 1 } - - hpIgmpStatsPortType2 OBJECT-TYPE - SYNTAX HpSwitchPortType - ACCESS read-only - STATUS mandatory - DESCRIPTION "The type of port." - ::= { hpIgmpStatsPortEntry2 2 } - - hpIgmpStatsPortAccess2 OBJECT-TYPE - SYNTAX INTEGER{ - host(1), - router(2), - host-router(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "If this value is host then this port has seen IGMP - report packets for this active group address. If this - value is router then this port has detected IGMP query - packets from the querier (device sending out query - packets). If this value is host-router then this port - has seen report packets, and IGMP query packets from - the querier." - ::= { hpIgmpStatsPortEntry2 3 } - - hpIgmpStatsPortAgeTimer2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The timer is set when the switch hears a report - and is waiting for the group queries. If the timer - expires the group is considered non-active on the - specific port. The value returned shows how many - seconds left before the timer expires or 0 if the - timer has expired." - ::= { hpIgmpStatsPortEntry2 4 } - - hpIgmpStatsPortLeaveTimer2 OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION "The timer is set when the switch is waiting for a - report response for queries. If the timer expires the - group is considered non-active on the specific port. - The value returned shows how many seconds left before - the timer expires or 0 if the timer has expired." - ::= { hpIgmpStatsPortEntry2 5 } - - -- IGMP Statistic end - - -- The Load Balance Protocol Statistics Group - - hpLdbalStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 11 } - - hpLdbalStatsPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpLdbalStatsPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about the - operational status of the load balancing ports on - this switch." - ::= { hpLdbalStats 1 } - - hpLdbalStatsPortEntry OBJECT-TYPE - SYNTAX HpLdbalStatsPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with ports configured - for load balancing." - INDEX { hpLdbalStatsPortIndex } - ::= { hpLdbalStatsPortTable 1 } - - - HpLdbalStatsPortEntry ::= - SEQUENCE { - hpLdbalStatsPortIndex INTEGER, - hpLdbalStatsPortState INTEGER, - hpLdbalStatsAdjacentSwitch MacAddress, - hpLdbalStatsPeerPort MacAddress, - hpLdbalStatsAdjacentHost DisplayString, - hpLdbalStatsMeshWarningStatus INTEGER - } - - hpLdbalStatsPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpLdbalStatsPortEntry 1 } - - hpLdbalStatsPortState OBJECT-TYPE - SYNTAX INTEGER{ - disabled(1), - error (2), - initial(3), - notEstablished(4), - established(5), - topologyError(6) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "This variable describes the load balancing port state. - A disabled state indicates the port does not have a - link beat. An initial state indicates the port has - recently established a link beat and is detecting - whether or not it is in the load balancing domain. An - established state indicates that the port is inside - the load balancing domain, directly connected to - another load balancing port, and learning addresses - via the reception of MAC address learn information - packets. A notEstablished state indicates that the - port is outside the load balancing domain, not - directly connected to a load balancing port, and - learning MAC address by receiving unknown source - address packets. An error state indicates the port - has detected a direct connection to more than one - load balancing port and is blocked, only accepting - load balancing protocol packets. When the error - condition clears, the port transitions either into - the established or not established state." - ::= { hpLdbalStatsPortEntry 2 } - - - hpLdbalStatsAdjacentSwitch OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "The switch identifier of the adjacent switch connected - to the corresponding load balancing established port. - If load balancing has not been established on this - port then this value is void." - ::= { hpLdbalStatsPortEntry 3 } - - - hpLdbalStatsPeerPort OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "The port identifier of the peer port connected to - the corresponding load balancing established port. If - load balancing has not been established on this port - then this value is void." - ::= { hpLdbalStatsPortEntry 4 } - - - hpLdbalStatsAdjacentHost OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The name of the adjacent Host" - ::= { hpLdbalStatsPortEntry 5 } - - hpLdbalStatsMeshWarningStatus OBJECT-TYPE - SYNTAX INTEGER{ - enabled(1), - disabled(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "This variable provides a high level summary of any - mismatch in the mesh configuration and remind users - to check the log for any mesh warning messages. - If it is Yes then there is at least one warning - message and will be No if there are no warning - messages" - - ::= { hpLdbalStatsPortEntry 6 } - - -- Load Balance Protocol Statistics end - - hpSwitchMacStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 12 } - - hpSwitchFdbAddressCount OBJECT-TYPE - SYNTAX INTEGER (0..16384) - ACCESS read-only - STATUS mandatory - DESCRIPTION "Keep a counter for the total number of MAC - Addresses currently learnt on the box." - ::= { hpSwitchMacStats 1 } - - -- Flow Control Status Table - - hpSwitchFlowControlStatus OBJECT IDENTIFIER ::= { hpSwitchStatistics 13 } - - hpSwitchFlowControlStatusTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchFlowControlStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about the - operational status of flow control on this switch." - ::= { hpSwitchFlowControlStatus 1 } - - hpSwitchFlowControlStatusEntry OBJECT-TYPE - SYNTAX HpSwitchFlowControlStatusEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The flow control status per port basis." - INDEX { hpSwitchFlowControlStatusPortIndex } - ::= { hpSwitchFlowControlStatusTable 1 } - - - HpSwitchFlowControlStatusEntry ::= - SEQUENCE { - hpSwitchFlowControlStatusPortIndex INTEGER, - hpSwitchFlowControlState INTEGER - } - - hpSwitchFlowControlStatusPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpSwitchFlowControlStatusEntry 1 } - - hpSwitchFlowControlState OBJECT-TYPE - SYNTAX INTEGER { - off(1), - on(2), - on-rx(3), - on-tx(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Gets the current Flow Control State from hardware." - ::= { hpSwitchFlowControlStatusEntry 2 } - - - -- Fast EtherChannel Trunk Statistics Group - - hpFECStatsTrunk OBJECT IDENTIFIER ::= { hpSwitchStatistics 14 } - - hpFECStatsTrunkTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpFECStatsTrunkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about the - operational status of flow control on this switch." - ::= { hpFECStatsTrunk 1 } - - hpFECStatsTrunkEntry OBJECT-TYPE - SYNTAX HpFECStatsTrunkEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The flow control status per port basis." - INDEX { hpFECStatsTrunkIndex } - ::= { hpFECStatsTrunkTable 1 } - - - HpFECStatsTrunkEntry ::= - SEQUENCE { - hpFECStatsTrunkIndex INTEGER, - hpFECStatsTrunkName DisplayString, - hpFECStatsTrunkNegotiationStatus INTEGER, - hpFECStatsTrunkForwardingMode INTEGER, - hpFECStatsTrunkFlushPktsEchoed Counter - } - - hpFECStatsTrunkIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The trunk Index value which uniquely identifies a - row in the Trunk Table." - ::= { hpFECStatsTrunkEntry 1 } - - hpFECStatsTrunkName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The name of the trunk group" - ::= { hpFECStatsTrunkEntry 2} - - hpFECStatsTrunkNegotiationStatus OBJECT-TYPE - SYNTAX INTEGER { - successful(1), - failed(2), - initialized(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Whether the trunk has been successfully negotiated" - ::= { hpFECStatsTrunkEntry 3 } - - hpFECStatsTrunkForwardingMode OBJECT-TYPE - SYNTAX INTEGER { - sa-only(1), - sa-da(2), - none(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Whether the trunk has been successfully negotiated" - ::= { hpFECStatsTrunkEntry 4 } - - hpFECStatsTrunkFlushPktsEchoed OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of FEC flush packets echoed" - ::= { hpFECStatsTrunkEntry 5 } - - - -- Fast EtherChannel Port Statistics Group - - hpFECStatsPort OBJECT IDENTIFIER ::= { hpSwitchStatistics 15 } - - hpFECStatsPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpFECStatsPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about the - operational status of flow control on this switch." - ::= { hpFECStatsPort 1 } - - hpFECStatsPortEntry OBJECT-TYPE - SYNTAX HpFECStatsPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The flow control status per port basis." - INDEX { hpFECStatsPortIndex } - ::= { hpFECStatsPortTable 1 } - - - HpFECStatsPortEntry ::= - SEQUENCE { - hpFECStatsPortIndex INTEGER, - hpFECStatsPortTrunkNumber INTEGER, - hpFECStatsPortTrunkName DisplayString, - hpFECStatsPortMode INTEGER, - hpFECStatsPortNegotiationStatus INTEGER, - hpFECStatsPortHellosSent Counter, - hpFECStatsPortHellosReceived Counter, - hpFECStatsPortMySlowHello INTEGER, - hpFECStatsPortMyAutoMode INTEGER, - hpFECStatsPortPartner MacAddress, - hpFECStatsPortFlushPktsEchoed Counter - } - - hpFECStatsPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpFECStatsPortEntry 1 } - - hpFECStatsPortTrunkNumber OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The internal trunk ID" - ::= { hpFECStatsPortEntry 2 } - - hpFECStatsPortTrunkName OBJECT-TYPE - SYNTAX DisplayString - ACCESS read-only - STATUS mandatory - DESCRIPTION "The name of the trunk group" - ::= { hpFECStatsPortEntry 3 } - - hpFECStatsPortMode OBJECT-TYPE - SYNTAX INTEGER { - down(1), - forwarding(2), - blocking(3), - up(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "FEC port mode" - ::= { hpFECStatsPortEntry 4 } - - hpFECStatsPortNegotiationStatus OBJECT-TYPE - SYNTAX INTEGER { - successful(1), - failed(2), - initialized(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "FEC port negotiation state" - ::= { hpFECStatsPortEntry 5 } - - hpFECStatsPortHellosSent OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of FEC hello packets sent" - ::= { hpFECStatsPortEntry 6 } - - hpFECStatsPortHellosReceived OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of FEC hello packets received" - ::= { hpFECStatsPortEntry 7 } - - hpFECStatsPortMySlowHello OBJECT-TYPE - SYNTAX INTEGER { - fast(1), - slow(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Currently running fast or slow FEC hello state" - ::= { hpFECStatsPortEntry 8 } - - hpFECStatsPortMyAutoMode OBJECT-TYPE - SYNTAX INTEGER { - desirable(1), - auto(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Silent partner mode" - ::= { hpFECStatsPortEntry 9 } - - hpFECStatsPortPartner OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "The address of the adjacent device(switch, router, - server, etc.)" - ::= { hpFECStatsPortEntry 10 } - - hpFECStatsPortFlushPktsEchoed OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of FEC flush packets echoed" - ::= { hpFECStatsPortEntry 11 } - - hpGvrpStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 16 } - - hpGvrpStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpGvrpStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains statistic information about - GVRP on any given VLAN on the switch." - ::= { hpGvrpStats 1 } - - hpGvrpStatsEntry OBJECT-TYPE - SYNTAX HpGvrpStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with each row in the - GVRP Statistics Table." - INDEX { hpGvrpStatsVlanIndex,hpGvrpStatsPortIndex } - ::= { hpGvrpStatsTable 1 } - - HpGvrpStatsEntry ::= - SEQUENCE { - hpGvrpStatsVlanIndex VlanID, - hpGvrpStatsPortIndex INTEGER, - hpGvrpStatsPortVlanMember INTEGER, - hpGvrpPortIfOperStatus INTEGER, - hpPortGvrpCtrlStatus INTEGER - } - - hpGvrpStatsVlanIndex OBJECT-TYPE - SYNTAX VlanID - ACCESS read-only - STATUS mandatory - DESCRIPTION "The value which uniquely identifies configuration - of a virtual LAN for which entry contains - information." - ::= { hpGvrpStatsEntry 1 } - - hpGvrpStatsPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpGvrpStatsEntry 2 } - - hpGvrpStatsPortVlanMember OBJECT-TYPE - SYNTAX INTEGER { - pending(1), - yes(2), - no(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "This value reflects the state of the port with - respect to its membership in a VLAN" - ::= { hpGvrpStatsEntry 3 } - - hpGvrpPortIfOperStatus OBJECT-TYPE - SYNTAX INTEGER { - up(1), - down(2) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "The current operational state of the interface." - ::= { hpGvrpStatsEntry 4 } - - hpPortGvrpCtrlStatus OBJECT-TYPE - SYNTAX INTEGER { - learn(1), - block(2), - disable(3) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "The status of Gvrp Control on this port." - ::= { hpGvrpStatsEntry 5} - - hpSshStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 17 } - - hpSshStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSshStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains statistic information about - SSH connections on the switch." - ::= { hpSshStats 1 } - - hpSshStatsEntry OBJECT-TYPE - SYNTAX HpSshStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with each row in the - SSH Statistics Table." - INDEX { hpSshStatsSesIndex } - ::= { hpSshStatsTable 1 } - - HpSshStatsEntry ::= - SEQUENCE { - hpSshStatsSesIndex INTEGER, - hpSshStatsSesType INTEGER, - hpSshStatsSourceIpPort DisplayString, - hpSshStatsSesVersion INTEGER, - hpSshStatsSourceIpType InetAddressType, - hpSshStatsSourceIpAddress InetAddress, - hpSshStatsSourceIpPortNum InetPortNumber - } - - hpSshStatsSesIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The value which uniquely identifies a row - in the SSH Statistics Table." - ::= { hpSshStatsEntry 1 } - - hpSshStatsSesType OBJECT-TYPE - SYNTAX INTEGER { - console(1), - telnet(2), - ssh(3), - inactive(4) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "The type of session on the switch." - ::= { hpSshStatsEntry 2 } - - hpSshStatsSourceIpPort OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..21)) - ACCESS read-only - STATUS deprecated - DESCRIPTION "Contains the information about source ip address and - port number of active SSH session (e.g. 192.168.31.114:1722). - - This object has been deprecated as its not big enough to store - IPv6 addresses. It is loosely replaced by hpSshStatsSourceIpAddress - and hpSshStatsSourceIpPortNum" - ::= { hpSshStatsEntry 3 } - - hpSshStatsSesVersion OBJECT-TYPE - SYNTAX INTEGER { - version1(1), - version2(2), - noConnect(255) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION "Specifies the SSH protocol version in use for a - given session." - ::= { hpSshStatsEntry 4 } - - hpSshStatsSourceIpType OBJECT-TYPE - SYNTAX InetAddressType - ACCESS read-only - STATUS mandatory - DESCRIPTION "Specifies the Address type of source ip - address of active SSH session." - ::= { hpSshStatsEntry 5 } - - hpSshStatsSourceIpAddress OBJECT-TYPE - SYNTAX InetAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION "Specifies the source ip address of - active SSH session." - ::= { hpSshStatsEntry 6 } - - hpSshStatsSourceIpPortNum OBJECT-TYPE - SYNTAX InetPortNumber - ACCESS read-only - STATUS mandatory - DESCRIPTION "Specifies the source port number of - active SSH session." - ::= { hpSshStatsEntry 7 } - - hpSwitchPhysicalPort OBJECT IDENTIFIER ::= { hpSwitchStatistics 18 } - - hpSwitchPhysicalPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchPhysicalPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains information about the - physical ports of this device." - ::= { hpSwitchPhysicalPort 1 } - - hpSwitchPhysicalPortEntry OBJECT-TYPE - SYNTAX HpSwitchPhysicalPortEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "Information about the physical ports of this device." - INDEX { hpSwitchPhysicalPortIndex } - ::= { hpSwitchPhysicalPortTable 1 } - - HpSwitchPhysicalPortEntry ::= - SEQUENCE { - hpSwitchPhysicalPortIndex INTEGER, - hpSwitchPhysicalPortType HpSwitchPortType - } - - - hpSwitchPhysicalPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "An index that uniquely identifies a row in the physical - port table." - ::= { hpSwitchPhysicalPortEntry 1 } - - hpSwitchPhysicalPortType OBJECT-TYPE - SYNTAX HpSwitchPortType - ACCESS read-only - STATUS mandatory - DESCRIPTION "The type for this port." - ::= { hpSwitchPhysicalPortEntry 2 } - - hpSwitchCosStats OBJECT IDENTIFIER ::= { hpSwitchStatistics 19 } - - hpSwitchQueueWatchStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF HpSwitchQueueWatchStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "A table that contains statistic information about - Egress Queue drops on the switch." - ::= { hpSwitchCosStats 1 } - - hpSwitchQueueWatchStatsEntry OBJECT-TYPE - SYNTAX HpSwitchQueueWatchStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION "The information associated with each row in the - Queue Watch Statistics Table." - INDEX { hpSwitchQueueWatchStatsPortIndex,hpSwitchQueueWatchStatsQueueIndex } - ::= { hpSwitchQueueWatchStatsTable 1 } - - HpSwitchQueueWatchStatsEntry ::= - SEQUENCE { - hpSwitchQueueWatchStatsPortIndex INTEGER, - hpSwitchQueueWatchStatsQueueIndex INTEGER, - hpSwitchQueueWatchStatsQueueDrops Counter - } - - hpSwitchQueueWatchStatsPortIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The ifIndex value which uniquely identifies a row - in the Interfaces Table." - ::= { hpSwitchQueueWatchStatsEntry 1 } - - hpSwitchQueueWatchStatsQueueIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION "The specific value which uniquely identifies a specific port queue." - ::= { hpSwitchQueueWatchStatsEntry 2 } - - hpSwitchQueueWatchStatsQueueDrops OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION "The number of packets dropped for a particular egress port queue." - ::= { hpSwitchQueueWatchStatsEntry 3 } - - -END - diff --git a/mibs/orig/SW-MIB b/mibs/orig/SW-MIB deleted file mode 100644 index d9eccf9..0000000 --- a/mibs/orig/SW-MIB +++ /dev/null @@ -1,4172 +0,0 @@ --- --- Title: Fibre Channel Switch MIB. --- --- This is specified based on SMIv2, mainly to ensure that the specification --- can be parsed easily by off-the-shelf network management product in --- the market. --- --- The goal of this mib is to access the any Fibre Channel switch of --- Brocade's family by using single SW-MIB file. --- This mib file includes the traps for Silkworm Switch. --- NOTE: Load BRCD.mib file before loading this mib file. --- - -SW-MIB DEFINITIONS ::= BEGIN - IMPORTS - DisplayString, TEXTUAL-CONVENTION, TruthValue - FROM SNMPv2-TC - Counter32, Integer32, IpAddress, - OBJECT-TYPE, OBJECT-IDENTITY, - MODULE-IDENTITY, NOTIFICATION-TYPE - FROM SNMPv2-SMI - FcWwn, SwDomainIndex, SwNbIndex, SwSensorIndex, - SwPortIndex, SwTrunkMaster - FROM Brocade-TC - fcSwitch, bcsiModules - FROM Brocade-REG-MIB - connUnitPortStatEntry, connUnitPortEntry - FROM FCMGMT-MIB; - - swMibModule MODULE-IDENTITY - LAST-UPDATED "201310041340Z" -- Oct 4,2013 01:40pm - ORGANIZATION "Brocade Communications Systems, Inc.," - CONTACT-INFO "Customer Support Group - Brocade Communications Systems, - 1745 Technology Drive, - San Jose, CA 95110 U.S.A - Tel: +1-408-392-6061 - Fax: +1-408-392-6656 - Email: support@Brocade.COM - WEB: www.brocade.com" - - - DESCRIPTION "The MIB module is for Brocade's Fibre Channel Switch. - Copyright (c) 1996-2003 Brocade Communications Systems, Inc. - All rights reserved." - REVISION "200301131430Z" -- Jan 13, 2003 2:30pm - DESCRIPTION "The initial version of this module." - REVISION "200307201430Z" -- July 20, 2003 2:30pm - DESCRIPTION "Added swIDIDMode to the swFabric group." - REVISION "200404151030Z" -- April 15, 2004 10:30am - DESCRIPTION "Added object for Trap Severity Level, swFwLastSeverityLevel. - Added the enumeration swFwResourceFlash for SwFwClassesAreas. - Deprecated the mib object swEventTrapLevel. - Updated the description of swGroupId and corrected the spell - mistakes. - Obsoleted the swFault Trap. - Added enumerations four-GB for swFCPortSpeed and unknown, - other for swFCPortType." - REVISION "200408061830Z" -- Aug 06, 2004 6:30pm - DESCRIPTION "Added swFCPortSpecifier object to swFCPortTable." - REVISION "200504292016Z" -- Apr 29, 2005 8:16pm - DESCRIPTION "Modified the #SUMMARY and #ARGUMENTS for swFabricWatchTrap" - REVISION "200601090900Z" -- Jan 09, 2006 9:00am - DESCRIPTION "1. Modified the description for swPortTrunked - 2. Updated the SW Traps summary and description to - remove the obsolete varbindings" - REVISION "200605170900Z" -- May 17, 2006 9:00am - DESCRIPTION "Added swFCPortFlag object to swFCPortTable" - REVISION "200701230900Z" -- Jan 23, 2007 9:00am - DESCRIPTION "Added enumerations eight-GB and ten-GB for swFCPortSpeed" - REVISION "200706081200Z" -- Jun 8, 2007 12:00pm - DESCRIPTION "Included swFCPortFlag as an additiional variable binding for - trap SWFCPortScn" - REVISION "200706271030Z" -- Jun 27, 2007 10:30am - DESCRIPTION "Added enumerations octuple and decuple for swNbBaudRate" - REVISION "200708011220Z" -- Aug 01, 2007 12:20pm - DESCRIPTION "Added the enumerations swFwEPortUtil and swFwEPortPktl for swFwClassAreaIndex" - REVISION "200708290442Z" -- Aug 29, 2007 4:42pm - DESCRIPTION "Added swFCPortBrcdType object to swFCPortTable" - REVISION "200801290759Z" -- Jan 29, 2008 7:59pm - DESCRIPTION "Added Toptalker support and swVfId to the swFabric group." - REVISION "200807170345Z" -- July 17, 2008 3:45pm - DESCRIPTION "Added swIPv6ChangeTrap, swIPv6Address and swIPv6Status ." - REVISION "200807240232Z" -- July 24, 2008 2:32pm - DESCRIPTION "Added swModel to distiguish between 7500 and 7500E switch ." - REVISION "200807250232Z" -- July 25, 2008 2:32pm - DESCRIPTION "Added the enumerations swFwPortLr, swFwEPortLr, swFwEPortUtil, swFwEPortPktl, - swFwFCUPortLr, swFwFOPPortLr for swFwClassAreaIndex." - REVISION "200809090900Z" -- Sept 09, 2008 9:00pm - DESCRIPTION "Added swPmgrEventTrap information." - REVISION "200909280900Z" -- Jan 28, 2009 9:00pm - DESCRIPTION "Added additional fabric watch threshold in SwFwActs." - REVISION "200902210900Z" -- Feb 21, 2008 9:00pm - DESCRIPTION "Added port phy states." - REVISION "200903300900Z" -- Mar 30, 2009 9:00am - DESCRIPTION "Added swEventVfId in swEventTable." - REVISION "200906251200Z" -- Jun 25, 2009 12:00pm - DESCRIPTION "Removed the version information from Brocade's proprietary MIB file name." - REVISION "200906290100Z" -- Jun 29, 2009 01:00pm - DESCRIPTION "Modified swVfid position at the last of swFabric table" - REVISION "200906301306Z" -- June 30, 2009 1:06pm - DESCRIPTION "Added swFwCPUMemUsage enumeration under swFwClassAreaIndex." - REVISION "200906300600Z" -- Jun 30, 2009 06:00pm - DESCRIPTION "Updated the description of swCpuAction/swMemAction and access of - swcpuormemoryusage objects and changed the type of swEndDeviceInvalidWord, - swEndDeviceLinkFailure,swEndDeviceSyncLoss, swEndDeviceSigLoss, - swEndDeviceProtoErr,swEndDeviceInvalidCRC from integer32 to counter32." - REVISION "200910300500Z" -- Oct 30, 2009 05:00pm - DESCRIPTION "Added swFabricReconfigTrap and swFabricSegmentTrap." - REVISION "200911031306Z" -- Nov 03, 2009 1:06pm - DESCRIPTION "Removed enum switchReboot from swAdmStatus." - REVISION "200911051200Z" -- Nov 05, 2009 12:00pm - DESCRIPTION "Changed swFwCustUnit access to read-only" - REVISION "200911050500Z" -- Nov 05, 2009 05:00pm - DESCRIPTION "Added enums swFwEPortTrunkUtil,swFwFCUPortTrunkUtil and - swFwFOPPortTrunkUtil in SwFwClassesAreas" - REVISION "200911061130Z" -- Nov 06, 2009 11:30am - DESCRIPTION "Added swConnUnitExtensionTable and entries for 64 bit - portstats." - REVISION "200911301030Z" -- Nov 30, 2009 10:30am - DESCRIPTION "Added swMemUsageLimit1 and swMemUsageLimit3 under - swCpuOrMemoryUsage" - REVISION "200912031730Z" -- Dec 03, 2009 05:30pm - DESCRIPTION "Added swExttrap as internal trap." - REVISION "201001301730Z" -- Jan 30, 2010 05:30pm - DESCRIPTION "Changed the descriptions for swConnUnitExtensionTable." - REVISION "201007081130Z" -- July 08, 2010 11:30am - DESCRIPTION "Obsoleted swGroupTable, swGroupMemTable from swGroup." - REVISION "201007151130Z" -- July 15, 2010 11:30am - DESCRIPTION "Added swFCPortWwn, swFCPortBrcdType in swFcPortScn and added - swStateChangeTrap" - REVISION "201007211130Z" -- July 21, 2010 11:30am - DESCRIPTION "Added trap swPortMoveTrap" - REVISION "201008061130Z" -- Aug 06, 2010 11:30am - DESCRIPTION "Added trap portStats objects under SwConnUnitPortStatEntry" - REVISION "201008201030Z" -- Aug 20, 2010 10:30am - DESCRIPTION "Added trap swBrcdGenericTrap" - REVISION "201010071030Z" -- Oct 07, 2010 10:30am - DESCRIPTION "Added swVfName" - REVISION "201010091030Z" -- Oct 09, 2010 10:30am - DESCRIPTION "Added swPortConfigTable" - REVISION "201010251030Z" -- Oct 25, 2010 10:30am - DESCRIPTION "Added swFCPortPrevType in swFCPortScn" - REVISION "201011010600Z" -- Nov 1, 2010 06:00pm - DESCRIPTION "Added fifty filter classes under swFwClassAreaIndex" - REVISION "201011021030Z" -- Nov 2, 2010 10:30am - DESCRIPTION "Updated the description of swBrcdTrapBitMask and - swBrcdGenericTrap for Fapwwn Trap" - REVISION "201012021030Z" -- Dec 2, 2010 10:30am - DESCRIPTION "Deprecated swAgtCmtyTable and provided support of standard mibs - SnmpCommunityTable and snmpTargetParamsTable and snmpTargetAddrTable" - REVISION "201012081030Z" -- Dec 8, 2010 10:30am - DESCRIPTION "Updated the datatype for swPortEncrypt and swPortCompression" - REVISION "201012201000Z" -- Dec 20, 2010 06:00pm - DESCRIPTION "Added enumeration sexdecuple for swNbBaudRate" - REVISION "201012210400Z" -- Dec 21, 2010 04:00pm - DESCRIPTION "Added a new value lowBufferCrsd(7) for swFwLastEvent" - REVISION "201012221000Z" -- Dec 22,2010 06:00pm - DESCRIPTION "Changed the area name filter-fmcfg to filterFmCfg in SwFwClassesAreas" - REVISION "201012301000Z" -- Dec 30,2010 06:00pm - DESCRIPTION "Included FDMI event case in swBrcdTrapBitMask" - REVISION "201101061030Z" -- Jan 06, 2011 10:30am - DESCRIPTION "Added class3 discards error in SwConnUnitPortStatEntry" - REVISION "201101071030Z" -- Jan 07, 2011 10:30am - DESCRIPTION "Moved swPortConfigTable, CiperMode and Encrypt/CompressStatus - to faext.mib" - REVISION "201102180600Z" -- Feb 18, 2011 06:00pm - DESCRIPTION "Changed fportmode(2) to portmode(2) for object swTopTalkerMntMode." - REVISION "201202231030Z" -- Feb 23, 2012 10:30am - DESCRIPTION "Added swauthProtocolPassword and swauthProtocolPassword for - IBM DirectorServer applications" - - REVISION "201203050333Z" -- Mar 05, 2012 03:33pm - DESCRIPTION "Added new enum noSigDet(14) for object swFCPortPhyState" - - REVISION "201205151425Z" -- May 15, 2012 02:25pm - DESCRIPTION "Changed the syntax of swCpuAction and swMemAction objects." - REVISION "201206041720Z" -- June 04, 2012 05:20pm - DESCRIPTION "Added PCS block errors in swConnUnitPortStatEntry" - REVISION "201206141000Z" -- June 15, 2012 10:00am - DESCRIPTION "Added swDeviceStatus and swDeviceStatusTrap" - REVISION "201206291520Z" -- June 29, 2012 03:20pm - DESCRIPTION "Added sixteenGB support to swFCPortSpeed and also - deprecated teh same" - REVISION "201207101600Z" -- July 10, 2012 04:00pm - DESCRIPTION "Added an area filterFmCfg51 in the class SwFwClassesAreas" - REVISION "201209261400Z" -- Sep 26, 2012 02:00pm - DESCRIPTION "Removed the tab space and added the space key for swFCPortEntry 38 - as this caused a crash in MIB browser" - REVISION "201303211300Z" -- Mar 21, 2013 01:00pm - DESCRIPTION "Added swFCPortDisableReason in SwFCPortEntry and swFCPortScn - trap." - REVISION "201304041748Z" -- Apr 4,2013 05:48pm - DESCRIPTION "Added unroutable frame counter in swConnUnitPortStatEntry" - REVISION "201304221130Z" -- Apr 22, 2013 11:30am - DESCRIPTION "Made the swFCPortSpeed obsolete" - REVISION "201304251803Z" -- Apr 25, 2013 06:03pm - DESCRIPTION "Changed the description for swVFName and swConnUnitPCSErrorCounter" - REVISION "201305151430Z" -- May 15, 2013 02:30pm - DESCRIPTION "Updated swFCPortCapacity description" - REVISION "201306051600Z" -- June 5, 2013 04:00pm - DESCRIPTION "Added swFwPowerOnHours in SwFwClassesAreas" - REVISION "201306291000Z" -- June 29, 2013 10:00am - DESCRIPTION "Updated the description for swCpuUsageLimit, swCpuAction, - swMemAction, swMemUsageLimit1 and swMemUsageLimit3." - - REVISION "201309121000Z" -- Sep 12, 2013 10:00am - DESCRIPTION "Added FEC Counters swConnUnitFECCorrectedCounter, swConnUnitFECUnCorrectedCounter" - REVISION "201310041340Z" -- Oct 4, 2013 01:40pm - DESCRIPTION "Added swZoneConfigChangeTrap" - ::= { bcsiModules 3 } - - sw OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for Brocade's Silkworm Series of - Fibre Channel Switches." - ::= { fcSwitch 1 } - - sw28k OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID for Brocade's Silkworm 2800 model Fibre Channel - Switch." - ::= { fcSwitch 2 } - - sw21kN24k OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID for Brocade's Silkworm 2100 and 2400 series - model Fibre Channel Switch." - ::= { fcSwitch 3 } - - sw20x0 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID for Brocade's Silkworm 20x0 series - model Fibre Channel Switch." - ::= { fcSwitch 4 } - - SwSevType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "The event trap level in conjunction with the an event's - severity level." - SYNTAX INTEGER { - none (0), - critical (1), - error (2), - warning (3), - informational (4), - debug (5) - } - - FcPortFlag ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "Represents the port status for a FC Flag. Currently this will indicate - if the port is virtual or physical." - SYNTAX BITS { - physical (0), - virtual (1) - } - - -- various groups - swSystem OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swSystem group." - ::= { sw 1 } - - swFabric OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swFabric group." - ::= { sw 2 } - - swModule OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swModule group." - ::= { sw 3 } - - swAgtCfg OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swAgtCfg group." - ::= { sw 4 } - - -- { sw 5 } is reserved - swFCport OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swFCport group." - ::= { sw 6 } - - swNs OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swNs group." - ::= { sw 7 } - - swEvent OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swEvent group." - ::= { sw 8 } - - swFwSystem OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swFwSystem group." - ::= { sw 10 } - - swEndDevice OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swEndDevice group." - ::= { sw 21 } - - swGroup OBJECT-IDENTITY - STATUS obsolete - DESCRIPTION "The OID sub-tree for swGroup group." - ::= { sw 22 } - - swBlmPerfMnt OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swBlmPerfMnt (Bloom Performance - Monitor) group." - ::= { sw 23 } - - swTrunk OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for swTrunk group." - ::= { sw 24 } - - swTopTalker OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for TopTalker group." - ::= { sw 25 } - - swCpuOrMemoryUsage OBJECT-IDENTITY - STATUS current - DESCRIPTION "The OID sub-tree for cpu or memory usage group." - ::= { sw 26 } - - swConnUnitPortStatExtentionTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwConnUnitPortStatEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This represents the Conn unit Port Stats" - ::= { sw 27 } - --- sw 28 is assigned to faExt - - -- - -- the System Group (sw) - -- - - swCurrentDate OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current date information in displayable textual - format." - ::= { swSystem 1 } - - swBootDate OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The date and time when the system last booted, in - displayable textual format." - ::= { swSystem 2 } - - swFWLastUpdated OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The information indicates the date when the firmware - was last updated, in displayable textual format." - ::= { swSystem 3 } - - swFlashLastUpdated OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The information indicates the date when the FLASH - was last updated, in displayable textual format." - ::= { swSystem 4 } - - swBootPromLastUpdated OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The information indicates the date when the boot PROM - was last updated, in displayable textual format." - ::= { swSystem 5 } - - swFirmwareVersion OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..24)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current version of the firwmare." - ::= { swSystem 6 } - - swOperStatus OBJECT-TYPE - SYNTAX INTEGER { - online (1), - offline (2), - testing (3), - faulty (4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current operational status of the switch. - The states are as follow: - o online(1) means the switch is accessible by an external - Fibre Channel port; - o offline(2) means the switch is not accessible; - o testing(3) means the switch is in a built-in test mode - and is not accessible by an external Fibre Channel port; - o faulty(4) means the switch is not operational." - ::= { swSystem 7 } - - swAdmStatus OBJECT-TYPE - SYNTAX INTEGER { - online (1), - offline (2), - testing (3), - faulty (4), - reboot (5), - fastboot (6) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The desired administrative status of the switch. - A management station may place the switch in a desired - state by setting this object accordingly. The states - are as follow: - o online(1) means set the switch to be accessible by an - external Fibre Channel port; - o offline(2) means set the switch to be inaccessible; - o testing(3) means set the switch to run the built-in test; - o faulty(4) means set the switch to a 'soft' faulty - condition; - o reboot(5) means set the switch to reboot in 1 second. - o fastboot(6) means set the switch to fastboot in 1 second. - Fastboot would cause the switch to boot but skip over the - POST. - - When the switch is in faulty state, only two states - can be set: faulty and reboot/fastboot." - - ::= { swSystem 8 } - - swTelnetShellAdmStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (0), - terminated (1) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The desired administrative status of the Telnet - shell. By setting it to terminated(1), the current - Telnet shell task is deleted. When this variable instance - is read, it reports the value last set through SNMP." - ::= { swSystem 9 } - - swSsn OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The soft serial number of the switch." - ::= { swSystem 10 } - - -- FLASH administration - -- the next 5 objects are related to firmware or config file management. - -- - -- The underlying method in the transfer of the firmware or config file - -- is based on either FTP or remote shell. - -- If a password is provided, then FTP is used. - -- If NO password is provided, then remote shell is used. - -- - -- 2 steps to manage firmware or switch config file in the switch FLASH, - -- (A1) set swFlashDLHost.0, swFlashDLUser.0 and swFlashDLFile.0 to - -- appropriate - -- host IP address in user dot notation (e.g. 192.168.1.7), - -- user name (e.g. "administrator"), and - -- file name of the firmware or config file (e.g. "/home/fcswh/v2.2") - -- respectively; - -- (A2) set swFlashDLPassword.0 to an appropriate value (e.g. "secret") - -- if FTP is the desired method of transfer; - -- (B) set swFlashDLAdmStatus.0 to swFwUpgrade(2), swCfUpload(3), - -- or swCfDownload(4) accordingly. - -- - - swFlashDLOperStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (0), - swCurrent (1), - swFwUpgraded (2), - swCfUploaded (3), - swCfDownloaded (4), - swFwCorrupted (5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The operational status of the FLASH. - The operational states are as follow: - o swCurrent(1) indicates that the FLASH contains the - current firmware image or config file; - o swFwUpgraded(2) state indicates that it contains the image - upgraded from the swFlashDLHost.0.; - o swCfUploaded(3) state indicates that the switch configuration - file has been uploaded to the host; and - o swCfDownloaded(4) state indicates that the switch - configuration file has been downloaded from the host. - o swFwCorrupted (5) state indicates that the firmware in the - FLASH of the switch is corrupted." - ::= { swSystem 11 } - - swFlashDLAdmStatus OBJECT-TYPE - SYNTAX INTEGER { - swCurrent (1), - swFwUpgrade (2), - swCfUpload (3), - swCfDownload (4), - swFwCorrupted (5) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The desired state of the FLASH. - A management station may place the FLASH in a desired - state by setting this object accordingly: - o swCurrent(1) indicates that the FLASH contains the - current firmware image or config file; - o swFwUpgrade(2) means that the firmware in the FLASH is to be - upgraded from the host specified; - o swCfUpload(3) means that the switch config file is to be - uploaded to the host specified; or - o swCfDownload(4) means that the switch config file is to be - downloaded from the host specified. - o swFwCorrupted(5) state indicates that the firmware in the - FLASH is corrupted. This value is for informational purpose - only. However, set of swFlashDLAdmStatus to this value is - not allowed. - - The host is specified in swFlashDLHost.0. In addition, - user name is specified in swFlashDLUser.0, and - the file name specified in swFlashDLFile.0. - - Reference the user manual on the following commands, - o firmwareDownload, - o configUpload, and - o configDownload." - ::= { swSystem 12 } - - swFlashDLHost OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The name or IP address (in dot notation) of the host - to download or upload a relevant file to the FLASH." - ::= { swSystem 13 } - - swFlashDLUser OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The user name on the host to download or upload - a relevant file to or from the FLASH." - ::= { swSystem 14 } - - swFlashDLFile OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The name of the file to be downloaded or uploaded." - ::= { swSystem 15 } - - swFlashDLPassword OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..100)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The password to be used in for FTP transfer of - files in the download or upload operation." - ::= { swSystem 16 } - - -- 17..19 are reserved - - swBeaconOperStatus OBJECT-TYPE - SYNTAX INTEGER { - on (1), - off (2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current operational status of the switch beacon. - When the beacon is on, the LEDs on the front panel - of the switch run alternately from left to right - and right to left. The color is yellow. - When the beacon is off, each LED will be in their - its regular status indicating color and state." - ::= { swSystem 18 } - - swBeaconAdmStatus OBJECT-TYPE - SYNTAX INTEGER { - on (1), - off (2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The desired status of the switch beacon. - When the beacon is set to on, the LEDs on the front - panel of the switch run alternately from left to right - and right to left. The color is yellow. - When the beacon is set to off, each LED will be in - its regular status indicating color and state." - ::= { swSystem 19 } - - swDiagResult OBJECT-TYPE - SYNTAX INTEGER { - sw-ok (1), - sw-faulty (2), - sw-embedded-port-fault (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The result of the power-on startup (POST) - diagnostics." - ::= { swSystem 20 } - - -- operating environment sensors (temperature, fan, power supply...) - swNumSensors OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of sensors inside the switch." - ::= { swSystem 21 } - - swSensorTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The table of sensor entries." - ::= { swSystem 22 } - - swSensorEntry OBJECT-TYPE - SYNTAX SwSensorEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry of the sensor information." - INDEX { swSensorIndex } - ::= { swSensorTable 1 } - - SwSensorEntry ::= SEQUENCE { - swSensorIndex SwSensorIndex, - swSensorType INTEGER, - swSensorStatus INTEGER, - swSensorValue Integer32, - swSensorInfo DisplayString - } - - swSensorIndex OBJECT-TYPE - SYNTAX SwSensorIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the sensor." - ::= { swSensorEntry 1 } - - swSensorType OBJECT-TYPE - SYNTAX INTEGER { - temperature (1), - fan (2), - power-supply (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the sensor type." - ::= { swSensorEntry 2 } - - swSensorStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - faulty (2), - below-min (3), - nominal (4), - above-max (5), - absent (6) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current status of the sensor." - ::= { swSensorEntry 3 } - - swSensorValue OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current value (reading) of the sensor. - The value, -2147483648, represents an unknown quantity. - It also means that the sensor does not have the capability to - measure the actual value. In V2.0, the temperature sensor - value will be in Celsius; the fan value will be in RPM - (revolution per minute); and the power supply sensor reading - will be unknown." - ::= { swSensorEntry 4 } - - swSensorInfo OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Additional displayable information on the sensor. - In V2.x, it contains the sensor type and number - in textual format. For example, 'Temp 3', 'Fan 6'." - ::= { swSensorEntry 5 } - - -- track changes string scalar - swTrackChangesInfo OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Track changes string. For trap only" - ::= { swSystem 23 } - - swID OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of the logical switch (0/1)" - ::= { swSystem 24 } - - swEtherIPAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP Address of the Ethernet interface of this logical - switch." - ::= { swSystem 25 } - - swEtherIPMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP Mask of the Ethernet interface of this logical switch." - ::= { swSystem 26} - - swFCIPAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP Address of the FC interface of this logical switch." - ::= { swSystem 27 } - - swFCIPMask OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The IP Mask of the FC interface of this logical switch." - ::= { swSystem 28 } - - swIPv6Address OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "IPV6 address." - ::= { swSystem 29 } - - swIPv6Status OBJECT-TYPE - SYNTAX INTEGER { - tentative (1), - preferred (2), - ipdeprecated (3), - inactive (4) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The current status of ipv6 address." - ::= { swSystem 30 } - - swModel OBJECT-TYPE - SYNTAX INTEGER { - switch7500 (1), - switch7500E (2), - other (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Indicates whether the switch is 7500 or 7500E ." - ::= { swSystem 31 } - - swTestString OBJECT-TYPE - SYNTAX DisplayString(SIZE(1..255)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "presence of this string represents test trap." - ::= { swSystem 32 } - - swPortList OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This string represents the list of ports and - its WWN when ports moved from one switch to another." - ::= { swSystem 33 } - - swBrcdTrapBitMask OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Type of notification will be represented by a single bit - in this variable. - 0x01 - Fabric change event - 0x02 - Device change event - 0x04 - Fapwwn change event - 0x08 - FDMI events." - ::= { swSystem 34 } - - swFCPortPrevType OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - other (2), - fl-port (3), -- public loop - f-port (4), -- fabric port - e-port (5), -- fabric expansion port - g-port (6), -- generic fabric port - ex-port (7) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This represents port type of a port before - it goes online/offline and it is valid only in swFcPortSCN trap" - ::= { swSystem 35 } - - swDeviceStatus OBJECT-TYPE - SYNTAX INTEGER { - login (1), - logout (2), - unknown (3) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This represents the attached device status. - The status will change whenever port/node goes to - online/offline" - ::= { swSystem 36 } - - -- - -- End of System Group - -- - - -- - -- Fabric Group - -- - swDomainID OBJECT-TYPE - SYNTAX SwDomainIndex - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The current Fibre Channel domain ID of the switch. - To set a new value, the switch (swAdmStatus) must be in - offline or testing state." - ::= { swFabric 1 } - - swPrincipalSwitch OBJECT-TYPE - SYNTAX INTEGER { - yes (1), - no (2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object indicates whether the switch is - the Principal switch as per FC-SW." - ::= { swFabric 2 } - - -- swFabric 3..7 are reserved - - -- (immediate) Neighborhood ISL family - -- - swNumNbs OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of Inter-Switch Links in the (immediate) - neighborhood." - ::= { swFabric 8 } - - swNbTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwNbEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This table contains the ISLs in the immediate - neighborhood of the switch." - ::= { swFabric 9 } - - swNbEntry OBJECT-TYPE - SYNTAX SwNbEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing each neighbor ISL parameters." - INDEX { swNbIndex } - ::= { swNbTable 1 } - - SwNbEntry ::= SEQUENCE { - swNbIndex SwNbIndex, - swNbMyPort SwPortIndex, - swNbRemDomain SwDomainIndex, - swNbRemPort SwPortIndex, - swNbBaudRate INTEGER, - swNbIslState INTEGER, - swNbIslCost Integer32, - swNbRemPortName OCTET STRING - } - - swNbIndex OBJECT-TYPE - SYNTAX SwNbIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the neighbor ISL entry." - ::= { swNbEntry 1 } - - swNbMyPort OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This is the port that has an ISL to another switch." - ::= { swNbEntry 2 } - - swNbRemDomain OBJECT-TYPE - SYNTAX SwDomainIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This is the Fibre Channel domain on the other end - of the ISL." - ::= { swNbEntry 3 } - - swNbRemPort OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This is the port index on the other end of the ISL." - ::= { swNbEntry 4 } - - swNbBaudRate OBJECT-TYPE - SYNTAX INTEGER { - other (1), -- none of below - oneEighth (2), -- 155 Mbaud - quarter (4), -- 266 Mbaud - half (8), -- 532 Mbaud - full (16), -- 1 Gbaud - double (32), -- 2 Gbaud - quadruple (64), -- 4 Gbaud - octuple (128), -- 8 Gbaud - decuple (256), -- 10 Gbaud - sexdecuple (512) -- 16 Gbaud - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The baud rate of the ISL." - ::= { swNbEntry 5 } - - swNbIslState OBJECT-TYPE - SYNTAX INTEGER { - sw-down (0), - sw-init (1), - sw-internal2 (2), - sw-internal3 (3), - sw-internal4 (4), - sw-active (5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The current state of the ISL. - The swNbIslState will be 0 when ISL - is in incompatible state or port is a slave port." - ::= { swNbEntry 6 } - - swNbIslCost OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The current link cost of the ISL." - ::= { swNbEntry 7 } - - swNbRemPortName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The World_wide_Name of the remote port." - ::= { swNbEntry 8 } - - -- Fabric member information - -- - swFabricMemTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwFabricMemEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This table contains information on the member - switches of a fabric. This may not be available on - all versions of Fabric OS." - ::= { swFabric 10 } - - swFabricMemEntry OBJECT-TYPE - SYNTAX SwFabricMemEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing each switch in the fabric." - INDEX { swFabricMemWwn } - ::= { swFabricMemTable 1 } - - SwFabricMemEntry ::= SEQUENCE { - swFabricMemWwn FcWwn, - swFabricMemDid SwDomainIndex, - swFabricMemName DisplayString, - swFabricMemEIP IpAddress, - swFabricMemFCIP IpAddress, - swFabricMemGWIP IpAddress, - swFabricMemType Integer32, - swFabricMemShortVersion OCTET STRING - } - swFabricMemWwn OBJECT-TYPE - SYNTAX FcWwn - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the World wide name of the - member switch." - ::= { swFabricMemEntry 1 } - - swFabricMemDid OBJECT-TYPE - SYNTAX SwDomainIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the domain id of the member - switch." - ::= { swFabricMemEntry 2 } - - swFabricMemName OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the name of the member switch." - ::= { swFabricMemEntry 3 } - - swFabricMemEIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the ethernet IP address - of the member switch." - ::= { swFabricMemEntry 4 } - swFabricMemFCIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the Fibre Channel IP address - of the member switch." - ::= { swFabricMemEntry 5 } - - swFabricMemGWIP OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the Gateway IP address - of the member switch." - ::= { swFabricMemEntry 6 } - - swFabricMemType OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the member switch type." - ::= { swFabricMemEntry 7 } - - swFabricMemShortVersion OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..24)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies Fabric OS version of - the member switch." - ::= { swFabricMemEntry 8 } - - swIDIDMode OBJECT-TYPE - SYNTAX INTEGER { enabled(1), disabled(2) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Status of Insistent Domain ID (IDID) mode. Status - indicating IDID mode is enabled or not." - ::= { swFabric 11 } - - swPmgrEventType OBJECT-TYPE - SYNTAX INTEGER { - create (0), - delete (1), - moveport (2), - fidchange (3), - basechange (4), - vfstatechange(6) - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Indicates Partition manager event type." - ::= { swFabric 12 } - - swPmgrEventTime OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This object identifies the date and time when this pmgr - event occurred, in textual format." - ::= { swFabric 13 } - - swPmgrEventDescr OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This object identifies the textual description of - the pmgr event." - ::= { swFabric 14 } - - swVfId OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The Virtual fabric id." - ::= { swFabric 15 } - - swVfName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This represents the virtual fabric name configured in the switch" - ::= { swFabric 16 } - - - -- - -- SNMP Agent Configuration - -- - - -- swAgtCfg 1..10 are reserved - - swAgtCmtyTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwAgtCmtyEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION "A table that contains, one entry for each Community, - the access control and parameters of the Community." - ::= { swAgtCfg 11 } - - swauthProtocolPassword OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "This entry is created specific to the Pharos switch - to change the password for the auth protocol to reserved user - DirectorServerSNMPv3User" - ::= { swAgtCfg 12 } - - swprivProtocolPassword OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(1..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "This entry is created specific to the Pharos switch - to change the password for the priv protocol to reserved user - DirectorServerSNMPv3User" - ::= { swAgtCfg 13 } - - swAgtCmtyEntry OBJECT-TYPE - SYNTAX SwAgtCmtyEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION "An entry containing the Community parameters." - INDEX { swAgtCmtyIdx } - ::= { swAgtCmtyTable 1 } - - SwAgtCmtyEntry ::= SEQUENCE { - swAgtCmtyIdx Integer32, - swAgtCmtyStr DisplayString, - swAgtTrapRcp IpAddress, - swAgtTrapSeverityLevel SwSevType - } - - swAgtCmtyIdx OBJECT-TYPE - SYNTAX Integer32 (1..6) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION "This object identifies the SNMPv1 Community entry." - ::= { swAgtCmtyEntry 1 } - - swAgtCmtyStr OBJECT-TYPE - SYNTAX DisplayString(SIZE (2..16)) - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION "This is a Community string supported by the agent. - If a new value is set successfully, it takes effect - immediately." - ::= { swAgtCmtyEntry 2 } - - swAgtTrapRcp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION "This is the trap recipient associated with the - Community. If a new value is set successfully, it takes - effect immediately." - ::= { swAgtCmtyEntry 3 } - - swAgtTrapSeverityLevel OBJECT-TYPE - SYNTAX SwSevType - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION "This is the trap severity level associated with the - swAgtTrapRcp. The trap severity level in conjunction with - the an event's severity level. When an event occurs and if its - severity level is at or below the set value, the SNMP trap is - sent to configured trap recipients. The severity level is - limited to particular events. If a new value is set successfully, - it takes effect immediately." - ::= { swAgtCmtyEntry 4 } - - -- - -- End of SNMP Agent Configuration Group - -- - - -- - -- Fibre Channel Port Group - -- This group contains information about the physical state, - -- operational status, performance and error statistics of each - -- Fibre Channel port on the switch. A Fibre Channel port is one which - -- supports the Fibre Channel protocol. E.g. F_Port, E_Port, FL_Port. - -- - - swFCPortCapacity OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The maximum number of of physical ports on the - switch. This will include ports of the protocol: FC, FCIP(GE ports), VE(FCIP)..." - ::= { swFCport 1 } - - swFCPortTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwFCPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "A table that contains, one entry for each switch port, - configuration and service parameters of the port." - ::= { swFCport 2 } - - swFCPortEntry OBJECT-TYPE - SYNTAX SwFCPortEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing the configuration and service - parameters of the switch port." - INDEX { swFCPortIndex } - ::= { swFCPortTable 1 } - - SwFCPortEntry ::= SEQUENCE { - swFCPortIndex SwPortIndex, - swFCPortType INTEGER, - swFCPortPhyState INTEGER, - swFCPortOpStatus INTEGER, - swFCPortAdmStatus INTEGER, - - swFCPortLinkState INTEGER, - swFCPortTxType INTEGER, - - -- the rest is mapped to gstat_t - swFCPortTxWords Counter32, - swFCPortRxWords Counter32, - swFCPortTxFrames Counter32, - swFCPortRxFrames Counter32, - swFCPortRxC2Frames Counter32, - swFCPortRxC3Frames Counter32, - swFCPortRxLCs Counter32, - swFCPortRxMcasts Counter32, - swFCPortTooManyRdys Counter32, - swFCPortNoTxCredits Counter32, - swFCPortRxEncInFrs Counter32, - swFCPortRxCrcs Counter32, - swFCPortRxTruncs Counter32, - swFCPortRxTooLongs Counter32, - swFCPortRxBadEofs Counter32, - swFCPortRxEncOutFrs Counter32, - swFCPortRxBadOs Counter32, - swFCPortC3Discards Counter32, - swFCPortMcastTimedOuts Counter32, - swFCPortTxMcasts Counter32, - - -- LIP statistics - swFCPortLipIns Counter32, - swFCPortLipOuts Counter32, - swFCPortLipLastAlpa OCTET STRING, - - -- new for V2.1 - swFCPortWwn OCTET STRING, - - -- new for V3.0 - swFCPortSpeed INTEGER, - - -- new for Port Name Feature. - swFCPortName DisplayString, - - -- new for PortSpecifier Feature. - swFCPortSpecifier DisplayString, - - -- new for portFlag Feature. - swFCPortFlag FcPortFlag, - - -- Brocade port type. - swFCPortBrcdType INTEGER, - - -- port disable reason. - swFCPortDisableReason INTEGER - } - - swFCPortIndex OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the switch port index. - Note that the value of a port index is 1 higher than the - port number labeled on the front panel. - E.g. port index 1 correspond to port number 0." - ::= { swFCPortEntry 1 } - - swFCPortType OBJECT-TYPE - SYNTAX INTEGER { - stitch (1), - flannel (2), - loom (3), - bloom (4), - rdbloom (5), - wormhole (6), - other (7), - unknown (8) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the type of switch port. - It may be of type stitch(1), flannel(2), loom(3) , bloom(4),rdbloom(5) or wormhole(6)." - ::= { swFCPortEntry 2 } - - swFCPortPhyState OBJECT-TYPE - SYNTAX INTEGER { - noCard (1), - noTransceiver (2), - laserFault (3), - noLight (4), - noSync (5), - inSync (6), - portFault (7), - diagFault (8), - lockRef (9), - validating (10), - invalidModule (11), - noSigDet (14), - unknown (255) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the physical state of - the port: - noCard(1) no card present in this switch slot; - noTransceiver(2) no Transceiver module in this port. - noGbic(2) was used previously. Transceiver - is the generic name for GBIC, SFP etc.; - laserFault(3) the module is signaling a laser fault - (defective Transceiver); - noLight(4) the module is not receiving light; - noSync(5) the module is receiving light but is - out of sync; - inSync(6) the module is receiving light and is - in sync; - portFault(7) the port is marked faulty (defective - Transceiver, cable or device); - diagFault(8) the port failed diagnostics (defective - G_Port or FL_Port card or motherboard); - lockRef(9) the port is locking to the reference - signal. - validating(10) Validation is in progress - invalidModule(11) Invalid SFP - unknown(255) unknown. - " - ::= { swFCPortEntry 3 } - - swFCPortOpStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (0), - online (1), - offline (2), - testing (3), - faulty (4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the operational status of - the port. The online(1) state indicates that user frames - can be passed. The unknown(0) state indicates that likely - the port module is physically absent (see swFCPortPhyState)." - ::= { swFCPortEntry 4 } - - swFCPortAdmStatus OBJECT-TYPE - SYNTAX INTEGER { - online (1), - offline (2), - testing (3), - faulty (4) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION "The desired state of the port. A management station - may place the port in a desired state by setting this - object accordingly. The testing(3) state indicates that - no user frames can be passed. As the result of - either explicit management action or per configuration - information accessible by the switch, swFCPortAdmStatus is - then changed to either the online(1) or testing(3) - states, or remains in the offline(2) state." - ::= { swFCPortEntry 5 } - - swFCPortLinkState OBJECT-TYPE - SYNTAX INTEGER { - enabled (1), - disabled (2), - loopback (3) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION "This object indicates the link state of the port. - The value may be: - enabled(1) - port is allowed to participate in the FC-PH - protocol with its attached port (or ports if it is - in a FC-AL loop); - disabled(2) - the port is not allowed to participate in - the FC-PH protocol with its attached port(s); - loopback(3) - the port may transmit frames through an - internal path to verify the health of the transmitter - and receiver path. - - Note that when the port's link state changes, its - operational status (swFCPortOpStatus) will be affected." - ::= { swFCPortEntry 6 } - - swFCPortTxType OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - lw (2), - sw (3), - ld (4), - cu (5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object indicates the media transmitter type of - the port. The value may be: - unknown(1) cannot determined to the port driver - lw(2) long wave laser - sw(3) short wave laser - ld(4) long wave LED - cu(5) copper (electrical)." - ::= { swFCPortEntry 7 } - - -- counters - swFCPortTxWords OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Fibre Channel - words that the port has transmitted." - ::= { swFCPortEntry 11 } - - swFCPortRxWords OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Fibre Channel - words that the port has received." - ::= { swFCPortEntry 12 } - - swFCPortTxFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of (Fibre Channel) - frames that the port has transmitted." - ::= { swFCPortEntry 13 } - - swFCPortRxFrames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of (Fibre Channel) - frames that the port has received." - ::= { swFCPortEntry 14 } - - swFCPortRxC2Frames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Class 2 - frames that the port has received." - ::= { swFCPortEntry 15 } - - swFCPortRxC3Frames OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Class 3 - frames that the port has received." - ::= { swFCPortEntry 16 } - - swFCPortRxLCs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Link Control - frames that the port has received." - ::= { swFCPortEntry 17 } - - swFCPortRxMcasts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Multicast - frames that the port has received." - ::= { swFCPortEntry 18 } - - swFCPortTooManyRdys OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of times when RDYs - exceeds the frames received." - ::= { swFCPortEntry 19 } - - swFCPortNoTxCredits OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of times when the - transmit credit has reached zero." - ::= { swFCPortEntry 20 } - - swFCPortRxEncInFrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of encoding error or - disparity error inside frames received." - ::= { swFCPortEntry 21 } - - swFCPortRxCrcs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of CRC errors - detected for frames received." - ::= { swFCPortEntry 22 } - - swFCPortRxTruncs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of truncated - frames that the port has received." - ::= { swFCPortEntry 23 } - - swFCPortRxTooLongs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of received frames that - are too long." - ::= { swFCPortEntry 24 } - - swFCPortRxBadEofs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of received frames that - have bad EOF delimiter." - ::= { swFCPortEntry 25 } - - swFCPortRxEncOutFrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of encoding error or - disparity error outside frames received." - ::= { swFCPortEntry 26 } - - swFCPortRxBadOs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of invalid Ordered - Sets received." - ::= { swFCPortEntry 27 } - - swFCPortC3Discards OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Class 3 - frames that the port has discarded." - ::= { swFCPortEntry 28 } - - swFCPortMcastTimedOuts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Multicast - frames that has been timed out." - ::= { swFCPortEntry 29 } - - swFCPortTxMcasts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Multicast - frames that has been transmitted." - ::= { swFCPortEntry 30 } - - -- LIP statistics - swFCPortLipIns OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Loop Initializations - that has been initiated by loop devices attached." - ::= { swFCPortEntry 31 } - - swFCPortLipOuts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object counts the number of Loop Initializations - that has been initiated by the port." - ::= { swFCPortEntry 32 } - - swFCPortLipLastAlpa OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object indicates the Physical Address (AL_PA) - of the loop device that initiated the last - Loop Initialization." - ::= { swFCPortEntry 33 } - - swFCPortWwn OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The World_wide_Name of the Fibre Channel port. - The contents of an instance are in the IEEE extended format - as specified in FC-PH; the 12-bit port identifier represents - the port number within the switch." - ::= { swFCPortEntry 34 } - - swFCPortSpeed OBJECT-TYPE - SYNTAX INTEGER - { - one-GB (1), - two-GB (2), - auto-Negotiate (3), - four-GB (4), - eight-GB (5), - ten-GB (6), - unknown (7), - sixteen-GB (8) - } - MAX-ACCESS read-write - STATUS obsolete - DESCRIPTION "The desired baud rate for the port. It can have the - values of 1GB (1), 2GB (2), Auto-Negotiate (3), 4GB (4), 8GB (5), - 10GB (6), 16GB (8). Some of the above values may not be supported - by all type of switches." - ::= { swFCPortEntry 35 } - - swFCPortName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A string indicates the name of the addressed port. - The names should be persistent across switch reboots. - Port names do not have to be unique within a switch or - within a fabric." - ::= { swFCPortEntry 36 } - - swFCPortSpecifier OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This string indicates the physical port number of the addressed port. - The format of the string is: /port, where 'slot' being - present only for bladed systems. - " - ::= { swFCPortEntry 37 } - - -- FC port status flag - - swFCPortFlag OBJECT-TYPE - SYNTAX FcPortFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A bit map of port status flags which includes the information of port type. - Currently this will indicate if the port is virtual or physical." - ::= { swFCPortEntry 38 } - - swFCPortBrcdType OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - other (2), - fl-port (3), -- public loop - f-port (4), -- fabric port - e-port (5), -- fabric expansion port - g-port (6), -- generic fabric port - ex-port (7) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Brocade port type." - ::= { swFCPortEntry 39 } - - swFCPortDisableReason OBJECT-TYPE - SYNTAX INTEGER { - r-recover-fail (1), -- general recovery failure - r-invalid-reason (2), -- invalid reason - r-forced (3), -- forced to disable - r-sw-disabled (4), -- switch got disabled - r-bl-disabled (5), -- blade got disabled - r-slot-off (6), -- slot is turned off - r-sw-enabled (7), -- switch got enabled - r-bl-enabled (8), -- blade got enabled - r-slot-on (9), -- slot turned on - r-persistid (10), -- port disabled: persistant d-id - r-sw-violation (11), -- port disabled: switch sec violation - r-prv-dev-violation (12), -- port disabled: prv dev sec violation - r-pub-dev-violation (13), -- port disabled: pub dev sec violation - r-port-data-fail (14), -- online chip asic data fail - r-online-incomplete (15), -- online incompleted - r-online-route-fail (16), -- online route recovery failure - r-inconsistent (17), -- port failed consistency check - r-set-vcc-fail (18), -- set vcc credits ioctl failed - r-ecp-in-testing (19), -- recvd ecp in switchtesting state - r-elp-in-testing (20), -- recvd elp in switchtesting state - r-ecp-retries-exceeded (21), -- ecp retries exceeeded - r-invalid-ecp-state (22), -- ecp retr in invalid state - r-bad-ecp-rcvd (23), -- ecp fctl len not valid - r-send-rtmark-fail (24), -- send roundtrip mark ioctl failure - r-send-ecp-fail (25), -- send ecp failure - r-save-link-rtt-fail (26), -- saving link roundtrip time failure - r-em-incnst (27), -- em has a different state than blade/pic - r-pci-attach-fail (28), -- pci bus scan/attach failed - r-buf-starv (29), -- port disabled: due to buffer starvation - r-elp-fctl-mismatch (30), -- flow control mode different in elp acc - r-eport-disabled (31), -- e-port disabled - r-trunk-with-vcxlt (32), -- trunk and vcxltinit enabled - r-sw-fl-port-not-ready (33), -- sw not ready for f or l ports - r-link-reinit (34), -- port disabled: due to too many link re-inits - r-domain-id-change (35), -- domain id change - r-auth-rejected (36), -- authentication is rejected - r-auth-timeout (37), -- authentication timeout - r-auth-fail-retry (38), -- fail to retry authentication - r-fcr-conf-mismatch1 (39), -- brcd mode mcdata switch connected - r-fcr-conf-mismatch2 (40), -- mcdt mode brcd switch connected - r-fcr-port-ld-mode-mismatch (41), -- port is not configured ld - r-fcr-ld-credit-mismatch (42), -- port in ld mode incoming elp is r-rdy - r-fcr-set-vcc-failed (43), -- setting vcc failed for the port - r-fcr-set-rtc-failed (44), -- setting rt credit failed for the port - r-fcr-elp-ver-inconsis (45), -- version of elp is inconsistent - r-fcr-elp-fctl-mismatch (46), -- invalid flow control parameter - r-fcr-pid-mismatch (47), -- pid mismatch - r-fcr-tov-mismatch (48), -- tov mismatch - r-fcr-ld-incompat (49), -- long distance incompatability - r-fcr-isolated (50), -- long distance incompatability - r-elp-retries-exceeded (51), -- exceeded max elp retries - r-fcr-exports-exceeded (52), -- fcr too many ex ports online - r-fcr-license (53), -- fcr not licensed - r-fcr-conf-ex (54), -- fcr conflicting ex-port aleady online - r-fcr-ftag-over (55), -- fcr fabric id oversubscribed - r-fcr-ftag-conflict (56), -- fcr fabric id conflict - r-fcr-fowner-conflict (57), -- fcr fabric owner conflict - r-fcr-zone-resource (58), -- fcr exceeded max number of zone resources - r-fcr-port-state-to (59), -- fcr failed to init in time - r-fcr-authn-reject (60), -- fcr authentication failure - r-fcr-sec-fcs-list (61), -- fcr invalid member(s) in fcs list - r-fcr-sec-failure (62), -- fcr fail to join secure fabric - r-fcr-incompatible-mode (63), -- fcr incompatible port mode - r-fcr-sec-scc-list (64), -- fcr invalid member(s) in scc list - r-fcr-generic (65), -- fcr generic error (should not happen) - r-sw-ex-port-not-ready (66), - r-fcr-class-f-incompat (67), -- class-f incompatability - r-fcr-class-n-incompat (68), -- class-n incompatability - r-fcr-invalid-flow-rcvd (69), -- invalid flow control recieved - r-fcr-state-disabled (70), - r-fdd-strict-exist (71), -- strict fabric wide policy peer is non-acl switch - r-last-port-disable-msg (72), - r-sw-l-port-not-support (73), -- port does not support l-port - r-peer-port-in-di-zone (74), -- zone member of peer port is on pre-quantum switch - r-zone-incompat (75), -- neighbor cannot handle zone db and won't segment - r-sw-config-l-port-not-support (76), -- port does not support configed l-port - r-sw-port-mirror-configured (77), -- port disabled: due to port mirroring configured - r-nportlogin-inprogress (78), -- port disabled: n-port login in progress - r-nonpiv (79), -- port disabled: no npiv support - r-nomapping (80), -- f-port is not mapped to a n-port - r-unknowntype (81), -- 289315 296266: port type not detected - r-nportoffline (82), -- n-port for this f-port is offline - r-flogifailed (83), -- fabric login failed for port - r-nportbusy (84), -- n-port is busy handling other login requests - r-noflogi (85), -- no flogi received on f-port - r-noflogiresp (86), -- no flogi response received on n-port - r-flogidupalpa (87), -- fdisc response received duplicate/zero al-pa - r-loopcfg (88), -- detected loop configuration - r-noenclicense (89), -- n-port's configured fi-port not licensed (enc1&2) - r-nofiportmapping (90), -- n-port has no configured fi-port - r-brcdfabconn (91), -- n-port connected to brocade fabric - not supported on agmace - r-port-reset (92), -- the port needs to be disabled and enabled - r-floginport (93), -- flogi received on port configured as n-port - r-fdd-strict-conflict (94), -- fabric wide strict policy conflict - r-fdd-cfg-conflict (95), -- fabric wide cfg conflict - r-fdd-cfg-conflict-na-neigh (96), -- fabric wide cfg conflict neighbor is non-acl switch - r-fcr-insistent-front-did-mismatch (97), - r-fcr-fabric-binding-failure (98), - r-fcr-non-standard-domain-offset (99), -- port disabled: non-standard domain offset in esc - r-area-in-use (100), -- area in use - r-mstr-diff-pg (101), -- master has different port group than slave - r-mstr-diff-area (102), -- master has different area than slave - r-ta-not-supported (103), -- trunk area not supported - r-eport-not-supported (104), -- e-port not suppored on port type - r-fport-not-supported (105), -- f-port not suppored on port type - r-cfg-not-supported (106), -- port cfg not supported - r-port-ll-th-exceeded (107), -- port class link loss threshold exceeded - r-port-synl-th-exceeded (108), -- port class sync loss threshold exceeded - r-port-pe-th-exceeded (109), -- port class protocol errors threshold exceeded - f-port-disable-no-trk-lic (110), -- no trunking license and f port trunk enabled - r-port-inw-th-exceeded (111), -- port class invalid words threshold exceeded - r-port-crc-th-exceeded (112), -- port class invalid crc threshold exceeded - f-port-tr-disable-speed-not-ok (113), -- speed is not 2, 4 or 8g - r-port-auto-disable (114), -- disabled due to port auto disable - r-fcr-export-in-non-base-sw (115), -- ex port is online in non base switch - r-base-switch-supports-no-device (116), -- base switch does not support device - r-port-trunk-proto-error (117), -- invalid trunk state for ac-port - r-no-area-avail (118), -- no more area is available for dynamic assignment - r-cannot-unbind-existing-area (119), - r-cannot-use-10bit-area (120), - r-authentication-required (121), -- hba authentication required - r-port-lr-th-exceeded (122), -- port class link reset threshold exceeded - r-fcr-export-lf-conflict (123), -- ex and lf conflict - r-incompat (124), -- switch incompatible - r-did-overlap (125), -- domain id overlap - r-zone-conflict (126), -- zone overlap - r-eport-seg (127), -- generic eport segment - r-no-license (128), -- no license - r-platform-db (129), -- incompatible platform db - r-sec-incompat (130), -- security incompatibility - r-sec-violation (131), -- security violation - r-ecp-longdist (132), -- ecp rejected or retries exceeded - r-dup-wwn (133), -- duplication wwn in fabric - r-eport-isolated (134), -- eport isolated - r-ad (135), -- ad header conflict - r-esc-did-offset (136), -- domain id offset conflict - r-esc-etiz (137), -- esc enhanced ti zone conflict - r-esc-fid (138), -- esc fabric id conflict - r-safe-zone (139), -- mcdata safezone conflict - r-vf (140), -- vf ad conflict - r-vf-bs-incompat (141), -- vf bs conflict - r-pers-pid-on-lport (142), -- persistent pid isnt supported on l port - r-pers-pid-portaddr-collision (143), -- pers pid and port address binding collision - r-pers-pid-port-on-same-area (144), -- another port online with same area - r-pers-pid-port-addr-bnd (145), -- pers pid and port address binding collision port addr bound - r-msfr (146), -- msfr/rd conflict - r-sw-halfbw-lic (147), -- half bandwidth license only - r-1g-mode-incompat (148), -- the port is incompatible in the 1g mode - r-10g-mode-incompat (149), -- the port is incompatible in the 10g mode - r-dual-mode-incompat (150), -- the port is incompatible in the 10g mode - r-implict-plt-service-block (151), -- enabling of platform service implicitly was blocked - r-port-st-th-exceeded (152), -- port class st threshold exceeded - r-port-c3txto-th-exceeded (153), -- port class c3 tx to threshold exceeded - r-eport-not-supported-def-sw (154), -- uppermost 8 ports on quattro blade on dcx on def-sw have no eport supp - r-eport-ll-th-exceeded (155), -- eport class link loss threshold exceeded - r-eport-synl-th-exceeded (156), -- eport class sync loss threshold exceeded - r-eport-pe-th-exceeded (157), -- eport class protocol errors threshold exceeded - r-eport-inw-th-exceeded (158), -- eport class invalid words threshold exceeded - r-eport-crc-th-exceeded (159), -- eport class invalid crc threshold exceeded - r-eport-lr-th-exceeded (160), -- eport class link reset threshold exceeded - r-eport-st-th-exceeded (161), -- eport class st threshold exceeded - r-eport-c3txto-th-exceeded (162), -- eport class c3 tx to threshold exceeded - r-fopport-ll-th-exceeded (163), -- fopport class link loss threshold exceeded - r-fopport-synl-th-exceeded (164), -- fopport class sync loss threshold exceeded - r-fopport-pe-th-exceeded (165), -- fopport class protocol errors threshold exceeded - r-fopport-inw-th-exceeded (166), -- fopport class invalid words threshold exceeded - r-fopport-crc-th-exceeded (167), -- fopport class invalid crc threshold exceeded - r-fopport-lr-th-exceeded (168), -- fopport class link reset threshold exceeded - r-fopport-st-th-exceeded (169), -- fopport class st threshold exceeded - r-fopport-c3txto-th-exceeded (170), -- fopport class c3 tx to threshold exceeded - r-fcuport-ll-th-exceeded (171), -- fcuport class link loss threshold exceeded - r-fcuport-synl-th-exceeded (172), -- fcuport class sync loss threshold exceeded - r-fcuport-pe-th-exceeded (173), -- fcuport class protocol errors threshold exceeded - r-fcuport-inw-th-exceeded (174), -- fcuport class invalid words threshold exceeded - r-fcuport-crc-th-exceeded (175), -- fcuport class invalid crc threshold exceeded - r-fcuport-lr-th-exceeded (176), -- fcuport class link reset threshold exceeded - r-fcuport-st-th-exceeded (177), -- fcuport class st threshold exceeded - r-fcuport-c3txto-th-exceeded (178), -- fcuport class c3 tx to threshold exceeded - r-port-no-area-avail-pers-disable (179), -- out of area - r-eport-locked (180), -- f-port disabled: due to port is locked as e-port - r-enh-tizone (181), -- enhanced ti zone conflict - r-sw-port-swap-not-supported (182), -- port swap not supported in quattro - r-fport-slow-drain-condition (183), -- f-port is experiencing slow drain condition - r-esc-vlanid (184), -- esc vlan id conflict - r-port-recov-state (185), - r-port-auto-disable-losn (186), -- pad: loss of sync - r-port-auto-disable-losg (187), -- pad: loss of signal - r-port-auto-disable-ols (188), -- pad: offline primitive sequence - r-port-auto-disable-nos (189), -- pad: not operational primitive sequence - r-port-auto-disable-lip (190), -- pad: loop initialization primitive sequence - r-port-compression (191), -- compression configuration mismatch - r-port-encryption (192), -- encryption configuration mismatch - r-port-enccomp-res (193), -- encryption/compression enabled but resource unavailable - r-port-decommissioned (194), -- used to denote a port that has been decommissioned - r-port-dportmode (195), -- d-port mode we will not allow flogi - r-port-dport-incompat (196), -- d-port mode mismatch with a remot switch - r-port-enc-comp-mismatch (197), -- encryption/compression config mismatch - r-non-rcs-rem-dom (198), -- remote domain is rcs incapable - r-port-fips-comp-mismatch (199), -- fips compliance mismatch - r-port-non-fips-comp-mismatch (200), -- non fips compliance mismatch - r-port-enc-auth-disabled (201), - r-port-disable-on-zeroize (202), -- matador zeroize disable - r-cfgspeed-not-supported (203), -- port configured speed not supported - r-fcr-ex-port-not-allowed (204), -- fc routing on this port not supported - r-port-duplicate-pwwn (205), -- duplicate pwwn reason for respective port - r-fcr-trunk-master-sfid-not-set (206), -- sfid is not set for master ex-port - r-nportistrunkmem (207), -- n-port is a trunk member - r-policynotsupported (208), -- auto wwnloadbalance policies are not supported for a static f-port - r-no-icl-license (209), -- no icl license - r-no-ten-gig-license (210), -- no ten gig license - r-fdd-strict-scc-conflict (211), -- fdd strict scc policy conflict - r-fdd-strict-dcc-conflict (212), -- fdd strict dcc policy conflict - r-fdd-strict-fcs-conflict (213), -- fdd strict fcs policy conflict - r-fdd-strict-fabwide-conflict (214), -- fdd strict fabwide policy conflict - r-fdd-strict-pwd-conflict (215), -- fdd strict pwd policy conflict - r-fcr-interop-conf (216), -- ex interopmode mismatch - r-port-enc-interop-conflict (217), -- ex-port in nos and encryption mismatch - r-port-comp-interop-conflict (218), -- ex-port in nos and compression mismatch - r-no-port-open-rsp (219), -- fail to unblock the port after auth - r-no-eicl-license (220), -- eicl license not installed - r-eicl-license-limited (221), -- icl links limit reached eicl license - r-esc-base-sw (222), -- base switch conflict - r-sw-cpu-overload (223), -- cpu overload - r-no-icl-pod2-license (224), -- no 2nd pod icl license. used only in dcx+/pluto+ switch - r-port-area-mismatch-pers-disable (225), -- port disabled due to area and full-fmt-area mismatch - r-unauthorized-device (226), -- un-authorized device - r-max-flogi-reached (227), -- max allowed flogis reached - r-auth-not-supported-in-switch (228), -- port authentication not supported in connected switch f-port - r-icl-ex-on-non-vf (229), -- EX-port on ICL is not supported in Non-VF mode - r-user-disabled-reason (230) -- Disable reason configured by the user - } - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "It indicates the state change reason - when port goes from online to offline" - ::= { swFCPortEntry 40 } - - - -- - -- End of Fibre Channel Port group - -- - - - - -- - -- The Name Server Database group - -- - - swNsLocalNumEntry OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of local Name Server entries." - ::= { swNs 1 } - - swNsLocalTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwNsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The table of local Name Server entries." - ::= { swNs 2 } - - swNsLocalEntry OBJECT-TYPE - SYNTAX SwNsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry of the local Name Server database." - INDEX { swNsEntryIndex } - ::= { swNsLocalTable 1 } - - SwNsEntry ::= SEQUENCE { - swNsEntryIndex Integer32, - swNsPortID OCTET STRING, - swNsPortType INTEGER, - swNsPortName FcWwn, - swNsPortSymb OCTET STRING, - swNsNodeName FcWwn, - swNsNodeSymb OCTET STRING, - swNsIPA OCTET STRING, - swNsIpAddress OCTET STRING, - swNsCos INTEGER, - swNsFc4 OCTET STRING, - swNsIpNxPort OCTET STRING, - swNsWwn OCTET STRING, - swNsHardAddr OCTET STRING - } - - swNsEntryIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the Name Server database entry." - ::= { swNsLocalEntry 1 } - - swNsPortID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the Fibre Channel port address - ID of the entry." - ::= { swNsLocalEntry 2 } - - swNsPortType OBJECT-TYPE - SYNTAX INTEGER { - -- unknown (0), - nPort (1), - nlPort (2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the type of port: N_Port, - NL_Port, etc., for this entry. The type is defined in FC-GS-2." - ::= { swNsLocalEntry 3 } - - swNsPortName OBJECT-TYPE - SYNTAX FcWwn - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the Fibre Channel World_wide - Name of the port entry." - ::= { swNsLocalEntry 4 } - - swNsPortSymb OBJECT-TYPE - SYNTAX OCTET STRING(SIZE(0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the contents of a Symbolic Name - of the port entry. In FC-GS-2, a Symbolic Name consists of - a byte array of 1 through 255 bytes, and the first byte of the - array specifies the length of its 'contents'. - This object variable corresponds to the 'contents' of the - Symbolic Name, without the first byte." - ::= { swNsLocalEntry 5 } - - swNsNodeName OBJECT-TYPE - SYNTAX FcWwn - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the Fibre Channel World_wide - Name of the associated node as defined in FC-GS-2." - ::= { swNsLocalEntry 6 } - - swNsNodeSymb OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(0..255)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the contents of a Symbolic Name - of the the node associated with the entry. In FC-GS-2, - a Symbolic Name consists of a byte array of 1 through 255 - bytes, and the first byte of the array specifies the length - of its 'contents'. - This object variable corresponds to the 'contents' of the - Symbolic Name, without the first byte (specifying the length)." - ::= { swNsLocalEntry 7 } - - swNsIPA OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the Initial Process Associator - of the node for the entry as defined in FC-GS-2." - ::= { swNsLocalEntry 8 } - - swNsIpAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the IP address of the node - for the entry as defined in FC-GS-2. The format of the address - is in IPv6." - ::= { swNsLocalEntry 9 } - - swNsCos OBJECT-TYPE - SYNTAX INTEGER { - -- class-unknown (0), - class-F (1), - class-1 (2), - class-F-1 (3), - class-2 (4), - class-F-2 (5), - class-1-2 (6), - class-F-1-2 (7), - class-3 (8), - class-F-3 (9), - class-1-3 (10), - class-F-1-3 (11), - class-2-3 (12), - class-F-2-3 (13), - class-1-2-3 (14), - class-F-1-2-3 (15) - -- more to enumerate in future. - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the class of services supported - by the port. The value is a bit-map defined as follows: - o bit 0 is class F, - o bit 1 is class 1, - o bit 2 is class 2, - o bit 3 is class 3, - o bit 4 is class 4, etc." - ::= { swNsLocalEntry 10 } - - swNsFc4 OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the FC-4s supported - by the port as defined in FC-GS-2." - ::= { swNsLocalEntry 11 } - - swNsIpNxPort OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(16)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies IpAddress of the Nx_port for the entry." - ::= { swNsLocalEntry 12 } - - swNsWwn OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the World Wide Name (WWN) of the Fx_port - for the entry." - ::= { swNsLocalEntry 13 } - - swNsHardAddr OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(3)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the 24-bit hard address of the node - for the entry." - ::= { swNsLocalEntry 14 } - - -- - -- End of Fibre Channel Name Server group - -- - - -- ####################################################################### - -- - -- Event Group - to map the errLog - -- - -- NOTE - -- Logically, swEventTable is separate from the error log since it is - -- essentially a view of the error log within a particular time window. - -- The value of swEventIndex shall indicate the event number that has - -- occurred since the switch booted. The value will range from 1 through - -- 2147383647 (2^31 - 1). - -- - -- ####################################################################### - - swEventTrapLevel OBJECT-TYPE - SYNTAX INTEGER { - none (0), - critical (1), - error (2), - warning (3), - informational (4), - debug (5) - } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION "swAgtTrapSeverityLevel, in absence of - swEventTrapLevel, specifies the Trap Severity Level of each - defined trap recipient host. - This object specifies the swEventTrap level in - conjunction with an event's severity level. When an event - occurs and if its severity level is at or below the value - specified by this object instance, the agent will send - the associated swEventTrap to configured recipients." - ::= { swEvent 1 } - - -- { swEvent 2..3 are reserved } - - swEventNumEntries OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of entries in the Event Table." - ::= { swEvent 4 } - - swEventTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwEventEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The table of event entries." - ::= { swEvent 5 } - - swEventEntry OBJECT-TYPE - SYNTAX SwEventEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry of the event table." - INDEX { swEventIndex } - - ::= { swEventTable 1 } - - SwEventEntry ::= SEQUENCE { - swEventIndex Integer32, - swEventTimeInfo DisplayString, - swEventLevel INTEGER, - swEventRepeatCount Integer32, - swEventDescr DisplayString, - swEventVfId Integer32 - } - - swEventIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the event entry." - ::= { swEventEntry 1 } - - swEventTimeInfo OBJECT-TYPE - SYNTAX DisplayString(SIZE (0..64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the date and time when this - event occurred, in textual format." - ::= { swEventEntry 2 } - - swEventLevel OBJECT-TYPE - SYNTAX INTEGER { - critical (1), - error (2), - warning (3), - informational (4), - debug (5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the severity level of this - event entry." - ::= { swEventEntry 3 } - - swEventRepeatCount OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies how many times this particular - event has occurred." - ::= { swEventEntry 4 } - - swEventDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the textual description of - the event." - ::= { swEventEntry 5 } - - swEventVfId OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the Virtual fabric id." - ::= { swEventEntry 6 } - - -- - -- End of Fibre Channel Event Group - -- - - -- - -- swFwSystem - -- Fabric Watch subsystem - -- ########################################################################### - -- Fabric Watch subsystem consists of two tables - -- SwFwClassAreaEntry contains control information for a particular class/area's - -- thresholds. These thresholds are contained in SwFwThresholdEntry. - -- ########################################################################### - - -- valid action matrix - -- ########################################################################### - -- The valid action matrix is arrived out of the combination of the configured - -- alarm matrix such as Errlog-1(El), SnmpTrap-2(St), PortLogLock-4(Pl), - -- RapiTrap-8(Rn), EmailAlert-16, PortFencing-32(Pf) - -- ########################################################################### - SwFwActs ::= INTEGER { - swFwNoAction(0), - swFwErrlog(1), - swFwSnmptrap(2), - swFwErrlogSnmptrap(3), - swFwPortloglock(4), - swFwErrlogPortloglock(5), - swFwSnmptrapPortloglock(6), - swFwErrlogSnmptrapPortloglock(7), - swFwRn(8), - swFwElRn(9), - swFwStRn(10), - swFwElStRn(11), - swFwPlRn(12), - swFwElPlRn(13), - swFwStPlRn(14), - swFwElStPlRn(15), - swFwMailAlert(16), - swFwMailAlertErrlog(17), - swFwMailAlertSnmptrap(18), - swFwMailAlertErrlogSnmptrap(19), - swFwMailAlertPortloglock(20), - swFwMailAlertErrlogPortloglock(21), - swFwMailAlertSnmptrapPortloglock(22), - swFwMailAlertErrlogSnmptrapPortloglock(23), - swFwMailAlertRn(24), - swFwElMailAlertRn(25), - swFwMailAlertStRn(26), - swFwMailAlertElStRn(27), - swFwMailAlertPlRn(28), - swFwMailAlertElPlRn(29), - swFwMailAlertStPlRn(30), - swFwMailAlertElStPlRn(31), - swFwPf(32), - swFwElPf(33), - swFwStPf(34), - swFwElStPf(35), - swFwPlPf(36), - swFwElPlPf(37), - swFwStPlPf(38), - swFwElStPlPf(39), - swFwRnPf(40), - swFwElRnPf(41), - swFwStRnPf(42), - swFwElStRnPf(43), - swFwPlRnPf(44), - swFwElPlRnPf(45), - swFwStPlRnPf(46), - swFwElStPlRnPf(47), - swFwMailAlertPf(48), - swFwMailAlertElPf(49), - swFwMailAlertStPf(50), - swFwMailAlertElStPf(51), - swFwMailAlertPlPf(52), - swFwMailAlertElPlPf(53), - swFwMailAlertStPlPf(54), - swFwMailAlertElStPlPf(55), - swFwMailAlertRnPf(56), - swFwMailAlertElRnPf(57), - swFwMailAlertStRnPf(58), - swFwMailAlertElStRnPf(59), - swFwMailAlertPlRnPf(60), - swFwMailAlertElPlRnPf(61), - swFwMailAlertStPlRnPf(62), - swFwMailAlertElStPlRnPf(63) - } - - -- variable for threshold values or action matrix level - SwFwLevels ::= INTEGER { - swFwReserved(1), - swFwDefault(2), - swFwCustom(3) - } - - -- classes and areas index - SwFwClassesAreas ::= INTEGER { - swFwEnvTemp(1), - swFwEnvFan(2), - swFwEnvPs(3), - swFwTransceiverTemp(4), - swFwTransceiverRxp(5), - swFwTransceiverTxp(6), - swFwTransceiverCurrent(7), - swFwPortLink(8), - swFwPortSync(9), - swFwPortSignal(10), - swFwPortPe(11), - swFwPortWords(12), - swFwPortCrcs(13), - swFwPortRXPerf(14), - swFwPortTXPerf(15), - swFwPortState(16), - swFwFabricEd(17), - swFwFabricFr(18), - swFwFabricDi(19), - swFwFabricSc(20), - swFwFabricZc(21), - swFwFabricFq(22), - swFwFabricFl(23), - swFwFabricGs(24), - swFwEPortLink(25), - swFwEPortSync(26), - swFwEPortSignal(27), - swFwEPortPe(28), - swFwEPortWords(29), - swFwEPortCrcs(30), - swFwEPortRXPerf(31), - swFwEPortTXPerf(32), - swFwEPortState(33), - swFwFCUPortLink(34), - swFwFCUPortSync(35), - swFwFCUPortSignal(36), - swFwFCUPortPe(37), - swFwFCUPortWords(38), - swFwFCUPortCrcs(39), - swFwFCUPortRXPerf(40), - swFwFCUPortTXPerf(41), - swFwFCUPortState(42), - swFwFOPPortLink(43), - swFwFOPPortSync(44), - swFwFOPPortSignal(45), - swFwFOPPortPe(46), - swFwFOPPortWords(47), - swFwFOPPortCrcs(48), - swFwFOPPortRXPerf(49), - swFwFOPPortTXPerf(50), - swFwFOPPortState(51), - swFwPerfALPACRC(52), - swFwPerfEToECRC(53), - swFwPerfEToERxCnt(54), - swFwPerfEToETxCnt(55), - swFwPerffltCusDef(56), - swFwTransceiverVoltage(57), - swFwSecTelnetViolations(58), - swFwSecHTTPViolations(59), - swFwSecAPIViolations(60), - swFwSecRSNMPViolations(61), - swFwSecWSNMPViolations(62), - swFwSecSESViolations(63), - swFwSecMSViolations(64), - swFwSecSerialViolations(65), - swFwSecFPViolations(66), - swFwSecSCCViolations(67), - swFwSecDCCViolations(68), - swFwSecLoginViolations(69), - swFwSecInvalidTS(70), - swFwSecInvalidSign(71), - swFwSecInvalidCert(72), - swFwSecSlapFail(73), - swFwSecSlapBadPkt(74), - swFwSecTSOutSync(75), - swFwSecNoFcs(76), - swFwSecIncompDB(77), - swFwSecIllegalCmd(78), - swFwSAMTotalDownTime(79), - swFwSAMTotalUpTime(80), - swFwSAMDurationOfOccur(81), - swFwSAMFreqOfOccur(82), - swFwResourceFlash(83), - swFwEPortUtil(84), - swFwEPortPktl(85), - swFwPortLr(86), - swFwEPortLr(87), - swFwFCUPortLr(88), - swFwFOPPortLr(89), - swFwPortC3Discard(90), - swFwEPortC3Discard(91), - swFwFCUPortC3Discard(92), - swFwFOPPortC3Discard(93), - swFwVEPortStateChange(94), - swFwVEPortUtil(95), - swFwVEPortPktLoss(96), - swFwEPortTrunkUtil(97), - swFwFCUPortTrunkUtil(98), - swFwFOPPortTrunkUtil(99), - swFwCPUMemUsage(100), - filterFmCfg1(101), - filterFmCfg2(102), - filterFmCfg3(103), - filterFmCfg4(104), - filterFmCfg5(105), - filterFmCfg6(106), - filterFmCfg7(107), - filterFmCfg8(108), - filterFmCfg9(109), - filterFmCfg10(110), - filterFmCfg11(111), - filterFmCfg12(112), - filterFmCfg13(113), - filterFmCfg14(114), - filterFmCfg15(115), - filterFmCfg16(116), - filterFmCfg17(117), - filterFmCfg18(118), - filterFmCfg19(119), - filterFmCfg20(120), - filterFmCfg21(121), - filterFmCfg22(122), - filterFmCfg23(123), - filterFmCfg24(124), - filterFmCfg25(125), - filterFmCfg26(126), - filterFmCfg27(127), - filterFmCfg28(128), - filterFmCfg29(129), - filterFmCfg30(130), - filterFmCfg31(131), - filterFmCfg32(132), - filterFmCfg33(133), - filterFmCfg34(134), - filterFmCfg35(135), - filterFmCfg36(136), - filterFmCfg37(137), - filterFmCfg38(138), - filterFmCfg39(139), - filterFmCfg40(140), - filterFmCfg41(141), - filterFmCfg42(142), - filterFmCfg43(143), - filterFmCfg44(144), - filterFmCfg45(145), - filterFmCfg46(146), - filterFmCfg47(147), - filterFmCfg48(148), - filterFmCfg49(149), - filterFmCfg50(150), - filterFmCfg51(151), - swFwPowerOnHours(152) - } - - -- write only variable for applying or canceling - -- values or action matrix changes - SwFwWriteVals ::= INTEGER { - swFwCancelWrite(1), - swFwApplyWrite(2) - } - - -- timebase for thresholds - SwFwTimebase ::= INTEGER { - swFwTbNone(1), - swFwTbSec(2), - swFwTbMin(3), - swFwTbHour(4), - swFwTbDay(5) - } - - -- status for thresholds - SwFwStatus ::= INTEGER { - disabled(1), - enabled(2) - } - - -- possible events available - SwFwEvent ::= INTEGER { - started(1), - changed(2), - exceeded(3), - below(4), - above(5), - inBetween(6), - lowBufferCrsd(7) - } - - -- behavior type for thresholds - SwFwBehavior ::= INTEGER { - triggered(1), - continuous(2) - } - - -- state type for last events - SwFwState ::= INTEGER { - swFwInformative(1), - swFwNormal(2), - swFwFaulty(3) - } - - -- license state - SwFwLicense ::= INTEGER { - swFwLicensed(1), - swFwNotLicensed(2) - } - - -- This is the first of the elements declared for Fabric Watch : - -- one scalar & two tables - -- A scalar, swFwFabricWatchLicense is used to tell is if the switch has - -- proper license for Fabric Watch. Please refer to Fabric Watch - -- documentation for further information. - -- One table contains classArea information such as threshold unit string, - -- time base, low thresholds, etc. The other table contains individual - -- threshold information such as name, label, last event, etc. - -- Please refer to Fabric Watch documentation for further information. - - -- license scalar - swFwFabricWatchLicense OBJECT-TYPE - SYNTAX SwFwLicense - MAX-ACCESS read-only - STATUS current - DESCRIPTION "tells if licensed or not." - ::= { swFwSystem 1 } - - -- classArea table - swFwClassAreaTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwFwClassAreaEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The table of classes and areas." - ::= { swFwSystem 2 } - - swFwClassAreaEntry OBJECT-TYPE - SYNTAX SwFwClassAreaEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry of the classes and areas." - INDEX { swFwClassAreaIndex } - ::= { swFwClassAreaTable 1 } - - SwFwClassAreaEntry ::= SEQUENCE { - swFwClassAreaIndex SwFwClassesAreas, - swFwWriteThVals SwFwWriteVals, - swFwDefaultUnit DisplayString, - swFwDefaultTimebase SwFwTimebase, - swFwDefaultLow Integer32, - swFwDefaultHigh Integer32, - swFwDefaultBufSize Integer32, - swFwCustUnit DisplayString, - swFwCustTimebase SwFwTimebase, - swFwCustLow Integer32, - swFwCustHigh Integer32, - swFwCustBufSize Integer32, - swFwThLevel SwFwLevels, - swFwWriteActVals SwFwWriteVals, - swFwDefaultChangedActs SwFwActs, - swFwDefaultExceededActs SwFwActs, - swFwDefaultBelowActs SwFwActs, - swFwDefaultAboveActs SwFwActs, - swFwDefaultInBetweenActs SwFwActs, - swFwCustChangedActs SwFwActs, - swFwCustExceededActs SwFwActs, - swFwCustBelowActs SwFwActs, - swFwCustAboveActs SwFwActs, - swFwCustInBetweenActs SwFwActs, - swFwValidActs SwFwActs, - swFwActLevel SwFwLevels - } - - swFwClassAreaIndex OBJECT-TYPE - SYNTAX SwFwClassesAreas - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the class type." - ::= { swFwClassAreaEntry 1 } - - -- this variable is used to apply or cancel - -- changes made to swFwCustUnit, swFwCustTimebase, swFwCustLow, - -- swFwCustHigh, swFwCustBufSize. - -- read of this variable will always return cancel. - swFwWriteThVals OBJECT-TYPE - SYNTAX SwFwWriteVals - MAX-ACCESS read-write - STATUS current - DESCRIPTION "This object is set to apply the value changes." - ::= { swFwClassAreaEntry 2 } - - -- {swFwDefaultUnit, swFwDefaultTimebase, swFwDefaultMin, and swFwDefaultMax} - -- {swFwCustUnit, swFwCustTimebase, swFwCustMin, and swFwCustMax} - -- are grouped together to be applied to give threshold areas as in - --- Default and Cust. Which of default, or custom groups applies depends - --- on swFwThLevel. - swFwDefaultUnit OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A Default unit string name for a threshold area." - ::= { swFwClassAreaEntry 3 } - - swFwDefaultTimebase OBJECT-TYPE - SYNTAX SwFwTimebase - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A Default timebase for the current threshold counter." - ::= { swFwClassAreaEntry 4 } - - swFwDefaultLow OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A Default low threshold value." - ::= { swFwClassAreaEntry 5 } - - swFwDefaultHigh OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A Default high threshold value." - ::= { swFwClassAreaEntry 6 } - - swFwDefaultBufSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A Default buffer size value." - ::= { swFwClassAreaEntry 7 } - - swFwCustUnit OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "A custom unit string name for a threshold area." - ::= { swFwClassAreaEntry 8 } - - swFwCustTimebase OBJECT-TYPE - SYNTAX SwFwTimebase - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A custom timebase for the current threshold counter." - ::= { swFwClassAreaEntry 9 } - - swFwCustLow OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A custom low threshold value." - ::= { swFwClassAreaEntry 10 } - - swFwCustHigh OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A custom high threshold value." - ::= { swFwClassAreaEntry 11 } - - swFwCustBufSize OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A custom buffer size value." - ::= { swFwClassAreaEntry 12 } - - -- swFwThLevel is used to point to current level for classArea - -- values. It is either default or custom. - swFwThLevel OBJECT-TYPE - SYNTAX SwFwLevels - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A level where all the threshold values are set at." - ::= { swFwClassAreaEntry 13 } - - -- this variable is used to apply or cancel - -- changes made to swFwCustUnit, swFwCustTimebase, swFwCustLow, - -- swFwCustHigh, swFwCustBufSize. - -- read of this variable will always return cancel. - swFwWriteActVals OBJECT-TYPE - SYNTAX SwFwWriteVals - MAX-ACCESS read-write - STATUS current - DESCRIPTION "This object is set to apply act value changes." - ::= { swFwClassAreaEntry 14 } - - -- {swFwDefaultChangedActs, swFwDefaultExceededActs, swFwDefaultBelowActs, - -- and swFwDefaultAboveActs} and {swFwCustChangedActs, swFwCustExceededActs, - -- swFwCustBelowActs, and swFwCustAboveActs} are grouped together to be - -- applied to give threshold areas as in default and cust. Which of - -- default, or custom groups applies depends on swFwThLevel. - swFwDefaultChangedActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Default action matrix for changed event." - ::= { swFwClassAreaEntry 15 } - - swFwDefaultExceededActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Default action matrix for exceeded event." - ::= { swFwClassAreaEntry 16 } - - swFwDefaultBelowActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Default action matrix for below event." - ::= { swFwClassAreaEntry 17 } - - swFwDefaultAboveActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Default action matrix for above event." - ::= { swFwClassAreaEntry 18 } - - swFwDefaultInBetweenActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Default action matrix for in-between event." - ::= { swFwClassAreaEntry 19 } - - swFwCustChangedActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-write - STATUS current - DESCRIPTION "custom action matrix for changed event." - ::= { swFwClassAreaEntry 20 } - - swFwCustExceededActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-write - STATUS current - DESCRIPTION "custom action matrix for exceeded event." - ::= { swFwClassAreaEntry 21 } - - swFwCustBelowActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-write - STATUS current - DESCRIPTION "custom action matrix for below event." - ::= { swFwClassAreaEntry 22 } - - swFwCustAboveActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-write - STATUS current - DESCRIPTION "custom action matrix for above event." - ::= { swFwClassAreaEntry 23 } - - swFwCustInBetweenActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-write - STATUS current - DESCRIPTION "custom action matrix for in-between event." - ::= { swFwClassAreaEntry 24 } - - swFwValidActs OBJECT-TYPE - SYNTAX SwFwActs - MAX-ACCESS read-only - STATUS current - DESCRIPTION "matrix of valid acts for an class/area." - ::= { swFwClassAreaEntry 25 } - - -- swFwActLevel is used to point to current level for classArea - -- action matrix. It is either default or custom. - swFwActLevel OBJECT-TYPE - SYNTAX SwFwLevels - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A level where all the actions are set at." - ::= { swFwClassAreaEntry 26 } - - -- table for individual threshold - swFwThresholdTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwFwThresholdEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The table of individual thresholds." - ::= { swFwSystem 3 } - - swFwThresholdEntry OBJECT-TYPE - SYNTAX SwFwThresholdEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry of an individual threshold." - INDEX { swFwClassAreaIndex, swFwThresholdIndex } - ::= { swFwThresholdTable 1 } - - SwFwThresholdEntry ::= SEQUENCE { - swFwThresholdIndex Integer32, - swFwStatus SwFwStatus, - swFwName DisplayString, - swFwLabel DisplayString, - swFwCurVal Integer32, - swFwLastEvent SwFwEvent, - swFwLastEventVal Integer32, - swFwLastEventTime DisplayString, - swFwLastState SwFwState, - swFwBehaviorType SwFwBehavior, - swFwBehaviorInt Integer32, - swFwLastSeverityLevel SwSevType - } - - swFwThresholdIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the element index of - an threshold." - ::= { swFwThresholdEntry 1 } - - swFwStatus OBJECT-TYPE - SYNTAX SwFwStatus - MAX-ACCESS read-write - STATUS current - DESCRIPTION "This object identifies if an threshold is - enabled or disabled." - ::= { swFwThresholdEntry 2 } - - swFwName OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a name of the threshold." - ::= { swFwThresholdEntry 3 } - - swFwLabel OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..70)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a label of the threshold." - ::= { swFwThresholdEntry 4 } - - swFwCurVal OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a current counter of the threshold." - ::= { swFwThresholdEntry 5 } - - swFwLastEvent OBJECT-TYPE - SYNTAX SwFwEvent - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a last event type of the threshold." - ::= { swFwThresholdEntry 6 } - - swFwLastEventVal OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a last event value of the threshold." - ::= { swFwThresholdEntry 7 } - - swFwLastEventTime OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..32)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a last event time of the threshold." - ::= { swFwThresholdEntry 8 } - - swFwLastState OBJECT-TYPE - SYNTAX SwFwState - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a last event state of the threshold." - ::= { swFwThresholdEntry 9 } - - swFwBehaviorType OBJECT-TYPE - SYNTAX SwFwBehavior - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A behavior of which the thresholds generate event." - ::= { swFwThresholdEntry 10 } - - swFwBehaviorInt OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-write - STATUS current - DESCRIPTION "A integer of which the thresholds generate continuous event." - ::= { swFwThresholdEntry 11 } - - swFwLastSeverityLevel OBJECT-TYPE - SYNTAX SwSevType - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a last event severity level of the threshold." - ::= { swFwThresholdEntry 12 } - - -- swEndDevice Group - -- ########################################################################### - -- table for RLS of end devices. - -- swEndDevice consists of only one table. - -- swEndDeviceRlsTable contains entries of individual end devices' rls. - -- ########################################################################### - - swEndDeviceRlsTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwEndDeviceRlsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "The table of individual end devices' rls." - ::= { swEndDevice 1 } - - swEndDeviceRlsEntry OBJECT-TYPE - SYNTAX SwEndDeviceRlsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry of an individual end devices' rls." - INDEX { swEndDevicePort, swEndDeviceAlpa } - ::= { swEndDeviceRlsTable 1 } - - SwEndDeviceRlsEntry ::= SEQUENCE { - swEndDevicePort Integer32, - swEndDeviceAlpa Integer32, - swEndDevicePortID OCTET STRING, - swEndDeviceLinkFailure Counter32, - swEndDeviceSyncLoss Counter32, - swEndDeviceSigLoss Counter32, - swEndDeviceProtoErr Counter32, - swEndDeviceInvalidWord Counter32, - swEndDeviceInvalidCRC Counter32 - } - - -- Since Silkworm family switches start with port # 0 - -- snmp port # should be physical port # + 1. - -- i.e. snmp port # 3 translates to port # 2 - swEndDevicePort OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This object identifies the port of the end device." - ::= { swEndDeviceRlsEntry 1 } - - -- snmp alpa # should be logical alpa # + 1. - -- i.e. snmp alpa # 0xf0 translates to 0xef - swEndDeviceAlpa OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This object identifies the alpa of the end device." - ::= { swEndDeviceRlsEntry 2 } - - swEndDevicePortID OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The object identifies the Fibre Channel port address - ID of the entry." - ::= { swEndDeviceRlsEntry 3 } - - swEndDeviceLinkFailure OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Link failure count for the end device." - ::= { swEndDeviceRlsEntry 4 } - - swEndDeviceSyncLoss OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Sync loss count for the end device." - ::= { swEndDeviceRlsEntry 5 } - - swEndDeviceSigLoss OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Sig loss count for the end device." - ::= { swEndDeviceRlsEntry 6 } - - swEndDeviceProtoErr OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Protocol err count for the end device." - ::= { swEndDeviceRlsEntry 7 } - - swEndDeviceInvalidWord OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Invalid word count for the end device." - ::= { swEndDeviceRlsEntry 8 } - - swEndDeviceInvalidCRC OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Invalid CRC count for the end device." - ::= { swEndDeviceRlsEntry 9 } - --- table for displaying all the Groups - swGroupTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwGroupEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION "The table of groups. This may not be available - on all versions of Fabric OS." - ::= { swGroup 1 } - - swGroupEntry OBJECT-TYPE - SYNTAX SwGroupEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION "An entry of table of groups." - INDEX { swGroupIndex } - ::= { swGroupTable 1 } - - SwGroupEntry ::= SEQUENCE { - swGroupIndex Integer32, - swGroupName OCTET STRING, - swGroupType OCTET STRING - } -swGroupIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION "This object is the group index starting from 1." - ::= { swGroupEntry 1 } - - swGroupName OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..32)) - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION "This object identifies the name of the group." - ::= { swGroupEntry 2 } - - swGroupType OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..15)) - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION "This object identifies the type of the group." - ::= { swGroupEntry 3 } - --- table for displaying group members for all the groups - - swGroupMemTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwGroupMemEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION "The table of members of all groups. This may not - be available on all versions of Fabric OS." - ::= { swGroup 2 } - - swGroupMemEntry OBJECT-TYPE - SYNTAX SwGroupMemEntry - MAX-ACCESS not-accessible - STATUS obsolete - DESCRIPTION "An entry for a member of a group." - INDEX { swGroupId, swGroupMemWwn } - ::= { swGroupMemTable 1 } - - SwGroupMemEntry ::= SEQUENCE { - swGroupId Integer32, - swGroupMemWwn FcWwn, - swGroupMemPos Integer32 - } - - swGroupId OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION "This object identifies the Group Id of the - member switch." - ::= { swGroupMemEntry 1 } - - swGroupMemWwn OBJECT-TYPE - SYNTAX FcWwn - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION "This object identifies the WWN of the member switch." - ::= { swGroupMemEntry 2 } - - swGroupMemPos OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS obsolete - DESCRIPTION "This object identifies position of the member - switch in the group. This is based on the order - that the switches were added in the group." - ::= { swGroupMemEntry 3 } - --- ************************************************************************************ --- Bloom Performance counter tables. * --- * --- ************************************************************************************ - - swBlmPerfALPAMntTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwBlmPerfALPAMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "ALPA monitoring counter Table. " - ::= { swBlmPerfMnt 1} - - swBlmPerfALPAMntEntry OBJECT-TYPE - SYNTAX SwBlmPerfALPAMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " ALPA monitoring counter for given ALPA." - INDEX { swBlmPerfAlpaPort,swBlmPerfAlpaIndx } - ::= { swBlmPerfALPAMntTable 1} - - SwBlmPerfALPAMntEntry ::= SEQUENCE { - swBlmPerfAlpaPort SwPortIndex, - swBlmPerfAlpaIndx Integer32, - swBlmPerfAlpa Integer32, - swBlmPerfAlpaCRCCnt OCTET STRING - } - - swBlmPerfAlpaPort OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION " This Object identifies the port index of the switch." - ::= { swBlmPerfALPAMntEntry 1} - - swBlmPerfAlpaIndx OBJECT-TYPE - SYNTAX Integer32 (1..126) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " This Object identifies the ALPA index. There can be 126 ALPA values" - ::= { swBlmPerfALPAMntEntry 2} - - swBlmPerfAlpa OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " This Object identifies the ALPA values. These values - range between x'01' and x'EF'(1 to 239). ALPA value x'00' - is reserved for FL_Port - If Alpa device is invalid, then it will have -1 value. " - ::= { swBlmPerfALPAMntEntry 3} - - swBlmPerfAlpaCRCCnt OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Get CRC count for given ALPA and port. This monitoring - provides information on the number of CRC errors - occurred on the frames destined to each possible ALPA - attached to a specific port." - - ::= { swBlmPerfALPAMntEntry 4} - - swBlmPerfEEMntTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwBlmPerfEEMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " End-to-End monitoring counter Table" - ::= { swBlmPerfMnt 2} - - swBlmPerfEEMntEntry OBJECT-TYPE - SYNTAX SwBlmPerfEEMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "End-to-End monitoring counter for given port." - INDEX { swBlmPerfEEPort, swBlmPerfEERefKey} - ::= { swBlmPerfEEMntTable 1} - - SwBlmPerfEEMntEntry ::= SEQUENCE{ - swBlmPerfEEPort SwPortIndex, - swBlmPerfEERefKey Integer32, - swBlmPerfEECRC OCTET STRING, - swBlmPerfEEFCWRx OCTET STRING, - swBlmPerfEEFCWTx OCTET STRING, - swBlmPerfEESid Integer32, - swBlmPerfEEDid Integer32 -} - - swBlmPerfEEPort OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION " This object identifies the port number of the switch." - ::= { swBlmPerfEEMntEntry 1} - - swBlmPerfEERefKey OBJECT-TYPE - SYNTAX Integer32 (1..8) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the reference number - of the counter. This reference is number assigned - when a filter is created. In SNMP Index start one - instead of 0, add one to actual ref key" - ::= { swBlmPerfEEMntEntry 2} - - swBlmPerfEECRC OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " Get End to End CRC error for the frames that matched - the SID-DID pair." -::= { swBlmPerfEEMntEntry 3} - - - swBlmPerfEEFCWRx OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Get End to End count of Fibre Channel words (FCW), - received by the port, that matched - the SID-DID pair. " - ::= { swBlmPerfEEMntEntry 4 } - - swBlmPerfEEFCWTx OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Get End to End count of Fibre Channel words (FCW), - transmitted by the port, that matched the SID-DID pair. " - ::= { swBlmPerfEEMntEntry 5} - - swBlmPerfEESid OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " Gets SID info by reference number. SID (Source Identifier) - is a 3-byte field in the frame header used to indicate the - address identifier of the N-Port from which the frame was sent." - ::= { swBlmPerfEEMntEntry 6 } - - swBlmPerfEEDid OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Gets DID info by reference number. - DID (Destination Identifier) is a 3-byte field in the - frame header used to indicate the address identifier of - the N-Port to which the frame was sent." - ::= { swBlmPerfEEMntEntry 7 } - - swBlmPerfFltMntTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwBlmPerfFltMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Filter based monitoring counter." - ::= { swBlmPerfMnt 3} - - swBlmPerfFltMntEntry OBJECT-TYPE - SYNTAX SwBlmPerfFltMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " Filter base monitoring counter for given port." - INDEX { swBlmPerfFltPort,swBlmPerfFltRefkey} - ::= { swBlmPerfFltMntTable 1} - - SwBlmPerfFltMntEntry ::= SEQUENCE{ - swBlmPerfFltPort SwPortIndex, - swBlmPerfFltRefkey Integer32, - swBlmPerfFltCnt OCTET STRING, - swBlmPerfFltAlias DisplayString - } - - swBlmPerfFltPort OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the port number of the switch." - ::= { swBlmPerfFltMntEntry 1} - - swBlmPerfFltRefkey OBJECT-TYPE - SYNTAX Integer32 (1..8) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " This object identifies the reference number of the filter. - This reference number is assigned when a filter is created. - In SNMP Index start one instead of 0, add one to actual ref key" - ::= { swBlmPerfFltMntEntry 2} - - swBlmPerfFltCnt OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Get statistics of filter based monitor. - Filter based monitoring provides information - about a filter hit count such as - 1. Read command - 2. SCSI or IP traffic - 3. SCSI Read/Write" - ::= { swBlmPerfFltMntEntry 3 } - - swBlmPerfFltAlias OBJECT-TYPE - SYNTAX DisplayString(SIZE(0..20)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " Alias name for the filter." - ::= { swBlmPerfFltMntEntry 4} - -swSwitchTrunkable OBJECT-TYPE - SYNTAX INTEGER { yes ( 8 ) , no ( 0 ) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The trunking status of the switch - whether the switch supports the trunking feature or not. The values are - yes(8) - the trunking feature is supported - no(0). - the trunking feature is not supported. " - - ::= { swTrunk 1} - -swTrunkTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwTrunkEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION " Table to display trunking information for the switch. " - ::= { swTrunk 2} - -swTrunkEntry OBJECT-TYPE - SYNTAX SwTrunkEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Entry for the trunking table." - INDEX { swTrunkPortIndex } - ::= { swTrunkTable 1} - -SwTrunkEntry ::= SEQUENCE{ - swTrunkPortIndex SwPortIndex, - swTrunkGroupNumber Integer32, - swTrunkMaster SwTrunkMaster, - swPortTrunked INTEGER - } - -swTrunkPortIndex OBJECT-TYPE - SYNTAX SwPortIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the switch port index. - Note that the value of a port index is 1 higher than the - port number labeled on the front panel. - e.g. port index 1 correspond to port number 0. " - ::= { swTrunkEntry 1 } - -swTrunkGroupNumber OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a logical entity which specifies - the Group Number to which the port belongs to. - If this value is Zero it means the port is not Trunked." - ::= { swTrunkEntry 2} - -swTrunkMaster OBJECT-TYPE - SYNTAX SwTrunkMaster - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Port number that is the trunk master of the group. - The trunk master implicitly defines the group. - All ports with the same master are considered to be part of the same group." - ::= { swTrunkEntry 3 } - - swPortTrunked OBJECT-TYPE - SYNTAX INTEGER {disabled(0), enabled(1)} - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The active trunk status for a member port. - Values are enabled(1) or disabled(0)." - ::= { swTrunkEntry 4 } - - - swTrunkGrpTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwTrunkGrpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table to display trunking Performance - information for the switch." - ::= { swTrunk 3} - - swTrunkGrpEntry OBJECT-TYPE - SYNTAX SwTrunkGrpEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Entry for the trunking Group table." - INDEX { swTrunkGrpNumber} - ::= { swTrunkGrpTable 1} - - SwTrunkGrpEntry ::= SEQUENCE{ - swTrunkGrpNumber Integer32, - swTrunkGrpMaster SwTrunkMaster, - swTrunkGrpTx OCTET STRING, - swTrunkGrpRx OCTET STRING - } - - swTrunkGrpNumber OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object is a logical entity which - specifies the Group Number to which port - belongs to." - ::= { swTrunkGrpEntry 1 } - - swTrunkGrpMaster OBJECT-TYPE - SYNTAX SwTrunkMaster - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object gives the master port id - for the TrunkGroup." - ::= { swTrunkGrpEntry 2 } - - swTrunkGrpTx OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Gives the aggregate value of the - transmitted words from this TrunkGroup." - ::= { swTrunkGrpEntry 3} - - swTrunkGrpRx OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Gives the aggregate value of the - received words by this TrunkGroup." - ::= { swTrunkGrpEntry 4 } - -swTopTalkerMntMode OBJECT-TYPE - SYNTAX INTEGER { - fabricmode (1), - portmode (2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Gives the mode in which toptalker - is installed" - ::= { swTopTalker 1} - -swTopTalkerMntNumEntries OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Gives the number of toptalking - flows" - ::= { swTopTalker 2} - -swTopTalkerMntTable OBJECT-TYPE - SYNTAX SEQUENCE OF SwTopTalkerMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table to display toptalkingflows" - ::= { swTopTalker 3} - - swTopTalkerMntEntry OBJECT-TYPE - SYNTAX SwTopTalkerMntEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Entry for the toptalker table" - INDEX{ swTopTalkerMntIndex} - ::= { swTopTalkerMntTable 1} - - SwTopTalkerMntEntry ::= SEQUENCE{ - swTopTalkerMntIndex Integer32, - swTopTalkerMntPort Integer32, - swTopTalkerMntSpid Integer32, - swTopTalkerMntDpid Integer32, - swTopTalkerMntflow Integer32, - swTopTalkerMntSwwn FcWwn, - swTopTalkerMntDwwn FcWwn -} - - swTopTalkerMntIndex OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the list/object - entry" - ::= { swTopTalkerMntEntry 1} - - - swTopTalkerMntPort OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the switch port - number on which the f-port mode toptalker - is added." - ::= { swTopTalkerMntEntry 2} - - swTopTalkerMntSpid OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the SID of the host" - ::= { swTopTalkerMntEntry 3} - - swTopTalkerMntDpid OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the DID of the SID-DID pair" - ::= { swTopTalkerMntEntry 4} - - swTopTalkerMntflow OBJECT-TYPE - SYNTAX Integer32 (1..32) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the traffic flow in MB/sec" - ::= { swTopTalkerMntEntry 5} - - swTopTalkerMntSwwn OBJECT-TYPE - SYNTAX FcWwn - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the SID in WWN format of the host" - ::= { swTopTalkerMntEntry 6} - - swTopTalkerMntDwwn OBJECT-TYPE - SYNTAX FcWwn - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This object identifies the DID in WWN format of the SID-DID pair" - ::= { swTopTalkerMntEntry 7} - - - swCpuUsage OBJECT-TYPE - SYNTAX Integer32(0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "System's cpu usage." - ::= { swCpuOrMemoryUsage 1 } - - swCpuNoOfRetries OBJECT-TYPE - SYNTAX Integer32 (1..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of times system should take cpu utilization sample before sending the CPU utilization trap." - ::= { swCpuOrMemoryUsage 2 } - - swCpuUsageLimit OBJECT-TYPE - SYNTAX Integer32 (1..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "CPU usage limit. If MAPS is enabled, then this - object is not supported and return 0 value." - ::= { swCpuOrMemoryUsage 3 } - - swCpuPollingInterval OBJECT-TYPE - SYNTAX Integer32 (10..3600) - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Time interval between two memory samples." - ::= { swCpuOrMemoryUsage 4 } - - swCpuAction OBJECT-TYPE - SYNTAX INTEGER { - none (0), - raslog (1), - snmp (2), - raslogandSnmp (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Specifies the actions to be taken if system - resources exceed the specified threshold. - If MAPS is enabled, then this object is not - supported and return 0 value." - ::= { swCpuOrMemoryUsage 5 } - - swMemUsage OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "System's memory usage." - ::= { swCpuOrMemoryUsage 6 } - - swMemNoOfRetries OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of times system should take memory usage sample before sending the memory usage trap." - ::= { swCpuOrMemoryUsage 7 } - - swMemUsageLimit OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Memory usage limit" - ::= { swCpuOrMemoryUsage 8 } - - swMemPollingInterval OBJECT-TYPE - SYNTAX Integer32 (10..3600) - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Time interval between two memory samples." - ::= { swCpuOrMemoryUsage 9 } - - swMemAction OBJECT-TYPE - SYNTAX INTEGER { - none (0), - raslog (1), - snmp (2), - raslogandSnmp (3) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Specifies the actions to be taken if system - resources exceed the specified threshold. - If MAPS is enabled, then this object is not - supported and return 0 value." - ::= { swCpuOrMemoryUsage 10 } - - - swMemUsageLimit1 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Low memory usage limit. If MAPS is enabled, - then this object is not supported and - return 0 value." - ::= { swCpuOrMemoryUsage 11 } - - - swMemUsageLimit3 OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "High memory usage limit. If MAPS is enabled, - then this object is not supported and - return 0 value." - ::= { swCpuOrMemoryUsage 12 } - - - swConnUnitPortStatEntry OBJECT-TYPE - SYNTAX SwConnUnitPortStatEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "This represents the Conn unit Port Stats" - AUGMENTS {connUnitPortStatEntry} - ::= { swConnUnitPortStatExtentionTable 1 } - - SwConnUnitPortStatEntry ::= SEQUENCE { - swConnUnitCRCWithBadEOF OCTET STRING, - swConnUnitZeroTenancy OCTET STRING, - swConnUnitFLNumOfTenancy OCTET STRING, - swConnUnitNLNumOfTenancy OCTET STRING, - swConnUnitStopTenancyStarVation OCTET STRING, - swConnUnitOpend OCTET STRING, - swConnUnitTransferConnection OCTET STRING, - swConnUnitOpen OCTET STRING, - swConnUnitInvalidARB OCTET STRING, - swConnUnitFTB1Miss OCTET STRING, - swConnUnitFTB2Miss OCTET STRING, - swConnUnitFTB6Miss OCTET STRING, - swConnUnitZoneMiss OCTET STRING, - swConnUnitLunZoneMiss OCTET STRING, - swConnUnitBadEOF OCTET STRING, - swConnUnitLCRX OCTET STRING, - swConnUnitRDYPriority OCTET STRING, - swConnUnitLli OCTET STRING, - swConnUnitInterrupts OCTET STRING, - swConnUnitUnknownInterrupts OCTET STRING, - swConnUnitTimedOut OCTET STRING, - swConnUnitProcRequired OCTET STRING, - swConnUnitTxBufferUnavailable OCTET STRING, - swConnUnitStateChange OCTET STRING, - swConnUnitC3DiscardDueToRXTimeout OCTET STRING, - swConnUnitC3DiscardDueToDestUnreachable OCTET STRING, - swConnUnitC3DiscardDueToTXTimeout OCTET STRING, - swConnUnitC3DiscardOther OCTET STRING, - swConnUnitPCSErrorCounter OCTET STRING, - swConnUnitUnroutableFrameCounter OCTET STRING, - swConnUnitFECCorrectedCounter OCTET STRING, - swConnUnitFECUnCorrectedCounter OCTET STRING - } - swConnUnitCRCWithBadEOF OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of frames with CRC error with Bad EOF." - ::= { swConnUnitPortStatEntry 1 } - - swConnUnitZeroTenancy OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the FL_port acquires the loop but does not transmit a frame." - ::= { swConnUnitPortStatEntry 2 } - swConnUnitFLNumOfTenancy OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the FL_port acquires the loop." - ::= { swConnUnitPortStatEntry 3 } - - swConnUnitNLNumOfTenancy OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the NL_port acquires the loop." - ::= { swConnUnitPortStatEntry 4 } - - swConnUnitStopTenancyStarVation OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the FL_port can not transmit a frame because of lack of credit." - ::= { swConnUnitPortStatEntry 5 } - - swConnUnitOpend OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of times FC port entered OPENED state." - ::= { swConnUnitPortStatEntry 6 } - - swConnUnitTransferConnection OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of times FC port entered TRANSFER state." - ::= { swConnUnitPortStatEntry 7 } - - swConnUnitOpen OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of times FC port entered OPEN state." - ::= { swConnUnitPortStatEntry 8 } - - swConnUnitInvalidARB OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of times FC port received invalid ARB." - ::= { swConnUnitPortStatEntry 9 } - - swConnUnitFTB1Miss OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the port receives a frame with a DID that can not be routed by FCR.. Applicable to 8G platforms only." - ::= { swConnUnitPortStatEntry 10 } - - swConnUnitFTB2Miss OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the port receives a frame with an SID/DID combination that can not be routed by the VF module.Applicable to 8G platforms only." - ::= { swConnUnitPortStatEntry 11 } - - swConnUnitFTB6Miss OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when port receives a frame with an SID that can not be routed by FCR. Applicable to 8G platforms." - ::= { swConnUnitPortStatEntry 12 } - - swConnUnitZoneMiss OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the port receives a frame with an SID and DID that are not zoned together." - ::= { swConnUnitPortStatEntry 13 } - - - swConnUnitLunZoneMiss OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "This counter is incremented when the port receives a frame with an SID, DID and LUN that are not zoned together( This is not currently used )." - ::= { swConnUnitPortStatEntry 14 } - - swConnUnitBadEOF OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of frames with bad end-of-frame." - ::= { swConnUnitPortStatEntry 15 } - - swConnUnitLCRX OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of link control frames received." - ::= { swConnUnitPortStatEntry 16 } - - swConnUnitRDYPriority OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number of times that sending R_RDY or VC_RDY primitive signals was a higher priority than sending frames, due to diminishing credit reserves in the transmitter at the other end of the fibre." - ::= { swConnUnitPortStatEntry 17 } - - swConnUnitLli OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "The number low level interrupts generated by the physical and link layer." - ::= { swConnUnitPortStatEntry 18 } - - swConnUnitInterrupts OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " This represents all the interrupts received on a port. - Includes LLI, unknown etc" - ::= { swConnUnitPortStatEntry 19 } - - swConnUnitUnknownInterrupts OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " Represents all the unknown interrupts received on a port." - ::= { swConnUnitPortStatEntry 20 } - - swConnUnitTimedOut OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Represents number of timed out frames due to any reason." - ::= { swConnUnitPortStatEntry 21 } - - swConnUnitProcRequired OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Represents number of frames trapped by CPU." - ::= { swConnUnitPortStatEntry 22 } - - swConnUnitTxBufferUnavailable OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of times port failed to transmit frames ." - ::= { swConnUnitPortStatEntry 23 } - - swConnUnitStateChange OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION " Number of times port has gone to offline, online, and - faulty state." - ::= { swConnUnitPortStatEntry 24 } - - swConnUnitC3DiscardDueToRXTimeout OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of Class 3 receive frames discarded due to timeout." - ::= { swConnUnitPortStatEntry 25 } - - swConnUnitC3DiscardDueToDestUnreachable OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of Class 3 frames discarded due to destination unreachable." - ::= { swConnUnitPortStatEntry 26 } - - swConnUnitC3DiscardDueToTXTimeout OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of Class 3 transmit frames discarded due to timeout." - ::= { swConnUnitPortStatEntry 27 } - - swConnUnitC3DiscardOther OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of Class 3 frames discarded due to unknow reasons." - ::= { swConnUnitPortStatEntry 28 } - - swConnUnitPCSErrorCounter OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of Physical coding sublayer(PCS) block errors. It records the encoding violations on 10G or 16Gbps port." - ::= { swConnUnitPortStatEntry 29 } - - swConnUnitUnroutableFrameCounter OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (8)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "It indicates unroutable frame counter" - ::= { swConnUnitPortStatEntry 30 } - - swConnUnitFECCorrectedCounter OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "It indicates Forward Error Correction Corrected Blocks count.FEC feature is only applicable to 10G/16G platforms." - ::= { swConnUnitPortStatEntry 31 } - - swConnUnitFECUnCorrectedCounter OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (64)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "It indicates Forward Error Correction UnCorrected Blocks count.FEC feature is only applicable to 10G/16G platforms." - ::= { swConnUnitPortStatEntry 32 } --- Enterprise Specific Traps for Fibre Channel Switch (sw). --- - - swTrapsV2 OBJECT-IDENTITY - STATUS current - DESCRIPTION "The Traps for Brocade's Fibre Channel Switch." - ::= { sw 0 } - - swFault NOTIFICATION-TYPE - OBJECTS { swDiagResult, swSsn - } - STATUS obsolete - DESCRIPTION "Obsoleted this trap as firmware doesn't support this trap. - A swFault(1) is generated whenever the diagnostics - detects a fault with the switch." - --#TYPE "Switch is faulty." - --#SUMMARY "Faulty reason: %d and SSN is #%s,GroupName %s,GroupType %s,GroupMemPosition %d" - --#ARGUMENTS { 0, 1, 2, 3, 4} - --#SEVERITY CRITICAL - --#TIMEINDEX 1 - --#STATE NONOPERATIONAL - ::= { swTrapsV2 1 } - - swSensorScn NOTIFICATION-TYPE - OBJECTS { swSensorStatus, swSensorIndex, swSensorType, - swSensorValue, swSensorInfo, swSsn - } - STATUS current - DESCRIPTION "A swSensorScn(2) is generated whenever an - environment sensor changes its operational state. For instance, - a fan stop working. The VarBind in the Trap Data Unit shall - contain the corresponding instance of the sensor - status, sensor index, sensor type, sensor value (reading) - and sensor information. Note that the sensor information contains the type of sensor - and its number in textual format." - --#TYPE "A sensor (temperature, fan, etc.) changed its operational state." - --#SUMMARY "%s: is currently in state %d and SSN is #%s" - --#ARGUMENTS { 4, 0, 5 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 2 } - - swFCPortScn NOTIFICATION-TYPE - OBJECTS { swFCPortOpStatus, swFCPortIndex, swFCPortName, - swFCPortWwn, swFCPortPrevType, swFCPortBrcdType, - swSsn, swFCPortFlag, swFCPortDisableReason, swVfId } - STATUS current - DESCRIPTION "This trap is sent whenever an FC port operational status or - its type changed. The events that trigger this trap are - port goes to online/offline, port type changed to - E-port/F-port/FL-port. swFCPortName and swSsn are optional - varbind in the trap PDU" - --#TYPE "A Fibre Channel Port changed its operational state." - --#SUMMARY "Port Index %d changed state to %d Port Name: %s and SSN is #%s" - --#ARGUMENTS { 1, 0, 2, 3 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 3 } - - swEventTrap NOTIFICATION-TYPE - OBJECTS { swEventIndex, swEventTimeInfo, swEventLevel, - swEventRepeatCount, swEventDescr, swSsn, - swVfId } - STATUS current - DESCRIPTION "This trap is generated when an event whose - level at or below swEventTrapLevel occurs." - --#TYPE "A firmware event has been logged" - --#SUMMARY "Event Index %d: %s (severity level %d) - %s SSN is #%s" - --#ARGUMENTS { 0, 1, 2, 4, 5 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 4 } - - -- traps for Fabric Watch subsystem - - swFabricWatchTrap NOTIFICATION-TYPE - OBJECTS { swFwClassAreaIndex, - swFwThresholdIndex, - swFwName, - swFwLabel, - swFwLastEventVal, - swFwLastEventTime, - swFwLastEvent, - swFwLastState, - swFwLastSeverityLevel, - swSsn, - swVfId - } - STATUS current - DESCRIPTION "trap to be sent by Fabric Watch to notify of an event." - --#TYPE "Fabric Watch has generated an event" - --#SUMMARY "Threshold %s in Class/Area %d at index %d has generated event %d with %d on %s. The event severity is %d. trap severity level is %d and SSN is #%s" - --#ARGUMENTS { 2, 0, 1, 6, 4, 5, 7, 8, 9 } - --#SEVERITY WARNING - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 5 } - - -- traps for track changes subsystem - - swTrackChangesTrap NOTIFICATION-TYPE - OBJECTS { swTrackChangesInfo, swSsn, swVfId - } - STATUS current - DESCRIPTION "trap to be sent for tracking login/logout/config changes." - --#TYPE "Track changes has generated a trap" - --#SUMMARY "%s and SSN is #%s" - --#ARGUMENTS { 0, 1 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 6 } - - swIPv6ChangeTrap NOTIFICATION-TYPE - OBJECTS { swIPv6Address, swIPv6Status } - STATUS current - DESCRIPTION "This trap is generated when an ipv6 address - status change event occurs." - --#TYPE "IPv6 address status change has generated a trap" - --#SUMMARY "IPv6 address change event has occured" - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 7 } - - swPmgrEventTrap NOTIFICATION-TYPE - OBJECTS { swPmgrEventType, swPmgrEventTime, swPmgrEventDescr, swSsn, swVfId } - STATUS current - DESCRIPTION "This trap is generated when any partition manager - change happens." - --#TYPE "Partition manager status change has generated a trap" - --#SUMMARY "pmgr event of type %d occured on %d swVfId and SSN is #%s. Time is %s and the description is %s" - --#ARGUMENTS { 0, 4, 3, 1, 2 } - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 8 } - - swFabricReconfigTrap NOTIFICATION-TYPE - OBJECTS { swDomainID } - STATUS current - DESCRIPTION "trap to be sent for tracking fabric reconfiguration" - --#TYPE "Fabric reconfiguration has generated a trap" - --#SUMMARY "Fabric reconfiguration has occured" - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 9 } - - swFabricSegmentTrap NOTIFICATION-TYPE - OBJECTS { swFCPortIndex, swFCPortName, swSsn, - swFCPortFlag, swVfId } - STATUS current - DESCRIPTION "trap to be sent for tracking segmentation" - --#TYPE "Fabric segmentation has generated a trap" - --#SUMMARY "Fabric segmentation event has occured" - --#ARGUMENTS {} - --#SEVERITY INFORMATIONAL - --#TIMEINDEX 1 - --#STATE OPERATIONAL - ::= { swTrapsV2 10 } - - swExtTrap NOTIFICATION-TYPE - STATUS current - DESCRIPTION "THIS IS INTERNAL TRAP" - ::= { swTrapsV2 11 } - - swStateChangeTrap NOTIFICATION-TYPE - OBJECTS { swOperStatus, swVfId } - STATUS current - DESCRIPTION "This trap is sent whenever switch state changes to online/offline" - ::= { swTrapsV2 12 } - - swPortMoveTrap NOTIFICATION-TYPE - OBJECTS { swPortList, swVfId} - STATUS current - DESCRIPTION "This trap is sent when ports are moved from one switch to another" - ::= { swTrapsV2 13 } - - swBrcdGenericTrap NOTIFICATION-TYPE - OBJECTS { swBrcdTrapBitMask} - STATUS current - DESCRIPTION "This trap is sent when there is any one of the following - event occured. - 1. fabric change - 2. device change - 3. Fapwwn change - 4. fdmi event - This Trap is strictly for brocade's internal usage." - ::= { swTrapsV2 14 } - - swDeviceStatusTrap NOTIFICATION-TYPE - OBJECTS { swFCPortSpecifier, swDeviceStatus, swEndDevicePortID, swNsNodeName} - STATUS current - DESCRIPTION "This trap is sent whenever there is a device login or logout" - ::= { swTrapsV2 15 } - - swZoneConfigChangeTrap NOTIFICATION-TYPE - OBJECTS { swVfId } - STATUS current - DESCRIPTION "This trap is sent whenever there is change in local zone database." - ::= { swTrapsV2 16 } - - -- end of Enterprise Specific Traps for Fibre Channel Switch (sw) -END diff --git a/mibs/orig/SYNOLOGY-DISK-MIB b/mibs/orig/SYNOLOGY-DISK-MIB deleted file mode 100644 index 48fef27..0000000 --- a/mibs/orig/SYNOLOGY-DISK-MIB +++ /dev/null @@ -1,141 +0,0 @@ -SYNOLOGY-DISK-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - enterprises, MODULE-IDENTITY, OBJECT-TYPE, Integer32 - FROM SNMPv2-SMI; - -synoDisk MODULE-IDENTITY - LAST-UPDATED "201309110000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Jay Pan - email: jaypan@synology.com" - DESCRIPTION - "Characteristics of the disk information" - REVISION "201309110000Z" - DESCRIPTION - "Second draft." - ::= { synology 2 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -diskTable OBJECT-TYPE - SYNTAX SEQUENCE OF DiskEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Synology disk table" - ::= { synoDisk 1 } - -diskEntry OBJECT-TYPE - SYNTAX DiskEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "For all disk entry" - INDEX { diskIndex } - ::= { diskTable 1 } - -DiskEntry ::= SEQUENCE { - diskIndex Integer32, - diskID OCTET STRING, - diskModel OCTET STRING, - diskType OCTET STRING, - diskStatus Integer32, - diskTemperature Integer32 -} - -diskIndex OBJECT-TYPE - SYNTAX Integer32(0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index of disk table" - ::= { diskEntry 1 } - -diskID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology disk ID - The ID of disk is assigned by disk Station. - " - ::= { diskEntry 2 } - -diskModel OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology disk model name - The disk model name will be showed here. - " - ::= { diskEntry 3 } - -diskType OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology disk type - The type of disk will be showed here, including SATA, SSD and so on. - " - ::= { diskEntry 4 } - -diskStatus OBJECT-TYPE - SYNTAX Integer32(1..5) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology disk status - Each meanings of status represented describe below. - - Normal(1): The hard disk functions normally. - Initialized(2): The hard disk has system partition but no data. - NotInitialized(3): The hard disk does not have system in system partition. - SystemPartitionFailed(4): The system partitions on the hard disks are damaged. - Crashed(5): The hard disk has damaged. - " - ::= { diskEntry 5 } - -diskTemperature OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology disk temperature - The temperature of each disk uses Celsius degree. - " - ::= { diskEntry 6 } - -diskConformance OBJECT IDENTIFIER ::= { synoDisk 2 } -diskCompliances OBJECT IDENTIFIER ::= { diskConformance 1 } -diskGroups OBJECT IDENTIFIER ::= { diskConformance 2 } - -diskCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for synoDisk entities which - implement the SYNOLOGY DISK MIB." - MODULE -- this module - MANDATORY-GROUPS { diskGroup } - - ::= { diskCompliances 1 } - -diskGroup OBJECT-GROUP - OBJECTS { diskID, - diskModel, - diskType, - diskStatus, - diskTemperature} - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology disk entity." - ::= { diskGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-EBOX-MIB b/mibs/orig/SYNOLOGY-EBOX-MIB deleted file mode 100644 index 77d3746..0000000 --- a/mibs/orig/SYNOLOGY-EBOX-MIB +++ /dev/null @@ -1,94 +0,0 @@ -SYNOLOGY-EBOX-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -synologyEbox MODULE-IDENTITY - LAST-UPDATED "201706260000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Kevin Hsu - email: kevinhsu@synology.com" - DESCRIPTION "List ebox info in DS" - REVISION "201706260000Z" - DESCRIPTION "First draft." - ::= { synology 105 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -eboxTable OBJECT-TYPE - SYNTAX SEQUENCE OF EboxEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of ebox data." - ::= { synologyEbox 1 } - -eboxEntry OBJECT-TYPE - SYNTAX EboxEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing ebox information" - INDEX { eboxIndex } - ::= { eboxTable 1 } - -EboxEntry ::= SEQUENCE { - eboxIndex Integer32, - eboxModel OCTET STRING, - eboxPower Integer32, - eboxRedundantPower Integer32 -} - -eboxIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Ebox info index" - ::= { eboxEntry 1 } - -eboxModel OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Ebox model" - ::= { eboxEntry 2 } - -eboxPower OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Ebox Power" - ::= { eboxEntry 3 } - -eboxRedundantPower OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Ebox Redundant Power" - ::= { eboxEntry 4 } - -synologyEboxConformance OBJECT IDENTIFIER ::= { synologyEbox 2 } -synologyEboxCompliances OBJECT IDENTIFIER ::= { synologyEboxConformance 1 } -synologyEboxGroups OBJECT IDENTIFIER ::= { synologyEboxConformance 2 } - -synologyEboxCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION "The compliance statement for ebox information." - MODULE -- this module - MANDATORY-GROUPS { synologyEboxGroup } - ::= { synologyEboxCompliances 1 } - -synologyEboxGroup OBJECT-GROUP - OBJECTS { eboxModel, - eboxPower, - eboxRedundantPower } - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology ebox entity." - ::= { synologyEboxGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-FLASHCACHE-MIB b/mibs/orig/SYNOLOGY-FLASHCACHE-MIB deleted file mode 100644 index d2f0032..0000000 --- a/mibs/orig/SYNOLOGY-FLASHCACHE-MIB +++ /dev/null @@ -1,218 +0,0 @@ -SYNOLOGY-FLASHCACHE-MIB DEFINITIONS ::= BEGIN - -IMPORTS - DisplayString - FROM SNMPv2-TC - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, Counter64, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -flashCache MODULE-IDENTITY - LAST-UPDATED "201407170000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Awon Lai - email: awonlai@synology.com" - DESCRIPTION - "Characteristics of the flash cache information" - REVISION "201407170000Z" - DESCRIPTION - "First draft." - ::= { synology 103 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -flashCacheTable OBJECT-TYPE - SYNTAX SEQUENCE OF FlashCacheEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of flash cache devices and how much data they have read/written." - ::= { flashCache 1 } - -flashCacheEntry OBJECT-TYPE - SYNTAX FlashCacheEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a device and its statistics." - INDEX { flashCacheIndex } - ::= { flashCacheTable 1 } - -FlashCacheEntry ::= SEQUENCE { - flashCacheIndex Integer32, - flashCacheSSDDev DisplayString, - flashCacheSpaceDev DisplayString, - flashCacheReadHits Counter64, - flashCacheWriteHits Counter64, - flashCacheDiskRead Counter64, - flashCacheDiskWrite Counter64, - flashCacheTotalRead Counter64, - flashCacheTotalWrite Counter64, - flashCacheReadHitRate Integer32, - flashCacheWriteHitRate Integer32, - flashCacheReadSeqSkip Counter64, - flashCacheWriteSeqSkip Counter64, - flashCacheWriteMissSsd Counter64, - flashCacheSsdUuid DisplayString -} - -flashCacheIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Reference index for each observed device." - ::= { flashCacheEntry 1 } - -flashCacheSSDDev OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ssd device on flashcache we are counting/checking." - ::= { flashCacheEntry 2 } - -flashCacheSpaceDev OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The space device on flashcache we are counting/checking." - ::= { flashCacheEntry 3 } - -flashCacheReadHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of reads on flash cache." - ::= { flashCacheEntry 4 } - -flashCacheWriteHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of writes on flash cache." - ::= { flashCacheEntry 5 } - -flashCacheDiskRead OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of reads on disk." - ::= { flashCacheEntry 6 } - -flashCacheDiskWrite OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of writes on disk." - ::= { flashCacheEntry 7 } - -flashCacheTotalRead OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of reads on volume with flash cache." - ::= { flashCacheEntry 8 } - -flashCacheTotalWrite OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of writes on volume with flash cache." - ::= { flashCacheEntry 9 } - -flashCacheReadHitRate OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The read hit rate of flash cache (%)" - ::= { flashCacheEntry 10 } - -flashCacheWriteHitRate OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The write hit rate of flash cache (%)" - ::= { flashCacheEntry 11 } - -flashCacheReadSeqSkip OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of skipped sequential reads on flash cache." - ::= { flashCacheEntry 12 } - -flashCacheWriteSeqSkip OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of skipped sequential writes on flash cache." - ::= { flashCacheEntry 13 } - -flashCacheWriteMissSsd OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of data writes to SSD for the first time." - ::= { flashCacheEntry 14 } - -flashCacheSsdUuid OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The ssd UUID on flashcache we are counting/checking." - ::= { flashCacheEntry 15 } - -flashCacheConformance OBJECT IDENTIFIER ::= { flashCache 2 } -flashCacheCompliances OBJECT IDENTIFIER ::= { flashCacheConformance 1 } -flashCacheGroups OBJECT IDENTIFIER ::= { flashCacheConformance 2 } - -flashCacheCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for flash cache entities which - implement the SYNOLOGY FLASHCACHE MIB." - MODULE -- this module - MANDATORY-GROUPS { flashCacheGroup } - - ::= { flashCacheCompliances 1 } - -flashCacheGroup OBJECT-GROUP - OBJECTS { flashCacheSSDDev, - flashCacheSpaceDev, - flashCacheReadHits, - flashCacheWriteHits, - flashCacheDiskRead, - flashCacheDiskWrite, - flashCacheTotalRead, - flashCacheTotalWrite, - flashCacheReadHitRate, - flashCacheWriteHitRate, - flashCacheReadSeqSkip, - flashCacheWriteSeqSkip, - flashCacheWriteMissSsd, - flashCacheSsdUuid} - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology flash cache entity." - ::= { flashCacheGroups 1 } - - -END \ No newline at end of file diff --git a/mibs/orig/SYNOLOGY-ISCSILUN-MIB b/mibs/orig/SYNOLOGY-ISCSILUN-MIB deleted file mode 100644 index 54427b7..0000000 --- a/mibs/orig/SYNOLOGY-ISCSILUN-MIB +++ /dev/null @@ -1,212 +0,0 @@ -SYNOLOGY-ISCSILUN-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -synologyiSCSILUN MODULE-IDENTITY - LAST-UPDATED "201605180000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Wei-Te Ho - email: weiteho@synology.com" - DESCRIPTION "Characteristics of the iscsi lun information" - REVISION "201605180000Z" - DESCRIPTION "First draft." - ::= { synology 104 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -iSCSILUNTable OBJECT-TYPE - SYNTAX SEQUENCE OF ISCSILUNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of iSCSI LUN data." - ::= { synologyiSCSILUN 1 } - -iSCSILUNEntry OBJECT-TYPE - SYNTAX ISCSILUNEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing iscsi lun information" - INDEX { iSCSILUNInfoIndex } - ::= { iSCSILUNTable 1 } - -ISCSILUNEntry ::= SEQUENCE { - iSCSILUNInfoIndex Integer32, - iSCSILUNUUID OCTET STRING, - iSCSILUNName OCTET STRING, - iSCSILUNThroughputReadHigh Integer32, - iSCSILUNThroughputReadLow Integer32, - iSCSILUNThroughputWriteHigh Integer32, - iSCSILUNThroughputWriteLow Integer32, - iSCSILUNIopsRead Integer32, - iSCSILUNIopsWrite Integer32, - iSCSILUNDiskLatencyRead Integer32, - iSCSILUNDiskLatencyWrite Integer32, - iSCSILUNNetworkLatencyTx Integer32, - iSCSILUNNetworkLatencyRx Integer32, - iSCSILUNIoSizeRead Integer32, - iSCSILUNIoSizeWrite Integer32, - iSCSILUNQueueDepth Integer32, - iSCSILUNType OCTET STRING -} - -iSCSILUNInfoIndex OBJECT-TYPE - SYNTAX Integer32(0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "LUN info index" - ::= { iSCSILUNEntry 1 } - -iSCSILUNUUID OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN uuid" - ::= { iSCSILUNEntry 2 } - -iSCSILUNName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN name" - ::= { iSCSILUNEntry 3 } - -iSCSILUNThroughputReadHigh OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN read throughput over 32 bits part" - ::= { iSCSILUNEntry 4 } - -iSCSILUNThroughputReadLow OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN read throughput in unsigned 32 bit" - ::= { iSCSILUNEntry 5 } - -iSCSILUNThroughputWriteHigh OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN write throughput over 32 bits part" - ::= { iSCSILUNEntry 6 } - -iSCSILUNThroughputWriteLow OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN write throughput in unsigned 32 bit" - ::= { iSCSILUNEntry 7 } - -iSCSILUNIopsRead OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN read iops" - ::= { iSCSILUNEntry 8 } - -iSCSILUNIopsWrite OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN write iops" - ::= { iSCSILUNEntry 9 } - -iSCSILUNDiskLatencyRead OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN disk latency when reading" - ::= { iSCSILUNEntry 10 } - -iSCSILUNDiskLatencyWrite OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN disk latency when writing" - ::= { iSCSILUNEntry 11 } - -iSCSILUNNetworkLatencyTx OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN transfer data network latency" - ::= { iSCSILUNEntry 12 } - -iSCSILUNNetworkLatencyRx OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN receive data network latency" - ::= { iSCSILUNEntry 13 } - -iSCSILUNIoSizeRead OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN average io size when reading" - ::= { iSCSILUNEntry 14 } - -iSCSILUNIoSizeWrite OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN average io size when writing" - ::= { iSCSILUNEntry 15 } - -iSCSILUNQueueDepth OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Num of iSCSI commands in LUN queue" - ::= { iSCSILUNEntry 16 } - -iSCSILUNType OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "LUN type" - ::= { iSCSILUNEntry 17 } - -synologyiSCSILUNConformance OBJECT IDENTIFIER ::= { synologyiSCSILUN 2 } -synologyiSCSILUNCompliances OBJECT IDENTIFIER ::= { synologyiSCSILUNConformance 1 } -synologyiSCSILUNGroups OBJECT IDENTIFIER ::= { synologyiSCSILUNConformance 2 } - -synologyiSCSILUNCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for iSCSI LUN information." - MODULE -- this module - MANDATORY-GROUPS { synologyiSCSILUNGroup } - ::= { synologyiSCSILUNCompliances 1 } - -synologyiSCSILUNGroup OBJECT-GROUP - OBJECTS { iSCSILUNUUID, - iSCSILUNName, - iSCSILUNThroughputReadHigh, - iSCSILUNThroughputReadLow, - iSCSILUNThroughputWriteHigh, - iSCSILUNThroughputWriteLow, - iSCSILUNIopsRead, - iSCSILUNIopsWrite, - iSCSILUNDiskLatencyRead, - iSCSILUNDiskLatencyWrite, - iSCSILUNNetworkLatencyTx, - iSCSILUNNetworkLatencyRx, - iSCSILUNIoSizeRead, - iSCSILUNIoSizeWrite, - iSCSILUNQueueDepth, - iSCSILUNType } - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology iSCSI LUN entity." - ::= { synologyiSCSILUNGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-RAID-MIB b/mibs/orig/SYNOLOGY-RAID-MIB deleted file mode 100644 index 631fc35..0000000 --- a/mibs/orig/SYNOLOGY-RAID-MIB +++ /dev/null @@ -1,127 +0,0 @@ -SYNOLOGY-RAID-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - enterprises, MODULE-IDENTITY, OBJECT-TYPE, Integer32 - FROM SNMPv2-SMI; - -synoRaid MODULE-IDENTITY - LAST-UPDATED "201309110000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Jay Pan - email: jaypan@synology.com" - DESCRIPTION - "Characteristics of the raid information" - REVISION "201309110000Z" - DESCRIPTION - "Second draft." - ::= { synology 3 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -raidTable OBJECT-TYPE - SYNTAX SEQUENCE OF RaidEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Synology raid table" - ::= { synoRaid 1 } - -raidEntry OBJECT-TYPE - SYNTAX RaidEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "For all raid entry" - INDEX { raidIndex } - ::= { raidTable 1 } - -RaidEntry ::= SEQUENCE { - raidIndex Integer32, - raidName OCTET STRING, - raidStatus Integer32, - raidFreeSize Counter64, - raidTotalSize Counter64 -} - -raidIndex OBJECT-TYPE - SYNTAX Integer32(0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index of raid table" - ::= { raidEntry 1 } - -raidName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology raid name - The name of each raid will be showed here. - " - ::= { raidEntry 2 } - -raidStatus OBJECT-TYPE - SYNTAX Integer32(1..12) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology Raid status - Each meanings of status represented describe below. - Normal(1): The raid functions normally. - Degrade(11): Degrade happens when a tolerable failure of disk(s) occurs. - Crashed(12): Raid has crashed and just uses for read-only operation. - - Note: - Other status will be showed when creating or deleting raids, including below status, Repairing(2), Migrating(3), Expanding(4), Deleting(5), Creating(6), RaidSyncing(7), RaidParityChecking(8), RaidAssembling(9) and Canceling(10). - " - ::= { raidEntry 3 } - -raidFreeSize OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology raid freesize - Free space in bytes. - " - ::= { raidEntry 4 } - -raidTotalSize OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology raid totalsize - Total space in bytes. - " - ::= { raidEntry 5 } - -raidConformance OBJECT IDENTIFIER ::= { synoRaid 2 } -raidCompliances OBJECT IDENTIFIER ::= { raidConformance 1 } -raidGroups OBJECT IDENTIFIER ::= { raidConformance 2 } - -raidCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for synoRaid entities which - implement the SYNOLOGY RAID MIB." - MODULE -- this module - MANDATORY-GROUPS { raidGroup } - - ::= { raidCompliances 1 } - -raidGroup OBJECT-GROUP - OBJECTS { raidName, - raidStatus} - STATUS current - DESCRIPTION - "A collection of objects providing basic instrumentation and - control of an synology raid entity." - ::= { raidGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-SERVICES-MIB b/mibs/orig/SYNOLOGY-SERVICES-MIB deleted file mode 100644 index 5f3ae0a..0000000 --- a/mibs/orig/SYNOLOGY-SERVICES-MIB +++ /dev/null @@ -1,86 +0,0 @@ -SYNOLOGY-SERVICES-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -synologyService MODULE-IDENTITY - LAST-UPDATED "201605270000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Wei-Te Ho - email: weiteho@synology.com" - DESCRIPTION "List number of users using each service in DS" - REVISION "201605270000Z" - DESCRIPTION "First draft." - ::= { synology 6 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -serviceTable OBJECT-TYPE - SYNTAX SEQUENCE OF ServiceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of Services data." - ::= { synologyService 1 } - -serviceEntry OBJECT-TYPE - SYNTAX ServiceEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing Service information" - INDEX { serviceInfoIndex } - ::= { serviceTable 1 } - -ServiceEntry ::= SEQUENCE { - serviceInfoIndex Integer32, - serviceName OCTET STRING, - serviceUsers Integer32 -} - -serviceInfoIndex OBJECT-TYPE - SYNTAX Integer32(0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Service info index" - ::= { serviceEntry 1 } - -serviceName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Service name" - ::= { serviceEntry 2 } - -serviceUsers OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Number of users using this service" - ::= { serviceEntry 3 } - -synologyServiceConformance OBJECT IDENTIFIER ::= { synologyService 2 } -synologyServiceCompliances OBJECT IDENTIFIER ::= { synologyServiceConformance 1 } -synologyServiceGroups OBJECT IDENTIFIER ::= { synologyServiceConformance 2 } - -synologyServiceCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for service information." - MODULE -- this module - MANDATORY-GROUPS { synologyServiceGroup } - ::= { synologyServiceCompliances 1 } - -synologyServiceGroup OBJECT-GROUP - OBJECTS { serviceName, - serviceUsers } - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology service entity." - ::= { synologyServiceGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-SHA-MIB b/mibs/orig/SYNOLOGY-SHA-MIB deleted file mode 100644 index 1536014..0000000 --- a/mibs/orig/SYNOLOGY-SHA-MIB +++ /dev/null @@ -1,141 +0,0 @@ -SYNOLOGY-SHA-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-COMPLIANCE, - OBJECT-GROUP - FROM SNMPv2-CONF - MODULE-IDENTITY, - OBJECT-TYPE, - Unsigned32, - Integer32, - enterprises - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, - TruthValue - FROM SNMPv2-TC; - -synologyHA MODULE-IDENTITY - LAST-UPDATED "201807250000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Po-Han Sung - email: bernies@synology.com" - DESCRIPTION "Status of Synology High-Availability" - REVISION "201807250000Z" - DESCRIPTION "First revision" - ::= { synology 106 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -HostName ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255a" - STATUS current - DESCRIPTION "Host name" - SYNTAX OCTET STRING (SIZE(0..256)) - -ClusterStatusType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC enumerates cluster status." - SYNTAX INTEGER { - normal(0), - warning(1), - critical(2), - upgrading(3), - processing(4) - } - -HeartbeatStatusType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "This TC enumerates heartbeat status." - SYNTAX INTEGER { - normal(0), - abnormal(1), - disconnected(2), - empty(3) - } - -activeNodeName OBJECT-TYPE - SYNTAX HostName - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Hostname of node providing services" - ::= { synologyHA 1 } - -passiveNodeName OBJECT-TYPE - SYNTAX HostName - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Hostname of node not providing services" - ::= { synologyHA 2 } - -clusterAutoFailover OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Whether cluster can launch failover" - ::= { synologyHA 3 } - -clusterName OBJECT-TYPE - SYNTAX HostName - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Hostname of node providing services" - ::= { synologyHA 4 } - -clusterStatus OBJECT-TYPE - SYNTAX ClusterStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION "One of critical, upgrading, processing, warning, normal" - ::= { synologyHA 5 } - -heartbeatStatus OBJECT-TYPE - SYNTAX HeartbeatStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION "One of empty, disconnected, normal, abnormal" - ::= { synologyHA 6 } - -heartbeatTxRate OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Transfer speed of heartbeat in kilo-byte-per-second" - ::= { synologyHA 7 } - -heartbeatLatency OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Heartbeat latency in microseconds" - ::= { synologyHA 8 } - -synologyHAConformance OBJECT IDENTIFIER ::= { synologyHA 9 } -synologyHACompliances OBJECT IDENTIFIER ::= { synologyHAConformance 1 } -synologyHAGroups OBJECT IDENTIFIER ::= { synologyHAConformance 2 } - -synologyHACompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION "The compliance statement for SHA information." - MODULE -- this module - MANDATORY-GROUPS { synologyHAGroup } - ::= { synologyHACompliances 1 } - -synologyHAGroup OBJECT-GROUP - OBJECTS { - activeNodeName, - passiveNodeName, - clusterAutoFailover, - clusterName, - clusterStatus, - heartbeatStatus, - heartbeatTxRate, - heartbeatLatency - } - STATUS current - DESCRIPTION "A collection of objects providing basic information of an synology High-availability cluster." - ::= { synologyHAGroups 1 } -END diff --git a/mibs/orig/SYNOLOGY-SMART-MIB b/mibs/orig/SYNOLOGY-SMART-MIB deleted file mode 100644 index 7fbc1eb..0000000 --- a/mibs/orig/SYNOLOGY-SMART-MIB +++ /dev/null @@ -1,141 +0,0 @@ -SYNOLOGY-SMART-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -synologyDiskSMART MODULE-IDENTITY - LAST-UPDATED "201605050000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Aki Wang - email: akiwang@synology.com" - DESCRIPTION "Characteristics of the disk SMART information" - REVISION "201605050000Z" - DESCRIPTION "First draft." - ::= { synology 5 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -diskSMARTTable OBJECT-TYPE - SYNTAX SEQUENCE OF DiskSMARTEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Table of disk SMART data." - ::= { synologyDiskSMART 1 } - -diskSMARTEntry OBJECT-TYPE - SYNTAX DiskSMARTEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry containing a disk SMART information" - INDEX { diskSMARTInfoIndex } - ::= { diskSMARTTable 1 } - -DiskSMARTEntry ::= SEQUENCE { - diskSMARTInfoIndex Integer32, - diskSMARTInfoDevName OCTET STRING, - diskSMARTAttrName OCTET STRING, - diskSMARTAttrId Integer32, - diskSMARTAttrCurrent Integer32, - diskSMARTAttrWorst Integer32, - diskSMARTAttrThreshold Integer32, - diskSMARTAttrRaw Integer32, - diskSMARTAttrStatus OCTET STRING -} - -diskSMARTInfoIndex OBJECT-TYPE - SYNTAX Integer32(0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "SMART info index" - ::= { diskSMARTEntry 1 } - -diskSMARTInfoDevName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART info device name" - ::= { diskSMARTEntry 2 } - -diskSMARTAttrName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute name" - ::= { diskSMARTEntry 3 } - -diskSMARTAttrId OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute ID" - ::= { diskSMARTEntry 4 } - -diskSMARTAttrCurrent OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute current value" - ::= { diskSMARTEntry 5 } - -diskSMARTAttrWorst OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute worst value" - ::= { diskSMARTEntry 6 } - -diskSMARTAttrThreshold OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute threshold value" - ::= { diskSMARTEntry 7 } - -diskSMARTAttrRaw OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute raw value" - ::= { diskSMARTEntry 8 } - -diskSMARTAttrStatus OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION "SMART attribute status" - ::= { diskSMARTEntry 9 } - -synologyDiskSMARTConformance OBJECT IDENTIFIER ::= { synologyDiskSMART 2 } -synologyDiskSMARTCompliances OBJECT IDENTIFIER ::= { synologyDiskSMARTConformance 1 } -synologyDiskSMARTGroups OBJECT IDENTIFIER ::= { synologyDiskSMARTConformance 2 } - -synologyDiskSMARTCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for storage IO entities which - implement the SYNOLOGY SMART MIB." - MODULE -- this module - MANDATORY-GROUPS { synologyDiskSMARTGroup } - ::= { synologyDiskSMARTCompliances 1 } - -synologyDiskSMARTGroup OBJECT-GROUP - OBJECTS { diskSMARTInfoDevName, - diskSMARTAttrName, - diskSMARTAttrId, - diskSMARTAttrCurrent, - diskSMARTAttrWorst, - diskSMARTAttrThreshold, - diskSMARTAttrRaw, - diskSMARTAttrStatus } - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology disk SMART entity." - ::= { synologyDiskSMARTGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-SPACEIO-MIB b/mibs/orig/SYNOLOGY-SPACEIO-MIB deleted file mode 100644 index df80dd6..0000000 --- a/mibs/orig/SYNOLOGY-SPACEIO-MIB +++ /dev/null @@ -1,189 +0,0 @@ -SYNOLOGY-SPACEIO-MIB DEFINITIONS ::= BEGIN - -IMPORTS - DisplayString - FROM SNMPv2-TC - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, Counter32, Counter64, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -spaceIO MODULE-IDENTITY - LAST-UPDATED "201309110000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Jay Pan - email: jaypan@synology.com" - DESCRIPTION - "Characteristics of the space io information" - REVISION "201309110000Z" - DESCRIPTION - "Second draft." - ::= { synology 102 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -spaceIOTable OBJECT-TYPE - SYNTAX SEQUENCE OF SpaceIOEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of IO devices and how much data they have read/written." - ::= { spaceIO 1 } - -spaceIOEntry OBJECT-TYPE - SYNTAX SpaceIOEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a device and its statistics." - INDEX { spaceIOIndex } - ::= { spaceIOTable 1 } - -SpaceIOEntry ::= SEQUENCE { - spaceIOIndex Integer32, - spaceIODevice DisplayString, - spaceIONRead Counter32, - spaceIONWritten Counter32, - spaceIOReads Counter32, - spaceIOWrites Counter32, - spaceIOLA Integer32, - spaceIOLA1 Integer32, - spaceIOLA5 Integer32, - spaceIOLA15 Integer32, - spaceIONReadX Counter64, - spaceIONWrittenX Counter64 -} - -spaceIOIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Reference index for each observed device." - ::= { spaceIOEntry 1 } - -spaceIODevice OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the device we are counting/checking." - ::= { spaceIOEntry 2 } - -spaceIONRead OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes read from this device since boot." - ::= { spaceIOEntry 3 } - -spaceIONWritten OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes written to this device since boot." - ::= { spaceIOEntry 4 } - -spaceIOReads OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of read accesses from this device since boot." - ::= { spaceIOEntry 5 } - -spaceIOWrites OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of write accesses to this device since boot." - ::= { spaceIOEntry 6 } - -spaceIOLA OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The load of disk (%)" - ::= { spaceIOEntry 8 } - -spaceIOLA1 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 1 minute average load of disk (%)" - ::= { spaceIOEntry 9 } - -spaceIOLA5 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 5 minute average load of disk (%)" - ::= { spaceIOEntry 10 } - -spaceIOLA15 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 15 minute average load of disk (%)" - ::= { spaceIOEntry 11 } - -spaceIONReadX OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes read from this device since boot." - ::= { spaceIOEntry 12 } - -spaceIONWrittenX OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes written to this device since boot." - ::= { spaceIOEntry 13 } - - -spaceIOConformance OBJECT IDENTIFIER ::= { spaceIO 2 } -spaceIOCompliances OBJECT IDENTIFIER ::= { spaceIOConformance 1 } -spaceIOGroups OBJECT IDENTIFIER ::= { spaceIOConformance 2 } - -spaceIOCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for space IO entities which - implement the SYNOLOGY SPACEIO MIB." - MODULE -- this module - MANDATORY-GROUPS { spaceIOGroup } - - ::= { spaceIOCompliances 1 } - -spaceIOGroup OBJECT-GROUP - OBJECTS { spaceIODevice, - spaceIONRead, - spaceIONWritten, - spaceIOReads, - spaceIOWrites, - spaceIOLA, - spaceIOLA1, - spaceIOLA5, - spaceIOLA15, - spaceIONReadX, - spaceIONWrittenX} - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology space io entity." - ::= { spaceIOGroups 1 } - - -END diff --git a/mibs/orig/SYNOLOGY-STORAGEIO-MIB b/mibs/orig/SYNOLOGY-STORAGEIO-MIB deleted file mode 100644 index b1429d9..0000000 --- a/mibs/orig/SYNOLOGY-STORAGEIO-MIB +++ /dev/null @@ -1,187 +0,0 @@ -SYNOLOGY-STORAGEIO-MIB DEFINITIONS ::= BEGIN - -IMPORTS - DisplayString - FROM SNMPv2-TC - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - OBJECT-TYPE, Integer32, Counter32, Counter64, enterprises, MODULE-IDENTITY - FROM SNMPv2-SMI; - -storageIO MODULE-IDENTITY - LAST-UPDATED "201309110000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Jay Pan - email: jaypan@synology.com" - DESCRIPTION - "Characteristics of the storage io information" - REVISION "201309110000Z" - DESCRIPTION - "Second draft." - ::= { synology 101 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -storageIOTable OBJECT-TYPE - SYNTAX SEQUENCE OF StorageIOEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of IO devices and how much data they have read/written." - ::= { storageIO 1 } - -storageIOEntry OBJECT-TYPE - SYNTAX StorageIOEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a device and its statistics." - INDEX { storageIOIndex } - ::= { storageIOTable 1 } - -StorageIOEntry ::= SEQUENCE { - storageIOIndex Integer32, - storageIODevice DisplayString, - storageIONRead Counter32, - storageIONWritten Counter32, - storageIOReads Counter32, - storageIOWrites Counter32, - storageIOLA Integer32, - storageIOLA1 Integer32, - storageIOLA5 Integer32, - storageIOLA15 Integer32, - storageIONReadX Counter64, - storageIONWrittenX Counter64 -} - -storageIOIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Reference index for each observed device." - ::= { storageIOEntry 1 } - -storageIODevice OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the device we are counting/checking." - ::= { storageIOEntry 2 } - -storageIONRead OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes read from this device since boot." - ::= { storageIOEntry 3 } - -storageIONWritten OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes written to this device since boot." - ::= { storageIOEntry 4 } - -storageIOReads OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of read accesses from this device since boot." - ::= { storageIOEntry 5 } - -storageIOWrites OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of write accesses to this device since boot." - ::= { storageIOEntry 6 } - -storageIOLA OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The load of disk (%)" - ::= { storageIOEntry 8 } - -storageIOLA1 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 1 minute average load of disk (%)" - ::= { storageIOEntry 9 } - -storageIOLA5 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 5 minute average load of disk (%)" - ::= { storageIOEntry 10 } - -storageIOLA15 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 15 minute average load of disk (%)" - ::= { storageIOEntry 11 } - -storageIONReadX OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes read from this device since boot." - ::= { storageIOEntry 12 } - -storageIONWrittenX OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes written to this device since boot." - ::= { storageIOEntry 13 } - -storageIOConformance OBJECT IDENTIFIER ::= { storageIO 2 } -storageIOCompliances OBJECT IDENTIFIER ::= { storageIOConformance 1 } -storageIOGroups OBJECT IDENTIFIER ::= { storageIOConformance 2 } - -storageIOCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for storage IO entities which - implement the SYNOLOGY STORAGEIO MIB." - MODULE -- this module - MANDATORY-GROUPS { storageIOGroup } - - ::= { storageIOCompliances 1 } - -storageIOGroup OBJECT-GROUP - OBJECTS { storageIODevice, - storageIONRead, - storageIONWritten, - storageIOReads, - storageIOWrites, - storageIOLA, - storageIOLA1, - storageIOLA5, - storageIOLA15, - storageIONReadX, - storageIONWrittenX} - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology storage io entity." - ::= { storageIOGroups 1 } - -END diff --git a/mibs/orig/SYNOLOGY-SYSTEM-MIB b/mibs/orig/SYNOLOGY-SYSTEM-MIB deleted file mode 100644 index e3843db..0000000 --- a/mibs/orig/SYNOLOGY-SYSTEM-MIB +++ /dev/null @@ -1,156 +0,0 @@ -SYNOLOGY-SYSTEM-MIB DEFINITIONS ::= BEGIN - -IMPORTS - OBJECT-GROUP, MODULE-COMPLIANCE - FROM SNMPv2-CONF - enterprises, MODULE-IDENTITY, OBJECT-TYPE, Integer32 - FROM SNMPv2-SMI; - -synoSystem MODULE-IDENTITY - LAST-UPDATED "201309110000Z" - ORGANIZATION "www.synology.com" - CONTACT-INFO - "postal: Jay Pan - email: jaypan@synology.com" - DESCRIPTION - "Characteristics of the system information" - REVISION "201309110000Z" - DESCRIPTION - "Second draft." - ::= { synology 1 } - -synology OBJECT IDENTIFIER - ::= { enterprises 6574 } - -systemStatus OBJECT-TYPE - SYNTAX Integer32(1..2) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology system status - Each meanings of status represented describe below. - Normal(1): System functionals normally. - Failed(2): Volume has crashed. - " - ::= { synoSystem 1 } - -temperature OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology system temperature - The temperature of Disk Station uses Celsius degree. - " - ::= { synoSystem 2 } - -powerStatus OBJECT-TYPE - SYNTAX Integer32(1..2) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology power status - Each meanings of status represented describe below. - Normal(1): All power supplies functional normally. - Failed(2): One of power supply has failed. - " - ::= { synoSystem 3 } - -fan OBJECT IDENTIFIER ::= { synoSystem 4 } - -systemFanStatus OBJECT-TYPE - SYNTAX Integer32(1..2) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology system fan status - Each meanings of status represented describe below. - Normal(1): All Internal fans functional normally. - Failed(2): One of internal fan stopped. - " - ::= { fan 1 } - - -cpuFanStatus OBJECT-TYPE - SYNTAX Integer32(1..2) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Synology cpu fan status - Each meanings of status represented describe below. - Normal(1): All CPU fans functional normally. - Failed(2): One of CPU fan stopped. - " - ::= { fan 2 } - -dsmInfo OBJECT IDENTIFIER ::= { synoSystem 5 } - -modelName OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Model name of this NAS" - ::= { dsmInfo 1 } - -serialNumber OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The serial number of this NAS" - ::= { dsmInfo 2 } - -version OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The version of this DSM" - ::= { dsmInfo 3 } - -upgradeAvailable OBJECT-TYPE - SYNTAX Integer32(1..5) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This oid is for checking whether there is a latest DSM can be upgraded. - Available(1): There is version ready for download. - Unavailable(2): The DSM is latest version. - Connecting(3): Checking for the latest DSM. - Disconnected(4): Failed to connect to server. - Others(5): If DSM is upgrading or downloading, the status will show others." - ::= { dsmInfo 4 } - - -systemConformance OBJECT IDENTIFIER ::= { synoSystem 6 } -systemCompliances OBJECT IDENTIFIER ::= { systemConformance 1 } -systemGroups OBJECT IDENTIFIER ::= { systemConformance 2 } - -systemCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for synoSystem entities which - implement the SYNOLOGY SYSTEM MIB." - MODULE -- this module - MANDATORY-GROUPS { systemGroup } - - ::= { systemCompliances 1 } - -systemGroup OBJECT-GROUP - OBJECTS { systemStatus, - temperature, - powerStatus, - systemFanStatus, - cpuFanStatus, - modelName, - serialNumber, - version, - upgradeAvailable } - STATUS current - DESCRIPTION - "A collection of objects providing basic information - of an synology system entity." - ::= { systemGroups 1 } - -END diff --git a/mibs/orig/TCP-MIB b/mibs/orig/TCP-MIB deleted file mode 100644 index 3db564e..0000000 --- a/mibs/orig/TCP-MIB +++ /dev/null @@ -1,792 +0,0 @@ -TCP-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, - Gauge32, Counter32, Counter64, IpAddress, mib-2 - FROM SNMPv2-SMI - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF - InetAddress, InetAddressType, - InetPortNumber FROM INET-ADDRESS-MIB; - -tcpMIB MODULE-IDENTITY - LAST-UPDATED "200502180000Z" -- 18 February 2005 - ORGANIZATION - "IETF IPv6 MIB Revision Team - http://www.ietf.org/html.charters/ipv6-charter.html" - CONTACT-INFO - "Rajiv Raghunarayan (editor) - - Cisco Systems Inc. - 170 West Tasman Drive - San Jose, CA 95134 - - Phone: +1 408 853 9612 - Email: - - Send comments to " - DESCRIPTION - "The MIB module for managing TCP implementations. - - Copyright (C) The Internet Society (2005). This version - of this MIB module is a part of RFC 4022; see the RFC - itself for full legal notices." - REVISION "200502180000Z" -- 18 February 2005 - DESCRIPTION - "IP version neutral revision, published as RFC 4022." - REVISION "9411010000Z" - DESCRIPTION - "Initial SMIv2 version, published as RFC 2012." - REVISION "9103310000Z" - DESCRIPTION - "The initial revision of this MIB module was part of - MIB-II." - ::= { mib-2 49 } - --- the TCP base variables group - -tcp OBJECT IDENTIFIER ::= { mib-2 6 } - --- Scalars - -tcpRtoAlgorithm OBJECT-TYPE - SYNTAX INTEGER { - other(1), -- none of the following - constant(2), -- a constant rto - rsre(3), -- MIL-STD-1778, Appendix B - vanj(4), -- Van Jacobson's algorithm - rfc2988(5) -- RFC 2988 - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The algorithm used to determine the timeout value used for - retransmitting unacknowledged octets." - ::= { tcp 1 } - -tcpRtoMin OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum value permitted by a TCP implementation for - the retransmission timeout, measured in milliseconds. - More refined semantics for objects of this type depend - on the algorithm used to determine the retransmission - timeout; in particular, the IETF standard algorithm - rfc2988(5) provides a minimum value." - ::= { tcp 2 } - -tcpRtoMax OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "milliseconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum value permitted by a TCP implementation for - the retransmission timeout, measured in milliseconds. - More refined semantics for objects of this type depend - on the algorithm used to determine the retransmission - timeout; in particular, the IETF standard algorithm - rfc2988(5) provides an upper bound (as part of an - adaptive backoff algorithm)." - ::= { tcp 3 } - -tcpMaxConn OBJECT-TYPE - SYNTAX Integer32 (-1 | 0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The limit on the total number of TCP connections the entity - can support. In entities where the maximum number of - connections is dynamic, this object should contain the - value -1." - ::= { tcp 4 } - -tcpActiveOpens OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times that TCP connections have made a direct - transition to the SYN-SENT state from the CLOSED state. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 5 } - -tcpPassiveOpens OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times TCP connections have made a direct - transition to the SYN-RCVD state from the LISTEN state. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 6 } - -tcpAttemptFails OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times that TCP connections have made a direct - transition to the CLOSED state from either the SYN-SENT - state or the SYN-RCVD state, plus the number of times that - TCP connections have made a direct transition to the - LISTEN state from the SYN-RCVD state. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - - ::= { tcp 7 } - -tcpEstabResets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times that TCP connections have made a direct - transition to the CLOSED state from either the ESTABLISHED - state or the CLOSE-WAIT state. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 8 } - -tcpCurrEstab OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of TCP connections for which the current state - is either ESTABLISHED or CLOSE-WAIT." - ::= { tcp 9 } - -tcpInSegs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of segments received, including those - received in error. This count includes segments received - on currently established connections. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 10 } - -tcpOutSegs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of segments sent, including those on - current connections but excluding those containing only - retransmitted octets. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - - ::= { tcp 11 } - -tcpRetransSegs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of segments retransmitted; that is, the - number of TCP segments transmitted containing one or more - previously transmitted octets. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 12 } - -tcpInErrs OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of segments received in error (e.g., bad - TCP checksums). - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 14 } - -tcpOutRsts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of TCP segments sent containing the RST flag. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 15 } - --- { tcp 16 } was used to represent the ipv6TcpConnTable in RFC 2452, --- which has since been obsoleted. It MUST not be used. - -tcpHCInSegs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of segments received, including those - received in error. This count includes segments received - - on currently established connections. This object is - the 64-bit equivalent of tcpInSegs. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 17 } - -tcpHCOutSegs OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of segments sent, including those on - current connections but excluding those containing only - retransmitted octets. This object is the 64-bit - equivalent of tcpOutSegs. - - Discontinuities in the value of this counter are - indicated via discontinuities in the value of sysUpTime." - ::= { tcp 18 } - --- The TCP Connection table - -tcpConnectionTable OBJECT-TYPE - SYNTAX SEQUENCE OF TcpConnectionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table containing information about existing TCP - connections. Note that unlike earlier TCP MIBs, there - is a separate table for connections in the LISTEN state." - ::= { tcp 19 } - -tcpConnectionEntry OBJECT-TYPE - SYNTAX TcpConnectionEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row of the tcpConnectionTable containing - information about a particular current TCP connection. - Each row of this table is transient in that it ceases to - exist when (or soon after) the connection makes the - transition to the CLOSED state." - INDEX { tcpConnectionLocalAddressType, - tcpConnectionLocalAddress, - tcpConnectionLocalPort, - tcpConnectionRemAddressType, - - tcpConnectionRemAddress, - tcpConnectionRemPort } - ::= { tcpConnectionTable 1 } - -TcpConnectionEntry ::= SEQUENCE { - tcpConnectionLocalAddressType InetAddressType, - tcpConnectionLocalAddress InetAddress, - tcpConnectionLocalPort InetPortNumber, - tcpConnectionRemAddressType InetAddressType, - tcpConnectionRemAddress InetAddress, - tcpConnectionRemPort InetPortNumber, - tcpConnectionState INTEGER, - tcpConnectionProcess Unsigned32 - } - -tcpConnectionLocalAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type of tcpConnectionLocalAddress." - ::= { tcpConnectionEntry 1 } - -tcpConnectionLocalAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The local IP address for this TCP connection. The type - of this address is determined by the value of - tcpConnectionLocalAddressType. - - As this object is used in the index for the - tcpConnectionTable, implementors should be - careful not to create entries that would result in OIDs - with more than 128 subidentifiers; otherwise the information - cannot be accessed by using SNMPv1, SNMPv2c, or SNMPv3." - ::= { tcpConnectionEntry 2 } - -tcpConnectionLocalPort OBJECT-TYPE - SYNTAX InetPortNumber - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The local port number for this TCP connection." - ::= { tcpConnectionEntry 3 } - -tcpConnectionRemAddressType OBJECT-TYPE - - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type of tcpConnectionRemAddress." - ::= { tcpConnectionEntry 4 } - -tcpConnectionRemAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The remote IP address for this TCP connection. The type - of this address is determined by the value of - tcpConnectionRemAddressType. - - As this object is used in the index for the - tcpConnectionTable, implementors should be - careful not to create entries that would result in OIDs - with more than 128 subidentifiers; otherwise the information - cannot be accessed by using SNMPv1, SNMPv2c, or SNMPv3." - ::= { tcpConnectionEntry 5 } - -tcpConnectionRemPort OBJECT-TYPE - SYNTAX InetPortNumber - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The remote port number for this TCP connection." - ::= { tcpConnectionEntry 6 } - -tcpConnectionState OBJECT-TYPE - SYNTAX INTEGER { - closed(1), - listen(2), - synSent(3), - synReceived(4), - established(5), - finWait1(6), - finWait2(7), - closeWait(8), - lastAck(9), - closing(10), - timeWait(11), - deleteTCB(12) - } - MAX-ACCESS read-write - STATUS current - - DESCRIPTION - "The state of this TCP connection. - - The value listen(2) is included only for parallelism to the - old tcpConnTable and should not be used. A connection in - LISTEN state should be present in the tcpListenerTable. - - The only value that may be set by a management station is - deleteTCB(12). Accordingly, it is appropriate for an agent - to return a `badValue' response if a management station - attempts to set this object to any other value. - - If a management station sets this object to the value - deleteTCB(12), then the TCB (as defined in [RFC793]) of - the corresponding connection on the managed node is - deleted, resulting in immediate termination of the - connection. - - As an implementation-specific option, a RST segment may be - sent from the managed node to the other TCP endpoint (note, - however, that RST segments are not sent reliably)." - ::= { tcpConnectionEntry 7 } - -tcpConnectionProcess OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The system's process ID for the process associated with - this connection, or zero if there is no such process. This - value is expected to be the same as HOST-RESOURCES-MIB:: - hrSWRunIndex or SYSAPPL-MIB::sysApplElmtRunIndex for some - row in the appropriate tables." - ::= { tcpConnectionEntry 8 } - --- The TCP Listener table - -tcpListenerTable OBJECT-TYPE - SYNTAX SEQUENCE OF TcpListenerEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table containing information about TCP listeners. A - listening application can be represented in three - possible ways: - - 1. An application that is willing to accept both IPv4 and - IPv6 datagrams is represented by - - a tcpListenerLocalAddressType of unknown (0) and - a tcpListenerLocalAddress of ''h (a zero-length - octet-string). - - 2. An application that is willing to accept only IPv4 or - IPv6 datagrams is represented by a - tcpListenerLocalAddressType of the appropriate address - type and a tcpListenerLocalAddress of '0.0.0.0' or '::' - respectively. - - 3. An application that is listening for data destined - only to a specific IP address, but from any remote - system, is represented by a tcpListenerLocalAddressType - of an appropriate address type, with - tcpListenerLocalAddress as the specific local address. - - NOTE: The address type in this table represents the - address type used for the communication, irrespective - of the higher-layer abstraction. For example, an - application using IPv6 'sockets' to communicate via - IPv4 between ::ffff:10.0.0.1 and ::ffff:10.0.0.2 would - use InetAddressType ipv4(1))." - ::= { tcp 20 } - -tcpListenerEntry OBJECT-TYPE - SYNTAX TcpListenerEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A conceptual row of the tcpListenerTable containing - information about a particular TCP listener." - INDEX { tcpListenerLocalAddressType, - tcpListenerLocalAddress, - tcpListenerLocalPort } - ::= { tcpListenerTable 1 } - -TcpListenerEntry ::= SEQUENCE { - tcpListenerLocalAddressType InetAddressType, - tcpListenerLocalAddress InetAddress, - tcpListenerLocalPort InetPortNumber, - tcpListenerProcess Unsigned32 - } - -tcpListenerLocalAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - - "The address type of tcpListenerLocalAddress. The value - should be unknown (0) if connection initiations to all - local IP addresses are accepted." - ::= { tcpListenerEntry 1 } - -tcpListenerLocalAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The local IP address for this TCP connection. - - The value of this object can be represented in three - possible ways, depending on the characteristics of the - listening application: - - 1. For an application willing to accept both IPv4 and - IPv6 datagrams, the value of this object must be - ''h (a zero-length octet-string), with the value - of the corresponding tcpListenerLocalAddressType - object being unknown (0). - - 2. For an application willing to accept only IPv4 or - IPv6 datagrams, the value of this object must be - '0.0.0.0' or '::' respectively, with - tcpListenerLocalAddressType representing the - appropriate address type. - - 3. For an application which is listening for data - destined only to a specific IP address, the value - of this object is the specific local address, with - tcpListenerLocalAddressType representing the - appropriate address type. - - As this object is used in the index for the - tcpListenerTable, implementors should be - careful not to create entries that would result in OIDs - with more than 128 subidentifiers; otherwise the information - cannot be accessed, using SNMPv1, SNMPv2c, or SNMPv3." - ::= { tcpListenerEntry 2 } - -tcpListenerLocalPort OBJECT-TYPE - SYNTAX InetPortNumber - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The local port number for this TCP connection." - ::= { tcpListenerEntry 3 } - -tcpListenerProcess OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The system's process ID for the process associated with - this listener, or zero if there is no such process. This - value is expected to be the same as HOST-RESOURCES-MIB:: - hrSWRunIndex or SYSAPPL-MIB::sysApplElmtRunIndex for some - row in the appropriate tables." - ::= { tcpListenerEntry 4 } - --- The deprecated TCP Connection table - -tcpConnTable OBJECT-TYPE - SYNTAX SEQUENCE OF TcpConnEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table containing information about existing IPv4-specific - TCP connections or listeners. This table has been - deprecated in favor of the version neutral - tcpConnectionTable." - ::= { tcp 13 } - -tcpConnEntry OBJECT-TYPE - SYNTAX TcpConnEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A conceptual row of the tcpConnTable containing information - about a particular current IPv4 TCP connection. Each row - of this table is transient in that it ceases to exist when - (or soon after) the connection makes the transition to the - CLOSED state." - INDEX { tcpConnLocalAddress, - tcpConnLocalPort, - tcpConnRemAddress, - tcpConnRemPort } - ::= { tcpConnTable 1 } - -TcpConnEntry ::= SEQUENCE { - tcpConnState INTEGER, - tcpConnLocalAddress IpAddress, - tcpConnLocalPort Integer32, - tcpConnRemAddress IpAddress, - tcpConnRemPort Integer32 - - } - -tcpConnState OBJECT-TYPE - SYNTAX INTEGER { - closed(1), - listen(2), - synSent(3), - synReceived(4), - established(5), - finWait1(6), - finWait2(7), - closeWait(8), - lastAck(9), - closing(10), - timeWait(11), - deleteTCB(12) - } - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "The state of this TCP connection. - - The only value that may be set by a management station is - deleteTCB(12). Accordingly, it is appropriate for an agent - to return a `badValue' response if a management station - attempts to set this object to any other value. - - If a management station sets this object to the value - deleteTCB(12), then the TCB (as defined in [RFC793]) of - the corresponding connection on the managed node is - deleted, resulting in immediate termination of the - connection. - - As an implementation-specific option, a RST segment may be - sent from the managed node to the other TCP endpoint (note, - however, that RST segments are not sent reliably)." - ::= { tcpConnEntry 1 } - -tcpConnLocalAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The local IP address for this TCP connection. In the case - of a connection in the listen state willing to - accept connections for any IP interface associated with the - node, the value 0.0.0.0 is used." - ::= { tcpConnEntry 2 } - -tcpConnLocalPort OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The local port number for this TCP connection." - ::= { tcpConnEntry 3 } - -tcpConnRemAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The remote IP address for this TCP connection." - ::= { tcpConnEntry 4 } - -tcpConnRemPort OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The remote port number for this TCP connection." - ::= { tcpConnEntry 5 } - --- conformance information - -tcpMIBConformance OBJECT IDENTIFIER ::= { tcpMIB 2 } - -tcpMIBCompliances OBJECT IDENTIFIER ::= { tcpMIBConformance 1 } -tcpMIBGroups OBJECT IDENTIFIER ::= { tcpMIBConformance 2 } - --- compliance statements - -tcpMIBCompliance2 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for systems that implement TCP. - - A number of INDEX objects cannot be - represented in the form of OBJECT clauses in SMIv2 but - have the following compliance requirements, - expressed in OBJECT clause form in this description - clause: - - -- OBJECT tcpConnectionLocalAddressType - -- SYNTAX InetAddressType { ipv4(1), ipv6(2) } - -- DESCRIPTION - -- This MIB requires support for only global IPv4 - - -- and IPv6 address types. - -- - -- OBJECT tcpConnectionRemAddressType - -- SYNTAX InetAddressType { ipv4(1), ipv6(2) } - -- DESCRIPTION - -- This MIB requires support for only global IPv4 - -- and IPv6 address types. - -- - -- OBJECT tcpListenerLocalAddressType - -- SYNTAX InetAddressType { unknown(0), ipv4(1), - -- ipv6(2) } - -- DESCRIPTION - -- This MIB requires support for only global IPv4 - -- and IPv6 address types. The type unknown also - -- needs to be supported to identify a special - -- case in the listener table: a listen using - -- both IPv4 and IPv6 addresses on the device. - -- - " - MODULE -- this module - MANDATORY-GROUPS { tcpBaseGroup, tcpConnectionGroup, - tcpListenerGroup } - GROUP tcpHCGroup - DESCRIPTION - "This group is mandatory for systems that are capable - of receiving or transmitting more than 1 million TCP - segments per second. 1 million segments per second will - cause a Counter32 to wrap in just over an hour." - OBJECT tcpConnectionState - SYNTAX INTEGER { closed(1), listen(2), synSent(3), - synReceived(4), established(5), - finWait1(6), finWait2(7), closeWait(8), - lastAck(9), closing(10), timeWait(11) } - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required, nor is support for the value - deleteTCB (12)." - ::= { tcpMIBCompliances 2 } - -tcpMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for IPv4-only systems that - implement TCP. In order to be IP version independent, this - compliance statement is deprecated in favor of - tcpMIBCompliance2. However, agents are still encouraged - to implement these objects in order to interoperate with - the deployed base of managers." - - MODULE -- this module - MANDATORY-GROUPS { tcpGroup } - OBJECT tcpConnState - MIN-ACCESS read-only - DESCRIPTION - "Write access is not required." - ::= { tcpMIBCompliances 1 } - --- units of conformance - -tcpGroup OBJECT-GROUP - OBJECTS { tcpRtoAlgorithm, tcpRtoMin, tcpRtoMax, - tcpMaxConn, tcpActiveOpens, - tcpPassiveOpens, tcpAttemptFails, - tcpEstabResets, tcpCurrEstab, tcpInSegs, - tcpOutSegs, tcpRetransSegs, tcpConnState, - tcpConnLocalAddress, tcpConnLocalPort, - tcpConnRemAddress, tcpConnRemPort, - tcpInErrs, tcpOutRsts } - STATUS deprecated - DESCRIPTION - "The tcp group of objects providing for management of TCP - entities." - ::= { tcpMIBGroups 1 } - -tcpBaseGroup OBJECT-GROUP - OBJECTS { tcpRtoAlgorithm, tcpRtoMin, tcpRtoMax, - tcpMaxConn, tcpActiveOpens, - tcpPassiveOpens, tcpAttemptFails, - tcpEstabResets, tcpCurrEstab, tcpInSegs, - tcpOutSegs, tcpRetransSegs, - tcpInErrs, tcpOutRsts } - STATUS current - DESCRIPTION - "The group of counters common to TCP entities." - ::= { tcpMIBGroups 2 } - -tcpConnectionGroup OBJECT-GROUP - OBJECTS { tcpConnectionState, tcpConnectionProcess } - STATUS current - DESCRIPTION - "The group provides general information about TCP - connections." - ::= { tcpMIBGroups 3 } - -tcpListenerGroup OBJECT-GROUP - OBJECTS { tcpListenerProcess } - - STATUS current - DESCRIPTION - "This group has objects providing general information about - TCP listeners." - ::= { tcpMIBGroups 4 } - -tcpHCGroup OBJECT-GROUP - OBJECTS { tcpHCInSegs, tcpHCOutSegs } - STATUS current - DESCRIPTION - "The group of objects providing for counters of high speed - TCP implementations." - ::= { tcpMIBGroups 5 } - -END diff --git a/mibs/orig/TOKEN-RING-RMON-MIB b/mibs/orig/TOKEN-RING-RMON-MIB deleted file mode 100644 index 10ea7be..0000000 --- a/mibs/orig/TOKEN-RING-RMON-MIB +++ /dev/null @@ -1,2580 +0,0 @@ - TOKEN-RING-RMON-MIB DEFINITIONS ::= BEGIN - - IMPORTS - Counter, TimeTicks FROM RFC1155-SMI - OBJECT-TYPE FROM RFC-1212 - OwnerString, -- EntryStatus Textual Conventions - rmon, statistics, history - FROM RFC1271-MIB; - --- OwnerString has the same semantics as used in RFC 1271 - - OwnerString ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255a" - STATUS current - DESCRIPTION - "This data type is used to model an administratively - assigned name of the owner of a resource. This - information is taken from the NVT ASCII character set. - It is suggested that this name contain one or more of - the following: ASCII form of the manager station's - transport address, management station name (e.g., - domain name), network management personnel's name, - location, or phone number. In some cases the agent - itself will be the owner of an entry. In these cases, - this string shall be set to a string starting with - 'agent'." - SYNTAX OCTET STRING (SIZE(0..255)) - -- InterfaceIndex contains the semantics of ifIndex and - -- should be used for any objects defined on other mib - -- modules that need these semantics. - - - -- All representations of MAC addresses in this MIB - -- Module use, as a textual convention (i.e. this - -- convention does not affect their encoding), the - -- data type: - - - MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet - -- address in - -- the "canonical" - -- order - -- defined by IEEE 802.1a, i.e., as if it were - -- transmitted least significant bit first, even though - -- 802.5 (in contrast to other 802.x protocols) requires - -- MAC addresses to be transmitted most significant bit - -- first. - - TimeInterval ::= INTEGER - -- A period of time, measured in units of 0.01 seconds. - - -- This MIB module uses the extended OBJECT-TYPE macro as - -- defined in [2]. - - -- Token Ring Remote Network Monitoring MIB - - tokenRing OBJECT IDENTIFIER ::= { rmon 10 } - - EntryStatus ::= INTEGER - { valid(1), - createRequest(2), - underCreation(3), - invalid(4) - } - - - -- The Token Ring Mac-Layer Statistics Group - -- - -- Implementation of this group is optional - - tokenRingMLStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF TokenRingMLStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Mac-Layer Token Ring statistics - - - - - - entries." - ::= { statistics 2 } - - tokenRingMLStatsEntry OBJECT-TYPE - SYNTAX TokenRingMLStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of Mac-Layer statistics kept for a - particular Token Ring interface." - INDEX { tokenRingMLStatsIndex } - ::= { tokenRingMLStatsTable 1 } - - -- As an example, an instance of the - -- tokenRingMLStatsMacOctets object - -- might be named tokenRingMLStatsMacOctets.1 - - TokenRingMLStatsEntry ::= SEQUENCE { - tokenRingMLStatsIndex INTEGER, - tokenRingMLStatsDataSource OBJECT IDENTIFIER, - tokenRingMLStatsDropEvents Counter, - tokenRingMLStatsMacOctets Counter, - tokenRingMLStatsMacPkts Counter, - tokenRingMLStatsRingPurgeEvents Counter, - tokenRingMLStatsRingPurgePkts Counter, - tokenRingMLStatsBeaconEvents Counter, - tokenRingMLStatsBeaconTime TimeInterval, - tokenRingMLStatsBeaconPkts Counter, - tokenRingMLStatsClaimTokenEvents Counter, - tokenRingMLStatsClaimTokenPkts Counter, - tokenRingMLStatsNAUNChanges Counter, - tokenRingMLStatsLineErrors Counter, - tokenRingMLStatsInternalErrors Counter, - tokenRingMLStatsBurstErrors Counter, - tokenRingMLStatsACErrors Counter, - tokenRingMLStatsAbortErrors Counter, - tokenRingMLStatsLostFrameErrors Counter, - tokenRingMLStatsCongestionErrors Counter, - tokenRingMLStatsFrameCopiedErrors Counter, - tokenRingMLStatsFrequencyErrors Counter, - tokenRingMLStatsTokenErrors Counter, - tokenRingMLStatsSoftErrorReports Counter, - tokenRingMLStatsRingPollEvents Counter, - tokenRingMLStatsOwner OwnerString, - tokenRingMLStatsStatus EntryStatus - } - - - - - - - - tokenRingMLStatsIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies this - tokenRingMLStats entry." - ::= { tokenRingMLStatsEntry 1 } - - tokenRingMLStatsDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the source of the data - that this tokenRingMLStats entry is configured to - analyze. This source can be any tokenRing - interface on this device. In order to identify a - particular interface, this object shall identify - the instance of the ifIndex object, defined in - MIB-II [3], for the desired interface. For - example, if an entry were to receive data from - interface #1, this object would be set to - ifIndex.1. - - The statistics in this group reflect all error - reports on the local network segment attached to - the identified interface. - - This object may not be modified if the associated - tokenRingMLStatsStatus object is equal to - valid(1)." - ::= { tokenRingMLStatsEntry 2 } - - tokenRingMLStatsDropEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of events in which packets were - dropped by the probe due to lack of resources. - Note that this number is not necessarily the - number of packets dropped; it is just the number - of times this condition has been detected. This - value is the same as the corresponding - tokenRingPStatsDropEvents." - ::= { tokenRingMLStatsEntry 3 } - - - - - - - tokenRingMLStatsMacOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets of data in MAC packets - (excluding those that were not good frames) - received on the network (excluding framing bits - but including FCS octets)." - ::= { tokenRingMLStatsEntry 4 } - - tokenRingMLStatsMacPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of MAC packets (excluding - packets that were not good frames) received." - ::= { tokenRingMLStatsEntry 5 } - - tokenRingMLStatsRingPurgeEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of times that the ring enters - the ring purge state from normal ring state. The - ring purge state that comes in response to the - claim token or beacon state is not counted." - ::= { tokenRingMLStatsEntry 6 } - - tokenRingMLStatsRingPurgePkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ring purge MAC packets - detected by probe." - ::= { tokenRingMLStatsEntry 7 } - - tokenRingMLStatsBeaconEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of times that the ring enters a - beaconing state (beaconFrameStreamingState, - beaconBitStreamingState, - - - - - - beaconSetRecoveryModeState, or - beaconRingSignalLossState) from a non-beaconing - state. Note that a change of the source address - of the beacon packet does not constitute a new - beacon event." - ::= { tokenRingMLStatsEntry 8 } - - tokenRingMLStatsBeaconTime OBJECT-TYPE - SYNTAX TimeInterval - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total amount of time that the ring has been - in the beaconing state." - ::= { tokenRingMLStatsEntry 9 } - - tokenRingMLStatsBeaconPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of beacon MAC packets detected - by the probe." - ::= { tokenRingMLStatsEntry 10 } - - tokenRingMLStatsClaimTokenEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of times that the ring enters - the claim token state from normal ring state or - ring purge state. The claim token state that - comes in response to a beacon state is not - counted." - ::= { tokenRingMLStatsEntry 11 } - - tokenRingMLStatsClaimTokenPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of claim token MAC packets - detected by the probe." - ::= { tokenRingMLStatsEntry 12 } - - - - - - - - - tokenRingMLStatsNAUNChanges OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of NAUN changes detected by the - probe." - ::= { tokenRingMLStatsEntry 13 } - - tokenRingMLStatsLineErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of line errors reported in error - reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 14 } - - tokenRingMLStatsInternalErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of adapter internal errors - reported in error reporting packets detected by - the probe." - ::= { tokenRingMLStatsEntry 15 } - - tokenRingMLStatsBurstErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of burst errors reported in - error reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 16 } - - tokenRingMLStatsACErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of AC (Address Copied) errors - reported in error reporting packets detected by - the probe." - ::= { tokenRingMLStatsEntry 17 } - - - - - - - - tokenRingMLStatsAbortErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of abort delimiters reported in - error reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 18 } - - tokenRingMLStatsLostFrameErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of lost frame errors reported in - error reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 19 } - - tokenRingMLStatsCongestionErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of receive congestion errors - reported in error reporting packets detected by - the probe." - ::= { tokenRingMLStatsEntry 20 } - - tokenRingMLStatsFrameCopiedErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frame copied errors reported - in error reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 21 } - - tokenRingMLStatsFrequencyErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frequency errors reported in - error reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 22 } - - - - - - - - - tokenRingMLStatsTokenErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of token errors reported in - error reporting packets detected by the probe." - ::= { tokenRingMLStatsEntry 23 } - - tokenRingMLStatsSoftErrorReports OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of soft error report frames - detected by the probe." - ::= { tokenRingMLStatsEntry 24 } - - tokenRingMLStatsRingPollEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ring poll events detected by - the probe (i.e. the number of ring polls initiated - by the active monitor that were detected)." - ::= { tokenRingMLStatsEntry 25 } - - tokenRingMLStatsOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { tokenRingMLStatsEntry 26 } - - tokenRingMLStatsStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this tokenRingMLStats entry." - ::= { tokenRingMLStatsEntry 27 } - - - - - - - - - - -- The Token Ring Promiscuous Statistics Group - -- - -- Implementation of this group is optional - - tokenRingPStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF TokenRingPStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of promiscuous Token Ring statistics - entries." - ::= { statistics 3 } - - tokenRingPStatsEntry OBJECT-TYPE - SYNTAX TokenRingPStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of promiscuous statistics kept for - non-MAC packets on a particular Token Ring - interface." - INDEX { tokenRingPStatsIndex } - ::= { tokenRingPStatsTable 1 } - - -- As an example, an instance of the - -- tokenRingPStatsDataOctets object - -- might be named tokenRingPStatsDataOctets.1 - - TokenRingPStatsEntry ::= SEQUENCE { - tokenRingPStatsIndex INTEGER, - tokenRingPStatsDataSource OBJECT IDENTIFIER, - tokenRingPStatsDropEvents Counter, - tokenRingPStatsDataOctets Counter, - tokenRingPStatsDataPkts Counter, - tokenRingPStatsDataBroadcastPkts Counter, - tokenRingPStatsDataMulticastPkts Counter, - tokenRingPStatsDataPkts18to63Octets Counter, - tokenRingPStatsDataPkts64to127Octets Counter, - tokenRingPStatsDataPkts128to255Octets Counter, - tokenRingPStatsDataPkts256to511Octets Counter, - tokenRingPStatsDataPkts512to1023Octets Counter, - tokenRingPStatsDataPkts1024to2047Octets Counter, - tokenRingPStatsDataPkts2048to4095Octets Counter, - tokenRingPStatsDataPkts4096to8191Octets Counter, - tokenRingPStatsDataPkts8192to18000Octets Counter, - tokenRingPStatsDataPktsGreaterThan18000Octets Counter, - tokenRingPStatsOwner OwnerString, - tokenRingPStatsStatus EntryStatus - - - - - - } - - tokenRingPStatsIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies this - tokenRingPStats entry." - ::= { tokenRingPStatsEntry 1 } - - tokenRingPStatsDataSource OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - ACCESS read-write - STATUS mandatory - DESCRIPTION - "This object identifies the source of the data - that this tokenRingPStats entry is configured to - analyze. This source can be any tokenRing - interface on this device. In order to identify a - particular interface, this object shall identify - the instance of the ifIndex object, defined in - MIB-II [3], for the desired interface. For - example, if an entry were to receive data from - interface #1, this object would be set to - ifIndex.1. - - The statistics in this group reflect all non-MAC - packets on the local network segment attached to - the identified interface. - - This object may not be modified if the associated - tokenRingPStatsStatus object is equal to - valid(1)." - ::= { tokenRingPStatsEntry 2 } - - tokenRingPStatsDropEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of events in which packets were - dropped by the probe due to lack of resources. - Note that this number is not necessarily the - number of packets dropped; it is just the number - of times this condition has been detected. This - value is the same as the corresponding - tokenRingMLStatsDropEvents" - - - - - - ::= { tokenRingPStatsEntry 3 } - - tokenRingPStatsDataOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets of data in good frames - received on the network (excluding framing bits - but including FCS octets) in non-MAC packets." - ::= { tokenRingPStatsEntry 4 } - - tokenRingPStatsDataPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of non-MAC packets in good - frames. received." - ::= { tokenRingPStatsEntry 5 } - - tokenRingPStatsDataBroadcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were directed to an LLC broadcast address - (0xFFFFFFFFFFFF or 0xC000FFFFFFFF)." - ::= { tokenRingPStatsEntry 6 } - - tokenRingPStatsDataMulticastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were directed to a local or global multicast - or functional address. Note that this number does - not include packets directed to the broadcast - address." - ::= { tokenRingPStatsEntry 7 } - - tokenRingPStatsDataPkts18to63Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - - - - - - "The total number of good non-MAC frames received - that were between 18 and 63 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 8 } - - tokenRingPStatsDataPkts64to127Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 64 and 127 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 9 } - - tokenRingPStatsDataPkts128to255Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 128 and 255 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 10 } - - tokenRingPStatsDataPkts256to511Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 256 and 511 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 11 } - - tokenRingPStatsDataPkts512to1023Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 512 and 1023 octets in length - inclusive, excluding framing bits but including - FCS octets." - - - - - - ::= { tokenRingPStatsEntry 12 } - - tokenRingPStatsDataPkts1024to2047Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 1024 and 2047 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 13 } - - tokenRingPStatsDataPkts2048to4095Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 2048 and 4095 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 14 } - - tokenRingPStatsDataPkts4096to8191Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 4096 and 8191 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 15 } - - tokenRingPStatsDataPkts8192to18000Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were between 8192 and 18000 octets in length - inclusive, excluding framing bits but including - FCS octets." - ::= { tokenRingPStatsEntry 16 } - - tokenRingPStatsDataPktsGreaterThan18000Octets OBJECT-TYPE - SYNTAX Counter - - - - - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - that were greater than 18000 octets in length, - excluding framing bits but including FCS octets." - ::= { tokenRingPStatsEntry 17 } - - tokenRingPStatsOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { tokenRingPStatsEntry 18 } - - tokenRingPStatsStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this tokenRingPStats entry." - ::= { tokenRingPStatsEntry 19 } - - - -- The Token Ring History Groups - - -- When an entry in the historyControlTable is created that - -- identifies a token ring interface as its - -- historyControlDataSource, the probe shall create - -- corresponding entries in the tokenRingMLHistoryTable - -- and/or the tokenRingPHistoryTable, depending on which - -- groups it supports. - - - -- The Token Ring Mac-Layer History Group - -- - -- Implementation of this group is optional. - -- Implementation of this group requires implementation of - -- the historyControl group from RFC1271. - - tokenRingMLHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF TokenRingMLHistoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of Mac-Layer Token Ring statistics - - - - - - entries." - ::= { history 3 } - - tokenRingMLHistoryEntry OBJECT-TYPE - SYNTAX TokenRingMLHistoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of Mac-Layer statistics kept for a - particular Token Ring interface." - INDEX { tokenRingMLHistoryIndex, - tokenRingMLHistorySampleIndex } - ::= { tokenRingMLHistoryTable 1 } - - -- As an example, an instance of the - -- tokenRingMLHistoryMacOctets - -- object might be named tokenRingMLHistoryMacOctets.1.27 - - TokenRingMLHistoryEntry ::= SEQUENCE { - tokenRingMLHistoryIndex INTEGER, - tokenRingMLHistorySampleIndex INTEGER, - tokenRingMLHistoryIntervalStart TimeTicks, - tokenRingMLHistoryDropEvents Counter, - tokenRingMLHistoryMacOctets Counter, - tokenRingMLHistoryMacPkts Counter, - tokenRingMLHistoryRingPurgeEvents Counter, - tokenRingMLHistoryRingPurgePkts Counter, - tokenRingMLHistoryBeaconEvents Counter, - tokenRingMLHistoryBeaconTime TimeInterval, - tokenRingMLHistoryBeaconPkts Counter, - tokenRingMLHistoryClaimTokenEvents Counter, - tokenRingMLHistoryClaimTokenPkts Counter, - tokenRingMLHistoryNAUNChanges Counter, - tokenRingMLHistoryLineErrors Counter, - tokenRingMLHistoryInternalErrors Counter, - tokenRingMLHistoryBurstErrors Counter, - tokenRingMLHistoryACErrors Counter, - tokenRingMLHistoryAbortErrors Counter, - tokenRingMLHistoryLostFrameErrors Counter, - tokenRingMLHistoryCongestionErrors Counter, - tokenRingMLHistoryFrameCopiedErrors Counter, - tokenRingMLHistoryFrequencyErrors Counter, - tokenRingMLHistoryTokenErrors Counter, - tokenRingMLHistorySoftErrorReports Counter, - tokenRingMLHistoryRingPollEvents Counter, - tokenRingMLHistoryActiveStations INTEGER - } - - - - - - - tokenRingMLHistoryIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The history of which this entry is a part. The - history identified by a particular value of this - index is the same history as identified by the - same value of historyControlIndex." - ::= { tokenRingMLHistoryEntry 1 } - - tokenRingMLHistorySampleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies the particular - Mac-Layer sample this entry represents among all - Mac-Layer samples associated with the same - historyControlEntry. This index starts at 1 and - increases by one as each new sample is taken." - ::= { tokenRingMLHistoryEntry 2 } - - tokenRingMLHistoryIntervalStart OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the start of the - interval over which this sample was measured. If - the probe keeps track of the time of day, it - should start the first sample of the history at a - time such that when the next hour of the day - begins, a sample is started at that instant. Note - that following this rule may require the probe to - delay collecting the first sample of the history, - as each sample must be of the same interval. Also - note that the sample which is currently being - collected is not accessible in this table until - the end of its interval." - ::= { tokenRingMLHistoryEntry 3 } - - tokenRingMLHistoryDropEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of events in which packets were - - - - - - dropped by the probe due to lack of resources - during this sampling interval. Note that this - number is not necessarily the number of packets - dropped, it is just the number of times this - condition has been detected." - ::= { tokenRingMLHistoryEntry 4 } - - tokenRingMLHistoryMacOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets of data in MAC packets - (excluding those that were not good frames) - received on the network during this sampling - interval (excluding framing bits but including FCS - octets)." - ::= { tokenRingMLHistoryEntry 5 } - - tokenRingMLHistoryMacPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of MAC packets (excluding those - that were not good frames) received during this - sampling interval." - ::= { tokenRingMLHistoryEntry 6 } - - tokenRingMLHistoryRingPurgeEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of times that the ring entered - the ring purge state from normal ring state during - this sampling interval. The ring purge state that - comes from the claim token or beacon state is not - counted." - ::= { tokenRingMLHistoryEntry 7 } - - tokenRingMLHistoryRingPurgePkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of Ring Purge MAC packets - detected by the probe during this sampling - - - - - - interval." - ::= { tokenRingMLHistoryEntry 8 } - - tokenRingMLHistoryBeaconEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of times that the ring enters a - beaconing state (beaconFrameStreamingState, - beaconBitStreamingState, - beaconSetRecoveryModeState, or - beaconRingSignalLossState) during this sampling - interval. Note that a change of the source - address of the beacon packet does not constitute a - new beacon event." - ::= { tokenRingMLHistoryEntry 9 } - - tokenRingMLHistoryBeaconTime OBJECT-TYPE - SYNTAX TimeInterval - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The amount of time that the ring has been in the - beaconing state during this sampling interval." - ::= { tokenRingMLHistoryEntry 10 } - - tokenRingMLHistoryBeaconPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of beacon MAC packets detected - by the probe during this sampling interval." - ::= { tokenRingMLHistoryEntry 11 } - - tokenRingMLHistoryClaimTokenEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of times that the ring enters - the claim token state from normal ring state or - ring purge state during this sampling interval. - The claim token state that comes from the beacon - state is not counted." - ::= { tokenRingMLHistoryEntry 12 } - - - - - - - tokenRingMLHistoryClaimTokenPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of claim token MAC packets - detected by the probe during this sampling - interval." - ::= { tokenRingMLHistoryEntry 13 } - - tokenRingMLHistoryNAUNChanges OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of NAUN changes detected by the - probe during this sampling interval." - ::= { tokenRingMLHistoryEntry 14 } - - tokenRingMLHistoryLineErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of line errors reported in error - reporting packets detected by the probe during - this sampling interval." - ::= { tokenRingMLHistoryEntry 15 } - - tokenRingMLHistoryInternalErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of adapter internal errors - reported in error reporting packets detected by - the probe during this sampling interval." - ::= { tokenRingMLHistoryEntry 16 } - - tokenRingMLHistoryBurstErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of burst errors reported in - error reporting packets detected by the probe - during this sampling interval." - ::= { tokenRingMLHistoryEntry 17 } - - - - - - tokenRingMLHistoryACErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of AC (Address Copied) errors - reported in error reporting packets detected by - the probe during this sampling interval." - ::= { tokenRingMLHistoryEntry 18 } - - tokenRingMLHistoryAbortErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of abort delimiters reported in - error reporting packets detected by the probe - during this sampling interval." - ::= { tokenRingMLHistoryEntry 19 } - - tokenRingMLHistoryLostFrameErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of lost frame errors reported in - error reporting packets detected by the probe - during this sampling interval." - ::= { tokenRingMLHistoryEntry 20 } - - tokenRingMLHistoryCongestionErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of receive congestion errors - reported in error reporting packets detected by - the probe during this sampling interval." - ::= { tokenRingMLHistoryEntry 21 } - - tokenRingMLHistoryFrameCopiedErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frame copied errors reported - in error reporting packets detected by the probe - during this sampling interval." - - - - - - ::= { tokenRingMLHistoryEntry 22 } - - tokenRingMLHistoryFrequencyErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frequency errors reported in - error reporting packets detected by the probe - during this sampling interval." - ::= { tokenRingMLHistoryEntry 23 } - - tokenRingMLHistoryTokenErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of token errors reported in - error reporting packets detected by the probe - during this sampling interval." - ::= { tokenRingMLHistoryEntry 24 } - - tokenRingMLHistorySoftErrorReports OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of soft error report frames - detected by the probe during this sampling - interval." - ::= { tokenRingMLHistoryEntry 25 } - - tokenRingMLHistoryRingPollEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of ring poll events detected by - the probe during this sampling interval." - ::= { tokenRingMLHistoryEntry 26 } - - tokenRingMLHistoryActiveStations OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The maximum number of active stations on the ring - detected by the probe during this sampling - - - - - - interval." - ::= { tokenRingMLHistoryEntry 27} - - - -- The Token Ring Promiscuous History Group - -- - -- Implementation of this group is optional. - -- Implementation of this group requires the implementation - -- of the historyControl group from RFC1271. - - tokenRingPHistoryTable OBJECT-TYPE - SYNTAX SEQUENCE OF TokenRingPHistoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of promiscuous Token Ring statistics - entries." - ::= { history 4 } - - tokenRingPHistoryEntry OBJECT-TYPE - SYNTAX TokenRingPHistoryEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of promiscuous statistics kept for a - particular Token Ring interface." - INDEX { tokenRingPHistoryIndex, - tokenRingPHistorySampleIndex } - ::= { tokenRingPHistoryTable 1 } - - -- As an example, an instance of the - -- tokenRingPHistoryDataPkts object - -- might be named tokenRingPHistoryDataPkts.1.27 - - TokenRingPHistoryEntry ::= SEQUENCE { - tokenRingPHistoryIndex INTEGER, - tokenRingPHistorySampleIndex INTEGER, - tokenRingPHistoryIntervalStart TimeTicks, - tokenRingPHistoryDropEvents Counter, - tokenRingPHistoryDataOctets Counter, - tokenRingPHistoryDataPkts Counter, - tokenRingPHistoryDataBroadcastPkts Counter, - tokenRingPHistoryDataMulticastPkts Counter, - tokenRingPHistoryDataPkts18to63Octets Counter, - tokenRingPHistoryDataPkts64to127Octets Counter, - tokenRingPHistoryDataPkts128to255Octets Counter, - tokenRingPHistoryDataPkts256to511Octets Counter, - tokenRingPHistoryDataPkts512to1023Octets Counter, - - - - - - tokenRingPHistoryDataPkts1024to2047Octets Counter, - tokenRingPHistoryDataPkts2048to4095Octets Counter, - tokenRingPHistoryDataPkts4096to8191Octets Counter, - tokenRingPHistoryDataPkts8192to18000Octets Counter, - tokenRingPHistoryDataPktsGreaterThan18000Octets Counter - } - - tokenRingPHistoryIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The history of which this entry is a part. The - history identified by a particular value of this - index is the same history as identified by the - same value of historyControlIndex." - ::= { tokenRingPHistoryEntry 1 } - - tokenRingPHistorySampleIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "An index that uniquely identifies the particular - sample this entry represents among all samples - associated with the same historyControlEntry. - This index starts at 1 and increases by one as - each new sample is taken." - ::= { tokenRingPHistoryEntry 2 } - - tokenRingPHistoryIntervalStart OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the start of the - interval over which this sample was measured. If - the probe keeps track of the time of day, it - should start the first sample of the history at a - time such that when the next hour of the day - begins, a sample is started at that instant. Note - that following this rule may require the probe to - delay collecting the first sample of the history, - as each sample must be of the same interval. Also - note that the sample which is currently being - collected is not accessible in this table until - the end of its interval." - ::= { tokenRingPHistoryEntry 3 } - - - - - - tokenRingPHistoryDropEvents OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of events in which packets were - dropped by the probe due to lack of resources - during this sampling interval. Note that this - number is not necessarily the number of packets - dropped, it is just the number of times this - condition has been detected." - ::= { tokenRingPHistoryEntry 4 } - - tokenRingPHistoryDataOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets of data in good frames - received on the network (excluding framing bits - but including FCS octets) in non-MAC packets - during this sampling interval." - ::= { tokenRingPHistoryEntry 5 } - - tokenRingPHistoryDataPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval." - ::= { tokenRingPHistoryEntry 6 } - - tokenRingPHistoryDataBroadcastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were directed - to an LLC broadcast address (0xFFFFFFFFFFFF or - 0xC000FFFFFFFF)." - ::= { tokenRingPHistoryEntry 7 } - - tokenRingPHistoryDataMulticastPkts OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - - - - - - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were directed - to a local or global multicast or functional - address. Note that this number does not include - packets directed to the broadcast address." - ::= { tokenRingPHistoryEntry 8 } - - tokenRingPHistoryDataPkts18to63Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between 18 - and 63 octets in length inclusive, excluding - framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 9 } - - tokenRingPHistoryDataPkts64to127Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between 64 - and 127 octets in length inclusive, excluding - framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 10 } - - tokenRingPHistoryDataPkts128to255Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - 128 and 255 octets in length inclusive, excluding - framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 11 } - - tokenRingPHistoryDataPkts256to511Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - - - - - - 256 and 511 octets in length inclusive, excluding - framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 12 } - - tokenRingPHistoryDataPkts512to1023Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - 512 and 1023 octets in length inclusive, excluding - framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 13 } - - tokenRingPHistoryDataPkts1024to2047Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - 1024 and 2047 octets in length inclusive, - excluding framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 14 } - - tokenRingPHistoryDataPkts2048to4095Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - 2048 and 4095 octets in length inclusive, - excluding framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 15 } - - tokenRingPHistoryDataPkts4096to8191Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - 4096 and 8191 octets in length inclusive, - excluding framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 16 } - - - - - - - tokenRingPHistoryDataPkts8192to18000Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were between - 8192 and 18000 octets in length inclusive, - excluding framing bits but including FCS octets." - ::= { tokenRingPHistoryEntry 17 } - - tokenRingPHistoryDataPktsGreaterThan18000Octets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good non-MAC frames received - during this sampling interval that were greater - than 18000 octets in length, excluding framing - bits but including FCS octets." - ::= { tokenRingPHistoryEntry 18 } - - - -- The Token Ring Ring Station Group - -- - -- Implementation of this group is optional - -- - -- Although the ringStationTable stores entries only for - -- those stations physically attached to the local ring and - -- the number of stations attached to a ring is limited, a - -- probe may still need to free resources when resources - -- grow tight. In such a situation, it is suggested that - -- the probe free only inactive stations, and to - -- first free the stations that have been inactive for the - -- longest time. - - ringStationControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF RingStationControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of ringStation table control entries." - ::= { tokenRing 1 } - - ringStationControlEntry OBJECT-TYPE - SYNTAX RingStationControlEntry - ACCESS not-accessible - STATUS mandatory - - - - - - DESCRIPTION - "A list of parameters that set up the discovery of - stations on a particular interface and the - collection of statistics about these stations." - INDEX { ringStationControlIfIndex } - ::= { ringStationControlTable 1 } - - -- As an example, an instance of the - -- ringStationControlIfIndex object - -- might be named ringStationControlIfIndex.1 - - RingStationControlEntry ::= SEQUENCE { - ringStationControlIfIndex INTEGER, - ringStationControlTableSize INTEGER, - ringStationControlActiveStations INTEGER, - ringStationControlRingState INTEGER, - ringStationControlBeaconSender MacAddress, - ringStationControlBeaconNAUN MacAddress, - ringStationControlActiveMonitor MacAddress, - ringStationControlOrderChanges Counter, - ringStationControlOwner OwnerString, - ringStationControlStatus EntryStatus - } - - ringStationControlIfIndex OBJECT-TYPE - SYNTAX INTEGER (1..65535) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies the - interface on this remote network monitoring device - from which ringStation data is collected. The - interface identified by a particular value of this - object is the same interface as identified by the - same value of the ifIndex object, defined in MIB- - II [3]." - ::= { ringStationControlEntry 1 } - - ringStationControlTableSize OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of ringStationEntries in the - ringStationTable associated with this - ringStationControlEntry." - ::= { ringStationControlEntry 2 } - - - - - - - ringStationControlActiveStations OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of active ringStationEntries in the - ringStationTable associated with this - ringStationControlEntry." - ::= { ringStationControlEntry 3 } - - ringStationControlRingState OBJECT-TYPE - SYNTAX INTEGER { - normalOperation(1), - ringPurgeState(2), - claimTokenState(3), - beaconFrameStreamingState(4), - beaconBitStreamingState(5), - beaconRingSignalLossState(6), - beaconSetRecoveryModeState(7) - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The current status of this ring." - ::= { ringStationControlEntry 4 } - - ringStationControlBeaconSender OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The address of the sender of the last beacon - frame received by the probe on this ring. If no - beacon frames have been received, this object - shall be equal to six octets of zero." - ::= { ringStationControlEntry 5 } - - ringStationControlBeaconNAUN OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The address of the NAUN in the last beacon frame - received by the probe on this ring. If no beacon - frames have been received, this object shall be - equal to six octets of zero." - ::= { ringStationControlEntry 6 } - - - - - - - ringStationControlActiveMonitor OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The address of the Active Monitor on this - segment. If this address is unknown, this object - shall be equal to six octets of zero." - ::= { ringStationControlEntry 7 } - - ringStationControlOrderChanges OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of add and delete events in the - ringStationOrderTable optionally associated with - this ringStationControlEntry." - ::= { ringStationControlEntry 8 } - - ringStationControlOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { ringStationControlEntry 9 } - - ringStationControlStatus OBJECT-TYPE - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this ringStationControl entry. - - If this object is not equal to valid(1), all - associated entries in the ringStationTable shall - be deleted by the agent." - ::= { ringStationControlEntry 10 } - - ringStationTable OBJECT-TYPE - SYNTAX SEQUENCE OF RingStationEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of ring station entries. An entry will - exist for each station that is now or has - - - - - - previously been detected as physically present on - this ring." - ::= { tokenRing 2 } - - ringStationEntry OBJECT-TYPE - SYNTAX RingStationEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for a particular - station that has been discovered on a ring - monitored by this device." - INDEX { ringStationIfIndex, ringStationMacAddress } - ::= { ringStationTable 1 } - - -- As an example, an instance of the - -- ringStationStationStatus object might be named - -- ringStationStationStatus.1.16.0.90.0.64.131 - - RingStationEntry ::= SEQUENCE { - ringStationIfIndex INTEGER, - ringStationMacAddress MacAddress, - ringStationLastNAUN MacAddress, - ringStationStationStatus INTEGER, - ringStationLastEnterTime TimeTicks, - ringStationLastExitTime TimeTicks, - ringStationDuplicateAddresses Counter, - ringStationInLineErrors Counter, - ringStationOutLineErrors Counter, - ringStationInternalErrors Counter, - ringStationInBurstErrors Counter, - ringStationOutBurstErrors Counter, - ringStationACErrors Counter, - ringStationAbortErrors Counter, - ringStationLostFrameErrors Counter, - ringStationCongestionErrors Counter, - ringStationFrameCopiedErrors Counter, - ringStationFrequencyErrors Counter, - ringStationTokenErrors Counter, - ringStationInBeaconErrors Counter, - ringStationOutBeaconErrors Counter, - ringStationInsertions Counter - } - - ringStationIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - - - - - - DESCRIPTION - "The value of this object uniquely identifies the - interface on this remote network monitoring device - on which this station was detected. The interface - identified by a particular value of this object is - the same interface as identified by the same value - of the ifIndex object, defined in MIB-II [3]." - ::= { ringStationEntry 1 } - - ringStationMacAddress OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of this station." - ::= { ringStationEntry 2 } - - ringStationLastNAUN OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of last known NAUN of this - station." - ::= { ringStationEntry 3 } - - ringStationStationStatus OBJECT-TYPE - SYNTAX INTEGER { - active(1), -- actively participating in ring poll. - inactive(2), -- Not participating in ring poll - forcedRemoval(3) -- Forced off ring by network - -- management. - } - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The status of this station on the ring." - ::= { ringStationEntry 4 } - - ringStationLastEnterTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the time this station - last entered the ring. If the time is unknown, - this value shall be zero." - ::= { ringStationEntry 5 } - - - - - - ringStationLastExitTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the time the probe - detected that this station last exited the ring. - If the time is unknown, this value shall be zero." - ::= { ringStationEntry 6 } - - ringStationDuplicateAddresses OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times this station experienced a - duplicate address error." - ::= { ringStationEntry 7 } - - ringStationInLineErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of line errors reported by this - station in error reporting packets detected by the - probe." - ::= { ringStationEntry 8 } - - ringStationOutLineErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of line errors reported in error - reporting packets sent by the nearest active - downstream neighbor of this station and detected - by the probe." - ::= { ringStationEntry 9 } - - ringStationInternalErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of adapter internal errors - reported by this station in error reporting - packets detected by the probe." - - - - - - ::= { ringStationEntry 10 } - - ringStationInBurstErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of burst errors reported by this - station in error reporting packets detected by the - probe." - ::= { ringStationEntry 11 } - - ringStationOutBurstErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of burst errors reported in - error reporting packets sent by the nearest active - downstream neighbor of this station and detected - by the probe." - ::= { ringStationEntry 12 } - - ringStationACErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of AC (Address Copied) errors - reported in error reporting packets sent by the - nearest active downstream neighbor of this station - and detected by the probe." - ::= { ringStationEntry 13 } - - ringStationAbortErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of abort delimiters reported by - this station in error reporting packets detected - by the probe." - ::= { ringStationEntry 14 } - - ringStationLostFrameErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - - - - - - DESCRIPTION - "The total number of lost frame errors reported by - this station in error reporting packets detected - by the probe." - ::= { ringStationEntry 15 } - - ringStationCongestionErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of receive congestion errors - reported by this station in error reporting - packets detected by the probe." - ::= { ringStationEntry 16 } - - ringStationFrameCopiedErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frame copied errors reported - by this station in error reporting packets - detected by the probe." - ::= { ringStationEntry 17 } - - ringStationFrequencyErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frequency errors reported by - this station in error reporting packets detected - by the probe." - ::= { ringStationEntry 18 } - - ringStationTokenErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of token errors reported by this - station in error reporting frames detected by the - probe." - ::= { ringStationEntry 19 } - - ringStationInBeaconErrors OBJECT-TYPE - SYNTAX Counter - - - - - - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of beacon frames sent by this - station and detected by the probe." - ::= { ringStationEntry 20 } - - ringStationOutBeaconErrors OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of beacon frames detected by the - probe that name this station as the NAUN." - ::= { ringStationEntry 21 } - - ringStationInsertions OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The number of times the probe detected this - station inserting onto the ring." - ::= { ringStationEntry 22 } - - - -- The Token Ring Ring Station Order Group - -- - -- Implementation of this group is optional - -- - - -- The ringStationOrderTable - - ringStationOrderTable OBJECT-TYPE - SYNTAX SEQUENCE OF RingStationOrderEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of ring station entries for stations in - the ring poll, ordered by their ring-order." - ::= { tokenRing 3 } - - ringStationOrderEntry OBJECT-TYPE - SYNTAX RingStationOrderEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for a particular - - - - - - station that is active on a ring monitored by this - device. This table will contain information for - every interface that has a - ringStationControlStatus equal to valid." - INDEX { ringStationOrderIfIndex, - ringStationOrderOrderIndex } - ::= { ringStationOrderTable 1 } - - -- As an example, an instance of the - -- ringStationOrderMacAddress object might be named - -- ringStationOrderMacAddress.1.14 - - RingStationOrderEntry ::= SEQUENCE { - ringStationOrderIfIndex INTEGER, - ringStationOrderOrderIndex INTEGER, - ringStationOrderMacAddress MacAddress - } - - ringStationOrderIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies the - interface on this remote network monitoring device - on which this station was detected. The interface - identified by a particular value of this object is - the same interface as identified by the same value - of the ifIndex object, defined in MIB-II [3]." - ::= { ringStationOrderEntry 1 } - - ringStationOrderOrderIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "This index denotes the location of this station - with respect to other stations on the ring. This - index is one more than the number of hops - downstream that this station is from the rmon - probe. The rmon probe itself gets the value one." - ::= { ringStationOrderEntry 2 } - - ringStationOrderMacAddress OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - - - - - - "The physical address of this station." - ::= { ringStationOrderEntry 3 } - - - -- The Token Ring Ring Station Config Group - -- - -- Implementation of this group is optional. - -- The ring station config group manages token ring nodes - -- through active means. - - ringStationConfigControlTable OBJECT-TYPE - SYNTAX SEQUENCE OF RingStationConfigControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of ring station configuration control - entries." - ::= { tokenRing 4 } - - ringStationConfigControlEntry OBJECT-TYPE - SYNTAX RingStationConfigControlEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "This entry controls active management of stations - by the probe. One entry exists in this table for - each active station in the ringStationTable." - INDEX { ringStationConfigControlIfIndex, - ringStationConfigControlMacAddress } - ::= { ringStationConfigControlTable 1 } - - -- As an example, an instance of the - -- ringStationConfigControlRemove object might be named - -- ringStationConfigControlRemove.1.16.0.90.0.64.131 - - RingStationConfigControlEntry ::= SEQUENCE { - ringStationConfigControlIfIndex INTEGER, - ringStationConfigControlMacAddress MacAddress, - ringStationConfigControlRemove INTEGER, - ringStationConfigControlUpdateStats INTEGER - } - - ringStationConfigControlIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies the - - - - - - interface on this remote network monitoring device - on which this station was detected. The interface - identified by a particular value of this object is - the same interface as identified by the same value - of the ifIndex object, defined in MIB-II [3]." - ::= { ringStationConfigControlEntry 1 } - - ringStationConfigControlMacAddress OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of this station." - ::= { ringStationConfigControlEntry 2 } - - ringStationConfigControlRemove OBJECT-TYPE - SYNTAX INTEGER { - stable(1), - removing(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this object to `removing(2)' causes a - Remove Station MAC frame to be sent. The agent - will set this object to `stable(1)' after - processing the request." - ::= { ringStationConfigControlEntry 3 } - - ringStationConfigControlUpdateStats OBJECT-TYPE - SYNTAX INTEGER { - stable(1), - updating(2) - } - ACCESS read-write - STATUS mandatory - DESCRIPTION - "Setting this object to `updating(2)' causes the - configuration information associate with this - entry to be updated. The agent will set this - object to `stable(1)' after processing the - request." - ::= { ringStationConfigControlEntry 4 } - - - - - - - - - - - -- The ringStationConfig Table - -- - -- Entries exist in this table after an active - -- configuration query has completed successfully for - -- a station. This query is initiated by the associated - -- ringStationConfigControlUpdateStats variable. - - ringStationConfigTable OBJECT-TYPE - SYNTAX SEQUENCE OF RingStationConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of configuration entries for stations on a - ring monitored by this probe." - ::= { tokenRing 5 } - - ringStationConfigEntry OBJECT-TYPE - SYNTAX RingStationConfigEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of statistics for a particular - station that has been discovered on a ring - monitored by this probe." - INDEX { ringStationConfigIfIndex, - ringStationConfigMacAddress } - ::= { ringStationConfigTable 1 } - - -- As an example, an instance of the - -- ringStationConfigLocation object might be named - -- ringStationConfigLocation.1.16.0.90.0.64.131 - - RingStationConfigEntry ::= SEQUENCE { - ringStationConfigIfIndex INTEGER, - ringStationConfigMacAddress MacAddress, - ringStationConfigUpdateTime TimeTicks, - ringStationConfigLocation OCTET STRING, - ringStationConfigMicrocode OCTET STRING, - ringStationConfigGroupAddress OCTET STRING, - ringStationConfigFunctionalAddress OCTET STRING - } - - ringStationConfigIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies the - - - - - - interface on this remote network monitoring device - on which this station was detected. The interface - identified by a particular value of this object is - the same interface as identified by the same value - of the ifIndex object, defined in MIB-II [3]." - ::= { ringStationConfigEntry 1 } - - ringStationConfigMacAddress OBJECT-TYPE - SYNTAX MacAddress - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The physical address of this station." - ::= { ringStationConfigEntry 2 } - - ringStationConfigUpdateTime OBJECT-TYPE - SYNTAX TimeTicks - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of sysUpTime at the time this - configuration information was last updated - (completely)." - ::= { ringStationConfigEntry 3 } - - ringStationConfigLocation OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The assigned physical location of this station." - ::= { ringStationConfigEntry 4 } - - ringStationConfigMicrocode OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(10)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The microcode EC level of this station." - ::= { ringStationConfigEntry 5 } - - ringStationConfigGroupAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The low-order 4 octets of the group address - recognized by this station." - - - - - - ::= { ringStationConfigEntry 6 } - - ringStationConfigFunctionalAddress OBJECT-TYPE - SYNTAX OCTET STRING (SIZE(4)) - ACCESS read-only - STATUS mandatory - DESCRIPTION - "the functional addresses recognized by this - station." - ::= { ringStationConfigEntry 7 } - - - -- The Token Ring Source Routing group - -- - -- Implementation of this group is optional. - -- The data in this group is collected from the source - -- routing information potentially present in any token ring - -- packet. This information will be valid only in a pure - -- source route bridging environment. In a transparent - -- bridging or a mixed bridging environment, this - -- information may not be accurate. - - sourceRoutingStatsTable OBJECT-TYPE - SYNTAX SEQUENCE OF SourceRoutingStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A list of source routing statistics entries." - ::= { tokenRing 6 } - - sourceRoutingStatsEntry OBJECT-TYPE - SYNTAX SourceRoutingStatsEntry - ACCESS not-accessible - STATUS mandatory - DESCRIPTION - "A collection of source routing statistics kept - for a particular Token Ring interface." - INDEX { sourceRoutingStatsIfIndex } - ::= { sourceRoutingStatsTable 1 } - - -- As an example, an instance of the - -- sourceRoutingStatsInFrames object might be named - -- sourceRoutingStatsInFrames.1 - - SourceRoutingStatsEntry ::= SEQUENCE { - sourceRoutingStatsIfIndex INTEGER, - sourceRoutingStatsRingNumber INTEGER, - sourceRoutingStatsInFrames Counter, - - - - - - -- in to our net - - sourceRoutingStatsOutFrames Counter, - -- out from our net - - sourceRoutingStatsThroughFrames Counter, - -- through our net - - sourceRoutingStatsAllRoutesBroadcastFrames Counter, - sourceRoutingStatsSingleRouteBroadcastFrames Counter, - sourceRoutingStatsInOctets Counter, - sourceRoutingStatsOutOctets Counter, - sourceRoutingStatsThroughOctets Counter, - sourceRoutingStatsAllRoutesBroadcastOctets Counter, - sourceRoutingStatsSingleRoutesBroadcastOctets Counter, - sourceRoutingStatsLocalLLCFrames Counter, - sourceRoutingStats1HopFrames Counter, - sourceRoutingStats2HopsFrames Counter, - sourceRoutingStats3HopsFrames Counter, - sourceRoutingStats4HopsFrames Counter, - sourceRoutingStats5HopsFrames Counter, - sourceRoutingStats6HopsFrames Counter, - sourceRoutingStats7HopsFrames Counter, - sourceRoutingStats8HopsFrames Counter, - sourceRoutingStatsMoreThan8HopsFrames Counter, - sourceRoutingStatsOwner OwnerString, - sourceRoutingStatsStatus EntryStatus - } - - sourceRoutingStatsIfIndex OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The value of this object uniquely identifies the - interface on this remote network monitoring device - on which source routing statistics will be - detected. The interface identified by a - particular value of this object is the same - interface as identified by the same value of the - ifIndex object, defined in MIB-II [3]." - ::= { sourceRoutingStatsEntry 1 } - - sourceRoutingStatsRingNumber OBJECT-TYPE - SYNTAX INTEGER - ACCESS read-only - STATUS mandatory - DESCRIPTION - - - - - - "The ring number of the ring monitored by this - entry. When any object in this entry is created, - the probe will attempt to discover the ring - number. Only after the ring number is discovered - will this object be created. After creating an - object in this entry, the management station - should poll this object to detect when it is - created. Only after this object is created can - the management station set the - sourceRoutingStatsStatus entry to valid(1)." - ::= { sourceRoutingStatsEntry 2 } - - sourceRoutingStatsInFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The count of frames sent into this ring from - another ring." - ::= { sourceRoutingStatsEntry 3 } - - sourceRoutingStatsOutFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The count of frames sent from this ring to - another ring." - ::= { sourceRoutingStatsEntry 4 } - - sourceRoutingStatsThroughFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The count of frames sent from another ring, - through this ring, to another ring." - ::= { sourceRoutingStatsEntry 5 } - - sourceRoutingStatsAllRoutesBroadcastFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good frames received that - were All Routes Broadcast." - ::= { sourceRoutingStatsEntry 6 } - - - - - - - sourceRoutingStatsSingleRouteBroadcastFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of good frames received that - were Single Route Broadcast." - ::= { sourceRoutingStatsEntry 7 } - - sourceRoutingStatsInOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The count of octets in good frames sent into this - ring from another ring." - ::= { sourceRoutingStatsEntry 8 } - - sourceRoutingStatsOutOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The count of octets in good frames sent from this - ring to another ring." - ::= { sourceRoutingStatsEntry 9 } - - sourceRoutingStatsThroughOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The count of octets in good frames sent another - ring, through this ring, to another ring." - ::= { sourceRoutingStatsEntry 10 } - - sourceRoutingStatsAllRoutesBroadcastOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of octets in good frames - received that were All Routes Broadcast." - ::= { sourceRoutingStatsEntry 11 } - - sourceRoutingStatsSingleRoutesBroadcastOctets OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - - - - - - STATUS mandatory - DESCRIPTION - "The total number of octets in good frames - received that were Single Route Broadcast." - ::= { sourceRoutingStatsEntry 12 } - - sourceRoutingStatsLocalLLCFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received who had no - RIF field (or had a RIF field that only included - the local ring's number) and were not All Route - Broadcast Frames." - ::= { sourceRoutingStatsEntry 13 } - - sourceRoutingStats1HopFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 1 hop, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 14 } - - sourceRoutingStats2HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 2 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 15 } - - sourceRoutingStats3HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - - - - - - "The total number of frames received whose route - had 3 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 16 } - - sourceRoutingStats4HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 4 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 17 } - - sourceRoutingStats5HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 5 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 18 } - - sourceRoutingStats6HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 6 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 19 } - - sourceRoutingStats7HopsFrames OBJECT-TYPE - - - - - - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 7 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 20 } - - sourceRoutingStats8HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had 8 hops, were not All Route Broadcast Frames, - and whose source or destination were on this ring - (i.e. frames that had a RIF field and had this - ring number in the first or last entry of the RIF - field)." - ::= { sourceRoutingStatsEntry 21 } - - sourceRoutingStatsMoreThan8HopsFrames OBJECT-TYPE - SYNTAX Counter - ACCESS read-only - STATUS mandatory - DESCRIPTION - "The total number of frames received whose route - had more than 8 hops, were not All Route Broadcast - Frames, and whose source or destination were on - this ring (i.e. frames that had a RIF field and - had this ring number in the first or last entry of - the RIF field)." - ::= { sourceRoutingStatsEntry 22 } - - sourceRoutingStatsOwner OBJECT-TYPE - SYNTAX OwnerString - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The entity that configured this entry and is - therefore using the resources assigned to it." - ::= { sourceRoutingStatsEntry 23 } - - sourceRoutingStatsStatus OBJECT-TYPE - - - - - - SYNTAX EntryStatus - ACCESS read-write - STATUS mandatory - DESCRIPTION - "The status of this sourceRoutingStats entry." - ::= { sourceRoutingStatsEntry 24 } - -END diff --git a/mibs/orig/UBNT-MIB b/mibs/orig/UBNT-MIB deleted file mode 100644 index 39da236..0000000 --- a/mibs/orig/UBNT-MIB +++ /dev/null @@ -1,108 +0,0 @@ -UBNT-MIB DEFINITIONS ::= BEGIN - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, enterprises FROM SNMPv2-SMI - DisplayString FROM SNMPv2-TC - OBJECT-GROUP, MODULE-COMPLIANCE FROM SNMPv2-CONF; - - ubntMIB MODULE-IDENTITY - LAST-UPDATED "201402270000Z" - ORGANIZATION "Ubiquiti Networks, Inc." - CONTACT-INFO "support@ubnt.com" - DESCRIPTION "The MIB module for Ubiquiti Networks, Inc. entities" - REVISION "201402270000Z" - DESCRIPTION "Split revision" - ::= { ubnt 1 } - - -- -------------------------------------------------------------------------------- - -- Ubiquiti Networks Root - -- -------------------------------------------------------------------------------- - - ubnt OBJECT IDENTIFIER ::= { enterprises 41112 } - - -- -------------------------------------------------------------------------------- - -- Ubiquiti Networks SNMP Information - -- -------------------------------------------------------------------------------- - - ubntSnmpInfo OBJECT IDENTIFIER ::= { ubntMIB 2 } - ubntSnmpGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 1} - ubntAirosGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 2} - ubntAirFiberGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 3} - ubntEdgeMaxGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 4} - ubntUniFiGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 5} - ubntAirVisionGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 6} - ubntMFiGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 7} - ubntUniTelGroups OBJECT IDENTIFIER ::= { ubntSnmpInfo 8} - - -- -------------------------------------------------------------------------------- - -- Ubiquiti Networks Products - -- -------------------------------------------------------------------------------- - - ubntAirFIBER OBJECT IDENTIFIER ::= { ubntMIB 3 } - ubntEdgeMax OBJECT IDENTIFIER ::= { ubntMIB 5 } - ubntUniFi OBJECT IDENTIFIER ::= { ubntMIB 6 } - ubntAirVision OBJECT IDENTIFIER ::= { ubntMIB 7 } - ubntMFi OBJECT IDENTIFIER ::= { ubntMIB 8 } - ubntUniTel OBJECT IDENTIFIER ::= { ubntMIB 9 } - - -- -------------------------------------------------------------------------------- - -- Ubiquiti Networks OR table - -- -------------------------------------------------------------------------------- - - ubntORTable OBJECT-TYPE - SYNTAX SEQUENCE OF UbntOREntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Capabilities" - ::= { ubntMIB 1 } - - ubntOREntry OBJECT-TYPE - SYNTAX UbntOREntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "An entry in the ubntORTable" - INDEX { ubntORIndex } - ::= { ubntORTable 1 } - - UbntOREntry ::= SEQUENCE { - ubntORIndex Integer32, - ubntORID OBJECT IDENTIFIER, - ubntORDescr DisplayString - } - - ubntORIndex OBJECT-TYPE - SYNTAX Integer32 (1..255) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Index for the ubntORTable" - ::= { ubntOREntry 1 } - - ubntORID OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION "OR ID" - ::= { ubntOREntry 2 } - - ubntORDescr OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Description of idenfifier" - ::= { ubntOREntry 3 } - - ubntORInfoGroup OBJECT-GROUP - OBJECTS { ubntORID, - ubntORDescr } - STATUS current - DESCRIPTION "Collection of related objects" - ::= { ubntSnmpGroups 1 } - - ubntORCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION "The compliance statement for Ubiquiti entities." - MODULE - GROUP ubntORInfoGroup - DESCRIPTION "This group is for Ubiquiti systems." - ::= { ubntSnmpGroups 2 } - -END \ No newline at end of file diff --git a/mibs/orig/UBNT-UniFi-MIB b/mibs/orig/UBNT-UniFi-MIB deleted file mode 100644 index 200d5af..0000000 --- a/mibs/orig/UBNT-UniFi-MIB +++ /dev/null @@ -1,606 +0,0 @@ -UBNT-UniFi-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, Unsigned32, Counter32, Gauge32, IpAddress, enterprises - FROM SNMPv2-SMI - TEXTUAL-CONVENTION, DisplayString, MacAddress, DateAndTime, TruthValue - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP - FROM SNMPv2-CONF - ubntMIB, ubntUniFi, ubntUniFiGroups - FROM UBNT-MIB; - -ubntUniFi MODULE-IDENTITY - LAST-UPDATED "201606250000Z" - ORGANIZATION "Ubiquiti Networks, Inc." - CONTACT-INFO "support@ubnt.com" - DESCRIPTION "The UniFi MIB module for Ubiquiti Networks, Inc. entities" - REVISION "201606250000Z" - DESCRIPTION "Initial Revision." - ::= { ubntMIB 6 } - -unifiApWireless OBJECT IDENTIFIER ::= { ubntUniFi 1 } -unifiApIf OBJECT IDENTIFIER ::= { ubntUniFi 2 } -unifiApSystem OBJECT IDENTIFIER ::= { ubntUniFi 3 } - - -TableIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "A unique value, greater than zero. It is recommended - that values are assigned contiguously starting from 1." - SYNTAX Integer32 (1..2147483647) - - -ObjectIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "x" - STATUS current - DESCRIPTION "Internal " - SYNTAX Integer32 (0..2147483647) --- SYNTAX Integer32 (-2147483648..2147483647) --- SYNTAX Unsigned32 (0..4294967295) - -Voltage ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d-2" - STATUS current - DESCRIPTION "" - SYNTAX Integer32 (-2147483648..2147483647) - -Temperature ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d-1" - STATUS current - DESCRIPTION "" - SYNTAX Integer32 (-2147483648..2147483647) - -unifiIfTable OBJECT-TYPE - SYNTAX SEQUENCE OF UbntIfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "" - ::= { unifiApIf 1 } - -unifiIfEntry OBJECT-TYPE - SYNTAX UbntIfEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Ethernet interface" - INDEX { unifiIfIndex } - ::= { unifiIfTable 1 } - -UbntIfEntry ::= SEQUENCE { - unifiIfIndex ObjectIndex, - unifiIfFullDuplex TruthValue, - unifiIfIp IpAddress, - unifiIfMac MacAddress, - unifiIfName DisplayString, - unifiIfRxBytes Counter32, - unifiIfRxDropped Counter32, - unifiIfRxError Counter32, - unifiIfRxMulticast Counter32, - unifiIfRxPackets Counter32, - unifiIfSpeed Integer32, - unifiIfTxBytes Counter32, - unifiIfTxDropped Counter32, - unifiIfTxError Counter32, - unifiIfTxPackets Counter32, - unifiIfUp TruthValue -} - -unifiIfIndex OBJECT-TYPE - SYNTAX ObjectIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 1 } - -unifiIfFullDuplex OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 2 } - -unifiIfIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 3 } - -unifiIfMac OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 4 } - -unifiIfName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 5 } - -unifiIfRxBytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 6 } - -unifiIfRxDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 7 } - -unifiIfRxError OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 8 } - -unifiIfRxMulticast OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 9 } - -unifiIfRxPackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 10 } - -unifiIfSpeed OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 11 } - -unifiIfTxBytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 12 } - -unifiIfTxDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 13 } - -unifiIfTxError OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 14 } - -unifiIfTxPackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 15 } - -unifiIfUp OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiIfEntry 16 } - -unifiRadioTable OBJECT-TYPE - SYNTAX SEQUENCE OF UbntRadioEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "" - ::= { unifiApWireless 1 } - -unifiRadioEntry OBJECT-TYPE - SYNTAX UbntRadioEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "Wireless interface" - INDEX { unifiRadioIndex } - ::= { unifiRadioTable 1 } - -UbntRadioEntry ::= SEQUENCE { - unifiRadioIndex ObjectIndex, - unifiRadioName DisplayString, - unifiRadioRadio DisplayString, - unifiRadioRxPackets Counter32, - unifiRadioTxPackets Counter32, - unifiRadioCuTotal Integer32, - unifiRadioCuSelfRx Integer32, - unifiRadioCuSelfTx Integer32, - unifiRadioOtherBss Integer32 -} - -unifiRadioIndex OBJECT-TYPE - SYNTAX ObjectIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 1 } - -unifiRadioName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 2 } - -unifiRadioRadio OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 3 } - -unifiRadioRxPackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 4 } - -unifiRadioTxPackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 5 } - -unifiRadioCuTotal OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 6 } - -unifiRadioCuSelfRx OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 7 } - -unifiRadioCuSelfTx OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 8 } - -unifiRadioOtherBss OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiRadioEntry 9 } - -unifiVapTable OBJECT-TYPE - SYNTAX SEQUENCE OF UbntVapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "" - ::= { unifiApWireless 2 } - -unifiVapEntry OBJECT-TYPE - SYNTAX UbntVapEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "BSS" - INDEX { unifiVapIndex } - ::= { unifiVapTable 1 } - -UbntVapEntry ::= SEQUENCE { - unifiVapIndex ObjectIndex, - unifiVapBssId MacAddress, - unifiVapCcq Integer32, - unifiVapChannel Integer32, - unifiVapExtChannel Integer32, - unifiVapEssId DisplayString, - unifiVapName DisplayString, - unifiVapNumStations Integer32, - unifiVapRadio DisplayString, - unifiVapRxBytes Counter32, - unifiVapRxCrypts Counter32, - unifiVapRxDropped Counter32, - unifiVapRxErrors Counter32, - unifiVapRxFrags Counter32, - unifiVapRxPackets Counter32, - unifiVapTxBytes Counter32, - unifiVapTxDropped Counter32, - unifiVapTxErrors Counter32, - unifiVapTxPackets Counter32, - unifiVapTxRetries Counter32, - unifiVapTxPower Integer32, - unifiVapUp TruthValue, - unifiVapUsage DisplayString -} - -unifiVapIndex OBJECT-TYPE - SYNTAX ObjectIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 1 } - -unifiVapBssId OBJECT-TYPE - SYNTAX MacAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 2 } - -unifiVapCcq OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 3 } - -unifiVapChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 4 } - -unifiVapExtChannel OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 5 } - -unifiVapEssId OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 6 } - -unifiVapName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 7 } - -unifiVapNumStations OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 8 } - -unifiVapRadio OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 9 } - -unifiVapRxBytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 10 } - -unifiVapRxCrypts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 11 } - -unifiVapRxDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 12 } - -unifiVapRxErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 13 } - -unifiVapRxFrags OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 14 } - -unifiVapRxPackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 15 } - -unifiVapTxBytes OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 16 } - -unifiVapTxDropped OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 17 } - -unifiVapTxErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 18 } - -unifiVapTxPackets OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 19 } - -unifiVapTxRetries OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 20 } - -unifiVapTxPower OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 21 } - -unifiVapUp OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiVapEntry 22 } - -unifiVapUsage OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "guest or regular user" - ::= { unifiVapEntry 23 } - -unifiApSystemIp OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiApSystem 1 } - -unifiApSystemIsolated OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiApSystem 2 } - -unifiApSystemModel OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiApSystem 3 } - -unifiApSystemUplink OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiApSystem 4 } - -unifiApSystemUptime OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiApSystem 5 } - -unifiApSystemVersion OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { unifiApSystem 6 } - -unifiIfGroup OBJECT-GROUP OBJECTS { - unifiIfFullDuplex, - unifiIfIp, - unifiIfMac, - unifiIfName, - unifiIfRxBytes, - unifiIfRxDropped, - unifiIfRxError, - unifiIfRxMulticast, - unifiIfRxPackets, - unifiIfSpeed, - unifiIfTxBytes, - unifiIfTxDropped, - unifiIfTxError, - unifiIfTxPackets, - unifiIfUp - } - STATUS current - DESCRIPTION "" - ::= { ubntUniFiGroups 1 } - -unifiRadioGroups OBJECT-GROUP OBJECTS { - unifiRadioName, - unifiRadioRadio, - unifiRadioRxPackets, - unifiRadioTxPackets, - unifiRadioCuTotal, - unifiRadioCuSelfRx, - unifiRadioCuSelfTx, - unifiRadioOtherBss - } - STATUS current - DESCRIPTION "" - ::= { ubntUniFiGroups 2 } - -unifiVapGroups OBJECT-GROUP OBJECTS { - unifiVapBssId, - unifiVapCcq, - unifiVapChannel, - unifiVapExtChannel, - unifiVapEssId, - unifiVapName, - unifiVapNumStations, - unifiVapRadio, - unifiVapRxBytes, - unifiVapRxCrypts, - unifiVapRxDropped, - unifiVapRxErrors, - unifiVapRxFrags, - unifiVapRxPackets, - unifiVapTxBytes, - unifiVapTxDropped, - unifiVapTxErrors, - unifiVapTxPackets, - unifiVapTxRetries, - unifiVapTxPower, - unifiVapUp, - unifiVapUsage - } - STATUS current - DESCRIPTION "" - ::= { ubntUniFiGroups 3 } - -unifiApSystemGroup OBJECT-GROUP OBJECTS { - unifiApSystemIp, unifiApSystemIsolated, unifiApSystemModel, unifiApSystemUplink, unifiApSystemUptime, unifiApSystemVersion - } - STATUS current - DESCRIPTION "" - ::= { ubntUniFiGroups 4 } - -END \ No newline at end of file diff --git a/mibs/orig/UCD-DISKIO-MIB b/mibs/orig/UCD-DISKIO-MIB deleted file mode 100644 index ba9e4db..0000000 --- a/mibs/orig/UCD-DISKIO-MIB +++ /dev/null @@ -1,171 +0,0 @@ -UCD-DISKIO-MIB DEFINITIONS ::= BEGIN - --- --- Derived from the original VEST-INTERNETT-MIB. Open issues: --- --- (a) where to register this MIB? --- (b) use not-accessible for diskIOIndex? --- - - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Counter64 - FROM SNMPv2-SMI - DisplayString - FROM SNMPv2-TC - ucdExperimental - FROM UCD-SNMP-MIB; - -ucdDiskIOMIB MODULE-IDENTITY - LAST-UPDATED "200504200000Z" - ORGANIZATION "University of California, Davis" - CONTACT-INFO - "This mib is no longer being maintained by the University of - California and is now in life-support-mode and being - maintained by the net-snmp project. The best place to write - for public questions about the net-snmp-coders mailing list - at net-snmp-coders@lists.sourceforge.net. - - postal: Wes Hardaker - P.O. Box 382 - Davis CA 95617 - - email: net-snmp-coders@lists.sourceforge.net - " - DESCRIPTION - "This MIB module defines objects for disk IO statistics." - - REVISION "200504200000Z" - DESCRIPTION - "Add 64 bit counters. Patch from Dan Nelson." - - REVISION "200202130000Z" - DESCRIPTION - "Add 1, 5 and 15-minute load average objects" - - REVISION "200001260000Z" - DESCRIPTION - "SMIv2 version derived from older definitions contained - in the VEST-INTERNETT-MIB module." - ::= { ucdExperimental 15 } - -diskIOTable OBJECT-TYPE - SYNTAX SEQUENCE OF DiskIOEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of IO devices and how much data they have read/written." - ::= { ucdDiskIOMIB 1 } - -diskIOEntry OBJECT-TYPE - SYNTAX DiskIOEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a device and its statistics." - INDEX { diskIOIndex } - ::= { diskIOTable 1 } - -DiskIOEntry ::= SEQUENCE { - diskIOIndex Integer32, - diskIODevice DisplayString, - diskIONRead Counter32, - diskIONWritten Counter32, - diskIOReads Counter32, - diskIOWrites Counter32, - diskIOLA1 Integer32, - diskIOLA5 Integer32, - diskIOLA15 Integer32, - diskIONReadX Counter64, - diskIONWrittenX Counter64 -} - -diskIOIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reference index for each observed device." - ::= { diskIOEntry 1 } - -diskIODevice OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the device we are counting/checking." - ::= { diskIOEntry 2 } - -diskIONRead OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes read from this device since boot." - ::= { diskIOEntry 3 } - -diskIONWritten OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes written to this device since boot." - ::= { diskIOEntry 4 } - -diskIOReads OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of read accesses from this device since boot." - ::= { diskIOEntry 5 } - -diskIOWrites OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of write accesses to this device since boot." - ::= { diskIOEntry 6 } - -diskIOLA1 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 1 minute average load of disk (%)" - ::= { diskIOEntry 9 } - -diskIOLA5 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 5 minute average load of disk (%)" - ::= { diskIOEntry 10 } - -diskIOLA15 OBJECT-TYPE - SYNTAX Integer32 (0..100) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 15 minute average load of disk (%)" - ::= { diskIOEntry 11 } - -diskIONReadX OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes read from this device since boot." - ::= { diskIOEntry 12 } - -diskIONWrittenX OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of bytes written to this device since boot." - ::= { diskIOEntry 13 } - -END diff --git a/mibs/orig/UCD-SNMP-MIB b/mibs/orig/UCD-SNMP-MIB deleted file mode 100644 index e8acc8c..0000000 --- a/mibs/orig/UCD-SNMP-MIB +++ /dev/null @@ -1,1788 +0,0 @@ -UCD-SNMP-MIB DEFINITIONS ::= BEGIN - --- Design notes: --- --- The design of this mib may seem unusual in parts, as it was --- designed for ease of numerical management routines. --- --- In that light, most sub-sections of this mib have four common --- numerical oid consistencies: --- --- 2021.ID.1 : an integer index value. In scalers, this is always --- of value 1. In tables it is a row index. --- 2021.ID.2 : a name of the script, process, etc. that this row represents. --- 2021.ID.100 : An error flag indicating if an error is present on --- that row (a threshold value was crossed, etc). --- 2021.ID.101 : An error string describing why the error flag is non-0. --- --- These conventions enable managers to easy examine portions of the --- mib by setting the ID to the sub-section they are interested in --- monitoring, and then scanning the .100 value to check for an --- error(s), and get a more specific error message from .101 for the --- named check found in .2. --- --- Row numbers between 2 and 100 are sub-section specific. --- --- Mib sections utilizing the above conventions: --- Tables: procTable, execTable, diskTable, loadTable --- Scalers: memory, snmperrs - - -IMPORTS - OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, - Integer32, Opaque, enterprises, Counter32, Unsigned32 - FROM SNMPv2-SMI - - TEXTUAL-CONVENTION, DisplayString, TruthValue - FROM SNMPv2-TC; - -ucdavis MODULE-IDENTITY - LAST-UPDATED "201407310000Z" - ORGANIZATION "University of California, Davis" - CONTACT-INFO - "This mib is no longer being maintained by the University of - California and is now in life-support-mode and being - maintained by the net-snmp project. The best place to write - for public questions about the net-snmp-coders mailing list - at net-snmp-coders@lists.sourceforge.net. - - postal: Wes Hardaker - P.O. Box 382 - Davis CA 95617 - - email: net-snmp-coders@lists.sourceforge.net - " - DESCRIPTION - "This file defines the private UCD SNMP MIB extensions." - - REVISION "201407310000Z" - DESCRIPTION - "New object for number of CPUs as counted by the agent" - REVISION "201105140000Z" - DESCRIPTION - "New objects for monitoring CPU Steal, Guest and Nice values" - - REVISION "200901190000Z" - DESCRIPTION - "New 64-bit objects for monitoring large disk usage" - - REVISION "200611220000Z" - DESCRIPTION - "Clarify behaviour of objects in the memory & systemStats groups - (including updated versions of malnamed mem*Text objects). - Define suitable TCs to describe error reporting/fix behaviour." - - REVISION "200404070000Z" - DESCRIPTION - "Added ssCpuRawSoftIRQ for Linux (2.6) and forgotten raw swap counters." - - REVISION "200209050000Z" - DESCRIPTION - "Deprecate the non-raw objects." - - REVISION "200109200000Z" - DESCRIPTION - "Group to monitor log files" - - REVISION "200101170000Z" - DESCRIPTION - "Added raw CPU and IO counters." - - REVISION "9912090000Z" - DESCRIPTION - "SMIv2 version converted from older MIB definitions." - ::= { enterprises 2021 } - --- Current UCD core mib table entries: --- prTable OBJECT IDENTIFIER ::= { ucdavis 2 } --- memory OBJECT IDENTIFIER ::= { ucdavis 4 } --- extTable OBJECT IDENTIFIER ::= { ucdavis 8 } --- diskTable OBJECT IDENTIFIER ::= { ucdavis 9 } --- loadTable OBJECT IDENTIFIER ::= { ucdavis 10 } --- systemStats OBJECT IDENTIFIER ::= { ucdavis 11 } --- ucdDemoMIB OBJECT IDENTIFIER ::= { ucdavis 14 } - UCD-DEMO-MIB --- fileTable OBJECT IDENTIFIER ::= { ucdavis 15 } --- logMatch OBJECT IDENTIFIER ::= { ucdavis 16 } --- version OBJECT IDENTIFIER ::= { ucdavis 100 } --- snmperrs OBJECT IDENTIFIER ::= { ucdavis 101 } --- mibRegistryTable OBJECT IDENTIFIER ::= { ucdavis 102 } - --- Older mib table entries that were changed to new locations above: --- processes OBJECT IDENTIFIER ::= { ucdavis 1 } --- exec OBJECT IDENTIFIER ::= { ucdavis 3 } --- disk OBJECT IDENTIFIER ::= { ucdavis 6 } --- load OBJECT IDENTIFIER ::= { ucdavis 7 } - --- Never implemented and removed from the mib: --- lockd OBJECT IDENTIFIER ::= { ucdavis 5 } - --- Branches for registering other UCD MIB modules: -ucdInternal OBJECT IDENTIFIER ::= { ucdavis 12 } -ucdExperimental OBJECT IDENTIFIER ::= { ucdavis 13 } - --- OID values assigned in the ucdExperimental branch: --- ucdIpFwAccMIB OBJECT IDENTIFIER ::= { ucdExperimental 1 } - UCD-IPFWACC-MIB --- ucdIpFilter OBJECT IDENTIFIER ::= { ucdExperimental 2 } - UCD-IPFILTER-MIB --- wavelan OBJECT IDENTIFIER ::= { ucdExperimental 3 } - WL-MIB --- ucdDlmodMIB OBJECT IDENTIFIER ::= { ucdExperimental 14 } - UCD-DLMOD-MIB --- ucdDiskIOMIB OBJECT IDENTIFIER ::= { ucdExperimental 15 } - UCD-DISKIO-MIB --- lmSensors OBJECT IDENTIFIER ::= { ucdExperimental 16 } - LM-SENSORS-MIB - - --- These are the old returned values of the agent type. --- originally returned to: .iso.org.dod.internet.mgmt.mib-2.system.sysObjectID.0 --- Current versions of the agent return an equivalent OID from the netSnmpAgentOIDs --- tree (defined in NET-SNMP-TC), which includes values for some additional O/Ss - -ucdSnmpAgent OBJECT IDENTIFIER ::= { ucdavis 250 } -hpux9 OBJECT IDENTIFIER ::= { ucdSnmpAgent 1 } -sunos4 OBJECT IDENTIFIER ::= { ucdSnmpAgent 2 } -solaris OBJECT IDENTIFIER ::= { ucdSnmpAgent 3 } -osf OBJECT IDENTIFIER ::= { ucdSnmpAgent 4 } -ultrix OBJECT IDENTIFIER ::= { ucdSnmpAgent 5 } -hpux10 OBJECT IDENTIFIER ::= { ucdSnmpAgent 6 } -netbsd1 OBJECT IDENTIFIER ::= { ucdSnmpAgent 7 } -freebsd OBJECT IDENTIFIER ::= { ucdSnmpAgent 8 } -irix OBJECT IDENTIFIER ::= { ucdSnmpAgent 9 } -linux OBJECT IDENTIFIER ::= { ucdSnmpAgent 10 } -bsdi OBJECT IDENTIFIER ::= { ucdSnmpAgent 11 } -openbsd OBJECT IDENTIFIER ::= { ucdSnmpAgent 12 } -win32 OBJECT IDENTIFIER ::= { ucdSnmpAgent 13 } -- unlucky -hpux11 OBJECT IDENTIFIER ::= { ucdSnmpAgent 14 } -aix OBJECT IDENTIFIER ::= { ucdSnmpAgent 15 } -macosx OBJECT IDENTIFIER ::= { ucdSnmpAgent 16 } -dragonfly OBJECT IDENTIFIER ::= { ucdSnmpAgent 17 } -unknown OBJECT IDENTIFIER ::= { ucdSnmpAgent 255 } - - --- --- Define the Float Textual Convention --- This definition was written by David Perkins. --- - -Float ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A single precision floating-point number. The semantics - and encoding are identical for type 'single' defined in - IEEE Standard for Binary Floating-Point, - ANSI/IEEE Std 754-1985. - The value is restricted to the BER serialization of - the following ASN.1 type: - FLOATTYPE ::= [120] IMPLICIT FloatType - (note: the value 120 is the sum of '30'h and '48'h) - The BER serialization of the length for values of - this type must use the definite length, short - encoding form. - - For example, the BER serialization of value 123 - of type FLOATTYPE is '9f780442f60000'h. (The tag - is '9f78'h; the length is '04'h; and the value is - '42f60000'h.) The BER serialization of value - '9f780442f60000'h of data type Opaque is - '44079f780442f60000'h. (The tag is '44'h; the length - is '07'h; and the value is '9f780442f60000'h." - SYNTAX Opaque (SIZE (7)) - -UCDErrorFlag ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a possible error condition" - SYNTAX INTEGER { noError(0), error(1) } - -UCDErrorFix ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a 'push-button' object, to invoke a suitable - configured action. Will always return 0 when read." - SYNTAX INTEGER { noError(0), runFix(1) } - --- --- Process table checks --- - -prTable OBJECT-TYPE - SYNTAX SEQUENCE OF PrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table containing information on running - programs/daemons configured for monitoring in the - snmpd.conf file of the agent. Processes violating the - number of running processes required by the agent's - configuration file are flagged with numerical and - textual errors." - ::= { ucdavis 2 } - -prEntry OBJECT-TYPE - SYNTAX PrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a process and its statistics." - INDEX { prIndex } - ::= { prTable 1 } - -PrEntry ::= SEQUENCE { - prIndex Integer32, - prNames DisplayString, - prMin Integer32, - prMax Integer32, - prCount Integer32, - prErrorFlag UCDErrorFlag, - prErrMessage DisplayString, - prErrFix UCDErrorFix, - prErrFixCmd DisplayString -} - -prIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reference Index for each observed process." - ::= { prEntry 1 } - -prNames OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The process name we're counting/checking on." - ::= { prEntry 2 } - -prMin OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum number of processes that should be - running. An error flag is generated if the number of - running processes is < the minimum." - ::= { prEntry 3 } - -prMax OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of processes that should be - running. An error flag is generated if the number of - running processes is > the maximum." - ::= { prEntry 4 } - -prCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of current processes running with the name - in question." - ::= { prEntry 5 } - -prErrorFlag OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A Error flag to indicate trouble with a process. It - goes to 1 if there is an error, 0 if no error." - ::= { prEntry 100 } - -prErrMessage OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An error message describing the problem (if one exists)." - ::= { prEntry 101 } - -prErrFix OBJECT-TYPE - SYNTAX UCDErrorFix - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this to one will try to fix the problem if - the agent has been configured with a script to call - to attempt to fix problems automatically using remote - snmp operations." - ::= { prEntry 102 } - -prErrFixCmd OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The command that gets run when the prErrFix column is - set to 1." - ::= { prEntry 103 } - - - -extTable OBJECT-TYPE - SYNTAX SEQUENCE OF ExtEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of extensible commands returning output and - result codes. These commands are configured via the - agent's snmpd.conf file." - ::= { ucdavis 8 } - -extEntry OBJECT-TYPE - SYNTAX ExtEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing an extensible script/program and its output." - INDEX { extIndex } - ::= { extTable 1 } - -ExtEntry ::= SEQUENCE { - extIndex Integer32, - extNames DisplayString, - extCommand DisplayString, - extResult Integer32, - extOutput DisplayString, - extErrFix UCDErrorFix, - extErrFixCmd DisplayString -} - -extIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reference Index for extensible scripts. Simply an - integer row number." - ::= { extEntry 1 } - -extNames OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A Short, one name description of the extensible command." - ::= { extEntry 2 } - -extCommand OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The command line to be executed." - ::= { extEntry 3 } - -extResult OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The result code (exit status) from the executed command." - ::= { extEntry 100 } - -extOutput OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The first line of output of the executed command." - ::= { extEntry 101 } - -extErrFix OBJECT-TYPE - SYNTAX UCDErrorFix - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this to one will try to fix the problem if - the agent has been configured with a script to call - to attempt to fix problems automatically using remote - snmp operations." - ::= { extEntry 102 } - -extErrFixCmd OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The command that gets run when the extErrFix column is - set to 1." - ::= { extEntry 103 } - --- --- Memory usage/watch reporting. --- Not supported on all systems! --- See agent/mibgroup/ucd_snmp.h to see if its loaded for your architecture. --- -memory OBJECT IDENTIFIER ::= { ucdavis 4 } - -memIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bogus Index. This should always return the integer 0." - ::= { memory 1 } - -memErrorName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bogus Name. This should always return the string 'swap'." - ::= { memory 2 } - -memTotalSwap OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of swap space configured for this host." - ::= { memory 3 } - -memAvailSwap OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of swap space currently unused or available." - ::= { memory 4 } - -memTotalReal OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of real/physical memory installed - on this host." - ::= { memory 5 } - -memAvailReal OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of real/physical memory currently unused - or available." - ::= { memory 6 } - -memTotalSwapTXT OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of swap space or virtual memory allocated - for text pages on this host. - - This object will not be implemented on hosts where the - underlying operating system does not distinguish text - pages from other uses of swap space or virtual memory." - ::= { memory 7 } - -memAvailSwapTXT OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The amount of swap space or virtual memory currently - being used by text pages on this host. - - This object will not be implemented on hosts where the - underlying operating system does not distinguish text - pages from other uses of swap space or virtual memory. - - Note that (despite the name), this value reports the - amount used, rather than the amount free or available - for use. For clarity, this object is being deprecated - in favour of 'memUsedSwapTXT(16)." - ::= { memory 8 } - -memTotalRealTXT OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of real/physical memory allocated - for text pages on this host. - - This object will not be implemented on hosts where the - underlying operating system does not distinguish text - pages from other uses of physical memory." - ::= { memory 9 } - -memAvailRealTXT OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The amount of real/physical memory currently being - used by text pages on this host. - - This object will not be implemented on hosts where the - underlying operating system does not distinguish text - pages from other uses of physical memory. - - Note that (despite the name), this value reports the - amount used, rather than the amount free or available - for use. For clarity, this object is being deprecated - in favour of 'memUsedRealTXT(17)." - ::= { memory 10 } - -memTotalFree OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of memory free or available for use on - this host. This value typically covers both real memory - and swap space or virtual memory." - ::= { memory 11 } - -memMinimumSwap OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The minimum amount of swap space expected to be kept - free or available during normal operation of this host. - - If this value (as reported by 'memAvailSwap(4)') falls - below the specified level, then 'memSwapError(100)' will - be set to 1 and an error message made available via - 'memSwapErrorMsg(101)'." - ::= { memory 12 } - -memShared OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of real or virtual memory currently - allocated for use as shared memory. - - This object will not be implemented on hosts where the - underlying operating system does not explicitly identify - memory as specifically reserved for this purpose." - ::= { memory 13 } - -memBuffer OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of real or virtual memory currently - allocated for use as memory buffers. - - This object will not be implemented on hosts where the - underlying operating system does not explicitly identify - memory as specifically reserved for this purpose." - ::= { memory 14 } - -memCached OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total amount of real or virtual memory currently - allocated for use as cached memory. - - This object will not be implemented on hosts where the - underlying operating system does not explicitly identify - memory as specifically reserved for this purpose." - ::= { memory 15 } - -memUsedSwapTXT OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of swap space or virtual memory currently - being used by text pages on this host. - - This object will not be implemented on hosts where the - underlying operating system does not distinguish text - pages from other uses of swap space or virtual memory." - ::= { memory 16 } - -memUsedRealTXT OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The amount of real/physical memory currently being - used by text pages on this host. - - This object will not be implemented on hosts where the - underlying operating system does not distinguish text - pages from other uses of physical memory." - ::= { memory 17 } - -memSwapError OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates whether the amount of available swap space - (as reported by 'memAvailSwap(4)'), is less than the - desired minimum (specified by 'memMinimumSwap(12)')." - ::= { memory 100 } - -memSwapErrorMsg OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Describes whether the amount of available swap space - (as reported by 'memAvailSwap(4)'), is less than the - desired minimum (specified by 'memMinimumSwap(12)')." - ::= { memory 101 } - - -dskTable OBJECT-TYPE - SYNTAX SEQUENCE OF DskEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Disk watching information. Partions to be watched - are configured by the snmpd.conf file of the agent." - ::= { ucdavis 9 } - -dskEntry OBJECT-TYPE - SYNTAX DskEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a disk and its statistics." - INDEX { dskIndex } - ::= { dskTable 1 } - -DskEntry ::= SEQUENCE { - dskIndex Integer32, - dskPath DisplayString, - dskDevice DisplayString, - dskMinimum Integer32, - dskMinPercent Integer32, - dskTotal Integer32, - dskAvail Integer32, - dskUsed Integer32, - dskPercent Integer32, - dskPercentNode Integer32, - dskErrorFlag UCDErrorFlag, - dskErrorMsg DisplayString, - dskTotalLow Unsigned32, - dskTotalHigh Unsigned32, - dskAvailLow Unsigned32, - dskAvailHigh Unsigned32, - dskUsedLow Unsigned32, - dskUsedHigh Unsigned32 -} - -dskIndex OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Integer reference number (row number) for the disk mib." - ::= { dskEntry 1 } - -dskPath OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Path where the disk is mounted." - ::= { dskEntry 2 } - -dskDevice OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Path of the device for the partition" - ::= { dskEntry 3 } - -dskMinimum OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Minimum space required on the disk (in kBytes) before the - errors are triggered. Either this or dskMinPercent is - configured via the agent's snmpd.conf file." - ::= { dskEntry 4 } - -dskMinPercent OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of minimum space required on the disk before the - errors are triggered. Either this or dskMinimum is - configured via the agent's snmpd.conf file." - ::= { dskEntry 5 } - -dskTotal OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total size of the disk/partion (kBytes). - For large disks (>2Tb), this value will - latch at INT32_MAX (2147483647)." - ::= { dskEntry 6 } - -dskAvail OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Available space on the disk. - For large lightly-used disks (>2Tb), this - value will latch at INT32_MAX (2147483647)." - ::= { dskEntry 7 } - -dskUsed OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Used space on the disk. - For large heavily-used disks (>2Tb), this - value will latch at INT32_MAX (2147483647)." - ::= { dskEntry 8 } - -dskPercent OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of space used on disk" - ::= { dskEntry 9 } - -dskPercentNode OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Percentage of inodes used on disk" - ::= { dskEntry 10 } - -dskTotalLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total size of the disk/partion (kBytes). - Together with dskTotalHigh composes 64-bit number." - ::= { dskEntry 11 } - -dskTotalHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Total size of the disk/partion (kBytes). - Together with dskTotalLow composes 64-bit number." - ::= { dskEntry 12 } - -dskAvailLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Available space on the disk (kBytes). - Together with dskAvailHigh composes 64-bit number." - ::= { dskEntry 13 } - -dskAvailHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Available space on the disk (kBytes). - Together with dskAvailLow composes 64-bit number." - ::= { dskEntry 14 } - -dskUsedLow OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Used space on the disk (kBytes). - Together with dskUsedHigh composes 64-bit number." - ::= { dskEntry 15 } - -dskUsedHigh OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Used space on the disk (kBytes). - Together with dskUsedLow composes 64-bit number." - ::= { dskEntry 16 } - -dskErrorFlag OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Error flag signaling that the disk or partition is under - the minimum required space configured for it." - ::= { dskEntry 100 } - -dskErrorMsg OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A text description providing a warning and the space left - on the disk." - ::= { dskEntry 101 } - -laTable OBJECT-TYPE - SYNTAX SEQUENCE OF LaEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Load average information." - ::= { ucdavis 10 } - -laEntry OBJECT-TYPE - SYNTAX LaEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a load average and its values." - INDEX { laIndex } - ::= { laTable 1 } - -LaEntry ::= SEQUENCE { - laIndex Integer32, - laNames DisplayString, - laLoad DisplayString, - laConfig DisplayString, - laLoadInt Integer32, - laLoadFloat Float, - laErrorFlag UCDErrorFlag, - laErrMessage DisplayString -} - -laIndex OBJECT-TYPE - SYNTAX Integer32 (0..3) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "reference index/row number for each observed loadave." - ::= { laEntry 1 } - -laNames OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The list of loadave names we're watching." - ::= { laEntry 2 } - -laLoad OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 1,5 and 15 minute load averages (one per row)." - ::= { laEntry 3 } - -laConfig OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The watch point for load-averages to signal an - error. If the load averages rises above this value, - the laErrorFlag below is set." - ::= { laEntry 4 } - -laLoadInt OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 1,5 and 15 minute load averages as an integer. - This is computed by taking the floating point - loadaverage value and multiplying by 100, then - converting the value to an integer." - ::= { laEntry 5 } - -laLoadFloat OBJECT-TYPE - SYNTAX Float - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The 1,5 and 15 minute load averages as an opaquely - wrapped floating point number." - ::= { laEntry 6 } - -laErrorFlag OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A Error flag to indicate the load-average has crossed - its threshold value defined in the snmpd.conf file. - It is set to 1 if the threshold is crossed, 0 otherwise." - ::= { laEntry 100 } - -laErrMessage OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An error message describing the load-average and its - surpased watch-point value." - ::= { laEntry 101 } - - -version OBJECT IDENTIFIER ::= { ucdavis 100 } - -versionIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Index to mib (always 0)" - ::= { version 1 } - -versionTag OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "CVS tag keyword" - ::= { version 2 } - -versionDate OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Date string from RCS keyword" - ::= { version 3 } - -versionCDate OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Date string from ctime() " - ::= { version 4 } - -versionIdent OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Id string from RCS keyword" - ::= { version 5 } - -versionConfigureOptions OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Options passed to the configure script when this agent was built." - ::= { version 6 } - -versionClearCache OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Set to 1 to clear the exec cache, if enabled" - ::= { version 10 } - -versionUpdateConfig OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Set to 1 to read-read the config file(s)." - ::= { version 11 } - -versionRestartAgent OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Set to 1 to restart the agent." - ::= { version 12 } - -versionSavePersistentData OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Set to 1 to force the agent to save it's persistent data immediately." - ::= { version 13 } - -versionDoDebugging OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Set to 1 to turn debugging statements on in the agent or 0 - to turn it off." - ::= { version 20 } - - -snmperrs OBJECT IDENTIFIER ::= { ucdavis 101 } - -snmperrIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bogus Index for snmperrs (always 0)." - ::= { snmperrs 1 } - -snmperrNames OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "snmp" - ::= { snmperrs 2 } - -snmperrErrorFlag OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A Error flag to indicate trouble with the agent. It - goes to 1 if there is an error, 0 if no error." - ::= { snmperrs 100 } - -snmperrErrMessage OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An error message describing the problem (if one exists)." - ::= { snmperrs 101 } - - -mrTable OBJECT-TYPE - SYNTAX SEQUENCE OF MrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table displaying all the oid's registered by mib modules in - the agent. Since the agent is modular in nature, this lists - each module's OID it is responsible for and the name of the module" - ::= { ucdavis 102 } - -mrEntry OBJECT-TYPE - SYNTAX MrEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "An entry containing a registered mib oid." - INDEX { IMPLIED mrIndex } - ::= { mrTable 1 } - -MrEntry ::= SEQUENCE { - mrIndex OBJECT IDENTIFIER, - mrModuleName DisplayString -} - -mrIndex OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The registry slot of a mibmodule." - ::= { mrEntry 1 } - -mrModuleName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The module name that registered this OID." - ::= { mrEntry 2 } - -systemStats OBJECT IDENTIFIER ::= { ucdavis 11 } - -ssIndex OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bogus Index. This should always return the integer 1." - ::= { systemStats 1 } - -ssErrorName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Bogus Name. This should always return the string 'systemStats'." - ::= { systemStats 2 } - -ssSwapIn OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The average amount of memory swapped in from disk, - calculated over the last minute." - ::= { systemStats 3 } - -ssSwapOut OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The average amount of memory swapped out to disk, - calculated over the last minute." - ::= { systemStats 4 } - -ssIOSent OBJECT-TYPE - SYNTAX Integer32 - UNITS "blocks/s" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The average amount of data written to disk or other - block device, calculated over the last minute. - - This object has been deprecated in favour of - 'ssIORawSent(57)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 5 } - -ssIOReceive OBJECT-TYPE - SYNTAX Integer32 - UNITS "blocks/s" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The average amount of data read from disk or other - block device, calculated over the last minute. - - This object has been deprecated in favour of - 'ssIORawReceived(58)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 6 } - -ssSysInterrupts OBJECT-TYPE - SYNTAX Integer32 - UNITS "interrupts/s" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The average rate of interrupts processed (including - the clock) calculated over the last minute. - - This object has been deprecated in favour of - 'ssRawInterrupts(59)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 7 } - -ssSysContext OBJECT-TYPE - SYNTAX Integer32 - UNITS "switches/s" - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The average rate of context switches, - calculated over the last minute. - - This object has been deprecated in favour of - 'ssRawContext(60)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 8 } - -ssCpuUser OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The percentage of CPU time spent processing - user-level code, calculated over the last minute. - - This object has been deprecated in favour of - 'ssCpuRawUser(50)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 9 } - -ssCpuSystem OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The percentage of CPU time spent processing - system-level code, calculated over the last minute. - - This object has been deprecated in favour of - 'ssCpuRawSystem(52)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 10 } - -ssCpuIdle OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The percentage of processor time spent idle, - calculated over the last minute. - - This object has been deprecated in favour of - 'ssCpuRawIdle(53)', which can be used to calculate - the same metric, but over any desired time period." - ::= { systemStats 11 } - --- The agent only implements those of the following counters that the --- kernel supports! Don't expect all to be present. - -ssCpuRawUser OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - processing user-level code. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 50 } - -ssCpuRawNice OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - processing reduced-priority code. - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 51 } - -ssCpuRawSystem OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - processing system-level code. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors). - - This object may sometimes be implemented as the - combination of the 'ssCpuRawWait(54)' and - 'ssCpuRawKernel(55)' counters, so care must be - taken when summing the overall raw counters." - ::= { systemStats 52 } - -ssCpuRawIdle OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - idle. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 53 } - -ssCpuRawWait OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - waiting for IO. - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. This time may also be - included within the 'ssCpuRawSystem(52)' counter. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 54 } - -ssCpuRawKernel OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - processing kernel-level code. - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. This time may also be - included within the 'ssCpuRawSystem(52)' counter. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 55 } - -ssCpuRawInterrupt OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - processing hardware interrupts. - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 56 } - -ssIORawSent OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of blocks sent to a block device" - ::= { systemStats 57 } - -ssIORawReceived OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of blocks received from a block device" - ::= { systemStats 58 } - -ssRawInterrupts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of interrupts processed" - ::= { systemStats 59 } - -ssRawContexts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of context switches" - ::= { systemStats 60 } - -ssCpuRawSoftIRQ OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - processing software interrupts. - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 61 } - -ssRawSwapIn OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of blocks swapped in" - ::= { systemStats 62 } - -ssRawSwapOut OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Number of blocks swapped out" - ::= { systemStats 63 } - -ssCpuRawSteal OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - by the hypervisor code to run other VMs even - though the CPU in the current VM had something runnable. - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 64 } - -ssCpuRawGuest OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - by the CPU to run a virtual CPU (guest). - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 65 } - -ssCpuRawGuestNice OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of 'ticks' (typically 1/100s) spent - by the CPU to run a niced virtual CPU (guest). - - This object will not be implemented on hosts where - the underlying operating system does not measure - this particular CPU metric. - - On a multi-processor system, the 'ssCpuRaw*' - counters are cumulative over all CPUs, so their - sum will typically be N*100 (for N processors)." - ::= { systemStats 66 } - -ssCpuNumCpus OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of processors, as counted by the agent. - This object's value may be useful in the management - of certain operating systems where notions such as - load average do not take into account the number of - processors in the system. - - For other objects in the systemStats group whose - descriptions refer to 'N processors', this object's - value is N." - ::= { systemStats 67 } - - --- possibly used in the future: --- --- ssErrorFlag OBJECT-TYPE --- SYNTAX UCDErrorFlag --- MAX-ACCESS read-only --- STATUS current --- DESCRIPTION --- "Error flag." --- ::= { systemStats 100 } --- --- ssErrMessage OBJECT-TYPE --- SYNTAX DisplayString --- MAX-ACCESS read-only --- STATUS current --- DESCRIPTION --- "Error message describing the errorflag condition." --- ::= { systemStats 101 } - - -ucdTraps OBJECT IDENTIFIER ::= { ucdavis 251 } - -ucdStart NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "This trap could in principle be sent when the agent start" - ::= { ucdTraps 1 } - -ucdShutdown NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "This trap is sent when the agent terminates" - ::= { ucdTraps 2 } - --- --- File Table: monitor a list of files to check for a maximum size. --- - -fileTable OBJECT-TYPE - SYNTAX SEQUENCE OF FileEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of monitored files." - ::= { ucdavis 15 } - -fileEntry OBJECT-TYPE - SYNTAX FileEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entry of file" - INDEX { fileIndex } - ::= { fileTable 1 } - -FileEntry ::= SEQUENCE { - fileIndex Integer32, - fileName DisplayString, - fileSize Integer32, - fileMax Integer32, - fileErrorFlag UCDErrorFlag, - fileErrorMsg DisplayString -} - -fileIndex OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Index of file" - ::= { fileEntry 1 } - -fileName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Filename" - ::= { fileEntry 2 } - -fileSize OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Size of file (kB)" - ::= { fileEntry 3 } - -fileMax OBJECT-TYPE - SYNTAX Integer32 - UNITS "kB" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Limit of filesize (kB)" - ::= { fileEntry 4 } - -fileErrorFlag OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Limit exceeded flag" - ::= { fileEntry 100 } - -fileErrorMsg OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Filesize error message" - ::= { fileEntry 101 } - -logMatch OBJECT IDENTIFIER ::= { ucdavis 16 } - -logMatchMaxEntries OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The maximum number of logmatch entries - this snmpd daemon can support." - ::= { logMatch 1 } - -logMatchTable OBJECT-TYPE - SYNTAX SEQUENCE OF LogMatchEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Table of monitored files." - ::= { logMatch 2 } - -logMatchEntry OBJECT-TYPE - SYNTAX LogMatchEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Entry of file" - INDEX { logMatchIndex } - ::= { logMatchTable 1 } - -LogMatchEntry ::= - SEQUENCE { - logMatchIndex - Integer32, - logMatchName - DisplayString, - logMatchFilename - DisplayString, - logMatchRegEx - DisplayString, - logMatchGlobalCounter - Counter32, - logMatchGlobalCount - Integer32, - logMatchCurrentCounter - Counter32, - logMatchCurrentCount - Integer32, - logMatchCounter - Counter32, - logMatchCount - Integer32, - logMatchCycle - Integer32, - logMatchErrorFlag - UCDErrorFlag, - logMatchRegExCompilation - DisplayString - } - -logMatchIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Index of logmatch" - ::= { logMatchEntry 1 } - -logMatchName OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "logmatch instance name" - ::= { logMatchEntry 2 } - -logMatchFilename OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "filename to be logmatched" - ::= { logMatchEntry 3 } - -logMatchRegEx OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "regular expression" - ::= { logMatchEntry 4 } - -logMatchGlobalCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "global count of matches" - ::= { logMatchEntry 5 } - -logMatchGlobalCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Description." - ::= { logMatchEntry 6 } - -logMatchCurrentCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Regex match counter. This counter will - be reset with each logfile rotation." - ::= { logMatchEntry 7 } - -logMatchCurrentCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Description." - ::= { logMatchEntry 8 } - -logMatchCounter OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Regex match counter. This counter will - be reset with each read" - ::= { logMatchEntry 9 } - -logMatchCount OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Description." - ::= { logMatchEntry 10 } - -logMatchCycle OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "time between updates (if not queried) in seconds" - ::= { logMatchEntry 11 } - -logMatchErrorFlag OBJECT-TYPE - SYNTAX UCDErrorFlag - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "errorflag: is this line configured correctly?" - ::= { logMatchEntry 100 } - -logMatchRegExCompilation OBJECT-TYPE - SYNTAX DisplayString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "message of regex precompilation" - ::= { logMatchEntry 101 } - -END diff --git a/mibs/orig/UDP-MIB b/mibs/orig/UDP-MIB deleted file mode 100644 index 2f8bae4..0000000 --- a/mibs/orig/UDP-MIB +++ /dev/null @@ -1,553 +0,0 @@ - UDP-MIB DEFINITIONS ::= BEGIN - - IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Counter64, - Unsigned32, IpAddress, mib-2 FROM SNMPv2-SMI - MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF - InetAddress, InetAddressType, - InetPortNumber FROM INET-ADDRESS-MIB; - - udpMIB MODULE-IDENTITY - LAST-UPDATED "200505200000Z" -- May 20, 2005 - ORGANIZATION - "IETF IPv6 Working Group - http://www.ietf.org/html.charters/ipv6-charter.html" - CONTACT-INFO - "Bill Fenner (editor) - - AT&T Labs -- Research - 75 Willow Rd. - Menlo Park, CA 94025 - - Phone: +1 650 330-7893 - Email: - - John Flick (editor) - - Hewlett-Packard Company - 8000 Foothills Blvd. M/S 5557 - Roseville, CA 95747 - - Phone: +1 916 785 4018 - Email: - - Send comments to " - - DESCRIPTION - "The MIB module for managing UDP implementations. - Copyright (C) The Internet Society (2005). This - version of this MIB module is part of RFC 4113; - see the RFC itself for full legal notices." - REVISION "200505200000Z" -- May 20, 2005 - DESCRIPTION - "IP version neutral revision, incorporating the - following revisions: - - - Added udpHCInDatagrams and udpHCOutDatagrams in order - to provide high-capacity counters for fast networks. - - Added text to the descriptions of all counter objects - to indicate how discontinuities are detected. - - Deprecated the IPv4-specific udpTable and replaced it - with the version neutral udpEndpointTable. This - table includes support for connected UDP endpoints - and support for identification of the operating - system process associated with a UDP endpoint. - - Deprecated the udpGroup and replaced it with object - groups representing the current set of objects. - - Deprecated udpMIBCompliance and replaced it with - udpMIBCompliance2, which includes the compliance - information for the new object groups. - - This version published as RFC 4113." - REVISION "199411010000Z" -- November 1, 1994 - DESCRIPTION - "Initial SMIv2 version, published as RFC 2013." - REVISION "199103310000Z" -- March 31, 1991 - DESCRIPTION - "The initial revision of this MIB module was part of - MIB-II, published as RFC 1213." - ::= { mib-2 50 } - - -- the UDP group - - udp OBJECT IDENTIFIER ::= { mib-2 7 } - - udpInDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of UDP datagrams delivered to UDP - users. - - Discontinuities in the value of this counter can occur - at re-initialization of the management system, and at - other times as indicated by discontinuities in the - value of sysUpTime." - ::= { udp 1 } - - udpNoPorts OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of received UDP datagrams for which - there was no application at the destination port. - - Discontinuities in the value of this counter can occur - at re-initialization of the management system, and at - other times as indicated by discontinuities in the - value of sysUpTime." - ::= { udp 2 } - - udpInErrors OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of received UDP datagrams that could not be - delivered for reasons other than the lack of an - application at the destination port. - - Discontinuities in the value of this counter can occur - at re-initialization of the management system, and at - other times as indicated by discontinuities in the - value of sysUpTime." - ::= { udp 3 } - - udpOutDatagrams OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of UDP datagrams sent from this - entity. - - Discontinuities in the value of this counter can occur - at re-initialization of the management system, and at - other times as indicated by discontinuities in the - value of sysUpTime." - ::= { udp 4 } - - udpHCInDatagrams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of UDP datagrams delivered to UDP - users, for devices that can receive more than 1 - million UDP datagrams per second. - - Discontinuities in the value of this counter can occur - at re-initialization of the management system, and at - other times as indicated by discontinuities in the - value of sysUpTime." - ::= { udp 8 } - - udpHCOutDatagrams OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The total number of UDP datagrams sent from this - entity, for devices that can transmit more than 1 - million UDP datagrams per second. - - Discontinuities in the value of this counter can occur - at re-initialization of the management system, and at - other times as indicated by discontinuities in the - value of sysUpTime." - ::= { udp 9 } - - -- - -- { udp 6 } was defined as the ipv6UdpTable in RFC2454's - -- IPV6-UDP-MIB. This RFC obsoletes RFC 2454, so { udp 6 } is - -- obsoleted. - -- - - -- The UDP "Endpoint" table. - - udpEndpointTable OBJECT-TYPE - SYNTAX SEQUENCE OF UdpEndpointEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table containing information about this entity's UDP - endpoints on which a local application is currently - accepting or sending datagrams. - - The address type in this table represents the address - type used for the communication, irrespective of the - higher-layer abstraction. For example, an application - using IPv6 'sockets' to communicate via IPv4 between - ::ffff:10.0.0.1 and ::ffff:10.0.0.2 would use - InetAddressType ipv4(1). - - Unlike the udpTable in RFC 2013, this table also allows - the representation of an application that completely - specifies both local and remote addresses and ports. A - listening application is represented in three possible - ways: - - 1) An application that is willing to accept both IPv4 - and IPv6 datagrams is represented by a - udpEndpointLocalAddressType of unknown(0) and a - udpEndpointLocalAddress of ''h (a zero-length - octet-string). - - 2) An application that is willing to accept only IPv4 - or only IPv6 datagrams is represented by a - udpEndpointLocalAddressType of the appropriate - address type and a udpEndpointLocalAddress of - '0.0.0.0' or '::' respectively. - - 3) An application that is listening for datagrams only - for a specific IP address but from any remote - system is represented by a - udpEndpointLocalAddressType of the appropriate - address type, with udpEndpointLocalAddress - specifying the local address. - - In all cases where the remote is a wildcard, the - udpEndpointRemoteAddressType is unknown(0), the - udpEndpointRemoteAddress is ''h (a zero-length - octet-string), and the udpEndpointRemotePort is 0. - - If the operating system is demultiplexing UDP packets - by remote address and port, or if the application has - 'connected' the socket specifying a default remote - address and port, the udpEndpointRemote* values should - be used to reflect this." - ::= { udp 7 } - - udpEndpointEntry OBJECT-TYPE - SYNTAX UdpEndpointEntry - MAX-ACCESS not-accessible - STATUS current - - DESCRIPTION - "Information about a particular current UDP endpoint. - - Implementers need to be aware that if the total number - of elements (octets or sub-identifiers) in - udpEndpointLocalAddress and udpEndpointRemoteAddress - exceeds 111, then OIDs of column instances in this table - will have more than 128 sub-identifiers and cannot be - accessed using SNMPv1, SNMPv2c, or SNMPv3." - INDEX { udpEndpointLocalAddressType, - udpEndpointLocalAddress, - udpEndpointLocalPort, - udpEndpointRemoteAddressType, - udpEndpointRemoteAddress, - udpEndpointRemotePort, - udpEndpointInstance } - ::= { udpEndpointTable 1 } - - UdpEndpointEntry ::= SEQUENCE { - udpEndpointLocalAddressType InetAddressType, - udpEndpointLocalAddress InetAddress, - udpEndpointLocalPort InetPortNumber, - udpEndpointRemoteAddressType InetAddressType, - udpEndpointRemoteAddress InetAddress, - udpEndpointRemotePort InetPortNumber, - udpEndpointInstance Unsigned32, - udpEndpointProcess Unsigned32 - } - - udpEndpointLocalAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type of udpEndpointLocalAddress. Only - IPv4, IPv4z, IPv6, and IPv6z addresses are expected, or - unknown(0) if datagrams for all local IP addresses are - accepted." - ::= { udpEndpointEntry 1 } - - udpEndpointLocalAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The local IP address for this UDP endpoint. - - The value of this object can be represented in three - - possible ways, depending on the characteristics of the - listening application: - - 1. For an application that is willing to accept both - IPv4 and IPv6 datagrams, the value of this object - must be ''h (a zero-length octet-string), with - the value of the corresponding instance of the - udpEndpointLocalAddressType object being unknown(0). - - 2. For an application that is willing to accept only IPv4 - or only IPv6 datagrams, the value of this object - must be '0.0.0.0' or '::', respectively, while the - corresponding instance of the - udpEndpointLocalAddressType object represents the - appropriate address type. - - 3. For an application that is listening for data - destined only to a specific IP address, the value - of this object is the specific IP address for which - this node is receiving packets, with the - corresponding instance of the - udpEndpointLocalAddressType object representing the - appropriate address type. - - As this object is used in the index for the - udpEndpointTable, implementors of this table should be - careful not to create entries that would result in OIDs - with more than 128 subidentifiers; else the information - cannot be accessed using SNMPv1, SNMPv2c, or SNMPv3." - ::= { udpEndpointEntry 2 } - - udpEndpointLocalPort OBJECT-TYPE - SYNTAX InetPortNumber - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The local port number for this UDP endpoint." - ::= { udpEndpointEntry 3 } - - udpEndpointRemoteAddressType OBJECT-TYPE - SYNTAX InetAddressType - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The address type of udpEndpointRemoteAddress. Only - IPv4, IPv4z, IPv6, and IPv6z addresses are expected, or - unknown(0) if datagrams for all remote IP addresses are - accepted. Also, note that some combinations of - - udpEndpointLocalAdressType and - udpEndpointRemoteAddressType are not supported. In - particular, if the value of this object is not - unknown(0), it is expected to always refer to the - same IP version as udpEndpointLocalAddressType." - ::= { udpEndpointEntry 4 } - - udpEndpointRemoteAddress OBJECT-TYPE - SYNTAX InetAddress - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The remote IP address for this UDP endpoint. If - datagrams from any remote system are to be accepted, - this value is ''h (a zero-length octet-string). - Otherwise, it has the type described by - udpEndpointRemoteAddressType and is the address of the - remote system from which datagrams are to be accepted - (or to which all datagrams will be sent). - - As this object is used in the index for the - udpEndpointTable, implementors of this table should be - careful not to create entries that would result in OIDs - with more than 128 subidentifiers; else the information - cannot be accessed using SNMPv1, SNMPv2c, or SNMPv3." - ::= { udpEndpointEntry 5 } - - udpEndpointRemotePort OBJECT-TYPE - SYNTAX InetPortNumber - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The remote port number for this UDP endpoint. If - datagrams from any remote system are to be accepted, - this value is zero." - ::= { udpEndpointEntry 6 } - - udpEndpointInstance OBJECT-TYPE - SYNTAX Unsigned32 (1..'ffffffff'h) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The instance of this tuple. This object is used to - distinguish among multiple processes 'connected' to - the same UDP endpoint. For example, on a system - implementing the BSD sockets interface, this would be - used to support the SO_REUSEADDR and SO_REUSEPORT - socket options." - - ::= { udpEndpointEntry 7 } - - udpEndpointProcess OBJECT-TYPE - SYNTAX Unsigned32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The system's process ID for the process associated with - this endpoint, or zero if there is no such process. - This value is expected to be the same as - HOST-RESOURCES-MIB::hrSWRunIndex or SYSAPPL-MIB:: - sysApplElmtRunIndex for some row in the appropriate - tables." - ::= { udpEndpointEntry 8 } - - -- The deprecated UDP Listener table - - -- The deprecated UDP listener table only contains information - -- about this entity's IPv4 UDP end-points on which a local - -- application is currently accepting datagrams. It does not - -- provide more detailed connection information, or information - -- about IPv6 endpoints. - - udpTable OBJECT-TYPE - SYNTAX SEQUENCE OF UdpEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "A table containing IPv4-specific UDP listener - information. It contains information about all local - IPv4 UDP end-points on which an application is - currently accepting datagrams. This table has been - deprecated in favor of the version neutral - udpEndpointTable." - ::= { udp 5 } - - udpEntry OBJECT-TYPE - SYNTAX UdpEntry - MAX-ACCESS not-accessible - STATUS deprecated - DESCRIPTION - "Information about a particular current UDP listener." - INDEX { udpLocalAddress, udpLocalPort } - ::= { udpTable 1 } - - UdpEntry ::= SEQUENCE { - udpLocalAddress IpAddress, - udpLocalPort Integer32 - - } - - udpLocalAddress OBJECT-TYPE - SYNTAX IpAddress - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The local IP address for this UDP listener. In the - case of a UDP listener that is willing to accept - datagrams for any IP interface associated with the - node, the value 0.0.0.0 is used." - ::= { udpEntry 1 } - - udpLocalPort OBJECT-TYPE - SYNTAX Integer32 (0..65535) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The local port number for this UDP listener." - ::= { udpEntry 2 } - - -- conformance information - - udpMIBConformance OBJECT IDENTIFIER ::= { udpMIB 2 } - udpMIBCompliances OBJECT IDENTIFIER ::= { udpMIBConformance 1 } - udpMIBGroups OBJECT IDENTIFIER ::= { udpMIBConformance 2 } - - -- compliance statements - - udpMIBCompliance2 MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for systems that implement - UDP. - - There are a number of INDEX objects that cannot be - represented in the form of OBJECT clauses in SMIv2, but - for which we have the following compliance - requirements, expressed in OBJECT clause form in this - description clause: - - -- OBJECT udpEndpointLocalAddressType - -- SYNTAX InetAddressType { unknown(0), ipv4(1), - -- ipv6(2), ipv4z(3), - -- ipv6z(4) } - -- DESCRIPTION - -- Support for dns(5) is not required. - -- OBJECT udpEndpointLocalAddress - - -- SYNTAX InetAddress (SIZE(0|4|8|16|20)) - -- DESCRIPTION - -- Support is only required for zero-length - -- octet-strings, and for scoped and unscoped - -- IPv4 and IPv6 addresses. - -- OBJECT udpEndpointRemoteAddressType - -- SYNTAX InetAddressType { unknown(0), ipv4(1), - -- ipv6(2), ipv4z(3), - -- ipv6z(4) } - -- DESCRIPTION - -- Support for dns(5) is not required. - -- OBJECT udpEndpointRemoteAddress - -- SYNTAX InetAddress (SIZE(0|4|8|16|20)) - -- DESCRIPTION - -- Support is only required for zero-length - -- octet-strings, and for scoped and unscoped - -- IPv4 and IPv6 addresses. - " - MODULE -- this module - MANDATORY-GROUPS { udpBaseGroup, udpEndpointGroup } - GROUP udpHCGroup - DESCRIPTION - "This group is mandatory for systems that - are capable of receiving or transmitting more than - 1 million UDP datagrams per second. 1 million - datagrams per second will cause a Counter32 to - wrap in just over an hour." - ::= { udpMIBCompliances 2 } - - udpMIBCompliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for IPv4-only systems that - implement UDP. For IP version independence, this - compliance statement is deprecated in favor of - udpMIBCompliance2. However, agents are still - encouraged to implement these objects in order to - interoperate with the deployed base of managers." - MODULE -- this module - MANDATORY-GROUPS { udpGroup } - ::= { udpMIBCompliances 1 } - - -- units of conformance - - udpGroup OBJECT-GROUP - OBJECTS { udpInDatagrams, udpNoPorts, - udpInErrors, udpOutDatagrams, - udpLocalAddress, udpLocalPort } - - STATUS deprecated - DESCRIPTION - "The deprecated group of objects providing for - management of UDP over IPv4." - ::= { udpMIBGroups 1 } - - udpBaseGroup OBJECT-GROUP - OBJECTS { udpInDatagrams, udpNoPorts, udpInErrors, - udpOutDatagrams } - STATUS current - DESCRIPTION - "The group of objects providing for counters of UDP - statistics." - ::= { udpMIBGroups 2 } - - udpHCGroup OBJECT-GROUP - OBJECTS { udpHCInDatagrams, udpHCOutDatagrams } - STATUS current - DESCRIPTION - "The group of objects providing for counters of high - speed UDP implementations." - ::= { udpMIBGroups 3 } - - udpEndpointGroup OBJECT-GROUP - OBJECTS { udpEndpointProcess } - STATUS current - DESCRIPTION - "The group of objects providing for the IP version - independent management of UDP 'endpoints'." - ::= { udpMIBGroups 4 } - - END diff --git a/mibs/orig/XG-FIREWALL-MIB b/mibs/orig/XG-FIREWALL-MIB deleted file mode 100644 index 7fa5b73..0000000 --- a/mibs/orig/XG-FIREWALL-MIB +++ /dev/null @@ -1,655 +0,0 @@ --- ***************************************************************** --- SOPHOS-XG-MIB --- --- Copyright (c) 2015 by Sophos PLC. --- All rights reserved. --- ***************************************************************** - - -XG-FIREWALL-MIB DEFINITIONS ::= BEGIN - -IMPORTS - IpAddress, - MODULE-IDENTITY, - OBJECT-TYPE, - NOTIFICATION-TYPE, - snmpModules, - OBJECT-IDENTITY, - enterprises, - Gauge32, - Counter32, - Counter64, - Integer32 - FROM SNMPv2-SMI - DisplayString, - TEXTUAL-CONVENTION, - TruthValue, - DateAndTime - FROM SNMPv2-TC; - - -sophos MODULE-IDENTITY - LAST-UPDATED "201703200000Z" - ORGANIZATION "Sophos PLC" - CONTACT-INFO - " - Sophos Ltd - The Pentagon - Abingdon Science Park - Abingdon OX14 3YP - United Kingdom - - Phone: +44 (0)1235 559933 - Website: http://www.sophos.com - E-mail: sales@sophos.com - " - DESCRIPTION - " - This MIB module defines MIB objects which provide - mechanisms to remotely configure the parameters used - by XG-Firewall Agent for the generation of SNMP messages. - " - ::= { enterprises 21067 } - -xg-firewall OBJECT-IDENTITY - STATUS current - DESCRIPTION "" - ::= { sophos 2 } - --- Enumerations used in XG-Firewall system - -HaModeType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "enumerated type for HA Modes" - SYNTAX INTEGER { - standalone ( 1 ), - active-passive ( 2 ), - active-active ( 3 ) - } -ServiceStatsType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "enumerated type for service status" - SYNTAX INTEGER { - untouched ( 1 ), - stopped ( 2 ), - initializing ( 3 ), - running ( 4 ), - exiting ( 5 ), - dead ( 6 ), - unregistered ( 7 ) - } -RegistrationStatusType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "enumerated type for subscription status" - SYNTAX INTEGER { - registered ( 1 ), - unregistered ( 2 ) - } - -SubscriptionStatusType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "enumerated type for subscription status" - SYNTAX INTEGER { - trial ( 1 ), - unsubscribed ( 2 ), - subscribed ( 3 ), - expired ( 4 ) - } - -SupportStatusType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION "enumerated type for subscription status" - SYNTAX INTEGER { - support8x5 ( 1 ), - support24x7 ( 2 ) - } - --- End of enums - --- XG-Firewall -sfosSystem OBJECT IDENTIFIER ::= { xg-firewall 1 } - --- XG-Firewall.system -sysInstall OBJECT IDENTIFIER ::= { sfosSystem 1 } -sysStatus OBJECT IDENTIFIER ::= { sfosSystem 2 } -sysLicense OBJECT IDENTIFIER ::= { sfosSystem 3 } -sysAlerts OBJECT IDENTIFIER ::= { sfosSystem 4 } - - --- sfosSystem.sysInstall - -applianceKey OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 1 } - -applianceModel OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 2 } - -xg-firewallVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 3 } - -webcatVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 4 } - -avVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 5 } - -asVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 6 } - -idpVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE(0..128)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysInstall 7 } - --- sfosSystem.sysStatus - -systemDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { sysStatus 1 } - -cpuStatus OBJECT IDENTIFIER ::= { sysStatus 2 } - -cpuPercentUsage OBJECT-TYPE - SYNTAX Integer32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "% cpu usage" - ::= { cpuStatus 1 } - -diskStatus OBJECT IDENTIFIER ::= { sysStatus 3 } - -diskCapacity OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Disk capacity in MB" - ::= { diskStatus 1 } - -diskPercentUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "% Disk usage" - ::= { diskStatus 2 } - -memoryStatus OBJECT IDENTIFIER ::= { sysStatus 4 } - -memoryCapacity OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Memory capacity in MB" - ::= { memoryStatus 1 } - -memoryPercentUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "% usage of main memory" - ::= { memoryStatus 2 } - -swapCapacity OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "Swap Capacity in MB" - ::= { memoryStatus 3 } - -swapPercentUsage OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "% usage of swap" - ::= { memoryStatus 4 } - -haMode OBJECT-TYPE - SYNTAX HaModeType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { sysStatus 5 } - -liveUsers OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION "" - ::= { sysStatus 6 } - -httpHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { sysStatus 7 } - -ftpHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { sysStatus 8 } - -mailHits OBJECT IDENTIFIER ::= { sysStatus 9 } -serviceStats OBJECT IDENTIFIER ::= { sysStatus 10 } - --- sysStatus.mailHits -pop3Hits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { mailHits 1 } - -imapHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { mailHits 2 } - -smtpHits OBJECT-TYPE - SYNTAX Counter64 - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { mailHits 3 } - --- sysStatus.serviceStats - -pop3Service OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 1 } - -imap4Service OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 2 } - -smtpService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 3 } - -ftpService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 4 } - -httpService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 5 } - -avService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 6 } - -asService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 7 } - -dnsService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 8 } - -haService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 9 } - -idpService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 10 } - -apacheService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 11 } - -ntpService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 12 } - -tomcatService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 13 } - -sslvpnService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 14 } - -databaseservice OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 15 } - -networkService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 16 } - -garnerService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 17 } - -droutingService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 18 } - -sshdService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 19 } - -dgdService OBJECT-TYPE - SYNTAX ServiceStatsType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { serviceStats 20 } - --- sfosSystem.sysLicense - -liAppliance OBJECT IDENTIFIER ::= { sysLicense 1 } -liSupport OBJECT IDENTIFIER ::= { sysLicense 2 } -liAntivirus OBJECT IDENTIFIER ::= { sysLicense 3 } -liAntispam OBJECT IDENTIFIER ::= { sysLicense 4 } -liIdp OBJECT IDENTIFIER ::= { sysLicense 5 } -liWebcat OBJECT IDENTIFIER ::= { sysLicense 6 } - --- sysLicense.liAppliance - -appRegStatus OBJECT-TYPE - SYNTAX RegistrationStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liAppliance 1 } - -appExpiryDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liAppliance 2 } - --- sysLicense.liSupport - -supportSubStatus OBJECT-TYPE - SYNTAX SupportStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liSupport 1 } - -supportExpiryDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liSupport 2 } - --- sysLicense.liAntivirus - -avSubStatus OBJECT-TYPE - SYNTAX SubscriptionStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liAntivirus 1 } - -avExpiryDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liAntivirus 2 } - --- sysLicense.antispam - -asSubStatus OBJECT-TYPE - SYNTAX SubscriptionStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liAntispam 1 } - -asExpiryDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liAntispam 2 } - --- sysLicense.idp - -idpSubStatus OBJECT-TYPE - SYNTAX SubscriptionStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liIdp 1 } - -idpExpiryDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liIdp 2 } - --- sysLicense.liWebcat - -webcatSubStatus OBJECT-TYPE - SYNTAX SubscriptionStatusType - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liWebcat 1 } - -webcatExpiryDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION " " - ::= { liWebcat 2 } - - --- sfosSystem.sysAlerts - -highCpuUsage NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { sysAlerts 1 } - -highDiskUsage OBJECT IDENTIFIER ::= { sysAlerts 2 } -highMemUsage OBJECT IDENTIFIER ::= { sysAlerts 3 } - -highConfDiskUsage NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { highDiskUsage 1 } - - highSigDiskUsage NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { highDiskUsage 2 } - - highReportDiskUsage NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { highDiskUsage 3 } - -highPhyMemUsage NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { highMemUsage 1 } - -highSwapMemUsage NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { highMemUsage 2 } - -avAlerts OBJECT IDENTIFIER ::= { sysAlerts 4 } -dgdAlerts OBJECT IDENTIFIER ::= { sysAlerts 5 } -idpAlerts OBJECT IDENTIFIER ::= { sysAlerts 6 } -dosAlerts OBJECT IDENTIFIER ::= { sysAlerts 7 } -cscAlerts OBJECT IDENTIFIER ::= { sysAlerts 8 } - --- sysAlerts.avAlerts - -httpVirus NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { avAlerts 1 } - -smtpVirus NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { avAlerts 2 } - -pop3Virus NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { avAlerts 3 } - -imap4Virus NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { avAlerts 4 } - -ftpVirus NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { avAlerts 5 } - --- sysAlert.dgdAlerts - -gwLiveDead NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { dgdAlerts 1 } - --- sysAlert.idpAlerts - -idpAlert NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { idpAlerts 1 } - --- sysAlert.dosAlerts - -synFlood NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { dosAlerts 1 } - -tcpFlood NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { dosAlerts 2 } - -udpFlood NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { dosAlerts 3 } - -icmpFlood NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { dosAlerts 4 } - - -- sysAlerts.cscAlerts - -opcodeFail NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { cscAlerts 1 } - -serviceFail NOTIFICATION-TYPE - STATUS current - DESCRIPTION "" - ::= { cscAlerts 2 } - -END - - - - diff --git a/mibs/orig/XUPS-MIB b/mibs/orig/XUPS-MIB deleted file mode 100644 index 2e7e419..0000000 --- a/mibs/orig/XUPS-MIB +++ /dev/null @@ -1,2057 +0,0 @@ -XUPS-MIB DEFINITIONS ::= BEGIN - -IMPORTS - TimeTicks, Gauge32, Counter32, Integer32 - FROM SNMPv2-SMI - DisplayString - FROM SNMPv2-TC - MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE - FROM SNMPv2-SMI - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - eaton, xupsEnvironment - FROM EATON-OIDS - -- Need to import these EMP objects to support PowerMIB-style traps for EMP - xupsContactIndex, xupsContactType, xupsContactState, xupsContactDescr, - xupsEnvRemoteTemp, xupsEnvRemoteTempLowerLimit, xupsEnvRemoteTempUpperLimit, - xupsEnvRemoteHumidity, xupsEnvRemoteHumidityLowerLimit, - xupsEnvRemoteHumidityUpperLimit - FROM EATON-EMP-MIB; - -xupsMIB MODULE-IDENTITY - LAST-UPDATED "201102250000Z" - ORGANIZATION "Eaton Corporation" - CONTACT-INFO - "Eaton Power Quality Technical Support (PQTS) group - www.eaton.com/powerxpert - Technical Resource Center phone numbers - United States: 1.800.843.9433 or 919.870.3028 - Canada: 1.800.461.9166 ext. 260 - All other countries: Call your local service representative." - DESCRIPTION - "Defines Eaton's proprietary PowerMIB for UPS and - related device data. - - Copyright (C) Exide Electronics 1992-98 - Copyright (C) Powerware Corporation 1999-2004 - Copyright (C) Eaton Corporation (2005-)." - - REVISION "201102250000Z" - DESCRIPTION - "Add new data xupsSwitchable" - - REVISION "200810020000Z" - DESCRIPTION - "Added new values of batteryDisconnected(6), batteryUnderTest(7), - and checkBattery(8) to xupsBatteryAbmStatus." - - REVISION "200705030000Z" - DESCRIPTION - "Added new value of pxg(5) to xupsSendTrapType - for Power Xpert Gateway implementations." - - REVISION "200703130000Z" - DESCRIPTION - "Initial SNMPv2-SMI-compliant Version of PowerMIB. - Incorporates all revisions of the original xups - MIB file through Version 3.13 21-May-04." - - ::= { eaton 1 } - --- xupsMIB { iso org(3) dod(6) internet(1) private(4) --- enterprises(1) eaton(534) xupsMIB(1) } - - -xupsIdent OBJECT IDENTIFIER ::= { xupsMIB 1 } -xupsBattery OBJECT IDENTIFIER ::= { xupsMIB 2 } -xupsInput OBJECT IDENTIFIER ::= { xupsMIB 3 } -xupsOutput OBJECT IDENTIFIER ::= { xupsMIB 4 } -xupsBypass OBJECT IDENTIFIER ::= { xupsMIB 5 } --- xupsEnvironment OBJECT IDENTIFIER ::= { xupsMIB 6 } - defined in EATON-OIDS -xupsAlarm OBJECT IDENTIFIER ::= { xupsMIB 7 } -xupsTest OBJECT IDENTIFIER ::= { xupsMIB 8 } -xupsControl OBJECT IDENTIFIER ::= { xupsMIB 9 } -xupsConfig OBJECT IDENTIFIER ::= { xupsMIB 10 } -xupsTrapControl OBJECT IDENTIFIER ::= { xupsMIB 11 } -xupsRecep OBJECT IDENTIFIER ::= { xupsMIB 12 } -xupsTopology OBJECT IDENTIFIER ::= { xupsMIB 13 } - - --- --- xupsIdent group: --- -xupsIdentManufacturer OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..31)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The UPS Manufacturer Name (e.g. Eaton Corporation)." - ::= { xupsIdent 1} - -xupsIdentModel OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..63)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The UPS Model (e.g. Powerware Plus Model 18)." - ::= {xupsIdent 2} - -xupsIdentSoftwareVersion OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..63)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The firmware revision level(s) of the UPS microcontroller(s)." - ::= {xupsIdent 3} - -xupsIdentOemCode OBJECT-TYPE - SYNTAX Integer32 (0..255) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A binary code indicating who the UPS was manufactured or labeled for. - 0 or 255 indicates Eaton itself." - ::= {xupsIdent 4} - - - --- --- xupsBattery group: --- -xupsBatTimeRemaining OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Battery run time in seconds before UPS turns off due - to low battery." - ::= { xupsBattery 1} - -xupsBatVoltage OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "Volts DC" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Battery voltage as reported by the UPS meters." - ::= {xupsBattery 2} - -xupsBatCurrent OBJECT-TYPE - SYNTAX Integer32 (-2147483648..2147483647) - UNITS "Amps DC" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Battery Current as reported by the UPS metering. - Current is positive when discharging, negative - when recharging the battery." - ::= {xupsBattery 3} - -xupsBatCapacity OBJECT-TYPE - SYNTAX Integer32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Battery percent charge." - ::= { xupsBattery 4} - -xupsBatteryAbmStatus OBJECT-TYPE - SYNTAX INTEGER { - batteryCharging(1), - batteryDischarging(2), - batteryFloating(3), - batteryResting(4), - unknown(5), - batteryDisconnected(6), - batteryUnderTest(7), - checkBattery(8) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Gives the status of the Advanced Battery Management and Battery state; - batteryFloating(3) status means that the charger is temporarily - charging the battery to its float voltage; batteryResting(4) is the - state when the battery is fully charged and none of the other actions - (charging/discharging/floating) is being done. - checkBattery(8) indicates that the Battery state is uncertain - following a poor battery test result." - ::= { xupsBattery 5} - -xupsBatteryLastReplacedDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..16)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The date when the Batteries in this UPS were last replaced. Should be - the same as xupsConfigInstallDate initially. Free text format, so the - preferred local date format may be used (MM/DD/YYYY, DD-Mon-YYYY, etc)." - ::= { xupsBattery 6} - - --- --- xupsInput group: --- -xupsInputFrequency OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "0.1 Hertz" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The utility line frequency in tenths of Hz." - ::= {xupsInput 1} - -xupsInputLineBads OBJECT-TYPE - SYNTAX Counter32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of times the Input was out of tolerance - in voltage or frequency." - ::= {xupsInput 2} - -xupsInputNumPhases OBJECT-TYPE - SYNTAX Integer32 (0..6) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of input phases (normally 1 to 3)." - ::= {xupsInput 3} - -xupsInputTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsInputEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of input table entries. The number of entries - is given by the value of xupsInputNumPhases." - ::= {xupsInput 4} - -xupsInputEntry OBJECT-TYPE - SYNTAX XupsInputEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The input table entry containing the current, - voltage, etc. readings for one phase." - INDEX { xupsInputPhase } - ::= { xupsInputTable 1 } - -XupsInputEntry ::= SEQUENCE { - xupsInputPhase Integer32, - xupsInputVoltage Integer32, - xupsInputCurrent Integer32, - xupsInputWatts Integer32 - } - -xupsInputPhase OBJECT-TYPE - SYNTAX Integer32 (0..6) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of the phase. Serves as index for input table." - ::= {xupsInputEntry 1} - -xupsInputVoltage OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured input voltage from the UPS meters in volts." - ::= {xupsInputEntry 2} - -xupsInputCurrent OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Amps" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured input current from the UPS meters in amps." - ::= {xupsInputEntry 3} - -xupsInputWatts OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "Watts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured input real power in watts." - ::= {xupsInputEntry 4} - -xupsInputSource OBJECT-TYPE - SYNTAX INTEGER { - other(1), - none(2), - primaryUtility(3), - bypassFeed(4), - secondaryUtility(5), - generator(6), - flywheel(7), - fuelcell(8) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The present external source of input power. The enumeration - 'none(2)' indicates that there is no external source of - power, for example, the UPS is On Battery (an internal source). - 'primaryUtility' indicates the normal case of utility input power. - The 'bypassFeed' can only be used when the Bypass source is known - to be a separate utility feed than the primaryUtility(3). - 'secondaryUtility' indicates that a secondary utility feed is supplying - power (on a dual AC input UPS). - 'generator' indicates that input power is provided by a generator. - Note that the alternate energy sources of 'flywheel' and 'fuelcell' are - not necessarily AC input sources." - ::= { xupsInput 5 } - --- xupsDualInputStatus and xupsSecondaryInputWatch would only be present --- for UPSs with a secondary input source. - -xupsDualInputStatus OBJECT-TYPE - SYNTAX INTEGER { - bothSourcesBad(1), - primarySourceGood(2), - secondarySourceGood(3), - bothSourcesGood(4) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The present status of the sources of input power in a dual source UPS. - The enumeration primarySourceGood(2) indicates that the primary source - of power is present and within 'normal' ranges for voltage and - frequency, but the secondary source is either not present or not in an - acceptable range. - 'secondarySourceGood' indicates that only the Secondary power feed is - available and within its limits. - The enumeration bothSourcesGood(4) indicates that both sources are present - and within their respective 'normal' ranges; - bothSourcesBad(1) indicates that neither source is present, or, if present, - is not within acceptable ranges. - This object will only be implemented for UPSs with two sources of input - power, e.g., redundant AC feeds or a separate Bypass or Generator source. - The secondary source will not be an AC power source in all cases." - ::= { xupsInput 6 } - -xupsSecondaryInputWatch OBJECT-TYPE - SYNTAX INTEGER { - disabled(1), - enabled(2) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object enables(2) or disables(1) the alarms and traps related to the - availability and use of the secondary input of a dual-input UPS - (i.e., OnAlternatePowerSource and AltPowerNotAvailable). - To avoid nuisance alarms and traps, this object should be set to - disabled(1) when the UPS is not wired to a secondary source of power. - This object will only be implemented for UPSs with two sources of input - power, i.e., redundant AC feeds or a separate Bypass or Generator source." - ::= { xupsInput 7 } - - - - --- --- xupsOutput group: --- -xupsOutputLoad OBJECT-TYPE - SYNTAX Integer32 (0..200) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The UPS output load in percent of rated capacity." - ::= {xupsOutput 1} - -xupsOutputFrequency OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "0.1 Hertz" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured UPS output frequency in tenths of Hz." - ::= {xupsOutput 2} - -xupsOutputNumPhases OBJECT-TYPE - SYNTAX Integer32 (0..6) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of metered output phases." - ::= {xupsOutput 3} - -xupsOutputTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsOutputEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of output table entries. The number of entries - is given by the value of xupsOutputNumPhases." - ::= {xupsOutput 4} - -xupsOutputEntry OBJECT-TYPE - SYNTAX XupsOutputEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Output Table Entry containing voltage, current, etc." - INDEX { xupsOutputPhase } - ::= {xupsOutputTable 1} - -XupsOutputEntry ::= SEQUENCE { - xupsOutputPhase Integer32, - xupsOutputVoltage Integer32, - xupsOutputCurrent Integer32, - xupsOutputWatts Integer32 - } - -xupsOutputPhase OBJECT-TYPE - SYNTAX Integer32 (0..6) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number {1..3} of the output phase." - ::= {xupsOutputEntry 1} - -xupsOutputVoltage OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured output voltage from the UPS metering in volts." - ::= {xupsOutputEntry 2} - -xupsOutputCurrent OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Amps" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured UPS output current in amps." - ::= {xupsOutputEntry 3} - -xupsOutputWatts OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "Watts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured real output power in watts." - ::= {xupsOutputEntry 4} - -xupsOutputSource OBJECT-TYPE - SYNTAX INTEGER { - other(1), - none(2), - normal(3), - bypass(4), - battery(5), - booster(6), - reducer(7), - parallelCapacity(8), - parallelRedundant(9), - highEfficiencyMode(10), - maintenanceBypass(11) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The present source of output power. The enumeration - none(2) indicates that there is no source of output - power (and therefore no output power), for example, - the system has opened the output breaker. - 'normal', 'bypass', and 'battery' indicate those common UPS statuses. - 'booster' and 'reducer' indicate boost or buck operation, for - line-interactive UPSs only. - 'parallelCapacity' and 'parallelRedundant' indicate a normal parallel - UPS system, in either Parallel for Capacity or Redundancy configuration. - 'highEfficiencyMode' is normal but enhanced by High Efficiency mode. - 'maintenanceBypass' indicates that the UPS is in Maintenance/Manual - Bypass mode. - 'other' covers any other, unusual conditions." - ::= { xupsOutput 5 } - - --- --- xupsBypass group: --- -xupsBypassFrequency OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "0.1 Hertz" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The bypass frequency in tenths of Hz." - ::= {xupsBypass 1} - -xupsBypassNumPhases OBJECT-TYPE - SYNTAX Integer32 (0..6) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of lines in the UPS bypass table." - ::= {xupsBypass 2} - -xupsBypassTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsBypassEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of bypass table entries. The number of entries - is given by the value of xupsBypassNumPhases." - ::= {xupsBypass 3} - -xupsBypassEntry OBJECT-TYPE - SYNTAX XupsBypassEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Bypass Table Entry containing voltage for each phase." - INDEX { xupsBypassPhase } - ::= {xupsBypassTable 1} - -XupsBypassEntry ::= SEQUENCE { - xupsBypassPhase Integer32, - xupsBypassVoltage Integer32 - } - -xupsBypassPhase OBJECT-TYPE - SYNTAX Integer32 (0..6) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Bypass Phase, index for the table." - ::= {xupsBypassEntry 1} - -xupsBypassVoltage OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The measured UPS bypass voltage in volts." - ::= {xupsBypassEntry 2} - - --- --- xupsEnvironment group: --- - -xupsEnvAmbientTemp OBJECT-TYPE - SYNTAX Integer32 (-100..200) - UNITS "degrees Centigrade" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The reading of the ambient temperature in the vicinity of the - UPS or SNMP agent." - ::= { xupsEnvironment 1 } - -xupsEnvAmbientLowerLimit OBJECT-TYPE - SYNTAX Integer32 (-100..200) - UNITS "degrees Centigrade" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Lower Limit of the ambient temperature; if xupsEnvAmbientTemp - falls below this value, the xupsAmbientTempBad alarm will occur." - ::= { xupsEnvironment 2 } - -xupsEnvAmbientUpperLimit OBJECT-TYPE - SYNTAX Integer32 (-100..200) - UNITS "degrees Centigrade" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Upper Limit of the ambient temperature; if xupsEnvAmbientTemp - rises above this value, the xupsAmbientTempBad alarm will occur. - This value should be greater than xupsEnvAmbientLowerLimit." - ::= { xupsEnvironment 3 } - -xupsEnvAmbientHumidity OBJECT-TYPE - SYNTAX Integer32 (0..100) - UNITS "percent" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The reading of the ambient humidity in the vicinity of the - UPS or SNMP agent." - ::= { xupsEnvironment 4 } - --- --- Moved the EMP-based objects, --- from xupsEnvRemoteTemp to xupsEnvRemoteHumidityUpperLimit --- ( { xupsEnvironment 5 to 12 }, including xupsContactSenseTable, --- to separate file Eaton-EMP-MIB.txt --- - - - --- --- xupsAlarm group: --- -xupsAlarms OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The current number of alarm conditions." - ::= {xupsAlarm 1} - -xupsAlarmTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsAlarmEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of alarm table entries. The number of entries - is given by the value of xupsAlarms. - Note that this table is sparsely (non-consecutively) - numbered and will be empty if there are no active alarms." - ::= {xupsAlarm 2} - -xupsAlarmEntry OBJECT-TYPE - SYNTAX XupsAlarmEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Alarm Table Entry containing descriptive information - for one alarm entry." - INDEX { xupsAlarmID } - ::= {xupsAlarmTable 1} - -XupsAlarmEntry ::= SEQUENCE { - xupsAlarmID Integer32, - xupsAlarmDescr OBJECT IDENTIFIER, - xupsAlarmTime TimeTicks - } - -xupsAlarmID OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A unique identifier for an alarm condition." - ::= {xupsAlarmEntry 1} - -xupsAlarmDescr OBJECT-TYPE - SYNTAX OBJECT IDENTIFIER - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A reference to an alarm description object. The object - referenced should not be accessible, but rather be used to - provide a unique description of the alarm condition." - ::= {xupsAlarmEntry 2} - -xupsAlarmTime OBJECT-TYPE - SYNTAX TimeTicks - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of the MIB-II variable sysUpTime when the alarm - condition occurred." - ::= {xupsAlarmEntry 3} - --- --- Well known alarm conditions. --- -xupsOnBattery OBJECT IDENTIFIER ::= {xupsAlarm 3} -xupsLowBattery OBJECT IDENTIFIER ::= {xupsAlarm 4} -xupsUtilityPowerRestored OBJECT IDENTIFIER ::= {xupsAlarm 5} -xupsReturnFromLowBattery OBJECT IDENTIFIER ::= {xupsAlarm 6} -xupsOutputOverload OBJECT IDENTIFIER ::= {xupsAlarm 7} -xupsInternalFailure OBJECT IDENTIFIER ::= {xupsAlarm 8} -xupsBatteryDischarged OBJECT IDENTIFIER ::= {xupsAlarm 9} -xupsInverterFailure OBJECT IDENTIFIER ::= {xupsAlarm 10} -xupsOnBypass OBJECT IDENTIFIER ::= {xupsAlarm 11} -xupsBypassNotAvailable OBJECT IDENTIFIER ::= {xupsAlarm 12} -xupsOutputOff OBJECT IDENTIFIER ::= {xupsAlarm 13} -xupsInputFailure OBJECT IDENTIFIER ::= {xupsAlarm 14} -xupsBuildingAlarm OBJECT IDENTIFIER ::= {xupsAlarm 15} -xupsShutdownImminent OBJECT IDENTIFIER ::= {xupsAlarm 16} -xupsOnInverter OBJECT IDENTIFIER ::= {xupsAlarm 17} - - -xupsAlarmNumEvents OBJECT-TYPE - SYNTAX Gauge32 - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of entries in the UPS event history queue." - ::= { xupsAlarm 18 } - -xupsAlarmEventTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsAlarmEventEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A table of the UPS internal event history queue." - ::= { xupsAlarm 19 } - -xupsAlarmEventEntry OBJECT-TYPE - SYNTAX XupsAlarmEventEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "One of the entries in the UPS event history queue." - INDEX { xupsAlarmEventID } - ::= { xupsAlarmEventTable 1 } - --- The first 4 vars in the xAEEntry have been deprecated, since they resulted in --- a flood of difficult to interpret data. They have been replaced by the single --- entry, xupsAlarmEventMsg, which gives a human-readable description of the event. -XupsAlarmEventEntry ::= SEQUENCE { - xupsAlarmEventID Integer32, - xupsAlarmEventDateAndTime DisplayString, - xupsAlarmEventKind INTEGER, - xupsAlarmEventDescr Integer32, - xupsAlarmEventMsg DisplayString - } - -xupsAlarmEventID OBJECT-TYPE - SYNTAX Integer32 (1..400) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A unique number that reflects the order in which the event - occurred. The oldest event in the queue will be number 1. - Subsequent events will be numbered 2, 3, 4, etc." - ::= { xupsAlarmEventEntry 1 } - -xupsAlarmEventDateAndTime OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..22)) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "The time and date that an event occurred as recorded in the UPS - internal event queue. This string will reflect the time and - date as set in the UPS itself and will not be referenced to sysUpTime. - The format is MM/DD/YYYY:HH:MM:SS. Time is 24 hour standard." - ::= { xupsAlarmEventEntry 2 } - -xupsAlarmEventKind OBJECT-TYPE - SYNTAX INTEGER { - occurred (1), - cleared (2), - unknown (3) - } - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "Enumerated value that tells whether the event is an - occurrence of an alarm condition or a clearing of an - alarm condition." - ::= { xupsAlarmEventEntry 3 } - -xupsAlarmEventDescr OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "A description of the event stored in the UPS event queue. - This description will be a sixteen bit integer value - representing one of the defined alarms in the Powerware Binary - Computer Mode communication specification; for example, - a value of 0 represents the 'Inverter AC Over Voltage' - alarm (byte 1, bit 0 in the BCM Alarm Map)." - ::= { xupsAlarmEventEntry 4 } - -xupsAlarmEventMsg OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..80)) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A text string describing each entry in the Event Log. The format of this - text message is free (not fixed) for the operator to read; good contents - would be a time & date stamp, the event type, and a description of the event." - ::= { xupsAlarmEventEntry 5 } - --- --- More Well known alarm conditions. --- -xupsBreakerOpen OBJECT IDENTIFIER ::= {xupsAlarm 20} -xupsAlarmEntryAdded OBJECT IDENTIFIER ::= {xupsAlarm 21} -xupsAlarmEntryRemoved OBJECT IDENTIFIER ::= {xupsAlarm 22} - --- Same as RFC 1628 Well Known Alarms: -xupsAlarmBatteryBad OBJECT IDENTIFIER ::= {xupsAlarm 23} -xupsOutputOffAsRequested OBJECT IDENTIFIER ::= {xupsAlarm 24} -xupsDiagnosticTestFailed OBJECT IDENTIFIER ::= {xupsAlarm 25} -xupsCommunicationsLost OBJECT IDENTIFIER ::= {xupsAlarm 26} -xupsUpsShutdownPending OBJECT IDENTIFIER ::= {xupsAlarm 27} -xupsAlarmTestInProgress OBJECT IDENTIFIER ::= {xupsAlarm 28} - --- Alarm for the Ambient Temperature, when outside of lo/hi limits -xupsAmbientTempBad OBJECT IDENTIFIER ::= {xupsAlarm 29} - --- For Loss of Redundancy in parallel systems -xupsLossOfRedundancy OBJECT IDENTIFIER ::= {xupsAlarm 30} - --- More Same as RFC 1628 Well Known Alarms: -xupsAlarmTempBad OBJECT IDENTIFIER ::= {xupsAlarm 31} -xupsAlarmChargerFailed OBJECT IDENTIFIER ::= {xupsAlarm 32} -xupsAlarmFanFailure OBJECT IDENTIFIER ::= {xupsAlarm 33} -xupsAlarmFuseFailure OBJECT IDENTIFIER ::= {xupsAlarm 34} - --- A Relay, Contactor, or Breaker has failed -xupsPowerSwitchBad OBJECT IDENTIFIER ::= {xupsAlarm 35} - --- One module in a parallel or composite system has failed -xupsModuleFailure OBJECT IDENTIFIER ::= {xupsAlarm 36} - --- Two Alarms for systems with an Alternate Power Source, such as --- Secondary utility feed (on a dual AC input UPS), generator, --- flywheel, or fuelcell. Enabled by xupsSecondaryInputWatch. -xupsOnAlternatePowerSource OBJECT IDENTIFIER ::= {xupsAlarm 37} -xupsAltPowerNotAvailable OBJECT IDENTIFIER ::= {xupsAlarm 38} - --- Some Notice condition exists which is not covered by the other WKA --- (like an xupsInternalFailure, but at a lower level of urgency) -xupsNoticeCondition OBJECT IDENTIFIER ::= {xupsAlarm 39} - --- Alarms for the Remote Temperature & Humidity, when outside of lo/hi limits -xupsRemoteTempBad OBJECT IDENTIFIER ::= {xupsAlarm 40} -xupsRemoteHumidityBad OBJECT IDENTIFIER ::= {xupsAlarm 41} - --- Last of the RFC1628 Well Known Alarms: -xupsAlarmOutputBad OBJECT IDENTIFIER ::= {xupsAlarm 42} -xupsAlarmAwaitingPower OBJECT IDENTIFIER ::= {xupsAlarm 43} - --- Alarm for this important UPS mode -xupsOnMaintenanceBypass OBJECT IDENTIFIER ::= {xupsAlarm 44} - - --- --- xupsTest group: --- - -xupsTestStart OBJECT-TYPE - SYNTAX INTEGER { - testBattery (1), - noTestStarted (2), - testSystem (3), - testSecondarySource (4), - flashLightsTest (5), - cancelTest (6) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this object initiates the requested Test. - The test types which a UPS might support are 'testBattery', - 'testSystem' (a UPS General Systems test, however defined by the UPS), - 'testSecondarySource' (test if the Secondary power source is good on a - dual input UPS), and - 'flashLightsTest' (start a test which flashes the UPS lights, and if - available, sounds the horn to help locate the UPS). - If a UPS does not support the requested test, the set operation may - succeed but the xupsTestBatteryStatus will end up as notSupported. - When read, this object indicates the last test requested via this object, - if any; 'noTestStarted' could be the initial value. - Currently only the 'flashLightsTest' can be canceled with 'cancelTest'." - ::= {xupsTest 1} - -xupsTestBatteryStatus OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - passed (2), - failed (3), - inProgress (4), - notSupported (5), - inhibited (6), - scheduled (7) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reading this enumerated value gives an indication of the (last) - UPS Battery test status. - 'inhibited' means that the battery test could not be run. - 'scheduled' means that the battery test could not be run at the time - of request, but will be run at some later (UPS-determined) time." - ::= {xupsTest 2} - -xupsLastGeneralTest OBJECT-TYPE - SYNTAX INTEGER { - noTestStarted (2), - testSystem (3), - testSecondarySource (4), - flashLightsTest (5) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the last UPS test requested via xupsTestStart or by other - non-SNMP means, other than for the testBattery (1) case. - The results of the test indicated by this object are reported in - xupsLastGeneralTestResult." - ::= {xupsTest 3} - -xupsLastGeneralTestResult OBJECT-TYPE - SYNTAX INTEGER { - unknown (1), - passed (2), - failed (3), - inProgress (4), - notSupported (5), - inhibited (6), - scheduled (7) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Reading this enumerated value gives the result of the test indicated - in xupsLastGeneralTest." - ::= {xupsTest 4} - --- --- xupsControl group: --- -xupsControlOutputOffDelay OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this value to other than zero will cause the UPS - output to turn off after the number of seconds. - Setting it to 0 will cause an attempt to abort a pending - shutdown." - ::= {xupsControl 1} - -xupsControlOutputOnDelay OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this value to other than zero will cause the UPS - output to turn on after the number of seconds. - Setting it to 0 will cause an attempt to abort a pending - startup." - ::= {xupsControl 2} - -xupsControlOutputOffTrapDelay OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "When xupsControlOutputOffDelay reaches this value, a trap will - be sent." - ::= {xupsControl 3} - -xupsControlOutputOnTrapDelay OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS deprecated - DESCRIPTION - "When xupsControlOutputOnDelay reaches this value, a - xupsOutputOff trap will be sent." - ::= {xupsControl 4} - -xupsControlToBypassDelay OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this value to other than zero will cause the UPS - output to go to Bypass after the number of seconds. - If the Bypass is unavailable, this may cause the UPS - to not supply power to the load. - Setting it to 0 will cause an attempt to abort a pending - shutdown." - ::= {xupsControl 5} - -xupsLoadShedSecsWithRestart OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this value will cause the UPS output to turn off - after the set number of seconds, then restart (after a UPS-defined - 'down time') when the utility is again available. - Unlike xupsControlOutputOffDelay, which might or might not, - this object always maps to the XCP 0x8A Load Dump & Restart command, - so the desired shutdown and restart behavior is guaranteed to happen. - Once set, this command cannot be aborted. - This is the preferred Control object to use when performing - an On Battery OS Shutdown." - ::= {xupsControl 6} - -xupsSwitchable OBJECT-TYPE - SYNTAX INTEGER { - switchable (1), - notSwitchable (2) - } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Parameter which indicates whether UPS commands received via any - communication path (aside from manual controls) are able (switchable) - or not able (notSwitchable) to control the UPS." - ::= { xupsControl 7 } - --- --- xupsConfig group: --- -xupsConfigOutputVoltage OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The nominal UPS Output voltage per phase in volts." - ::= {xupsConfig 1} - -xupsConfigInputVoltage OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The nominal UPS Input voltage per phase in volts." - ::= {xupsConfig 2} - -xupsConfigOutputWatts OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "Watts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The nominal UPS available real power output in watts." - ::= {xupsConfig 3} - -xupsConfigOutputFreq OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "0.1 Hertz" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The nominal output frequency in tenths of Hz." - ::= {xupsConfig 4} - -xupsConfigDateAndTime OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..22)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Date and time information for the UPS. Setting this variable - will initiate a set UPS date and time to this value. Reading - this variable will return the UPS time and date. This value - is not referenced to sysUpTime. It is simply the clock value - from the UPS real time clock. - Format is as follows: MM/DD/YYYY:HH:MM:SS." - ::= { xupsConfig 5 } - -xupsConfigLowOutputVoltageLimit OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Lower limit for acceptable Output Voltage, per the UPS - specifications." - ::= {xupsConfig 6} - -xupsConfigHighOutputVoltageLimit OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "RMS Volts" - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Upper limit for acceptable Output Voltage, per the UPS - specifications." - ::= {xupsConfig 7} - -xupsConfigInstallDate OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..16)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The date when this UPS was installed. Free text format, so the - preferred local date format may be used (MM/DD/YYYY, DD-Mon-YYYY, etc)." - ::= {xupsConfig 8} - - - --- --- xupsTrapControl group: --- -xupsMaxTrapLevel OBJECT-TYPE - SYNTAX INTEGER { - none (1), - critical (2), - major (3), - minor (4), - allTraps (5) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The level of severity of traps which will be sent to the - requesting host; individual trap receivers will have - individual values for this variable. Values are: - (1) none: no traps will be sent to this host; - (2) critical: only traps for Critical alarm conditions will - be sent to this host; - (3) major: Critical and Major traps will be sent; - (4) minor: All levels of alarming traps will be sent: Critical, - Major, and Minor - (This level was added in PowerMIB v3.11) - (5) allTraps: all Traps will be sent to this host - (Critical, Major, Minor, Informational)." - ::= {xupsTrapControl 1} - -xupsSendTrapType OBJECT-TYPE - SYNTAX INTEGER { - stnd (1), - xups (2), - stndPlus (3), - xupsPlus (4), - pxg (5) - } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The type of traps which will be sent to the - requesting host; individual trap receivers will have - individual values for this variable. The additional - variables in types (3) and (4) are useful for determining - which UPS is the source on multi-port network adapters, - and for getting additional descriptive information. - Types (1) through (4) are all SNMP version 1 trap PDUs. - Values are: - (1) stnd: Traps as defined in the Standard UPS MIB (RFC1628) - and Generic (MIB II) traps as defined in RFC 1215. - (2) xups: xupsTrapDefined Traps as defined in the PowerMIB - and Generic (MIB II) traps as defined in RFC 1215. - (3 Deprecated) stndPlus: same as stnd plus variables from the interface - group and, where appropriate, xupsTrapMessage. - (4 Deprecated) xupsPlus: xupsTrapPortN Traps (same as xups plus - variables from the interface group) and, - for authFail, xupsTrapMessage. - (5 pxg: Traps as defined in the Power Xpert Gateway MIB - (PXG-MIB)." - ::= {xupsTrapControl 2} - -xupsTrapMessage OBJECT-TYPE - SYNTAX DisplayString (SIZE (0..79)) - MAX-ACCESS read-only -- actually not-accessible - STATUS current - DESCRIPTION - "A descriptive text message which may be sent with traps to - further explain the reason for the trap. - This object is not-accessible to MIB browsers, but had to be changed to - read-only to satisfy SMIv2 syntax checkers since it is included in traps." - ::= {xupsTrapControl 3} - --- An Identifier for the PowerMIB traps --- Used below in the section where the traps are defined -xupsTrapSource OBJECT IDENTIFIER ::= {xupsTrapControl 4} - -xupsHeartbeatMinsInterval OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "Minutes" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "How often to send the xupstdHeartbeat trap, in units of minutes. - A setting of 0 disables the Heartbeat function." - ::= {xupsTrapControl 5} - - - --- --- xupsRecep group: --- --- (Note that the terms Receptacle, Outlet, and Load Group are used interchangeably --- here and all mean "one of a group of controllable, power-switched outputs") --- -xupsNumReceptacles OBJECT-TYPE - SYNTAX Integer32 (0..64) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of independently controllable Receptacles, as described in the - xupsRecepTable." - ::= {xupsRecep 1} - -xupsRecepTable OBJECT-TYPE - SYNTAX SEQUENCE OF XupsRecepEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A list of receptacle table entries. The number of entries - is given by the value of xupsNumReceptacles." - ::={xupsRecep 2} - -xupsRecepEntry OBJECT-TYPE - SYNTAX XupsRecepEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A receptacle table entry containing the status and - control values for one receptacle." - INDEX { xupsRecepIndex } - ::= { xupsRecepTable 1 } - -XupsRecepEntry ::= SEQUENCE { - xupsRecepIndex Integer32, - xupsRecepStatus INTEGER, - xupsRecepOffDelaySecs Integer32, - xupsRecepOnDelaySecs Integer32, - xupsRecepAutoOffDelay Integer32, - xupsRecepAutoOnDelay Integer32, - xupsRecepShedSecsWithRestart Integer32 - } - -xupsRecepIndex OBJECT-TYPE - SYNTAX Integer32 (1..64) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The number of the Receptacle. Serves as index for Receptacle table." - ::= {xupsRecepEntry 1} - - -xupsRecepStatus OBJECT-TYPE - SYNTAX INTEGER { - on(1), off(2), pendingOff(3), pendingOn(4), unknown(5), - reserved(6), failedClosed(7), failedOpen(8) } - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The Recep Status 1=On/Close, 2=Off/Open, 3=On w/Pending Off, - 4=Off w/Pending ON, 5=Unknown, 6=Reserved for future, - 7=Failed in Closed position, 8=Failed in Open position." - ::={xupsRecepEntry 2} - - -xupsRecepOffDelaySecs OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Delay until the Receptacle is turned Off. Setting - this value to other than -1 will cause the UPS output to - turn off after the number of seconds (0 is immediately). - Setting it to -1 will cause an attempt to abort a pending shutdown. - When this object is set while the UPS is On Battery, it is not necessary - to set xupsRecepOnDelaySecs, since the outlet will turn back on - automatically when power is available again." - ::= {xupsRecepEntry 3} - -xupsRecepOnDelaySecs OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The Delay until the Receptacle is turned On. Setting - this value to other than -1 will cause the UPS output to - turn on after the number of seconds (0 is immediately). - Setting it to -1 will cause an attempt to abort a pending restart." - ::={xupsRecepEntry 4} - - -xupsRecepAutoOffDelay OBJECT-TYPE - SYNTAX Integer32 (-1..32767) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The delay after going On Battery until the Receptacle is - automatically turned Off. A value of -1 means that this Output should - never be turned Off automatically, but must be turned Off only by command. - Values from 0 to 30 are valid, but probably innappropriate. - The AutoOffDelay can be used to prioritize loads in the event of a prolonged - power outage; less critical loads will turn off earlier to extend battery - time for the more critical loads. If the utility power is restored before the - AutoOff delay counts down to 0 on an outlet, that outlet will not turn Off." - ::= {xupsRecepEntry 5} - -xupsRecepAutoOnDelay OBJECT-TYPE - SYNTAX Integer32 (-1..32767) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Seconds delay after the Outlet is signaled to turn On before the Output is - Automatically turned ON. A value of -1 means that this Output should never - be turned On automatically, but only when specifically commanded to do so. - A value of 0 means that the Receptacle should come On immediately - at power-up or for an On command." - ::= {xupsRecepEntry 6} - --- xupsRecepAutoOnDelay has three purposes: --- 1. To coordinate the automatic startup of various outlets, when the normal --- auto-sequencing of 1 second per outlet is not adequate. For example, they may --- be used to power up hard disk arrays before CPU units are started. --- 2. To force additional 'Down Time' during xupsRecepOffDelaySecs commands, for --- equipment to be reset, when the standard 'Down Time' is not long enough. --- 3. For the -1 value, to ensure that loads won't be powered until commanded, --- following power-up or a xupsRecepOffDelaySecs command. - -xupsRecepShedSecsWithRestart OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - UNITS "seconds" - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Setting this value will cause the UPS output to turn off - after the set number of seconds, then restart (after a UPS-defined - 'down time') when the utility is again available. - Unlike xupsRecepOffDelaySecs, which might or might not, - this object always maps to the XCP 0x8A Load Dump & Restart command, - so the desired shutdown and restart behavior is guaranteed to happen. - Once set, this command cannot be aborted." - ::= {xupsRecepEntry 7} - --- --- xupsTopology group: --- -xupsTopologyType OBJECT-TYPE - SYNTAX Integer32 (0..32767) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Value which denotes the type of UPS by its power topology. Values are the - same as those described in the XCP Topology block's Overall Topology field." - ::= {xupsTopology 1} - -xupsTopoMachineCode OBJECT-TYPE - SYNTAX Integer32 (0..32767) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "ID Value which denotes the Powerware model of the UPS for software. - Values are the same as those described in the XCP Configuration - block's Machine Code field." - ::= {xupsTopology 2} - -xupsTopoUnitNumber OBJECT-TYPE - SYNTAX Integer32 (0..64) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Identifies which unit and what type of data is being reported. - A value of 0 means that this MIB information comes from the top-level system - view (eg, manifold module or system bypass cabinet reporting total system - output). Standalone units also use a value of 0, since they are the 'full - system' view. - A value of 1 or higher indicates the number of the module in the system - which is reporting only its own data in the PowerMIB objects." - ::= {xupsTopology 3} - -xupsTopoPowerStrategy OBJECT-TYPE - SYNTAX INTEGER { - highAlert(1), standard(2), enableHighEfficiency(3), - immediateHighEfficiency(4) } - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "Value which denotes which Power Strategy is currently set for the UPS. - The values are: - highAlert(1) - The UPS shall optimize its operating state to maximize its - power-protection levels. This mode will be held for at most 24 hours. - standard(2) - Balanced, normal power protection strategy. UPS will not enter - HE operating mode from this setting. - enableHighEfficiency(3) - The UPS is enabled to enter HE operating mode to - optimize its operating state to maximize its efficiency, when - conditions change to permit it (as determined by the UPS). - forceHighEfficiency(4) - If this value is permitted to be Set for this UPS, - and if conditions permit, requires the UPS to enter High Efficiency - mode now, without delay (for as long as utility conditions permit). - After successfully set to forceHighEfficiency(4), - xupsTopoPowerStrategy changes to value enableHighEfficiency(3). - xupsOutputSource will indicate if the UPS status is actually operating in - High Efficiency mode." - ::= {xupsTopology 4} - --- ************************************************************************* --- ************************************************************************* - --- --- Traps (xupst) --- --- 1) Eaton's traps have been defined in this MIB for three different sources. --- The trap definitions for the three sources are very similar, --- and use the same alarms as their triggers; their names are prefaced --- by xupstb, xupstd, and xupstp to distinguish the three types --- However, the products that the "Basic" and "Port Defined" trap types were --- created for have been obsoleted, so the only trap types in active use --- are the "Defined" (xupstd) traps listed below --- The Obsolete types have been moved to file XUPS_Obsolete.mib --- --- a) OBSOLETE - Basic Agents for which the trap variables have not been --- defined, though trap variables are included with the trap PDU --- xupsNull OBJECT IDENTIFIER ::= { xupsMIB 0 } --- xupsTrapBasic OBJECT IDENTIFIER ::= { xupsNull 0 } --- - --- b) Agents with exactly Defined trap variables, which may be --- used as input to trap response macros on management stations --- This trap type is selected by setting xupsSendTrapType to xups(2) -xupsTrapDefined OBJECT IDENTIFIER ::= {xupsTrapSource 1} --- Following the recommendations for coexistence between v1 traps --- and v2 notifications, define the snmpTrapOID base with a 0 -xupsTrapOidDefined OBJECT IDENTIFIER ::= { xupsTrapDefined 0 } - --- --- c) OBSOLETE - Agents with Defined traps including ifIndex and ifDescr, --- which can be used to determine which UPS of a multi-port --- agent (eg, Eaton Network SNMP Adapter) sent the trap --- This trap type was selected by setting xupsSendTrapType to xupsPlus(4) --- xupsTrapPortN OBJECT IDENTIFIER ::= {xupsTrapSource 2} --- --- 2) Trap Severity Level is given as a comment to indicate which --- xupsMaxTrapLevel will result in this trap being sent; --- levels are (in order): Critical, Major, Minor, Informational --- - - --- **************************************************************************** --- **************************************************************************** --- --- Traps from xupsTrapDefined source (xupstd): --- - -xupstdControlOff NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS output power will turn off in a number of - seconds equal to upsControlOutputOffTrapDelay." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 1 } - -xupstdControlOn NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS output power will turn on in a number of - seconds equal to upsControlOutputOnTrapDelay." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 2 } - -xupstdOnBattery NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS has no AC input power and is running on - battery." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 3 } - -xupstdLowBattery NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS batteries are low. Tied to low battery - alarm condition." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 4 } - -xupstdUtilityPowerRestored NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "Input power has been restored after running on battery." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 5 } - -xupstdReturnFromLowBattery NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The battery has recovered from a low battery condition." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 6 } - -xupstdOutputOverload NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups has sensed an overload of greater than - 106 percent. Tied to the 106% overload alarm." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 7 } - -xupstdInternalFailure NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "Some component of the ups - rectifier, inverter, - control panel has failed. Tied to alarms indi- - cating failure." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 8 } - -xupstdBatteryDischarged NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The Battery Totally Discharged Alarm has occurred." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 9 } - -xupstdInverterFailure NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups inverter is unavailable or malfunctioning due to an internal failure." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 10 } - -xupstdOnBypass NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups has gone on bypass for some reason." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 11 } - -xupstdBypassNotAvailable NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups bypass is unavailable" - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 12 } - -xupstdOutputOff NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups output is switched off." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 13 } - -xupstdInputFailure NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups input power is incorrect in voltage, - frequency, or phase rotation." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 14 } - -xupstdBuildingAlarm NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "One of the defined building alarms has occurred." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 15 } - -xupstdShutdownImminent NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups shutdown imminent alarm has occurred." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 16 } - -xupstdOnInverter NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The ups is returned to utility power running the inverter - after either a transfer to bypass or a run on battery." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 17 } - -xupstdBreakerOpen NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "One of the UPS breakers or contactors has been opened." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 20 } - -xupstdAlarmEntryAdded NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "An alarm not defined in the xups Well Known Alarms - (eg, an alarm defined in RFC1628) - has been added to the Alarm Table." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 21 } - -xupstdAlarmEntryRemoved NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "An alarm not defined in the xups Well Known Alarms - has been removed from the Alarm Table." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 22 } - -xupstdAlarmBatteryBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "One or more batteries have been determined to require replacement." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 23 } - -xupstdOutputOffAsRequested NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS has shutdown as requested, i.e., the output is off." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 24 } - -xupstdDiagnosticTestFailed NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The result of the last diagnostic test indicates a failure." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 25 } - -xupstdCommunicationsLost NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "A problem has been encountered in the communications - between the agent and the UPS." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 26 } - -xupstdUpsShutdownPending NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "An xupsControlOutputOffDelay countdown is underway." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 27 } - -xupstdAlarmTestInProgress NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "A test is in progress, as initiated and indicated by the xupsTest Group. - When the test is complete, one of the following traps will be sent: - - xupstdDiagnosticTestFailed if the test fails, - - xupstdDiagnosticTestPassed on success, or - - xupstdAlarmEntryRemoved in other cases (e.g., Test Canceled)." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 28 } - --- Provide additional information with the AmbientTemp trap -xupstdAmbientTempBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage, - xupsEnvAmbientTemp, xupsEnvAmbientLowerLimit, - xupsEnvAmbientUpperLimit } - STATUS current - DESCRIPTION - "The ambient temperature, xupsEnvAmbientTemp, has fallen below - the set lower limit, xupsEnvAmbientLowerLimit, or has risen above - the set upper limit, xupsEnvAmbientUpperLimit." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 29 } - --- Added to support the ConnectUPS Web/SNMP card's ability to monitor contact(s) -xupstdContactActiveNotice NOTIFICATION-TYPE - OBJECTS { xupsContactIndex, xupsContactType, xupsContactState, xupsContactDescr } - STATUS current - DESCRIPTION - "The Contact indicated by xupsContactIndex is in its Active state. - The following are the situations that generate this trap: - For xupsContactType: and xupsContactState: - normallyOpen(1) and closedWithNotice(4) - normallyClosed(2) and openWithNotice(3) - anyChange(3) and openWithNotice(3) or closedWithNotice(4)" - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 30 } - -xupstdContactInactiveNotice NOTIFICATION-TYPE - OBJECTS { xupsContactIndex, xupsContactType, xupsContactState, xupsContactDescr } - STATUS current - DESCRIPTION - "The Contact indicated by xupsContactIndex has changed to its Inactive state." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 31 } - - -xupstdLossOfRedundancy NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "A parallel UPS system is no longer operating in N+1 redundant mode; - this may be due to module failure or removal, or due to overloading." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 32 } - -xupstdAlarmTempBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "An internal temperature is out of tolerance." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 33 } - -xupstdAlarmChargerFailed NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "An uncorrected problem has been detected within the UPS charger subsystem." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 34 } - -xupstdAlarmFanFailure NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The failure of one or more fans in the UPS has been detected." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 35 } - -xupstdAlarmFuseFailure NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The failure of one or more fuses has been detected." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 36 } - -xupstdPowerSwitchBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "A Relay, Contactor, or Breaker has failed." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 37 } - -xupstdModuleFailure NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "One module in a parallel or composite system has failed." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 38 } - --- xupsInputSource added to this trap's var list -xupstdOnAlternatePowerSource NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage, xupsInputSource } - STATUS current - DESCRIPTION - "The system is being powered by its Alternate Power Source, such as a - Secondary utility feed (on a dual AC input UPS), generator, flywheel, - or fuel cell." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 39 } - -xupstdAltPowerNotAvailable NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "On systems with a separate alternate power source (eg, dual AC inputs), - that alternate power source is currently not available. This could be - a problem if the primary power source (eg, utility) fails for a period - of time longer than that for which the internal batteries can supply power." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 40 } - -xupstdNoticeCondition NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "Some Notice condition exists which is not covered by the other traps. - This is like an xupstdInternalFailure, but at a lower severity level." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 41 } - - --- Added to provide additional information with the RemoteTemp and RemoteHumidity -xupstdRemoteTempBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage, - xupsEnvRemoteTemp, xupsEnvRemoteTempLowerLimit, - xupsEnvRemoteTempUpperLimit } - STATUS current - DESCRIPTION - "The remote temperature, xupsEnvRemoteTemp, has fallen below - the set lower limit, xupsEnvRemoteTempLowerLimit, or has risen above - the set upper limit, xupsEnvRemoteTempUpperLimit." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 42 } - -xupstdRemoteHumidityBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage, - xupsEnvRemoteHumidity, xupsEnvRemoteHumidityLowerLimit, - xupsEnvRemoteHumidityUpperLimit } - STATUS current - DESCRIPTION - "The remote temperature, xupsEnvRemoteHumidity, has fallen below - the set lower limit, xupsEnvRemoteHumidityLowerLimit, or has risen above - the set upper limit, xupsEnvRemoteHumidityUpperLimit." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 43 } - - -xupstdHeartbeat NOTIFICATION-TYPE - OBJECTS { xupsInputSource, xupsOutputSource, xupsAlarms } - STATUS current - DESCRIPTION - "A periodic status trap message. It is sent at an interval - set by object xupsHeartbeatMinsInterval. - The included variables provide a brief statement of the UPS status." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 44 } - -xupstdDiagnosticTestPassed NOTIFICATION-TYPE - OBJECTS { xupsTestBatteryStatus, xupsLastGeneralTest, xupsLastGeneralTestResult } - STATUS current - DESCRIPTION - "A diagnostic test just completed, and its result is Passed. - The included variables provide additional information on the test." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 45 } - -xupstdOutputBad NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The output condition (other than OutputOverload) is out of tolerance." - --#SEVERITY CRITICAL - ::= { xupsTrapOidDefined 46 } - -xupstdAwaitingPower NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS output is off and the UPS is awaiting the return of input power." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 47 } - -xupstdOnMaintenanceBypass NOTIFICATION-TYPE - OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage } - STATUS current - DESCRIPTION - "The UPS has been placed on Maintenance / Manual Bypass by an operator." - --#SEVERITY MAJOR - ::= { xupsTrapOidDefined 48 } - -xupstdCommEstablished NOTIFICATION-TYPE - OBJECTS { xupsIdentModel, xupsOutputSource } - STATUS current - DESCRIPTION - "This trap is sent when the SNMP agent first establishes a communication - link with the UPS. - The included variables provide identification and UPS status information." - --#SEVERITY INFORMATIONAL - ::= { xupsTrapOidDefined 49 } - -xupstdAgentDown NOTIFICATION-TYPE - -- OBJECTS { (none) } - STATUS current - DESCRIPTION - "This trap is sent when the SNMP agent is exiting or closing down gracefully. - This may be triggered by a signal from the OS to stop this process. In many - implementations, it will be followed quickly by a restart of this vital process." - --#SEVERITY MINOR - ::= { xupsTrapOidDefined 50 } - - - --- --- Conformance-related definitions --- (Defined mostly to satisfy the MIB checkers.) --- -xupsConformance OBJECT IDENTIFIER ::= { xupsMIB 100 } - -xupsIdentFullGroup OBJECT-GROUP - OBJECTS { xupsIdentManufacturer, xupsIdentModel, - xupsIdentSoftwareVersion, xupsIdentOemCode } - STATUS current - DESCRIPTION - "The Full set of xupsIdent subgroup objects." - ::= { xupsConformance 2 } - -xupsBatteryFullGroup OBJECT-GROUP - OBJECTS { xupsBatTimeRemaining, xupsBatVoltage, xupsBatCurrent, - xupsBatCapacity, xupsBatteryAbmStatus, xupsBatteryLastReplacedDate } - STATUS current - DESCRIPTION - "The Full set of xupsBattery subgroup objects." - ::= { xupsConformance 3 } - -xupsInputFullGroup OBJECT-GROUP - OBJECTS { xupsInputFrequency, xupsInputLineBads, xupsInputNumPhases, - xupsInputSource, xupsDualInputStatus, xupsSecondaryInputWatch } - STATUS current - DESCRIPTION - "The Full set of xupsInput subgroup objects." - ::= { xupsConformance 4 } - -xupsInputTableFullGroup OBJECT-GROUP - OBJECTS { xupsInputPhase, xupsInputVoltage, xupsInputCurrent, xupsInputWatts } - STATUS current - DESCRIPTION - "The Full set of xupsInputTable subgroup objects." - ::= { xupsConformance 5 } - -xupsOutputFullGroup OBJECT-GROUP - OBJECTS { xupsOutputLoad, xupsOutputFrequency, xupsOutputNumPhases, xupsOutputSource } - STATUS current - DESCRIPTION - "The Full set of xupsOutput subgroup objects." - ::= { xupsConformance 6 } - -xupsOutputTableFullGroup OBJECT-GROUP - OBJECTS { xupsOutputPhase, xupsOutputVoltage, xupsOutputCurrent, xupsOutputWatts } - STATUS current - DESCRIPTION - "The Full set of xupsOutputTable subgroup objects." - ::= { xupsConformance 7 } - -xupsBypassFullGroup OBJECT-GROUP - OBJECTS { xupsBypassFrequency, xupsBypassNumPhases, xupsBypassPhase, xupsBypassVoltage } - STATUS current - DESCRIPTION - "The Full set of xupsBypass subgroup objects." - ::= { xupsConformance 8 } - -xupsEnvironmentFullGroup OBJECT-GROUP - OBJECTS { xupsEnvAmbientTemp, xupsEnvAmbientLowerLimit, - xupsEnvAmbientUpperLimit, xupsEnvAmbientHumidity } - STATUS current - DESCRIPTION - "The Full set of xupsEnvironment subgroup objects." - ::= { xupsConformance 9 } - -xupsAlarmFullGroup OBJECT-GROUP - OBJECTS { xupsAlarms, xupsAlarmID, xupsAlarmDescr, xupsAlarmTime } - STATUS current - DESCRIPTION - "The Full set of xupsAlarm subgroup objects." - ::= { xupsConformance 10 } - -xupsAlarmEventsFullGroup OBJECT-GROUP - OBJECTS { xupsAlarmNumEvents, xupsAlarmEventMsg } - STATUS current - DESCRIPTION - "The Full set of Alarm/Event history subgroup objects." - ::= { xupsConformance 11 } - -xupsTestFullGroup OBJECT-GROUP - OBJECTS { xupsTestStart, xupsTestBatteryStatus, xupsLastGeneralTest, xupsLastGeneralTestResult } - STATUS current - DESCRIPTION - "The Full set of xupsTest subgroup objects." - ::= { xupsConformance 12 } - -xupsControlFullGroup OBJECT-GROUP - OBJECTS { xupsControlOutputOffDelay, xupsControlOutputOnDelay, - xupsControlOutputOffTrapDelay, xupsControlToBypassDelay, - xupsLoadShedSecsWithRestart, xupsSwitchable } - STATUS current - DESCRIPTION - "The Full set of xupsControl subgroup objects." - ::= { xupsConformance 13 } - -xupsConfigFullGroup OBJECT-GROUP - OBJECTS { xupsConfigOutputVoltage, xupsConfigInputVoltage, xupsConfigOutputWatts, - xupsConfigOutputFreq, xupsConfigDateAndTime, xupsConfigLowOutputVoltageLimit, - xupsConfigHighOutputVoltageLimit, xupsConfigInstallDate } - STATUS current - DESCRIPTION - "The Full set of xupsConfig subgroup objects." - ::= { xupsConformance 14 } - -xupsTrapControlFullGroup OBJECT-GROUP - OBJECTS { xupsMaxTrapLevel, xupsSendTrapType, xupsTrapMessage, - xupsHeartbeatMinsInterval } - STATUS current - DESCRIPTION - "The Full set of xupsTrapControl subgroup objects." - ::= { xupsConformance 15 } - -xupsRecepFullGroup OBJECT-GROUP - OBJECTS { xupsNumReceptacles, xupsRecepIndex, xupsRecepStatus, - xupsRecepOffDelaySecs, xupsRecepOnDelaySecs, - xupsRecepAutoOffDelay, xupsRecepAutoOnDelay, xupsRecepShedSecsWithRestart } - STATUS current - DESCRIPTION - "The Full set of xupsRecep subgroup objects." - ::= { xupsConformance 16 } - -xupsTopologyFullGroup OBJECT-GROUP - OBJECTS { xupsTopologyType, xupsTopoMachineCode, - xupsTopoUnitNumber, xupsTopoPowerStrategy } - STATUS current - DESCRIPTION - "The Full set of xupsTopology subgroup objects." - ::= { xupsConformance 17 } - -xupstdNotifyGroup NOTIFICATION-GROUP - NOTIFICATIONS { xupstdControlOff, xupstdControlOn, xupstdOnBattery, xupstdLowBattery, - xupstdUtilityPowerRestored, xupstdReturnFromLowBattery, - xupstdOutputOverload, xupstdInternalFailure, xupstdBatteryDischarged, - xupstdInverterFailure, xupstdOnBypass, xupstdBypassNotAvailable, - xupstdOutputOff, xupstdInputFailure, xupstdBuildingAlarm, - xupstdShutdownImminent, xupstdOnInverter, xupstdBreakerOpen, - xupstdAlarmEntryAdded, xupstdAlarmEntryRemoved, xupstdAlarmBatteryBad, - xupstdOutputOffAsRequested, xupstdDiagnosticTestFailed, - xupstdCommunicationsLost, xupstdUpsShutdownPending, xupstdAlarmTempBad, - xupstdAlarmTestInProgress, xupstdAmbientTempBad, xupstdLossOfRedundancy, - xupstdAlarmChargerFailed, xupstdAlarmFanFailure, xupstdAlarmFuseFailure, - xupstdPowerSwitchBad, xupstdModuleFailure, xupstdOnAlternatePowerSource, - xupstdAltPowerNotAvailable, xupstdNoticeCondition, xupstdHeartbeat, - xupstdDiagnosticTestPassed, xupstdOutputBad, xupstdAwaitingPower, - xupstdOnMaintenanceBypass, xupstdCommEstablished, xupstdAgentDown } - STATUS current - DESCRIPTION - "The Alarm and Event notifications from the xupsTrapDefined source (xupstd)." - ::= { xupsConformance 18 } - -xupstdEMPNotifyGroup NOTIFICATION-GROUP - NOTIFICATIONS { xupstdContactActiveNotice, xupstdContactInactiveNotice, - xupstdRemoteTempBad, xupstdRemoteHumidityBad } - STATUS current - DESCRIPTION - "The EMP's Alarm and Event notifications from the xupsTrapDefined source (xupstd)." - ::= { xupsConformance 19 } - - -xupsMibFullCompliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "A compliance statement for all of everything in this MIB." - MODULE -- this module - MANDATORY-GROUPS { xupsIdentFullGroup, xupsBatteryFullGroup, xupsInputFullGroup, - xupsInputTableFullGroup, xupsOutputFullGroup, xupsOutputTableFullGroup, - xupsBypassFullGroup, xupsEnvironmentFullGroup, xupsAlarmFullGroup, - xupsAlarmEventsFullGroup, xupsTestFullGroup, xupsControlFullGroup, - xupsConfigFullGroup, xupsTrapControlFullGroup, xupsRecepFullGroup, - xupsTopologyFullGroup, xupstdNotifyGroup, xupstdEMPNotifyGroup } - ::= { xupsConformance 20 } - -xupsDeprecatedGroup OBJECT-GROUP - OBJECTS { xupsAlarmEventDateAndTime, xupsAlarmEventKind, - xupsAlarmEventDescr, xupsControlOutputOnTrapDelay } - STATUS deprecated - DESCRIPTION - "Contains objects which are now deprecated." - ::= { xupsConformance 21 } - - - - - END - diff --git a/mibs/parse_mibs.py b/mibs/parse_mibs.py deleted file mode 100644 index d231cdf..0000000 --- a/mibs/parse_mibs.py +++ /dev/null @@ -1,54 +0,0 @@ -import json -import os -from parser.grammar import MibsGrammar -from parser.parse_tree import parse_tree -from parser.utils import remove_comments_from_mib - - -MIBS_FOLDER = 'orig/' -MIB_JSON_FOLDER = 'parsed/' - -GRAMMAR = MibsGrammar() - - -def read_mib_folder(): - for mib_name in os.listdir(MIBS_FOLDER): - if os.path.exists(os.path.join(MIB_JSON_FOLDER, mib_name + '.json')): - continue - read_mib_file(mib_name) - - -def read_mib_file(mib_name): - if os.path.exists(os.path.join(MIB_JSON_FOLDER, mib_name + '.json')): - raise Exception('mib already parsed') - - with open(os.path.join(MIBS_FOLDER, mib_name)) as f: - try: - line = f.read() - except UnicodeDecodeError: - raise Exception('invalid mib') - - line = remove_comments_from_mib(line) - res = GRAMMAR.parse(line) - if not res.is_valid: - raise Exception('invalid mib') - - node = res.tree.children[0] - if node.children[5].children: - for a in node.children[5].children[0].children[1].children: - imib_name = a.children[2].string - if not os.path.exists(os.path.join(MIBS_FOLDER, imib_name)): - raise Exception(f'invalid mib: missing import {imib_name}') - - mibname, mib = parse_tree(node) - if mibname != mib_name: - raise Exception(f'invalid mib: filename != {mibname}') - - with open(os.path.join(MIB_JSON_FOLDER, mib_name + '.json'), 'w') as f: - f.write(json.dumps(mib, indent=2)) - - -if __name__ == '__main__': - assert os.path.exists(MIBS_FOLDER) - assert os.path.exists(MIB_JSON_FOLDER) - read_mib_folder() diff --git a/mibs/parsed/AH-INTERFACE-MIB.json b/mibs/parsed/AH-INTERFACE-MIB.json deleted file mode 100644 index d854d5e..0000000 --- a/mibs/parsed/AH-INTERFACE-MIB.json +++ /dev/null @@ -1,1167 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "IpAddress" - ] - ], - [ - "SNMPv2-TC", - [ - "TruthValue" - ] - ], - [ - "AH-SMI-MIB", - [ - "ahAPInterface", - "AhString", - "AhNodeID", - "AhInterfaceMode", - "AhInterfaceType", - "AhMACProtocol" - ] - ], - [ - "IF-MIB", - [ - "ifIndex", - "ifEntry" - ] - ] - ], - "ahInterface": { - "tp": "MODULE-IDENTITY", - "value": [ - "ahAPInterface", - 1 - ] - }, - "AhAuthenticationMethod": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "cwp", - "1": "open", - "2": "wep-open", - "3": "wep-shared", - "4": "wpa-psk", - "5": "wpa2-psk", - "6": "wpa-8021x", - "7": "wpa2-8021X", - "8": "wpa-auto-psk", - "9": "wpa-auto-8021x", - "10": "dynamic-wep" - } - }, - "display_hint": null - }, - "AhEncrytionMethod": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "AES", - "1": "TKIP", - "2": "WEP", - "3": "Non" - } - }, - "display_hint": null - }, - "ahXIfTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AhXIfEntry" - }, - "index": null, - "value": [ - "ahInterface", - 1 - ] - }, - "ahXIfEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhXIfEntry" - }, - "index": "ifEntry", - "value": [ - "ahXIfTable", - 1 - ] - }, - "AhXIfEntry": { - "tp": "SEQUENCE" - }, - "ahIfName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhString" - }, - "index": null, - "value": [ - "ahXIfEntry", - 1 - ] - }, - "ahSSIDName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhString" - }, - "index": null, - "value": [ - "ahXIfEntry", - 2 - ] - }, - "ahIfPromiscuous": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ahXIfEntry", - 3 - ] - }, - "ahIfType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhInterfaceType" - }, - "index": null, - "value": [ - "ahXIfEntry", - 4 - ] - }, - "ahIfMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhInterfaceMode" - }, - "index": null, - "value": [ - "ahXIfEntry", - 5 - ] - }, - "ahIfConfMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhInterfaceMode" - }, - "index": null, - "value": [ - "ahXIfEntry", - 6 - ] - }, - "ahAssociationTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AhAssociationEntry" - }, - "index": null, - "value": [ - "ahInterface", - 2 - ] - }, - "ahAssociationEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhAssociationEntry" - }, - "index": [ - "ifIndex", - "ahClientMac" - ], - "value": [ - "ahAssociationTable", - 1 - ] - }, - "AhAssociationEntry": { - "tp": "SEQUENCE" - }, - "ahClientMac": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhNodeID" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 1 - ] - }, - "ahClientIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 2 - ] - }, - "ahClientHostname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhString" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 3 - ] - }, - "ahClientRSSI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 4 - ] - }, - "ahClientLinkUptime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 5 - ] - }, - "ahClientCWPUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 6 - ] - }, - "ahClientAuthMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhAuthenticationMethod" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 7 - ] - }, - "ahClientEncryptionMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhEncrytionMethod" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 8 - ] - }, - "ahClientMACProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhMACProtocol" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 9 - ] - }, - "ahClientSSID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhString" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 10 - ] - }, - "ahClientVLAN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 11 - ] - }, - "ahClientUserProfId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 12 - ] - }, - "ahClientChannel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 13 - ] - }, - "ahClientLastTxRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 14 - ] - }, - "ahClientUsername": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhString" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 15 - ] - }, - "ahClientRxDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 16 - ] - }, - "ahClientRxDataOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 17 - ] - }, - "ahClientRxMgtFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 18 - ] - }, - "ahClientRxUnicastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 19 - ] - }, - "ahClientRxMulticastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 20 - ] - }, - "ahClientRxBroadcastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 21 - ] - }, - "ahClientRxMICFailures": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 22 - ] - }, - "ahClientTxDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 23 - ] - }, - "ahClientTxMgtFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 24 - ] - }, - "ahClientTxDataOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 25 - ] - }, - "ahClientTxUnicastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 26 - ] - }, - "ahClientTxMulticastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 27 - ] - }, - "ahClientTxBroadcastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 28 - ] - }, - "ahClientLastRxRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 29 - ] - }, - "ahClientTxBeDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 30 - ] - }, - "ahClientTxBgDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 31 - ] - }, - "ahClientTxViDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 32 - ] - }, - "ahClientTxVoDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 33 - ] - }, - "ahClientTxAirtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 34 - ] - }, - "ahClientRxAirtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 35 - ] - }, - "ahClientAssociationTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 36 - ] - }, - "ahClientBSSID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhNodeID" - }, - "index": null, - "value": [ - "ahAssociationEntry", - 37 - ] - }, - "ahRadioStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AhRadioStatsEntry" - }, - "index": null, - "value": [ - "ahInterface", - 3 - ] - }, - "ahRadioStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhRadioStatsEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "ahRadioStatsTable", - 1 - ] - }, - "AhRadioStatsEntry": { - "tp": "SEQUENCE" - }, - "ahRadioTxDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 1 - ] - }, - "ahRadioTxUnicastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 2 - ] - }, - "ahRadioTxMulticastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 3 - ] - }, - "ahRadioTxBroadcastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 4 - ] - }, - "ahRadioTxNonBeaconMgtFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 5 - ] - }, - "ahRadioTxBeaconFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 6 - ] - }, - "ahRadioTxTotalRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 7 - ] - }, - "ahRadioTxTotalFramesDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 8 - ] - }, - "ahRadioTxTotalFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 9 - ] - }, - "ahRadioTxFEForExcessiveHWRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 10 - ] - }, - "ahRadioRxTotalDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 11 - ] - }, - "ahRadioRxUnicastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 12 - ] - }, - "ahRadioRxMulticastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 13 - ] - }, - "ahRadioRxBroadcastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 14 - ] - }, - "ahRadioRxMgtFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 15 - ] - }, - "ahRadioRxTotalFrameDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 16 - ] - }, - "ahRadioTxBeDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 17 - ] - }, - "ahRadioTxBgDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 18 - ] - }, - "ahRadioTxViDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 19 - ] - }, - "ahRadioTxVoDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 20 - ] - }, - "ahRadioTXRTSFailures": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 21 - ] - }, - "ahRadioTxAirtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 22 - ] - }, - "ahRadioRxAirtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "ahRadioStatsEntry", - 23 - ] - }, - "ahVIfStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AhVIfStatsEntry" - }, - "index": null, - "value": [ - "ahInterface", - 4 - ] - }, - "ahVIfStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhVIfStatsEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "ahVIfStatsTable", - 1 - ] - }, - "AhVIfStatsEntry": { - "tp": "SEQUENCE" - }, - "ahVIfRxDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 1 - ] - }, - "ahVIfRxUnicastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 2 - ] - }, - "ahVIfRxMulticastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 3 - ] - }, - "ahVIfRxBroadcastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 4 - ] - }, - "ahVIfRxErrorFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 5 - ] - }, - "ahVIfRxDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 6 - ] - }, - "ahVIfTxDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 7 - ] - }, - "ahVIfTxUnicastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 8 - ] - }, - "ahVIfTxMulticastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 9 - ] - }, - "ahVIfTxBroadcastDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 10 - ] - }, - "ahVIfTxErrorFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 11 - ] - }, - "ahVIfTxDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 12 - ] - }, - "ahVIfTxBeDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 13 - ] - }, - "ahVIfTxBgDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 14 - ] - }, - "ahVIfTxViDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 15 - ] - }, - "ahVIfTxVoDataFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 16 - ] - }, - "ahVifTxAirtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 17 - ] - }, - "ahVifRxAirtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "ahVIfStatsEntry", - 18 - ] - }, - "ahRadioAttributeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AhRadioAttributeEntry" - }, - "index": null, - "value": [ - "ahInterface", - 5 - ] - }, - "ahRadioAttributeEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AhRadioAttributeEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "ahRadioAttributeTable", - 1 - ] - }, - "AhRadioAttributeEntry": { - "tp": "SEQUENCE" - }, - "ahRadioChannel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahRadioAttributeEntry", - 1 - ] - }, - "ahRadioTxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahRadioAttributeEntry", - 2 - ] - }, - "ahRadioNoiseFloor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ahRadioAttributeEntry", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/AH-SMI-MIB.json b/mibs/parsed/AH-SMI-MIB.json deleted file mode 100644 index f4e934f..0000000 --- a/mibs/parsed/AH-SMI-MIB.json +++ /dev/null @@ -1,155 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "enterprises" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "MacAddress" - ] - ] - ], - "aerohive": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 26928 - ] - }, - "ahProduct": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "aerohive", - 1 - ] - }, - "ahAP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahProduct", - 1 - ] - }, - "ahAPCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAP", - 1 - ] - }, - "ahAPTrap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAPCommon", - 1 - ] - }, - "ahAPInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAPCommon", - 2 - ] - }, - "ahAPMRP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAPCommon", - 3 - ] - }, - "ahAPIDP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAPCommon", - 4 - ] - }, - "ahAPHiveAP020-ag": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAP", - 2 - ] - }, - "ahAPHiveAP028-ag": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAP", - 3 - ] - }, - "ahAPHiveAP320-n": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAP", - 4 - ] - }, - "ahAPHiveAP340-n": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ahAP", - 5 - ] - }, - "AhString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "AhNodeID": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "MacAddress" - }, - "display_hint": null - }, - "AhInterfaceType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "ahPHYSICAL", - "1": "ahVIRTURAL" - } - }, - "display_hint": null - }, - "AhInterfaceMode": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "ahNotUsed", - "1": "ahAccess", - "2": "ahBackhaul", - "3": "ahBridge" - } - }, - "display_hint": null - }, - "AhMACProtocol": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "ah11a", - "1": "ah11b", - "2": "ah11g", - "3": "ah11na", - "4": "ah11ng" - } - }, - "display_hint": null - } -} \ No newline at end of file diff --git a/mibs/parsed/AH-SYSTEM-MIB.json b/mibs/parsed/AH-SYSTEM-MIB.json deleted file mode 100644 index 2cf4a5e..0000000 --- a/mibs/parsed/AH-SYSTEM-MIB.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "AH-SMI-MIB", - [ - "ahProduct" - ] - ] - ], - "ahSystem": { - "tp": "MODULE-IDENTITY", - "value": [ - "ahProduct", - 2 - ] - }, - "ahSystemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 1 - ] - }, - "ahSystemDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 2 - ] - }, - "ahCpuUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ahSystem", - 3 - ] - }, - "ahMemUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ahSystem", - 4 - ] - }, - "ahSystemSerial": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 5 - ] - }, - "ahDeviceMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 6 - ] - }, - "ahUpTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 7 - ] - }, - "ahHwVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 8 - ] - }, - "ahClientCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ahSystem", - 9 - ] - }, - "ahEnvirmentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ahSystem", - 10 - ] - }, - "ahEnvirmentFan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ahSystem", - 11 - ] - }, - "ahFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ahSystem", - 12 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/BDTMIB.json b/mibs/parsed/BDTMIB.json deleted file mode 100644 index 11d0437..0000000 --- a/mibs/parsed/BDTMIB.json +++ /dev/null @@ -1,309 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "RFC1155-SMI", - [ - "enterprises" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ] - ], - "bdt": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 20884 - ] - }, - "storage": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "bdt", - 10893 - ] - }, - "hardware": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storage", - 2 - ] - }, - "bDTagent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 101 - ] - }, - "bDTAgentInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "bDTagent", - 1 - ] - }, - "bDTDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTAgentInfo", - 1 - ] - }, - "bDTDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTAgentInfo", - 2 - ] - }, - "bDTAgentVendor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTAgentInfo", - 3 - ] - }, - "bDTAgentVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTAgentInfo", - 4 - ] - }, - "bDTGlobalData": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "bDTagent", - 2 - ] - }, - "bDTGlobalStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "ok", - "4": "non-critical", - "5": "critical", - "6": "non-Recoverable" - } - }, - "index": null, - "value": [ - "bDTGlobalData", - 1 - ] - }, - "bDTLastGlobalStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "ok", - "4": "non-critical", - "5": "critical", - "6": "non-recoverable" - } - }, - "index": null, - "value": [ - "bDTGlobalData", - 2 - ] - }, - "bDTTimeStamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "bDTGlobalData", - 3 - ] - }, - "bDTGetTimeOut": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "bDTGlobalData", - 4 - ] - }, - "bDTErrorCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTGlobalData", - 5 - ] - }, - "bDTRefreshRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "bDTGlobalData", - 6 - ] - }, - "bDTErrorData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTGlobalData", - 9 - ] - }, - "bDTDeviceInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "bDTagent", - 4 - ] - }, - "bDTDevSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTDeviceInfo", - 1 - ] - }, - "bDTDevVendorID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTDeviceInfo", - 2 - ] - }, - "bDTDevProductID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTDeviceInfo", - 3 - ] - }, - "bDTDevFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTDeviceInfo", - 4 - ] - }, - "bDTDevRobFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTDeviceInfo", - 5 - ] - }, - "bDTDevBootcodeRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "bDTDeviceInfo", - 6 - ] - }, - "bDTTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "bDTagent", - 3 - ] - }, - "bDTDriveNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "bDTTraps", - 13 - ] - }, - "bDTMagNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "bDTTraps", - 14 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/BRIDGE-MIB.json b/mibs/parsed/BRIDGE-MIB.json deleted file mode 100644 index 8599ec2..0000000 --- a/mibs/parsed/BRIDGE-MIB.json +++ /dev/null @@ -1,881 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "Counter32", - "Integer32", - "TimeTicks", - "mib-2" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "MacAddress" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "IF-MIB", - [ - "InterfaceIndex" - ] - ] - ], - "dot1dBridge": { - "tp": "MODULE-IDENTITY", - "value": [ - "mib-2", - 17 - ] - }, - "BridgeId": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "Timeout": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "d" - }, - "dot1dNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 0 - ] - }, - "dot1dBase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 1 - ] - }, - "dot1dStp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 2 - ] - }, - "dot1dSr": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 3 - ] - }, - "dot1dTp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 4 - ] - }, - "dot1dStatic": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 5 - ] - }, - "dot1dConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dBridge", - 8 - ] - }, - "dot1dBaseBridgeAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "dot1dBase", - 1 - ] - }, - "dot1dBaseNumPorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dBase", - 2 - ] - }, - "dot1dBaseType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "transparent-only", - "3": "sourceroute-only", - "4": "srt" - } - }, - "index": null, - "value": [ - "dot1dBase", - 3 - ] - }, - "dot1dBasePortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dBasePortEntry" - }, - "index": null, - "value": [ - "dot1dBase", - 4 - ] - }, - "dot1dBasePortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dBasePortEntry" - }, - "index": [ - "dot1dBasePort" - ], - "value": [ - "dot1dBasePortTable", - 1 - ] - }, - "Dot1dBasePortEntry": { - "tp": "SEQUENCE" - }, - "dot1dBasePort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dBasePortEntry", - 1 - ] - }, - "dot1dBasePortIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InterfaceIndex" - }, - "index": null, - "value": [ - "dot1dBasePortEntry", - 2 - ] - }, - "dot1dBasePortCircuit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "dot1dBasePortEntry", - 3 - ] - }, - "dot1dBasePortDelayExceededDiscards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dBasePortEntry", - 4 - ] - }, - "dot1dBasePortMtuExceededDiscards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dBasePortEntry", - 5 - ] - }, - "dot1dStpProtocolSpecification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "decLb100", - "3": "ieee8021d" - } - }, - "index": null, - "value": [ - "dot1dStp", - 1 - ] - }, - "dot1dStpPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStp", - 2 - ] - }, - "dot1dStpTimeSinceTopologyChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "dot1dStp", - 3 - ] - }, - "dot1dStpTopChanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dStp", - 4 - ] - }, - "dot1dStpDesignatedRoot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BridgeId" - }, - "index": null, - "value": [ - "dot1dStp", - 5 - ] - }, - "dot1dStpRootCost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStp", - 6 - ] - }, - "dot1dStpRootPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStp", - 7 - ] - }, - "dot1dStpMaxAge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Timeout" - }, - "index": null, - "value": [ - "dot1dStp", - 8 - ] - }, - "dot1dStpHelloTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Timeout" - }, - "index": null, - "value": [ - "dot1dStp", - 9 - ] - }, - "dot1dStpHoldTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStp", - 10 - ] - }, - "dot1dStpForwardDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Timeout" - }, - "index": null, - "value": [ - "dot1dStp", - 11 - ] - }, - "dot1dStpBridgeMaxAge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Timeout" - }, - "index": null, - "value": [ - "dot1dStp", - 12 - ] - }, - "dot1dStpBridgeHelloTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Timeout" - }, - "index": null, - "value": [ - "dot1dStp", - 13 - ] - }, - "dot1dStpBridgeForwardDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Timeout" - }, - "index": null, - "value": [ - "dot1dStp", - 14 - ] - }, - "dot1dStpPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dStpPortEntry" - }, - "index": null, - "value": [ - "dot1dStp", - 15 - ] - }, - "dot1dStpPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dStpPortEntry" - }, - "index": [ - "dot1dStpPort" - ], - "value": [ - "dot1dStpPortTable", - 1 - ] - }, - "Dot1dStpPortEntry": { - "tp": "SEQUENCE" - }, - "dot1dStpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 1 - ] - }, - "dot1dStpPortPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 2 - ] - }, - "dot1dStpPortState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "blocking", - "3": "listening", - "4": "learning", - "5": "forwarding", - "6": "broken" - } - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 3 - ] - }, - "dot1dStpPortEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 4 - ] - }, - "dot1dStpPortPathCost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 5 - ] - }, - "dot1dStpPortDesignatedRoot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BridgeId" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 6 - ] - }, - "dot1dStpPortDesignatedCost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 7 - ] - }, - "dot1dStpPortDesignatedBridge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BridgeId" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 8 - ] - }, - "dot1dStpPortDesignatedPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 9 - ] - }, - "dot1dStpPortForwardTransitions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 10 - ] - }, - "dot1dStpPortPathCost32": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStpPortEntry", - 11 - ] - }, - "dot1dTpLearnedEntryDiscards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTp", - 1 - ] - }, - "dot1dTpAgingTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dTp", - 2 - ] - }, - "dot1dTpFdbTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dTpFdbEntry" - }, - "index": null, - "value": [ - "dot1dTp", - 3 - ] - }, - "dot1dTpFdbEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dTpFdbEntry" - }, - "index": [ - "dot1dTpFdbAddress" - ], - "value": [ - "dot1dTpFdbTable", - 1 - ] - }, - "Dot1dTpFdbEntry": { - "tp": "SEQUENCE" - }, - "dot1dTpFdbAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "dot1dTpFdbEntry", - 1 - ] - }, - "dot1dTpFdbPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dTpFdbEntry", - 2 - ] - }, - "dot1dTpFdbStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "invalid", - "3": "learned", - "4": "self", - "5": "mgmt" - } - }, - "index": null, - "value": [ - "dot1dTpFdbEntry", - 3 - ] - }, - "dot1dTpPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dTpPortEntry" - }, - "index": null, - "value": [ - "dot1dTp", - 4 - ] - }, - "dot1dTpPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dTpPortEntry" - }, - "index": [ - "dot1dTpPort" - ], - "value": [ - "dot1dTpPortTable", - 1 - ] - }, - "Dot1dTpPortEntry": { - "tp": "SEQUENCE" - }, - "dot1dTpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dTpPortEntry", - 1 - ] - }, - "dot1dTpPortMaxInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dTpPortEntry", - 2 - ] - }, - "dot1dTpPortInFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTpPortEntry", - 3 - ] - }, - "dot1dTpPortOutFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTpPortEntry", - 4 - ] - }, - "dot1dTpPortInDiscards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTpPortEntry", - 5 - ] - }, - "dot1dStaticTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dStaticEntry" - }, - "index": null, - "value": [ - "dot1dStatic", - 1 - ] - }, - "dot1dStaticEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dStaticEntry" - }, - "index": [ - "dot1dStaticAddress", - "dot1dStaticReceivePort" - ], - "value": [ - "dot1dStaticTable", - 1 - ] - }, - "Dot1dStaticEntry": { - "tp": "SEQUENCE" - }, - "dot1dStaticAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "dot1dStaticEntry", - 1 - ] - }, - "dot1dStaticReceivePort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dot1dStaticEntry", - 2 - ] - }, - "dot1dStaticAllowedToGoTo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dot1dStaticEntry", - 3 - ] - }, - "dot1dStaticStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "invalid", - "3": "permanent", - "4": "deleteOnReset", - "5": "deleteOnTimeout" - } - }, - "index": null, - "value": [ - "dot1dStaticEntry", - 4 - ] - }, - "dot1dGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dConformance", - 1 - ] - }, - "dot1dCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dot1dConformance", - 2 - ] - }, - "dot1dBaseBridgeGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 1 - ] - }, - "dot1dBasePortGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 2 - ] - }, - "dot1dStpBridgeGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 3 - ] - }, - "dot1dStpPortGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 4 - ] - }, - "dot1dStpPortGroup2": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 5 - ] - }, - "dot1dStpPortGroup3": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 6 - ] - }, - "dot1dTpBridgeGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 7 - ] - }, - "dot1dTpFdbGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 8 - ] - }, - "dot1dTpGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 9 - ] - }, - "dot1dStaticGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "dot1dGroups", - 10 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/Brocade-REG-MIB.json b/mibs/parsed/Brocade-REG-MIB.json deleted file mode 100644 index 665f15a..0000000 --- a/mibs/parsed/Brocade-REG-MIB.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-IDENTITY", - "enterprises" - ] - ] - ], - "bcsi": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 1588 - ] - }, - "commDev": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bcsi", - 2 - ] - }, - "fibrechannel": { - "tp": "OBJECT-IDENTITY", - "value": [ - "commDev", - 1 - ] - }, - "nos": { - "tp": "OBJECT-IDENTITY", - "value": [ - "commDev", - 2 - ] - }, - "fcSwitch": { - "tp": "OBJECT-IDENTITY", - "value": [ - "fibrechannel", - 1 - ] - }, - "bcsiReg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bcsi", - 3 - ] - }, - "bcsiModules": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bcsiReg", - 1 - ] - }, - "brocadeAgentCapability": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bcsiReg", - 2 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/Brocade-TC.json b/mibs/parsed/Brocade-TC.json deleted file mode 100644 index 52ed0ec..0000000 --- a/mibs/parsed/Brocade-TC.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "IMPORTS": [ - [ - "Brocade-REG-MIB", - [ - "bcsiModules" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ], - [ - "SNMPv2-SMI", - [ - "Integer32", - "MODULE-IDENTITY" - ] - ] - ], - "bcsiModuleTC": { - "tp": "MODULE-IDENTITY", - "value": [ - "bcsiModules", - 2 - ] - }, - "FcWwn": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "SwDomainIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "SwNbIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "SwSensorIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "SwPortIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "SwTrunkMaster": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-ENTITY-SENSOR-MIB.json b/mibs/parsed/CISCO-ENTITY-SENSOR-MIB.json deleted file mode 100644 index ca090eb..0000000 --- a/mibs/parsed/CISCO-ENTITY-SENSOR-MIB.json +++ /dev/null @@ -1,476 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "Integer32" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "TimeStamp", - "TruthValue" - ] - ], - [ - "ENTITY-MIB", - [ - "entPhysicalIndex" - ] - ], - [ - "CISCO-TC", - [ - "EntPhysicalIndexOrZero" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ] - ], - "ciscoEntitySensorMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 91 - ] - }, - "entitySensorMIBObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEntitySensorMIB", - 1 - ] - }, - "entitySensorMIBNotificationPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEntitySensorMIB", - 2 - ] - }, - "entitySensorMIBConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEntitySensorMIB", - 3 - ] - }, - "SensorDataType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "voltsAC", - "4": "voltsDC", - "5": "amperes", - "6": "watts", - "7": "hertz", - "8": "celsius", - "9": "percentRH", - "10": "rpm", - "11": "cmm", - "12": "truthvalue", - "13": "specialEnum", - "14": "dBm", - "15": "dB" - } - }, - "display_hint": null - }, - "SensorDataScale": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yocto", - "2": "zepto", - "3": "atto", - "4": "femto", - "5": "pico", - "6": "nano", - "7": "micro", - "8": "milli", - "9": "units", - "10": "kilo", - "11": "mega", - "12": "giga", - "13": "tera", - "14": "exa", - "15": "peta", - "16": "zetta", - "17": "yotta" - } - }, - "display_hint": null - }, - "SensorPrecision": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "SensorValue": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "SensorStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "unavailable", - "3": "nonoperational" - } - }, - "display_hint": null - }, - "SensorValueUpdateRate": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "SensorThresholdSeverity": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "10": "minor", - "20": "major", - "30": "critical" - } - }, - "display_hint": null - }, - "SensorThresholdRelation": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lessThan", - "2": "lessOrEqual", - "3": "greaterThan", - "4": "greaterOrEqual", - "5": "equalTo", - "6": "notEqualTo" - } - }, - "display_hint": null - }, - "entSensorValues": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "entitySensorMIBObjects", - 1 - ] - }, - "entSensorThresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "entitySensorMIBObjects", - 2 - ] - }, - "entSensorGlobalObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "entitySensorMIBObjects", - 3 - ] - }, - "entSensorValueTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EntSensorValueEntry" - }, - "index": null, - "value": [ - "entSensorValues", - 1 - ] - }, - "entSensorValueEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntSensorValueEntry" - }, - "index": [ - "entPhysicalIndex" - ], - "value": [ - "entSensorValueTable", - 1 - ] - }, - "EntSensorValueEntry": { - "tp": "SEQUENCE" - }, - "entSensorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorDataType" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 1 - ] - }, - "entSensorScale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorDataScale" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 2 - ] - }, - "entSensorPrecision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorPrecision" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 3 - ] - }, - "entSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorValue" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 4 - ] - }, - "entSensorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorStatus" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 5 - ] - }, - "entSensorValueTimeStamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 6 - ] - }, - "entSensorValueUpdateRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorValueUpdateRate" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 7 - ] - }, - "entSensorMeasuredEntity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntPhysicalIndexOrZero" - }, - "index": null, - "value": [ - "entSensorValueEntry", - 8 - ] - }, - "entSensorThresholdTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EntSensorThresholdEntry" - }, - "index": null, - "value": [ - "entSensorThresholds", - 1 - ] - }, - "entSensorThresholdEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntSensorThresholdEntry" - }, - "index": [ - "entPhysicalIndex", - "entSensorThresholdIndex" - ], - "value": [ - "entSensorThresholdTable", - 1 - ] - }, - "EntSensorThresholdEntry": { - "tp": "SEQUENCE" - }, - "entSensorThresholdIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "entSensorThresholdEntry", - 1 - ] - }, - "entSensorThresholdSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorThresholdSeverity" - }, - "index": null, - "value": [ - "entSensorThresholdEntry", - 2 - ] - }, - "entSensorThresholdRelation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorThresholdRelation" - }, - "index": null, - "value": [ - "entSensorThresholdEntry", - 3 - ] - }, - "entSensorThresholdValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SensorValue" - }, - "index": null, - "value": [ - "entSensorThresholdEntry", - 4 - ] - }, - "entSensorThresholdEvaluation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "entSensorThresholdEntry", - 5 - ] - }, - "entSensorThresholdNotificationEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "entSensorThresholdEntry", - 6 - ] - }, - "entSensorThreshNotifGlobalEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "entSensorGlobalObjects", - 1 - ] - }, - "entitySensorMIBNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "entitySensorMIBNotificationPrefix", - 0 - ] - }, - "entitySensorMIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "entitySensorMIBConformance", - 1 - ] - }, - "entitySensorMIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "entitySensorMIBConformance", - 2 - ] - }, - "entitySensorValueGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "entitySensorMIBGroups", - 1 - ] - }, - "entitySensorThresholdGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "entitySensorMIBGroups", - 2 - ] - }, - "entitySensorValueGroupSup1": { - "tp": "OBJECT-GROUP", - "value": [ - "entitySensorMIBGroups", - 4 - ] - }, - "entitySensorNotifCtrlGlobalGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "entitySensorMIBGroups", - 5 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-ENVMON-MIB.json b/mibs/parsed/CISCO-ENVMON-MIB.json deleted file mode 100644 index 63b08a3..0000000 --- a/mibs/parsed/CISCO-ENVMON-MIB.json +++ /dev/null @@ -1,582 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "Gauge32", - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString", - "TruthValue" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ] - ], - "ciscoEnvMonMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 13 - ] - }, - "CiscoEnvMonState": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "warning", - "3": "critical", - "4": "shutdown", - "5": "notPresent", - "6": "notFunctioning" - } - }, - "display_hint": null - }, - "CiscoSignedGauge": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "ciscoEnvMonObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIB", - 1 - ] - }, - "ciscoEnvMonPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "oldAgs", - "2": "ags", - "3": "c7000", - "4": "ci", - "6": "cAccessMon", - "7": "cat6000", - "8": "ubr7200", - "9": "cat4000", - "10": "c10000", - "11": "osr7600", - "12": "c7600", - "13": "c37xx", - "14": "other" - } - }, - "index": null, - "value": [ - "ciscoEnvMonObjects", - 1 - ] - }, - "ciscoEnvMonVoltageStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CiscoEnvMonVoltageStatusEntry" - }, - "index": null, - "value": [ - "ciscoEnvMonObjects", - 2 - ] - }, - "ciscoEnvMonVoltageStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonVoltageStatusEntry" - }, - "index": [ - "ciscoEnvMonVoltageStatusIndex" - ], - "value": [ - "ciscoEnvMonVoltageStatusTable", - 1 - ] - }, - "CiscoEnvMonVoltageStatusEntry": { - "tp": "SEQUENCE" - }, - "ciscoEnvMonVoltageStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 1 - ] - }, - "ciscoEnvMonVoltageStatusDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 2 - ] - }, - "ciscoEnvMonVoltageStatusValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoSignedGauge" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 3 - ] - }, - "ciscoEnvMonVoltageThresholdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 4 - ] - }, - "ciscoEnvMonVoltageThresholdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 5 - ] - }, - "ciscoEnvMonVoltageLastShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 6 - ] - }, - "ciscoEnvMonVoltageState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonState" - }, - "index": null, - "value": [ - "ciscoEnvMonVoltageStatusEntry", - 7 - ] - }, - "ciscoEnvMonTemperatureStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CiscoEnvMonTemperatureStatusEntry" - }, - "index": null, - "value": [ - "ciscoEnvMonObjects", - 3 - ] - }, - "ciscoEnvMonTemperatureStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonTemperatureStatusEntry" - }, - "index": [ - "ciscoEnvMonTemperatureStatusIndex" - ], - "value": [ - "ciscoEnvMonTemperatureStatusTable", - 1 - ] - }, - "CiscoEnvMonTemperatureStatusEntry": { - "tp": "SEQUENCE" - }, - "ciscoEnvMonTemperatureStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonTemperatureStatusEntry", - 1 - ] - }, - "ciscoEnvMonTemperatureStatusDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ciscoEnvMonTemperatureStatusEntry", - 2 - ] - }, - "ciscoEnvMonTemperatureStatusValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "ciscoEnvMonTemperatureStatusEntry", - 3 - ] - }, - "ciscoEnvMonTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonTemperatureStatusEntry", - 4 - ] - }, - "ciscoEnvMonTemperatureLastShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonTemperatureStatusEntry", - 5 - ] - }, - "ciscoEnvMonTemperatureState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonState" - }, - "index": null, - "value": [ - "ciscoEnvMonTemperatureStatusEntry", - 6 - ] - }, - "ciscoEnvMonFanStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CiscoEnvMonFanStatusEntry" - }, - "index": null, - "value": [ - "ciscoEnvMonObjects", - 4 - ] - }, - "ciscoEnvMonFanStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonFanStatusEntry" - }, - "index": [ - "ciscoEnvMonFanStatusIndex" - ], - "value": [ - "ciscoEnvMonFanStatusTable", - 1 - ] - }, - "CiscoEnvMonFanStatusEntry": { - "tp": "SEQUENCE" - }, - "ciscoEnvMonFanStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonFanStatusEntry", - 1 - ] - }, - "ciscoEnvMonFanStatusDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ciscoEnvMonFanStatusEntry", - 2 - ] - }, - "ciscoEnvMonFanState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonState" - }, - "index": null, - "value": [ - "ciscoEnvMonFanStatusEntry", - 3 - ] - }, - "ciscoEnvMonSupplyStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CiscoEnvMonSupplyStatusEntry" - }, - "index": null, - "value": [ - "ciscoEnvMonObjects", - 5 - ] - }, - "ciscoEnvMonSupplyStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonSupplyStatusEntry" - }, - "index": [ - "ciscoEnvMonSupplyStatusIndex" - ], - "value": [ - "ciscoEnvMonSupplyStatusTable", - 1 - ] - }, - "CiscoEnvMonSupplyStatusEntry": { - "tp": "SEQUENCE" - }, - "ciscoEnvMonSupplyStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoEnvMonSupplyStatusEntry", - 1 - ] - }, - "ciscoEnvMonSupplyStatusDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ciscoEnvMonSupplyStatusEntry", - 2 - ] - }, - "ciscoEnvMonSupplyState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoEnvMonState" - }, - "index": null, - "value": [ - "ciscoEnvMonSupplyStatusEntry", - 3 - ] - }, - "ciscoEnvMonSupplySource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ac", - "3": "dc", - "4": "externalPowerSupply", - "5": "internalRedundant" - } - }, - "index": null, - "value": [ - "ciscoEnvMonSupplyStatusEntry", - 4 - ] - }, - "ciscoEnvMonAlarmContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "minorVisual", - "1": "majorVisual", - "2": "criticalVisual", - "3": "minorAudible", - "4": "majorAudible", - "5": "criticalAudible", - "6": "input" - } - }, - "index": null, - "value": [ - "ciscoEnvMonObjects", - 6 - ] - }, - "ciscoEnvMonMIBNotificationEnables": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIB", - 2 - ] - }, - "ciscoEnvMonEnableShutdownNotification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoEnvMonMIBNotificationEnables", - 1 - ] - }, - "ciscoEnvMonEnableVoltageNotification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoEnvMonMIBNotificationEnables", - 2 - ] - }, - "ciscoEnvMonEnableTemperatureNotification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoEnvMonMIBNotificationEnables", - 3 - ] - }, - "ciscoEnvMonEnableFanNotification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoEnvMonMIBNotificationEnables", - 4 - ] - }, - "ciscoEnvMonEnableRedundantSupplyNotification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoEnvMonMIBNotificationEnables", - 5 - ] - }, - "ciscoEnvMonEnableStatChangeNotif": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoEnvMonMIBNotificationEnables", - 6 - ] - }, - "ciscoEnvMonMIBNotificationPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIB", - 3 - ] - }, - "ciscoEnvMonMIBNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIBNotificationPrefix", - 0 - ] - }, - "ciscoEnvMonMIBConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIB", - 4 - ] - }, - "ciscoEnvMonMIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIBConformance", - 1 - ] - }, - "ciscoEnvMonMIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoEnvMonMIBConformance", - 2 - ] - }, - "ciscoEnvMonMIBGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoEnvMonMIBGroups", - 1 - ] - }, - "ciscoEnvMonMIBGroupRev": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoEnvMonMIBGroups", - 2 - ] - }, - "ciscoEnvMonEnableStatChangeGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoEnvMonMIBGroups", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-FIREWALL-MIB.json b/mibs/parsed/CISCO-FIREWALL-MIB.json deleted file mode 100644 index f05ac06..0000000 --- a/mibs/parsed/CISCO-FIREWALL-MIB.json +++ /dev/null @@ -1,945 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "NOTIFICATION-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "Counter32", - "Gauge32", - "Unsigned32", - "IpAddress" - ] - ], - [ - "SNMPv2-TC", - [ - "DateAndTime", - "TEXTUAL-CONVENTION", - "RowPointer" - ] - ], - [ - "SNMP-FRAMEWORK-MIB", - [ - "SnmpAdminString" - ] - ], - [ - "IF-MIB", - [ - "InterfaceIndexOrZero" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ] - ], - "ciscoFirewallMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 147 - ] - }, - "ciscoFirewallMIBObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIB", - 1 - ] - }, - "cfwEvents": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIBObjects", - 1 - ] - }, - "cfwBasicEvents": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cfwEvents", - 1 - ] - }, - "cfwNetEvents": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cfwEvents", - 2 - ] - }, - "cfwSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIBObjects", - 2 - ] - }, - "cfwStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cfwSystem", - 1 - ] - }, - "cfwStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cfwSystem", - 2 - ] - }, - "ResourceStatistics": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "highUse", - "2": "highLoad", - "3": "maximum", - "4": "minimum", - "5": "low", - "6": "high", - "7": "average", - "8": "free", - "9": "inUse" - } - }, - "display_hint": null - }, - "Hardware": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memory", - "2": "disk", - "3": "power", - "4": "netInterface", - "5": "cpu", - "6": "primaryUnit", - "7": "secondaryUnit", - "8": "other" - } - }, - "display_hint": null - }, - "Services": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "otherFWService", - "2": "fileXferFtp", - "3": "fileXferTftp", - "4": "fileXferFtps", - "5": "loginTelnet", - "6": "loginRlogin", - "7": "loginTelnets", - "8": "remoteExecSunRPC", - "9": "remoteExecMSRPC", - "10": "remoteExecRsh", - "11": "remoteExecXserver", - "12": "webHttp", - "13": "webHttps", - "14": "mailSmtp", - "15": "multimediaStreamworks", - "16": "multimediaH323", - "17": "multimediaNetShow", - "18": "multimediaVDOLive", - "19": "multimediaRealAV", - "20": "multimediaRTSP", - "21": "dbOracle", - "22": "dbMSsql", - "23": "contInspProgLang", - "24": "contInspUrl", - "25": "directoryNis", - "26": "directoryDns", - "27": "directoryNetbiosns", - "28": "directoryNetbiosdgm", - "29": "directoryNetbiosssn", - "30": "directoryWins", - "31": "qryWhois", - "32": "qryFinger", - "33": "qryIdent", - "34": "fsNfsStatus", - "35": "fsNfs", - "36": "fsCifs", - "37": "protoIcmp", - "38": "protoTcp", - "39": "protoUdp", - "40": "protoIp", - "41": "protoSnmp" - } - }, - "display_hint": null - }, - "HardwareStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "up", - "3": "down", - "4": "error", - "5": "overTemp", - "6": "busy", - "7": "noMedia", - "8": "backup", - "9": "active", - "10": "standby" - } - }, - "display_hint": null - }, - "SecurityEvent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "dos", - "4": "recon", - "5": "pakFwd", - "6": "addrSpoof", - "7": "svcSpoof", - "8": "thirdParty", - "9": "complete", - "10": "invalPak", - "11": "illegCom", - "12": "policy" - } - }, - "display_hint": null - }, - "ContentInspectionEvent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "okay", - "3": "error", - "4": "found", - "5": "clean", - "6": "reject", - "7": "saved" - } - }, - "display_hint": null - }, - "ConnectionEvent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "accept", - "3": "error", - "4": "drop", - "5": "close", - "6": "timeout", - "7": "refused", - "8": "reset", - "9": "noResp" - } - }, - "display_hint": null - }, - "ConnectionStat": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "totalOpen", - "3": "currentOpen", - "4": "currentClosing", - "5": "currentHalfOpen", - "6": "currentInUse", - "7": "high" - } - }, - "display_hint": null - }, - "AccessEvent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "grant", - "3": "deny", - "4": "denyMult", - "5": "error" - } - }, - "display_hint": null - }, - "AuthenticationEvent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "succ", - "3": "error", - "4": "fail", - "5": "succPriv", - "6": "failPriv", - "7": "failMult" - } - }, - "display_hint": null - }, - "GenericEvent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "abnormal", - "2": "okay", - "3": "error" - } - }, - "display_hint": null - }, - "cfwBasicEventsTableLastRow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cfwBasicEvents", - 1 - ] - }, - "cfwBasicEventsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CfwBasicEventsEntry" - }, - "index": null, - "value": [ - "cfwBasicEvents", - 2 - ] - }, - "cfwBasicEventsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CfwBasicEventsEntry" - }, - "index": [ - "cfwBasicEventIndex" - ], - "value": [ - "cfwBasicEventsTable", - 1 - ] - }, - "CfwBasicEventsEntry": { - "tp": "SEQUENCE" - }, - "cfwBasicEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 1 - ] - }, - "cfwBasicEventTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 2 - ] - }, - "cfwBasicSecurityEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SecurityEvent" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 3 - ] - }, - "cfwBasicContentInspEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ContentInspectionEvent" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 4 - ] - }, - "cfwBasicConnectionEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnectionEvent" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 5 - ] - }, - "cfwBasicAccessEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AccessEvent" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 6 - ] - }, - "cfwBasicAuthenticationEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AuthenticationEvent" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 7 - ] - }, - "cfwBasicGenericEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "GenericEvent" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 8 - ] - }, - "cfwBasicEventDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 9 - ] - }, - "cfwBasicEventDetailsTableRow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowPointer" - }, - "index": null, - "value": [ - "cfwBasicEventsEntry", - 10 - ] - }, - "cfwNetEventsTableLastRow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cfwNetEvents", - 1 - ] - }, - "cfwNetEventsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CfwNetEventsEntry" - }, - "index": null, - "value": [ - "cfwNetEvents", - 2 - ] - }, - "cfwNetEventsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CfwNetEventsEntry" - }, - "index": [ - "cfwNetEventIndex" - ], - "value": [ - "cfwNetEventsTable", - 1 - ] - }, - "CfwNetEventsEntry": { - "tp": "SEQUENCE" - }, - "cfwNetEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 1 - ] - }, - "cfwNetEventInterface": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InterfaceIndexOrZero" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 2 - ] - }, - "cfwNetEventSrcIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 3 - ] - }, - "cfwNetEventInsideSrcIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 4 - ] - }, - "cfwNetEventDstIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 5 - ] - }, - "cfwNetEventInsideDstIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 6 - ] - }, - "cfwNetEventSrcIpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 7 - ] - }, - "cfwNetEventInsideSrcIpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 8 - ] - }, - "cfwNetEventDstIpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 9 - ] - }, - "cfwNetEventInsideDstIpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 10 - ] - }, - "cfwNetEventService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Services" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 11 - ] - }, - "cfwNetEventServiceInformation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 12 - ] - }, - "cfwNetEventIdentity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 13 - ] - }, - "cfwNetEventDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwNetEventsEntry", - 14 - ] - }, - "cfwHardwareStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CfwHardwareStatusEntry" - }, - "index": null, - "value": [ - "cfwStatus", - 1 - ] - }, - "cfwHardwareStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CfwHardwareStatusEntry" - }, - "index": [ - "cfwHardwareType" - ], - "value": [ - "cfwHardwareStatusTable", - 1 - ] - }, - "CfwHardwareStatusEntry": { - "tp": "SEQUENCE" - }, - "cfwHardwareType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Hardware" - }, - "index": null, - "value": [ - "cfwHardwareStatusEntry", - 1 - ] - }, - "cfwHardwareInformation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwHardwareStatusEntry", - 2 - ] - }, - "cfwHardwareStatusValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HardwareStatus" - }, - "index": null, - "value": [ - "cfwHardwareStatusEntry", - 3 - ] - }, - "cfwHardwareStatusDetail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwHardwareStatusEntry", - 4 - ] - }, - "cfwBufferStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CfwBufferStatsEntry" - }, - "index": null, - "value": [ - "cfwStatistics", - 1 - ] - }, - "cfwBufferStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CfwBufferStatsEntry" - }, - "index": [ - "cfwBufferStatSize", - "cfwBufferStatType" - ], - "value": [ - "cfwBufferStatsTable", - 1 - ] - }, - "CfwBufferStatsEntry": { - "tp": "SEQUENCE" - }, - "cfwBufferStatSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cfwBufferStatsEntry", - 1 - ] - }, - "cfwBufferStatType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ResourceStatistics" - }, - "index": null, - "value": [ - "cfwBufferStatsEntry", - 2 - ] - }, - "cfwBufferStatInformation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwBufferStatsEntry", - 3 - ] - }, - "cfwBufferStatValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cfwBufferStatsEntry", - 4 - ] - }, - "cfwConnectionStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CfwConnectionStatEntry" - }, - "index": null, - "value": [ - "cfwStatistics", - 2 - ] - }, - "cfwConnectionStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CfwConnectionStatEntry" - }, - "index": [ - "cfwConnectionStatService", - "cfwConnectionStatType" - ], - "value": [ - "cfwConnectionStatTable", - 1 - ] - }, - "CfwConnectionStatEntry": { - "tp": "SEQUENCE" - }, - "cfwConnectionStatService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Services" - }, - "index": null, - "value": [ - "cfwConnectionStatEntry", - 1 - ] - }, - "cfwConnectionStatType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnectionStat" - }, - "index": null, - "value": [ - "cfwConnectionStatEntry", - 2 - ] - }, - "cfwConnectionStatDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cfwConnectionStatEntry", - 3 - ] - }, - "cfwConnectionStatCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cfwConnectionStatEntry", - 4 - ] - }, - "cfwConnectionStatValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cfwConnectionStatEntry", - 5 - ] - }, - "ciscoFirewallMIBNotificationPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIB", - 2 - ] - }, - "ciscoFirewallMIBNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIBNotificationPrefix", - 0 - ] - }, - "ciscoFirewallMIBConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIB", - 3 - ] - }, - "ciscoFirewallMIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIBConformance", - 1 - ] - }, - "ciscoFirewallMIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoFirewallMIBConformance", - 2 - ] - }, - "ciscoFirewallMIBEventsGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoFirewallMIBGroups", - 1 - ] - }, - "ciscoFirewallMIBStatisticsGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoFirewallMIBGroups", - 2 - ] - }, - "ciscoFirewallMIBNotificationGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoFirewallMIBGroups", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-LWAPP-WLAN-MIB.json b/mibs/parsed/CISCO-LWAPP-WLAN-MIB.json deleted file mode 100644 index 51b419f..0000000 --- a/mibs/parsed/CISCO-LWAPP-WLAN-MIB.json +++ /dev/null @@ -1,2970 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Unsigned32", - "Integer32", - "Gauge32" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "SNMPv2-TC", - [ - "TimeStamp", - "TruthValue", - "RowStatus", - "DisplayString", - "StorageType", - "MacAddress" - ] - ], - [ - "SNMP-FRAMEWORK-MIB", - [ - "SnmpAdminString" - ] - ], - [ - "INET-ADDRESS-MIB", - [ - "InetAddressType", - "InetAddress" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ] - ], - "ciscoLwappWlanMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 512 - ] - }, - "ciscoLwappWlanMIBNotifs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIB", - 0 - ] - }, - "ciscoLwappWlanMIBObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIB", - 1 - ] - }, - "ciscoLwappWlanMIBConform": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIB", - 2 - ] - }, - "ciscoLwappWlanConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 1 - ] - }, - "ciscoLwappAPGroupsVlanConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 2 - ] - }, - "ciscoLwappWlan11uConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 3 - ] - }, - "ciscoLwappWlanServiceAdvertisementConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 4 - ] - }, - "ciscoLwappWlanHotSpot2Config": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 5 - ] - }, - "ciscoLwappAPGroupsHyperlocationConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 8 - ] - }, - "ciscoLwappAPGroupsPortConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBObjects", - 9 - ] - }, - "cLWlanConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanConfig", - 1 - ] - }, - "cLWlanConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanConfigEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlanConfigTable", - 1 - ] - }, - "CLWlanConfigEntry": { - "tp": "SEQUENCE" - }, - "cLWlanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 1 - ] - }, - "cLWlanRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 2 - ] - }, - "cLWlanProfileName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 3 - ] - }, - "cLWlanSsid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 4 - ] - }, - "cLWlanDiagChan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 5 - ] - }, - "cLWlanStorageType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StorageType" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 6 - ] - }, - "cLWlanIsWired": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 7 - ] - }, - "cLWlanIngressInterface": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 8 - ] - }, - "cLWlanNACSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 9 - ] - }, - "cLWlanWepKeyChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 10 - ] - }, - "cLWlanChdEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 11 - ] - }, - "cLWlan802dot11anDTIM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 12 - ] - }, - "cLWlan802dot11bgnDTIM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 13 - ] - }, - "cLWlanLoadBalancingEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 14 - ] - }, - "cLWlanBandSelectEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 15 - ] - }, - "cLWlanPassiveClientEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 16 - ] - }, - "cLWlanReAnchorRoamedVoiceClientsEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 17 - ] - }, - "cLWlanMulticastInterfaceEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 18 - ] - }, - "cLWlanMulticastInterface": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 19 - ] - }, - "cLWlanMulticastDirectEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 20 - ] - }, - "cLWlanNACPostureSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 21 - ] - }, - "cLWlanMaxClientsAccepted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 22 - ] - }, - "cLWlanScanDeferPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "bit0", - "1": "bit1", - "2": "bit2", - "3": "bit3", - "4": "bit4", - "5": "bit5", - "6": "bit6", - "7": "bit7" - } - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 23 - ] - }, - "cLWlanScanDeferTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 24 - ] - }, - "cLWlanLanSubType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "wirelessLan", - "2": "guestLan", - "3": "remoteLan", - "4": "other" - } - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 25 - ] - }, - "cLWlanWebAuthOnMacFilterFailureEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 26 - ] - }, - "cLWlanStaticIpTunnelingEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 27 - ] - }, - "cLWlanKtsCacSupportEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 28 - ] - }, - "cLWlanWifiDirectPolicyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "allow", - "3": "notAllow" - } - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 29 - ] - }, - "cLWlanWebAuthIPv6AclName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 30 - ] - }, - "cLWlanHotSpot2Enabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 31 - ] - }, - "cLWlanMaxClientsAllowedPerRadio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 32 - ] - }, - "cLWlanDhcpDeviceProfiling": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 33 - ] - }, - "cLWlanMacAuthOverDot1xEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 34 - ] - }, - "cLWlanUserTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 35 - ] - }, - "cLWlanUserIdleThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 36 - ] - }, - "cLWlanHttpDeviceProfiling": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 37 - ] - }, - "cLWlanHotSpotClearConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 38 - ] - }, - "cLWlanRadiusAuthFourthServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 39 - ] - }, - "cLWlanRadiusAuthFifthServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 40 - ] - }, - "cLWlanRadiusAuthSixthServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 41 - ] - }, - "cLWlanRadiusAcctFourthServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 42 - ] - }, - "cLWlanRadiusAcctFifthServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 43 - ] - }, - "cLWlanRadiusAcctSixthServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 44 - ] - }, - "cLWlanSelfAnchorEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 64 - ] - }, - "cLWlanUniversalAdmin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 65 - ] - }, - "cLWlan11acMuMimoEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigEntry", - 66 - ] - }, - "cLWlan11uTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11uEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 1 - ] - }, - "cLWlan11uEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11uEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlan11uTable", - 1 - ] - }, - "CLWlan11uEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11uStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 1 - ] - }, - "cLWlan11uInternetAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 2 - ] - }, - "cLWlan11uNetworkType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "invalid", - "2": "private", - "3": "privateWithGuestAccess", - "4": "chargeablePublicNetwork", - "5": "freePublicNetwork", - "6": "testOrEquipment", - "7": "wildcard", - "8": "personnalDeviceNetwork", - "9": "emgerencyServiceOnlyNetwork", - "255": "notConfigured" - } - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 3 - ] - }, - "cLWlan11uVenueGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unspecified", - "2": "assembly", - "3": "business", - "4": "educational", - "5": "factoryAndIndustrial", - "6": "institutional", - "7": "mercantile", - "8": "residential", - "9": "storage", - "10": "utilityAndMisc", - "11": "vehicular", - "12": "outdoor" - } - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 4 - ] - }, - "cLWlan11uVenueType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unspecified", - "2": "assembly", - "3": "business", - "4": "educational", - "5": "factoryAndIndustrial", - "6": "institutional", - "7": "mercantile", - "8": "residential", - "9": "storage", - "10": "utilityAndMisc", - "11": "vehicular", - "12": "outdoor" - } - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 5 - ] - }, - "cLWlan11uVenueName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 6 - ] - }, - "cLWlan11uHessid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 8 - ] - }, - "cLWlan11uNetworkAuthType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "acceptance", - "2": "enrollment", - "3": "redirection", - "4": "dnsRedirection", - "5": "notConfigured" - } - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 9 - ] - }, - "cLWlan11uIpAddressAvailIpv4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notAvailable", - "2": "public", - "3": "portRestricted", - "4": "singleNATPrivate", - "5": "doubleNATPrivate", - "6": "portRestrictedAndSingleNATPrivate", - "7": "portRestrictedAndDoubleNATPrivate", - "8": "unKnown" - } - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 10 - ] - }, - "cLWlan11uIpAddressAvailIpv6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notAvailable", - "2": "available", - "3": "unKnown" - } - }, - "index": null, - "value": [ - "cLWlan11uEntry", - 11 - ] - }, - "cLWlan11uOuiTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11uOuiEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 2 - ] - }, - "cLWlan11uOuiEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11uOuiEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlan11uOuiIndex" - ], - "value": [ - "cLWlan11uOuiTable", - 1 - ] - }, - "CLWlan11uOuiEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11uOuiIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlan11uOuiEntry", - 1 - ] - }, - "cLWlan11uOui": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLWlan11uOuiEntry", - 2 - ] - }, - "cLWlan11uOuiIsBeacon": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlan11uOuiEntry", - 3 - ] - }, - "cLWlan11uOuiRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlan11uOuiEntry", - 4 - ] - }, - "cLWlan11uOuiStorageType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StorageType" - }, - "index": null, - "value": [ - "cLWlan11uOuiEntry", - 5 - ] - }, - "cLWlan11uRealmTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11uRealmEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 3 - ] - }, - "cLWlan11uRealmEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11uRealmEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlan11uRealmIndex" - ], - "value": [ - "cLWlan11uRealmTable", - 1 - ] - }, - "CLWlan11uRealmEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11uRealmIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlan11uRealmEntry", - 1 - ] - }, - "cLWlan11uRealmName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlan11uRealmEntry", - 2 - ] - }, - "cLWlan11uRealmRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlan11uRealmEntry", - 3 - ] - }, - "cLWlan11uRealmEapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11uRealmEapEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 4 - ] - }, - "cLWlan11uRealmEapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11uRealmEapEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlan11uRealmIndex", - "cLWlan11uRealmEapIndex" - ], - "value": [ - "cLWlan11uRealmEapTable", - 1 - ] - }, - "CLWlan11uRealmEapEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11uRealmEapIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlan11uRealmEapEntry", - 1 - ] - }, - "cLWlan11uRealmEapMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "leap", - "3": "peap", - "4": "eapTls", - "5": "eapFast", - "6": "eapSim", - "7": "eapTtls", - "8": "eapAka" - } - }, - "index": null, - "value": [ - "cLWlan11uRealmEapEntry", - 2 - ] - }, - "cLWlan11uRealmEapRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlan11uRealmEapEntry", - 3 - ] - }, - "cLWlan11uRealmEapAuthTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11uRealmEapAuthEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 5 - ] - }, - "cLWlan11uRealmEapAuthEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11uRealmEapAuthEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlan11uRealmIndex", - "cLWlan11uRealmEapIndex", - "cLWlan11uRealmEapAuthIndex" - ], - "value": [ - "cLWlan11uRealmEapAuthTable", - 1 - ] - }, - "CLWlan11uRealmEapAuthEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11uRealmEapAuthIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlan11uRealmEapAuthEntry", - 1 - ] - }, - "cLWlan11uRealmEapAuthMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nonEapInnerAuthType", - "2": "innerAuthEapType", - "3": "credentialType", - "4": "tunneledEapCredentialType" - } - }, - "index": null, - "value": [ - "cLWlan11uRealmEapAuthEntry", - 2 - ] - }, - "cLWlan11uRealmEapAuthParam": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "pap", - "3": "chap", - "4": "mschap", - "5": "mschapV2", - "6": "leap", - "7": "peap", - "8": "eapTls", - "9": "eapFast", - "10": "eapSim", - "11": "eapTtls", - "12": "eapAka", - "13": "sim", - "14": "usim", - "15": "nfcSecure", - "16": "hardwareToken", - "17": "softToken", - "18": "certificate", - "19": "usernamePassword", - "20": "reserved", - "21": "anonynous", - "22": "vendorSpecific" - } - }, - "index": null, - "value": [ - "cLWlan11uRealmEapAuthEntry", - 3 - ] - }, - "cLWlan11uRealmEapAuthCredentialType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sim", - "2": "usim", - "3": "nfcSecure", - "4": "hardwareToken", - "5": "softToken", - "6": "certificate", - "7": "usernamePassword", - "8": "reserved", - "9": "anonynous", - "10": "vendorSpecific" - } - }, - "index": null, - "value": [ - "cLWlan11uRealmEapAuthEntry", - 4 - ] - }, - "cLWlan11uRealmEapAuthRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlan11uRealmEapAuthEntry", - 5 - ] - }, - "cLWlan11uDomainTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11uDomainEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 6 - ] - }, - "cLWlan11uDomainEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11uDomainEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlan11uDomainIndex" - ], - "value": [ - "cLWlan11uDomainTable", - 1 - ] - }, - "CLWlan11uDomainEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11uDomainIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlan11uDomainEntry", - 1 - ] - }, - "cLWlan11uDomainName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlan11uDomainEntry", - 2 - ] - }, - "cLWlan11uDomainRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlan11uDomainEntry", - 3 - ] - }, - "cLWlan11u3gppTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlan11u3gppEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlan11uConfig", - 7 - ] - }, - "cLWlan11u3gppEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlan11u3gppEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlan11u3gppIndex" - ], - "value": [ - "cLWlan11u3gppTable", - 1 - ] - }, - "CLWlan11u3gppEntry": { - "tp": "SEQUENCE" - }, - "cLWlan11u3gppIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlan11u3gppEntry", - 1 - ] - }, - "cLWlan11u3gppCountryCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLWlan11u3gppEntry", - 2 - ] - }, - "cLWlan11u3gppNetworkCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLWlan11u3gppEntry", - 3 - ] - }, - "cLWlan11u3gppRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlan11u3gppEntry", - 4 - ] - }, - "cLWlanServiceAdvertisementTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanServiceAdvertisementEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanServiceAdvertisementConfig", - 1 - ] - }, - "cLWlanServiceAdvertisementEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanServiceAdvertisementEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlanServiceAdvertisementTable", - 1 - ] - }, - "CLWlanServiceAdvertisementEntry": { - "tp": "SEQUENCE" - }, - "cLWlanServiceAdvertisementStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanServiceAdvertisementEntry", - 1 - ] - }, - "cLWlanServiceAdvertisementMsapServerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanServiceAdvertisementEntry", - 5 - ] - }, - "cLWlanHotSpot2OperatorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanHotSpot2OperatorEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanHotSpot2Config", - 1 - ] - }, - "cLWlanHotSpot2OperatorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanHotSpot2OperatorEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlanHotSpot2OperatorIndex" - ], - "value": [ - "cLWlanHotSpot2OperatorTable", - 1 - ] - }, - "CLWlanHotSpot2OperatorEntry": { - "tp": "SEQUENCE" - }, - "cLWlanHotSpot2OperatorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanHotSpot2OperatorEntry", - 1 - ] - }, - "cLWlanHotSpot2OperatorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanHotSpot2OperatorEntry", - 2 - ] - }, - "cLWlanHotSpot2OperatorLanguage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanHotSpot2OperatorEntry", - 3 - ] - }, - "cLWlanHotSpot2OperatorRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlanHotSpot2OperatorEntry", - 4 - ] - }, - "cLWlanHotSpot2PortConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanHotSpot2PortConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanHotSpot2Config", - 2 - ] - }, - "cLWlanHotSpot2PortConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanHotSpot2PortConfigEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlanHotSpot2PortConfigIndex" - ], - "value": [ - "cLWlanHotSpot2PortConfigTable", - 1 - ] - }, - "CLWlanHotSpot2PortConfigEntry": { - "tp": "SEQUENCE" - }, - "cLWlanHotSpot2PortConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanHotSpot2PortConfigEntry", - 1 - ] - }, - "cLWlanHotSpot2PortConfigIpProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "icmp", - "6": "ftp", - "17": "ikev2", - "50": "esp" - } - }, - "index": null, - "value": [ - "cLWlanHotSpot2PortConfigEntry", - 2 - ] - }, - "cLWlanHotSpot2PortConfigPortNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "icmp-esp", - "20": "ftp", - "22": "ssh", - "443": "ttls-vpn", - "500": "ikev2", - "1723": "pptp-vpn", - "4500": "ipsec-nat", - "5060": "voip" - } - }, - "index": null, - "value": [ - "cLWlanHotSpot2PortConfigEntry", - 3 - ] - }, - "cLWlanHotSpot2PortConfigStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open", - "3": "unknown" - } - }, - "index": null, - "value": [ - "cLWlanHotSpot2PortConfigEntry", - 4 - ] - }, - "cLWlanHotSpot2PortConfigRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlanHotSpot2PortConfigEntry", - 5 - ] - }, - "cLWlanHotSpot2ConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanHotSpot2ConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanHotSpot2Config", - 3 - ] - }, - "cLWlanHotSpot2ConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanHotSpot2ConfigEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlanHotSpot2ConfigTable", - 1 - ] - }, - "CLWlanHotSpot2ConfigEntry": { - "tp": "SEQUENCE" - }, - "cLWlanHotSpot2WanLinkStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "linkUp", - "2": "linkDown", - "3": "linkInTestState", - "4": "notConfigured" - } - }, - "index": null, - "value": [ - "cLWlanHotSpot2ConfigEntry", - 1 - ] - }, - "cLWlanHotSpot2WanSymLinkStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "different", - "2": "same" - } - }, - "index": null, - "value": [ - "cLWlanHotSpot2ConfigEntry", - 2 - ] - }, - "cLWlanHotSpot2WanDownLinkSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanHotSpot2ConfigEntry", - 3 - ] - }, - "cLWlanHotSpot2WanUpLinkSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanHotSpot2ConfigEntry", - 4 - ] - }, - "cLAPGroupsHyperlocationConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLAPGroupsHyperlocationConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappAPGroupsHyperlocationConfig", - 1 - ] - }, - "cLAPGroupsHyperlocationConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLAPGroupsHyperlocationConfigEntry" - }, - "index": [ - "cLAPGroupName" - ], - "value": [ - "cLAPGroupsHyperlocationConfigTable", - 1 - ] - }, - "CLAPGroupsHyperlocationConfigEntry": { - "tp": "SEQUENCE" - }, - "cLAPGroupsHyperlocationEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLAPGroupsHyperlocationConfigEntry", - 1 - ] - }, - "cLAPGroupsPakRssiThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cLAPGroupsHyperlocationConfigEntry", - 2 - ] - }, - "cLAPGroupsPakRssiThresholdTrigger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cLAPGroupsHyperlocationConfigEntry", - 3 - ] - }, - "cLAPGroupsPakRssiNtpIpAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "cLAPGroupsHyperlocationConfigEntry", - 4 - ] - }, - "cLAPGroupsPakRssiNtpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "cLAPGroupsHyperlocationConfigEntry", - 5 - ] - }, - "cLAPGroupsPortConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLAPGroupsPortConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappAPGroupsPortConfig", - 1 - ] - }, - "cLAPGroupsPortConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLAPGroupsPortConfigEntry" - }, - "index": [ - "cLAPGroupName", - "cLAPGroupsLANPortNumber" - ], - "value": [ - "cLAPGroupsPortConfigTable", - 1 - ] - }, - "CLAPGroupsPortConfigEntry": { - "tp": "SEQUENCE" - }, - "cLAPGroupsLANPortNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLAPGroupsPortConfigEntry", - 1 - ] - }, - "cLAPGroupsLANPortStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "cLAPGroupsPortConfigEntry", - 2 - ] - }, - "cLAPGroupsLANPortPoeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "notsupported", - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "cLAPGroupsPortConfigEntry", - 3 - ] - }, - "cLAPGroupsLANPortRlanName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLAPGroupsPortConfigEntry", - 4 - ] - }, - "cLAPGroupsLANPortRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLAPGroupsPortConfigEntry", - 5 - ] - }, - "cLAPGroupsExtModuleConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLAPGroupsExtModuleConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappAPGroupsPortConfig", - 2 - ] - }, - "cLAPGroupsExtModuleConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLAPGroupsExtModuleConfigEntry" - }, - "index": [ - "cLAPGroupName" - ], - "value": [ - "cLAPGroupsExtModuleConfigTable", - 1 - ] - }, - "CLAPGroupsExtModuleConfigEntry": { - "tp": "SEQUENCE" - }, - "cLAPGroupsExtModuleStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "cLAPGroupsExtModuleConfigEntry", - 1 - ] - }, - "cLAPGroupsExtModuleRlanName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLAPGroupsExtModuleConfigEntry", - 2 - ] - }, - "cLAPGroupsVlanConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLAPGroupsVlanConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappAPGroupsVlanConfig", - 1 - ] - }, - "cLAPGroupsVlanConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLAPGroupsVlanConfigEntry" - }, - "index": [ - "cLAPGroupName", - "cLWlanProfileName" - ], - "value": [ - "cLAPGroupsVlanConfigTable", - 1 - ] - }, - "CLAPGroupsVlanConfigEntry": { - "tp": "SEQUENCE" - }, - "cLAPGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 1 - ] - }, - "cLAPGroupsVlanMappingInterfaceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 2 - ] - }, - "cLAPGroupNACSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 3 - ] - }, - "cLAPGroupsVlanConfigRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 4 - ] - }, - "cLAPGroupsVlanConfigStorageType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StorageType" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 5 - ] - }, - "cLAPGroupsWlanOrderIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 6 - ] - }, - "cLAPGroupsVlanMappingInterfaceNameRev1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cLAPGroupsVlanConfigEntry", - 7 - ] - }, - "cLAPGroupsVenueConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLAPGroupsVenueConfigEntry" - }, - "index": null, - "value": [ - "ciscoLwappAPGroupsVlanConfig", - 2 - ] - }, - "cLAPGroupsVenueConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLAPGroupsVenueConfigEntry" - }, - "index": [ - "cLAPGroupName" - ], - "value": [ - "cLAPGroupsVenueConfigTable", - 1 - ] - }, - "CLAPGroupsVenueConfigEntry": { - "tp": "SEQUENCE" - }, - "cLAPGroupsVenueConfigVenueGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unspecified", - "2": "assembly", - "3": "business", - "4": "educational", - "5": "factoryAndIndustrial", - "6": "institutional", - "7": "mercantile", - "8": "residential", - "9": "storage", - "10": "utilityAndMisc", - "11": "vehicular", - "12": "outdoor" - } - }, - "index": null, - "value": [ - "cLAPGroupsVenueConfigEntry", - 1 - ] - }, - "cLAPGroupsVenueConfigVenueType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unspecified", - "2": "unspecifiedAssembly", - "3": "arena", - "4": "stadium", - "5": "passengerTerminal", - "6": "amphitheater", - "7": "amusementPark", - "8": "placeOfWorship", - "9": "conventionCenter", - "10": "library", - "11": "museum", - "12": "restaurant", - "13": "theater", - "14": "bar", - "15": "coffeeShop", - "16": "zooOrAquarium", - "17": "emergencyCoordinationCenter", - "18": "unspecifiedBusiness", - "19": "doctorOrDentistOffice", - "20": "bank", - "21": "fireStation", - "22": "policeStation", - "23": "postOffice", - "24": "professionalOffice", - "25": "researchAndDevelopmentFacility", - "26": "attorneyOffice", - "27": "unspecifiedEducational", - "28": "schoolPrimary", - "29": "schoolSecondary", - "30": "universityOrCollege", - "31": "unspecifiedFactoryAndIndustrial", - "32": "factory", - "33": "unspecifiedInstitutional", - "34": "hospital", - "35": "longTermCareFacility", - "36": "alcoholAndDrugRehabilitationCenter", - "37": "groupHome", - "38": "prisonOrJail", - "39": "unspecifiedMercantile", - "40": "retailStore", - "41": "groceryMarket", - "42": "atomotiveServiceStation", - "43": "shoppingMall", - "44": "gasStation", - "45": "unspecifiedResidential", - "46": "privateResidence", - "47": "hotelOrMotel", - "48": "dormitory", - "49": "boardingHouse", - "50": "unspecifiedStorage", - "51": "unspecifiedUtility", - "52": "unspecifiedVehicular", - "53": "automobileOrTruck", - "54": "airplane", - "55": "bus", - "56": "ferry", - "57": "shipOrBoat", - "58": "train", - "59": "motorBike", - "60": "unspecifiedOutdoor", - "61": "muniMeshNetwork", - "62": "cityPark", - "63": "restArea", - "64": "trafficControl", - "65": "busStop", - "66": "kiosk" - } - }, - "index": null, - "value": [ - "cLAPGroupsVenueConfigEntry", - 2 - ] - }, - "cLAPGroupsVenueConfigVenueName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLAPGroupsVenueConfigEntry", - 3 - ] - }, - "cLAPGroupsVenueConfigLanguage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLAPGroupsVenueConfigEntry", - 4 - ] - }, - "cLAPGroupsOperatingClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "class81", - "1": "class83", - "2": "class84", - "3": "class112", - "4": "class113", - "5": "class115", - "6": "class116", - "7": "class117", - "8": "class118", - "9": "class119", - "10": "class120", - "11": "class121", - "12": "class122", - "13": "class123", - "14": "class124", - "15": "class125", - "16": "class126", - "17": "class127" - } - }, - "index": null, - "value": [ - "cLAPGroupsVenueConfigEntry", - 5 - ] - }, - "cLAPGroupsMultipleVenueTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLAPGroupsMultipleVenueEntry" - }, - "index": null, - "value": [ - "ciscoLwappAPGroupsVlanConfig", - 3 - ] - }, - "cLAPGroupsMultipleVenueEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLAPGroupsMultipleVenueEntry" - }, - "index": [ - "cLAPGroupName", - "cLAPGroupsMultipleVenueLanguage" - ], - "value": [ - "cLAPGroupsMultipleVenueTable", - 1 - ] - }, - "CLAPGroupsMultipleVenueEntry": { - "tp": "SEQUENCE" - }, - "cLAPGroupsMultipleVenueLanguage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLAPGroupsMultipleVenueEntry", - 1 - ] - }, - "cLAPGroupsMultipleVenueName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLAPGroupsMultipleVenueEntry", - 2 - ] - }, - "cLAPGroupsMultipleVenueRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLAPGroupsMultipleVenueEntry", - 3 - ] - }, - "cLWlanConfigClientTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanConfigClientEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanConfig", - 2 - ] - }, - "cLWlanConfigClientEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanConfigClientEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlanConfigClientTable", - 1 - ] - }, - "CLWlanConfigClientEntry": { - "tp": "SEQUENCE" - }, - "cLWlanClientAclName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigClientEntry", - 1 - ] - }, - "cLWlanP2PBlocking": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "drop", - "3": "forwardUp" - } - }, - "index": null, - "value": [ - "cLWlanConfigClientEntry", - 2 - ] - }, - "cLWlanClientIPv6AclName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cLWlanConfigClientEntry", - 3 - ] - }, - "cLWlanConfigQosTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanConfigQosEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanConfig", - 3 - ] - }, - "cLWlanConfigQosEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanConfigQosEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlanConfigQosTable", - 1 - ] - }, - "CLWlanConfigQosEntry": { - "tp": "SEQUENCE" - }, - "cLWlanClientDSAverageDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 1 - ] - }, - "cLWlanClientUSAverageDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 2 - ] - }, - "cLWlanClientDSBurstDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 3 - ] - }, - "cLWlanClientUSBurstDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 4 - ] - }, - "cLWlanClientDSAvgRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 5 - ] - }, - "cLWlanClientUSAvgRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 6 - ] - }, - "cLWlanClientDSBurstRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 7 - ] - }, - "cLWlanClientUSBurstRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 8 - ] - }, - "cLWlanSsidDSAverageDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 9 - ] - }, - "cLWlanSsidUSAverageDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 10 - ] - }, - "cLWlanSsidDSBurstDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 11 - ] - }, - "cLWlanSsidUSBurstDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 12 - ] - }, - "cLWlanSsidDSAvgRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 13 - ] - }, - "cLWlanSsidUSAvgRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 14 - ] - }, - "cLWlanSsidDSBurstRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 15 - ] - }, - "cLWlanSsidUSBurstRealTimeDataRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigQosEntry", - 16 - ] - }, - "cLWlanConfigIosTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanConfigIosEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanConfig", - 4 - ] - }, - "cLWlanConfigIosEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanConfigIosEntry" - }, - "index": [ - "cLWlanIndex" - ], - "value": [ - "cLWlanConfigIosTable", - 1 - ] - }, - "CLWlanConfigIosEntry": { - "tp": "SEQUENCE" - }, - "cLWlanIosAccountingMethodListName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 1 - ] - }, - "cLWlanIosAuthenticationMethodListName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 2 - ] - }, - "cLWlanIosMacFilteringMethodListName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 3 - ] - }, - "cLWlanIosWebAuthMethodListName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 4 - ] - }, - "cLWlanIosQosUpStreamProfileName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 5 - ] - }, - "cLWlanIosQosDownStreamProfileName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 6 - ] - }, - "cLWlanIngressDHCPOption82Format": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 7 - ] - }, - "cLWlanIngressDHCPOption82Ascii": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 8 - ] - }, - "cLWlanIngressDHCPOption82Rid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 9 - ] - }, - "cLWlanIngressDHCPOption82Enable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 10 - ] - }, - "cLWlanIosScanDeferPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 11 - ] - }, - "cLWlanIosWebAuthParameterMapName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 12 - ] - }, - "cLWlanIosQosClientUpStreamProfileName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 13 - ] - }, - "cLWlanIosQosClientDownStreamProfileName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanConfigIosEntry", - 14 - ] - }, - "cLWlanFlexibleNetflowTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CLWlanFlexibleNetflowEntry" - }, - "index": null, - "value": [ - "ciscoLwappWlanConfig", - 5 - ] - }, - "cLWlanFlexibleNetflowEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CLWlanFlexibleNetflowEntry" - }, - "index": [ - "cLWlanIndex", - "cLWlanFlexibleNetflowPolicyTypeIndex" - ], - "value": [ - "cLWlanFlexibleNetflowTable", - 1 - ] - }, - "CLWlanFlexibleNetflowEntry": { - "tp": "SEQUENCE" - }, - "cLWlanFlexibleNetflowPolicyTypeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "none", - "1": "ipv4InputPolicy", - "2": "ipv4OutputPolicy", - "3": "ipv6InputPolicy", - "4": "ipv6OutputPolicy", - "5": "datalinkInputPolicy", - "6": "datalinkOutputPolicy" - } - }, - "index": null, - "value": [ - "cLWlanFlexibleNetflowEntry", - 1 - ] - }, - "cLWlanFlexibleNetflowMonitorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cLWlanFlexibleNetflowEntry", - 2 - ] - }, - "cLWlanFlexibleNetflowRowStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cLWlanFlexibleNetflowEntry", - 3 - ] - }, - "ciscoLwappWlanMIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBConform", - 1 - ] - }, - "ciscoLwappWlanMIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoLwappWlanMIBConform", - 2 - ] - }, - "ciscoLwappWlanConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 1 - ] - }, - "ciscoLwappWlanConfigGroupSup1": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 2 - ] - }, - "ciscoLwappWlanConfigClientGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 3 - ] - }, - "ciscoLwappWlan11uConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 4 - ] - }, - "ciscoLwappAPGroupsVlanConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 5 - ] - }, - "ciscoLwappWlanConfigGroupSup2": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 6 - ] - }, - "ciscoLwappWlanConfigClientGroupSup1": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 7 - ] - }, - "ciscoLwappWlanConfigGroupSup3": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 8 - ] - }, - "ciscoLwappWlan11uConfigGroupsup1": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 9 - ] - }, - "ciscoLwappWlanServiceAdvertisementConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 10 - ] - }, - "ciscoLwappWlanHotSpot2ConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 11 - ] - }, - "ciscoLwappWlanIosConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 12 - ] - }, - "ciscoLwappWlanQosConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 13 - ] - }, - "ciscoLwappWlanConfigGroupSup4": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 14 - ] - }, - "ciscoLwappWlan11uConfigGroupsup2": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 15 - ] - }, - "ciscoLwappWlanHotSpot2ConfigGroupSup1": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 16 - ] - }, - "ciscoLwappAPGroupsVlanConfigGroupSup1": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 17 - ] - }, - "cLAPGroupsVenueConfigGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 18 - ] - }, - "cLAPGroupsMultipleVenueGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 19 - ] - }, - "ciscoLwappWlanConfigClientGroupSup2": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 20 - ] - }, - "ciscoLwappWlanConfigFlexibleNetflowGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 21 - ] - }, - "ciscoLwappWlanConfigGroupSup5": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 22 - ] - }, - "ciscoLwappAPGroupsVlanConfigGroupSup2": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 23 - ] - }, - "ciscoLwappWlanConfigGroupSup6": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 24 - ] - }, - "ciscoLwappWlanConfigGroupSup7": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 25 - ] - }, - "ciscoLwappWlanConfigGroupSup8": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoLwappWlanMIBGroups", - 26 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-MEMORY-POOL-MIB.json b/mibs/parsed/CISCO-MEMORY-POOL-MIB.json deleted file mode 100644 index 3cf837e..0000000 --- a/mibs/parsed/CISCO-MEMORY-POOL-MIB.json +++ /dev/null @@ -1,310 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32", - "Gauge32", - "NOTIFICATION-TYPE" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString", - "TruthValue" - ] - ], - [ - "CISCO-QOS-PIB-MIB", - [ - "Percent" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ] - ], - "ciscoMemoryPoolMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 48 - ] - }, - "CiscoMemoryPoolTypes": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "ciscoMemoryPoolObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoMemoryPoolMIB", - 1 - ] - }, - "ciscoMemoryPoolTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CiscoMemoryPoolEntry" - }, - "index": null, - "value": [ - "ciscoMemoryPoolObjects", - 1 - ] - }, - "ciscoMemoryPoolEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoMemoryPoolEntry" - }, - "index": [ - "ciscoMemoryPoolType" - ], - "value": [ - "ciscoMemoryPoolTable", - 1 - ] - }, - "CiscoMemoryPoolEntry": { - "tp": "SEQUENCE" - }, - "ciscoMemoryPoolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoMemoryPoolTypes" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 1 - ] - }, - "ciscoMemoryPoolName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 2 - ] - }, - "ciscoMemoryPoolAlternate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 3 - ] - }, - "ciscoMemoryPoolValid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 4 - ] - }, - "ciscoMemoryPoolUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 5 - ] - }, - "ciscoMemoryPoolFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 6 - ] - }, - "ciscoMemoryPoolLargestFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 7 - ] - }, - "ciscoMemoryPoolLowMemoryNotifThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "ciscoMemoryPoolEntry", - 8 - ] - }, - "ciscoMemoryPoolUtilizationTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CiscoMemoryPoolUtilizationEntry" - }, - "index": null, - "value": [ - "ciscoMemoryPoolObjects", - 2 - ] - }, - "ciscoMemoryPoolUtilizationEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CiscoMemoryPoolUtilizationEntry" - }, - "index": "ciscoMemoryPoolEntry", - "value": [ - "ciscoMemoryPoolUtilizationTable", - 1 - ] - }, - "CiscoMemoryPoolUtilizationEntry": { - "tp": "SEQUENCE" - }, - "ciscoMemoryPoolUtilization1Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "ciscoMemoryPoolUtilizationEntry", - 1 - ] - }, - "ciscoMemoryPoolUtilization5Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "ciscoMemoryPoolUtilizationEntry", - 2 - ] - }, - "ciscoMemoryPoolUtilization10Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "ciscoMemoryPoolUtilizationEntry", - 3 - ] - }, - "ciscoMemoryPoolLowMemoryNotifEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "ciscoMemoryPoolObjects", - 3 - ] - }, - "ciscoMemoryPoolNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoMemoryPoolMIB", - 2 - ] - }, - "ciscoMemoryPoolMIBNotificationPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoMemoryPoolNotifications", - 0 - ] - }, - "ciscoMemoryPoolConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoMemoryPoolMIB", - 3 - ] - }, - "ciscoMemoryPoolCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoMemoryPoolConformance", - 1 - ] - }, - "ciscoMemoryPoolGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoMemoryPoolConformance", - 2 - ] - }, - "ciscoMemoryPoolGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoMemoryPoolGroups", - 1 - ] - }, - "ciscoMemoryPoolUtilizationGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoMemoryPoolGroups", - 2 - ] - }, - "ciscoMemoryPoolNotificationCtrlGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoMemoryPoolGroups", - 4 - ] - }, - "ciscoMemoryPoolGroupRev1": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoMemoryPoolGroups", - 5 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-PROCESS-MIB.json b/mibs/parsed/CISCO-PROCESS-MIB.json deleted file mode 100644 index 7132e06..0000000 --- a/mibs/parsed/CISCO-PROCESS-MIB.json +++ /dev/null @@ -1,1972 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Counter32", - "Gauge32", - "Unsigned32", - "NOTIFICATION-TYPE", - "Counter64" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "SNMPv2-TC", - [ - "TimeStamp", - "DisplayString", - "RowStatus", - "TruthValue", - "RowPointer", - "TEXTUAL-CONVENTION" - ] - ], - [ - "SNMP-FRAMEWORK-MIB", - [ - "SnmpAdminString" - ] - ], - [ - "HCNUM-TC", - [ - "CounterBasedGauge64" - ] - ], - [ - "CISCO-TC", - [ - "EntPhysicalIndexOrZero", - "Unsigned64" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ] - ], - "ciscoProcessMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 109 - ] - }, - "CPULoadAverage": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": "d" - }, - "ciscoProcessMIBObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIB", - 1 - ] - }, - "cpmCPU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBObjects", - 1 - ] - }, - "cpmProcess": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBObjects", - 2 - ] - }, - "cpmThread": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBObjects", - 3 - ] - }, - "cpmVirtualProcess": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBObjects", - 4 - ] - }, - "cpmCPUHistory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpmProcess", - 5 - ] - }, - "cpmCPUTotalTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmCPUTotalEntry" - }, - "index": null, - "value": [ - "cpmCPU", - 1 - ] - }, - "cpmCPUTotalEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmCPUTotalEntry" - }, - "index": [ - "cpmCPUTotalIndex" - ], - "value": [ - "cpmCPUTotalTable", - 1 - ] - }, - "CpmCPUTotalEntry": { - "tp": "SEQUENCE" - }, - "cpmCPUTotalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 1 - ] - }, - "cpmCPUTotalPhysicalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntPhysicalIndexOrZero" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 2 - ] - }, - "cpmCPUTotal5sec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 3 - ] - }, - "cpmCPUTotal1min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 4 - ] - }, - "cpmCPUTotal5min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 5 - ] - }, - "cpmCPUTotal5secRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 6 - ] - }, - "cpmCPUTotal1minRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 7 - ] - }, - "cpmCPUTotal5minRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 8 - ] - }, - "cpmCPUMonInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 9 - ] - }, - "cpmCPUTotalMonIntervalValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 10 - ] - }, - "cpmCPUInterruptMonIntervalValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 11 - ] - }, - "cpmCPUMemoryUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 12 - ] - }, - "cpmCPUMemoryFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 13 - ] - }, - "cpmCPUMemoryKernelReserved": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 14 - ] - }, - "cpmCPUMemoryLowest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 15 - ] - }, - "cpmCPUMemoryUsedOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 16 - ] - }, - "cpmCPUMemoryHCUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 17 - ] - }, - "cpmCPUMemoryFreeOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 18 - ] - }, - "cpmCPUMemoryHCFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 19 - ] - }, - "cpmCPUMemoryKernelReservedOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 20 - ] - }, - "cpmCPUMemoryHCKernelReserved": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 21 - ] - }, - "cpmCPUMemoryLowestOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 22 - ] - }, - "cpmCPUMemoryHCLowest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 23 - ] - }, - "cpmCPULoadAvg1min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CPULoadAverage" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 24 - ] - }, - "cpmCPULoadAvg5min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CPULoadAverage" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 25 - ] - }, - "cpmCPULoadAvg15min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CPULoadAverage" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 26 - ] - }, - "cpmCPUMemoryCommitted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 27 - ] - }, - "cpmCPUMemoryCommittedOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 28 - ] - }, - "cpmCPUMemoryHCCommitted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmCPUTotalEntry", - 29 - ] - }, - "cpmCoreTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmCoreEntry" - }, - "index": null, - "value": [ - "cpmCPU", - 2 - ] - }, - "cpmCoreEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmCoreEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmCoreIndex" - ], - "value": [ - "cpmCoreTable", - 1 - ] - }, - "CpmCoreEntry": { - "tp": "SEQUENCE" - }, - "cpmCoreIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 1 - ] - }, - "cpmCorePhysicalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntPhysicalIndexOrZero" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 2 - ] - }, - "cpmCore5sec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 3 - ] - }, - "cpmCore1min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 4 - ] - }, - "cpmCore5min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 5 - ] - }, - "cpmCoreLoadAvg1min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CPULoadAverage" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 6 - ] - }, - "cpmCoreLoadAvg5min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CPULoadAverage" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 7 - ] - }, - "cpmCoreLoadAvg15min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CPULoadAverage" - }, - "index": null, - "value": [ - "cpmCoreEntry", - 8 - ] - }, - "cpmProcessTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmProcessEntry" - }, - "index": null, - "value": [ - "cpmProcess", - 1 - ] - }, - "cpmProcessEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmProcessEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmProcessPID" - ], - "value": [ - "cpmProcessTable", - 1 - ] - }, - "CpmProcessEntry": { - "tp": "SEQUENCE" - }, - "cpmProcessPID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmProcessEntry", - 1 - ] - }, - "cpmProcessName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpmProcessEntry", - 2 - ] - }, - "cpmProcessuSecs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmProcessEntry", - 4 - ] - }, - "cpmProcessTimeCreated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "cpmProcessEntry", - 5 - ] - }, - "cpmProcessAverageUSecs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmProcessEntry", - 6 - ] - }, - "cpmProcessExtTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmProcessExtEntry" - }, - "index": null, - "value": [ - "cpmProcess", - 2 - ] - }, - "cpmProcessExtEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmProcessExtEntry" - }, - "index": "cpmProcessEntry", - "value": [ - "cpmProcessExtTable", - 1 - ] - }, - "CpmProcessExtEntry": { - "tp": "SEQUENCE" - }, - "cpmProcExtMemAllocated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 1 - ] - }, - "cpmProcExtMemFreed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 2 - ] - }, - "cpmProcExtInvoked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 3 - ] - }, - "cpmProcExtRuntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 4 - ] - }, - "cpmProcExtUtil5Sec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 5 - ] - }, - "cpmProcExtUtil1Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 6 - ] - }, - "cpmProcExtUtil5Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 7 - ] - }, - "cpmProcExtPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "high", - "3": "normal", - "4": "low", - "5": "notAssigned" - } - }, - "index": null, - "value": [ - "cpmProcessExtEntry", - 8 - ] - }, - "cpmProcessExtRevTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmProcessExtRevEntry" - }, - "index": null, - "value": [ - "cpmProcess", - 3 - ] - }, - "cpmProcessExtRevEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmProcessExtRevEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmProcessPID" - ], - "value": [ - "cpmProcessExtRevTable", - 1 - ] - }, - "CpmProcessExtRevEntry": { - "tp": "SEQUENCE" - }, - "cpmProcExtMemAllocatedRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 1 - ] - }, - "cpmProcExtMemFreedRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 2 - ] - }, - "cpmProcExtInvokedRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 3 - ] - }, - "cpmProcExtRuntimeRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 4 - ] - }, - "cpmProcExtUtil5SecRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 5 - ] - }, - "cpmProcExtUtil1MinRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 6 - ] - }, - "cpmProcExtUtil5MinRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 7 - ] - }, - "cpmProcExtPriorityRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "high", - "3": "normal", - "4": "low", - "5": "notAssigned" - } - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 8 - ] - }, - "cpmProcessType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "posix", - "3": "ios" - } - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 9 - ] - }, - "cpmProcessRespawn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 10 - ] - }, - "cpmProcessRespawnCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 11 - ] - }, - "cpmProcessRespawnAfterLastPatch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 12 - ] - }, - "cpmProcessMemoryCore": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "mainmem", - "3": "mainmemSharedmem", - "4": "mainmemText", - "5": "mainmemTextSharedmem", - "6": "sharedmem", - "7": "sparse", - "8": "off" - } - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 13 - ] - }, - "cpmProcessLastRestartUser": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 14 - ] - }, - "cpmProcessTextSegmentSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 15 - ] - }, - "cpmProcessDataSegmentSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 16 - ] - }, - "cpmProcessStackSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 17 - ] - }, - "cpmProcessDynamicMemorySize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 18 - ] - }, - "cpmProcExtMemAllocatedRevOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 19 - ] - }, - "cpmProcExtHCMemAllocatedRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 20 - ] - }, - "cpmProcExtMemFreedRevOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 21 - ] - }, - "cpmProcExtHCMemFreedRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 22 - ] - }, - "cpmProcessTextSegmentSizeOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 23 - ] - }, - "cpmProcessHCTextSegmentSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned64" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 24 - ] - }, - "cpmProcessDataSegmentSizeOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 25 - ] - }, - "cpmProcessHCDataSegmentSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 26 - ] - }, - "cpmProcessStackSizeOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 27 - ] - }, - "cpmProcessHCStackSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 28 - ] - }, - "cpmProcessDynamicMemorySizeOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 29 - ] - }, - "cpmProcessHCDynamicMemorySize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmProcessExtRevEntry", - 30 - ] - }, - "cpmCPUThresholdTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmCPUThresholdEntry" - }, - "index": null, - "value": [ - "cpmProcess", - 4 - ] - }, - "cpmCPUThresholdEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmCPUThresholdEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmCPUThresholdClass" - ], - "value": [ - "cpmCPUThresholdTable", - 1 - ] - }, - "CpmCPUThresholdEntry": { - "tp": "SEQUENCE" - }, - "cpmCPUThresholdClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "total", - "2": "interrupt", - "3": "process" - } - }, - "index": null, - "value": [ - "cpmCPUThresholdEntry", - 1 - ] - }, - "cpmCPURisingThresholdValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUThresholdEntry", - 2 - ] - }, - "cpmCPURisingThresholdPeriod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUThresholdEntry", - 3 - ] - }, - "cpmCPUFallingThresholdValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUThresholdEntry", - 4 - ] - }, - "cpmCPUFallingThresholdPeriod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUThresholdEntry", - 5 - ] - }, - "cpmCPUThresholdEntryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "cpmCPUThresholdEntry", - 6 - ] - }, - "cpmCPUHistoryThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUHistory", - 1 - ] - }, - "cpmCPUHistorySize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUHistory", - 2 - ] - }, - "cpmCPUHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmCPUHistoryEntry" - }, - "index": null, - "value": [ - "cpmCPUHistory", - 3 - ] - }, - "cpmCPUHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmCPUHistoryEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmCPUHistoryReportId" - ], - "value": [ - "cpmCPUHistoryTable", - 1 - ] - }, - "CpmCPUHistoryEntry": { - "tp": "SEQUENCE" - }, - "cpmCPUHistoryReportId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUHistoryEntry", - 1 - ] - }, - "cpmCPUHistoryReportSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUHistoryEntry", - 2 - ] - }, - "cpmCPUHistoryTotalUtil": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUHistoryEntry", - 3 - ] - }, - "cpmCPUHistoryInterruptUtil": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUHistoryEntry", - 4 - ] - }, - "cpmCPUHistoryCreatedTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "cpmCPUHistoryEntry", - 5 - ] - }, - "cpmThreadTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmThreadEntry" - }, - "index": null, - "value": [ - "cpmThread", - 1 - ] - }, - "cpmThreadEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmThreadEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmProcessPID", - "cpmThreadID" - ], - "value": [ - "cpmThreadTable", - 1 - ] - }, - "CpmThreadEntry": { - "tp": "SEQUENCE" - }, - "cpmThreadID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 1 - ] - }, - "cpmThreadName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 2 - ] - }, - "cpmThreadPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 3 - ] - }, - "cpmThreadState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "dead", - "3": "running", - "4": "ready", - "5": "stopped", - "6": "send", - "7": "receive", - "8": "reply", - "9": "stack", - "10": "waitpage", - "11": "sigsuspend", - "12": "sigwaitinfo", - "13": "nanosleep", - "14": "mutex", - "15": "condvar", - "16": "join", - "17": "intr", - "18": "sem" - } - }, - "index": null, - "value": [ - "cpmThreadEntry", - 4 - ] - }, - "cpmThreadBlockingProcess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowPointer" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 5 - ] - }, - "cpmThreadCpuUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 6 - ] - }, - "cpmThreadStackSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 7 - ] - }, - "cpmThreadStackSizeOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 8 - ] - }, - "cpmThreadHCStackSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmThreadEntry", - 9 - ] - }, - "cpmVirtualProcessTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmVirtualProcessEntry" - }, - "index": null, - "value": [ - "cpmVirtualProcess", - 1 - ] - }, - "cpmVirtualProcessEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmVirtualProcessEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmProcessPID", - "cpmVirtualProcessID" - ], - "value": [ - "cpmVirtualProcessTable", - 1 - ] - }, - "CpmVirtualProcessEntry": { - "tp": "SEQUENCE" - }, - "cpmVirtualProcessID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 1 - ] - }, - "cpmVirtualProcessName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 2 - ] - }, - "cpmVirtualProcessUtil5Sec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 3 - ] - }, - "cpmVirtualProcessUtil1Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 4 - ] - }, - "cpmVirtualProcessUtil5Min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 5 - ] - }, - "cpmVirtualProcessMemAllocated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 6 - ] - }, - "cpmVirtualProcessMemFreed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 7 - ] - }, - "cpmVirtualProcessInvokeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 8 - ] - }, - "cpmVirtualProcessRuntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 9 - ] - }, - "cpmVirtualProcessMemAllocatedOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 10 - ] - }, - "cpmVirtualProcessHCMemAllocated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 11 - ] - }, - "cpmVirtualProcessMemFreedOvrflw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 12 - ] - }, - "cpmVirtualProcessHCMemFreed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CounterBasedGauge64" - }, - "index": null, - "value": [ - "cpmVirtualProcessEntry", - 13 - ] - }, - "cpmCPUProcessHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpmCPUProcessHistoryEntry" - }, - "index": null, - "value": [ - "cpmCPUHistory", - 4 - ] - }, - "cpmCPUProcessHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpmCPUProcessHistoryEntry" - }, - "index": [ - "cpmCPUTotalIndex", - "cpmCPUHistoryReportId", - "cpmCPUProcessHistoryIndex" - ], - "value": [ - "cpmCPUProcessHistoryTable", - 1 - ] - }, - "CpmCPUProcessHistoryEntry": { - "tp": "SEQUENCE" - }, - "cpmCPUProcessHistoryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUProcessHistoryEntry", - 1 - ] - }, - "cpmCPUHistoryProcId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "cpmCPUProcessHistoryEntry", - 2 - ] - }, - "cpmCPUHistoryProcName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpmCPUProcessHistoryEntry", - 3 - ] - }, - "cpmCPUHistoryProcCreated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "cpmCPUProcessHistoryEntry", - 4 - ] - }, - "cpmCPUHistoryProcUtil": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cpmCPUProcessHistoryEntry", - 5 - ] - }, - "ciscoProcessMIBNotifPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIB", - 2 - ] - }, - "ciscoProcessMIBNotifs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBNotifPrefix", - 0 - ] - }, - "ciscoProcessMIBConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIB", - 3 - ] - }, - "cpmCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBConformance", - 1 - ] - }, - "cpmGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProcessMIBConformance", - 2 - ] - }, - "cpmCPUTotalGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 1 - ] - }, - "cpmProcessGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 2 - ] - }, - "cpmProcessExtGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 3 - ] - }, - "cpmCPUTotalGroupRev": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 4 - ] - }, - "cpmProcessExtGroupRev": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 5 - ] - }, - "cpmProcessGroupRev": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 6 - ] - }, - "cpmCPUTotalGroupRev1": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 7 - ] - }, - "cpmCPUThresholdGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 8 - ] - }, - "cpmCPUHistoryGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 9 - ] - }, - "cpmCPUPosixMemoryGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 11 - ] - }, - "cpmPosixProcessGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 12 - ] - }, - "cpmThreadGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 13 - ] - }, - "cpmVirtualProcessGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 14 - ] - }, - "cpmCPUTotalOverflowGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 15 - ] - }, - "cpmCPUTotalHCGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 16 - ] - }, - "cpmProcessExtRevOverflowGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 17 - ] - }, - "cpmProcessExtRevHCGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 18 - ] - }, - "cpmThreadOverflowGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 19 - ] - }, - "cpmThreadHCGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 20 - ] - }, - "cpmVirtualProcessOverflowGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 21 - ] - }, - "cpmVirtualProcessHCGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 22 - ] - }, - "cpmCPULoadAvgGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 23 - ] - }, - "cpmCPUTotalMemoryCommitGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 24 - ] - }, - "cpmCoreGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "cpmGroups", - 25 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-QOS-PIB-MIB.json b/mibs/parsed/CISCO-QOS-PIB-MIB.json deleted file mode 100644 index 255f27e..0000000 --- a/mibs/parsed/CISCO-QOS-PIB-MIB.json +++ /dev/null @@ -1,1966 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Counter64", - "Unsigned32", - "IpAddress" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString", - "MacAddress", - "TruthValue" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoPibToMib" - ] - ] - ], - "ciscoQosPIBMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoPibToMib", - 1 - ] - }, - "Dscp": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "QosLayer2Cos": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "QueueRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "oneQ", - "2": "twoQ", - "3": "threeQ", - "4": "fourQ", - "8": "eightQ", - "16": "sixteenQ", - "32": "thirtyTwoQ", - "64": "sixtyFourQ" - } - }, - "display_hint": null - }, - "ThresholdSetRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "zeroT", - "1": "oneT", - "2": "twoT", - "4": "fourT", - "8": "eightT" - } - }, - "display_hint": null - }, - "Percent": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "QosInterfaceQueueType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "oneQ1t", - "2": "oneQ2t", - "3": "oneQ4t", - "4": "oneQ8t", - "5": "twoQ1t", - "6": "twoQ2t", - "7": "twoQ4t", - "8": "twoQ8t", - "9": "threeQ1t", - "10": "threeQ2t", - "11": "threeQ4t", - "12": "threeQ8t", - "13": "fourQ1t", - "14": "fourQ2t", - "15": "fourQ4t", - "16": "fourQ8t", - "17": "eightQ1t", - "18": "eightQ2t", - "19": "eightQ4t", - "20": "eightQ8t", - "21": "sixteenQ1t", - "22": "sixteenQ2t", - "23": "sixteenQ4t", - "24": "sixtyfourQ1t", - "25": "sixtyfourQ2t", - "26": "sixtyfourQ4t", - "27": "oneP1Q0t", - "28": "oneP1Q4t", - "29": "oneP1Q8t", - "30": "oneP2Q1t", - "31": "oneP2Q2t", - "32": "oneP3Q1t", - "33": "oneP7Q8t", - "34": "oneP3Q8t", - "35": "sixteenQ8t", - "36": "oneP15Q8t", - "37": "oneP15Q1t", - "38": "oneP7Q1t", - "39": "oneP31Q1t", - "40": "thirtytwoQ1t", - "41": "thirtytwoQ8t", - "42": "oneP31Q8t", - "43": "oneP7Q4t", - "44": "oneP3Q4t", - "45": "oneP7Q2t" - } - }, - "display_hint": null - }, - "QosInterfaceTypeCapabilities": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "BITS", - "values": { - "0": "unspecified", - "1": "inputL2Classification", - "2": "inputIpClassification", - "3": "outputL2Classification", - "4": "outputIpClassification", - "19": "inputPortClassification", - "20": "outputPortClassification", - "5": "inputUflowPolicing", - "6": "inputAggregatePolicing", - "7": "outputUflowPolicing", - "8": "outputAggregatePolicing", - "9": "policeByMarkingDown", - "10": "policeByDropping", - "21": "inputUflowShaping", - "22": "inputAggregateShaping", - "23": "outputUflowShaping", - "24": "outputAggregateShaping", - "11": "fifo", - "12": "wrr", - "13": "wfq", - "14": "cq", - "15": "pq", - "16": "cbwfq", - "25": "pqWrr", - "26": "pqCbwfq", - "17": "tailDrop", - "18": "wred" - } - }, - "display_hint": null - }, - "RoleCombination": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "PolicyInstanceId": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "Unsigned64": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Counter64" - }, - "display_hint": null - }, - "qosPIBConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 1 - ] - }, - "qosDeviceConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 2 - ] - }, - "qosDevicePibIncarnationTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosDevicePibIncarnationEntry" - }, - "index": null, - "value": [ - "qosDeviceConfig", - 1 - ] - }, - "qosDevicePibIncarnationEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosDevicePibIncarnationEntry" - }, - "index": [ - "qosDeviceIncarnationId" - ], - "value": [ - "qosDevicePibIncarnationTable", - 1 - ] - }, - "QosDevicePibIncarnationEntry": { - "tp": "SEQUENCE" - }, - "qosDeviceIncarnationId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosDevicePibIncarnationEntry", - 1 - ] - }, - "qosDevicePdpName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "qosDevicePibIncarnationEntry", - 2 - ] - }, - "qosDevicePibIncarnation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "qosDevicePibIncarnationEntry", - 3 - ] - }, - "qosDevicePibTtl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosDevicePibIncarnationEntry", - 4 - ] - }, - "qosDeviceAttributeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosDeviceAttributeEntry" - }, - "index": null, - "value": [ - "qosDeviceConfig", - 2 - ] - }, - "qosDeviceAttributeEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosDeviceAttributeEntry" - }, - "index": [ - "qosDeviceAttributeId" - ], - "value": [ - "qosDeviceAttributeTable", - 1 - ] - }, - "QosDeviceAttributeEntry": { - "tp": "SEQUENCE" - }, - "qosDeviceAttributeId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosDeviceAttributeEntry", - 1 - ] - }, - "qosDevicePepDomain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "qosDeviceAttributeEntry", - 2 - ] - }, - "qosDevicePrimaryPdp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "qosDeviceAttributeEntry", - 3 - ] - }, - "qosDeviceSecondaryPdp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "qosDeviceAttributeEntry", - 4 - ] - }, - "qosDeviceMaxMessageSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosDeviceAttributeEntry", - 5 - ] - }, - "qosDeviceCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "unspecified", - "1": "layer2Cos", - "2": "ipPrecedence", - "3": "dscp" - } - }, - "index": null, - "value": [ - "qosDeviceAttributeEntry", - 6 - ] - }, - "qosInterfaceTypeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosInterfaceTypeEntry" - }, - "index": null, - "value": [ - "qosDeviceConfig", - 3 - ] - }, - "qosInterfaceTypeEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosInterfaceTypeEntry" - }, - "index": [ - "qosInterfaceTypeId" - ], - "value": [ - "qosInterfaceTypeTable", - 1 - ] - }, - "QosInterfaceTypeEntry": { - "tp": "SEQUENCE" - }, - "qosInterfaceTypeId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosInterfaceTypeEntry", - 1 - ] - }, - "qosInterfaceQueueType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosInterfaceQueueType" - }, - "index": null, - "value": [ - "qosInterfaceTypeEntry", - 2 - ] - }, - "qosInterfaceTypeRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosInterfaceTypeEntry", - 3 - ] - }, - "qosInterfaceTypeCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosInterfaceTypeCapabilities" - }, - "index": null, - "value": [ - "qosInterfaceTypeEntry", - 4 - ] - }, - "qosDomainConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 3 - ] - }, - "qosDiffServMappingTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosDiffServMappingEntry" - }, - "index": null, - "value": [ - "qosDomainConfig", - 1 - ] - }, - "qosDiffServMappingEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosDiffServMappingEntry" - }, - "index": [ - "qosDscp" - ], - "value": [ - "qosDiffServMappingTable", - 1 - ] - }, - "QosDiffServMappingEntry": { - "tp": "SEQUENCE" - }, - "qosDscp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosDiffServMappingEntry", - 1 - ] - }, - "qosMarkedDscp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosDiffServMappingEntry", - 2 - ] - }, - "qosL2Cos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosLayer2Cos" - }, - "index": null, - "value": [ - "qosDiffServMappingEntry", - 3 - ] - }, - "qosCosToDscpTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosCosToDscpEntry" - }, - "index": null, - "value": [ - "qosDomainConfig", - 2 - ] - }, - "qosCosToDscpEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosCosToDscpEntry" - }, - "index": [ - "qosCosToDscpCos" - ], - "value": [ - "qosCosToDscpTable", - 1 - ] - }, - "QosCosToDscpEntry": { - "tp": "SEQUENCE" - }, - "qosCosToDscpCos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosLayer2Cos" - }, - "index": null, - "value": [ - "qosCosToDscpEntry", - 1 - ] - }, - "qosCosToDscpDscp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosCosToDscpEntry", - 2 - ] - }, - "qosUnmatchedPolicy": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 4 - ] - }, - "qosUnmatchedPolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosUnmatchedPolicyEntry" - }, - "index": null, - "value": [ - "qosUnmatchedPolicy", - 1 - ] - }, - "qosUnmatchedPolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosUnmatchedPolicyEntry" - }, - "index": [ - "qosUnmatchedPolicyId" - ], - "value": [ - "qosUnmatchedPolicyTable", - 1 - ] - }, - "QosUnmatchedPolicyEntry": { - "tp": "SEQUENCE" - }, - "qosUnmatchedPolicyId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 1 - ] - }, - "qosUnmatchedPolicyRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 2 - ] - }, - "qosUnmatchedPolicyDirection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "in", - "1": "out" - } - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 3 - ] - }, - "qosUnmatchedPolicyDscp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 4 - ] - }, - "qosUnmatchedPolicyDscpTrusted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 5 - ] - }, - "qosUnmatchPolMicroFlowPolicerId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 6 - ] - }, - "qosUnmatchedPolicyAggregateId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosUnmatchedPolicyEntry", - 7 - ] - }, - "qosPolicer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 5 - ] - }, - "qosPolicerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosPolicerEntry" - }, - "index": null, - "value": [ - "qosPolicer", - 1 - ] - }, - "qosPolicerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosPolicerEntry" - }, - "index": [ - "qosPolicerId" - ], - "value": [ - "qosPolicerTable", - 1 - ] - }, - "QosPolicerEntry": { - "tp": "SEQUENCE" - }, - "qosPolicerId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosPolicerEntry", - 1 - ] - }, - "qosPolicerRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned64" - }, - "index": null, - "value": [ - "qosPolicerEntry", - 2 - ] - }, - "qosPolicerNormalBurst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosPolicerEntry", - 3 - ] - }, - "qosPolicerExcessBurst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosPolicerEntry", - 4 - ] - }, - "qosPolicerAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "drop", - "1": "mark", - "2": "shape" - } - }, - "index": null, - "value": [ - "qosPolicerEntry", - 5 - ] - }, - "qosAggregateTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosAggregateEntry" - }, - "index": null, - "value": [ - "qosPolicer", - 2 - ] - }, - "qosAggregateEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosAggregateEntry" - }, - "index": [ - "qosAggregateId" - ], - "value": [ - "qosAggregateTable", - 1 - ] - }, - "QosAggregateEntry": { - "tp": "SEQUENCE" - }, - "qosAggregateId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosAggregateEntry", - 1 - ] - }, - "qosAggregatePolicerId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosAggregateEntry", - 2 - ] - }, - "qosMacQos": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 6 - ] - }, - "qosMacClassificationTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosMacClassificationEntry" - }, - "index": null, - "value": [ - "qosMacQos", - 1 - ] - }, - "qosMacClassificationEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosMacClassificationEntry" - }, - "index": [ - "qosMacClassificationId" - ], - "value": [ - "qosMacClassificationTable", - 1 - ] - }, - "QosMacClassificationEntry": { - "tp": "SEQUENCE" - }, - "qosMacClassificationId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosMacClassificationEntry", - 1 - ] - }, - "qosDstMacVlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosMacClassificationEntry", - 2 - ] - }, - "qosDstMacAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "qosMacClassificationEntry", - 3 - ] - }, - "qosDstMacCos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosLayer2Cos" - }, - "index": null, - "value": [ - "qosMacClassificationEntry", - 4 - ] - }, - "qosIpQos": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 7 - ] - }, - "qosIpAceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIpAceEntry" - }, - "index": null, - "value": [ - "qosIpQos", - 1 - ] - }, - "qosIpAceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIpAceEntry" - }, - "index": [ - "qosIpAceId" - ], - "value": [ - "qosIpAceTable", - 1 - ] - }, - "QosIpAceEntry": { - "tp": "SEQUENCE" - }, - "qosIpAceId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 1 - ] - }, - "qosIpAceDstAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 2 - ] - }, - "qosIpAceDstAddrMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 3 - ] - }, - "qosIpAceSrcAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 4 - ] - }, - "qosIpAceSrcAddrMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 5 - ] - }, - "qosIpAceDscpMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 6 - ] - }, - "qosIpAceDscpMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 7 - ] - }, - "qosIpAceProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 8 - ] - }, - "qosIpAceDstL4PortMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 9 - ] - }, - "qosIpAceDstL4PortMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 10 - ] - }, - "qosIpAceSrcL4PortMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 11 - ] - }, - "qosIpAceSrcL4PortMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 12 - ] - }, - "qosIpAcePermit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "qosIpAceEntry", - 13 - ] - }, - "qosIpAclDefinitionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIpAclDefinitionEntry" - }, - "index": null, - "value": [ - "qosIpQos", - 2 - ] - }, - "qosIpAclDefinitionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIpAclDefinitionEntry" - }, - "index": [ - "qosIpAclDefinitionId" - ], - "value": [ - "qosIpAclDefinitionTable", - 1 - ] - }, - "QosIpAclDefinitionEntry": { - "tp": "SEQUENCE" - }, - "qosIpAclDefinitionId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclDefinitionEntry", - 1 - ] - }, - "qosIpAclId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclDefinitionEntry", - 2 - ] - }, - "qosIpAceOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosIpAclDefinitionEntry", - 3 - ] - }, - "qosIpAclDefAceId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclDefinitionEntry", - 4 - ] - }, - "qosIpAclActionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIpAclActionEntry" - }, - "index": null, - "value": [ - "qosIpQos", - 3 - ] - }, - "qosIpAclActionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIpAclActionEntry" - }, - "index": [ - "qosIpAclActionId" - ], - "value": [ - "qosIpAclActionTable", - 1 - ] - }, - "QosIpAclActionEntry": { - "tp": "SEQUENCE" - }, - "qosIpAclActionId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 1 - ] - }, - "qosIpAclActAclId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 2 - ] - }, - "qosIpAclInterfaceRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 3 - ] - }, - "qosIpAclInterfaceDirection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "in", - "1": "out" - } - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 4 - ] - }, - "qosIpAclOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 5 - ] - }, - "qosIpAclDscp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 6 - ] - }, - "qosIpAclDscpTrusted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 7 - ] - }, - "qosIpAclMicroFlowPolicerId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 8 - ] - }, - "qosIpAclAggregateId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIpAclActionEntry", - 9 - ] - }, - "qosIfParameters": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoQosPIBMIB", - 8 - ] - }, - "qosIfSchedulingPreferencesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIfSchedulingPreferenceEntry" - }, - "index": null, - "value": [ - "qosIfParameters", - 1 - ] - }, - "qosIfSchedulingPreferenceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIfSchedulingPreferenceEntry" - }, - "index": [ - "qosIfSchedulingPreferenceId" - ], - "value": [ - "qosIfSchedulingPreferencesTable", - 1 - ] - }, - "QosIfSchedulingPreferenceEntry": { - "tp": "SEQUENCE" - }, - "qosIfSchedulingPreferenceId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIfSchedulingPreferenceEntry", - 1 - ] - }, - "qosIfSchedulingRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIfSchedulingPreferenceEntry", - 2 - ] - }, - "qosIfSchedulingPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfSchedulingPreferenceEntry", - 3 - ] - }, - "qosIfSchedulingDiscipline": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "weightedFairQueueing", - "2": "weightedRoundRobin", - "3": "customQueueing", - "4": "priorityQueueing", - "5": "classBasedWFQ", - "6": "fifo", - "7": "pqWrr", - "8": "pqCbwfq" - } - }, - "index": null, - "value": [ - "qosIfSchedulingPreferenceEntry", - 4 - ] - }, - "qosIfSchedulingQueueType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosInterfaceQueueType" - }, - "index": null, - "value": [ - "qosIfSchedulingPreferenceEntry", - 5 - ] - }, - "qosIfDropPreferenceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIfDropPreferenceEntry" - }, - "index": null, - "value": [ - "qosIfParameters", - 2 - ] - }, - "qosIfDropPreferenceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIfDropPreferenceEntry" - }, - "index": [ - "qosIfDropPreferenceId" - ], - "value": [ - "qosIfDropPreferenceTable", - 1 - ] - }, - "QosIfDropPreferenceEntry": { - "tp": "SEQUENCE" - }, - "qosIfDropPreferenceId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIfDropPreferenceEntry", - 1 - ] - }, - "qosIfDropRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIfDropPreferenceEntry", - 2 - ] - }, - "qosIfDropPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfDropPreferenceEntry", - 3 - ] - }, - "qosIfDropDiscipline": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "qosIfDropWRED", - "2": "qosIfDropTailDrop" - } - }, - "index": null, - "value": [ - "qosIfDropPreferenceEntry", - 4 - ] - }, - "qosIfDscpAssignmentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIfDscpAssignmentEntry" - }, - "index": null, - "value": [ - "qosIfParameters", - 3 - ] - }, - "qosIfDscpAssignmentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIfDscpAssignmentEntry" - }, - "index": [ - "qosIfDscpAssignmentId" - ], - "value": [ - "qosIfDscpAssignmentTable", - 1 - ] - }, - "QosIfDscpAssignmentEntry": { - "tp": "SEQUENCE" - }, - "qosIfDscpAssignmentId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIfDscpAssignmentEntry", - 1 - ] - }, - "qosIfDscpRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIfDscpAssignmentEntry", - 2 - ] - }, - "qosIfQueueType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosInterfaceQueueType" - }, - "index": null, - "value": [ - "qosIfDscpAssignmentEntry", - 3 - ] - }, - "qosIfDscp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dscp" - }, - "index": null, - "value": [ - "qosIfDscpAssignmentEntry", - 4 - ] - }, - "qosIfQueue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfDscpAssignmentEntry", - 5 - ] - }, - "qosIfThresholdSet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfDscpAssignmentEntry", - 6 - ] - }, - "qosIfRedTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIfRedEntry" - }, - "index": null, - "value": [ - "qosIfParameters", - 4 - ] - }, - "qosIfRedEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIfRedEntry" - }, - "index": [ - "qosIfRedId" - ], - "value": [ - "qosIfRedTable", - 1 - ] - }, - "QosIfRedEntry": { - "tp": "SEQUENCE" - }, - "qosIfRedId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIfRedEntry", - 1 - ] - }, - "qosIfRedRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIfRedEntry", - 2 - ] - }, - "qosIfRedNumThresholdSets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ThresholdSetRange" - }, - "index": null, - "value": [ - "qosIfRedEntry", - 3 - ] - }, - "qosIfRedThresholdSet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfRedEntry", - 4 - ] - }, - "qosIfRedThresholdSetLower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "qosIfRedEntry", - 5 - ] - }, - "qosIfRedThresholdSetUpper": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "qosIfRedEntry", - 6 - ] - }, - "qosIfTailDropTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIfTailDropEntry" - }, - "index": null, - "value": [ - "qosIfParameters", - 5 - ] - }, - "qosIfTailDropEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIfTailDropEntry" - }, - "index": [ - "qosIfTailDropId" - ], - "value": [ - "qosIfTailDropTable", - 1 - ] - }, - "QosIfTailDropEntry": { - "tp": "SEQUENCE" - }, - "qosIfTailDropId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIfTailDropEntry", - 1 - ] - }, - "qosIfTailDropRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIfTailDropEntry", - 2 - ] - }, - "qosIfTailDropNumThresholdSets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ThresholdSetRange" - }, - "index": null, - "value": [ - "qosIfTailDropEntry", - 3 - ] - }, - "qosIfTailDropThresholdSet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfTailDropEntry", - 4 - ] - }, - "qosIfTailDropThresholdSetValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Percent" - }, - "index": null, - "value": [ - "qosIfTailDropEntry", - 5 - ] - }, - "qosIfWeightsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF QosIfWeightsEntry" - }, - "index": null, - "value": [ - "qosIfParameters", - 6 - ] - }, - "qosIfWeightsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QosIfWeightsEntry" - }, - "index": [ - "qosIfWeightsId" - ], - "value": [ - "qosIfWeightsTable", - 1 - ] - }, - "QosIfWeightsEntry": { - "tp": "SEQUENCE" - }, - "qosIfWeightsId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PolicyInstanceId" - }, - "index": null, - "value": [ - "qosIfWeightsEntry", - 1 - ] - }, - "qosIfWeightsRoles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RoleCombination" - }, - "index": null, - "value": [ - "qosIfWeightsEntry", - 2 - ] - }, - "qosIfWeightsNumQueues": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "QueueRange" - }, - "index": null, - "value": [ - "qosIfWeightsEntry", - 3 - ] - }, - "qosIfWeightsQueue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "qosIfWeightsEntry", - 4 - ] - }, - "qosIfWeightsDrainSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosIfWeightsEntry", - 5 - ] - }, - "qosIfWeightsQueueSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "qosIfWeightsEntry", - 6 - ] - }, - "qosPIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "qosPIBConformance", - 1 - ] - }, - "qosPIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "qosPIBConformance", - 2 - ] - }, - "qosDevicePibIncarnationTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 1 - ] - }, - "qosDeviceAttributeTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 2 - ] - }, - "qosInterfaceTypeTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 3 - ] - }, - "qosDiffServMappingTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 4 - ] - }, - "qosCosToDscpTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 5 - ] - }, - "qosUnmatchedPolicyTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 6 - ] - }, - "qosPolicerTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 7 - ] - }, - "qosAggregateTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 8 - ] - }, - "qosMacClassificationTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 9 - ] - }, - "qosIpAceTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 10 - ] - }, - "qosIpAclDefinitionTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 11 - ] - }, - "qosIpAclActionTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 12 - ] - }, - "qosIfSchedulingPreferencesTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 13 - ] - }, - "qosIfDropPreferenceTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 14 - ] - }, - "qosIfDscpAssignmentTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 15 - ] - }, - "qosIfRedTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 16 - ] - }, - "qosIfTailDropTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 17 - ] - }, - "qosIfWeightsTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "qosPIBGroups", - 18 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-SMI.json b/mibs/parsed/CISCO-SMI.json deleted file mode 100644 index f730c30..0000000 --- a/mibs/parsed/CISCO-SMI.json +++ /dev/null @@ -1,397 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-IDENTITY", - "enterprises" - ] - ] - ], - "cisco": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 9 - ] - }, - "ciscoProducts": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 1 - ] - }, - "local": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 2 - ] - }, - "temporary": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 3 - ] - }, - "pakmon": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 4 - ] - }, - "workgroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 5 - ] - }, - "otherEnterprises": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 6 - ] - }, - "ciscoSB": { - "tp": "OBJECT-IDENTITY", - "value": [ - "otherEnterprises", - 1 - ] - }, - "ciscoSMB": { - "tp": "OBJECT-IDENTITY", - "value": [ - "otherEnterprises", - 2 - ] - }, - "ciscoAgentCapability": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 7 - ] - }, - "ciscoConfig": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 8 - ] - }, - "ciscoMgmt": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 9 - ] - }, - "ciscoExperiment": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 10 - ] - }, - "ciscoAdmin": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 11 - ] - }, - "ciscoModules": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 12 - ] - }, - "lightstream": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 13 - ] - }, - "ciscoworks": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 14 - ] - }, - "newport": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 15 - ] - }, - "ciscoPartnerProducts": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 16 - ] - }, - "ciscoPolicy": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 17 - ] - }, - "ciscoPIB": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoPolicy", - 2 - ] - }, - "ciscoPolicyAuto": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 18 - ] - }, - "ciscoPibToMib": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoPolicyAuto", - 2 - ] - }, - "ciscoDomains": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 19 - ] - }, - "ciscoCIB": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 20 - ] - }, - "ciscoCibMmiGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoCIB", - 1 - ] - }, - "ciscoCibProvGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoCIB", - 2 - ] - }, - "ciscoPKI": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 21 - ] - }, - "ciscoLDAP": { - "tp": "OBJECT-IDENTITY", - "value": [ - "cisco", - 22 - ] - }, - "ciscoProxy": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoAdmin", - 1 - ] - }, - "ciscoPartyProxy": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProxy", - 1 - ] - }, - "ciscoContextProxy": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoProxy", - 2 - ] - }, - "ciscoRptrGroupObjectID": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoAdmin", - 2 - ] - }, - "ciscoUnknownRptrGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoRptrGroupObjectID", - 1 - ] - }, - "cisco2505RptrGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoRptrGroupObjectID", - 2 - ] - }, - "cisco2507RptrGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoRptrGroupObjectID", - 3 - ] - }, - "cisco2516RptrGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoRptrGroupObjectID", - 4 - ] - }, - "ciscoWsx5020RptrGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoRptrGroupObjectID", - 5 - ] - }, - "ciscoChipSets": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoAdmin", - 3 - ] - }, - "ciscoChipSetSaint1": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoChipSets", - 1 - ] - }, - "ciscoChipSetSaint2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoChipSets", - 2 - ] - }, - "ciscoChipSetSaint3": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoChipSets", - 3 - ] - }, - "ciscoChipSetSaint4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoChipSets", - 4 - ] - }, - "ciscoTDomains": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoDomains", - 99999 - ] - }, - "ciscoTDomainUdpIpv4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 1 - ] - }, - "ciscoTDomainUdpIpv6": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 2 - ] - }, - "ciscoTDomainTcpIpv4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 3 - ] - }, - "ciscoTDomainTcpIpv6": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 4 - ] - }, - "ciscoTDomainLocal": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 5 - ] - }, - "ciscoTDomainClns": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 6 - ] - }, - "ciscoTDomainCons": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 7 - ] - }, - "ciscoTDomainDdp": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 8 - ] - }, - "ciscoTDomainIpx": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 9 - ] - }, - "ciscoTDomainSctpIpv4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 10 - ] - }, - "ciscoTDomainSctpIpv6": { - "tp": "OBJECT-IDENTITY", - "value": [ - "ciscoTDomains", - 11 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-SYSLOG-MIB.json b/mibs/parsed/CISCO-SYSLOG-MIB.json deleted file mode 100644 index c3c5af7..0000000 --- a/mibs/parsed/CISCO-SYSLOG-MIB.json +++ /dev/null @@ -1,432 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "NOTIFICATION-TYPE", - "OBJECT-TYPE", - "Integer32", - "Counter32", - "Unsigned32" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString", - "TimeStamp", - "TruthValue", - "RowStatus" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "SNMP-FRAMEWORK-MIB", - [ - "SnmpAdminString" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoMgmt" - ] - ], - [ - "INET-ADDRESS-MIB", - [ - "InetAddress", - "InetAddressType" - ] - ] - ], - "ciscoSyslogMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoMgmt", - 41 - ] - }, - "ciscoSyslogMIBObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIB", - 1 - ] - }, - "clogBasic": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIBObjects", - 1 - ] - }, - "clogHistory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIBObjects", - 2 - ] - }, - "clogServer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIBObjects", - 3 - ] - }, - "SyslogSeverity": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "emergency", - "2": "alert", - "3": "critical", - "4": "error", - "5": "warning", - "6": "notice", - "7": "info", - "8": "debug" - } - }, - "display_hint": null - }, - "clogNotificationsSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "clogBasic", - 1 - ] - }, - "clogNotificationsEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "clogBasic", - 2 - ] - }, - "clogMaxSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SyslogSeverity" - }, - "index": null, - "value": [ - "clogBasic", - 3 - ] - }, - "clogMsgIgnores": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "clogBasic", - 4 - ] - }, - "clogMsgDrops": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "clogBasic", - 5 - ] - }, - "clogOriginIDType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "other", - "3": "hostName", - "4": "ipv4Address", - "5": "contextName", - "6": "userDefined" - } - }, - "index": null, - "value": [ - "clogBasic", - 6 - ] - }, - "clogOriginID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SnmpAdminString" - }, - "index": null, - "value": [ - "clogBasic", - 7 - ] - }, - "clogHistTableMaxLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "clogHistory", - 1 - ] - }, - "clogHistMsgsFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "clogHistory", - 2 - ] - }, - "clogHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ClogHistoryEntry" - }, - "index": null, - "value": [ - "clogHistory", - 3 - ] - }, - "clogHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClogHistoryEntry" - }, - "index": [ - "clogHistIndex" - ], - "value": [ - "clogHistoryTable", - 1 - ] - }, - "ClogHistoryEntry": { - "tp": "SEQUENCE" - }, - "clogHistIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "clogHistoryEntry", - 1 - ] - }, - "clogHistFacility": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "clogHistoryEntry", - 2 - ] - }, - "clogHistSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SyslogSeverity" - }, - "index": null, - "value": [ - "clogHistoryEntry", - 3 - ] - }, - "clogHistMsgName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "clogHistoryEntry", - 4 - ] - }, - "clogHistMsgText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "clogHistoryEntry", - 5 - ] - }, - "clogHistTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "clogHistoryEntry", - 6 - ] - }, - "clogMaxServers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "clogServer", - 1 - ] - }, - "clogServerConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ClogServerConfigEntry" - }, - "index": null, - "value": [ - "clogServer", - 2 - ] - }, - "clogServerConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClogServerConfigEntry" - }, - "index": [ - "clogServerAddrType", - "clogServerAddr" - ], - "value": [ - "clogServerConfigTable", - 1 - ] - }, - "ClogServerConfigEntry": { - "tp": "SEQUENCE" - }, - "clogServerAddrType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "clogServerConfigEntry", - 1 - ] - }, - "clogServerAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "clogServerConfigEntry", - 2 - ] - }, - "clogServerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "clogServerConfigEntry", - 3 - ] - }, - "ciscoSyslogMIBNotificationPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIB", - 2 - ] - }, - "ciscoSyslogMIBNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIBNotificationPrefix", - 0 - ] - }, - "ciscoSyslogMIBConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIB", - 3 - ] - }, - "ciscoSyslogMIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIBConformance", - 1 - ] - }, - "ciscoSyslogMIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ciscoSyslogMIBConformance", - 2 - ] - }, - "ciscoSyslogMIBGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoSyslogMIBGroups", - 1 - ] - }, - "clogServerGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoSyslogMIBGroups", - 3 - ] - }, - "clogOriginIDGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ciscoSyslogMIBGroups", - 4 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CISCO-TC.json b/mibs/parsed/CISCO-TC.json deleted file mode 100644 index 265fc92..0000000 --- a/mibs/parsed/CISCO-TC.json +++ /dev/null @@ -1,731 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "Gauge32", - "Integer32", - "Unsigned32", - "Counter64" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ], - [ - "CISCO-SMI", - [ - "ciscoModules" - ] - ] - ], - "ciscoTextualConventions": { - "tp": "MODULE-IDENTITY", - "value": [ - "ciscoModules", - 1 - ] - }, - "Layer2Cos": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CiscoNetworkProtocol": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ip", - "2": "decnet", - "3": "pup", - "4": "chaos", - "5": "xns", - "6": "x121", - "7": "appletalk", - "8": "clns", - "9": "lat", - "10": "vines", - "11": "cons", - "12": "apollo", - "13": "stun", - "14": "novell", - "15": "qllc", - "16": "snapshot", - "17": "atmIlmi", - "18": "bstun", - "19": "x25pvc", - "20": "ipv6", - "21": "cdm", - "22": "nbf", - "23": "bpxIgx", - "24": "clnsPfx", - "25": "http", - "65535": "unknown" - } - }, - "display_hint": null - }, - "CiscoNetworkAddress": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "Unsigned64": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Counter64" - }, - "display_hint": null - }, - "InterfaceIndexOrZero": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "SAPType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CountryCode": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CountryCodeITU": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "EntPhysicalIndexOrZero": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CiscoRowOperStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "activeDependencies", - "3": "inactiveDependency", - "4": "missingDependency" - } - }, - "display_hint": null - }, - "CiscoPort": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CiscoIpProtocol": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CiscoLocationClass": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "chassis", - "2": "shelf", - "3": "slot", - "4": "subSlot", - "5": "port", - "6": "subPort", - "7": "channel", - "8": "subChannel" - } - }, - "display_hint": null - }, - "CiscoLocationSpecifier": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoInetAddressMask": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "CiscoAbsZeroBasedCounter32": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Gauge32" - }, - "display_hint": null - }, - "CiscoSnapShotAbsCounter32": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "CiscoAlarmSeverity": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "cleared", - "2": "indeterminate", - "3": "critical", - "4": "major", - "5": "minor", - "6": "warning", - "7": "info" - } - }, - "display_hint": null - }, - "PerfHighIntervalCount": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Counter64" - }, - "display_hint": null - }, - "ConfigIterator": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "BulkConfigResult": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "ListIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "ListIndexOrZero": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "TimeIntervalSec": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "TimeIntervalMin": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "CiscoMilliSeconds": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "MicroSeconds": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "CiscoPortList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoPortListRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "oneto2k", - "2": "twoKto4K", - "3": "fourKto6K", - "4": "sixKto8K", - "5": "eightKto10K", - "6": "tenKto12K", - "7": "twelveKto14K", - "8": "fourteenKto16K" - } - }, - "display_hint": null - }, - "IfOperStatusReason": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "hwFailure", - "4": "loopbackDiagFailure", - "5": "errorDisabled", - "6": "swFailure", - "7": "linkFailure", - "8": "offline", - "9": "nonParticipating", - "10": "initializing", - "11": "vsanInactive", - "12": "adminDown", - "13": "channelAdminDown", - "14": "channelOperSuspended", - "15": "channelConfigurationInProgress", - "16": "rcfInProgress", - "17": "elpFailureIsolation", - "18": "escFailureIsolation", - "19": "domainOverlapIsolation", - "20": "domainAddrAssignFailureIsolation", - "21": "domainOtherSideEportIsolation", - "22": "domainInvalidRcfReceived", - "23": "domainManagerDisabled", - "24": "zoneMergeFailureIsolation", - "25": "vsanMismatchIsolation", - "26": "parentDown", - "27": "srcPortNotBound", - "28": "interfaceRemoved", - "29": "fcotNotPresent", - "30": "fcotVendorNotSupported", - "31": "incompatibleAdminMode", - "32": "incompatibleAdminSpeed", - "33": "suspendedByMode", - "34": "suspendedBySpeed", - "35": "suspendedByWWN", - "36": "domainMaxReTxFailure", - "37": "eppFailure", - "38": "portVsanMismatchIsolation", - "39": "loopbackIsolation", - "40": "upgradeInProgress", - "41": "incompatibleAdminRxBbCredit", - "42": "incompatibleAdminRxBufferSize", - "43": "portChannelMembersDown", - "44": "zoneRemoteNoRespIsolation", - "45": "firstPortUpAsEport", - "46": "firstPortNotUp", - "47": "peerFCIPPortClosedConnection", - "48": "peerFCIPPortResetConnection", - "49": "fcipPortMaxReTx", - "50": "fcipPortKeepAliveTimerExpire", - "51": "fcipPortPersistTimerExpire", - "52": "fcipPortSrcLinkDown", - "53": "fcipPortSrcAdminDown", - "54": "fcipPortAdminCfgChange", - "55": "fcipSrcPortRemoved", - "56": "fcipSrcModuleNotOnline", - "57": "invalidConfig", - "58": "portBindFailure", - "59": "portFabricBindFailure", - "60": "noCommonVsanIsolation", - "61": "ficonVsanDown", - "62": "invalidAttachment", - "63": "portBlocked", - "64": "incomAdminRxBbCreditPerBuf", - "65": "tooManyInvalidFlogis", - "66": "deniedDueToPortBinding", - "67": "elpFailureRevMismatch", - "68": "elpFailureClassFParamErr", - "69": "elpFailureClassNParamErr", - "70": "elpFailureUnknownFlowCtlCode", - "71": "elpFailureInvalidFlowCtlParam", - "72": "elpFailureInvalidPortName", - "73": "elpFailureInvalidSwitchName", - "74": "elpFailureRatovEdtovMismatch", - "75": "elpFailureLoopbackDetected", - "76": "elpFailureInvalidTxBbCredit", - "77": "elpFailureInvalidPayloadSize", - "78": "bundleMisCfg", - "79": "bitErrRuntimeThreshExceeded", - "80": "linkFailLinkReset", - "81": "linkFailPortInitFail", - "82": "linkFailPortUnusable", - "83": "linkFailLossOfSignal", - "84": "linkFailLossOfSync", - "85": "linkFailNosRcvd", - "86": "linkFailOLSRcvd", - "87": "linkFailDebounceTimeout", - "88": "linkFailLrRcvd", - "89": "linkFailCreditLoss", - "90": "linkFailRxQOverflow", - "91": "linkFailTooManyInterrupts", - "92": "linkFailLipRcvdBb", - "93": "linkFailBbCreditLoss", - "94": "linkFailOpenPrimSignalTimeout", - "95": "linkFailOpenPrimSignalReturned", - "96": "linkFailLipF8Rcvd", - "97": "linkFailLineCardPortShutdown", - "98": "fcspAuthenfailure", - "99": "fcotChecksumError", - "100": "ohmsExtLoopbackTest", - "101": "invalidFabricBindExchange", - "102": "tovMismatch", - "103": "ficonNotEnabled", - "104": "ficonNoPortNumber", - "105": "ficonBeingEnabled", - "106": "ePortProhibited", - "107": "portGracefulShutdown", - "108": "trunkNotFullyActive", - "109": "fabricBindingSwitchWwnNotFound", - "110": "fabricBindingDomainInvalid", - "111": "fabricBindingDbMismatch", - "112": "fabricBindingNoRspFromPeer", - "113": "dpvmVsanSuspended", - "114": "dpvmVsanNotFound", - "115": "trackedPortDown", - "116": "ecSuspendedOnLoop", - "117": "isolateBundleMisCfg", - "118": "noPeerBundleSupport", - "119": "portBringupIsolation", - "120": "domainNotAllowedIsolated", - "121": "virtualIvrDomainOverlapIsolation", - "122": "outOfService", - "123": "portAuthFailed", - "124": "bundleStandby", - "125": "portConnectorTypeErr", - "126": "errorDisabledReInitLmtReached", - "127": "ficonDupPortNum", - "128": "localRcf", - "129": "twoSwitchesWithSameWWN", - "130": "invalidOtherSidePrincEFPReqRecd", - "131": "domainOther", - "132": "elpFailureAllZeroPeerWWNRcvd", - "133": "preferredPathIsolation", - "134": "fcRedirectIsolation", - "135": "portActLicenseNotAvailable", - "136": "sdmIsolation", - "137": "fcidAllocationFailed", - "138": "externallyDisabled", - "139": "unavailableNPVUpstreamPort", - "140": "unavailableNPVPrefUpstreamPort", - "141": "sfpReadError", - "142": "stickyDownOnLinkFailure", - "143": "tooManyLinkFlapsErr", - "144": "unidirectionalUDLD", - "145": "txRxLoopUDLD", - "146": "neighborMismatchUDLD", - "147": "authzPending", - "148": "hotStdbyInBundle", - "149": "incompleteConfig", - "150": "incompleteTunnelCfg", - "151": "hwProgrammingFailed", - "152": "tunnelDstUnreachable", - "153": "suspendByMtu", - "154": "sfpInvalid", - "155": "sfpAbsent", - "156": "portCapabilitiesUnknown", - "157": "channelErrDisabled", - "158": "vrfMismatch", - "159": "vrfForwardReferencing", - "160": "dupTunnelConfigDetected", - "161": "primaryVLANDown", - "162": "vrfUnusable", - "163": "errDisableHandShkFailure", - "164": "errDisabledBPDUGuard", - "165": "dot1xSecViolationErrDisabled", - "166": "emptyEchoUDLD", - "167": "vfTaggingCapErr", - "168": "portDisabled", - "169": "tunnelModeNotConfigured", - "170": "tunnelSrcNotConfigured", - "171": "tunnelDstNotConfigured", - "172": "tunnelUnableToResolveSrcIP", - "173": "tunnelUnableToResolveDstIP", - "174": "tunnelVrfDown", - "175": "sifAdminDown", - "176": "phyIntfDown", - "177": "ifSifLimitExceeded", - "178": "sifHoldDown", - "179": "noFcoe", - "180": "dcxCompatMismatch", - "181": "isolateBundleLimitExceeded", - "182": "sifNotBound", - "183": "errDisabledLacpMiscfg", - "184": "satFabricIfDown", - "185": "invalidSatFabricIf", - "186": "noRemoteChassis", - "187": "vicEnableNotReceived", - "188": "vicDisableReceived", - "189": "vlanVsanMappingNotEnabled", - "190": "stpNotFwdingInFcoeMappedVlan", - "191": "moduleOffline", - "192": "udldAggModeLinkFailure", - "193": "stpInconsVpcPeerDisabled", - "194": "setPortStateFailed", - "195": "suspendedByVpc", - "196": "vpcCfgInProgress", - "197": "vpcPeerLinkDown", - "198": "vpcNoRspFromPeer", - "199": "protoPortSuspend", - "200": "tunnelSrcDown", - "201": "cdpInfoUnavailable", - "202": "fexSfpInvalid", - "203": "errDisabledIpConflict", - "204": "fcotClkRateMismatch", - "205": "portGuardTrustSecViolation", - "206": "sdpTimeout", - "207": "satIncompatTopo", - "208": "waitForFlogi", - "209": "satNotConfigured", - "210": "npivNotEnabledInUpstream", - "211": "vsanMismatchWithUpstreamSwPort", - "212": "portGuardBitErrRate", - "213": "portGuardSigLoss", - "214": "portGuardSyncLoss", - "215": "portGuardLinkReset", - "216": "portGuardCreditLoss", - "217": "ipQosMgrPolicyAppFailure", - "218": "pauseRateLimitErrDisabled", - "219": "lstGrpUplinkDown", - "220": "stickyDnLinkFailure", - "221": "routerMacFailure", - "222": "dcxMultipleMsapIds", - "223": "dcxHundredPdusRcvdNoAck", - "224": "enmSatIncompatibleUplink", - "225": "enmLoopDetected", - "226": "nonStickyExternallyDisabled", - "227": "subGroupIdNotAssigned", - "228": "vemUnlicensed", - "229": "profileNotFound", - "230": "nonExistentVlan", - "231": "vlanInvalidType", - "232": "vlanDown", - "233": "vpcPeerUpgrade", - "234": "ipQosDcbxpCompatFailure", - "235": "nonCiscoHbaVfTag", - "236": "domainIdConfigMismatch", - "237": "sfpSpeedMismatch", - "238": "xcvrInitializing", - "239": "xcvrAbsent", - "240": "xcvrInvalid", - "241": "vfcBindingInvalid", - "242": "vlanNotFcoeEnabled", - "243": "pvlanNativeVlanErr", - "244": "ethL2VlanDown", - "245": "ethIntfInvalidBinding", - "246": "pmonFailure", - "247": "l3NotReady", - "248": "speedMismatch", - "249": "flowControlMismatch", - "250": "vdcMode", - "251": "suspendedDueToMinLinks", - "252": "enmPinFailLinkDown", - "253": "inactiveM1PortFpathActiveVlan", - "254": "parentPortDown", - "255": "moduleRemoved", - "256": "corePortMct", - "257": "nonCorePortMct", - "258": "ficonInorderNotActive", - "259": "invalidEncapsulation", - "260": "modemLineDeasserted", - "261": "ipSecHndshkInProgress", - "262": "sfpEthCompliantErr", - "263": "cellularModemUnattached", - "264": "outOfGlblRxBuffers", - "265": "sfpFcCompliantErr", - "266": "ethIntfNotLicensed", - "267": "domainIdsInvalid", - "268": "fabricNameInvalid", - "269": "ficonNoPortSwapLogicalPort", - "270": "ficonInvalidPortNum", - "271": "remotePortInL2vpnDown", - "272": "suspendedDueToNoLacpPdus", - "273": "fcotValidationFailedAtDriver", - "274": "unsupportedTransceiverMd5DigestNotSame", - "275": "unsupportedTransceiver", - "276": "adminStateConfigChange", - "277": "vlanAllowedList", - "278": "vlanAllowedListOverride", - "279": "vlanAllowedListAdd", - "280": "vlanAllowedRemove", - "281": "vlanCfgStateChange", - "282": "vlanCfgDelete", - "283": "pppPeerNotResponding", - "284": "pppAuthFailed", - "285": "xcvrAuthFailed", - "286": "badFramesRcvdFromLink", - "287": "physicalPortHotStandBy", - "288": "wimaxModemUnattached", - "289": "wpanModemUnattached", - "290": "rbhModulo", - "291": "fpcMinLinkNotMet", - "292": "misCabling", - "293": "rcvSrpOnNonFcoeFex", - "294": "acessPortOnBd", - "295": "lacpMisConfig", - "300": "fortyGMemberPort", - "301": "goldLoopBackTest", - "302": "edpError", - "303": "vpcCompCheckFailed", - "304": "aclQosNoResource", - "305": "vpcShutdown", - "306": "notPcMember", - "307": "systemIntfShut", - "308": "speedGroupConfigMisMatch", - "310": "dot1qMisConfig", - "311": "mdMisMatch", - "312": "vpcPeerLinkShut", - "313": "notAvailable" - } - }, - "display_hint": null - }, - "EntLogicalIndexOrZero": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CiscoURLString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoURLStringOrEmpty": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoHTTPResponseStatusCode": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "CvE164Address": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoVlanList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoCosList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "BITS", - "values": { - "0": "cos0", - "1": "cos1", - "2": "cos2", - "3": "cos3", - "4": "cos4", - "5": "cos5", - "6": "cos6", - "7": "cos7" - } - }, - "display_hint": null - }, - "CiscoPbbServiceIdentifier": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "CiscoBridgeDomain": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Unsigned32" - }, - "display_hint": null - }, - "Cisco2KVlanList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoInterfaceIndexList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoVrfName": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoEntityIndexList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "CiscoVlanIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": null - }, - "CiscoAbsZeroBasedCounter64": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Counter64" - }, - "display_hint": null - } -} \ No newline at end of file diff --git a/mibs/parsed/CPQHLTH-MIB.json b/mibs/parsed/CPQHLTH-MIB.json deleted file mode 100644 index f95dc2a..0000000 --- a/mibs/parsed/CPQHLTH-MIB.json +++ /dev/null @@ -1,4843 +0,0 @@ -{ - "IMPORTS": [ - [ - "CPQHOST-MIB", - [ - "compaq" - ] - ], - [ - "RFC1155-SMI", - [ - "enterprises" - ] - ], - [ - "RFC1155-SMI", - [ - "Counter" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "sysName" - ] - ], - [ - "CPQHOST-MIB", - [ - "cpqHoTrapFlags" - ] - ], - [ - "CPQSINFO-MIB", - [ - "cpqSiServerSystemId" - ] - ], - [ - "CPQSINFO-MIB", - [ - "cpqSiMemModuleSize" - ] - ], - [ - "CPQHOST-MIB", - [ - "cpqHoGUIDCanonical" - ] - ] - ], - "cpqHealth": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "compaq", - 6 - ] - }, - "cpqHeMibRev": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHealth", - 1 - ] - }, - "cpqHeComponent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHealth", - 2 - ] - }, - "cpqHeTrap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHealth", - 3 - ] - }, - "cpqHeInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 1 - ] - }, - "cpqHeCriticalError": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 2 - ] - }, - "cpqHeCorrectableMemory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 3 - ] - }, - "cpqHeAsr": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 5 - ] - }, - "cpqHeThermal": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 6 - ] - }, - "cpqHePostMsg": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 7 - ] - }, - "cpqHeSysUtil": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 8 - ] - }, - "cpqHeFltTolPwrSupply": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 9 - ] - }, - "cpqHeIRC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 10 - ] - }, - "cpqHeEventLog": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 11 - ] - }, - "cpqHeMgmtDisplay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 12 - ] - }, - "cpqHePowerConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 13 - ] - }, - "cpqHeResilientMemory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 14 - ] - }, - "cpqHePowerMeter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 15 - ] - }, - "cpqHeHWBios": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 16 - ] - }, - "cpqHeSysBackupBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 17 - ] - }, - "cpqHeSysPwrHw": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 18 - ] - }, - "cpqHeSysBoardFru": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 19 - ] - }, - "cpqHePowerFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 20 - ] - }, - "cpqHeInterlockFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 21 - ] - }, - "cpqHeNvdimm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 22 - ] - }, - "cpqHeBbu": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeComponent", - 23 - ] - }, - "cpqHeOsNetWare3x": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeInterface", - 1 - ] - }, - "cpqHeOsCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHeInterface", - 4 - ] - }, - "cpqHeMibRevMajor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeMibRev", - 1 - ] - }, - "cpqHeMibRevMinor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeMibRev", - 2 - ] - }, - "cpqHeMibCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeMibRev", - 3 - ] - }, - "cpqHeNw3xDriverName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeOsNetWare3x", - 1 - ] - }, - "cpqHeNw3xDriverDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeOsNetWare3x", - 2 - ] - }, - "cpqHeNw3xDriverVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeOsNetWare3x", - 3 - ] - }, - "cpqHeOsCommonPollFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeOsCommon", - 1 - ] - }, - "cpqHeOsCommonModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeOsCommonModuleEntry" - }, - "index": null, - "value": [ - "cpqHeOsCommon", - 2 - ] - }, - "cpqHeOsCommonModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeOsCommonModuleEntry" - }, - "index": [ - "cpqHeOsCommonModuleIndex" - ], - "value": [ - "cpqHeOsCommonModuleTable", - 1 - ] - }, - "CpqHeOsCommonModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqHeOsCommonModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeOsCommonModuleEntry", - 1 - ] - }, - "cpqHeOsCommonModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeOsCommonModuleEntry", - 2 - ] - }, - "cpqHeOsCommonModuleVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeOsCommonModuleEntry", - 3 - ] - }, - "cpqHeOsCommonModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeOsCommonModuleEntry", - 4 - ] - }, - "cpqHeOsCommonModulePurpose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeOsCommonModuleEntry", - 5 - ] - }, - "cpqHeCritLogSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "supported" - } - }, - "index": null, - "value": [ - "cpqHeCriticalError", - 1 - ] - }, - "cpqHeCritLogCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeCriticalError", - 2 - ] - }, - "cpqHeLastCritErrorAbendMsg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeCriticalError", - 3 - ] - }, - "cpqHeCriticalErrorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeCriticalErrorEntry" - }, - "index": null, - "value": [ - "cpqHeCriticalError", - 4 - ] - }, - "cpqHeCriticalErrorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeCriticalErrorEntry" - }, - "index": [ - "cpqHeCriticalErrorIndex" - ], - "value": [ - "cpqHeCriticalErrorTable", - 1 - ] - }, - "CpqHeCriticalErrorEntry": { - "tp": "SEQUENCE" - }, - "cpqHeCriticalErrorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeCriticalErrorEntry", - 1 - ] - }, - "cpqHeCriticalErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uncorrected", - "2": "corrected" - } - }, - "index": null, - "value": [ - "cpqHeCriticalErrorEntry", - 2 - ] - }, - "cpqHeCriticalErrorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "empty", - "3": "nonCorrectableMemErr", - "4": "busMasterTimeoutNmi", - "5": "commandBusTimeoutNmi", - "6": "ioCheckNmi", - "7": "refreshOverflowNmi", - "8": "cacheParityNmi", - "9": "processorParityNmi", - "10": "eisaHostMemReadHit", - "11": "processorFailure", - "12": "cautionTemperature", - "13": "postCriticalError", - "14": "criticalException", - "15": "serverManagerIfFail", - "16": "pentiumIperr", - "17": "pentiumAperr", - "18": "pentiumIeerr", - "19": "pentiumApcheck", - "20": "cpuLocalError", - "21": "failsafeTimer", - "22": "softwareNmi", - "23": "asrBaseMemoryParity", - "24": "asrExtendedMemParity", - "25": "asrResetLimit", - "26": "asrMemoryParity", - "27": "abend", - "28": "asrTestEvent", - "29": "asrTimeoutNmi", - "30": "fanFailure", - "31": "upsDetectedLineFail", - "32": "asrDetectedAtBoot", - "33": "redunPowerSupplyFailure", - "34": "pciBusParityError", - "35": "diagnosticError", - "36": "rtcChipBatteryFailure", - "37": "pentiumBerr", - "38": "dcConverterFailure", - "39": "cpuInternalThreshPassed" - } - }, - "index": null, - "value": [ - "cpqHeCriticalErrorEntry", - 3 - ] - }, - "cpqHeCriticalErrorTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeCriticalErrorEntry", - 4 - ] - }, - "cpqHeCriticalErrorInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeCriticalErrorEntry", - 5 - ] - }, - "cpqHeCriticalErrorDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeCriticalErrorEntry", - 6 - ] - }, - "cpqHeCorrMemLogStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "disabled", - "4": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeCorrectableMemory", - 1 - ] - }, - "cpqHeCorrMemLogCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeCorrectableMemory", - 2 - ] - }, - "cpqHeCorrMemTotalErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeCorrectableMemory", - 3 - ] - }, - "cpqHeCorrMemErrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeCorrMemErrEntry" - }, - "index": null, - "value": [ - "cpqHeCorrectableMemory", - 4 - ] - }, - "cpqHeCorrMemErrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeCorrMemErrEntry" - }, - "index": [ - "cpqHeCorrMemErrIndex" - ], - "value": [ - "cpqHeCorrMemErrTable", - 1 - ] - }, - "CpqHeCorrMemErrEntry": { - "tp": "SEQUENCE" - }, - "cpqHeCorrMemErrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 1 - ] - }, - "cpqHeCorrMemErrCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 2 - ] - }, - "cpqHeCorrMemErrTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 3 - ] - }, - "cpqHeCorrMemErrDdr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 4 - ] - }, - "cpqHeCorrMemErrSyndrome": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 5 - ] - }, - "cpqHeCorrMemErrDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 6 - ] - }, - "cpqHeCorrMemErrHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeCorrMemErrEntry", - 7 - ] - }, - "cpqHeCorrMemErrorCntThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeCorrectableMemory", - 5 - ] - }, - "cpqHeAsrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notAvailable", - "3": "disabled", - "4": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 1 - ] - }, - "cpqHeAsrMajorVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 2 - ] - }, - "cpqHeAsrMinorVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 3 - ] - }, - "cpqHeAsrTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 4 - ] - }, - "cpqHeAsrBaseIo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 5 - ] - }, - "cpqHeAsrPost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "failed", - "3": "ok" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 6 - ] - }, - "cpqHeAsrReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "manualReset", - "3": "asrReset", - "4": "viewed-asrReset" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 7 - ] - }, - "cpqHeAsrReboot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "bootOs", - "3": "bootUtilities" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 8 - ] - }, - "cpqHeAsrRebootLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 9 - ] - }, - "cpqHeAsrRebootCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 10 - ] - }, - "cpqHeAsrPagerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 11 - ] - }, - "cpqHeAsrPagerNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeAsr", - 12 - ] - }, - "cpqHeAsrCommPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 13 - ] - }, - "cpqHeAsrBaudRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 14 - ] - }, - "cpqHeAsrPagerMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeAsr", - 15 - ] - }, - "cpqHeAsrBootFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "interrupt18" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 16 - ] - }, - "cpqHeAsrCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 17 - ] - }, - "cpqHeAsrDialInStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 18 - ] - }, - "cpqHeAsrDialOutStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 19 - ] - }, - "cpqHeAsrDialOutNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeAsr", - 20 - ] - }, - "cpqHeAsrNetworkAccessStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeAsr", - 21 - ] - }, - "cpqHeAsrPollTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeAsr", - 22 - ] - }, - "cpqHeThermalCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeThermal", - 1 - ] - }, - "cpqHeThermalDegradedAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "continue", - "3": "shutdown" - } - }, - "index": null, - "value": [ - "cpqHeThermal", - 2 - ] - }, - "cpqHeThermalTempStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeThermal", - 3 - ] - }, - "cpqHeThermalSystemFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeThermal", - 4 - ] - }, - "cpqHeThermalCpuFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeThermal", - 5 - ] - }, - "cpqHeThermalFanTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeThermalFanEntry" - }, - "index": null, - "value": [ - "cpqHeThermal", - 6 - ] - }, - "cpqHeThermalFanEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeThermalFanEntry" - }, - "index": [ - "cpqHeThermalFanIndex" - ], - "value": [ - "cpqHeThermalFanTable", - 1 - ] - }, - "CpqHeThermalFanEntry": { - "tp": "SEQUENCE" - }, - "cpqHeThermalFanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 1 - ] - }, - "cpqHeThermalFanRequired": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonRequired", - "3": "required" - } - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 2 - ] - }, - "cpqHeThermalFanPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "absent", - "3": "present" - } - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 3 - ] - }, - "cpqHeThermalFanCpuFan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "systemFan", - "3": "cpuFan" - } - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 4 - ] - }, - "cpqHeThermalFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 5 - ] - }, - "cpqHeThermalFanHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 6 - ] - }, - "cpqHeThermalFanCurrentSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeThermalFanEntry", - 7 - ] - }, - "cpqHeFltTolFanTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeFltTolFanEntry" - }, - "index": null, - "value": [ - "cpqHeThermal", - 7 - ] - }, - "cpqHeFltTolFanEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeFltTolFanEntry" - }, - "index": [ - "cpqHeFltTolFanChassis", - "cpqHeFltTolFanIndex" - ], - "value": [ - "cpqHeFltTolFanTable", - 1 - ] - }, - "CpqHeFltTolFanEntry": { - "tp": "SEQUENCE" - }, - "cpqHeFltTolFanChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 1 - ] - }, - "cpqHeFltTolFanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 2 - ] - }, - "cpqHeFltTolFanLocale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "system", - "4": "systemBoard", - "5": "ioBoard", - "6": "cpu", - "7": "memory", - "8": "storage", - "9": "removableMedia", - "10": "powerSupply", - "11": "ambient", - "12": "chassis", - "13": "bridgeCard", - "14": "managementBoard", - "15": "backplane", - "16": "networkSlot", - "17": "bladeSlot", - "18": "virtual" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 3 - ] - }, - "cpqHeFltTolFanPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "absent", - "3": "present" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 4 - ] - }, - "cpqHeFltTolFanType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "tachOutput", - "3": "spinDetect" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 5 - ] - }, - "cpqHeFltTolFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "normal", - "3": "high" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 6 - ] - }, - "cpqHeFltTolFanRedundant": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notRedundant", - "3": "redundant" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 7 - ] - }, - "cpqHeFltTolFanRedundantPartner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 8 - ] - }, - "cpqHeFltTolFanCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 9 - ] - }, - "cpqHeFltTolFanHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonHotPluggable", - "3": "hotPluggable" - } - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 10 - ] - }, - "cpqHeFltTolFanHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 11 - ] - }, - "cpqHeFltTolFanCurrentSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolFanEntry", - 12 - ] - }, - "cpqHeTemperatureTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeTemperatureEntry" - }, - "index": null, - "value": [ - "cpqHeThermal", - 8 - ] - }, - "cpqHeTemperatureEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeTemperatureEntry" - }, - "index": [ - "cpqHeTemperatureChassis", - "cpqHeTemperatureIndex" - ], - "value": [ - "cpqHeTemperatureTable", - 1 - ] - }, - "CpqHeTemperatureEntry": { - "tp": "SEQUENCE" - }, - "cpqHeTemperatureChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 1 - ] - }, - "cpqHeTemperatureIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 2 - ] - }, - "cpqHeTemperatureLocale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "system", - "4": "systemBoard", - "5": "ioBoard", - "6": "cpu", - "7": "memory", - "8": "storage", - "9": "removableMedia", - "10": "powerSupply", - "11": "ambient", - "12": "chassis", - "13": "bridgeCard" - } - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 3 - ] - }, - "cpqHeTemperatureCelsius": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 4 - ] - }, - "cpqHeTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 5 - ] - }, - "cpqHeTemperatureCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 6 - ] - }, - "cpqHeTemperatureThresholdType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "5": "blowout", - "9": "caution", - "15": "critical", - "16": "noreaction" - } - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 7 - ] - }, - "cpqHeTemperatureHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeTemperatureEntry", - 8 - ] - }, - "cpqHePostMsgCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHePostMsg", - 1 - ] - }, - "cpqHePostMsgTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHePostMsgEntry" - }, - "index": null, - "value": [ - "cpqHePostMsg", - 2 - ] - }, - "cpqHePostMsgEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHePostMsgEntry" - }, - "index": [ - "cpqHePostMsgIndex" - ], - "value": [ - "cpqHePostMsgTable", - 1 - ] - }, - "CpqHePostMsgEntry": { - "tp": "SEQUENCE" - }, - "cpqHePostMsgIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePostMsgEntry", - 1 - ] - }, - "cpqHePostMsgCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePostMsgEntry", - 2 - ] - }, - "cpqHePostMsgDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHePostMsgEntry", - 3 - ] - }, - "cpqHePostMsgEv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHePostMsg", - 3 - ] - }, - "cpqHeSysUtilLifeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtil", - 1 - ] - }, - "cpqHeSysUtilEisaBusMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtil", - 2 - ] - }, - "cpqHeSysUtilEisaBusFiveMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtil", - 3 - ] - }, - "cpqHeSysUtilEisaBusThirtyMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtil", - 4 - ] - }, - "cpqHeSysUtilEisaBusHour": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtil", - 5 - ] - }, - "cpqHeSysUtilPciTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeSysUtilPciEntry" - }, - "index": null, - "value": [ - "cpqHeSysUtil", - 6 - ] - }, - "cpqHeSysUtilPciEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeSysUtilPciEntry" - }, - "index": [ - "cpqHeSysUtilPciIndex" - ], - "value": [ - "cpqHeSysUtilPciTable", - 1 - ] - }, - "CpqHeSysUtilPciEntry": { - "tp": "SEQUENCE" - }, - "cpqHeSysUtilPciIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 1 - ] - }, - "cpqHeSysUtilPciBus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 2 - ] - }, - "cpqHeSysUtilPciDevice": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 3 - ] - }, - "cpqHeSysUtilPciMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 4 - ] - }, - "cpqHeSysUtilPciFiveMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 5 - ] - }, - "cpqHeSysUtilPciThirtyMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 6 - ] - }, - "cpqHeSysUtilPciHour": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 7 - ] - }, - "cpqHeSysUtilPciHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeSysUtilPciEntry", - 8 - ] - }, - "cpqHeFltTolPwrSupplyCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPwrSupply", - 1 - ] - }, - "cpqHeFltTolPwrSupplyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "notInstalled", - "4": "installed" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPwrSupply", - 2 - ] - }, - "cpqHeFltTolPowerSupplyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeFltTolPowerSupplyEntry" - }, - "index": null, - "value": [ - "cpqHeFltTolPwrSupply", - 3 - ] - }, - "cpqHeFltTolPowerSupplyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeFltTolPowerSupplyEntry" - }, - "index": [ - "cpqHeFltTolPowerSupplyChassis", - "cpqHeFltTolPowerSupplyBay" - ], - "value": [ - "cpqHeFltTolPowerSupplyTable", - 1 - ] - }, - "CpqHeFltTolPowerSupplyEntry": { - "tp": "SEQUENCE" - }, - "cpqHeFltTolPowerSupplyChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 1 - ] - }, - "cpqHeFltTolPowerSupplyBay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 2 - ] - }, - "cpqHeFltTolPowerSupplyPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "absent", - "3": "present" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 3 - ] - }, - "cpqHeFltTolPowerSupplyCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 4 - ] - }, - "cpqHeFltTolPowerSupplyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "generalFailure", - "3": "bistFailure", - "4": "fanFailure", - "5": "tempFailure", - "6": "interlockOpen", - "7": "epromFailed", - "8": "vrefFailed", - "9": "dacFailed", - "10": "ramTestFailed", - "11": "voltageChannelFailed", - "12": "orringdiodeFailed", - "13": "brownOut", - "14": "giveupOnStartup", - "15": "nvramInvalid", - "16": "calibrationTableInvalid", - "17": "noPowerInput" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 5 - ] - }, - "cpqHeFltTolPowerSupplyMainVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 6 - ] - }, - "cpqHeFltTolPowerSupplyCapacityUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 7 - ] - }, - "cpqHeFltTolPowerSupplyCapacityMaximum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 8 - ] - }, - "cpqHeFltTolPowerSupplyRedundant": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notRedundant", - "3": "redundant" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 9 - ] - }, - "cpqHeFltTolPowerSupplyModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 10 - ] - }, - "cpqHeFltTolPowerSupplySerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 11 - ] - }, - "cpqHeFltTolPowerSupplyAutoRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 12 - ] - }, - "cpqHeFltTolPowerSupplyHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonHotPluggable", - "3": "hotPluggable" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 13 - ] - }, - "cpqHeFltTolPowerSupplyFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 14 - ] - }, - "cpqHeFltTolPowerSupplyHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 15 - ] - }, - "cpqHeFltTolPowerSupplySparePartNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 16 - ] - }, - "cpqHeFltTolPowerSupplyRedundantPartner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 17 - ] - }, - "cpqHeFltTolPowerSupplyErrorCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "generalFailure", - "3": "overvoltage", - "4": "overcurrent", - "5": "overtemperature", - "6": "powerinputloss", - "7": "fanfailure", - "8": "vinhighwarning", - "9": "vinlowwarning", - "10": "vouthighwarning", - "11": "voutlowwarning", - "12": "inlettemphighwarning", - "13": "iinternaltemphighwarning", - "14": "vauxhighwarning", - "15": "vauxlowwarning", - "16": "powersupplymismatch", - "17": "goodinstandby" - } - }, - "index": null, - "value": [ - "cpqHeFltTolPowerSupplyEntry", - 18 - ] - }, - "cpqHeIRCStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notavailable", - "3": "disabled", - "4": "enabled" - } - }, - "index": null, - "value": [ - "cpqHeIRC", - 1 - ] - }, - "cpqHeEventLogSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "supported", - "4": "clear" - } - }, - "index": null, - "value": [ - "cpqHeEventLog", - 1 - ] - }, - "cpqHeEventLogCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeEventLog", - 2 - ] - }, - "cpqHeEventLogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeEventLogEntry" - }, - "index": null, - "value": [ - "cpqHeEventLog", - 3 - ] - }, - "cpqHeEventLogEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeEventLogEntry" - }, - "index": [ - "cpqHeEventLogEntryNumber" - ], - "value": [ - "cpqHeEventLogTable", - 1 - ] - }, - "CpqHeEventLogEntry": { - "tp": "SEQUENCE" - }, - "cpqHeEventLogEntryNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 1 - ] - }, - "cpqHeEventLogEntrySeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "2": "informational", - "3": "infoWithAlert", - "6": "repaired", - "9": "caution", - "15": "critical" - } - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 2 - ] - }, - "cpqHeEventLogEntryClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 3 - ] - }, - "cpqHeEventLogEntryCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 4 - ] - }, - "cpqHeEventLogEntryCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 5 - ] - }, - "cpqHeEventLogInitialTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 6 - ] - }, - "cpqHeEventLogUpdateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 7 - ] - }, - "cpqHeEventLogErrorDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 8 - ] - }, - "cpqHeEventLogFreeFormData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeEventLogEntry", - 9 - ] - }, - "cpqHeMgmtDisplayType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "imd4x16", - "4": "ocp1x16" - } - }, - "index": null, - "value": [ - "cpqHeMgmtDisplay", - 1 - ] - }, - "cpqHeMgmtDisplayText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeMgmtDisplay", - 2 - ] - }, - "cpqHeMgmtUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "ledOn", - "4": "ledOff", - "5": "ledBlinking" - } - }, - "index": null, - "value": [ - "cpqHeMgmtDisplay", - 3 - ] - }, - "cpqHePowerConverterSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "supported" - } - }, - "index": null, - "value": [ - "cpqHePowerConverter", - 1 - ] - }, - "cpqHePowerConverterCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHePowerConverter", - 2 - ] - }, - "cpqHePowerConverterTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHePowerConverterEntry" - }, - "index": null, - "value": [ - "cpqHePowerConverter", - 3 - ] - }, - "cpqHePowerConverterEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHePowerConverterEntry" - }, - "index": [ - "cpqHePwrConvChassis", - "cpqHePwrConvIndex" - ], - "value": [ - "cpqHePowerConverterTable", - 1 - ] - }, - "CpqHePowerConverterEntry": { - "tp": "SEQUENCE" - }, - "cpqHePwrConvChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 1 - ] - }, - "cpqHePwrConvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 2 - ] - }, - "cpqHePwrConvPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "absent", - "3": "present" - } - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 3 - ] - }, - "cpqHePwrConvSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 4 - ] - }, - "cpqHePwrConvSocket": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 5 - ] - }, - "cpqHePwrConvRedundant": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonRedundant", - "3": "redundant" - } - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 6 - ] - }, - "cpqHePwrConvRedundantGroupId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 7 - ] - }, - "cpqHePwrConvCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 8 - ] - }, - "cpqHePwrConvHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHePowerConverterEntry", - 9 - ] - }, - "cpqHeResilientMemTypeActive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "onLineSpare", - "4": "mirrored", - "5": "advancedEcc", - "6": "mirroredSingleBoard", - "7": "mirroredDualBoard", - "8": "xor", - "9": "lockStep", - "10": "onLineSpareChannel", - "11": "onLineSpareRank", - "12": "mirroringIntrasocket", - "13": "mirroringIntersocket", - "14": "a3dc", - "15": "dimmECC" - } - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 1 - ] - }, - "cpqHeResilientMemTypeAvailable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 2 - ] - }, - "cpqHeResilientMemStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notProtected", - "3": "protected", - "4": "degraded", - "5": "dimmEcc", - "6": "mirrorNoFaults", - "7": "mirrorWithFaults", - "8": "hotSpareNoFaults", - "9": "hotSpareWithFaults", - "10": "xorNoFaults", - "11": "xorWithFaults", - "12": "advancedEcc", - "13": "advancedEccWithFaults", - "14": "lockStep", - "15": "lockStepWithFaults", - "16": "a3dc", - "17": "a3dcWithFaults" - } - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 3 - ] - }, - "cpqHeResilientMemCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded" - } - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 4 - ] - }, - "cpqHeResilientMemHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonHotPluggable", - "3": "hotPluggable" - } - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 5 - ] - }, - "cpqHeResilientMemOperatingSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 6 - ] - }, - "cpqHeResilientMemOsMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 7 - ] - }, - "cpqHeResilientMemTotalMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 8 - ] - }, - "cpqHeResilientMemRivState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "inactive", - "3": "rebuilding", - "4": "initializing", - "5": "verifying" - } - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 9 - ] - }, - "cpqHeResMemBoardTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeResMemBoardEntry" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 10 - ] - }, - "cpqHeResMemBoardEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeResMemBoardEntry" - }, - "index": [ - "cpqHeResMemBoardSlotIndex" - ], - "value": [ - "cpqHeResMemBoardTable", - 1 - ] - }, - "CpqHeResMemBoardEntry": { - "tp": "SEQUENCE" - }, - "cpqHeResMemBoardSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 1 - ] - }, - "cpqHeResMemBoardOnlineStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "present", - "3": "absent" - } - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 2 - ] - }, - "cpqHeResMemBoardErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noError", - "3": "dimmEccError", - "4": "unlockError", - "5": "configError", - "6": "busError", - "7": "powerError", - "8": "advancedEcc", - "9": "onlineSpare", - "10": "mirrored", - "11": "mirroredDimmError", - "12": "memoryRaid", - "13": "raidDimmError", - "14": "lockstep", - "15": "lockstepDimmError" - } - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 3 - ] - }, - "cpqHeResMemBoardLocked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unlocked", - "3": "locked" - } - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 4 - ] - }, - "cpqHeResMemBoardNumSockets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 5 - ] - }, - "cpqHeResMemBoardOsMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 6 - ] - }, - "cpqHeResMemBoardTotalMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 7 - ] - }, - "cpqHeResMemBoardCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded" - } - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 8 - ] - }, - "cpqHeResMemBoardHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonHotPluggable", - "3": "hotPluggable" - } - }, - "index": null, - "value": [ - "cpqHeResMemBoardEntry", - 9 - ] - }, - "cpqHeResMemModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeResMemModuleEntry" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 11 - ] - }, - "cpqHeResMemModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeResMemModuleEntry" - }, - "index": [ - "cpqHeResMemBoardIndex", - "cpqHeResMemModuleIndex" - ], - "value": [ - "cpqHeResMemModuleTable", - 1 - ] - }, - "CpqHeResMemModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqHeResMemBoardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMemModuleEntry", - 1 - ] - }, - "cpqHeResMemModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMemModuleEntry", - 2 - ] - }, - "cpqHeResMemModuleSparePartNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMemModuleEntry", - 3 - ] - }, - "cpqHeResMemModuleStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notPresent", - "3": "present", - "4": "good", - "5": "add", - "6": "upgrade", - "7": "missing", - "8": "doesNotMatch", - "9": "notSupported", - "10": "badConfig", - "11": "degraded" - } - }, - "index": null, - "value": [ - "cpqHeResMemModuleEntry", - 4 - ] - }, - "cpqHeResMemModuleCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded" - } - }, - "index": null, - "value": [ - "cpqHeResMemModuleEntry", - 5 - ] - }, - "cpqHeResMemModuleSpd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeResMemModuleEntry", - 6 - ] - }, - "cpqHeResMem2BoardTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeResMem2BoardEntry" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 12 - ] - }, - "cpqHeResMem2BoardEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeResMem2BoardEntry" - }, - "index": [ - "cpqHeResMem2BoardIndex" - ], - "value": [ - "cpqHeResMem2BoardTable", - 1 - ] - }, - "CpqHeResMem2BoardEntry": { - "tp": "SEQUENCE" - }, - "cpqHeResMem2BoardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 1 - ] - }, - "cpqHeResMem2BoardSlotNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 2 - ] - }, - "cpqHeResMem2BoardCpuNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 3 - ] - }, - "cpqHeResMem2BoardRiserNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 4 - ] - }, - "cpqHeResMem2BoardOnlineStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "present", - "3": "absent" - } - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 5 - ] - }, - "cpqHeResMem2BoardErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noError", - "3": "dimmEccError", - "4": "unlockError", - "5": "configError", - "6": "busError", - "7": "powerError", - "8": "advancedEcc", - "9": "onlineSpare", - "10": "mirrored", - "11": "mirroredDimmError", - "12": "memoryRaid", - "13": "raidDimmError", - "14": "lockStep", - "15": "lockStepError", - "16": "a3dc", - "17": "a3dcError" - } - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 6 - ] - }, - "cpqHeResMem2BoardLocked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unlocked", - "3": "locked" - } - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 7 - ] - }, - "cpqHeResMem2BoardNumSockets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 8 - ] - }, - "cpqHeResMem2BoardOsMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 9 - ] - }, - "cpqHeResMem2BoardTotalMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 10 - ] - }, - "cpqHeResMem2BoardCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded" - } - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 11 - ] - }, - "cpqHeResMem2BoardHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonHotPluggable", - "3": "hotPluggable" - } - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 12 - ] - }, - "cpqHeResMem2BoardOperatingFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 13 - ] - }, - "cpqHeResMem2BoardOperatingVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2BoardEntry", - 14 - ] - }, - "cpqHeResMem2ModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeResMem2ModuleEntry" - }, - "index": null, - "value": [ - "cpqHeResilientMemory", - 13 - ] - }, - "cpqHeResMem2ModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeResMem2ModuleEntry" - }, - "index": [ - "cpqHeResMem2Module" - ], - "value": [ - "cpqHeResMem2ModuleTable", - 1 - ] - }, - "CpqHeResMem2ModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqHeResMem2Module": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 1 - ] - }, - "cpqHeResMem2BoardNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 2 - ] - }, - "cpqHeResMem2CpuNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 3 - ] - }, - "cpqHeResMem2RiserNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 4 - ] - }, - "cpqHeResMem2ModuleNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 5 - ] - }, - "cpqHeResMem2ModuleSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 6 - ] - }, - "cpqHeResMem2ModuleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "board", - "3": "cpqSingleWidthModule", - "4": "cpqDoubleWidthModule", - "5": "simm", - "6": "pcmcia", - "7": "compaq-specific", - "8": "dimm", - "9": "smallOutlineDimm", - "10": "rimm", - "11": "srimm", - "12": "fb-dimm", - "13": "dimmddr", - "14": "dimmddr2", - "15": "dimmddr3", - "16": "dimmfbd2", - "17": "fb-dimmddr2", - "18": "fb-dimmddr3", - "19": "dimmddr4", - "20": "hpe-specific" - } - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 7 - ] - }, - "cpqHeResMem2ModuleTechnology": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "fastPageMode", - "3": "edoPageMode", - "4": "burstEdoPageMode", - "5": "synchronous", - "6": "rdram", - "7": "rdimm", - "8": "udimm", - "9": "lrdimm", - "10": "nvdimm", - "11": "rnvdimm", - "12": "lrnvdimm", - "13": "pmm" - } - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 8 - ] - }, - "cpqHeResMem2ModuleManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 9 - ] - }, - "cpqHeResMem2ModulePartNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 10 - ] - }, - "cpqHeResMem2ModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 11 - ] - }, - "cpqHeResMem2ModuleSerialNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 12 - ] - }, - "cpqHeResMem2ModuleHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 13 - ] - }, - "cpqHeResMem2ModuleFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 14 - ] - }, - "cpqHeResMem2ModuleCellTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 15 - ] - }, - "cpqHeResMem2ModuleCellStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "deconfigured" - } - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 16 - ] - }, - "cpqHeResMem2ModulePartNoMfgr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 17 - ] - }, - "cpqHeResMem2ModuleSerialNoMfgr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 18 - ] - }, - "cpqHeResMem2ModuleStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notPresent", - "3": "present", - "4": "good", - "5": "add", - "6": "upgrade", - "7": "missing", - "8": "doesNotMatch", - "9": "notSupported", - "10": "badConfig", - "11": "degraded", - "12": "spare", - "13": "partial", - "14": "configError", - "15": "trainingFailure" - } - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 19 - ] - }, - "cpqHeResMem2ModuleCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "degradedModuleIndexUnknown" - } - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 20 - ] - }, - "cpqHeResMem2ModuleSpd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 21 - ] - }, - "cpqHeResMem2ModuleSmartMemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notHPSmartMemory", - "3": "isHPSmartMemory", - "4": "isHPStandardMemory" - } - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 22 - ] - }, - "cpqHeResMem2ModuleMinVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 23 - ] - }, - "cpqHeResMem2ModuleRanks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeResMem2ModuleEntry", - 24 - ] - }, - "cpqHePowerMeterSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "supported", - "3": "unsupported" - } - }, - "index": null, - "value": [ - "cpqHePowerMeter", - 1 - ] - }, - "cpqHePowerMeterStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "present", - "3": "absent" - } - }, - "index": null, - "value": [ - "cpqHePowerMeter", - 2 - ] - }, - "cpqHePowerMeterCurrReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerMeter", - 3 - ] - }, - "cpqHePowerMeterPrevReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerMeter", - 4 - ] - }, - "cpqHeHWBiosCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeHWBios", - 1 - ] - }, - "cpqHeSysBackupBatteryCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeSysBackupBattery", - 1 - ] - }, - "cpqHeSysBatteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeSysBatteryEntry" - }, - "index": null, - "value": [ - "cpqHeSysBackupBattery", - 2 - ] - }, - "cpqHeSysBatteryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeSysBatteryEntry" - }, - "index": [ - "cpqHeSysBatteryChassis", - "cpqHeSysBatteryIndex" - ], - "value": [ - "cpqHeSysBatteryTable", - 1 - ] - }, - "CpqHeSysBatteryEntry": { - "tp": "SEQUENCE" - }, - "cpqHeSysBatteryChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 1 - ] - }, - "cpqHeSysBatteryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 2 - ] - }, - "cpqHeSysBatteryPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "absent", - "3": "present" - } - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 3 - ] - }, - "cpqHeSysBatteryCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 4 - ] - }, - "cpqHeSysBatteryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "generalFailure", - "3": "shutdownHighResistance", - "4": "shutdownLowVoltage", - "5": "shutdownShortCircuit", - "6": "shutdownChargeTimeout", - "7": "shutdownOverTemperature", - "8": "shutdownDischargeMinVoltage", - "9": "shutdownDischargeCurrent", - "10": "shutdownLoadCountHigh", - "11": "shutdownEnablePin", - "12": "shutdownOverCurrent", - "13": "shutdownPermanentFailure", - "14": "shutdownBackupTimeExceeded", - "15": "predictiveFailure" - } - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 5 - ] - }, - "cpqHeSysBatteryCapacityMaximum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 6 - ] - }, - "cpqHeSysBatteryProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 7 - ] - }, - "cpqHeSysBatteryModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 8 - ] - }, - "cpqHeSysBatterySerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 9 - ] - }, - "cpqHeSysBatteryFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 10 - ] - }, - "cpqHeSysBatterySparePartNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeSysBatteryEntry", - 11 - ] - }, - "cpqHeSysPwrAllocationOptimizeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "failed" - } - }, - "index": null, - "value": [ - "cpqHeSysPwrHw", - 1 - ] - }, - "cpqHeSysBoardFruStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeSysBoardFru", - 1 - ] - }, - "cpqHePowerFailureSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true" - } - }, - "index": null, - "value": [ - "cpqHePowerFailure", - 1 - ] - }, - "cpqHePowerFailureTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHePowerFailureTableEntry" - }, - "index": null, - "value": [ - "cpqHePowerFailure", - 2 - ] - }, - "cpqHePowerFailureTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHePowerFailureTableEntry" - }, - "index": [ - "cpqHePowerFailureIndex" - ], - "value": [ - "cpqHePowerFailureTable", - 1 - ] - }, - "CpqHePowerFailureTableEntry": { - "tp": "SEQUENCE" - }, - "cpqHePowerFailureIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 1 - ] - }, - "cpqHePowerFailureStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "failed" - } - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 2 - ] - }, - "cpqHePowerFailureDeviceID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 3 - ] - }, - "cpqHePowerFailureArea": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemBoard", - "2": "processor", - "3": "memory", - "4": "memoryBoard", - "5": "riserCardAssembly", - "6": "flexibleLOM", - "7": "flexibleSmartArray", - "8": "optIOPCIeSlots", - "9": "powerBackplane", - "10": "sasBackplane", - "11": "powerSupply", - "12": "mezzCard", - "13": "enclosure" - } - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 4 - ] - }, - "cpqHePowerFailureDeviceBitMap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 5 - ] - }, - "cpqHePowerFailureGroupString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 6 - ] - }, - "cpqHePowerFailureRepairSteps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "systemBoardRpMsg1", - "3": "processorRpMsg1", - "4": "memoryRpMsg1", - "5": "memoryBoardRpMsg1", - "6": "riserCardAssemblyRpMsg1", - "7": "flexibleLomRpMsg1", - "8": "flexibleSmartArrayRpMsg1", - "9": "optIOPCIeSlotsRpMsg1", - "10": "powerBackplaneRpMsg1", - "11": "sasBackplaneRpMsg1", - "12": "powerSupplyRpMsg1", - "13": "mezzCardRpMsg1", - "14": "enclosureRpMsg1" - } - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 7 - ] - }, - "cpqHePowerFailureType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "tempDeadly", - "3": "inputPowerLoss", - "4": "badFuse", - "5": "standby", - "6": "runtime", - "7": "powerOn", - "8": "generic", - "9": "cpuThermTrip" - } - }, - "index": null, - "value": [ - "cpqHePowerFailureTableEntry", - 8 - ] - }, - "cpqHeInterlockFailureSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true" - } - }, - "index": null, - "value": [ - "cpqHeInterlockFailure", - 1 - ] - }, - "cpqHeInterlockFailureTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeInterlockFailureTableEntry" - }, - "index": null, - "value": [ - "cpqHeInterlockFailure", - 2 - ] - }, - "cpqHeInterlockFailureTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeInterlockFailureTableEntry" - }, - "index": [ - "cpqHeInterlockFailureIndex" - ], - "value": [ - "cpqHeInterlockFailureTable", - 1 - ] - }, - "CpqHeInterlockFailureTableEntry": { - "tp": "SEQUENCE" - }, - "cpqHeInterlockFailureIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeInterlockFailureTableEntry", - 1 - ] - }, - "cpqHeInterlockFailureStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "failed" - } - }, - "index": null, - "value": [ - "cpqHeInterlockFailureTableEntry", - 2 - ] - }, - "cpqHeInterlockFailureDeviceID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeInterlockFailureTableEntry", - 3 - ] - }, - "cpqHeInterlockFailureArea": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemBoard", - "2": "processor", - "3": "memory", - "4": "memoryBoard", - "5": "riserCardAssembly", - "6": "flexibleLOM", - "7": "flexibleSmartArray", - "8": "optIOPCIeSlots", - "9": "powerBackplane", - "10": "sasBackplane", - "11": "powerSupply", - "12": "mezzCard", - "13": "enclosure" - } - }, - "index": null, - "value": [ - "cpqHeInterlockFailureTableEntry", - 4 - ] - }, - "cpqHeInterlockFailureDeviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeInterlockFailureTableEntry", - 5 - ] - }, - "cpqHeInterlockFailureType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "standby", - "3": "runtime", - "4": "powerOn", - "5": "generic" - } - }, - "index": null, - "value": [ - "cpqHeInterlockFailureTableEntry", - 6 - ] - }, - "cpqHeNvdimmCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeNvdimm", - 1 - ] - }, - "cpqHeNvdimmTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeNvdimmTableEntry" - }, - "index": null, - "value": [ - "cpqHeNvdimm", - 2 - ] - }, - "cpqHeNvdimmTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeNvdimmTableEntry" - }, - "index": [ - "cpqHeNvdimmProcessorNum", - "cpqHeNvdimmDimmNum" - ], - "value": [ - "cpqHeNvdimmTable", - 1 - ] - }, - "CpqHeNvdimmTableEntry": { - "tp": "SEQUENCE" - }, - "cpqHeNvdimmDimmNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 1 - ] - }, - "cpqHeNvdimmProcessorNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 2 - ] - }, - "cpqHeNvdimmType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "nvdimm-n", - "3": "nvdimm-f", - "4": "nvdimm-p", - "5": "nvdimm-logical" - } - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 3 - ] - }, - "cpqHeNvdimmMemoryMedia": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "dram", - "3": "nand", - "4": "proprietary" - } - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 4 - ] - }, - "cpqHeNvdimmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 5 - ] - }, - "cpqHeNvdimmBackupStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "inprogress", - "3": "complete", - "4": "error" - } - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 6 - ] - }, - "cpqHeNvdimmRestoreStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "inprogress", - "3": "complete", - "4": "error" - } - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 7 - ] - }, - "cpqHeNvdimmEraseStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "inprogress", - "3": "complete", - "4": "error" - } - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 8 - ] - }, - "cpqHeNvdimmPredictedMediaLifePercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 9 - ] - }, - "cpqHeNvdimmPersistentRegionSizeLimitMiB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 10 - ] - }, - "cpqHeNvdimmVolatileRegionSizeLimitMiB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 11 - ] - }, - "cpqHeNvdimmPwrSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "superCap", - "3": "aux", - "4": "systemBattery", - "5": "ups" - } - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 12 - ] - }, - "cpqHeNvdimmFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 13 - ] - }, - "cpqHeNvdimmMfrId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 14 - ] - }, - "cpqHeNvdimmMfrLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 15 - ] - }, - "cpqHeNvdimmMfrDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 16 - ] - }, - "cpqHeNvdimmSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 17 - ] - }, - "cpqHeNvdimmAssociatedNVMeDrive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 18 - ] - }, - "cpqHeNvdimmAssociatedUPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeNvdimmTableEntry", - 19 - ] - }, - "cpqHeBbuCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHeBbu", - 1 - ] - }, - "cpqHeBbuTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeBbuEntry" - }, - "index": null, - "value": [ - "cpqHeBbu", - 2 - ] - }, - "cpqHeBbuEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeBbuEntry" - }, - "index": [ - "cpqHeBbuChassis", - "cpqHeBbuBay" - ], - "value": [ - "cpqHeBbuTable", - 1 - ] - }, - "CpqHeBbuEntry": { - "tp": "SEQUENCE" - }, - "cpqHeBbuChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 1 - ] - }, - "cpqHeBbuBay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 2 - ] - }, - "cpqHeBbuStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "failure", - "4": "permanentFailure" - } - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 3 - ] - }, - "cpqHeBbuTimeToCutoff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 4 - ] - }, - "cpqHeBbuTimeToCharge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 5 - ] - }, - "cpqHeBbuRatedCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 6 - ] - }, - "cpqHeBbuPresentCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 7 - ] - }, - "cpqHeBbuCutoffCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 8 - ] - }, - "cpqHeBbuCutoffSetPoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 9 - ] - }, - "cpqHeBbuChargePercentage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 10 - ] - }, - "cpqHeBbuSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 11 - ] - }, - "cpqHeBbuMaxCapacityWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 12 - ] - }, - "cpqHeBbuFirmware": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 13 - ] - }, - "cpqHeBbuChargeState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "discharging", - "3": "notCharging", - "4": "slowCharging", - "5": "standardCharging", - "6": "charged" - } - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 14 - ] - }, - "cpqHeBbuErrorCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "batteryFailure", - "3": "replaceBattery" - } - }, - "index": null, - "value": [ - "cpqHeBbuEntry", - 15 - ] - }, - "cpqHeTrapPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqHeTrap", - 1 - ] - }, - "cpqHeTrapLogMaxSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeTrap", - 2 - ] - }, - "cpqHeTrapLogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHeTrapLogEntry" - }, - "index": null, - "value": [ - "cpqHeTrap", - 3 - ] - }, - "cpqHeTrapLogEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHeTrapLogEntry" - }, - "index": [ - "cpqHeTrapLogIndex" - ], - "value": [ - "cpqHeTrapLogTable", - 1 - ] - }, - "CpqHeTrapLogEntry": { - "tp": "SEQUENCE" - }, - "cpqHeTrapLogIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHeTrapLogEntry", - 1 - ] - }, - "cpqHeTrapType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "cpqHeCorrectableMemoryError", - "2": "cpqHeCorrectableMemoryLogDisabled", - "6001": "cpqHe2CorrectableMemoryError", - "6002": "cpqHe2CorrectableMemoryLogDisabled", - "6003": "cpqHeThermalTempFailed", - "6004": "cpqHeThermalTempDegraded", - "6005": "cpqHeThermalTempOk", - "6006": "cpqHeThermalSystemFanFailed", - "6007": "cpqHeThermalSystemFanDegraded", - "6008": "cpqHeThermalSystemFanOk", - "6009": "cpqHeThermalCpuFanFailed", - "6010": "cpqHeThermalCpuFanOk", - "6011": "cpqHeAsrConfirmation", - "6012": "cpqHeThermalConfirmation", - "6013": "cpqHePostError" - } - }, - "index": null, - "value": [ - "cpqHeTrapLogEntry", - 2 - ] - }, - "cpqHeTrapTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHeTrapLogEntry", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CPQHOST-MIB.json b/mibs/parsed/CPQHOST-MIB.json deleted file mode 100644 index 3706dfc..0000000 --- a/mibs/parsed/CPQHOST-MIB.json +++ /dev/null @@ -1,1901 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "enterprises" - ] - ], - [ - "RFC1155-SMI", - [ - "IpAddress" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "sysName" - ] - ] - ], - "compaq": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 232 - ] - }, - "cpqHostOs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "compaq", - 11 - ] - }, - "cpqHoMibRev": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHostOs", - 1 - ] - }, - "cpqHoComponent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHostOs", - 2 - ] - }, - "cpqHoInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 1 - ] - }, - "cpqHoInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 2 - ] - }, - "cpqHoUtil": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 3 - ] - }, - "cpqHoFileSys": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 4 - ] - }, - "cpqHoIfPhysMap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 5 - ] - }, - "cpqHoSWRunning": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 6 - ] - }, - "cpqHoSwVer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 7 - ] - }, - "cpqHoGeneric": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 8 - ] - }, - "cpqHoSwPerf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 9 - ] - }, - "cpqHoSystemStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 10 - ] - }, - "cpqHoTrapInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 11 - ] - }, - "cpqHoClients": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 12 - ] - }, - "cpqHoMemory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 13 - ] - }, - "cpqHoFwVer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 14 - ] - }, - "cpqHoHWInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 15 - ] - }, - "cpqPwrThreshold": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoComponent", - 16 - ] - }, - "cpqHoOsCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqHoInterface", - 4 - ] - }, - "cpqHoMibRevMajor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoMibRev", - 1 - ] - }, - "cpqHoMibRevMinor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoMibRev", - 2 - ] - }, - "cpqHoMibCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHoMibRev", - 3 - ] - }, - "cpqHoOsCommonPollFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoOsCommon", - 1 - ] - }, - "cpqHoOsCommonModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoOsCommonModuleEntry" - }, - "index": null, - "value": [ - "cpqHoOsCommon", - 2 - ] - }, - "cpqHoOsCommonModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoOsCommonModuleEntry" - }, - "index": [ - "cpqHoOsCommonModuleIndex" - ], - "value": [ - "cpqHoOsCommonModuleTable", - 1 - ] - }, - "CpqHoOsCommonModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqHoOsCommonModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoOsCommonModuleEntry", - 1 - ] - }, - "cpqHoOsCommonModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoOsCommonModuleEntry", - 2 - ] - }, - "cpqHoOsCommonModuleVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoOsCommonModuleEntry", - 3 - ] - }, - "cpqHoOsCommonModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoOsCommonModuleEntry", - 4 - ] - }, - "cpqHoOsCommonModulePurpose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoOsCommonModuleEntry", - 5 - ] - }, - "cpqHoName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 1 - ] - }, - "cpqHoVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 2 - ] - }, - "cpqHoDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 3 - ] - }, - "cpqHoOsType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "netware", - "3": "windowsnt", - "4": "sco-unix", - "5": "unixware", - "6": "os-2", - "7": "ms-dos", - "8": "dos-windows", - "9": "windows95", - "10": "windows98", - "11": "open-vms", - "12": "nsk", - "13": "windowsCE", - "14": "linux", - "15": "windows2000", - "16": "tru64UNIX", - "17": "windows2003", - "18": "windows2003-x64", - "19": "solaris", - "20": "windows2003-ia64", - "21": "windows2008", - "22": "windows2008-x64", - "23": "windows2008-ia64", - "24": "vmware-esx", - "25": "vmware-esxi", - "26": "windows2012", - "27": "windows7", - "28": "windows7-x64", - "29": "windows8", - "30": "windows8-x64", - "31": "windows81", - "32": "windows81-x64", - "33": "windowsxp", - "34": "windowsxp-x64", - "35": "windowsvista", - "36": "windowsvista-x64", - "37": "windows2008-r2", - "38": "windows2012-r2", - "39": "rhel", - "40": "rhel-64", - "41": "solaris-64", - "42": "sles", - "43": "sles-64", - "44": "ubuntu", - "45": "ubuntu-64", - "46": "debian", - "47": "debian-64", - "48": "linux-64-bit", - "49": "other-64-bit", - "50": "centos-32bit", - "51": "centos-64bit", - "52": "oracle-linux32", - "53": "oracle-linux64", - "54": "apple-osx", - "55": "windows2016", - "56": "nanoserver", - "57": "windows2019" - } - }, - "index": null, - "value": [ - "cpqHoInfo", - 4 - ] - }, - "cpqHoTelnet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "available", - "3": "notavailable" - } - }, - "index": null, - "value": [ - "cpqHoInfo", - 5 - ] - }, - "cpqHoSystemRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 6 - ] - }, - "cpqHoSystemRoleDetail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 7 - ] - }, - "cpqHoCrashDumpState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "completememorydump", - "2": "kernelmemorydump", - "3": "smallmemorydump", - "4": "none" - } - }, - "index": null, - "value": [ - "cpqHoInfo", - 8 - ] - }, - "cpqHoCrashDumpCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHoInfo", - 9 - ] - }, - "cpqHoCrashDumpMonitoring": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "cpqHoInfo", - 10 - ] - }, - "cpqHoMaxLogicalCPUSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoInfo", - 11 - ] - }, - "cpqHoSystemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 12 - ] - }, - "cpqHosysDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoInfo", - 13 - ] - }, - "cpqHoCpuUtilTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoCpuUtilEntry" - }, - "index": null, - "value": [ - "cpqHoUtil", - 1 - ] - }, - "cpqHoCpuUtilEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoCpuUtilEntry" - }, - "index": [ - "cpqHoCpuUtilUnitIndex" - ], - "value": [ - "cpqHoCpuUtilTable", - 1 - ] - }, - "CpqHoCpuUtilEntry": { - "tp": "SEQUENCE" - }, - "cpqHoCpuUtilUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoCpuUtilEntry", - 1 - ] - }, - "cpqHoCpuUtilMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoCpuUtilEntry", - 2 - ] - }, - "cpqHoCpuUtilFiveMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoCpuUtilEntry", - 3 - ] - }, - "cpqHoCpuUtilThirtyMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoCpuUtilEntry", - 4 - ] - }, - "cpqHoCpuUtilHour": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoCpuUtilEntry", - 5 - ] - }, - "cpqHoCpuUtilHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoCpuUtilEntry", - 6 - ] - }, - "cpqHoFileSysTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoFileSysEntry" - }, - "index": null, - "value": [ - "cpqHoFileSys", - 1 - ] - }, - "cpqHoFileSysEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoFileSysEntry" - }, - "index": [ - "cpqHoFileSysIndex" - ], - "value": [ - "cpqHoFileSysTable", - 1 - ] - }, - "CpqHoFileSysEntry": { - "tp": "SEQUENCE" - }, - "cpqHoFileSysIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 1 - ] - }, - "cpqHoFileSysDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 2 - ] - }, - "cpqHoFileSysSpaceTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 3 - ] - }, - "cpqHoFileSysSpaceUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 4 - ] - }, - "cpqHoFileSysPercentSpaceUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 5 - ] - }, - "cpqHoFileSysAllocUnitsTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 6 - ] - }, - "cpqHoFileSysAllocUnitsUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 7 - ] - }, - "cpqHoFileSysStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 8 - ] - }, - "cpqHoFileSysShortDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFileSysEntry", - 9 - ] - }, - "cpqHoFileSysCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHoFileSys", - 2 - ] - }, - "cpqHoIfPhysMapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoIfPhysMapEntry" - }, - "index": null, - "value": [ - "cpqHoIfPhysMap", - 1 - ] - }, - "cpqHoIfPhysMapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoIfPhysMapEntry" - }, - "index": [ - "cpqHoIfPhysMapIndex" - ], - "value": [ - "cpqHoIfPhysMapTable", - 1 - ] - }, - "CpqHoIfPhysMapEntry": { - "tp": "SEQUENCE" - }, - "cpqHoIfPhysMapIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 1 - ] - }, - "cpqHoIfPhysMapSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 2 - ] - }, - "cpqHoIfPhysMapIoBaseAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 3 - ] - }, - "cpqHoIfPhysMapIrq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 4 - ] - }, - "cpqHoIfPhysMapDma": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 5 - ] - }, - "cpqHoIfPhysMapMemBaseAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 6 - ] - }, - "cpqHoIfPhysMapPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 7 - ] - }, - "cpqHoIfPhysMapDuplexState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "half", - "3": "full" - } - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 8 - ] - }, - "cpqHoIfPhysMapCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHoIfPhysMapEntry", - 9 - ] - }, - "cpqHoIfPhysMapOverallCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqHoIfPhysMap", - 2 - ] - }, - "cpqHoSWRunningTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoSWRunningEntry" - }, - "index": null, - "value": [ - "cpqHoSWRunning", - 1 - ] - }, - "cpqHoSWRunningEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoSWRunningEntry" - }, - "index": [ - "cpqHoSWRunningIndex" - ], - "value": [ - "cpqHoSWRunningTable", - 1 - ] - }, - "CpqHoSWRunningEntry": { - "tp": "SEQUENCE" - }, - "cpqHoSWRunningIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 1 - ] - }, - "cpqHoSWRunningName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 2 - ] - }, - "cpqHoSWRunningDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 3 - ] - }, - "cpqHoSWRunningVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 4 - ] - }, - "cpqHoSWRunningDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 5 - ] - }, - "cpqHoSWRunningMonitor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "start", - "3": "stop", - "4": "startAndStop", - "5": "count", - "6": "startAndCount", - "7": "countAndStop", - "8": "startCountAndStop" - } - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 6 - ] - }, - "cpqHoSWRunningState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "started", - "3": "stopped" - } - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 7 - ] - }, - "cpqHoSWRunningCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 8 - ] - }, - "cpqHoSWRunningCountMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 9 - ] - }, - "cpqHoSWRunningCountMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 10 - ] - }, - "cpqHoSWRunningEventTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 11 - ] - }, - "cpqHoSWRunningStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "normal", - "3": "warning", - "4": "minor", - "5": "major", - "6": "critical", - "7": "disabled" - } - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 12 - ] - }, - "cpqHoSWRunningConfigStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "starting", - "3": "initialized", - "4": "configured", - "5": "operational" - } - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 13 - ] - }, - "cpqHoSWRunningIdentifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 14 - ] - }, - "cpqHoSWRunningRedundancyMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "master", - "3": "backup", - "4": "slave" - } - }, - "index": null, - "value": [ - "cpqHoSWRunningEntry", - 15 - ] - }, - "cpqHoSwRunningTrapDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSWRunning", - 2 - ] - }, - "cpqHoSwVerNextIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSwVer", - 1 - ] - }, - "cpqHoSwVerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoSwVerEntry" - }, - "index": null, - "value": [ - "cpqHoSwVer", - 2 - ] - }, - "cpqHoSwVerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoSwVerEntry" - }, - "index": [ - "cpqHoSwVerIndex" - ], - "value": [ - "cpqHoSwVerTable", - 1 - ] - }, - "CpqHoSwVerEntry": { - "tp": "SEQUENCE" - }, - "cpqHoSwVerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 1 - ] - }, - "cpqHoSwVerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "loaded", - "3": "notloaded" - } - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 2 - ] - }, - "cpqHoSwVerType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "driver", - "3": "agent", - "4": "sysutil", - "5": "application", - "6": "keyfile", - "7": "firmware" - } - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 3 - ] - }, - "cpqHoSwVerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 4 - ] - }, - "cpqHoSwVerDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 5 - ] - }, - "cpqHoSwVerDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 6 - ] - }, - "cpqHoSwVerLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 7 - ] - }, - "cpqHoSwVerVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 8 - ] - }, - "cpqHoSwVerVersionBinary": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwVerEntry", - 9 - ] - }, - "cpqHoSwVerAgentsVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwVer", - 3 - ] - }, - "cpqHoGenericData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoGeneric", - 1 - ] - }, - "cpqHoCriticalSoftwareUpdateData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoGeneric", - 2 - ] - }, - "cpqHoSwPerfAppErrorDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoSwPerf", - 1 - ] - }, - "cpqHoMibStatusArray": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 1 - ] - }, - "cpqHoConfigChangedDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 2 - ] - }, - "cpqHoGUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 3 - ] - }, - "cpqHoCodeServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 4 - ] - }, - "cpqHoWebMgmtPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 5 - ] - }, - "cpqHoGUIDCanonical": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 6 - ] - }, - "cpqHoMibHealthStatusArray": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoSystemStatus", - 7 - ] - }, - "cpqHoTrapFlags": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoTrapInfo", - 1 - ] - }, - "cpqHoClientLastModified": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoClients", - 1 - ] - }, - "cpqHoClientDelete": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoClients", - 2 - ] - }, - "cpqHoClientTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoClientEntry" - }, - "index": null, - "value": [ - "cpqHoClients", - 3 - ] - }, - "cpqHoClientEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoClientEntry" - }, - "index": [ - "cpqHoClientIndex" - ], - "value": [ - "cpqHoClientTable", - 1 - ] - }, - "CpqHoClientEntry": { - "tp": "SEQUENCE" - }, - "cpqHoClientIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoClientEntry", - 1 - ] - }, - "cpqHoClientName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoClientEntry", - 2 - ] - }, - "cpqHoClientIpxAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoClientEntry", - 3 - ] - }, - "cpqHoClientIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpqHoClientEntry", - 4 - ] - }, - "cpqHoClientCommunity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoClientEntry", - 5 - ] - }, - "cpqHoClientID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqHoClientEntry", - 6 - ] - }, - "cpqHoPhysicalMemorySize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoMemory", - 1 - ] - }, - "cpqHoPhysicalMemoryFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoMemory", - 2 - ] - }, - "cpqHoPagingMemorySize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoMemory", - 3 - ] - }, - "cpqHoPagingMemoryFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoMemory", - 4 - ] - }, - "cpqHoBootPagingFileSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoMemory", - 5 - ] - }, - "cpqHoBootPagingFileMinimumSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoMemory", - 6 - ] - }, - "cpqHoBootPagingFileVolumeFreeSpace": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoMemory", - 7 - ] - }, - "cpqHoFwVerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqHoFwVerEntry" - }, - "index": null, - "value": [ - "cpqHoFwVer", - 1 - ] - }, - "cpqHoFwVerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqHoFwVerEntry" - }, - "index": [ - "cpqHoFwVerIndex" - ], - "value": [ - "cpqHoFwVerTable", - 1 - ] - }, - "CpqHoFwVerEntry": { - "tp": "SEQUENCE" - }, - "cpqHoFwVerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 1 - ] - }, - "cpqHoFwVerCategory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "storage", - "3": "nic", - "4": "rib", - "5": "system" - } - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 2 - ] - }, - "cpqHoFwVerDeviceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "internalArrayController", - "3": "fibreArrayController", - "4": "scsiController", - "5": "fibreChannelTapeController", - "6": "modularDataRouter", - "7": "ideCdRomDrive", - "8": "ideDiskDrive", - "9": "scsiCdRom-ScsiAttached", - "10": "scsiDiskDrive-ScsiAttached", - "11": "scsiTapeDrive-ScsiAttached", - "12": "scsiTapeLibrary-ScsiAttached", - "13": "scsiDiskDrive-ArrayAttached", - "14": "scsiTapeDrive-ArrayAttached", - "15": "scsiTapeLibrary-ArrayAttached", - "16": "scsiDiskDrive-FibreAttached", - "17": "scsiTapeDrive-FibreAttached", - "18": "scsiTapeLibrary-FibreAttached", - "19": "scsiEnclosureBackplaneRom-ScsiAttached", - "20": "scsiEnclosureBackplaneRom-ArrayAttached", - "21": "scsiEnclosureBackplaneRom-FibreAttached", - "22": "scsiEnclosureBackplaneRom-ra4x00", - "23": "systemRom", - "24": "networkInterfaceController", - "25": "remoteInsightBoard", - "26": "sasDiskDrive-SasAttached", - "27": "sataDiskDrive-SataAttached", - "28": "usbController", - "29": "sasControllerAdapter", - "30": "sataControllerAdapter", - "31": "systemDevice", - "32": "fibreChannelHba", - "33": "convergedNetworkAdapter", - "34": "ideController" - } - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 3 - ] - }, - "cpqHoFwVerDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 4 - ] - }, - "cpqHoFwVerVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 5 - ] - }, - "cpqHoFwVerLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 6 - ] - }, - "cpqHoFwVerXmlString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 7 - ] - }, - "cpqHoFwVerKeyString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 8 - ] - }, - "cpqHoFwVerUpdateMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noUpdate", - "3": "softwareflash", - "4": "replacePhysicalRom" - } - }, - "index": null, - "value": [ - "cpqHoFwVerEntry", - 9 - ] - }, - "cpqHoHWInfoPlatform": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "cellular", - "3": "foundation", - "4": "virtualMachine", - "5": "serverBlade" - } - }, - "index": null, - "value": [ - "cpqHoHWInfo", - 1 - ] - }, - "cpqPwrWarnType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqPwrThreshold", - 1 - ] - }, - "cpqPwrWarnThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqPwrThreshold", - 2 - ] - }, - "cpqPwrWarnDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqPwrThreshold", - 3 - ] - }, - "cpqSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqPwrThreshold", - 4 - ] - }, - "cpqServerUUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqPwrThreshold", - 5 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CPQIDA-MIB.json b/mibs/parsed/CPQIDA-MIB.json deleted file mode 100644 index 5fda75a..0000000 --- a/mibs/parsed/CPQIDA-MIB.json +++ /dev/null @@ -1,5952 +0,0 @@ -{ - "IMPORTS": [ - [ - "CPQHOST-MIB", - [ - "compaq" - ] - ], - [ - "RFC1155-SMI", - [ - "Counter" - ] - ], - [ - "RFC1155-SMI", - [ - "Gauge" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "sysName" - ] - ], - [ - "CPQHOST-MIB", - [ - "cpqHoTrapFlags" - ] - ] - ], - "cpqDriveArray": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "compaq", - 3 - ] - }, - "cpqDaMibRev": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDriveArray", - 1 - ] - }, - "cpqDaComponent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDriveArray", - 2 - ] - }, - "cpqDaTrap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDriveArray", - 3 - ] - }, - "cpqDaInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 1 - ] - }, - "cpqDaCntlr": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 2 - ] - }, - "cpqDaLogDrv": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 3 - ] - }, - "cpqDaSpareDrv": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 4 - ] - }, - "cpqDaPhyDrv": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 5 - ] - }, - "cpqDaPhyDrvThr": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 6 - ] - }, - "cpqDaCntlrPerf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 7 - ] - }, - "cpqDaLogDrvPerf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 8 - ] - }, - "cpqDaTapeDrv": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 9 - ] - }, - "cpqDaTapeCounters": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 10 - ] - }, - "cpqDaTapeLibrary": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaComponent", - 11 - ] - }, - "cpqDaOsNetWare3x": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaInterface", - 1 - ] - }, - "cpqDaOsCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqDaInterface", - 4 - ] - }, - "cpqDaMibRevMajor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaMibRev", - 1 - ] - }, - "cpqDaMibRevMinor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaMibRev", - 2 - ] - }, - "cpqDaMibCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaMibRev", - 3 - ] - }, - "cpqDaNw3xDriverName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaOsNetWare3x", - 1 - ] - }, - "cpqDaNw3xDriverVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaOsNetWare3x", - 2 - ] - }, - "cpqDaNw3xPollType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "polled", - "3": "demand" - } - }, - "index": null, - "value": [ - "cpqDaOsNetWare3x", - 3 - ] - }, - "cpqDaNw3xPollTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaOsNetWare3x", - 4 - ] - }, - "cpqDaNw3xDriverStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaNw3xDriverStatEntry" - }, - "index": null, - "value": [ - "cpqDaOsNetWare3x", - 5 - ] - }, - "cpqDaNw3xDriverStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaNw3xDriverStatEntry" - }, - "index": [ - "cpqDaNw3xCntlrIndex", - "cpqDaNw3xLogDrvIndex" - ], - "value": [ - "cpqDaNw3xDriverStatTable", - 1 - ] - }, - "CpqDaNw3xDriverStatEntry": { - "tp": "SEQUENCE" - }, - "cpqDaNw3xCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 1 - ] - }, - "cpqDaNw3xLogDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 2 - ] - }, - "cpqDaNw3xTotalReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 3 - ] - }, - "cpqDaNw3xTotalWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 4 - ] - }, - "cpqDaNw3xCorrReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 5 - ] - }, - "cpqDaNw3xCorrWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 6 - ] - }, - "cpqDaNw3xFatalReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 7 - ] - }, - "cpqDaNw3xFatalWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaNw3xDriverStatEntry", - 8 - ] - }, - "cpqDaNw3xVolMapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaNw3xVolMapEntry" - }, - "index": null, - "value": [ - "cpqDaOsNetWare3x", - 6 - ] - }, - "cpqDaNw3xVolMapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaNw3xVolMapEntry" - }, - "index": [ - "cpqDaNw3xVolCntlrIndex", - "cpqDaNw3xVolLogDrvIndex" - ], - "value": [ - "cpqDaNw3xVolMapTable", - 1 - ] - }, - "CpqDaNw3xVolMapEntry": { - "tp": "SEQUENCE" - }, - "cpqDaNw3xVolCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaNw3xVolMapEntry", - 1 - ] - }, - "cpqDaNw3xVolLogDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaNw3xVolMapEntry", - 2 - ] - }, - "cpqDaNw3xVolMap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaNw3xVolMapEntry", - 3 - ] - }, - "cpqDaOsCommonPollFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaOsCommon", - 1 - ] - }, - "cpqDaOsCommonModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaOsCommonModuleEntry" - }, - "index": null, - "value": [ - "cpqDaOsCommon", - 2 - ] - }, - "cpqDaOsCommonModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaOsCommonModuleEntry" - }, - "index": [ - "cpqDaOsCommonModuleIndex" - ], - "value": [ - "cpqDaOsCommonModuleTable", - 1 - ] - }, - "CpqDaOsCommonModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqDaOsCommonModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaOsCommonModuleEntry", - 1 - ] - }, - "cpqDaOsCommonModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaOsCommonModuleEntry", - 2 - ] - }, - "cpqDaOsCommonModuleVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaOsCommonModuleEntry", - 3 - ] - }, - "cpqDaOsCommonModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaOsCommonModuleEntry", - 4 - ] - }, - "cpqDaOsCommonModulePurpose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaOsCommonModuleEntry", - 5 - ] - }, - "cpqDaOsCommonCollectionReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "resetSupported", - "3": "resetNotSupported", - "4": "doReset" - } - }, - "index": null, - "value": [ - "cpqDaOsCommon", - 3 - ] - }, - "cpqDaCntlrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaCntlrEntry" - }, - "index": null, - "value": [ - "cpqDaCntlr", - 1 - ] - }, - "cpqDaCntlrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaCntlrEntry" - }, - "index": [ - "cpqDaCntlrIndex" - ], - "value": [ - "cpqDaCntlrTable", - 1 - ] - }, - "CpqDaCntlrEntry": { - "tp": "SEQUENCE" - }, - "cpqDaCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 1 - ] - }, - "cpqDaCntlrModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ida", - "3": "idaExpansion", - "4": "ida-2", - "5": "smart", - "6": "smart-2e", - "7": "smart-2p", - "8": "smart-2sl", - "9": "smart-3100es", - "10": "smart-3200", - "11": "smart-2dh", - "12": "smart-221", - "13": "sa-4250es", - "14": "sa-4200", - "15": "sa-integrated", - "16": "sa-431", - "17": "sa-5300", - "18": "raidLc2", - "19": "sa-5i", - "20": "sa-532", - "21": "sa-5312", - "22": "sa-641", - "23": "sa-642", - "24": "sa-6400", - "25": "sa-6400em", - "26": "sa-6i", - "27": "sa-generic", - "29": "sa-p600", - "30": "sa-p400", - "31": "sa-e200", - "32": "sa-e200i", - "33": "sa-p400i", - "34": "sa-p800", - "35": "sa-e500", - "36": "sa-p700m", - "37": "sa-p212", - "38": "sa-p410", - "39": "sa-p410i", - "40": "sa-p411", - "41": "sa-b110i", - "42": "sa-p712m", - "43": "sa-p711m", - "44": "sa-p812", - "45": "sw-1210m", - "46": "sa-p220i", - "47": "sa-p222", - "48": "sa-p420", - "49": "sa-p420i", - "50": "sa-p421", - "51": "sa-b320i", - "52": "sa-p822", - "53": "sa-p721m", - "54": "sa-b120i", - "55": "hps-1224", - "56": "hps-1228", - "57": "hps-1228m", - "58": "sa-p822se", - "59": "hps-1224e", - "60": "hps-1228e", - "61": "hps-1228em", - "62": "sa-p230i", - "63": "sa-p430i", - "64": "sa-p430", - "65": "sa-p431", - "66": "sa-p731m", - "67": "sa-p830i", - "68": "sa-p830", - "69": "sa-p831", - "70": "sa-p530", - "71": "sa-p531", - "72": "sa-p244br", - "73": "sa-p246br", - "74": "sa-p440", - "75": "sa-p440ar", - "76": "sa-p441", - "77": "sa-p741m", - "78": "sa-p840", - "79": "sa-p841", - "80": "sh-h240ar", - "81": "sh-h244br", - "82": "sh-h240", - "83": "sh-h241", - "84": "sa-b140i", - "85": "sh-generic", - "86": "sa-p240nr", - "87": "sh-h240nr", - "88": "sa-p840ar", - "89": "sa-p542d", - "90": "s100i", - "91": "e208i-p", - "92": "e208i-a", - "93": "e208i-c", - "94": "e208e-p", - "95": "p204i-b", - "96": "p204i-c", - "97": "p408i-p", - "98": "p408i-a", - "99": "p408e-p", - "100": "p408i-c", - "101": "p408e-m", - "102": "p416ie-m", - "103": "p816i-a", - "104": "p408i-sb" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 2 - ] - }, - "cpqDaCntlrFWRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 3 - ] - }, - "cpqDaCntlrStndIntr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "primary", - "3": "secondary", - "4": "disabled", - "5": "unavailable" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 4 - ] - }, - "cpqDaCntlrSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 5 - ] - }, - "cpqDaCntlrCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 6 - ] - }, - "cpqDaCntlrProductRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 7 - ] - }, - "cpqDaCntlrPartnerSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 8 - ] - }, - "cpqDaCntlrCurrentRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notDuplexed", - "3": "active", - "4": "backup", - "5": "asymActiveActive" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 9 - ] - }, - "cpqDaCntlrBoardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "generalFailure", - "4": "cableProblem", - "5": "poweredOff", - "6": "cacheModuleMissing" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 10 - ] - }, - "cpqDaCntlrPartnerBoardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "generalFailure", - "4": "cableProblem", - "5": "poweredOff" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 11 - ] - }, - "cpqDaCntlrBoardCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 12 - ] - }, - "cpqDaCntlrPartnerBoardCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 13 - ] - }, - "cpqDaCntlrDriveOwnership": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "owner", - "3": "notOwner" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 14 - ] - }, - "cpqDaCntlrSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 15 - ] - }, - "cpqDaCntlrRedundancyType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notRedundant", - "3": "driverDuplexing", - "4": "fwActiveStandby", - "5": "fwPrimarySecondary", - "6": "fwActiveActive" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 16 - ] - }, - "cpqDaCntlrRedundancyError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noFailure", - "3": "noRedundantController", - "4": "differentHardware", - "5": "noLink", - "6": "differentFirmware", - "7": "differentCache", - "8": "otherCacheFailure", - "9": "noDrives", - "10": "otherNoDrives", - "11": "unsupportedDrives", - "12": "expandInProgress" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 17 - ] - }, - "cpqDaCntlrAccessModuleStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "notPresent", - "4": "badSignature", - "5": "badChecksum", - "6": "fullyFunctional", - "7": "upgradeFirmware" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 18 - ] - }, - "cpqDaCntlrDaughterBoardType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "notPresent", - "4": "scsiBoardPresent", - "5": "fibreBoardPresent", - "6": "arrayExpansionModulePresent" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 19 - ] - }, - "cpqDaCntlrHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 20 - ] - }, - "cpqDaCntlrNumberOfBuses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 21 - ] - }, - "cpqDaCntlrBlinkTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 22 - ] - }, - "cpqDaCntlrRebuildPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "low", - "3": "medium", - "4": "high", - "5": "mediumHigh" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 23 - ] - }, - "cpqDaCntlrExpandPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "low", - "3": "medium", - "4": "high" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 24 - ] - }, - "cpqDaCntlrNumberOfInternalPorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 25 - ] - }, - "cpqDaCntlrNumberOfExternalPorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 26 - ] - }, - "cpqDaCntlrDriveWriteCacheState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 27 - ] - }, - "cpqDaCntlrPartnerSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 28 - ] - }, - "cpqDaCntlrOptionRomRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 29 - ] - }, - "cpqDaCntlrHbaFWRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 30 - ] - }, - "cpqDaCntlrHBAModeOptionRomRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 31 - ] - }, - "cpqDaCntlrCurrentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 32 - ] - }, - "cpqDaCntlrLastLockupCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 33 - ] - }, - "cpqDaCntlrEncryptionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notEnabled", - "3": "enabledLocalKeyMode", - "4": "enabledRemoteKeyManagerMode" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 34 - ] - }, - "cpqDaCntlrASICEncptSelfTestStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "selfTestsPass", - "3": "selfTestsFailed" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 35 - ] - }, - "cpqDaCntlrEncryptCspNvramStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "detectionFailed" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 36 - ] - }, - "cpqDaCntlrEncryptCryptoOfficerPwdSetStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 37 - ] - }, - "cpqDaCntlrEncryptCntlrPwdSetStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 38 - ] - }, - "cpqDaCntlrEncryptCntlrPwdAvailStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "passwordMissing", - "3": "passwordActive" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 39 - ] - }, - "cpqDaCntlrUnencryptedLogDrvCreationPolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 40 - ] - }, - "cpqDaCntlrEncryptedLogDrvCreationPolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 41 - ] - }, - "cpqDaCntlrEncryptFWLockStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 42 - ] - }, - "cpqDaCntlrOperatingMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "smartArrayMode", - "3": "smartHbaMode", - "4": "mixedMode" - } - }, - "index": null, - "value": [ - "cpqDaCntlrEntry", - 43 - ] - }, - "cpqDaAccelTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaAccelEntry" - }, - "index": null, - "value": [ - "cpqDaCntlr", - 2 - ] - }, - "cpqDaAccelEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaAccelEntry" - }, - "index": [ - "cpqDaAccelCntlrIndex" - ], - "value": [ - "cpqDaAccelTable", - 1 - ] - }, - "CpqDaAccelEntry": { - "tp": "SEQUENCE" - }, - "cpqDaAccelCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 1 - ] - }, - "cpqDaAccelStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "invalid", - "3": "enabled", - "4": "tmpDisabled", - "5": "permDisabled", - "6": "cacheModFlashMemNotAttached", - "7": "cacheModDegradedFailsafeSpeed", - "8": "cacheModCriticalFailure", - "9": "cacheReadCacheNotMapped" - } - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 2 - ] - }, - "cpqDaAccelMemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 3 - ] - }, - "cpqDaAccelBadData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "possible" - } - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 4 - ] - }, - "cpqDaAccelErrCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "invalid", - "3": "badConfig", - "4": "lowBattery", - "5": "disableCmd", - "6": "noResources", - "7": "notConnected", - "8": "badMirrorData", - "9": "readErr", - "10": "writeErr", - "11": "configCmd", - "12": "expandInProgress", - "13": "snapshotInProgress", - "14": "redundantLowBattery", - "15": "redundantSizeMismatch", - "16": "redundantCacheFailure", - "17": "excessiveEccErrors", - "18": "adgEnablerMissing", - "19": "postEccErrors", - "20": "batteryHotRemoved", - "21": "capacitorChargeLow", - "22": "notEnoughBatteries", - "23": "cacheModuleNotSupported", - "24": "batteryNotSupported", - "25": "noCapacitorAttached", - "26": "capBasedBackupFailed", - "27": "capBasedRestoreFailed", - "28": "capBasedModuleHWFailure", - "29": "capacitorFailedToCharge", - "30": "capacitorBasedHWMemBeingErased", - "31": "incompatibleCacheModule", - "32": "fbcmChargerCircuitFailure", - "33": "cbPowerSourceCableError" - } - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 5 - ] - }, - "cpqDaAccelBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "recharging", - "4": "failed", - "5": "degraded", - "6": "notPresent", - "7": "capacitorFailed" - } - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 6 - ] - }, - "cpqDaAccelReadErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 7 - ] - }, - "cpqDaAccelWriteErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 8 - ] - }, - "cpqDaAccelCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 9 - ] - }, - "cpqDaAccelReadMemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 10 - ] - }, - "cpqDaAccelSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 11 - ] - }, - "cpqDaAccelTotalMemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 12 - ] - }, - "cpqDaAccelReadCachePercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 13 - ] - }, - "cpqDaAccelWriteCachePercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 14 - ] - }, - "cpqDaAccelFailedBatteries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 15 - ] - }, - "cpqDaAccelBackupPowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "battery", - "3": "capacitor", - "4": "smartbattery" - } - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 16 - ] - }, - "cpqDaAccelBoardCurrentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 17 - ] - }, - "cpqDaAccelCapacitorCurrentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 18 - ] - }, - "cpqDaAccelMemoryDataWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 19 - ] - }, - "cpqDaAccelMemoryTransferRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaAccelEntry", - 20 - ] - }, - "cpqDaManagedCableTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaManagedCableEntry" - }, - "index": null, - "value": [ - "cpqDaCntlr", - 3 - ] - }, - "cpqDaManagedCableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaManagedCableEntry" - }, - "index": [ - "cpqDaManagedCableCntlrIndex" - ], - "value": [ - "cpqDaManagedCableTable", - 1 - ] - }, - "CpqDaManagedCableEntry": { - "tp": "SEQUENCE" - }, - "cpqDaManagedCableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 1 - ] - }, - "cpqDaManagedCableCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 2 - ] - }, - "cpqDaManagedCableHostConnector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 3 - ] - }, - "cpqDaManagedCableStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "nonFatalFault", - "4": "fatalFault" - } - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 4 - ] - }, - "cpqDaManagedCableFaultCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "linkFault", - "4": "noComWithCableMgmtInterface", - "5": "cannotConfigureCable" - } - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 5 - ] - }, - "cpqDaManagedCableVendorRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 6 - ] - }, - "cpqDaManagedCableVendorSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 7 - ] - }, - "cpqDaManagedCableVendorPartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 8 - ] - }, - "cpqDaManagedCableLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaManagedCableEntry", - 9 - ] - }, - "cpqDaLogDrvTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaLogDrvEntry" - }, - "index": null, - "value": [ - "cpqDaLogDrv", - 1 - ] - }, - "cpqDaLogDrvEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaLogDrvEntry" - }, - "index": [ - "cpqDaLogDrvCntlrIndex", - "cpqDaLogDrvIndex" - ], - "value": [ - "cpqDaLogDrvTable", - 1 - ] - }, - "CpqDaLogDrvEntry": { - "tp": "SEQUENCE" - }, - "cpqDaLogDrvCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 1 - ] - }, - "cpqDaLogDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 2 - ] - }, - "cpqDaLogDrvFaultTol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "mirroring", - "4": "dataGuard", - "5": "distribDataGuard", - "7": "advancedDataGuard", - "8": "raid50", - "9": "raid60", - "10": "raid1Adm", - "11": "raid10Adm", - "12": "raid10" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 3 - ] - }, - "cpqDaLogDrvStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "failed", - "4": "unconfigured", - "5": "recovering", - "6": "readyForRebuild", - "7": "rebuilding", - "8": "wrongDrive", - "9": "badConnect", - "10": "overheating", - "11": "shutdown", - "12": "expanding", - "13": "notAvailable", - "14": "queuedForExpansion", - "15": "multipathAccessDegraded", - "16": "erasing", - "17": "predictiveSpareRebuildReady", - "18": "rapidParityInitInProgress", - "19": "rapidParityInitPending", - "20": "noAccessEncryptedNoCntlrKey", - "21": "unencryptedToEncryptedInProgress", - "22": "newLogDrvKeyRekeyInProgress", - "23": "noAccessEncryptedCntlrEncryptnNotEnbld", - "24": "unencryptedToEncryptedNotStarted", - "25": "newLogDrvKeyRekeyRequestReceived" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 4 - ] - }, - "cpqDaLogDrvAutoRel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 5 - ] - }, - "cpqDaLogDrvRebuildBlks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 6 - ] - }, - "cpqDaLogDrvHasAccel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unavailable", - "3": "enabled", - "4": "disabled" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 7 - ] - }, - "cpqDaLogDrvAvailSpares": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 8 - ] - }, - "cpqDaLogDrvSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 9 - ] - }, - "cpqDaLogDrvPhyDrvIDs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 10 - ] - }, - "cpqDaLogDrvCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 11 - ] - }, - "cpqDaLogDrvPercentRebuild": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 12 - ] - }, - "cpqDaLogDrvStripeSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 13 - ] - }, - "cpqDaLogDrvOsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 14 - ] - }, - "cpqDaLogDrvBlinkTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 15 - ] - }, - "cpqDaLogDrvSpareReplaceMap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 16 - ] - }, - "cpqDaLogDrvRebuildingPhyDrv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 17 - ] - }, - "cpqDaLogDrvMultipathAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "notConfigured", - "4": "pathRedundant", - "5": "noRedundantPath" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 18 - ] - }, - "cpqDaLogDrvNmbrOfParityGroups": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 19 - ] - }, - "cpqDaLogDrvSplitMirrorBackupLogDrv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "isNotBackupLogicalDrive", - "3": "isBackupLogicalDrive" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 20 - ] - }, - "cpqDaLogDrvCacheVolAccelAssocType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "nonMember", - "3": "logicalDriveMember", - "4": "cacheVolumeMember" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 21 - ] - }, - "cpqDaLogDrvCacheVolIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 22 - ] - }, - "cpqDaLogDrvRPIPercentComplete": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 23 - ] - }, - "cpqDaLogDrvSSDSmartPathStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "updateDriver", - "3": "ssdSmartPathDisabled", - "4": "ssdSmartPathEnabled" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 24 - ] - }, - "cpqDaLogDrvEncryptionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "encrypted", - "3": "notEncrypted" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvEntry", - 25 - ] - }, - "cpqDaLogDrvPhyDrvExtAttachTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaLogDrvPhyDrvExtAttachEntry" - }, - "index": null, - "value": [ - "cpqDaLogDrv", - 2 - ] - }, - "cpqDaLogDrvPhyDrvExtAttachEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaLogDrvPhyDrvExtAttachEntry" - }, - "index": [ - "cpqDaLogDrvPhyDrvAttachExtIndex" - ], - "value": [ - "cpqDaLogDrvPhyDrvExtAttachTable", - 1 - ] - }, - "CpqDaLogDrvPhyDrvExtAttachEntry": { - "tp": "SEQUENCE" - }, - "cpqDaLogDrvPhyDrvAttachExtIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPhyDrvExtAttachEntry", - 1 - ] - }, - "cpqDaLogDrvCntlrExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPhyDrvExtAttachEntry", - 2 - ] - }, - "cpqDaLogDrvLogDrvExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPhyDrvExtAttachEntry", - 3 - ] - }, - "cpqDaLogDrvPhyDrvExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPhyDrvExtAttachEntry", - 4 - ] - }, - "cpqDaLogDrvSprRplcExtAttachTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaLogDrvSprRplcExtAttachEntry" - }, - "index": null, - "value": [ - "cpqDaLogDrv", - 3 - ] - }, - "cpqDaLogDrvSprRplcExtAttachEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaLogDrvSprRplcExtAttachEntry" - }, - "index": [ - "cpqDaLogDrvSprRplcAttachExtIndex" - ], - "value": [ - "cpqDaLogDrvSprRplcExtAttachTable", - 1 - ] - }, - "CpqDaLogDrvSprRplcExtAttachEntry": { - "tp": "SEQUENCE" - }, - "cpqDaLogDrvSprRplcAttachExtIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvSprRplcExtAttachEntry", - 1 - ] - }, - "cpqDaLogDrvSprRplcCntlrExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvSprRplcExtAttachEntry", - 2 - ] - }, - "cpqDaLogDrvSprRplcLogDrvExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvSprRplcExtAttachEntry", - 3 - ] - }, - "cpqDaLogDrvSprRplcReplacedPhysDrvExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvSprRplcExtAttachEntry", - 4 - ] - }, - "cpqDaLogDrvSprRplcSparePhysDrvExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvSprRplcExtAttachEntry", - 5 - ] - }, - "cpqDaLogDrvAvalSprExtAttachTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaLogDrvAvalSprExtAttachEntry" - }, - "index": null, - "value": [ - "cpqDaLogDrv", - 4 - ] - }, - "cpqDaLogDrvAvalSprExtAttachEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaLogDrvAvalSprExtAttachEntry" - }, - "index": [ - "cpqDaLogDrvAvailSprAttachExtIndex" - ], - "value": [ - "cpqDaLogDrvAvalSprExtAttachTable", - 1 - ] - }, - "CpqDaLogDrvAvalSprExtAttachEntry": { - "tp": "SEQUENCE" - }, - "cpqDaLogDrvAvailSprAttachExtIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvAvalSprExtAttachEntry", - 1 - ] - }, - "cpqDaLogDrvAvailSprCntlrExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvAvalSprExtAttachEntry", - 2 - ] - }, - "cpqDaLogDrvAvailSprLogDrvExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvAvalSprExtAttachEntry", - 3 - ] - }, - "cpqDaLogDrvAvailSprAvailableSpareExtended": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvAvalSprExtAttachEntry", - 4 - ] - }, - "cpqDaLogDrvCacheVolumeAccelTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaLogDrvCacheVolumeAccelEntry" - }, - "index": null, - "value": [ - "cpqDaLogDrv", - 5 - ] - }, - "cpqDaLogDrvCacheVolumeAccelEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaLogDrvCacheVolumeAccelEntry" - }, - "index": [ - "cpqDaLogDrvCacheVolAccelCntlrIndex", - "cpqDaLogDrvCacheVolAccelLogDrvIndex" - ], - "value": [ - "cpqDaLogDrvCacheVolumeAccelTable", - 1 - ] - }, - "CpqDaLogDrvCacheVolumeAccelEntry": { - "tp": "SEQUENCE" - }, - "cpqDaLogDrvCacheVolAccelCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 1 - ] - }, - "cpqDaLogDrvCacheVolAccelLogDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 2 - ] - }, - "cpqDaLogDrvCacheVolAccelCachingAlgorithm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "multiSegment", - "3": "singleSegment" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 3 - ] - }, - "cpqDaLogDrvCacheVolAccelCacheState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "cacheVolOffline", - "5": "logDriveOffline", - "6": "neverConfigured", - "7": "flushing", - "8": "configuring", - "9": "cacheConfigurationFailed" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 4 - ] - }, - "cpqDaLogDrvCacheVolAccelWritePolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "readOnly", - "3": "writeThrough", - "4": "writeBackSafe", - "5": "writeBackUnsafe", - "6": "writeThroughNoLoad" - } - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 5 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadHitsH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 6 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 7 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoadH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 8 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissDoLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 9 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissLoadingH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 10 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissLoading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 11 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissSkipH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 12 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissSkip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 13 - ] - }, - "cpqDaLogDrvCacheVolAccelReadCacheHitRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 14 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteHitsH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 15 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 16 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoadH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 17 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissDoLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 18 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissLoadingH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 19 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissLoading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 20 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissSkipH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 21 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissSkip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 22 - ] - }, - "cpqDaLogDrvCacheVolAccelWriteCacheHitRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 23 - ] - }, - "cpqDaLogDrvCacheVolAccelLoadFailures": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 24 - ] - }, - "cpqDaLogDrvCacheVolAccelCacheLineSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 25 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissLockedH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 26 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissLocked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 27 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissLockedH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 28 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissLocked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 29 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissTotalH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 30 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfReadMissTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 31 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissTotalH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 32 - ] - }, - "cpqDaLogDrvCacheVolAccelNoOfWriteMissTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvCacheVolumeAccelEntry", - 33 - ] - }, - "cpqDaSpareTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaSpareEntry" - }, - "index": null, - "value": [ - "cpqDaSpareDrv", - 1 - ] - }, - "cpqDaSpareEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaSpareEntry" - }, - "index": [ - "cpqDaSpareCntlrIndex", - "cpqDaSparePhyDrvIndex" - ], - "value": [ - "cpqDaSpareTable", - 1 - ] - }, - "CpqDaSpareEntry": { - "tp": "SEQUENCE" - }, - "cpqDaSpareCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 1 - ] - }, - "cpqDaSparePhyDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 2 - ] - }, - "cpqDaSpareStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "invalid", - "3": "failed", - "4": "inactive", - "5": "building", - "6": "active" - } - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 3 - ] - }, - "cpqDaSpareReplacedDrv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 4 - ] - }, - "cpqDaSpareRebuildBlks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 5 - ] - }, - "cpqDaSpareCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 6 - ] - }, - "cpqDaSpareBusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 7 - ] - }, - "cpqDaSpareBay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 8 - ] - }, - "cpqDaSpareReplacedDrvBusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 9 - ] - }, - "cpqDaSpareReplacedDrvBay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 10 - ] - }, - "cpqDaSparePercentRebuild": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 11 - ] - }, - "cpqDaSpareLocationString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaSpareEntry", - 12 - ] - }, - "cpqDaPhyDrvTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaPhyDrvEntry" - }, - "index": null, - "value": [ - "cpqDaPhyDrv", - 1 - ] - }, - "cpqDaPhyDrvEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaPhyDrvEntry" - }, - "index": [ - "cpqDaPhyDrvCntlrIndex", - "cpqDaPhyDrvIndex" - ], - "value": [ - "cpqDaPhyDrvTable", - 1 - ] - }, - "CpqDaPhyDrvEntry": { - "tp": "SEQUENCE" - }, - "cpqDaPhyDrvCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 1 - ] - }, - "cpqDaPhyDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 2 - ] - }, - "cpqDaPhyDrvModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 3 - ] - }, - "cpqDaPhyDrvFWRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 4 - ] - }, - "cpqDaPhyDrvBay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 5 - ] - }, - "cpqDaPhyDrvStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "failed", - "4": "predictiveFailure", - "5": "erasing", - "6": "eraseDone", - "7": "eraseQueued", - "8": "ssdWearOut", - "9": "notAuthenticated" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 6 - ] - }, - "cpqDaPhyDrvFactReallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 7 - ] - }, - "cpqDaPhyDrvUsedReallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 8 - ] - }, - "cpqDaPhyDrvRefHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 9 - ] - }, - "cpqDaPhyDrvHReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 10 - ] - }, - "cpqDaPhyDrvReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 11 - ] - }, - "cpqDaPhyDrvHWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 12 - ] - }, - "cpqDaPhyDrvWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 13 - ] - }, - "cpqDaPhyDrvHSeeks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 14 - ] - }, - "cpqDaPhyDrvSeeks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 15 - ] - }, - "cpqDaPhyDrvHardReadErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 16 - ] - }, - "cpqDaPhyDrvRecvReadErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 17 - ] - }, - "cpqDaPhyDrvHardWriteErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 18 - ] - }, - "cpqDaPhyDrvRecvWriteErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 19 - ] - }, - "cpqDaPhyDrvHSeekErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 20 - ] - }, - "cpqDaPhyDrvSeekErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 21 - ] - }, - "cpqDaPhyDrvSpinupTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 22 - ] - }, - "cpqDaPhyDrvFunctTest1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 23 - ] - }, - "cpqDaPhyDrvFunctTest2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 24 - ] - }, - "cpqDaPhyDrvFunctTest3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 25 - ] - }, - "cpqDaPhyDrvDrqTimeouts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 26 - ] - }, - "cpqDaPhyDrvOtherTimeouts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 27 - ] - }, - "cpqDaPhyDrvSpinupRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 28 - ] - }, - "cpqDaPhyDrvBadRecvReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 29 - ] - }, - "cpqDaPhyDrvBadRecvWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 30 - ] - }, - "cpqDaPhyDrvFormatErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 31 - ] - }, - "cpqDaPhyDrvPostErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 32 - ] - }, - "cpqDaPhyDrvNotReadyErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 33 - ] - }, - "cpqDaPhyDrvReallocAborts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 34 - ] - }, - "cpqDaPhyDrvThreshPassed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 35 - ] - }, - "cpqDaPhyDrvHasMonInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 36 - ] - }, - "cpqDaPhyDrvCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 37 - ] - }, - "cpqDaPhyDrvHotPlugs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 38 - ] - }, - "cpqDaPhyDrvMediaErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 39 - ] - }, - "cpqDaPhyDrvHardwareErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 40 - ] - }, - "cpqDaPhyDrvAbortedCmds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 41 - ] - }, - "cpqDaPhyDrvSpinUpErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 42 - ] - }, - "cpqDaPhyDrvBadTargetErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 43 - ] - }, - "cpqDaPhyDrvLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "internal", - "3": "external", - "4": "proLiant" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 44 - ] - }, - "cpqDaPhyDrvSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 45 - ] - }, - "cpqDaPhyDrvBusFaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 46 - ] - }, - "cpqDaPhyDrvIrqDeglitches": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 47 - ] - }, - "cpqDaPhyDrvHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "hotPlug", - "3": "nonHotPlug" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 48 - ] - }, - "cpqDaPhyDrvPlacement": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "internal", - "3": "external" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 49 - ] - }, - "cpqDaPhyDrvBusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 50 - ] - }, - "cpqDaPhyDrvSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 51 - ] - }, - "cpqDaPhyDrvPreFailMonitoring": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notAvailable", - "3": "available" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 52 - ] - }, - "cpqDaPhyDrvCurrentWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "narrow", - "3": "wide16" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 53 - ] - }, - "cpqDaPhyDrvCurrentSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "asynchronous", - "3": "fast", - "4": "ultra", - "5": "ultra2", - "6": "ultra3", - "7": "ultra320" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 54 - ] - }, - "cpqDaPhyDrvFailureCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 55 - ] - }, - "cpqDaPhyDrvBlinkTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 56 - ] - }, - "cpqDaPhyDrvSmartStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "replaceDrive", - "4": "replaceDriveSSDWearOut" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 57 - ] - }, - "cpqDaPhyDrvConfigurationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "configured", - "3": "notConfigured" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 58 - ] - }, - "cpqDaPhyDrvRotationalSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "rpm7200", - "3": "rpm10K", - "4": "rpm15K", - "5": "rpmSsd" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 59 - ] - }, - "cpqDaPhyDrvType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "parallelScsi", - "3": "sata", - "4": "sas", - "5": "nvme" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 60 - ] - }, - "cpqDaPhyDrvSataVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "sataOne", - "3": "sataTwo" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 61 - ] - }, - "cpqDaPhyDrvHostConnector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 62 - ] - }, - "cpqDaPhyDrvBoxOnConnector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 63 - ] - }, - "cpqDaPhyDrvLocationString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 64 - ] - }, - "cpqDaPhyDrvNegotiatedLinkRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "rate-1-5", - "3": "rate-3-0", - "4": "rate-6-0", - "5": "rate-12-0" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 65 - ] - }, - "cpqDaPhyDrvNcqSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noControllerSupport", - "3": "noDriveSupport", - "4": "ncqDisabled", - "5": "ncqEnabled" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 66 - ] - }, - "cpqDaPhyDrvPhyCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 67 - ] - }, - "cpqDaPhyDrvMultipathAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "notConfigured", - "4": "pathRedundant", - "5": "noRedundantPath", - "6": "driveFailed" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 68 - ] - }, - "cpqDaPhyDrvMediaType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "rotatingPlatters", - "3": "solidState", - "4": "smr" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 69 - ] - }, - "cpqDaPhyDrvCurrentTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 70 - ] - }, - "cpqDaPhyDrvTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 71 - ] - }, - "cpqDaPhyDrvMaximumTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 72 - ] - }, - "cpqDaPhyDrvSSDWearStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "fiftySixDayThreshold", - "4": "fivePercentThreshold", - "5": "twoPercentThreshold", - "6": "ssdWearOut" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 73 - ] - }, - "cpqDaPhyDrvPowerOnHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 74 - ] - }, - "cpqDaPhyDrvSSDPercntEndrnceUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 75 - ] - }, - "cpqDaPhyDrvSSDEstTimeRemainingHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 76 - ] - }, - "cpqDaPhyDrvAuthenticationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "authenticationFailed", - "4": "authenticationPassed" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 77 - ] - }, - "cpqDaPhyDrvSmartCarrierAppFWRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 78 - ] - }, - "cpqDaPhyDrvSmartCarrierBootldrFWRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 79 - ] - }, - "cpqDaPhyDrvEncryptionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "encrypted", - "3": "notEncrypted" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvEntry", - 80 - ] - }, - "cpqDaPhyDrvErrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaPhyDrvErrEntry" - }, - "index": null, - "value": [ - "cpqDaPhyDrv", - 2 - ] - }, - "cpqDaPhyDrvErrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaPhyDrvErrEntry" - }, - "index": [ - "cpqDaPhyDrvErrCntlrIndex", - "cpqDaPhyDrvErrIDIndex", - "cpqDaPhyDrvErrIndex" - ], - "value": [ - "cpqDaPhyDrvErrTable", - 1 - ] - }, - "CpqDaPhyDrvErrEntry": { - "tp": "SEQUENCE" - }, - "cpqDaPhyDrvErrCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 1 - ] - }, - "cpqDaPhyDrvErrIDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 2 - ] - }, - "cpqDaPhyDrvErrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 3 - ] - }, - "cpqDaPhyDrvErrType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noError", - "3": "scsiError", - "4": "camError" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 4 - ] - }, - "cpqDaPhyDrvScsiOp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 5 - ] - }, - "cpqDaPhyDrvScsiStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 6 - ] - }, - "cpqDaPhyDrvCamStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 7 - ] - }, - "cpqDaPhyDrvSenseKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 8 - ] - }, - "cpqDaPhyDrvQualifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 9 - ] - }, - "cpqDaPhyDrvSenseCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 10 - ] - }, - "cpqDaPhyDrvBlockValid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 11 - ] - }, - "cpqDaPhyDrvBlock": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 12 - ] - }, - "cpqDaPhyDrvTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 13 - ] - }, - "cpqDaPhyDrvUserDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 14 - ] - }, - "cpqDaPhyDrvErrDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "driveFailure", - "2": "commFailure", - "3": "driveIOError", - "4": "scsiCommError", - "5": "compaqUpgradeRequired", - "6": "driveWriteProtected", - "7": "invalidRequest", - "8": "scsiMessageError", - "9": "controllerFailure", - "10": "internExternConflict", - "11": "internalDriveFailure", - "12": "scsiErrorOutOfRange", - "13": "camErrorOutOfRange", - "14": "errorTypeOutOfRange" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvErrEntry", - 15 - ] - }, - "cpqDaPhyDrvPathTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaPhyDrvPathEntry" - }, - "index": null, - "value": [ - "cpqDaPhyDrv", - 3 - ] - }, - "cpqDaPhyDrvPathEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaPhyDrvPathEntry" - }, - "index": [ - "cpqDaPhyDrvPathCntlrIndex", - "cpqDaPhyDrvPathDrvIndex", - "cpqDaPhyDrvPathIndex" - ], - "value": [ - "cpqDaPhyDrvPathTable", - 1 - ] - }, - "CpqDaPhyDrvPathEntry": { - "tp": "SEQUENCE" - }, - "cpqDaPhyDrvPathCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 1 - ] - }, - "cpqDaPhyDrvPathDrvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 2 - ] - }, - "cpqDaPhyDrvPathIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 3 - ] - }, - "cpqDaPhyDrvPathStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "linkDown" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 4 - ] - }, - "cpqDaPhyDrvPathCurrentRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "active", - "3": "alternate" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 5 - ] - }, - "cpqDaPhyDrvPathHostConnector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 6 - ] - }, - "cpqDaPhyDrvPathBoxOnConnector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 7 - ] - }, - "cpqDaPhyDrvPathLocationString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaPhyDrvPathEntry", - 8 - ] - }, - "cpqDaPhyDrvThrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaPhyDrvThrEntry" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThr", - 1 - ] - }, - "cpqDaPhyDrvThrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaPhyDrvThrEntry" - }, - "index": [ - "cpqDaPhyDrvThrCntlrIndex", - "cpqDaPhyDrvThrIndex" - ], - "value": [ - "cpqDaPhyDrvThrTable", - 1 - ] - }, - "CpqDaPhyDrvThrEntry": { - "tp": "SEQUENCE" - }, - "cpqDaPhyDrvThrCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 1 - ] - }, - "cpqDaPhyDrvThrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 2 - ] - }, - "cpqDaPhyDrvThrUsedReallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 3 - ] - }, - "cpqDaPhyDrvThrRefHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 4 - ] - }, - "cpqDaPhyDrvThrHardReadErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 5 - ] - }, - "cpqDaPhyDrvThrRecvReadErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 6 - ] - }, - "cpqDaPhyDrvThrHardWriteErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 7 - ] - }, - "cpqDaPhyDrvThrRecvWriteErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 8 - ] - }, - "cpqDaPhyDrvThrHSeekErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 9 - ] - }, - "cpqDaPhyDrvThrSeekErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 10 - ] - }, - "cpqDaPhyDrvThrSpinupTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 11 - ] - }, - "cpqDaPhyDrvThrFunctTest1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 12 - ] - }, - "cpqDaPhyDrvThrFunctTest2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 13 - ] - }, - "cpqDaPhyDrvThrFunctTest3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 14 - ] - }, - "cpqDaPhyDrvThrDrqTimeouts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 15 - ] - }, - "cpqDaPhyDrvThrOtherTimeouts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 16 - ] - }, - "cpqDaPhyDrvThrSpinupRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 17 - ] - }, - "cpqDaPhyDrvThrBadRecvReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 18 - ] - }, - "cpqDaPhyDrvThrBadRecvWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 19 - ] - }, - "cpqDaPhyDrvThrFormatErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 20 - ] - }, - "cpqDaPhyDrvThrPostErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 21 - ] - }, - "cpqDaPhyDrvThrNotReadyErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 22 - ] - }, - "cpqDaPhyDrvThrReallocAborts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 23 - ] - }, - "cpqDaPhyDrvThrHotPlugs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 24 - ] - }, - "cpqDaPhyDrvThrMediaErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 25 - ] - }, - "cpqDaPhyDrvThrHardwareErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 26 - ] - }, - "cpqDaPhyDrvThrAbortedCmds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 27 - ] - }, - "cpqDaPhyDrvThrSpinUpErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 28 - ] - }, - "cpqDaPhyDrvThrBadTargetErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 29 - ] - }, - "cpqDaPhyDrvThrViUsedReallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true", - "4294967295": "unknown" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 30 - ] - }, - "cpqDaPhyDrvThrViSpinupTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true", - "4294967295": "unknown" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 31 - ] - }, - "cpqDaPhyDrvThrViFunctTest1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true", - "4294967295": "unknown" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 32 - ] - }, - "cpqDaPhyDrvThrViFunctTest2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true", - "4294967295": "unknown" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 33 - ] - }, - "cpqDaPhyDrvThrViFunctTest3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true", - "4294967295": "unknown" - } - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 34 - ] - }, - "cpqDaPhyDrvThrBusFaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 35 - ] - }, - "cpqDaPhyDrvThrIrqDeglitches": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaPhyDrvThrEntry", - 36 - ] - }, - "cpqDaCntlrPerfTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaCntlrPerfEntry" - }, - "index": null, - "value": [ - "cpqDaCntlrPerf", - 1 - ] - }, - "cpqDaCntlrPerfEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaCntlrPerfEntry" - }, - "index": [ - "cpqDaCntlrPerfCntlrIndex", - "cpqDaCntlrPerfInstance" - ], - "value": [ - "cpqDaCntlrPerfTable", - 1 - ] - }, - "CpqDaCntlrPerfEntry": { - "tp": "SEQUENCE" - }, - "cpqDaCntlrPerfCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 1 - ] - }, - "cpqDaCntlrPerfInstance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 2 - ] - }, - "cpqDaCntlrPerfSampleInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 3 - ] - }, - "cpqDaCntlrPerfVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 4 - ] - }, - "cpqDaCntlrPerfCpuPercentBusy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 5 - ] - }, - "cpqDaCntlrPerfCommandCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 6 - ] - }, - "cpqDaCntlrPerfAvgLatency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaCntlrPerfEntry", - 7 - ] - }, - "cpqDaLogDrvPerfTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaLogDrvPerfEntry" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerf", - 1 - ] - }, - "cpqDaLogDrvPerfEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaLogDrvPerfEntry" - }, - "index": [ - "cpqDaLogDrvPerfCntlrIndex", - "cpqDaLogDrvPerfIndex", - "cpqDaLogDrvPerfInstance" - ], - "value": [ - "cpqDaLogDrvPerfTable", - 1 - ] - }, - "CpqDaLogDrvPerfEntry": { - "tp": "SEQUENCE" - }, - "cpqDaLogDrvPerfCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 1 - ] - }, - "cpqDaLogDrvPerfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 2 - ] - }, - "cpqDaLogDrvPerfInstance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 3 - ] - }, - "cpqDaLogDrvPerfSampleInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 4 - ] - }, - "cpqDaLogDrvPerfAvgQueueDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 5 - ] - }, - "cpqDaLogDrvPerfReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 6 - ] - }, - "cpqDaLogDrvPerfWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 7 - ] - }, - "cpqDaLogDrvPerfTotalIO": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 8 - ] - }, - "cpqDaLogDrvPerfCacheHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 9 - ] - }, - "cpqDaLogDrvPerfCacheMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 10 - ] - }, - "cpqDaLogDrvPerfReadAheadSectors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 11 - ] - }, - "cpqDaLogDrvPerfSectorsRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 12 - ] - }, - "cpqDaLogDrvPerfSectorsWritten": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaLogDrvPerfEntry", - 13 - ] - }, - "cpqDaTapeDrvTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaTapeDrvEntry" - }, - "index": null, - "value": [ - "cpqDaTapeDrv", - 1 - ] - }, - "cpqDaTapeDrvEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaTapeDrvEntry" - }, - "index": [ - "cpqDaTapeDrvCntlrIndex", - "cpqDaTapeDrvBusIndex", - "cpqDaTapeDrvScsiIdIndex", - "cpqDaTapeDrvLunIndex" - ], - "value": [ - "cpqDaTapeDrvTable", - 1 - ] - }, - "CpqDaTapeDrvEntry": { - "tp": "SEQUENCE" - }, - "cpqDaTapeDrvCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 1 - ] - }, - "cpqDaTapeDrvBusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 2 - ] - }, - "cpqDaTapeDrvScsiIdIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 3 - ] - }, - "cpqDaTapeDrvLunIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 4 - ] - }, - "cpqDaTapeDrvName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 5 - ] - }, - "cpqDaTapeDrvSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 6 - ] - }, - "cpqDaTapeDrvFwRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 7 - ] - }, - "cpqDaTapeDrvStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed", - "5": "offline", - "6": "missingWasOk", - "7": "missingWasOffline" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 8 - ] - }, - "cpqDaTapeDrvCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 9 - ] - }, - "cpqDaTapeDrvFwSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 10 - ] - }, - "cpqDaTapeDrvType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "cpqDat4-16", - "3": "cpqDatAuto", - "4": "cpqDat2-8", - "5": "cpqDlt10-20", - "6": "cpqDlt20-40", - "7": "cpqDlt15-30", - "8": "cpqDlt35-70", - "9": "cpqDat4-8", - "10": "cpqSlr4-8", - "11": "cpqDat12-24", - "12": "cpqDatAuto12-24", - "14": "cpqAit35", - "15": "cpqAit50", - "16": "cpqDat20-40", - "17": "cpqDlt40-80", - "18": "cpqDatAuto20-40" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 11 - ] - }, - "cpqDaTapeDrvCleanReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "true", - "3": "false" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 12 - ] - }, - "cpqDaTapeDrvCleanTapeRepl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "true", - "3": "false" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 13 - ] - }, - "cpqDaTapeDrvCleanTapeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 14 - ] - }, - "cpqDaTapeDrvLibraryDrive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "true", - "3": "false" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 15 - ] - }, - "cpqDaTapeDrvMagSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 16 - ] - }, - "cpqDaTapeDrvHotPlug": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "hotPlug", - "3": "nonHotPlug" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 17 - ] - }, - "cpqDaTapeDrvPlacement": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "internal", - "3": "external" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 18 - ] - }, - "cpqDaTapeDrvCurrentWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "narrow", - "3": "wide16" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 19 - ] - }, - "cpqDaTapeDrvCurrentSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "asynchronous", - "3": "fast", - "4": "ultra", - "5": "ultra2", - "6": "ultra3" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 20 - ] - }, - "cpqDaTapeDrvProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "parallelScsi", - "3": "sata", - "4": "sas" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 21 - ] - }, - "cpqDaTapeDrvNegotiatedLinkRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "rate-1-5", - "3": "rate-3-0", - "4": "rate-6-0", - "5": "rate-12-0" - } - }, - "index": null, - "value": [ - "cpqDaTapeDrvEntry", - 22 - ] - }, - "cpqDaTapeCountersTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaTapeCountersEntry" - }, - "index": null, - "value": [ - "cpqDaTapeCounters", - 1 - ] - }, - "cpqDaTapeCountersEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaTapeCountersEntry" - }, - "index": [ - "cpqDaTapeCountersCntlrIndex", - "cpqDaTapeCountersBusIndex", - "cpqDaTapeCountersScsiIdIndex", - "cpqDaTapeCountersLunIndex" - ], - "value": [ - "cpqDaTapeCountersTable", - 1 - ] - }, - "CpqDaTapeCountersEntry": { - "tp": "SEQUENCE" - }, - "cpqDaTapeCountersCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 1 - ] - }, - "cpqDaTapeCountersBusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 2 - ] - }, - "cpqDaTapeCountersScsiIdIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 3 - ] - }, - "cpqDaTapeCountersLunIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 4 - ] - }, - "cpqDaTapeCountersReWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 5 - ] - }, - "cpqDaTapeCountersReReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 6 - ] - }, - "cpqDaTapeCountersTotalErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 7 - ] - }, - "cpqDaTapeCountersTotalUncorrectable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 8 - ] - }, - "cpqDaTapeCountersTotalBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeCountersEntry", - 9 - ] - }, - "cpqDaTapeLibraryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaTapeLibraryEntry" - }, - "index": null, - "value": [ - "cpqDaTapeLibrary", - 1 - ] - }, - "cpqDaTapeLibraryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaTapeLibraryEntry" - }, - "index": [ - "cpqDaTapeLibraryCntlrIndex", - "cpqDaTapeLibraryScsiBus", - "cpqDaTapeLibraryScsiTarget", - "cpqDaTapeLibraryScsiLun" - ], - "value": [ - "cpqDaTapeLibraryTable", - 1 - ] - }, - "CpqDaTapeLibraryEntry": { - "tp": "SEQUENCE" - }, - "cpqDaTapeLibraryCntlrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 1 - ] - }, - "cpqDaTapeLibraryScsiBus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 2 - ] - }, - "cpqDaTapeLibraryScsiTarget": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 3 - ] - }, - "cpqDaTapeLibraryScsiLun": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 4 - ] - }, - "cpqDaTapeLibrarySerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 5 - ] - }, - "cpqDaTapeLibraryModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 6 - ] - }, - "cpqDaTapeLibraryFWRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 7 - ] - }, - "cpqDaTapeLibraryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed", - "5": "offline" - } - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 8 - ] - }, - "cpqDaTapeLibraryDoorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "closed", - "4": "open" - } - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 9 - ] - }, - "cpqDaTapeLibraryCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 10 - ] - }, - "cpqDaTapeLibraryOverallCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 11 - ] - }, - "cpqDaTapeLibraryLastError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 12 - ] - }, - "cpqDaTapeLibraryStatHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 13 - ] - }, - "cpqDaTapeLibraryStatMoves": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 14 - ] - }, - "cpqDaTapeLibraryDriveList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 15 - ] - }, - "cpqDaTapeLibraryCurrentWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "narrow", - "3": "wide16" - } - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 16 - ] - }, - "cpqDaTapeLibraryCurrentSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "asynchronous", - "3": "fast", - "4": "ultra", - "5": "ultra2", - "6": "ultra3" - } - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 17 - ] - }, - "cpqDaTapeLibraryDriveList2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 18 - ] - }, - "cpqDaTapeLibraryProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "parallelScsi", - "3": "sata", - "4": "sas" - } - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 19 - ] - }, - "cpqDaTapeLibraryNegotiatedLinkRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "rate-1-5", - "3": "rate-3-0", - "4": "rate-6-0", - "5": "rate-12-0" - } - }, - "index": null, - "value": [ - "cpqDaTapeLibraryEntry", - 20 - ] - }, - "cpqDaTrapPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqDaTrap", - 1 - ] - }, - "cpqDaTrapLogMaxSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTrap", - 2 - ] - }, - "cpqDaTrapLogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqDaTrapLogEntry" - }, - "index": null, - "value": [ - "cpqDaTrap", - 3 - ] - }, - "cpqDaTrapLogEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqDaTrapLogEntry" - }, - "index": [ - "cpqDaTrapLogIndex" - ], - "value": [ - "cpqDaTrapLogTable", - 1 - ] - }, - "CpqDaTrapLogEntry": { - "tp": "SEQUENCE" - }, - "cpqDaTrapLogIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqDaTrapLogEntry", - 1 - ] - }, - "cpqDaTrapType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "cpqDaLogDrvStatusChange", - "2": "cpqDaSpareStatusChange", - "3": "cpqDaPhyDrvStatusChange", - "4": "cpqDaPhyDrvThreshExceededTrap", - "5": "cpqDaAccelStatusChange", - "6": "cpqDaAccelBadDataTrap", - "7": "cpqDaAccelBatteryFailed", - "3001": "cpqDa2LogDrvStatusChange", - "3002": "cpqDa2SpareStatusChange", - "3003": "cpqDa2PhyDrvStatusChange", - "3004": "cpqDa2PhyDrvThreshExceededTrap", - "3005": "cpqDa2AccelStatusChange", - "3006": "cpqDa2AccelBadDataTrap", - "3007": "cpqDa2AccelBatteryFailed" - } - }, - "index": null, - "value": [ - "cpqDaTrapLogEntry", - 2 - ] - }, - "cpqDaTrapTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqDaTrapLogEntry", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CPQSINFO-MIB.json b/mibs/parsed/CPQSINFO-MIB.json deleted file mode 100644 index 6115703..0000000 --- a/mibs/parsed/CPQSINFO-MIB.json +++ /dev/null @@ -1,3078 +0,0 @@ -{ - "IMPORTS": [ - [ - "CPQHOST-MIB", - [ - "compaq" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "sysName" - ] - ], - [ - "CPQHOST-MIB", - [ - "cpqHoTrapFlags" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ] - ], - "cpqSystemInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "compaq", - 2 - ] - }, - "cpqSiMibRev": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSystemInfo", - 1 - ] - }, - "cpqSiComponent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSystemInfo", - 2 - ] - }, - "cpqSiInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 1 - ] - }, - "cpqSiAsset": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 2 - ] - }, - "cpqSiSecurity": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 3 - ] - }, - "cpqSiSystemBoard": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 4 - ] - }, - "cpqSiBoardRev": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 5 - ] - }, - "cpqSiRackServer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 6 - ] - }, - "cpqSiVideo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 7 - ] - }, - "cpqSiMonitor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 8 - ] - }, - "cpqSiHotPlugSlot": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 9 - ] - }, - "cpqSiSystemBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 10 - ] - }, - "cpqSiDockingStation": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 11 - ] - }, - "cpqSiFru": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 12 - ] - }, - "cpqSiRackEnclosure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 13 - ] - }, - "cpqSiServerBlade": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 14 - ] - }, - "cpqSiRack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 15 - ] - }, - "cpqSiMP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiComponent", - 16 - ] - }, - "cpqSiOsCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSiInterface", - 4 - ] - }, - "cpqSiMibRevMajor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMibRev", - 1 - ] - }, - "cpqSiMibRevMinor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMibRev", - 2 - ] - }, - "cpqSiMibCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiMibRev", - 3 - ] - }, - "cpqSiOsCommonPollFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiOsCommon", - 1 - ] - }, - "cpqSiOsCommonModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiOsCommonModuleEntry" - }, - "index": null, - "value": [ - "cpqSiOsCommon", - 2 - ] - }, - "cpqSiOsCommonModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiOsCommonModuleEntry" - }, - "index": [ - "cpqSiOsCommonModuleIndex" - ], - "value": [ - "cpqSiOsCommonModuleTable", - 1 - ] - }, - "CpqSiOsCommonModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqSiOsCommonModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiOsCommonModuleEntry", - 1 - ] - }, - "cpqSiOsCommonModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiOsCommonModuleEntry", - 2 - ] - }, - "cpqSiOsCommonModuleVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiOsCommonModuleEntry", - 3 - ] - }, - "cpqSiOsCommonModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiOsCommonModuleEntry", - 4 - ] - }, - "cpqSiOsCommonModulePurpose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiOsCommonModuleEntry", - 5 - ] - }, - "cpqSiSysSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiAsset", - 1 - ] - }, - "cpqSiFormFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "portable", - "3": "laptop", - "4": "desktop", - "5": "tower", - "6": "mini-tower", - "7": "rack-mount", - "8": "nultiboard-chasis" - } - }, - "index": null, - "value": [ - "cpqSiAsset", - 2 - ] - }, - "cpqSiAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiAsset", - 3 - ] - }, - "cpqSiOwnershipTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiAsset", - 4 - ] - }, - "cpqSiSysServiceNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiAsset", - 5 - ] - }, - "cpqSiSysProductId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiAsset", - 6 - ] - }, - "cpqSiAssetTagMaxLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiAsset", - 7 - ] - }, - "cpqSiVirtualSystemTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiVirtualSystemEntry" - }, - "index": null, - "value": [ - "cpqSiAsset", - 8 - ] - }, - "cpqSiVirtualSystemEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiVirtualSystemEntry" - }, - "index": [ - "cpqSiVirtualSystemIndex" - ], - "value": [ - "cpqSiVirtualSystemTable", - 1 - ] - }, - "CpqSiVirtualSystemEntry": { - "tp": "SEQUENCE" - }, - "cpqSiVirtualSystemIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiVirtualSystemEntry", - 1 - ] - }, - "cpqSiVirtualSystemSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiVirtualSystemEntry", - 2 - ] - }, - "cpqSiVirtualSystemUUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiVirtualSystemEntry", - 3 - ] - }, - "cpqSiPowerOnPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 1 - ] - }, - "cpqSiNetServerMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 2 - ] - }, - "cpqSiQuickLockPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 3 - ] - }, - "cpqSiQuickBlank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 4 - ] - }, - "cpqSiDisketteBootControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 5 - ] - }, - "cpqSiSerialPortAControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 6 - ] - }, - "cpqSiSerialPortBControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 7 - ] - }, - "cpqSiParallelPortControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 8 - ] - }, - "cpqSiFloppyDiskControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 9 - ] - }, - "cpqSiFixedDiskControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 10 - ] - }, - "cpqSiHoodRemovedTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSecurity", - 11 - ] - }, - "cpqSiHoodSensorConfiguration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "notifyUser", - "4": "adminPasswordProtected" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 12 - ] - }, - "cpqSiSmartCoverLockStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unlocked", - "3": "locked" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 13 - ] - }, - "cpqSiUSBPortControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled", - "4": "legacydisabled", - "5": "externalportdisabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 14 - ] - }, - "cpqSiVirtualSerialPortControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 15 - ] - }, - "cpqSiChassisHoodStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "not-installed", - "3": "hood-ok", - "4": "hood-removed" - } - }, - "index": null, - "value": [ - "cpqSiSecurity", - 16 - ] - }, - "cpqSiProductId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 1 - ] - }, - "cpqSiProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 2 - ] - }, - "cpqSiAuxiliaryInput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 4 - ] - }, - "cpqSiMemModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiMemModuleEntry" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 5 - ] - }, - "cpqSiMemModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiMemModuleEntry" - }, - "index": [ - "cpqSiMemBoardIndex", - "cpqSiMemModuleIndex" - ], - "value": [ - "cpqSiMemModuleTable", - 1 - ] - }, - "CpqSiMemModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqSiMemBoardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 1 - ] - }, - "cpqSiMemModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 2 - ] - }, - "cpqSiMemModuleSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 3 - ] - }, - "cpqSiMemModuleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "board", - "3": "cpqSingleWidthModule", - "4": "cpqDoubleWidthModule", - "5": "simm", - "6": "pcmcia", - "7": "compaq-specific", - "8": "dimm", - "9": "smallOutlineDimm", - "10": "rimm", - "11": "srimm", - "12": "fb-dimm" - } - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 4 - ] - }, - "cpqSiMemModuleSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 5 - ] - }, - "cpqSiMemModuleTechnology": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "fastPageMode", - "3": "edoPageMode", - "4": "burstEdoPageMode", - "5": "synchronous", - "6": "rdram" - } - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 6 - ] - }, - "cpqSiMemModuleManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 7 - ] - }, - "cpqSiMemModulePartNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 8 - ] - }, - "cpqSiMemModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 9 - ] - }, - "cpqSiMemModuleSerialNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 10 - ] - }, - "cpqSiMemModuleECCStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "degradedModuleIndexUnknown" - } - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 11 - ] - }, - "cpqSiMemModuleHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 12 - ] - }, - "cpqSiMemModuleFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 13 - ] - }, - "cpqSiMemModuleCellTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 14 - ] - }, - "cpqSiMemModuleCellStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "deconfigured" - } - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 15 - ] - }, - "cpqSiMemModulePartNoMfgr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 16 - ] - }, - "cpqSiMemModuleSerialNoMfgr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMemModuleEntry", - 17 - ] - }, - "cpqSiSystemId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 6 - ] - }, - "cpqSiSystemCpuId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 7 - ] - }, - "cpqSiFlashRomSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "supported" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 8 - ] - }, - "cpqSiQuickTestRomDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 9 - ] - }, - "cpqSiReboot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notAvailable", - "2": "available", - "3": "defaultOnlyAvailable", - "2693": "rebootToCpqUtils", - "8115": "rebootToDefault", - "9037": "autoShutdown" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 10 - ] - }, - "cpqSiProcMicroPatchTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiProcMicroPatchEntry" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 11 - ] - }, - "cpqSiProcMicroPatchEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiProcMicroPatchEntry" - }, - "index": [ - "cpqSiProcMicroPatchIndex" - ], - "value": [ - "cpqSiProcMicroPatchTable", - 1 - ] - }, - "CpqSiProcMicroPatchEntry": { - "tp": "SEQUENCE" - }, - "cpqSiProcMicroPatchIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiProcMicroPatchEntry", - 1 - ] - }, - "cpqSiProcMicroPatchId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiProcMicroPatchEntry", - 2 - ] - }, - "cpqSiProcMicroPatchDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiProcMicroPatchEntry", - 3 - ] - }, - "cpqSiProcMicroPatchFamily": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiProcMicroPatchEntry", - 4 - ] - }, - "cpqSiPowerMgmtStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 12 - ] - }, - "cpqSiRebootFlags": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 13 - ] - }, - "cpqSiMemErrorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 14 - ] - }, - "cpqSiMemECCCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 15 - ] - }, - "cpqSiMemConfigChangeData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 16 - ] - }, - "cpqSiServerSystemId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 17 - ] - }, - "cpqSiPowerScheme": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unsupported", - "2": "other", - "3": "power-saver", - "4": "balanced", - "5": "high-performance", - "6": "user-defined" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 18 - ] - }, - "cpqSiPowerSchemeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 19 - ] - }, - "cpqSiCurrentPerformanceStatePointer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 20 - ] - }, - "cpqSiMinPerformanceState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 21 - ] - }, - "cpqSiMaxPerformanceState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 22 - ] - }, - "cpqSiPerfStateTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiPerfStateEntry" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 23 - ] - }, - "cpqSiPerfStateEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiPerfStateEntry" - }, - "index": [ - "cpqSiPerfStateIndex" - ], - "value": [ - "cpqSiPerfStateTable", - 1 - ] - }, - "CpqSiPerfStateEntry": { - "tp": "SEQUENCE" - }, - "cpqSiPerfStateIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiPerfStateEntry", - 1 - ] - }, - "cpqSiPerfState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiPerfStateEntry", - 2 - ] - }, - "cpqSiPerfStateCpuFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiPerfStateEntry", - 3 - ] - }, - "cpqSiPerfStateCpuPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiPerfStateEntry", - 4 - ] - }, - "cpqSiTPMmodule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "absent", - "3": "presentEnabled", - "4": "presentDisabled" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 24 - ] - }, - "cpqSiTrustedModuleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 25 - ] - }, - "cpqSiSystemTelemetryMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "cpuUtilization", - "2": "memoryBusUtilization", - "3": "ioBusUtilization", - "4": "cpuInterconnectUtilization", - "5": "jitterCount", - "6": "cpu0PowerUtilization", - "7": "cpu1PowerUtilization", - "8": "cpu2PowerUtilization", - "9": "cpu3PowerUtilization", - "10": "cpu0AverageFrequency", - "11": "cpu1AverageFrequency", - "12": "cpu2AverageFrequency", - "13": "cpu3AverageFrequency" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 26 - ] - }, - "cpqSiSystemTelemetryThresholdStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "aboveUpperThreshold", - "2": "belowLowerThreshold" - } - }, - "index": null, - "value": [ - "cpqSiSystemBoard", - 27 - ] - }, - "cpqSiCurRevDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiBoardRev", - 1 - ] - }, - "cpqSiPrevRevDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiBoardRev", - 2 - ] - }, - "cpqSiBoardRevTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiBoardRevEntry" - }, - "index": null, - "value": [ - "cpqSiBoardRev", - 3 - ] - }, - "cpqSiBoardRevEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiBoardRevEntry" - }, - "index": [ - "cpqSiBoardRevSlotIndex", - "cpqSiBoardRevIndex" - ], - "value": [ - "cpqSiBoardRevTable", - 1 - ] - }, - "CpqSiBoardRevEntry": { - "tp": "SEQUENCE" - }, - "cpqSiBoardRevSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiBoardRevEntry", - 1 - ] - }, - "cpqSiBoardRevIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiBoardRevEntry", - 2 - ] - }, - "cpqSiBoardRevId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiBoardRevEntry", - 3 - ] - }, - "cpqSiBoardRevCur": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiBoardRevEntry", - 4 - ] - }, - "cpqSiBoardRevPrev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiBoardRevEntry", - 5 - ] - }, - "cpqSiBoardRevHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiBoardRevEntry", - 6 - ] - }, - "cpqSiFirmwareRevTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiFirmwareRevEntry" - }, - "index": null, - "value": [ - "cpqSiBoardRev", - 4 - ] - }, - "cpqSiFirmwareRevEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiFirmwareRevEntry" - }, - "index": [ - "cpqSiFirmwareRevIndex" - ], - "value": [ - "cpqSiFirmwareRevTable", - 1 - ] - }, - "CpqSiFirmwareRevEntry": { - "tp": "SEQUENCE" - }, - "cpqSiFirmwareRevIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFirmwareRevEntry", - 1 - ] - }, - "cpqSiFirmwareRevDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFirmwareRevEntry", - 2 - ] - }, - "cpqSiFirmwareRevString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFirmwareRevEntry", - 3 - ] - }, - "cpqSiFirmwareRevCellTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFirmwareRevEntry", - 4 - ] - }, - "cpqSiFirmwareLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFirmwareRevEntry", - 5 - ] - }, - "cpqSiFirmwareStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "active", - "3": "inactive" - } - }, - "index": null, - "value": [ - "cpqSiFirmwareRevEntry", - 6 - ] - }, - "cpqSiFirmwareCfgTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiFirmwareCfgEntry" - }, - "index": null, - "value": [ - "cpqSiBoardRev", - 5 - ] - }, - "cpqSiFirmwareCfgEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiFirmwareCfgEntry" - }, - "index": [ - "cpqSiFirmwareCfgName" - ], - "value": [ - "cpqSiFirmwareCfgTable", - 1 - ] - }, - "CpqSiFirmwareCfgEntry": { - "tp": "SEQUENCE" - }, - "cpqSiFirmwareCfgName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFirmwareCfgEntry", - 1 - ] - }, - "cpqSiFirmwareCfgValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFirmwareCfgEntry", - 2 - ] - }, - "cpqSiRackServerShutdownRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "master", - "3": "slave" - } - }, - "index": null, - "value": [ - "cpqSiRackServer", - 1 - ] - }, - "cpqSiRackServerMasterName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackServer", - 2 - ] - }, - "cpqSiVideoEdidRaw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiVideo", - 1 - ] - }, - "cpqSiVideoDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiVideo", - 2 - ] - }, - "cpqSiVideoSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiVideo", - 3 - ] - }, - "cpqSiVideoManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiVideo", - 4 - ] - }, - "cpqSiVideoHeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiVideo", - 5 - ] - }, - "cpqSiVideoWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiVideo", - 6 - ] - }, - "cpqSiVideoMaxHorPixel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiVideo", - 7 - ] - }, - "cpqSiVideoMaxVertPixel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiVideo", - 8 - ] - }, - "cpqSiVideoMaxRefreshRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiVideo", - 9 - ] - }, - "cpqSiMonitorOverallCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiMonitor", - 1 - ] - }, - "cpqSiMonitorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiMonitorEntry" - }, - "index": null, - "value": [ - "cpqSiMonitor", - 2 - ] - }, - "cpqSiMonitorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiMonitorEntry" - }, - "index": [ - "cpqSiMonitorIndex" - ], - "value": [ - "cpqSiMonitorTable", - 1 - ] - }, - "CpqSiMonitorEntry": { - "tp": "SEQUENCE" - }, - "cpqSiMonitorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 1 - ] - }, - "cpqSiMonitorEdidRaw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 2 - ] - }, - "cpqSiMonitorDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 3 - ] - }, - "cpqSiMonitorSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 4 - ] - }, - "cpqSiMonitorManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 5 - ] - }, - "cpqSiMonitorHeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 6 - ] - }, - "cpqSiMonitorWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 7 - ] - }, - "cpqSiMonitorMaxHorPixel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 8 - ] - }, - "cpqSiMonitorMaxVertPixel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 9 - ] - }, - "cpqSiMonitorMaxRefreshRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 10 - ] - }, - "cpqSiMonitorManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 11 - ] - }, - "cpqSiMonitorThermalCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded" - } - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 12 - ] - }, - "cpqSiMonitorOperationalCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 13 - ] - }, - "cpqSiMonitorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "ok", - "4": "thermalDegraded", - "5": "operationalFailure" - } - }, - "index": null, - "value": [ - "cpqSiMonitorEntry", - 14 - ] - }, - "cpqSiHotPlugSlotSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "supported" - } - }, - "index": null, - "value": [ - "cpqSiHotPlugSlot", - 1 - ] - }, - "cpqSiHotPlugSlotCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiHotPlugSlot", - 2 - ] - }, - "cpqSiHotPlugSlotChangeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiHotPlugSlot", - 3 - ] - }, - "cpqSiHotPlugSlotTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiHotPlugSlotEntry" - }, - "index": null, - "value": [ - "cpqSiHotPlugSlot", - 4 - ] - }, - "cpqSiHotPlugSlotEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiHotPlugSlotEntry" - }, - "index": [ - "cpqSiHotPlugSlotChassis", - "cpqSiHotPlugSlotIndex" - ], - "value": [ - "cpqSiHotPlugSlotTable", - 1 - ] - }, - "CpqSiHotPlugSlotEntry": { - "tp": "SEQUENCE" - }, - "cpqSiHotPlugSlotChassis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 1 - ] - }, - "cpqSiHotPlugSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 2 - ] - }, - "cpqSiHotPlugSlotBoardPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "present", - "3": "absent", - "4": "presentButSuspended" - } - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 3 - ] - }, - "cpqSiHotPlugSlotPowerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "powerOn", - "3": "powerOff" - } - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 4 - ] - }, - "cpqSiHotPlugSlotBoardCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 5 - ] - }, - "cpqSiHotPlugSlotErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noError", - "2": "generalError", - "3": "wrongRevision", - "4": "wrongBoard", - "5": "cannotConfig", - "6": "powerFault", - "7": "unexpectedPowerLoss", - "8": "wrongSpeed", - "9": "functionalFailure" - } - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 6 - ] - }, - "cpqSiHotPlugSlotHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiHotPlugSlotEntry", - 7 - ] - }, - "cpqSiSystemBatteryOverallCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiSystemBattery", - 1 - ] - }, - "cpqSiSysBatteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiSysBatteryEntry" - }, - "index": null, - "value": [ - "cpqSiSystemBattery", - 2 - ] - }, - "cpqSiSysBatteryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiSysBatteryEntry" - }, - "index": [ - "cpqSiSysBatteryIndex" - ], - "value": [ - "cpqSiSysBatteryTable", - 1 - ] - }, - "CpqSiSysBatteryEntry": { - "tp": "SEQUENCE" - }, - "cpqSiSysBatteryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 1 - ] - }, - "cpqSiSysBatteryModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 2 - ] - }, - "cpqSiSysBatterySerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 3 - ] - }, - "cpqSiSysBatteryAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 4 - ] - }, - "cpqSiSysBatteryManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 5 - ] - }, - "cpqSiSysBatteryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 6 - ] - }, - "cpqSiSysBatterySmartVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 7 - ] - }, - "cpqSiSysBatteryCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 8 - ] - }, - "cpqSiSysBatteryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "capacityDegraded", - "4": "chargeFault", - "5": "batteryFailure" - } - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 9 - ] - }, - "cpqSiSysBatteryChemistry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "lead-Acid", - "4": "nickel-Cadmium", - "5": "nickel-Metal-Hydride", - "6": "lithium-Ion", - "7": "zinc-Air", - "8": "lithium-Polymer" - } - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 10 - ] - }, - "cpqSiSysBatteryRemainingCap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 11 - ] - }, - "cpqSiSysBatteryFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 12 - ] - }, - "cpqSiSysBatteryHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 13 - ] - }, - "cpqSiSysBatteryFullCap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 14 - ] - }, - "cpqSiSysBatteryDesignCap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 15 - ] - }, - "cpqSiSysBatteryHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiSysBatteryEntry", - 16 - ] - }, - "cpqSiDockingStationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notSupported", - "2": "docked", - "3": "undocked" - } - }, - "index": null, - "value": [ - "cpqSiDockingStation", - 1 - ] - }, - "cpqSiDockingStationSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiDockingStation", - 2 - ] - }, - "cpqSiDockingStationModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiDockingStation", - 3 - ] - }, - "cpqSiDockingStationAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiDockingStation", - 4 - ] - }, - "cpqSiFruTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiFruEntry" - }, - "index": null, - "value": [ - "cpqSiFru", - 1 - ] - }, - "cpqSiFruEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiFruEntry" - }, - "index": [ - "cpqSiFruIndex" - ], - "value": [ - "cpqSiFruTable", - 1 - ] - }, - "CpqSiFruEntry": { - "tp": "SEQUENCE" - }, - "cpqSiFruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 1 - ] - }, - "cpqSiFruType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "motherBoard", - "4": "processor", - "5": "memoryCard", - "6": "memoryModule", - "7": "peripheralDevice", - "8": "systemBusBridge", - "9": "powerSupply", - "10": "chassis", - "11": "fan", - "12": "ioCard" - } - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 2 - ] - }, - "cpqSiFruDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 3 - ] - }, - "cpqSiFruVendor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 4 - ] - }, - "cpqSiFruPartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 5 - ] - }, - "cpqSiFruRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 6 - ] - }, - "cpqSiFruFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 7 - ] - }, - "cpqSiFruSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 8 - ] - }, - "cpqSiFruAssetNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 9 - ] - }, - "cpqSiFruClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "currentBoardInSlot", - "4": "priorBoardInSlot", - "5": "parentBoard", - "6": "priorParentBoard", - "7": "priorParentSystem" - } - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 10 - ] - }, - "cpqSiFruSlotNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 11 - ] - }, - "cpqSiFruSubAssemblyNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 12 - ] - }, - "cpqSiFruAssemblyNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 13 - ] - }, - "cpqSiFruChassisNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 14 - ] - }, - "cpqSiFruPositionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 15 - ] - }, - "cpqSiFruCabinetIDNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 16 - ] - }, - "cpqSiFruSiteLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 17 - ] - }, - "cpqSiFruDiagStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed", - "5": "disabled" - } - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 18 - ] - }, - "cpqSiFruExtendedDiagStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 19 - ] - }, - "cpqSiFruCellTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 20 - ] - }, - "cpqSiFruIOCTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 21 - ] - }, - "cpqSiFruFileId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 22 - ] - }, - "cpqSiFruScanRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiFruEntry", - 23 - ] - }, - "cpqSiRackEnclosureMgrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSiRackEnclosureMgrEntry" - }, - "index": null, - "value": [ - "cpqSiRackEnclosure", - 1 - ] - }, - "cpqSiRackEnclosureMgrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSiRackEnclosureMgrEntry" - }, - "index": [ - "cpqSiRackEnclosureMgrIndex" - ], - "value": [ - "cpqSiRackEnclosureMgrTable", - 1 - ] - }, - "CpqSiRackEnclosureMgrEntry": { - "tp": "SEQUENCE" - }, - "cpqSiRackEnclosureMgrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 1 - ] - }, - "cpqSiRackEnclosureMgrType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "noEnclosureManagement", - "3": "enclosureManagement", - "4": "onboardAdminManagement", - "5": "multiboardchassis" - } - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 2 - ] - }, - "cpqSiRackEnclosureMgrIpAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 3 - ] - }, - "cpqSiRackEnclosureMgrWebLink": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 4 - ] - }, - "cpqSiRackEnclosureMgrCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 5 - ] - }, - "cpqSiRackEnclosureMgrSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 6 - ] - }, - "cpqSiRackEnclosureMgrModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 7 - ] - }, - "cpqSiRackEnclosureMgrName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 8 - ] - }, - "cpqSiRackEnclosureMgrFwRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 9 - ] - }, - "cpqSiRackEnclosureMgrProductID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 10 - ] - }, - "cpqSiRackEnclosureMgrUUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 11 - ] - }, - "cpqSiRackEnclosureMgrMatrix": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 12 - ] - }, - "cpqSiRackEnclosureMgrMatrixID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRackEnclosureMgrEntry", - 13 - ] - }, - "cpqSiServerBladeEnclosureBayNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSiServerBlade", - 1 - ] - }, - "cpqSiServerBladeHeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "halfHeightBlade", - "3": "fullHeightBlade" - } - }, - "index": null, - "value": [ - "cpqSiServerBlade", - 2 - ] - }, - "cpqSiServerBladeWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "singleWide", - "3": "doubleWide" - } - }, - "index": null, - "value": [ - "cpqSiServerBlade", - 3 - ] - }, - "cpqSiRackName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRack", - 1 - ] - }, - "cpqSiRackUUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiRack", - 2 - ] - }, - "cpqSiMPHostName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSiMP", - 1 - ] - }, - "cpqSiMPHealthStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSiMP", - 2 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/CPQSTDEQ-MIB.json b/mibs/parsed/CPQSTDEQ-MIB.json deleted file mode 100644 index e77aa5a..0000000 --- a/mibs/parsed/CPQSTDEQ-MIB.json +++ /dev/null @@ -1,4740 +0,0 @@ -{ - "IMPORTS": [ - [ - "CPQHOST-MIB", - [ - "compaq" - ] - ], - [ - "RFC1155-SMI", - [ - "Counter" - ] - ], - [ - "RFC1155-SMI", - [ - "Gauge" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "sysName" - ] - ], - [ - "CPQHOST-MIB", - [ - "cpqHoTrapFlags" - ] - ] - ], - "cpqStdEquipment": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "compaq", - 1 - ] - }, - "cpqSeMibRev": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqStdEquipment", - 1 - ] - }, - "cpqSeComponent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqStdEquipment", - 2 - ] - }, - "cpqSeInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 1 - ] - }, - "cpqSeProcessor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 2 - ] - }, - "cpqSeMemory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 3 - ] - }, - "cpqSeIsaCmos": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 4 - ] - }, - "cpqSeEisaNvram": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 5 - ] - }, - "cpqSeRom": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 6 - ] - }, - "cpqSeKeyboard": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 7 - ] - }, - "cpqSeVideo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 8 - ] - }, - "cpqSeSerialPort": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 9 - ] - }, - "cpqSeParallelPort": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 10 - ] - }, - "cpqSeFloppyDisk": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 11 - ] - }, - "cpqSeFixedDisk": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 12 - ] - }, - "cpqSePci": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 13 - ] - }, - "cpqSePCCard": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 14 - ] - }, - "cpqSeUSBPort": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 15 - ] - }, - "cpqSeCell": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 16 - ] - }, - "cpqSeIOC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 17 - ] - }, - "cpqSePartition": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 18 - ] - }, - "cpqSeCabinet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 19 - ] - }, - "cpqSeComplex": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 20 - ] - }, - "cpqSeLED": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 21 - ] - }, - "cpqSeUSBDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 22 - ] - }, - "cpqSePCIeDisk": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeComponent", - 23 - ] - }, - "cpqSeOsCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpqSeInterface", - 4 - ] - }, - "TruthValue": { - "tp": "INTEGER", - "values": { - "1": "false", - "2": "true" - } - }, - "cpqSeMibRevMajor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeMibRev", - 1 - ] - }, - "cpqSeMibRevMinor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeMibRev", - 2 - ] - }, - "cpqSeMibCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSeMibRev", - 3 - ] - }, - "cpqSeOsCommonPollFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeOsCommon", - 1 - ] - }, - "cpqSeOsCommonModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeOsCommonModuleEntry" - }, - "index": null, - "value": [ - "cpqSeOsCommon", - 2 - ] - }, - "cpqSeOsCommonModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeOsCommonModuleEntry" - }, - "index": [ - "cpqSeOsCommonModuleIndex" - ], - "value": [ - "cpqSeOsCommonModuleTable", - 1 - ] - }, - "CpqSeOsCommonModuleEntry": { - "tp": "SEQUENCE" - }, - "cpqSeOsCommonModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeOsCommonModuleEntry", - 1 - ] - }, - "cpqSeOsCommonModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeOsCommonModuleEntry", - 2 - ] - }, - "cpqSeOsCommonModuleVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeOsCommonModuleEntry", - 3 - ] - }, - "cpqSeOsCommonModuleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeOsCommonModuleEntry", - 4 - ] - }, - "cpqSeOsCommonModulePurpose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeOsCommonModuleEntry", - 5 - ] - }, - "cpqSeCpuTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeCpuEntry" - }, - "index": null, - "value": [ - "cpqSeProcessor", - 1 - ] - }, - "cpqSeCpuEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeCpuEntry" - }, - "index": [ - "cpqSeCpuUnitIndex" - ], - "value": [ - "cpqSeCpuTable", - 1 - ] - }, - "CpqSeCpuEntry": { - "tp": "SEQUENCE" - }, - "cpqSeCpuUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 1 - ] - }, - "cpqSeCpuSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 2 - ] - }, - "cpqSeCpuName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 3 - ] - }, - "cpqSeCpuSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 4 - ] - }, - "cpqSeCpuStep": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 5 - ] - }, - "cpqSeCpuStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed", - "5": "disabled" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 6 - ] - }, - "cpqSeCpuExtSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 7 - ] - }, - "cpqSeCpuDesigner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "intel", - "3": "amd", - "4": "cyrix", - "5": "ti", - "6": "nexgen", - "7": "compaq", - "8": "samsung", - "9": "mitsubishi", - "10": "mips" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 8 - ] - }, - "cpqSeCpuSocketNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 9 - ] - }, - "cpqSeCpuThreshPassed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unsupported", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 10 - ] - }, - "cpqSeCpuHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 11 - ] - }, - "cpqSeCpuCellTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 12 - ] - }, - "cpqSeCpuPowerpodStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notfailed", - "2": "failed" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 13 - ] - }, - "cpqSeCpuArchitectureRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 14 - ] - }, - "cpqSeCpuCore": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 15 - ] - }, - "cpqSeCPUSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 16 - ] - }, - "cpqSeCPUPartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 17 - ] - }, - "cpqSeCPUSerialNumberMfgr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 18 - ] - }, - "cpqSeCPUPartNumberMfgr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 19 - ] - }, - "cpqSeCPUCoreIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 20 - ] - }, - "cpqSeCPUMaxSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 21 - ] - }, - "cpqSeCPUCoreThreadIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 22 - ] - }, - "cpqSeCPUChipGenerationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 23 - ] - }, - "cpqSeCPUMultiThreadStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "3": "disabled" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 24 - ] - }, - "cpqSeCPUCoreMaxThreads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 25 - ] - }, - "cpqSeCpuLowPowerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "lowpowered", - "3": "normalpowered", - "4": "highpowered" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 26 - ] - }, - "cpqSeCpuPrimary": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "false", - "3": "true" - } - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 27 - ] - }, - "cpqSeCpuCoreSteppingText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 28 - ] - }, - "cpqSeCpuCurrentPerformanceState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 29 - ] - }, - "cpqSeCpuMinPerformanceState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 30 - ] - }, - "cpqSeCpuMaxPerformanceState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuEntry", - 31 - ] - }, - "cpqSeFpuTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeFpuEntry" - }, - "index": null, - "value": [ - "cpqSeProcessor", - 2 - ] - }, - "cpqSeFpuEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeFpuEntry" - }, - "index": [ - "cpqSeFpuUnitIndex", - "cpqSeFpuChipIndex" - ], - "value": [ - "cpqSeFpuTable", - 1 - ] - }, - "CpqSeFpuEntry": { - "tp": "SEQUENCE" - }, - "cpqSeFpuUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 1 - ] - }, - "cpqSeFpuChipIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 2 - ] - }, - "cpqSeFpuSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 3 - ] - }, - "cpqSeFpuName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 4 - ] - }, - "cpqSeFpuSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 5 - ] - }, - "cpqSeFpuType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "embedded", - "3": "external" - } - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 6 - ] - }, - "cpqSeFpuHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeFpuEntry", - 7 - ] - }, - "cpqSeCpuCacheTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeCpuCacheEntry" - }, - "index": null, - "value": [ - "cpqSeProcessor", - 3 - ] - }, - "cpqSeCpuCacheEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeCpuCacheEntry" - }, - "index": [ - "cpqSeCpuCacheUnitIndex", - "cpqSeCpuCacheLevelIndex" - ], - "value": [ - "cpqSeCpuCacheTable", - 1 - ] - }, - "CpqSeCpuCacheEntry": { - "tp": "SEQUENCE" - }, - "cpqSeCpuCacheUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 1 - ] - }, - "cpqSeCpuCacheLevelIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 2 - ] - }, - "cpqSeCpuCacheSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 3 - ] - }, - "cpqSeCpuCacheSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 4 - ] - }, - "cpqSeCpuCacheStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 5 - ] - }, - "cpqSeCpuCacheWritePolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "write-back", - "3": "write-through", - "4": "variesWithMemoryAddress" - } - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 6 - ] - }, - "cpqSeCpuCacheHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 7 - ] - }, - "cpqSeCpuCacheCpuSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 8 - ] - }, - "cpqSeCpuCacheCpuCoreIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCpuCacheEntry", - 9 - ] - }, - "cpqSeCpuCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSeProcessor", - 4 - ] - }, - "cpqSeBaseMem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeMemory", - 1 - ] - }, - "cpqSeTotalMem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeMemory", - 2 - ] - }, - "cpqSeTotalMemMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeMemory", - 3 - ] - }, - "cpqSeIsaCmosRaw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeIsaCmos", - 1 - ] - }, - "cpqSeEisaSlotTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaSlotEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 1 - ] - }, - "cpqSeEisaSlotEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaSlotEntry" - }, - "index": [ - "cpqSeEisaSlotIndex" - ], - "value": [ - "cpqSeEisaSlotTable", - 1 - ] - }, - "CpqSeEisaSlotEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaSlotEntry", - 1 - ] - }, - "cpqSeEisaSlotRaw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeEisaSlotEntry", - 2 - ] - }, - "cpqSeEisaSlotBoardId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeEisaSlotEntry", - 3 - ] - }, - "cpqSeEisaSlotBoardName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeEisaSlotEntry", - 4 - ] - }, - "cpqSeEisaSlotCfRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeEisaSlotEntry", - 5 - ] - }, - "cpqSeEisaSlotType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "isa8Bit", - "3": "isa16Bit", - "4": "eisa32Bit", - "5": "eisaBusMaster32Bit", - "6": "other", - "7": "reserved", - "8": "reserved2" - } - }, - "index": null, - "value": [ - "cpqSeEisaSlotEntry", - 6 - ] - }, - "cpqSeEisaFunctTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaFunctEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 2 - ] - }, - "cpqSeEisaFunctEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaFunctEntry" - }, - "index": [ - "cpqSeEisaFunctSlotIndex", - "cpqSeEisaFunctIndex" - ], - "value": [ - "cpqSeEisaFunctTable", - 1 - ] - }, - "CpqSeEisaFunctEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaFunctSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 1 - ] - }, - "cpqSeEisaFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 2 - ] - }, - "cpqSeEisaFunctStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 3 - ] - }, - "cpqSeEisaFunctType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 4 - ] - }, - "cpqSeEisaFunctCfgRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 5 - ] - }, - "cpqSeEisaFunctSels": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 6 - ] - }, - "cpqSeEisaFunctInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaFunctEntry", - 7 - ] - }, - "cpqSeEisaMemTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaMemEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 3 - ] - }, - "cpqSeEisaMemEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaMemEntry" - }, - "index": [ - "cpqSeEisaMemSlotIndex", - "cpqSeEisaMemFunctIndex", - "cpqSeEisaMemAllocIndex" - ], - "value": [ - "cpqSeEisaMemTable", - 1 - ] - }, - "CpqSeEisaMemEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaMemSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 1 - ] - }, - "cpqSeEisaMemFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 2 - ] - }, - "cpqSeEisaMemAllocIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 3 - ] - }, - "cpqSeEisaMemStartAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 4 - ] - }, - "cpqSeEisaMemSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 5 - ] - }, - "cpqSeEisaMemShare": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nonshareable", - "2": "shareable" - } - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 6 - ] - }, - "cpqSeEisaMemType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemBaseOrExtended", - "2": "expanded", - "3": "virtual", - "4": "other" - } - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 7 - ] - }, - "cpqSeEisaMemCache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notCached", - "2": "writeThroughCached", - "3": "writeBackCached" - } - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 8 - ] - }, - "cpqSeEisaMemAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "readOnly", - "2": "readWrite" - } - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 9 - ] - }, - "cpqSeEisaMemDecode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 10 - ] - }, - "cpqSeEisaMemDataSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaMemEntry", - 11 - ] - }, - "cpqSeEisaIntTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaIntEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 4 - ] - }, - "cpqSeEisaIntEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaIntEntry" - }, - "index": [ - "cpqSeEisaIntSlotIndex", - "cpqSeEisaIntFunctIndex", - "cpqSeEisaIntAllocIndex" - ], - "value": [ - "cpqSeEisaIntTable", - 1 - ] - }, - "CpqSeEisaIntEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaIntSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaIntEntry", - 1 - ] - }, - "cpqSeEisaIntFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaIntEntry", - 2 - ] - }, - "cpqSeEisaIntAllocIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaIntEntry", - 3 - ] - }, - "cpqSeEisaIntNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaIntEntry", - 4 - ] - }, - "cpqSeEisaIntShare": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nonshareable", - "2": "shareable" - } - }, - "index": null, - "value": [ - "cpqSeEisaIntEntry", - 5 - ] - }, - "cpqSeEisaIntTrigger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "edge", - "2": "level" - } - }, - "index": null, - "value": [ - "cpqSeEisaIntEntry", - 6 - ] - }, - "cpqSeEisaDmaTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaDmaEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 5 - ] - }, - "cpqSeEisaDmaEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaDmaEntry" - }, - "index": [ - "cpqSeEisaDmaSlotIndex", - "cpqSeEisaDmaFunctIndex", - "cpqSeEisaDmaAllocIndex" - ], - "value": [ - "cpqSeEisaDmaTable", - 1 - ] - }, - "CpqSeEisaDmaEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaDmaSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 1 - ] - }, - "cpqSeEisaDmaFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 2 - ] - }, - "cpqSeEisaDmaAllocIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 3 - ] - }, - "cpqSeEisaDmaChannel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 4 - ] - }, - "cpqSeEisaDmaShare": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nonshareable", - "2": "shareable" - } - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 5 - ] - }, - "cpqSeEisaDmaTiming": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "isaTiming", - "2": "typeA", - "3": "typeB", - "4": "burstTypeC" - } - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 6 - ] - }, - "cpqSeEisaDmaXfer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 7 - ] - }, - "cpqSeEisaDmaXferCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "byte", - "2": "word" - } - }, - "index": null, - "value": [ - "cpqSeEisaDmaEntry", - 8 - ] - }, - "cpqSeEisaPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaPortEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 6 - ] - }, - "cpqSeEisaPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaPortEntry" - }, - "index": [ - "cpqSeEisaPortSlotIndex", - "cpqSeEisaPortFunctIndex", - "cpqSeEisaPortAllocIndex" - ], - "value": [ - "cpqSeEisaPortTable", - 1 - ] - }, - "CpqSeEisaPortEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaPortSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaPortEntry", - 1 - ] - }, - "cpqSeEisaPortFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaPortEntry", - 2 - ] - }, - "cpqSeEisaPortAllocIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaPortEntry", - 3 - ] - }, - "cpqSeEisaPortAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaPortEntry", - 4 - ] - }, - "cpqSeEisaPortShare": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nonshareable", - "2": "shareable" - } - }, - "index": null, - "value": [ - "cpqSeEisaPortEntry", - 5 - ] - }, - "cpqSeEisaPortSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaPortEntry", - 6 - ] - }, - "cpqSeEisaFreeFormTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaFreeFormEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 7 - ] - }, - "cpqSeEisaFreeFormEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaFreeFormEntry" - }, - "index": [ - "cpqSeEisaFreeFormSlotIndex", - "cpqSeEisaFreeFormFunctIndex" - ], - "value": [ - "cpqSeEisaFreeFormTable", - 1 - ] - }, - "CpqSeEisaFreeFormEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaFreeFormSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaFreeFormEntry", - 1 - ] - }, - "cpqSeEisaFreeFormFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaFreeFormEntry", - 2 - ] - }, - "cpqSeEisaFreeFormValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeEisaFreeFormEntry", - 3 - ] - }, - "cpqSeEisaInitTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeEisaInitEntry" - }, - "index": null, - "value": [ - "cpqSeEisaNvram", - 8 - ] - }, - "cpqSeEisaInitEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeEisaInitEntry" - }, - "index": [ - "cpqSeEisaInitSlotIndex", - "cpqSeEisaInitFunctIndex", - "cpqSeEisaInitAllocIndex" - ], - "value": [ - "cpqSeEisaInitTable", - 1 - ] - }, - "CpqSeEisaInitEntry": { - "tp": "SEQUENCE" - }, - "cpqSeEisaInitSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 1 - ] - }, - "cpqSeEisaInitFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 2 - ] - }, - "cpqSeEisaInitAllocIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 3 - ] - }, - "cpqSeEisaInitUseMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "useValueOnly", - "2": "useValueAndMask" - } - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 4 - ] - }, - "cpqSeEisaInitAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "eightBitAddress", - "3": "sixteenBitAddress", - "4": "thirtyTwoBitAddress" - } - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 5 - ] - }, - "cpqSeEisaInitAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 6 - ] - }, - "cpqSeEisaInitValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 7 - ] - }, - "cpqSeEisaInitMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeEisaInitEntry", - 8 - ] - }, - "cpqSeSysRomVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeRom", - 1 - ] - }, - "cpqSeOptRomTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeOptRomEntry" - }, - "index": null, - "value": [ - "cpqSeRom", - 2 - ] - }, - "cpqSeOptRomEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeOptRomEntry" - }, - "index": [ - "cpqSeOptRomAddrIndex" - ], - "value": [ - "cpqSeOptRomTable", - 1 - ] - }, - "CpqSeOptRomEntry": { - "tp": "SEQUENCE" - }, - "cpqSeOptRomAddrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeOptRomEntry", - 1 - ] - }, - "cpqSeOptRomSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeOptRomEntry", - 2 - ] - }, - "cpqSeBiosRomDataRaw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeRom", - 3 - ] - }, - "cpqSeRedundantSysRomVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeRom", - 4 - ] - }, - "cpqSeSmbiosVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeRom", - 5 - ] - }, - "cpqSeMPFwVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeRom", - 6 - ] - }, - "cpqSeBMCFwVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeRom", - 7 - ] - }, - "cpqSeHPVMFwVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeRom", - 8 - ] - }, - "cpqSeKeyboardDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeKeyboard", - 1 - ] - }, - "cpqSeVideoDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeVideo", - 1 - ] - }, - "cpqSeSerialPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeSerialPortEntry" - }, - "index": null, - "value": [ - "cpqSeSerialPort", - 1 - ] - }, - "cpqSeSerialPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeSerialPortEntry" - }, - "index": [ - "cpqSeSerialPortIndex" - ], - "value": [ - "cpqSeSerialPortTable", - 1 - ] - }, - "CpqSeSerialPortEntry": { - "tp": "SEQUENCE" - }, - "cpqSeSerialPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeSerialPortEntry", - 1 - ] - }, - "cpqSeSerialPortAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeSerialPortEntry", - 2 - ] - }, - "cpqSeSerialPortDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeSerialPortEntry", - 3 - ] - }, - "cpqSeSerialPortHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeSerialPortEntry", - 4 - ] - }, - "cpqSeParallelPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeParallelPortEntry" - }, - "index": null, - "value": [ - "cpqSeParallelPort", - 1 - ] - }, - "cpqSeParallelPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeParallelPortEntry" - }, - "index": [ - "cpqSeParallelPortIndex" - ], - "value": [ - "cpqSeParallelPortTable", - 1 - ] - }, - "CpqSeParallelPortEntry": { - "tp": "SEQUENCE" - }, - "cpqSeParallelPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeParallelPortEntry", - 1 - ] - }, - "cpqSeParallelPortAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeParallelPortEntry", - 2 - ] - }, - "cpqSeParallelPortDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeParallelPortEntry", - 3 - ] - }, - "cpqSeParrallelPortHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeParallelPortEntry", - 4 - ] - }, - "cpqSeFloppyDiskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeFloppyDiskEntry" - }, - "index": null, - "value": [ - "cpqSeFloppyDisk", - 1 - ] - }, - "cpqSeFloppyDiskEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeFloppyDiskEntry" - }, - "index": [ - "cpqSeFloppyDiskIndex" - ], - "value": [ - "cpqSeFloppyDiskTable", - 1 - ] - }, - "CpqSeFloppyDiskEntry": { - "tp": "SEQUENCE" - }, - "cpqSeFloppyDiskIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFloppyDiskEntry", - 1 - ] - }, - "cpqSeFloppyDiskType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "drive360k", - "3": "drive1200k", - "4": "drive720k", - "5": "drive1440k", - "6": "drive120mb" - } - }, - "index": null, - "value": [ - "cpqSeFloppyDiskEntry", - 2 - ] - }, - "cpqSeFloppyDiskHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeFloppyDiskEntry", - 3 - ] - }, - "cpqSeFixedDiskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeFixedDiskEntry" - }, - "index": null, - "value": [ - "cpqSeFixedDisk", - 1 - ] - }, - "cpqSeFixedDiskEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeFixedDiskEntry" - }, - "index": [ - "cpqSeFixedDiskIndex" - ], - "value": [ - "cpqSeFixedDiskTable", - 1 - ] - }, - "CpqSeFixedDiskEntry": { - "tp": "SEQUENCE" - }, - "cpqSeFixedDiskIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 1 - ] - }, - "cpqSeFixedDiskType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 2 - ] - }, - "cpqSeFixedDiskCyls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 3 - ] - }, - "cpqSeFixedDiskHeads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 4 - ] - }, - "cpqSeFixedDiskSectors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 5 - ] - }, - "cpqSeFixedDiskCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 6 - ] - }, - "cpqSeFixedDiskHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeFixedDiskEntry", - 7 - ] - }, - "cpqSePciSlotTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSePciSlotEntry" - }, - "index": null, - "value": [ - "cpqSePci", - 1 - ] - }, - "cpqSePciSlotEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSePciSlotEntry" - }, - "index": [ - "cpqSePciSlotBusNumberIndex", - "cpqSePciSlotDeviceNumberIndex" - ], - "value": [ - "cpqSePciSlotTable", - 1 - ] - }, - "CpqSePciSlotEntry": { - "tp": "SEQUENCE" - }, - "cpqSePciSlotBusNumberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 1 - ] - }, - "cpqSePciSlotDeviceNumberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 2 - ] - }, - "cpqSePciPhysSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 3 - ] - }, - "cpqSePciSlotSubSystemID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 4 - ] - }, - "cpqSePciSlotBoardName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 5 - ] - }, - "cpqSePciSlotWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "thirtyTwoBit", - "4": "sixtyFourBit", - "5": "oneTwentyEightBit", - "6": "x1", - "7": "x2", - "8": "x4", - "9": "x8", - "10": "x12", - "11": "x16", - "12": "x32" - } - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 6 - ] - }, - "cpqSePciSlotSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "thirtyThreeMHz", - "4": "sixtySixMHz" - } - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 7 - ] - }, - "cpqSePciSlotExtendedInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 8 - ] - }, - "cpqSePciSlotType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "pci", - "4": "pci66", - "5": "pcix", - "6": "pciexpress", - "7": "U2", - "8": "M2" - } - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 9 - ] - }, - "cpqSePciSlotCurrentMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "pci", - "4": "pci66", - "5": "pcix" - } - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 10 - ] - }, - "cpqSePciMaxSlotSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 11 - ] - }, - "cpqSePciXMaxSlotSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 12 - ] - }, - "cpqSePciCurrentSlotSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 13 - ] - }, - "cpqSePciHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 14 - ] - }, - "cpqSePciSlotIOCTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 15 - ] - }, - "cpqSePciSlotHeaderType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 16 - ] - }, - "cpqSePciIsSlot0Embedded": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "true", - "2": "false" - } - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 17 - ] - }, - "cpqSePcieSlotMaxLinkSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 18 - ] - }, - "cpqSePcieSlotMaxLinkWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciSlotEntry", - 19 - ] - }, - "cpqSePciFunctTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSePciFunctEntry" - }, - "index": null, - "value": [ - "cpqSePci", - 2 - ] - }, - "cpqSePciFunctEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSePciFunctEntry" - }, - "index": [ - "cpqSePciFunctBusNumberIndex", - "cpqSePciFunctDeviceNumberIndex", - "cpqSePciFunctIndex" - ], - "value": [ - "cpqSePciFunctTable", - 1 - ] - }, - "CpqSePciFunctEntry": { - "tp": "SEQUENCE" - }, - "cpqSePciFunctBusNumberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 1 - ] - }, - "cpqSePciFunctDeviceNumberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 2 - ] - }, - "cpqSePciFunctIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 3 - ] - }, - "cpqSePciFunctClassCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 4 - ] - }, - "cpqSePciFunctClassDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 5 - ] - }, - "cpqSePciFunctDeviceID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 6 - ] - }, - "cpqSePciFunctVendorID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 7 - ] - }, - "cpqSePciFunctRevID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 8 - ] - }, - "cpqSePciFunctIntLine": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 9 - ] - }, - "cpqSePciFunctDevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "3": "disabled" - } - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 10 - ] - }, - "cpqSePciFunctHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 11 - ] - }, - "cpqSePcieFunctNegotiatedLinkSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 12 - ] - }, - "cpqSePcieFunctNegotiatedLinkWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 13 - ] - }, - "cpqSePcieFunctMaxLinkSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 14 - ] - }, - "cpqSePcieFunctMaxLinkWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciFunctEntry", - 15 - ] - }, - "cpqSePciMemoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSePciMemoryEntry" - }, - "index": null, - "value": [ - "cpqSePci", - 3 - ] - }, - "cpqSePciMemoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSePciMemoryEntry" - }, - "index": [ - "cpqSePciMemoryBusNumberIndex", - "cpqSePciMemoryDeviceNumberIndex", - "cpqSePciMemoryFunctionIndex", - "cpqSePciMemoryIndex" - ], - "value": [ - "cpqSePciMemoryTable", - 1 - ] - }, - "CpqSePciMemoryEntry": { - "tp": "SEQUENCE" - }, - "cpqSePciMemoryBusNumberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 1 - ] - }, - "cpqSePciMemoryDeviceNumberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 2 - ] - }, - "cpqSePciMemoryFunctionIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 3 - ] - }, - "cpqSePciMemoryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 4 - ] - }, - "cpqSePciMemoryBaseAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 5 - ] - }, - "cpqSePciMemoryType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "io", - "3": "memory-mapped", - "4": "exp-rom" - } - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 6 - ] - }, - "cpqSePciMemorySize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 7 - ] - }, - "cpqSePciMemoryHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePciMemoryEntry", - 8 - ] - }, - "cpqSePciSegmentMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "single-segment", - "3": "multi-segment", - "4": "auto-segment" - } - }, - "index": null, - "value": [ - "cpqSePci", - 4 - ] - }, - "cpqSePciePhySlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePci", - 5 - ] - }, - "cpqSePCCardSlotTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSePCCardSlotEntry" - }, - "index": null, - "value": [ - "cpqSePCCard", - 1 - ] - }, - "cpqSePCCardSlotEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSePCCardSlotEntry" - }, - "index": [ - "cpqSePCCardSlotIndex" - ], - "value": [ - "cpqSePCCardSlotTable", - 1 - ] - }, - "CpqSePCCardSlotEntry": { - "tp": "SEQUENCE" - }, - "cpqSePCCardSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 1 - ] - }, - "cpqSePCCardCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 2 - ] - }, - "cpqSePCCardPhysLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 3 - ] - }, - "cpqSePCCardSlotType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 4 - ] - }, - "cpqSePCCardSlotWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "width8bit", - "4": "width16bit", - "5": "width32bit", - "6": "width64bit", - "7": "width128bit" - } - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 5 - ] - }, - "cpqSePCCardSlotThermalCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 6 - ] - }, - "cpqSePCCardSlotThermalSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 7 - ] - }, - "cpqSePCCardSlotPowerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "on", - "3": "off" - } - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 8 - ] - }, - "cpqSePCCardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "thermalDegraded", - "4": "thermalFailure" - } - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 9 - ] - }, - "cpqSePCCardDeviceInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 10 - ] - }, - "cpqSePCCardProductInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 11 - ] - }, - "cpqSePCCardSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 12 - ] - }, - "cpqSePCCardAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCCardSlotEntry", - 13 - ] - }, - "cpqSeUSBPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeUSBPortEntry" - }, - "index": null, - "value": [ - "cpqSeUSBPort", - 1 - ] - }, - "cpqSeUSBPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeUSBPortEntry" - }, - "index": [ - "cpqSeUSBPortIndex" - ], - "value": [ - "cpqSeUSBPortTable", - 1 - ] - }, - "CpqSeUSBPortEntry": { - "tp": "SEQUENCE" - }, - "cpqSeUSBPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 1 - ] - }, - "cpqSeUSBPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "usbPort", - "3": "sdPort" - } - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 2 - ] - }, - "cpqSeUSBPortHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 3 - ] - }, - "cpqSeUSBPortStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notPopulated", - "3": "populated" - } - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 4 - ] - }, - "cpqSeUSBPortDeviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 5 - ] - }, - "cpqSeUSBPortDeviceCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 6 - ] - }, - "cpqSeUSBPortDeviceManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 7 - ] - }, - "cpqSeUSBPortDeviceModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 8 - ] - }, - "cpqSeUSBPortDeviceFWVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 9 - ] - }, - "cpqSeUSBPortDeviceSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 10 - ] - }, - "cpqSeUSBPortDevicePartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 11 - ] - }, - "cpqSeUSBPortDeviceCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 12 - ] - }, - "cpqSeUSBPortDeviceReadErrorCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 13 - ] - }, - "cpqSeUSBPortDeviceWriteErrorCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 14 - ] - }, - "cpqSeUSBPortDeviceReadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 15 - ] - }, - "cpqSeUSBPortDeviceWriteThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 16 - ] - }, - "cpqSeUSBPortDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 17 - ] - }, - "cpqSeUSBPortDeviceFeature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "redundancy-capable", - "2": "standard" - } - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 18 - ] - }, - "cpqSeUSBPortDeviceFailedSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 19 - ] - }, - "cpqSeUSBPortDeviceLastSlotWithError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 20 - ] - }, - "cpqSeUSBPortDeviceFaultTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "mirroring" - } - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 21 - ] - }, - "cpqSeUSBPortDevicePresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpqSeUSBPortEntry", - 22 - ] - }, - "cpqSeCellTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeCellEntry" - }, - "index": null, - "value": [ - "cpqSeCell", - 1 - ] - }, - "cpqSeCellEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeCellEntry" - }, - "index": [ - "cpqSeCellUnitIndex" - ], - "value": [ - "cpqSeCellTable", - 1 - ] - }, - "CpqSeCellEntry": { - "tp": "SEQUENCE" - }, - "cpqSeCellUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 1 - ] - }, - "cpqSeCellCabinetNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 2 - ] - }, - "cpqSeCellCellNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 3 - ] - }, - "cpqSeCellIOCTablePtr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 4 - ] - }, - "cpqSeCellPDHCFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 5 - ] - }, - "cpqSeCellSysFwVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 6 - ] - }, - "cpqSeCellBootInhibited": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 7 - ] - }, - "cpqSeCellToScanBusConnectionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 8 - ] - }, - "cpqSeCellHasCoreIO": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 9 - ] - }, - "cpqSeCellBoardSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 10 - ] - }, - "cpqSeCellPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 11 - ] - }, - "cpqSeCellHasPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 12 - ] - }, - "cpqSeCellReadyForReconfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 13 - ] - }, - "cpqSeCellTotalMemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 14 - ] - }, - "cpqSeCellLEDState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 15 - ] - }, - "cpqSeCellState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 16 - ] - }, - "cpqSeCellCLMRequestPercentage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 17 - ] - }, - "cpqSeCellCLMRequestSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 18 - ] - }, - "cpqSeCellCLMAllocatedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 19 - ] - }, - "cpqSeCellInterleaveAllocatedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 20 - ] - }, - "cpqSeCellHasInterleaveMem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 21 - ] - }, - "cpqSeCellSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 22 - ] - }, - "cpqSeCellCLMCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSeCellEntry", - 23 - ] - }, - "cpqSeIOCTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeIOCEntry" - }, - "index": null, - "value": [ - "cpqSeIOC", - 1 - ] - }, - "cpqSeIOCEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeIOCEntry" - }, - "index": [ - "cpqSeIOCUnitIndex" - ], - "value": [ - "cpqSeIOCTable", - 1 - ] - }, - "CpqSeIOCEntry": { - "tp": "SEQUENCE" - }, - "cpqSeIOCUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeIOCEntry", - 1 - ] - }, - "cpqSeIOCCabinetNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeIOCEntry", - 2 - ] - }, - "cpqSeIOCBayNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeIOCEntry", - 3 - ] - }, - "cpqSeIOCIOCNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeIOCEntry", - 4 - ] - }, - "cpqSeIOCPowerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "powered-off", - "3": "powered-on" - } - }, - "index": null, - "value": [ - "cpqSeIOCEntry", - 5 - ] - }, - "cpqSeIOCLEDState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeIOCEntry", - 6 - ] - }, - "cpqSePartitionTotalCPU": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 1 - ] - }, - "cpqSePartitionAvailableCellSlots": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 2 - ] - }, - "cpqSePartitionInstalledCells": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 3 - ] - }, - "cpqSePartitionPoweredOnCells": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 4 - ] - }, - "cpqSePartitionReadyForReconfigCells": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 5 - ] - }, - "cpqSePartitionMemInterleavingType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 6 - ] - }, - "cpqSePartitionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePartition", - 7 - ] - }, - "cpqSePartitionCoreCell": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 8 - ] - }, - "cpqSePartitionCoreCellCabinet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 9 - ] - }, - "cpqSePartitionCLMRequestPercentage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 10 - ] - }, - "cpqSePartitionCLMRequestSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 11 - ] - }, - "cpqSePartitionCLMAllocatedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 12 - ] - }, - "cpqSePartitionInterleaveAllocatedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 13 - ] - }, - "cpqSePartitionHasInterleaveMem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 14 - ] - }, - "cpqSePartitionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePartition", - 15 - ] - }, - "cpqSeCabinetTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeCabinetEntry" - }, - "index": null, - "value": [ - "cpqSeCabinet", - 1 - ] - }, - "cpqSeCabinetEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeCabinetEntry" - }, - "index": [ - "cpqSeCabinetUnitIndex" - ], - "value": [ - "cpqSeCabinetTable", - 1 - ] - }, - "CpqSeCabinetEntry": { - "tp": "SEQUENCE" - }, - "cpqSeCabinetUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCabinetEntry", - 1 - ] - }, - "cpqSeCabinetCPULED": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCabinetEntry", - 2 - ] - }, - "cpqSeCabinetIOXLED": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "cpqSeCabinetEntry", - 3 - ] - }, - "cpqSeCabinetTypeNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCabinetEntry", - 4 - ] - }, - "cpqSeCabinetLED": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeCabinetEntry", - 5 - ] - }, - "cpqSeComplexUUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeComplex", - 1 - ] - }, - "cpqSeComplexTotalCabinet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplex", - 2 - ] - }, - "cpqSeComplexComputeCabinet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplex", - 3 - ] - }, - "cpqSeComplexIOXCabinet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplex", - 4 - ] - }, - "cpqSeComplexName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeComplex", - 5 - ] - }, - "cpqSeComplexLockedProperty": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplex", - 6 - ] - }, - "cpqSeComplexCellSlotStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeComplexCellSlotStatusEntry" - }, - "index": null, - "value": [ - "cpqSeComplex", - 7 - ] - }, - "cpqSeComplexCellSlotStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeComplexCellSlotStatusEntry" - }, - "index": [ - "cpqSeComplexCellSlotStatusIndex" - ], - "value": [ - "cpqSeComplexCellSlotStatusTable", - 1 - ] - }, - "CpqSeComplexCellSlotStatusEntry": { - "tp": "SEQUENCE" - }, - "cpqSeComplexCellSlotStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplexCellSlotStatusEntry", - 1 - ] - }, - "cpqSeComplexCellSlotStatusCabinetNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplexCellSlotStatusEntry", - 2 - ] - }, - "cpqSeComplexCellSlotStatusSlotNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplexCellSlotStatusEntry", - 3 - ] - }, - "cpqSeComplexCellSlotStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "active", - "3": "inactive", - "4": "assigned-powered-off", - "5": "free-powered-on", - "6": "free-powered-off", - "7": "empty" - } - }, - "index": null, - "value": [ - "cpqSeComplexCellSlotStatusEntry", - 4 - ] - }, - "cpqSeComplexCellSlotPartitionNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeComplexCellSlotStatusEntry", - 5 - ] - }, - "cpqSeComplexCellSlotPartitionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeComplexCellSlotStatusEntry", - 6 - ] - }, - "cpqSeLEDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSeLEDEntry" - }, - "index": null, - "value": [ - "cpqSeLED", - 1 - ] - }, - "cpqSeLEDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSeLEDEntry" - }, - "index": [ - "cpqSeLEDIndex" - ], - "value": [ - "cpqSeLEDTable", - 1 - ] - }, - "CpqSeLEDEntry": { - "tp": "SEQUENCE" - }, - "cpqSeLEDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeLEDEntry", - 1 - ] - }, - "cpqSeLEDState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeLEDEntry", - 2 - ] - }, - "cpqSeLEDStateDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeLEDEntry", - 3 - ] - }, - "cpqSeLEDLocationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSeLEDEntry", - 4 - ] - }, - "cpqSeLEDDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeLEDEntry", - 5 - ] - }, - "cpqSeLEDHardwareLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeLEDEntry", - 6 - ] - }, - "cpqSeUSBDeviceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBDevice", - 1 - ] - }, - "cpqSeUSBDeviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSeUSBDevice", - 2 - ] - }, - "cpqSePCIeDiskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpqSePCIeDiskEntry" - }, - "index": null, - "value": [ - "cpqSePCIeDisk", - 1 - ] - }, - "cpqSePCIeDiskEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpqSePCIeDiskEntry" - }, - "index": [ - "cpqSePCIeDiskPCIBusIndex", - "cpqSePCIeDiskPCIDeviceIndex", - "cpqSePCIeDiskPCIFunctionIndex" - ], - "value": [ - "cpqSePCIeDiskTable", - 1 - ] - }, - "CpqSePCIeDiskEntry": { - "tp": "SEQUENCE" - }, - "cpqSePCIeDiskPCIBusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 1 - ] - }, - "cpqSePCIeDiskPCIDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 2 - ] - }, - "cpqSePCIeDiskPCIFunctionIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 3 - ] - }, - "cpqSePCIeDiskModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 4 - ] - }, - "cpqSePCIeDiskFwRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 5 - ] - }, - "cpqSePCIeDiskSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 6 - ] - }, - "cpqSePCIeDiskCapacityMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 7 - ] - }, - "cpqSePCIeDiskCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 8 - ] - }, - "cpqSePCIeDiskCurrentTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 9 - ] - }, - "cpqSePCIeDiskThresholdTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 10 - ] - }, - "cpqSePCIeDiskHwLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 11 - ] - }, - "cpqSePCIeDiskOsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 12 - ] - }, - "cpqSePCIeDiskWearStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "ok", - "3": "fiftySixDayThreshold", - "4": "fivePercentThreshold", - "5": "twoPercentThreshold", - "6": "ssdWearOut" - } - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 13 - ] - }, - "cpqSePCIeDiskPowerOnHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 14 - ] - }, - "cpqSePCIeDiskPercntEndrnceUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "cpqSePCIeDiskEntry", - 15 - ] - }, - "cpqSePCIeDiskTableCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "degraded", - "4": "failed" - } - }, - "index": null, - "value": [ - "cpqSePCIeDisk", - 2 - ] - }, - "cpqSePCIeEraseFailureType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "secureEraseFailed", - "2": "secureEraseNotSupported", - "3": "noEraseSupported" - } - }, - "index": null, - "value": [ - "cpqSePCIeDisk", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/DELL-RAC-MIB.json b/mibs/parsed/DELL-RAC-MIB.json deleted file mode 100644 index c6f3981..0000000 --- a/mibs/parsed/DELL-RAC-MIB.json +++ /dev/null @@ -1,1398 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "enterprises", - "TimeTicks" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ] - ], - "DellString": { - "tp": "DisplayString" - }, - "DellRacType": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "dracIII", - "4": "era", - "5": "drac4", - "6": "drac5", - "7": "drac5MC", - "8": "cmc", - "9": "idrac", - "18": "vrtxCMC", - "19": "fx2CMC" - } - }, - "DellStatus": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "ok", - "4": "nonCritical", - "5": "critical", - "6": "nonRecoverable" - } - }, - "DellPowerReading": { - "tp": "DisplayString" - }, - "DellCMCPowerIndexRange": { - "tp": "INTEGER" - }, - "DellCMCPSUIndexRange": { - "tp": "INTEGER" - }, - "DellCMCPSUCapable": { - "tp": "INTEGER", - "values": { - "1": "absent", - "2": "none", - "3": "basic" - } - }, - "DellTemperatureReading": { - "tp": "INTEGER" - }, - "DellTimestamp": { - "tp": "DisplayString" - }, - "DellCMCServerIndexRange": { - "tp": "INTEGER" - }, - "DellCMCServerCapable": { - "tp": "INTEGER", - "values": { - "1": "absent", - "2": "none", - "3": "basic", - "4": "off" - } - }, - "dell": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 674 - ] - }, - "server3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dell", - 10892 - ] - }, - "drsOutofBandGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "server3", - 2 - ] - }, - "drsInformationGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 1 - ] - }, - "drsProductInfoGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsInformationGroup", - 1 - ] - }, - "drsFirmwareGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsInformationGroup", - 2 - ] - }, - "drsStatusGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 2 - ] - }, - "drsChassisStatusGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 3 - ] - }, - "drsStatusNowGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsChassisStatusGroup", - 1 - ] - }, - "drsStatusPrevGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsChassisStatusGroup", - 2 - ] - }, - "drsStatusChangeGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsChassisStatusGroup", - 3 - ] - }, - "drsChassisPowerGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 4 - ] - }, - "DrsCMCPowerTableEntry": { - "tp": "SEQUENCE" - }, - "DrsCMCPSUTableEntry": { - "tp": "SEQUENCE" - }, - "drsChassisServerGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 5 - ] - }, - "DrsCMCServerTableEntry": { - "tp": "SEQUENCE" - }, - "drsCMCAlertGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 20 - ] - }, - "drsChassisAlertVariables": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsCMCAlertGroup", - 10 - ] - }, - "drsCMCAlert2Group": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 21 - ] - }, - "drsChassisAlert2Variables": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsCMCAlert2Group", - 10 - ] - }, - "drsAlertGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsOutofBandGroup", - 5000 - ] - }, - "drsAlertVariables": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "drsAlertGroup", - 10 - ] - }, - "drsProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 1 - ] - }, - "drsProductShortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 2 - ] - }, - "drsProductDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 3 - ] - }, - "drsProductManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 4 - ] - }, - "drsProductVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 5 - ] - }, - "drsChassisServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 6 - ] - }, - "drsProductURL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 7 - ] - }, - "drsProductChassisAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 8 - ] - }, - "drsProductChassisLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 9 - ] - }, - "drsProductChassisName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 10 - ] - }, - "drsSystemServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 11 - ] - }, - "drsProductSystemAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 12 - ] - }, - "drsProductSystemSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 13 - ] - }, - "drsProductType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellRacType" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 14 - ] - }, - "drsProductChassisDataCenter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 15 - ] - }, - "drsProductChassisAisle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 16 - ] - }, - "drsProductChassisRack": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 17 - ] - }, - "drsProductChassisRackSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 18 - ] - }, - "drsProductChassisModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 19 - ] - }, - "drsProductChassisExpressServiceCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 20 - ] - }, - "drsProductChassisSystemID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 21 - ] - }, - "drsProductChassisSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "drsProductInfoGroup", - 22 - ] - }, - "drsFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsFirmwareGroup", - 1 - ] - }, - "drsiKVMFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsFirmwareGroup", - 2 - ] - }, - "drsFirmwareVersion2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsFirmwareGroup", - 3 - ] - }, - "drsGlobalSystemStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusGroup", - 1 - ] - }, - "drsGlobalCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 1 - ] - }, - "drsIOMCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 2 - ] - }, - "drsKVMCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 3 - ] - }, - "drsRedCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 4 - ] - }, - "drsPowerCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 5 - ] - }, - "drsFanCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 6 - ] - }, - "drsBladeCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 7 - ] - }, - "drsTempCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 8 - ] - }, - "drsCMCCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 9 - ] - }, - "drsChassisFrontPanelAmbientTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTemperatureReading" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 10 - ] - }, - "drsCMCAmbientTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTemperatureReading" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 11 - ] - }, - "drsCMCProcessorTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTemperatureReading" - }, - "index": null, - "value": [ - "drsStatusNowGroup", - 12 - ] - }, - "drsGlobalPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 1 - ] - }, - "drsIOMPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 2 - ] - }, - "drsKVMPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 3 - ] - }, - "drsRedPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 4 - ] - }, - "drsPowerPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 5 - ] - }, - "drsFanPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 6 - ] - }, - "drsBladePrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 7 - ] - }, - "drsTempPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 8 - ] - }, - "drsCMCPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsStatusPrevGroup", - 9 - ] - }, - "drsGlobalChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 1 - ] - }, - "drsIOMChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 2 - ] - }, - "drsKVMChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 3 - ] - }, - "drsRedChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 4 - ] - }, - "drsPowerChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 5 - ] - }, - "drsFanChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 6 - ] - }, - "drsBladeChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 7 - ] - }, - "drsTempChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 8 - ] - }, - "drsCMCChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsStatusChangeGroup", - 9 - ] - }, - "drsCMCPowerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DrsCMCPowerTableEntry" - }, - "index": null, - "value": [ - "drsChassisPowerGroup", - 1 - ] - }, - "drsCMCPowerTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DrsCMCPowerTableEntry" - }, - "index": [ - "drsChassisIndex" - ], - "value": [ - "drsCMCPowerTable", - 1 - ] - }, - "drsCMCPSUTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DrsCMCPSUTableEntry" - }, - "index": null, - "value": [ - "drsChassisPowerGroup", - 2 - ] - }, - "drsCMCPSUTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DrsCMCPSUTableEntry" - }, - "index": [ - "drsPSUChassisIndex", - "drsPSUIndex" - ], - "value": [ - "drsCMCPSUTable", - 1 - ] - }, - "drsChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellCMCPowerIndexRange" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 1 - ] - }, - "drsPotentialPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 2 - ] - }, - "drsIdlePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 3 - ] - }, - "drsMaxPowerSpecification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 4 - ] - }, - "drsPowerSurplus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 5 - ] - }, - "drsKWhCumulative": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 6 - ] - }, - "drsKWhCumulativeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTimestamp" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 7 - ] - }, - "drsWattsPeakUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 8 - ] - }, - "drsWattsPeakTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTimestamp" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 9 - ] - }, - "drsWattsMinUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 10 - ] - }, - "drsWattsMinTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTimestamp" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 11 - ] - }, - "drsWattsResetTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellTimestamp" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 12 - ] - }, - "drsWattsReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 13 - ] - }, - "drsAmpsReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPowerTableEntry", - 14 - ] - }, - "drsPSUChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellCMCPowerIndexRange" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 1 - ] - }, - "drsPSUIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellCMCPSUIndexRange" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 2 - ] - }, - "drsPSULocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 3 - ] - }, - "drsPSUMonitoringCapable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellCMCPSUCapable" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 4 - ] - }, - "drsPSUVoltsReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 5 - ] - }, - "drsPSUAmpsReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 6 - ] - }, - "drsPSUWattsReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellPowerReading" - }, - "index": null, - "value": [ - "drsCMCPSUTableEntry", - 7 - ] - }, - "drsCMCServerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DrsCMCServerTableEntry" - }, - "index": null, - "value": [ - "drsChassisServerGroup", - 1 - ] - }, - "drsCMCServerTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DrsCMCServerTableEntry" - }, - "index": [ - "drsServerIndex" - ], - "value": [ - "drsCMCServerTable", - 1 - ] - }, - "drsServerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellCMCServerIndexRange" - }, - "index": null, - "value": [ - "drsCMCServerTableEntry", - 1 - ] - }, - "drsServerMonitoringCapable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellCMCServerCapable" - }, - "index": null, - "value": [ - "drsCMCServerTableEntry", - 2 - ] - }, - "drsServerServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsCMCServerTableEntry", - 3 - ] - }, - "drsServerSlotName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsCMCServerTableEntry", - 4 - ] - }, - "drsServerSlotNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsCMCServerTableEntry", - 5 - ] - }, - "drsServerNodeID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsCMCServerTableEntry", - 6 - ] - }, - "drsCASubSystem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsChassisAlertVariables", - 1 - ] - }, - "drsCASSCurrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsChassisAlertVariables", - 2 - ] - }, - "drsCASSPrevStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsChassisAlertVariables", - 3 - ] - }, - "drsCASSChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "drsChassisAlertVariables", - 4 - ] - }, - "drsCAMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsChassisAlertVariables", - 5 - ] - }, - "drsCA2MessageID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "drsChassisAlert2Variables", - 1 - ] - }, - "drsCA2Message": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsChassisAlert2Variables", - 2 - ] - }, - "drsCA2MessageArgs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellString" - }, - "index": null, - "value": [ - "drsChassisAlert2Variables", - 3 - ] - }, - "drsCA2AlertStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsChassisAlert2Variables", - 4 - ] - }, - "drsCA2FQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "drsChassisAlert2Variables", - 5 - ] - }, - "drsAlertSystem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "drsAlertVariables", - 1 - ] - }, - "drsAlertTableIndexOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "drsAlertVariables", - 2 - ] - }, - "drsAlertMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "drsAlertVariables", - 3 - ] - }, - "drsAlertCurrentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsAlertVariables", - 4 - ] - }, - "drsAlertPreviousStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DellStatus" - }, - "index": null, - "value": [ - "drsAlertVariables", - 5 - ] - }, - "drsAlertData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "drsAlertVariables", - 6 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/EATON-EMP-MIB.json b/mibs/parsed/EATON-EMP-MIB.json deleted file mode 100644 index 077130b..0000000 --- a/mibs/parsed/EATON-EMP-MIB.json +++ /dev/null @@ -1,219 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "EATON-OIDS", - [ - "xupsEnvironment" - ] - ] - ], - "eatonEMPMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "xupsEnvironment", - 0 - ] - }, - "xupsEnvRemoteTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 5 - ] - }, - "xupsEnvRemoteHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 6 - ] - }, - "xupsEnvNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 7 - ] - }, - "xupsContactSenseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsContactsTableEntry" - }, - "index": null, - "value": [ - "xupsEnvironment", - 8 - ] - }, - "xupsContactsTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsContactsTableEntry" - }, - "index": [ - "xupsContactIndex" - ], - "value": [ - "xupsContactSenseTable", - 1 - ] - }, - "XupsContactsTableEntry": { - "tp": "SEQUENCE" - }, - "xupsContactIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsContactsTableEntry", - 1 - ] - }, - "xupsContactType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyOpen", - "2": "normallyClosed", - "3": "anyChange", - "4": "notUsed" - } - }, - "index": null, - "value": [ - "xupsContactsTableEntry", - 2 - ] - }, - "xupsContactState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "openWithNotice", - "4": "closedWithNotice" - } - }, - "index": null, - "value": [ - "xupsContactsTableEntry", - 3 - ] - }, - "xupsContactDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsContactsTableEntry", - 4 - ] - }, - "xupsEnvRemoteTempLowerLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 9 - ] - }, - "xupsEnvRemoteTempUpperLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 10 - ] - }, - "xupsEnvRemoteHumidityLowerLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 11 - ] - }, - "xupsEnvRemoteHumidityUpperLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 12 - ] - }, - "eatonEMPConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eatonEMPMIB", - 2 - ] - }, - "eatonEMPGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "eatonEMPConformance", - 1 - ] - }, - "eatonEMPTableGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "eatonEMPConformance", - 2 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/EATON-OIDS.json b/mibs/parsed/EATON-OIDS.json deleted file mode 100644 index 227a474..0000000 --- a/mibs/parsed/EATON-OIDS.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "enterprises" - ] - ], - [ - "SNMPv2-SMI", - [ - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ] - ], - "eaton": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 534 - ] - }, - "xupsMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 1 - ] - }, - "xupsEnvironment": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 6 - ] - }, - "xupsObjectId": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 2 - ] - }, - "powerwareEthernetSnmpAdapter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 1 - ] - }, - "powerwareNetworkSnmpAdapterEther": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 2 - ] - }, - "powerwareNetworkSnmpAdapterToken": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 3 - ] - }, - "onlinetDaemon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 4 - ] - }, - "connectUPSAdapterEthernet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 5 - ] - }, - "powerwareNetworkDigitalIOEther": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 6 - ] - }, - "connectUPSAdapterTokenRing": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 7 - ] - }, - "simpleSnmpAdapter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 8 - ] - }, - "powerwareEliSnmpAdapter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 9 - ] - }, - "powerwareBasicEmbeddedEthernet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 10 - ] - }, - "eatonPowerChainGateway": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 11 - ] - }, - "eatonPowerChainDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 12 - ] - }, - "eatonPowerXpertMeter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsObjectId", - 13 - ] - }, - "xupsIoMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 3 - ] - }, - "powerVision": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 4 - ] - }, - "products": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 6 - ] - }, - "pduAgent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 6 - ] - }, - "hdpdu": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pduAgent", - 2 - ] - }, - "eatonPdu": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pduAgent", - 4 - ] - }, - "sensorAgent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 8 - ] - }, - "dataCenter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 7 - ] - }, - "environmentalMonitor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dataCenter", - 1 - ] - }, - "itProjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 7 - ] - }, - "pki": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "itProjects", - 1 - ] - }, - "powerChain": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 8 - ] - }, - "powerCmnd": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 9 - ] - }, - "sts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eaton", - 10 - ] - }, - "PositiveInteger": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "d" - }, - "NonNegativeInteger": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "d" - } -} \ No newline at end of file diff --git a/mibs/parsed/FCMGMT-MIB.json b/mibs/parsed/FCMGMT-MIB.json deleted file mode 100644 index 1f0a48d..0000000 --- a/mibs/parsed/FCMGMT-MIB.json +++ /dev/null @@ -1,2787 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "IpAddress", - "TimeTicks", - "experimental" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ] - ], - "FcNameId": { - "tp": "OCTET STRING" - }, - "FcGlobalId": { - "tp": "OCTET STRING" - }, - "FcAddressId": { - "tp": "OCTET STRING" - }, - "FcEventSeverity": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "emergency", - "3": "alert", - "4": "critical", - "5": "error", - "6": "warning", - "7": "notify", - "8": "info", - "9": "debug", - "10": "mark" - } - }, - "FcUnitType": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "hub", - "4": "switch", - "5": "gateway", - "6": "converter", - "7": "hba", - "8": "proxy-agent", - "9": "storage-device", - "10": "host", - "11": "storage-subsystem", - "12": "module", - "13": "swdriver", - "14": "storage-access-device", - "15": "wdm", - "16": "ups", - "17": "nas" - } - }, - "fcmgmt": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "experimental", - 94 - ] - }, - "connSet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "fcmgmt", - 1 - ] - }, - "trapReg": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "fcmgmt", - 2 - ] - }, - "statSet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "fcmgmt", - 4 - ] - }, - "connUnitServiceSet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "fcmgmt", - 5 - ] - }, - "connUnitServiceScalars": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "connUnitServiceSet", - 1 - ] - }, - "connUnitServiceTables": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "connUnitServiceSet", - 2 - ] - }, - "revisionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "fcmgmt", - 3 - ] - }, - "uNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connSet", - 1 - ] - }, - "systemURL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connSet", - 2 - ] - }, - "statusChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connSet", - 3 - ] - }, - "configurationChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connSet", - 4 - ] - }, - "connUnitTableChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connSet", - 5 - ] - }, - "connUnitTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitEntry" - }, - "index": null, - "value": [ - "connSet", - 6 - ] - }, - "connUnitEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitEntry" - }, - "index": [ - "connUnitId" - ], - "value": [ - "connUnitTable", - 1 - ] - }, - "ConnUnitEntry": { - "tp": "SEQUENCE" - }, - "connUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitEntry", - 1 - ] - }, - "connUnitGlobalId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitEntry", - 2 - ] - }, - "connUnitType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcUnitType" - }, - "index": null, - "value": [ - "connUnitEntry", - 3 - ] - }, - "connUnitNumports": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 4 - ] - }, - "connUnitState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "online", - "3": "offline" - } - }, - "index": null, - "value": [ - "connUnitEntry", - 5 - ] - }, - "connUnitStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "unused", - "3": "ok", - "4": "warning", - "5": "failed" - } - }, - "index": null, - "value": [ - "connUnitEntry", - 6 - ] - }, - "connUnitProduct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 7 - ] - }, - "connUnitSn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 8 - ] - }, - "connUnitUpTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connUnitEntry", - 9 - ] - }, - "connUnitUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 10 - ] - }, - "connUnitDomainId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitEntry", - 11 - ] - }, - "connUnitProxyMaster": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "no", - "3": "yes" - } - }, - "index": null, - "value": [ - "connUnitEntry", - 12 - ] - }, - "connUnitPrincipal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "no", - "3": "yes" - } - }, - "index": null, - "value": [ - "connUnitEntry", - 13 - ] - }, - "connUnitNumSensors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 14 - ] - }, - "connUnitStatusChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connUnitEntry", - 15 - ] - }, - "connUnitConfigurationChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connUnitEntry", - 16 - ] - }, - "connUnitNumRevs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 17 - ] - }, - "connUnitNumZones": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 18 - ] - }, - "connUnitModuleId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitEntry", - 19 - ] - }, - "connUnitName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 20 - ] - }, - "connUnitInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 21 - ] - }, - "connUnitControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "invalid", - "3": "resetConnUnitColdStart", - "4": "resetConnUnitWarmStart", - "5": "offlineConnUnit", - "6": "onlineConnUnit" - } - }, - "index": null, - "value": [ - "connUnitEntry", - 22 - ] - }, - "connUnitContact": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 23 - ] - }, - "connUnitLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 24 - ] - }, - "connUnitEventFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcEventSeverity" - }, - "index": null, - "value": [ - "connUnitEntry", - 25 - ] - }, - "connUnitNumEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 26 - ] - }, - "connUnitMaxEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 27 - ] - }, - "connUnitEventCurrID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 28 - ] - }, - "connUnitFabricID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitEntry", - 29 - ] - }, - "connUnitNumLinks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEntry", - 30 - ] - }, - "connUnitVendorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEntry", - 31 - ] - }, - "connUnitRevsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitRevsEntry" - }, - "index": null, - "value": [ - "connSet", - 7 - ] - }, - "connUnitRevsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitRevsEntry" - }, - "index": [ - "connUnitRevsUnitId", - "connUnitRevsIndex" - ], - "value": [ - "connUnitRevsTable", - 1 - ] - }, - "ConnUnitRevsEntry": { - "tp": "SEQUENCE" - }, - "connUnitRevsUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitRevsEntry", - 1 - ] - }, - "connUnitRevsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitRevsEntry", - 2 - ] - }, - "connUnitRevsRevId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitRevsEntry", - 3 - ] - }, - "connUnitRevsDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitRevsEntry", - 4 - ] - }, - "connUnitSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitSensorEntry" - }, - "index": null, - "value": [ - "connSet", - 8 - ] - }, - "connUnitSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitSensorEntry" - }, - "index": [ - "connUnitSensorUnitId", - "connUnitSensorIndex" - ], - "value": [ - "connUnitSensorTable", - 1 - ] - }, - "ConnUnitSensorEntry": { - "tp": "SEQUENCE" - }, - "connUnitSensorUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 1 - ] - }, - "connUnitSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 2 - ] - }, - "connUnitSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 3 - ] - }, - "connUnitSensorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "ok", - "4": "warning", - "5": "failed" - } - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 4 - ] - }, - "connUnitSensorInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 5 - ] - }, - "connUnitSensorMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 6 - ] - }, - "connUnitSensorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "battery", - "4": "fan", - "5": "power-supply", - "6": "transmitter", - "7": "enclosure", - "8": "board", - "9": "receiver" - } - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 7 - ] - }, - "connUnitSensorCharacteristic": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "temperature", - "4": "pressure", - "5": "emf", - "6": "currentValue", - "7": "airflow", - "8": "frequency", - "9": "power", - "10": "door" - } - }, - "index": null, - "value": [ - "connUnitSensorEntry", - 8 - ] - }, - "connUnitPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitPortEntry" - }, - "index": null, - "value": [ - "connSet", - 10 - ] - }, - "connUnitPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitPortEntry" - }, - "index": [ - "connUnitPortUnitId", - "connUnitPortIndex" - ], - "value": [ - "connUnitPortTable", - 1 - ] - }, - "ConnUnitPortEntry": { - "tp": "SEQUENCE" - }, - "connUnitPortUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 1 - ] - }, - "connUnitPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 2 - ] - }, - "connUnitPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "not-present", - "4": "hub-port", - "5": "n-port", - "6": "nl-port", - "7": "fl-port", - "8": "f-port", - "9": "e-port", - "10": "g-port", - "11": "domain-ctl", - "12": "hub-controller", - "13": "scsi", - "14": "escon", - "15": "lan", - "16": "wan", - "17": "ac", - "18": "dc", - "19": "ssa", - "20": "wdm", - "21": "ib", - "22": "ipstore" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 3 - ] - }, - "connUnitPortFCClassCap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 4 - ] - }, - "connUnitPortFCClassOp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 5 - ] - }, - "connUnitPortState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "online", - "3": "offline", - "4": "bypassed", - "5": "diagnostics" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 6 - ] - }, - "connUnitPortStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "unused", - "3": "ready", - "4": "warning", - "5": "failure", - "6": "notparticipating", - "7": "initializing", - "8": "bypass", - "9": "ols", - "10": "other" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 7 - ] - }, - "connUnitPortTransmitterType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "unused", - "4": "shortwave", - "5": "longwave", - "6": "copper", - "7": "scsi", - "8": "longwaveNoOFC", - "9": "shortwaveNoOFC", - "10": "longwaveLED", - "11": "ssa" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 8 - ] - }, - "connUnitPortModuleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "gbic", - "4": "embedded", - "5": "glm", - "6": "gbicSerialId", - "7": "gbicNoSerialId", - "8": "gbicNotInstalled", - "9": "smallFormFactor" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 9 - ] - }, - "connUnitPortWwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 10 - ] - }, - "connUnitPortFCId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcAddressId" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 11 - ] - }, - "connUnitPortSn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 12 - ] - }, - "connUnitPortRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 13 - ] - }, - "connUnitPortVendor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 14 - ] - }, - "connUnitPortSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 15 - ] - }, - "connUnitPortControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "invalid", - "3": "resetConnUnitPort", - "4": "bypassConnUnitPort", - "5": "unbypassConnUnitPort", - "6": "offlineConnUnitPort", - "7": "onlineConnUnitPort", - "8": "resetConnUnitPortCounters" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 16 - ] - }, - "connUnitPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 17 - ] - }, - "connUnitPortPhysicalNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 18 - ] - }, - "connUnitPortStatObject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 19 - ] - }, - "connUnitPortProtocolCap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 20 - ] - }, - "connUnitPortProtocolOp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 21 - ] - }, - "connUnitPortNodeWwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcNameId" - }, - "index": null, - "value": [ - "connUnitPortEntry", - 22 - ] - }, - "connUnitPortHWState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "failed", - "3": "bypassed", - "4": "active", - "5": "loopback", - "6": "txfault", - "7": "noMedia", - "8": "linkDown" - } - }, - "index": null, - "value": [ - "connUnitPortEntry", - 23 - ] - }, - "connUnitEventTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitEventEntry" - }, - "index": null, - "value": [ - "connSet", - 11 - ] - }, - "connUnitEventEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitEventEntry" - }, - "index": [ - "connUnitEventUnitId", - "connUnitEventIndex" - ], - "value": [ - "connUnitEventTable", - 1 - ] - }, - "ConnUnitEventEntry": { - "tp": "SEQUENCE" - }, - "connUnitEventUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 1 - ] - }, - "connUnitEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 2 - ] - }, - "connUnitEventId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 3 - ] - }, - "connUnitREventTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 4 - ] - }, - "connUnitSEventTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 5 - ] - }, - "connUnitEventSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcEventSeverity" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 6 - ] - }, - "connUnitEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "status", - "4": "configuration", - "5": "topology" - } - }, - "index": null, - "value": [ - "connUnitEventEntry", - 7 - ] - }, - "connUnitEventObject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 8 - ] - }, - "connUnitEventDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitEventEntry", - 9 - ] - }, - "connUnitLinkTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitLinkEntry" - }, - "index": null, - "value": [ - "connSet", - 12 - ] - }, - "connUnitLinkEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitLinkEntry" - }, - "index": [ - "connUnitLinkUnitId", - "connUnitLinkIndex" - ], - "value": [ - "connUnitLinkTable", - 1 - ] - }, - "ConnUnitLinkEntry": { - "tp": "SEQUENCE" - }, - "connUnitLinkUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 1 - ] - }, - "connUnitLinkIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 2 - ] - }, - "connUnitLinkNodeIdX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 3 - ] - }, - "connUnitLinkPortNumberX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 4 - ] - }, - "connUnitLinkPortWwnX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 5 - ] - }, - "connUnitLinkNodeIdY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 6 - ] - }, - "connUnitLinkPortNumberY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 7 - ] - }, - "connUnitLinkPortWwnY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 8 - ] - }, - "connUnitLinkAgentAddressY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 9 - ] - }, - "connUnitLinkAgentAddressTypeY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 10 - ] - }, - "connUnitLinkAgentPortY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 11 - ] - }, - "connUnitLinkUnitTypeY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcUnitType" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 12 - ] - }, - "connUnitLinkConnIdY": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 13 - ] - }, - "connUnitLinkCurrIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitLinkEntry", - 14 - ] - }, - "connUnitZoneTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitZoneEntry" - }, - "index": null, - "value": [ - "connSet", - 13 - ] - }, - "connUnitZoneEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitZoneEntry" - }, - "index": [ - "connUnitZoneIndex", - "connUnitZoneMemberIndex" - ], - "value": [ - "connUnitZoneTable", - 1 - ] - }, - "ConnUnitZoneEntry": { - "tp": "SEQUENCE" - }, - "connUnitZoneIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 1 - ] - }, - "connUnitZoneMemberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 2 - ] - }, - "connUnitZoneSetName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 3 - ] - }, - "connUnitZoneSetNumZones": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 4 - ] - }, - "connUnitZoneName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 5 - ] - }, - "connUnitZoneCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 6 - ] - }, - "connUnitZoneEnforcementState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 7 - ] - }, - "connUnitZoneAttributeBlock": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 8 - ] - }, - "connUnitZoneNumMembers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 9 - ] - }, - "connUnitZoneMemberIdType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 10 - ] - }, - "connUnitZoneMemberID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitZoneEntry", - 11 - ] - }, - "connUnitZoningAliasTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitZoningAliasEntry" - }, - "index": null, - "value": [ - "connSet", - 14 - ] - }, - "connUnitZoningAliasEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitZoningAliasEntry" - }, - "index": [ - "connUnitZoningAliasIndex", - "connUnitZoningAliasMemberIndex" - ], - "value": [ - "connUnitZoningAliasTable", - 1 - ] - }, - "ConnUnitZoningAliasEntry": { - "tp": "SEQUENCE" - }, - "connUnitZoningAliasIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 1 - ] - }, - "connUnitZoningAliasMemberIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 2 - ] - }, - "connUnitZoningAliasNumAliases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 3 - ] - }, - "connUnitZoningAliasName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 4 - ] - }, - "connUnitZoningAliasNumMembers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 5 - ] - }, - "connUnitZoningAliasMemberIdType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 6 - ] - }, - "connUnitZoningAliasMemberID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitZoningAliasEntry", - 7 - ] - }, - "connUnitPortStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitPortStatEntry" - }, - "index": null, - "value": [ - "statSet", - 5 - ] - }, - "connUnitPortStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitPortStatEntry" - }, - "index": [ - "connUnitPortStatUnitId", - "connUnitPortStatIndex" - ], - "value": [ - "connUnitPortStatTable", - 1 - ] - }, - "ConnUnitPortStatEntry": { - "tp": "SEQUENCE" - }, - "connUnitPortStatUnitId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 1 - ] - }, - "connUnitPortStatIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 2 - ] - }, - "connUnitPortStatCountError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 3 - ] - }, - "connUnitPortStatCountTxObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 4 - ] - }, - "connUnitPortStatCountRxObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 5 - ] - }, - "connUnitPortStatCountTxElements": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 6 - ] - }, - "connUnitPortStatCountRxElements": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 7 - ] - }, - "connUnitPortStatCountBBCreditZero": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 8 - ] - }, - "connUnitPortStatCountInputBuffersFull": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 9 - ] - }, - "connUnitPortStatCountFBSYFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 10 - ] - }, - "connUnitPortStatCountPBSYFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 11 - ] - }, - "connUnitPortStatCountFRJTFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 12 - ] - }, - "connUnitPortStatCountPRJTFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 13 - ] - }, - "connUnitPortStatCountClass1RxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 14 - ] - }, - "connUnitPortStatCountClass1TxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 15 - ] - }, - "connUnitPortStatCountClass1FBSYFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 16 - ] - }, - "connUnitPortStatCountClass1PBSYFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 17 - ] - }, - "connUnitPortStatCountClass1FRJTFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 18 - ] - }, - "connUnitPortStatCountClass1PRJTFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 19 - ] - }, - "connUnitPortStatCountClass2RxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 20 - ] - }, - "connUnitPortStatCountClass2TxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 21 - ] - }, - "connUnitPortStatCountClass2FBSYFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 22 - ] - }, - "connUnitPortStatCountClass2PBSYFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 23 - ] - }, - "connUnitPortStatCountClass2FRJTFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 24 - ] - }, - "connUnitPortStatCountClass2PRJTFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 25 - ] - }, - "connUnitPortStatCountClass3RxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 26 - ] - }, - "connUnitPortStatCountClass3TxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 27 - ] - }, - "connUnitPortStatCountClass3Discards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 28 - ] - }, - "connUnitPortStatCountRxMulticastObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 29 - ] - }, - "connUnitPortStatCountTxMulticastObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 30 - ] - }, - "connUnitPortStatCountRxBroadcastObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 31 - ] - }, - "connUnitPortStatCountTxBroadcastObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 32 - ] - }, - "connUnitPortStatCountRxLinkResets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 33 - ] - }, - "connUnitPortStatCountTxLinkResets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 34 - ] - }, - "connUnitPortStatCountNumberLinkResets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 35 - ] - }, - "connUnitPortStatCountRxOfflineSequences": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 36 - ] - }, - "connUnitPortStatCountTxOfflineSequences": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 37 - ] - }, - "connUnitPortStatCountNumberOfflineSequences": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 38 - ] - }, - "connUnitPortStatCountLinkFailures": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 39 - ] - }, - "connUnitPortStatCountInvalidCRC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 40 - ] - }, - "connUnitPortStatCountInvalidTxWords": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 41 - ] - }, - "connUnitPortStatCountPrimitiveSequenceProtocolErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 42 - ] - }, - "connUnitPortStatCountLossofSignal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 43 - ] - }, - "connUnitPortStatCountLossofSynchronization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 44 - ] - }, - "connUnitPortStatCountInvalidOrderedSets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 45 - ] - }, - "connUnitPortStatCountFramesTooLong": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 46 - ] - }, - "connUnitPortStatCountFramesTruncated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 47 - ] - }, - "connUnitPortStatCountAddressErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 48 - ] - }, - "connUnitPortStatCountDelimiterErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 49 - ] - }, - "connUnitPortStatCountEncodingDisparityErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPortStatEntry", - 50 - ] - }, - "connUnitSnsMaxEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitServiceScalars", - 1 - ] - }, - "connUnitSnsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitSnsEntry" - }, - "index": null, - "value": [ - "connUnitServiceTables", - 1 - ] - }, - "connUnitSnsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitSnsEntry" - }, - "index": [ - "connUnitSnsId", - "connUnitSnsPortName", - "connUnitSnsPortIdentifier" - ], - "value": [ - "connUnitSnsTable", - 1 - ] - }, - "ConnUnitSnsEntry": { - "tp": "SEQUENCE" - }, - "connUnitSnsId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 1 - ] - }, - "connUnitSnsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 2 - ] - }, - "connUnitSnsPortIdentifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcAddressId" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 3 - ] - }, - "connUnitSnsPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcNameId" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 4 - ] - }, - "connUnitSnsNodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcNameId" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 5 - ] - }, - "connUnitSnsClassOfSvc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 6 - ] - }, - "connUnitSnsNodeIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 7 - ] - }, - "connUnitSnsProcAssoc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 8 - ] - }, - "connUnitSnsFC4Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 9 - ] - }, - "connUnitSnsPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 10 - ] - }, - "connUnitSnsPortIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 11 - ] - }, - "connUnitSnsFabricPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcNameId" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 12 - ] - }, - "connUnitSnsHardAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 13 - ] - }, - "connUnitSnsSymbolicPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 14 - ] - }, - "connUnitSnsSymbolicNodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitSnsEntry", - 15 - ] - }, - "connUnitPlatformMaxEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitServiceScalars", - 2 - ] - }, - "connUnitPlatformTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ConnUnitPlatformEntry" - }, - "index": null, - "value": [ - "connUnitServiceTables", - 2 - ] - }, - "connUnitPlatformEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ConnUnitPlatformEntry" - }, - "index": [ - "connUnitPlatformIndex", - "connUnitPlatformNodeIndex" - ], - "value": [ - "connUnitPlatformTable", - 1 - ] - }, - "ConnUnitPlatformEntry": { - "tp": "SEQUENCE" - }, - "connUnitPlatformIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 1 - ] - }, - "connUnitPlatformNodeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 2 - ] - }, - "connUnitPlatformUnitID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 3 - ] - }, - "connUnitPlatformName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 4 - ] - }, - "connUnitPlatformType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcUnitType" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 6 - ] - }, - "connUnitPlatformLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 7 - ] - }, - "connUnitPlatformDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 8 - ] - }, - "connUnitPlatformLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 9 - ] - }, - "connUnitPlatformManagementUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 10 - ] - }, - "connUnitPlatformNumNodes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 11 - ] - }, - "connUnitPlatformNodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcGlobalId" - }, - "index": null, - "value": [ - "connUnitPlatformEntry", - 12 - ] - }, - "trapMaxClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "trapReg", - 1 - ] - }, - "trapClientCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "trapReg", - 2 - ] - }, - "trapRegTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TrapRegEntry" - }, - "index": null, - "value": [ - "trapReg", - 3 - ] - }, - "trapRegEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TrapRegEntry" - }, - "index": [ - "trapRegIpAddress", - "trapRegPort" - ], - "value": [ - "trapRegTable", - 1 - ] - }, - "TrapRegEntry": { - "tp": "SEQUENCE" - }, - "trapRegIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "trapRegEntry", - 1 - ] - }, - "trapRegPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "trapRegEntry", - 2 - ] - }, - "trapRegFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcEventSeverity" - }, - "index": null, - "value": [ - "trapRegEntry", - 3 - ] - }, - "trapRegRowState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "rowDestroy", - "2": "rowInactive", - "3": "rowActive" - } - }, - "index": null, - "value": [ - "trapRegEntry", - 4 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/HCNUM-TC.json b/mibs/parsed/HCNUM-TC.json deleted file mode 100644 index 3ffdb82..0000000 --- a/mibs/parsed/HCNUM-TC.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "mib-2", - "Counter64" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ] - ], - "hcnumTC": { - "tp": "MODULE-IDENTITY", - "value": [ - "mib-2", - 78 - ] - }, - "CounterBasedGauge64": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Counter64" - }, - "display_hint": null - }, - "ZeroBasedCounter64": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Counter64" - }, - "display_hint": null - } -} \ No newline at end of file diff --git a/mibs/parsed/HP-ICF-CHASSIS.json b/mibs/parsed/HP-ICF-CHASSIS.json deleted file mode 100644 index db64d6c..0000000 --- a/mibs/parsed/HP-ICF-CHASSIS.json +++ /dev/null @@ -1,679 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "Integer32", - "Counter32", - "OBJECT-TYPE", - "MODULE-IDENTITY", - "NOTIFICATION-TYPE" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString", - "TimeStamp", - "TruthValue" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "ENTITY-MIB", - [ - "PhysicalIndex" - ] - ], - [ - "HP-ICF-OID", - [ - "hpicfObjectModules", - "hpicfCommon", - "hpicfCommonTrapsPrefix" - ] - ] - ], - "hpicfChassisMib": { - "tp": "MODULE-IDENTITY", - "value": [ - "hpicfObjectModules", - 3 - ] - }, - "hpicfChassis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 2 - ] - }, - "hpicfChassisId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpicfChassis", - 1 - ] - }, - "hpicfChassisNumSlots": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfChassis", - 2 - ] - }, - "hpicfSlotTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpicfSlotEntry" - }, - "index": null, - "value": [ - "hpicfChassis", - 3 - ] - }, - "hpicfSlotEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpicfSlotEntry" - }, - "index": [ - "hpicfSlotIndex" - ], - "value": [ - "hpicfSlotTable", - 1 - ] - }, - "HpicfSlotEntry": { - "tp": "SEQUENCE" - }, - "hpicfSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfSlotEntry", - 1 - ] - }, - "hpicfSlotObjectId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "hpicfSlotEntry", - 2 - ] - }, - "hpicfSlotLastChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "hpicfSlotEntry", - 3 - ] - }, - "hpicfSlotDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpicfSlotEntry", - 4 - ] - }, - "hpicfEntityTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpicfEntityEntry" - }, - "index": null, - "value": [ - "hpicfChassis", - 4 - ] - }, - "hpicfEntityEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpicfEntityEntry" - }, - "index": [ - "hpicfEntityIndex" - ], - "value": [ - "hpicfEntityTable", - 1 - ] - }, - "HpicfEntityEntry": { - "tp": "SEQUENCE" - }, - "hpicfEntityIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfEntityEntry", - 1 - ] - }, - "hpicfEntityFunction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfEntityEntry", - 2 - ] - }, - "hpicfEntityObjectId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "hpicfEntityEntry", - 3 - ] - }, - "hpicfEntityDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpicfEntityEntry", - 4 - ] - }, - "hpicfEntityTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "hpicfEntityEntry", - 5 - ] - }, - "hpicfSlotMapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpicfSlotMapEntry" - }, - "index": null, - "value": [ - "hpicfChassis", - 5 - ] - }, - "hpicfSlotMapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpicfSlotMapEntry" - }, - "index": [ - "hpicfSlotMapSlot", - "hpicfSlotMapEntity" - ], - "value": [ - "hpicfSlotMapTable", - 1 - ] - }, - "HpicfSlotMapEntry": { - "tp": "SEQUENCE" - }, - "hpicfSlotMapSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfSlotMapEntry", - 1 - ] - }, - "hpicfSlotMapEntity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfSlotMapEntry", - 2 - ] - }, - "hpicfSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpicfSensorEntry" - }, - "index": null, - "value": [ - "hpicfChassis", - 6 - ] - }, - "hpicfSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpicfSensorEntry" - }, - "index": [ - "hpicfSensorIndex" - ], - "value": [ - "hpicfSensorTable", - 1 - ] - }, - "HpicfSensorEntry": { - "tp": "SEQUENCE" - }, - "hpicfSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 1 - ] - }, - "hpicfSensorObjectId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 2 - ] - }, - "hpicfSensorNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 3 - ] - }, - "hpicfSensorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "bad", - "3": "warning", - "4": "good", - "5": "notPresent" - } - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 4 - ] - }, - "hpicfSensorWarnings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 5 - ] - }, - "hpicfSensorFailures": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 6 - ] - }, - "hpicfSensorDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpicfSensorEntry", - 7 - ] - }, - "hpicfChassisAddrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpicfChassisAddrEntry" - }, - "index": null, - "value": [ - "hpicfChassis", - 7 - ] - }, - "hpicfChassisAddrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpicfChassisAddrEntry" - }, - "index": [ - "hpicfChasAddrType", - "hpicfChasAddrAddress" - ], - "value": [ - "hpicfChassisAddrTable", - 1 - ] - }, - "HpicfChassisAddrEntry": { - "tp": "SEQUENCE" - }, - "hpicfChasAddrType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ipAddr", - "2": "ipxAddr", - "3": "macAddr" - } - }, - "index": null, - "value": [ - "hpicfChassisAddrEntry", - 1 - ] - }, - "hpicfChasAddrAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpicfChassisAddrEntry", - 2 - ] - }, - "hpicfChasAddrEntity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpicfChassisAddrEntry", - 3 - ] - }, - "hpChassisTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfChassis", - 8 - ] - }, - "hpSystemAirTempTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSystemAirTempEntry" - }, - "index": null, - "value": [ - "hpChassisTemperature", - 1 - ] - }, - "hpSystemAirTempEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSystemAirTempEntry" - }, - "index": [ - "hpSystemAirSensor" - ], - "value": [ - "hpSystemAirTempTable", - 1 - ] - }, - "HpSystemAirTempEntry": { - "tp": "SEQUENCE" - }, - "hpSystemAirSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 1 - ] - }, - "hpSystemAirName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 2 - ] - }, - "hpSystemAirCurrentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 3 - ] - }, - "hpSystemAirMaxTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 4 - ] - }, - "hpSystemAirMinTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 5 - ] - }, - "hpSystemAirOverTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 6 - ] - }, - "hpSystemAirThresholdTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 7 - ] - }, - "hpSystemAirAvgTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 8 - ] - }, - "hpSystemAirEntPhysicalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PhysicalIndex" - }, - "index": null, - "value": [ - "hpSystemAirTempEntry", - 9 - ] - }, - "hpicfFanTrayType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standard", - "2": "highPerformance" - } - }, - "index": null, - "value": [ - "hpicfChassis", - 9 - ] - }, - "hpicfOpacityShieldInstalled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "hpicfChassis", - 10 - ] - }, - "hpicfChassisConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfChassisMib", - 1 - ] - }, - "hpicfChassisCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfChassisConformance", - 1 - ] - }, - "hpicfChassisGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfChassisConformance", - 2 - ] - }, - "hpicfChassisBasicGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "hpicfChassisGroups", - 1 - ] - }, - "hpicfSensorGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "hpicfChassisGroups", - 2 - ] - }, - "hpicfChassisAddrGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "hpicfChassisGroups", - 3 - ] - }, - "hpicfChasTempGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "hpicfChassisGroups", - 5 - ] - }, - "hpicfOpacityShieldsGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "hpicfChassisGroups", - 6 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/HP-ICF-OID.json b/mibs/parsed/HP-ICF-OID.json deleted file mode 100644 index cb2c0bd..0000000 --- a/mibs/parsed/HP-ICF-OID.json +++ /dev/null @@ -1,5577 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "enterprises", - "MODULE-IDENTITY", - "OBJECT-IDENTITY" - ] - ] - ], - "icf": { - "tp": "MODULE-IDENTITY", - "value": [ - "nm", - 14 - ] - }, - "hp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 11 - ] - }, - "nm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hp", - 2 - ] - }, - "icfCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 1 - ] - }, - "icfHub": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 2 - ] - }, - "icfBridge": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 3 - ] - }, - "icfSecurity": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 4 - ] - }, - "icfConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 5 - ] - }, - "icfEsSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 6 - ] - }, - "hpEs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icfEsSwitch", - 1 - ] - }, - "hpEs2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icfEsSwitch", - 2 - ] - }, - "hpNetSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icfEsSwitch", - 3 - ] - }, - "icfRouter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 7 - ] - }, - "icfDot12Draft": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 8 - ] - }, - "icfVgRepeater": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icfDot12Draft", - 1 - ] - }, - "icfVgInterface": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icfDot12Draft", - 2 - ] - }, - "hpEntityMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 9 - ] - }, - "hpicfAdmin": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 10 - ] - }, - "hpicfObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 11 - ] - }, - "hpicfNotifications": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 12 - ] - }, - "hpicfOEMs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 13 - ] - }, - "hpicfFEHub": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfOEMs", - 1 - ] - }, - "hpicfSyslog": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "icf", - 14 - ] - }, - "hpicfDomains": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAdmin", - 1 - ] - }, - "hpicfLLCDomain": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfDomains", - 1 - ] - }, - "hpicfObjectModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAdmin", - 2 - ] - }, - "icfSecurityMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 1 - ] - }, - "hpicfChainMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 2 - ] - }, - "hpicfChassisMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 3 - ] - }, - "hpicfDownloadMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 4 - ] - }, - "hpicfBasicMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 5 - ] - }, - "hpicfStackMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 6 - ] - }, - "hpicfLinkTestMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 7 - ] - }, - "hpicfGenRptrMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 8 - ] - }, - "hpicf8023RptrMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 9 - ] - }, - "icfVgRepeaterMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 10 - ] - }, - "hpicfVgRptrMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 11 - ] - }, - "hpicfFaultFinderMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 12 - ] - }, - "hpicfJumboMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 13 - ] - }, - "hpicfRateLimitMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjectModules", - 14 - ] - }, - "hpicfAgentModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAdmin", - 3 - ] - }, - "hpicfETwistHubAgentsMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAgentModules", - 1 - ] - }, - "hpicfETwistBridgeAgentsMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAgentModules", - 2 - ] - }, - "hpicfAdvStk8023AgentsMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAgentModules", - 3 - ] - }, - "hpicfAdvStkVGAgentsMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAgentModules", - 4 - ] - }, - "hpicfTextualConventions": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfAdmin", - 4 - ] - }, - "hpicfCommon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 1 - ] - }, - "hpicfRepeater": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 2 - ] - }, - "hpicfVg": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 3 - ] - }, - "hpicfGenericRepeater": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 4 - ] - }, - "hpicfSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 5 - ] - }, - "hpicfAccess": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 6 - ] - }, - "hpicfWAN": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 7 - ] - }, - "hpicfFabric": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 8 - ] - }, - "hpicfSecurityDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 9 - ] - }, - "hpicfSysMgmt": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfObjects", - 10 - ] - }, - "hpSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfSwitch", - 1 - ] - }, - "hpOpSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 1 - ] - }, - "hpHwSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 2 - ] - }, - "hpVLAN": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 3 - ] - }, - "hpConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 7 - ] - }, - "hpSwitchStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 9 - ] - }, - "hpSwitchVirtualStackMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 10 - ] - }, - "hpicfDhcpRelay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 11 - ] - }, - "hpicfBridge": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 12 - ] - }, - "hpicfRip": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 13 - ] - }, - "hpicfOspf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 14 - ] - }, - "hpicfIpRouting": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 15 - ] - }, - "hpSwitchAuthenticationMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 16 - ] - }, - "hpSwitchAccountingMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 17 - ] - }, - "hpicfXrrpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 18 - ] - }, - "hpicfUsrAuthMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 19 - ] - }, - "hpicfPimMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 20 - ] - }, - "hpicfMstpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 21 - ] - }, - "hpicfUdpFwd": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 23 - ] - }, - "hpicfConnectionRateFilter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 24 - ] - }, - "hpicfDot1xMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 25 - ] - }, - "hpicfLldpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 30 - ] - }, - "hpicfVrrpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 31 - ] - }, - "hpSwitchAuthorizationMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 32 - ] - }, - "hpicfUdldMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 33 - ] - }, - "hpicfIpDhcpSnoop": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 34 - ] - }, - "hpicfInstMonMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 35 - ] - }, - "hpicfL3MacConfigMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 36 - ] - }, - "hpicfArpProtect": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 37 - ] - }, - "hpicfSnmpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 38 - ] - }, - "hpicfIpLockdown": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 39 - ] - }, - "hpicfProviderBridge": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 40 - ] - }, - "hpicfGppcMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 41 - ] - }, - "hpicfAutorun": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 42 - ] - }, - "hpicfBgpv4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 43 - ] - }, - "hpicfOspfv3MIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 44 - ] - }, - "hpicfInstMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 45 - ] - }, - "hpicfFtrCo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 46 - ] - }, - "hpicfIpPolicyMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 47 - ] - }, - "hpicfMldMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 48 - ] - }, - "hpicfDhcpv6Relay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 50 - ] - }, - "hpicfScriptMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 51 - ] - }, - "hpicfUSBPortMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 53 - ] - }, - "hpicfFanMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 54 - ] - }, - "hpicfPsMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 55 - ] - }, - "hpicfSavepowerMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 56 - ] - }, - "hpicfDhcpClient": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 57 - ] - }, - "hpicfOobmMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 58 - ] - }, - "hpSwitchImage": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 59 - ] - }, - "hpicfDosFilterMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 60 - ] - }, - "hpicfGppcv2MIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 61 - ] - }, - "hpicfZoneMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 62 - ] - }, - "hpicfIgmpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 63 - ] - }, - "hpicfDebugLog": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 64 - ] - }, - "hpicfMacNotifyMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 66 - ] - }, - "hpicfGenericVlanMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 67 - ] - }, - "hpSwitchErrorMsgMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 68 - ] - }, - "hpStackMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 69 - ] - }, - "hpicfLayer3VlanConfigMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 70 - ] - }, - "hpEntityPowerMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 71 - ] - }, - "hpicfTrafficTemplateMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 72 - ] - }, - "hpicfDcbxMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 73 - ] - }, - "hpicfUfdMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 74 - ] - }, - "hpSBMMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 75 - ] - }, - "hpicfLoadBalanceMod": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 76 - ] - }, - "hpTunnelMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 77 - ] - }, - "hpSwitchFipSnoopingMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 78 - ] - }, - "hpicfTcpMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 79 - ] - }, - "hpicfTransceiverMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 82 - ] - }, - "hpicfSvcsAppMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 86 - ] - }, - "hpicfIpv6RAGuard": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 87 - ] - }, - "hpicfRpvstMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 88 - ] - }, - "hpicfOpenFlowMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 89 - ] - }, - "hpicfVrrpv3MIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 90 - ] - }, - "hpicfSflowMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 92 - ] - }, - "hpicfMstpExtnMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 94 - ] - }, - "hpicfMadMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 95 - ] - }, - "hpicfSmartLinkMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 96 - ] - }, - "hpicfServiceTunnel": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 100 - ] - }, - "hpSwitchTrapMib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 104 - ] - }, - "hpicfJobSchedulerMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 105 - ] - }, - "hpicfChain": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 1 - ] - }, - "hpicfChassis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 2 - ] - }, - "hpicfDownload": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 3 - ] - }, - "hpicfBasic": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 4 - ] - }, - "hpicfStack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 5 - ] - }, - "hpicfLinktest": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 6 - ] - }, - "hpicfFaultFinder": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 7 - ] - }, - "hpicfPOE": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 9 - ] - }, - "hpicfCommonSecurity": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 12 - ] - }, - "hpicfSrcIpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 13 - ] - }, - "hpicfCoreDumpMIB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommon", - 14 - ] - }, - "hpicfCommonTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfNotifications", - 1 - ] - }, - "hpicfCommonTrapsPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfCommonTraps", - 0 - ] - }, - "hpicf8023RptrTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfNotifications", - 2 - ] - }, - "hpicf8023RptrTrapsPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicf8023RptrTraps", - 0 - ] - }, - "hpicfVgRptrTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfNotifications", - 3 - ] - }, - "hpicfVgRptrTrapsPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfVgRptrTraps", - 0 - ] - }, - "hpicfGenRptrTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfNotifications", - 4 - ] - }, - "hpicfGenRptrTrapsPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfGenRptrTraps", - 0 - ] - }, - "hpicfRateLimitTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfNotifications", - 5 - ] - }, - "hpicfRateLimitTrapsPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfRateLimitTraps", - 0 - ] - }, - "hpicfSecLoggingTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfNotifications", - 6 - ] - }, - "hpicfSecLoggingTrapsPrefix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfSecLoggingTraps", - 0 - ] - }, - "hpSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nm", - 3 - ] - }, - "netElement": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSystem", - 7 - ] - }, - "bridge": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netElement", - 1 - ] - }, - "bridge1010": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bridge", - 1 - ] - }, - "bridgeRemote": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bridge", - 2 - ] - }, - "eswitch": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bridge", - 3 - ] - }, - "eswitch2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bridge", - 8 - ] - }, - "netSwitch100": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bridge", - 9 - ] - }, - "netSwitch200": { - "tp": "OBJECT-IDENTITY", - "value": [ - "bridge", - 10 - ] - }, - "router": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netElement", - 2 - ] - }, - "icfRouterER": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 1 - ] - }, - "icfRouterTR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 2 - ] - }, - "icfRouterSR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 3 - ] - }, - "icfRouterFR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 4 - ] - }, - "icfRouterLR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 5 - ] - }, - "icfRouterBR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 6 - ] - }, - "icfRouterPR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 7 - ] - }, - "icfRouter650": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 8 - ] - }, - "icfRouter230": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 9 - ] - }, - "icfRouter250": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 10 - ] - }, - "icfRouter255": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 11 - ] - }, - "icfRouter210": { - "tp": "OBJECT-IDENTITY", - "value": [ - "router", - 12 - ] - }, - "icfRouter650Engine": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfRouter650", - 2 - ] - }, - "icfRouter650Port4E": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfRouter650", - 3 - ] - }, - "icfRouter650Port4S": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfRouter650", - 4 - ] - }, - "icfRouter650Port4T": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfRouter650", - 5 - ] - }, - "icfRouter650PortFDDI": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfRouter650", - 6 - ] - }, - "icfRouter650Port100VG": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfRouter650", - 7 - ] - }, - "hub": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netElement", - 5 - ] - }, - "etherTwist12": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 1 - ] - }, - "fiberOptic": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 3 - ] - }, - "etherTwist48": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 4 - ] - }, - "thinLAN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 5 - ] - }, - "etherTwist24S": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 6 - ] - }, - "advStack12": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 7 - ] - }, - "advStack24": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 8 - ] - }, - "advStack48": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 9 - ] - }, - "advStackVg15": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 10 - ] - }, - "advStackU8": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 11 - ] - }, - "advStackU16": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 12 - ] - }, - "advStackVg6": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 13 - ] - }, - "advStackVg12": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 14 - ] - }, - "hpAdvStkEnetSH12R": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 15 - ] - }, - "hpAdvStkEnetSH24R": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 16 - ] - }, - "hpAdvStkEnetSH24T": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 17 - ] - }, - "hpAdvStk100Tx12TM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 18 - ] - }, - "hp10THub16M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 19 - ] - }, - "hp10BaseTHub12M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 20 - ] - }, - "hp10BaseTHub24M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 21 - ] - }, - "hpProCurve10T100THub12M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 22 - ] - }, - "hpProCurve10T100THub24M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hub", - 23 - ] - }, - "chassis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netElement", - 8 - ] - }, - "repeaterAgent": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassis", - 1 - ] - }, - "chassisAgents": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 2 - ] - }, - "icfVgAgent": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassisAgents", - 1 - ] - }, - "icfVgAgent2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassisAgents", - 3 - ] - }, - "hpicfEnetSMM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassisAgents", - 4 - ] - }, - "hpAdvStkEnetSHAgent": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassisAgents", - 5 - ] - }, - "hpAdvStkSwStackTopMgmt": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassisAgents", - 6 - ] - }, - "hpSwitch8000CpuCard": { - "tp": "OBJECT-IDENTITY", - "value": [ - "chassisAgents", - 7 - ] - }, - "icfSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 3 - ] - }, - "icfPowerSupplySensor": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfSensors", - 1 - ] - }, - "icfFanSensor": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfSensors", - 2 - ] - }, - "icfTemperatureSensor": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfSensors", - 3 - ] - }, - "icfFutureSlotSensor": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfSensors", - 4 - ] - }, - "icfCards": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 4 - ] - }, - "icfUnidentifiedCard": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfCards", - 1 - ] - }, - "hpAdvStkEnetSHSwitch": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfCards", - 2 - ] - }, - "hpAdvStkSwStackExpander": { - "tp": "OBJECT-IDENTITY", - "value": [ - "icfCards", - 3 - ] - }, - "hpicfStacks": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 5 - ] - }, - "hpAdvStkEnetSHStack": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfStacks", - 1 - ] - }, - "hpStack": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfStacks", - 2 - ] - }, - "hpStack2920": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfStacks", - 3 - ] - }, - "hpicfBackplanes": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 6 - ] - }, - "hpAdvStkEnetSHExtSeg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfBackplanes", - 1 - ] - }, - "hpAdvStkEnetSHIntSeg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfBackplanes", - 2 - ] - }, - "hp10BaseTHubSeg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfBackplanes", - 3 - ] - }, - "hpSwitchBackplane": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfBackplanes", - 4 - ] - }, - "hp100BaseTHubSeg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfBackplanes", - 5 - ] - }, - "hpicfSlots": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 7 - ] - }, - "hpAdvStkEnetSHAgentSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 1 - ] - }, - "hpAdvStkEnetSHIOSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 2 - ] - }, - "hpAdvStkSwStackMgmtSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 3 - ] - }, - "hpAdvStkSwStackExpSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 4 - ] - }, - "hpSwitch8000PowerSupplyBay": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 5 - ] - }, - "hpSwitch8000CpuSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 6 - ] - }, - "hpSwitch8000PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 7 - ] - }, - "hpSwitch2524PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 8 - ] - }, - "hpSwitch5308PowerSupplyBay": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 9 - ] - }, - "hpSwitch5308PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 10 - ] - }, - "hpSwitch4865PowerSupplyBay": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 11 - ] - }, - "hpSwitch4865PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 12 - ] - }, - "hpSwitch2650PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 13 - ] - }, - "hpSwitch6108PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 14 - ] - }, - "hpSwitch2824PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 15 - ] - }, - "hpSwitch2626PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 16 - ] - }, - "hpSwitch2650PPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 17 - ] - }, - "hpSwitch2626PPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 18 - ] - }, - "hpSwitch3324PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 19 - ] - }, - "hpSwitch2650CRPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 20 - ] - }, - "hpSwitch2626CRPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 21 - ] - }, - "hpSwitch2600n8PPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 22 - ] - }, - "hpSwitch869xPowerSupplyBay": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 23 - ] - }, - "hpSwitch869xPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 24 - ] - }, - "hpSwitch2510PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 25 - ] - }, - "hpSwitch2810PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 26 - ] - }, - "hpSwitch5400CpuCardBay": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 27 - ] - }, - "hpSwitch8212FabricBay": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 28 - ] - }, - "hpSwitch2610PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 29 - ] - }, - "hpSwitch2610PPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 30 - ] - }, - "hpSwitch2510BPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 31 - ] - }, - "hpSwitch2626CPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 32 - ] - }, - "hpSwitch2650CPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 33 - ] - }, - "hpSwitch2910PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 34 - ] - }, - "hpSwitch2510GPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 35 - ] - }, - "hpSwitch2520PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 36 - ] - }, - "hpSwitch2520GPortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 37 - ] - }, - "hpSwitch2615PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 38 - ] - }, - "hpSwitch2915PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 39 - ] - }, - "hpSwitchJ9580PowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 40 - ] - }, - "hpSwitchJ9581PowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 41 - ] - }, - "hpSwitchJ9582FanTray": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 42 - ] - }, - "hpSwitch2620PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 43 - ] - }, - "hpSwitch2530PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 45 - ] - }, - "hpSwitch2920StackingSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 46 - ] - }, - "hpSwitchJ9737APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 47 - ] - }, - "hpSwitchJ9738APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 48 - ] - }, - "hpSwitchJ9739APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 49 - ] - }, - "hpSwitch2920PortSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 50 - ] - }, - "hpSwitch3800StackingSlot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 51 - ] - }, - "hpSwitchJ9828APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 52 - ] - }, - "hpSwitchJ9829APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 53 - ] - }, - "hpSwitchJ9830APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 54 - ] - }, - "hpSwitchJ9831AFanTray": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 55 - ] - }, - "hpSwitchJ9832AFanTray": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 56 - ] - }, - "hpSwitchJ9805APowerSupply": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 57 - ] - }, - "hpSwitchJ9806APowerCable": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSlots", - 58 - ] - }, - "hpicfHubPorts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 8 - ] - }, - "hpAdvStkEnetSHExtPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 1 - ] - }, - "hpAdvStkEnetSHIntPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 2 - ] - }, - "hpAdvStkEnetSHAgentPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 3 - ] - }, - "hp10BaseTHubPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 4 - ] - }, - "hp10BaseTHubAgentPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 5 - ] - }, - "hp10T100THubPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 6 - ] - }, - "hp100BaseTHubAgentPort": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfHubPorts", - 7 - ] - }, - "hpicfEnetChipSets": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 9 - ] - }, - "hpicfEnetChipSetHydra": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfEnetChipSets", - 1 - ] - }, - "hpicfEnetChipSetGT48001": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfEnetChipSets", - 2 - ] - }, - "hpicfEnetChipSetPentagon": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfEnetChipSets", - 3 - ] - }, - "hpicfSwitchPorts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 10 - ] - }, - "hpicfSwitchPort10T100TX": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 1 - ] - }, - "hpicfSwitchPort100FX": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 2 - ] - }, - "hpicfSwitchPort10FL": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 3 - ] - }, - "hpicfSwitchPort1000SX": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 4 - ] - }, - "hpicfSwitchPort10T": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 5 - ] - }, - "hpicfSwitchPort1000LX": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 6 - ] - }, - "hpicfSwitchPort1000T": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 7 - ] - }, - "hpicfSwitchPort1000Stk": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 8 - ] - }, - "hpicfSwitchPort1000LH": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 9 - ] - }, - "hpicfSwitchPort10GigBaseCX4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 10 - ] - }, - "hpicfSwitchPort1000ESP": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 11 - ] - }, - "hpicfSwitchPort10GigBaseSR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 12 - ] - }, - "hpicfSwitchPort10GigBaseER": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 13 - ] - }, - "hpicfSwitchPort10GigBaseLR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 14 - ] - }, - "hpicfSwitchPort100GEN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 15 - ] - }, - "hpicfSwitchPort1000GEN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 16 - ] - }, - "hpicfSwitchPort10GigBaseGEN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 17 - ] - }, - "hpicfSwitchPort100BXD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 18 - ] - }, - "hpicfSwitchPort100BXU": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 19 - ] - }, - "hpicfSwitchPort1000BXD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 20 - ] - }, - "hpicfSwitchPort1000BXU": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 21 - ] - }, - "hpicfSwitchPort10GigBaseLRM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 22 - ] - }, - "hpicfSwitchPortSFPplusSR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 23 - ] - }, - "hpicfSwitchPortSFPplusLR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 24 - ] - }, - "hpicfSwitchPortSFPplusLRM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 25 - ] - }, - "hpicfSwitchPortSFPplusDAC": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 26 - ] - }, - "hpicfSwitchPortSFPplusDA1": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 27 - ] - }, - "hpicfSwitchPortSFPplusDA2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 28 - ] - }, - "hpicfSwitchPortSFPplusDA3": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 29 - ] - }, - "hpicfSwitchPortSFPplusDA5": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 30 - ] - }, - "hpicfSwitchPortSFPplusDA7": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 31 - ] - }, - "hpicfSwitchPortSFPplusDA10": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 32 - ] - }, - "hpicfSwitchPortSFPplusDA15": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 33 - ] - }, - "hpicfSwitchPortSFPplusDA20": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 34 - ] - }, - "hpicfSwitchPort10GigBaseT": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 35 - ] - }, - "hpicfSwitchPort10GigBaseTSH": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 36 - ] - }, - "hpicfSwitchPort10GigBaseTLH": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 37 - ] - }, - "hpicfSwitchPort10GigBaseSTK": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 38 - ] - }, - "hpicfSwitchPort1000CWDM1470": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 39 - ] - }, - "hpicfSwitchPort1000CWDM1490": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 40 - ] - }, - "hpicfSwitchPort1000CWDM1510": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 41 - ] - }, - "hpicfSwitchPort1000CWDM1530": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 42 - ] - }, - "hpicfSwitchPort1000CWDM1550": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 43 - ] - }, - "hpicfSwitchPort1000CWDM1570": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 44 - ] - }, - "hpicfSwitchPort1000CWDM1590": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 45 - ] - }, - "hpicfSwitchPort1000CWDM1610": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 46 - ] - }, - "hpicfSwitchPort10GigCWDM1470": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 47 - ] - }, - "hpicfSwitchPort10GigCWDM1490": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 48 - ] - }, - "hpicfSwitchPort10GigCWDM1510": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 49 - ] - }, - "hpicfSwitchPort10GigCWDM1530": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 50 - ] - }, - "hpicfSwitchPort10GigCWDM1550": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 51 - ] - }, - "hpicfSwitchPort10GigCWDM1570": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 52 - ] - }, - "hpicfSwitchPort10GigCWDM1590": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 53 - ] - }, - "hpicfSwitchPort10GigCWDM1611": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfSwitchPorts", - 54 - ] - }, - "hpicfMAUTypes": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "chassis", - 11 - ] - }, - "hpicfMauType1000BaseSXHD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 1 - ] - }, - "hpicfMauType1000BaseSXFD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 2 - ] - }, - "hpicfMauType1000BaseLXHD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 3 - ] - }, - "hpicfMauType1000BaseLXFD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 4 - ] - }, - "hpicfMauType1000BaseTHD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 5 - ] - }, - "hpicfMauType1000BaseTFD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 6 - ] - }, - "hpicfMauType1000BaseStkHD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 7 - ] - }, - "hpicfMauType1000BaseStkFD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 8 - ] - }, - "hpicfMauType1000BaseLHFD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 9 - ] - }, - "hpicfMauType1000BaseEspPCS": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 10 - ] - }, - "hpicfMauType1000BaseEspG": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 11 - ] - }, - "hpicfMauType10GigBaseCX4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 12 - ] - }, - "hpicfMauType10GigBaseSR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 13 - ] - }, - "hpicfMauType10GigBaseER": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 14 - ] - }, - "hpicfMauType10GigBaseLR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 15 - ] - }, - "hpicfMauType100BaseGEN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 16 - ] - }, - "hpicfMauType1000BaseGEN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 17 - ] - }, - "hpicfMauType10GigBaseGEN": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 18 - ] - }, - "hpicfMauType100BaseBXD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 19 - ] - }, - "hpicfMauType100BaseBXU": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 20 - ] - }, - "hpicfMauType1000BaseBXD": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 21 - ] - }, - "hpicfMauType1000BaseBXU": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 22 - ] - }, - "hpicfMauType10GigBaseLRM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 23 - ] - }, - "hpicfMauTypeSFPplusSR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 24 - ] - }, - "hpicfMauTypeSFPplusLR": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 25 - ] - }, - "hpicfMauTypeSFPplusLRM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 26 - ] - }, - "hpicfMauTypeSFPplusDAC": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 27 - ] - }, - "hpicfMauTypeSFPplusDA1": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 28 - ] - }, - "hpicfMauTypeSFPplusDA2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 29 - ] - }, - "hpicfMauTypeSFPplusDA3": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 30 - ] - }, - "hpicfMauTypeSFPplusDA5": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 31 - ] - }, - "hpicfMauTypeSFPplusDA7": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 32 - ] - }, - "hpicfMauTypeSFPplusDA10": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 33 - ] - }, - "hpicfMauTypeSFPplusDA15": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 34 - ] - }, - "hpicfMauTypeSFPplusDA20": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 35 - ] - }, - "hpicfMauType10GigBaseT": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 36 - ] - }, - "hpicfMauType10GigBaseTSH": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 37 - ] - }, - "hpicfMauType10GigBaseTLH": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 38 - ] - }, - "hpicfMauType10GigBaseSTK": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 39 - ] - }, - "hpicfMauType1000CWDM1470": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 40 - ] - }, - "hpicfMauType1000CWDM1490": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 41 - ] - }, - "hpicfMauType1000CWDM1510": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 42 - ] - }, - "hpicfMauType1000CWDM1530": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 43 - ] - }, - "hpicfMauType1000CWDM1550": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 44 - ] - }, - "hpicfMauType1000CWDM1570": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 45 - ] - }, - "hpicfMauType1000CWDM1590": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 46 - ] - }, - "hpicfMauType1000CWDM1610": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 47 - ] - }, - "hpicfMauType10GigCWDM1470": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 48 - ] - }, - "hpicfMauType10GigCWDM1490": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 49 - ] - }, - "hpicfMauType10GigCWDM1510": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 50 - ] - }, - "hpicfMauType10GigCWDM1530": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 51 - ] - }, - "hpicfMauType10GigCWDM1550": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 52 - ] - }, - "hpicfMauType10GigCWDM1570": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 53 - ] - }, - "hpicfMauType10GigCWDM1590": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 54 - ] - }, - "hpicfMauType10GigCWDM1610": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 55 - ] - }, - "hpicfMauType10GigBaseESP": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpicfMAUTypes", - 56 - ] - }, - "hpEtherSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netElement", - 11 - ] - }, - "hpEtherSwitchPortType": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpEtherSwitch", - 99 - ] - }, - "hpEtherSwitchPort10T": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpEtherSwitchPortType", - 1 - ] - }, - "hpEtherSwitchPort100T": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpEtherSwitchPortType", - 2 - ] - }, - "hpEtherSwitchPort100VG": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpEtherSwitchPortType", - 3 - ] - }, - "hpEtherSwitchPort100F": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpEtherSwitchPortType", - 4 - ] - }, - "hpAdvSwitch2000": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 1 - ] - }, - "hpAdvSwitch2000B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 2 - ] - }, - "hpAdvSwitch800T": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 3 - ] - }, - "hpAdvSwitch200": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 4 - ] - }, - "hpAdvSwitch208T": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpAdvSwitch200", - 1 - ] - }, - "hpAdvSwitch208VG": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpAdvSwitch200", - 2 - ] - }, - "hpAdvSwitch224T": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpAdvSwitch200", - 3 - ] - }, - "hpAdvSwitch224VG": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpAdvSwitch200", - 4 - ] - }, - "hpSwitch212M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 5 - ] - }, - "hpSwitch224M": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 6 - ] - }, - "hpSwitch8000": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 7 - ] - }, - "hpSwitch1600": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 8 - ] - }, - "hpSwitch4000": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 9 - ] - }, - "hpSwitch2400": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 10 - ] - }, - "hpSwitch2424": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 11 - ] - }, - "hpSwitch9308": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 13 - ] - }, - "hpSwitch9304": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 14 - ] - }, - "hpSwitch6308": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 15 - ] - }, - "hpSwitch6208": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 16 - ] - }, - "hpSwitchJ4819A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 17 - ] - }, - "hpSwitchJ4812A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 18 - ] - }, - "hpSwitchJ4813A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 19 - ] - }, - "hpSwitchJ4850A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 20 - ] - }, - "hpSwitchJ4815A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 21 - ] - }, - "hpSwitchJ4851A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 22 - ] - }, - "hpSwitchJ4865A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 23 - ] - }, - "hpSwitchA6713A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 24 - ] - }, - "hpSwitchA6716A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 25 - ] - }, - "hpSwitchA6717A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 26 - ] - }, - "hpSwitchJ4887A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 27 - ] - }, - "hpSwitchJ4874A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 28 - ] - }, - "hpSwitchJ4899A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 29 - ] - }, - "hpSwitchJ4902A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 30 - ] - }, - "hpSwitchJ4903A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 31 - ] - }, - "hpSwitchJ4904A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 32 - ] - }, - "hpSwitchProliant": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 33 - ] - }, - "hpSwitchJ4900A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 34 - ] - }, - "hpSwitchJ8165A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 35 - ] - }, - "hpSwitchJ8164A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 36 - ] - }, - "hpSwitchJ8130A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 37 - ] - }, - "hpSwitchJ8133A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 38 - ] - }, - "hpSwitchJ8153A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 39 - ] - }, - "hpSwitchJ8154A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 40 - ] - }, - "hpSwitchJ8155A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 41 - ] - }, - "hpSwitchJ4905A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 42 - ] - }, - "hpSwitchJ4906A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 43 - ] - }, - "hpSwitchJ4899B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 44 - ] - }, - "hpSwitchJ4900B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 45 - ] - }, - "hpSwitchJ8718A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 46 - ] - }, - "hpSwitchJ8719A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 47 - ] - }, - "hpSwitchJ8433A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 48 - ] - }, - "hpSwitchJ8474A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 49 - ] - }, - "hpSwitchJ8697A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 50 - ] - }, - "hpSwitchJ8698A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 51 - ] - }, - "hpSwitchJ8770A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 52 - ] - }, - "hpSwitchJ8773A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 53 - ] - }, - "hpSwitchJ8680A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 54 - ] - }, - "hpSwitchJ8762A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 55 - ] - }, - "hpSwitchJ8771A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 56 - ] - }, - "hpSwitchJ8772A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 57 - ] - }, - "hpSwitchJ8692A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 58 - ] - }, - "hpSwitchJ8693A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 59 - ] - }, - "hpSwitchJ8992A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 60 - ] - }, - "hpSwitchJ9019A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 61 - ] - }, - "hpSwitchJ9020A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 62 - ] - }, - "hpSwitchJ9021A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 63 - ] - }, - "hpSwitchJ9022A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 64 - ] - }, - "hpSwitchJ9028A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 65 - ] - }, - "hpSwitchJ9029A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 66 - ] - }, - "hpSwitchJ9038A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 67 - ] - }, - "hpSwitchJ9050A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 68 - ] - }, - "hpSwitchJ9049A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 69 - ] - }, - "hpSwitchJ9032A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 70 - ] - }, - "hpSwitchJ9091A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 72 - ] - }, - "hpSwitchJ9065A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 73 - ] - }, - "hpSwitchJ9079A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 74 - ] - }, - "hpSwitchJ9080A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 75 - ] - }, - "hpSwitchJ9085A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 76 - ] - }, - "hpSwitchJ9088A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 77 - ] - }, - "hpSwitchJ9087A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 78 - ] - }, - "hpSwitchJ9089A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 79 - ] - }, - "hpSwitchJ9086A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 80 - ] - }, - "hpSwitchJ9028B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 81 - ] - }, - "hpSwitchJ4900C": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 82 - ] - }, - "hpSwitchJ4899C": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 83 - ] - }, - "hpSwitchJ9146A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 84 - ] - }, - "hpSwitchJ9148A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 85 - ] - }, - "hpSwitchJ9145A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 86 - ] - }, - "hpSwitchJ9147A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 87 - ] - }, - "hpSwitchJ9279A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 88 - ] - }, - "hpSwitchJ9280A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 89 - ] - }, - "hpSwitchJ9019B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 90 - ] - }, - "hpSwitchJ9137A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 94 - ] - }, - "hpSwitchJ9138A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 95 - ] - }, - "hpSwitchJ9298A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 96 - ] - }, - "hpSwitchJ9299A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 97 - ] - }, - "hpSwitchJ9265A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 98 - ] - }, - "hpSwitchJ9263A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 100 - ] - }, - "hpSwitchJ9264A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 101 - ] - }, - "hpSwitchJ9445A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 102 - ] - }, - "hpSwitchJ9449A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 103 - ] - }, - "hpSwitchJ9450A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 104 - ] - }, - "hpSwitchJ9452A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 105 - ] - }, - "hpSwitchJ9451A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 106 - ] - }, - "hpSwitch516733-B21": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 107 - ] - }, - "hpSwitch498358-B21": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 108 - ] - }, - "hpSwitchJ9471A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 109 - ] - }, - "hpSwitchJ9473A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 110 - ] - }, - "hpSwitchJ9470A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 111 - ] - }, - "hpSwitchJ9472A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 112 - ] - }, - "hpSwitchJ9477A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 113 - ] - }, - "hpSwitchJ9310A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 114 - ] - }, - "hpSwitchJ9311A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 115 - ] - }, - "hpSwitchJ9565A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 117 - ] - }, - "hpSwitchJ9562A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 118 - ] - }, - "hpSwitchJ9573A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 119 - ] - }, - "hpSwitchJ9574A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 120 - ] - }, - "hpSwitchJ9575A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 121 - ] - }, - "hpSwitchJ9576A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 122 - ] - }, - "hpSwitchJ9584A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 123 - ] - }, - "hpSwitchJ9585A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 124 - ] - }, - "hpSwitchJ9586A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 125 - ] - }, - "hpSwitchJ9587A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 126 - ] - }, - "hpSwitchJ9588A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 127 - ] - }, - "hpSwitchJ9577A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 128 - ] - }, - "hpSwitchJ9623A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 129 - ] - }, - "hpSwitchJ9624A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 130 - ] - }, - "hpSwitchJ9625A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 131 - ] - }, - "hpSwitchJ9626A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 132 - ] - }, - "hpSwitchJ9627A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 133 - ] - }, - "hpSwitchJ9660A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 134 - ] - }, - "hpSwitchJ9772A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 136 - ] - }, - "hpSwitchJ9773A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 137 - ] - }, - "hpSwitchJ9774A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 138 - ] - }, - "hpSwitchJ9775A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 139 - ] - }, - "hpSwitchJ9776A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 140 - ] - }, - "hpSwitchJ9777A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 141 - ] - }, - "hpSwitchJ9778A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 142 - ] - }, - "hpSwitchJ9779A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 143 - ] - }, - "hpSwitchJ9780A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 144 - ] - }, - "hpSwitchJ9781A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 145 - ] - }, - "hpSwitchJ9782A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 146 - ] - }, - "hpSwitchJ9783A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 147 - ] - }, - "hpSwitchJ9802A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 150 - ] - }, - "hpSwitchJ9803A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 151 - ] - }, - "hpSwitchJ9726A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 152 - ] - }, - "hpSwitchJ9727A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 153 - ] - }, - "hpSwitchJ9728A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 154 - ] - }, - "hpSwitchJ9729A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 155 - ] - }, - "hpSwitch3800One6SFPP": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 156 - ] - }, - "hpSwitch3800One8SFPP": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 157 - ] - }, - "hpSwitchJ9833A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 158 - ] - }, - "hpSwitchJ9834A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 159 - ] - }, - "hpSwitchJ9850A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 160 - ] - }, - "hpSwitchJ9851A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 161 - ] - }, - "hpSwitchJ9853A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 163 - ] - }, - "hpSwitchJ9854A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 164 - ] - }, - "hpSwitchJ9855A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 165 - ] - }, - "hpSwitchJ9856A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpEtherSwitch", - 166 - ] - }, - "hpSwitchPortModuleET4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpAdvSwitch2000", - 1 - ] - }, - "hpSwitchPortModuleVG2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpAdvSwitch2000", - 2 - ] - }, - "hpSwitchPortModule10FL": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpAdvSwitch2000", - 3 - ] - }, - "hpSwitchPortModuleFDDI": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpAdvSwitch2000", - 4 - ] - }, - "hpSwitchPortModuleTX2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpAdvSwitch2000", - 5 - ] - }, - "hpSwitchPortModuleATM": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpAdvSwitch2000", - 6 - ] - }, - "hpSwitchPortModule100TX8": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 1 - ] - }, - "hpSwitchPortModule100FX4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 2 - ] - }, - "hpSwitchPortModule10FL4": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 3 - ] - }, - "hpSwitchPortModuleGigSX": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 4 - ] - }, - "hpSwitchPortModuleGigLX": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 5 - ] - }, - "hpSwitchPortModuleTwoGig": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 6 - ] - }, - "hpSwitchPortModuleGigStk": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 7 - ] - }, - "hpSwitchPortModuleGigT": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitch8000", - 8 - ] - }, - "hpSwitchPortModuleJ4820A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 1 - ] - }, - "hpSwitchPortModuleJ4821A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 2 - ] - }, - "hpSwitchPortModuleJ4878A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 3 - ] - }, - "hpSwitchModuleJ4852A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 4 - ] - }, - "hpSwitchModuleJ8161A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 5 - ] - }, - "hpSwitchModuleJ4907A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 6 - ] - }, - "hpSwitchModuleJ8162A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 7 - ] - }, - "hpSwitchPortModuleJ4820B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 8 - ] - }, - "hpSwitchPortModuleJ4821B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 9 - ] - }, - "hpSwitchPortModuleJ4878B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 10 - ] - }, - "hpSwitchModuleJ9001A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 11 - ] - }, - "hpSwitchModuleJ9003A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 12 - ] - }, - "hpSwitchModuleJ8988A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4819A", - 13 - ] - }, - "hpSwitchModuleJ4812A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4812A", - 1 - ] - }, - "hpSwitchModuleJ4813A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4813A", - 1 - ] - }, - "hpSwitchModuleJ4862A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 1 - ] - }, - "hpSwitchModuleJ4863A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 2 - ] - }, - "hpSwitchModuleJ4864A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 3 - ] - }, - "hpSwitchModuleJ4862B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 4 - ] - }, - "hpSwitchModuleJ4893A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 5 - ] - }, - "hpSwitchModuleJ4892A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 6 - ] - }, - "hpSwitchModuleJ4908A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4865A", - 7 - ] - }, - "hpSwitchModuleJ4899B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4899B", - 1 - ] - }, - "hpSwitchModuleJ4900B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4900B", - 1 - ] - }, - "hpSwitchModuleJ4903A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4903A", - 1 - ] - }, - "hpSwitchModuleJ8434A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4903A", - 2 - ] - }, - "hpSwitchModuleJ8435A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4903A", - 3 - ] - }, - "hpSwitchModuleJ4904A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4904A", - 1 - ] - }, - "hpSwitchModuleJ8762A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8762A", - 1 - ] - }, - "hpSwitchModuleJ4905A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4905A", - 1 - ] - }, - "hpSwitchModuleJ4906A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4906A", - 1 - ] - }, - "hpSwitchModuleJ8433A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8433A", - 1 - ] - }, - "hpSwitchModuleJ8474A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8474A", - 1 - ] - }, - "hpSwitchModuleJ8701A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 1 - ] - }, - "hpSwitchModuleJ8702A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 2 - ] - }, - "hpSwitchModuleJ8705A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 3 - ] - }, - "hpSwitchModuleJ8706A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 4 - ] - }, - "hpSwitchModuleJ8707A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 5 - ] - }, - "hpSwitchModuleJ8708A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 6 - ] - }, - "hpSwitchModuleJ87xxA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 7 - ] - }, - "hpSwitchModuleJ87yyA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 8 - ] - }, - "hpSwitchModuleJ8694A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 9 - ] - }, - "hpSwitchModuleJ8726A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 10 - ] - }, - "hpSwitchModuleJ90xxA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9050A", - 11 - ] - }, - "hpSwitchModuleJ90yyA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9050A", - 12 - ] - }, - "hpSwitchModuleJ90zzA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9050A", - 13 - ] - }, - "hpSwitchModuleJ9051A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 14 - ] - }, - "hpSwitchModuleJ9052A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 15 - ] - }, - "hpSwitchModuleJ9154A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 16 - ] - }, - "hpSwitchModuleJ9155A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 17 - ] - }, - "hpSwitchModuleJ9446A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 18 - ] - }, - "hpSwitchModuleJ9307A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 19 - ] - }, - "hpSwitchModuleJ9308A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 20 - ] - }, - "hpSwitchModuleJ9478A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 21 - ] - }, - "hpSwitchModuleJ9309A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 22 - ] - }, - "hpSwitchModuleJ9312A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 23 - ] - }, - "hpSwitchModuleJ9534A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 24 - ] - }, - "hpSwitchModuleJ9535A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 25 - ] - }, - "hpSwitchModuleJ9536A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 26 - ] - }, - "hpSwitchModuleJ9537A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 27 - ] - }, - "hpSwitchModuleJ9538A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 28 - ] - }, - "hpSwitchModuleJ9546A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 29 - ] - }, - "hpSwitchModuleJ9547A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 30 - ] - }, - "hpSwitchModuleJ9548A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 31 - ] - }, - "hpSwitchModuleJ9549A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 32 - ] - }, - "hpSwitchModuleJ9550A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 33 - ] - }, - "hpSwitchAdvServicesModule": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 34 - ] - }, - "hpSwitchExtServicesModule": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 35 - ] - }, - "hpSwitchModuleJ9485A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 36 - ] - }, - "hpSwitchModuleJ9637A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8697A", - 37 - ] - }, - "hpSwitchModuleJ8765A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 1 - ] - }, - "hpSwitchModuleJ8764A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 2 - ] - }, - "hpSwitchModuleJ8776A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 3 - ] - }, - "hpSwitchModuleJ8763A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 4 - ] - }, - "hpSwitchModuleJ8768A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 5 - ] - }, - "hpSwitchModuleJ9033A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 6 - ] - }, - "hpSwitchModuleJ8765B": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 8 - ] - }, - "hpSwitchModuleJ8766A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8770A", - 10 - ] - }, - "hpSwitchModuleJ9021A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9021A", - 1 - ] - }, - "hpSwitchModuleJ9022A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9022A", - 1 - ] - }, - "hpSwitchModuleJ9019A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9019A", - 1 - ] - }, - "hpSwitchModuleJ9020A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9020A", - 1 - ] - }, - "hpSwitchModuleJ9085A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9085A", - 1 - ] - }, - "hpSwitchModuleJ9088A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9088A", - 1 - ] - }, - "hpSwitchModuleJ9087A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9087A", - 1 - ] - }, - "hpSwitchModuleJ9089A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9089A", - 1 - ] - }, - "hpSwitchModuleJ9086A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9086A", - 1 - ] - }, - "hpSwitchModuleJ9279A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9279A", - 1 - ] - }, - "hpSwitchModuleJ9280A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9280A", - 1 - ] - }, - "hpSwitchModuleJ9726A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9726A", - 1 - ] - }, - "hpSwitchModuleJ9727A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9727A", - 1 - ] - }, - "hpSwitchModuleJ9728A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9728A", - 1 - ] - }, - "hpSwitchModuleJ9729A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9729A", - 1 - ] - }, - "hpSwitchModuleJ9147A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9147A", - 1 - ] - }, - "hpSwitchModuleJ9145A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9145A", - 1 - ] - }, - "hpSwitchModuleJ9148A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9148A", - 1 - ] - }, - "hpSwitchModuleJ9146A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9146A", - 1 - ] - }, - "hpSwitchModuleJ9149A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9146A", - 2 - ] - }, - "hpSwitchModuleJ9008A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9146A", - 3 - ] - }, - "hpSwitchModuleJ9165A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9146A", - 4 - ] - }, - "hpSwitchModuleJ9137A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9137A", - 1 - ] - }, - "hpSwitchModuleJ9138A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9138A", - 1 - ] - }, - "hpSwitchModuleJ9298A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9298A", - 1 - ] - }, - "hpSwitchModuleJ9299A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9299A", - 1 - ] - }, - "hpSwitchModuleJ9577A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9577A", - 1 - ] - }, - "hpSwitchModuleJ9573": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9573A", - 1 - ] - }, - "hpSwitchModuleJ9574x": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9574A", - 1 - ] - }, - "hpSwitchModuleJ9574y": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9574A", - 2 - ] - }, - "hpSwitchModuleJ9575": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9575A", - 1 - ] - }, - "hpSwitchModuleJ9576x": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9576A", - 1 - ] - }, - "hpSwitchModuleJ9576y": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9576A", - 2 - ] - }, - "hpSwitchModuleJ9584": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9584A", - 1 - ] - }, - "hpSwitchModuleJ9585": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9585A", - 1 - ] - }, - "hpSwitchModuleJ9586x": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9586A", - 1 - ] - }, - "hpSwitchModuleJ9586y": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9586A", - 2 - ] - }, - "hpSwitchModuleJ9587": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9587A", - 1 - ] - }, - "hpSwitchModuleJ9588x": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9588A", - 1 - ] - }, - "hpSwitchModuleJ9588y": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9588A", - 2 - ] - }, - "hpSwitchModuleJ94xxA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9472A", - 1 - ] - }, - "hpSwitchModuleJ94xyA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9472A", - 2 - ] - }, - "hpSwitchModuleJ94yxA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9473A", - 1 - ] - }, - "hpSwitchModuleJ94yyA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9473A", - 2 - ] - }, - "hpSwitchModuleJ93aaA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9311A", - 1 - ] - }, - "hpSwitchModuleJ93bbA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9311A", - 2 - ] - }, - "hpSwitchModuleJ9565A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9565A", - 1 - ] - }, - "hpSwitchModuleJ9562A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9562A", - 1 - ] - }, - "hpSwitchModuleJ9623A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9623A", - 1 - ] - }, - "hpSwitchModuleJ9624A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9624A", - 1 - ] - }, - "hpSwitchModuleJ9625A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9625A", - 1 - ] - }, - "hpSwitchModuleJ9626A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9626A", - 1 - ] - }, - "hpSwitchModuleJ9627A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9627A", - 1 - ] - }, - "hpSwitchModuleJ9772A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9772A", - 1 - ] - }, - "hpSwitchModuleJ9773A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9773A", - 1 - ] - }, - "hpSwitchModuleJ9774A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9774A", - 1 - ] - }, - "hpSwitchModuleJ9775A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9775A", - 1 - ] - }, - "hpSwitchModuleJ9776A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9776A", - 1 - ] - }, - "hpSwitchModuleJ9777A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9777A", - 1 - ] - }, - "hpSwitchModuleJ9778A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9778A", - 1 - ] - }, - "hpSwitchModuleJ9779A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9779A", - 1 - ] - }, - "hpSwitchModuleJ9780A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9780A", - 1 - ] - }, - "hpSwitchModuleJ9781A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9781A", - 1 - ] - }, - "hpSwitchModuleJ9782A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9782A", - 1 - ] - }, - "hpSwitchModuleJ9783A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9783A", - 1 - ] - }, - "hpSwitchModuleJ9853A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9853A", - 1 - ] - }, - "hpSwitchModuleJ9854A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9854A", - 1 - ] - }, - "hpSwitchModuleJ9855A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9855A", - 1 - ] - }, - "hpSwitchModuleJ9856A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9856A", - 1 - ] - }, - "hpSwitchModuleJ9730A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9729A", - 2 - ] - }, - "hpSwitchModuleJ9731A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9729A", - 3 - ] - }, - "hpSwitchModuleJ9732A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9729A", - 4 - ] - }, - "hpSwitchModuleJ9733A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9729A", - 5 - ] - }, - "hpWANRouters": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfWAN", - 1 - ] - }, - "hpWANModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpicfWAN", - 2 - ] - }, - "hpSRJ8751A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANRouters", - 1 - ] - }, - "hpSRJ8752A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANRouters", - 2 - ] - }, - "hpSRJ8753A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANRouters", - 3 - ] - }, - "hpSRJ8754A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANRouters", - 4 - ] - }, - "hpSRmoduleJ8451A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 1 - ] - }, - "hpSRmoduleJ8452A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 2 - ] - }, - "hpSRmoduleJ8453A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 3 - ] - }, - "hpSRmoduleJ8454A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 4 - ] - }, - "hpSRmoduleJ8455A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 5 - ] - }, - "hpSRmoduleJ8456A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 6 - ] - }, - "hpSRmoduleJ8457A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 7 - ] - }, - "hpSRmoduleJ8458A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 8 - ] - }, - "hpSRmoduleJ8459A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 9 - ] - }, - "hpSRmoduleJ8759A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 10 - ] - }, - "hpSRmoduleJ8460A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 11 - ] - }, - "hpSRmoduleJ8461A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 12 - ] - }, - "hpSRmoduleJ8462A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 13 - ] - }, - "hpSRmoduleJ8463A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 14 - ] - }, - "hpSRmoduleJ8464A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 15 - ] - }, - "hpSRmoduleJ8465A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 16 - ] - }, - "hpSRmoduleJ8471A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 17 - ] - }, - "hpSRmoduleJ8472A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpWANModules", - 18 - ] - }, - "hpSRPowerSupply8756A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSRJ8754A", - 1 - ] - }, - "hpManagementModuleJ9092A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9091A", - 1 - ] - }, - "hpFabricModuleJ9093A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9091A", - 2 - ] - }, - "hpSSMModuleJ8784A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9091A", - 3 - ] - }, - "hpSwitchModuleJ92yyA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9265A", - 1 - ] - }, - "hpSwitchModuleJ92xxA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9265A", - 2 - ] - }, - "hpSwitchModuleJ92wwA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9265A", - 3 - ] - }, - "hpSwitchModuleJ92vvA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9265A", - 4 - ] - }, - "hpSwitchModuleJ92uuA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9265A", - 5 - ] - }, - "hpSwitchModuleJ92ttA": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ9265A", - 6 - ] - }, - "hpSwitchModuleJ4899A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4899A", - 1 - ] - }, - "hpSwitchModuleJ4902A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4902A", - 1 - ] - }, - "hpSwitchModuleJ4900A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4900A", - 1 - ] - }, - "hpSwitchModuleJ8165A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8165A", - 1 - ] - }, - "hpSwitchModuleJ8164A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ8164A", - 1 - ] - }, - "hpSwitchModuleJ4899C": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4899C", - 1 - ] - }, - "hpSwitchModuleJ4900C": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchJ4900C", - 1 - ] - }, - "hpSwitchModuleA6713A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchA6713A", - 11 - ] - }, - "hpSwitchModuleA6716A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchA6716A", - 12 - ] - }, - "hpSwitchModuleA6717A": { - "tp": "OBJECT-IDENTITY", - "value": [ - "hpSwitchA6717A", - 13 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/HP-ICF-TC.json b/mibs/parsed/HP-ICF-TC.json deleted file mode 100644 index 7a7ef84..0000000 --- a/mibs/parsed/HP-ICF-TC.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ], - [ - "HP-ICF-OID", - [ - "hpicfAdmin" - ] - ] - ], - "hpicfTextualConventions": { - "tp": "MODULE-IDENTITY", - "value": [ - "hpicfAdmin", - 4 - ] - }, - "ConfigStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "notInService", - "3": "notReady" - } - }, - "display_hint": null - }, - "HpSwitchPortType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "unknown", - "6": "ethernetCsmacd", - "7": "iso88023Csmacd", - "15": "fddi", - "37": "atm", - "54": "propMultiplexor", - "55": "ieee80212", - "62": "fastEther", - "69": "fastEtherFX", - "70": "fastEtherFX-sfp", - "112": "tenGSFP-SR", - "113": "tenGSFP-LR", - "114": "tenGSFP-ER", - "115": "tenGSFP-LRM", - "116": "tenGSFP-LX4", - "117": "gigabitEthernetSX", - "118": "gigabitEthernetLX", - "119": "gigabitEthernetT", - "120": "gigabitEthernetStk", - "121": "gigabitEthernetLH", - "122": "tenGbE-CX4", - "123": "gigabitEthernetESP", - "124": "tenGbE-SR", - "125": "tenGbE-ER", - "126": "tenGbE-LR", - "127": "gigabitEthernetT-sfp", - "128": "fastEtherGEN", - "129": "gigabitEthernetGEN", - "130": "tenGbE-GEN", - "131": "fastEtherBX-D", - "132": "fastEtherBX-U", - "133": "gigabitEthernetBX-D", - "134": "gigabitEthernetBX-U", - "135": "tenGbE-LRM", - "136": "sFP-PLUS-SR", - "137": "sFP-PLUS-LR", - "138": "sFP-PLUS-LRM", - "139": "sFP-PLUS-DAC", - "140": "sFP-PLUS-DA1", - "141": "sFP-PLUS-DA2", - "142": "sFP-PLUS-DA3", - "143": "sFP-PLUS-DA5", - "144": "sFP-PLUS-DA7", - "145": "sFP-PLUS-DA10", - "146": "sFP-PLUS-DA15", - "147": "sFP-PLUS-DA20", - "148": "tenGbE-T", - "149": "tenGbE-TSH", - "150": "tenGbE-TLH", - "151": "tenGbE-STK", - "152": "xFP-SFP-PLUS-DAC", - "153": "xFP-SFP-PLUS-DA1", - "154": "xFP-SFP-PLUS-DA3", - "155": "xFP-SFP-PLUS-DA5", - "156": "xFP-SFP-PLUS-DA7", - "157": "xFP-SFP-PLUS-DA10", - "158": "tenGbE-K", - "160": "sFP-PLUS-ER", - "161": "sFP-CWDM1470", - "162": "sFP-CWDM1490", - "163": "sFP-CWDM1510", - "164": "sFP-CWDM1530", - "165": "sFP-CWDM1550", - "166": "sFP-CWDM1570", - "167": "sFP-CWDM1590", - "168": "sFP-CWDM1610" - } - }, - "display_hint": null - }, - "VidList": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": "512x" - } -} \ No newline at end of file diff --git a/mibs/parsed/IDRAC-MIB-SMIv2.json b/mibs/parsed/IDRAC-MIB-SMIv2.json deleted file mode 100644 index d30d961..0000000 --- a/mibs/parsed/IDRAC-MIB-SMIv2.json +++ /dev/null @@ -1,8389 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Counter32", - "Integer32", - "TimeTicks", - "NOTIFICATION-TYPE", - "OBJECT-IDENTITY", - "enterprises" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ] - ], - "outOfBandGroup": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 674, - 10892, - 5 - ] - }, - "informationGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "outOfBandGroup", - 1 - ] - }, - "racInfoGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "informationGroup", - 1 - ] - }, - "chassisInfoGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "informationGroup", - 2 - ] - }, - "systemInfoGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "informationGroup", - 3 - ] - }, - "statusGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "outOfBandGroup", - 2 - ] - }, - "alertGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "outOfBandGroup", - 3 - ] - }, - "alertVariablesGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertGroup", - 1 - ] - }, - "alertTrapGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertGroup", - 2 - ] - }, - "systemAlertTrapGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertTrapGroup", - 1 - ] - }, - "storageAlertTrapGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertTrapGroup", - 2 - ] - }, - "updatesAlertTrapGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertTrapGroup", - 3 - ] - }, - "auditAlertTrapGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertTrapGroup", - 4 - ] - }, - "configurationAlertTrapGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "alertTrapGroup", - 5 - ] - }, - "systemDetailsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "outOfBandGroup", - 4 - ] - }, - "mIBVersionGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 1 - ] - }, - "systemStateGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 200 - ] - }, - "chassisInformationGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 300 - ] - }, - "powerGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 600 - ] - }, - "thermalGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 700 - ] - }, - "deviceGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 1100 - ] - }, - "slotGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 1200 - ] - }, - "fruGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemDetailsGroup", - 2000 - ] - }, - "storageDetailsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "outOfBandGroup", - 5 - ] - }, - "software": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storageDetailsGroup", - 1 - ] - }, - "storageManagement": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "software", - 20 - ] - }, - "physicalDevices": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storageManagement", - 130 - ] - }, - "logicalDevices": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storageManagement", - 140 - ] - }, - "StringType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "String64": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "FQDDString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "SecurityString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "MACAddress": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "ObjectRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "Unsigned8BitRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "Unsigned16BitRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "Unsigned32BitRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "Signed32BitRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "BooleanType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER" - }, - "display_hint": null - }, - "Unsigned64BitRange": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "DateName": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "StateCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknownCapabilities", - "2": "enableCapable", - "4": "notReadyCapable", - "6": "enableAndNotReadyCapable" - } - }, - "display_hint": null - }, - "StateSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "4": "notReady", - "6": "enabledAndNotReady" - } - }, - "display_hint": null - }, - "ProbeCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upperNonCriticalThresholdSetCapable", - "2": "lowerNonCriticalThresholdSetCapable", - "4": "upperNonCriticalThresholdDefaultCapable", - "8": "lowerNonCriticalThresholdDefaultCapable" - } - }, - "display_hint": null - }, - "StatusProbeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "ok", - "4": "nonCriticalUpper", - "5": "criticalUpper", - "6": "nonRecoverableUpper", - "7": "nonCriticalLower", - "8": "criticalLower", - "9": "nonRecoverableLower", - "10": "failed" - } - }, - "display_hint": null - }, - "StatusRedundancyEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "full", - "4": "degraded", - "5": "lost", - "6": "notRedundant", - "7": "redundancyOffline" - } - }, - "display_hint": null - }, - "ObjectStatusEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "ok", - "4": "nonCritical", - "5": "critical", - "6": "nonRecoverable" - } - }, - "display_hint": null - }, - "RacTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "16": "idrac7monolithic", - "17": "idrac7modular" - } - }, - "display_hint": null - }, - "SystemFormFactorEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "u1", - "4": "u2", - "5": "u4", - "6": "u7", - "7": "singleWidthSingleHeight", - "8": "dualWidthSingleHeight", - "9": "singleWidthDualHeight", - "10": "dualWidthDualHeight", - "11": "singleWidthQuarterHeight", - "12": "u5" - } - }, - "display_hint": null - }, - "BladeGeometryEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "singleWidthSingleHeight", - "4": "dualWidthSingleHeight", - "5": "singleWidthDualHeight", - "6": "dualWidthDualHeight", - "7": "singleWidthQuarterHeight" - } - }, - "display_hint": null - }, - "PowerStateStatusEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "off", - "4": "on" - } - }, - "display_hint": null - }, - "racName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 1 - ] - }, - "racShortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 2 - ] - }, - "racDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 3 - ] - }, - "racManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 4 - ] - }, - "racVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 5 - ] - }, - "racURL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 6 - ] - }, - "racType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RacTypeEnum" - }, - "index": null, - "value": [ - "racInfoGroup", - 7 - ] - }, - "racFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "racInfoGroup", - 8 - ] - }, - "chassisServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "chassisInfoGroup", - 1 - ] - }, - "systemFQDN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 1 - ] - }, - "systemServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 2 - ] - }, - "systemExpressServiceCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 3 - ] - }, - "systemAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 4 - ] - }, - "systemBladeSlotNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 5 - ] - }, - "systemOSName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 6 - ] - }, - "systemFormFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemFormFactorEnum" - }, - "index": null, - "value": [ - "systemInfoGroup", - 7 - ] - }, - "systemDataCenterName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 8 - ] - }, - "systemAisleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 9 - ] - }, - "systemRackName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 10 - ] - }, - "systemRackSlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 11 - ] - }, - "systemModelName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 12 - ] - }, - "systemSystemID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "systemInfoGroup", - 13 - ] - }, - "systemOSVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 14 - ] - }, - "systemRoomName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "systemInfoGroup", - 15 - ] - }, - "systemChassisSystemHeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "systemInfoGroup", - 16 - ] - }, - "systemBladeGeometry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BladeGeometryEnum" - }, - "index": null, - "value": [ - "systemInfoGroup", - 17 - ] - }, - "globalSystemStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "statusGroup", - 1 - ] - }, - "systemLCDStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "statusGroup", - 2 - ] - }, - "globalStorageStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "statusGroup", - 3 - ] - }, - "systemPowerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerStateStatusEnum" - }, - "index": null, - "value": [ - "statusGroup", - 4 - ] - }, - "alertMessageID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 1 - ] - }, - "alertMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 2 - ] - }, - "alertCurrentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 3 - ] - }, - "alertSystemServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 4 - ] - }, - "alertSystemFQDN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 5 - ] - }, - "alertFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 6 - ] - }, - "alertDeviceDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 7 - ] - }, - "alertMessageArguments": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StringType" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 8 - ] - }, - "alertChassisServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alertVariablesGroup", - 9 - ] - }, - "mIBMajorVersionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "mIBVersionGroup", - 1 - ] - }, - "mIBMinorVersionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "mIBVersionGroup", - 2 - ] - }, - "mIBMaintenanceVersionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "mIBVersionGroup", - 3 - ] - }, - "SystemStateTableEntry": { - "tp": "SEQUENCE" - }, - "systemStateTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SystemStateTableEntry" - }, - "index": null, - "value": [ - "systemStateGroup", - 10 - ] - }, - "systemStateTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemStateTableEntry" - }, - "index": [ - "systemStatechassisIndex" - ], - "value": [ - "systemStateTable", - 1 - ] - }, - "systemStatechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 1 - ] - }, - "systemStateGlobalSystemStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 2 - ] - }, - "systemStateChassisState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 3 - ] - }, - "systemStateChassisStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 4 - ] - }, - "systemStatePowerUnitStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 5 - ] - }, - "systemStatePowerUnitStatusRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusRedundancyEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 6 - ] - }, - "systemStatePowerUnitStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 7 - ] - }, - "systemStatePowerSupplyStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 8 - ] - }, - "systemStatePowerSupplyStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 9 - ] - }, - "systemStatePowerSupplyStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 10 - ] - }, - "systemStateVoltageStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 11 - ] - }, - "systemStateVoltageStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 12 - ] - }, - "systemStateVoltageStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 13 - ] - }, - "systemStateAmperageStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 14 - ] - }, - "systemStateAmperageStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 15 - ] - }, - "systemStateAmperageStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 16 - ] - }, - "systemStateCoolingUnitStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 17 - ] - }, - "systemStateCoolingUnitStatusRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusRedundancyEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 18 - ] - }, - "systemStateCoolingUnitStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 19 - ] - }, - "systemStateCoolingDeviceStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 20 - ] - }, - "systemStateCoolingDeviceStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 21 - ] - }, - "systemStateCoolingDeviceStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 22 - ] - }, - "systemStateTemperatureStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 23 - ] - }, - "systemStateTemperatureStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 24 - ] - }, - "systemStateTemperatureStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 25 - ] - }, - "systemStateMemoryDeviceStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 26 - ] - }, - "systemStateMemoryDeviceStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 27 - ] - }, - "systemStateMemoryDeviceStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 28 - ] - }, - "systemStateChassisIntrusionStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 29 - ] - }, - "systemStateChassisIntrusionStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 30 - ] - }, - "systemStateChassisIntrusionStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 31 - ] - }, - "systemStatePowerUnitStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 42 - ] - }, - "systemStatePowerUnitStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 43 - ] - }, - "systemStateCoolingUnitStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 44 - ] - }, - "systemStateCoolingUnitStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 45 - ] - }, - "systemStateProcessorDeviceStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 50 - ] - }, - "systemStateProcessorDeviceStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 51 - ] - }, - "systemStateBatteryStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 52 - ] - }, - "systemStateBatteryStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 53 - ] - }, - "systemStateSDCardUnitStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 54 - ] - }, - "systemStateSDCardUnitStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 55 - ] - }, - "systemStateSDCardDeviceStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 56 - ] - }, - "systemStateSDCardDeviceStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 57 - ] - }, - "systemStateIDSDMCardUnitStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 58 - ] - }, - "systemStateIDSDMCardUnitStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 59 - ] - }, - "systemStateIDSDMCardDeviceStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 60 - ] - }, - "systemStateIDSDMCardDeviceStatusList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 61 - ] - }, - "systemStateTemperatureStatisticsStateDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 62 - ] - }, - "systemStateTemperatureStatisticsStatusCombined": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 63 - ] - }, - "systemStateTemperatureStatisticsStatusDetails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "systemStateTableEntry", - 64 - ] - }, - "StateCapabilitiesLogUniqueFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "onlineCapable", - "4": "notReadyCapable", - "8": "resetCapable" - } - }, - "display_hint": null - }, - "StateSettingsLogUniqueFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "online", - "4": "notReady", - "8": "reset" - } - }, - "display_hint": null - }, - "LogFormatType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "raw", - "2": "ascii", - "3": "uniCode" - } - }, - "display_hint": null - }, - "numEventLogEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 1 - ] - }, - "numLCLogEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 2 - ] - }, - "ChassisTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "desktop", - "4": "lowProfileDesktop", - "5": "pizzaBox", - "6": "miniTower", - "7": "tower", - "8": "portable", - "9": "lapTop", - "10": "noteBook", - "11": "handHeld", - "12": "dockingStation", - "13": "allInOne", - "14": "subNoteBook", - "15": "spaceSaving", - "16": "lunchBox", - "17": "mainSystemChassis", - "18": "expansionChassis", - "19": "subChassis", - "20": "busExpansionChassis", - "21": "peripheralChassis", - "22": "raidChassis", - "23": "rackMountChassis", - "24": "sealedCasePC", - "25": "multiSystemChassis" - } - }, - "display_hint": null - }, - "ChassisSystemClassEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "workstationClass", - "4": "serverClass", - "5": "desktopClass", - "6": "portableClass", - "7": "netPCClass", - "8": "storageClass" - } - }, - "display_hint": null - }, - "LEDControlCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "alertOnErrorCapable", - "4": "alertOnWarningAndErrorCapable", - "6": "alertOnWarningOrErrorCapable" - } - }, - "display_hint": null - }, - "LEDControlSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "alertOnError", - "4": "alertOnWarningAndError" - } - }, - "display_hint": null - }, - "ChassisIdentifyControlCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknownCapabilities", - "2": "enableCapable", - "4": "notReadyCapable", - "8": "identifyCapable" - } - }, - "display_hint": null - }, - "ChassisIdentifyControlSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "4": "notReady", - "8": "identifyChassis", - "10": "identifyChassisAndEnable" - } - }, - "display_hint": null - }, - "HostControlCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "manualRebootCapable", - "2": "manualPowerOFFCapable", - "4": "manualPowerCycleCapable", - "7": "manualAllExceptOperatingSystemShutdownCapable", - "8": "manualOperatingSystemShutdownCapable", - "15": "manualFullyCapable", - "16": "manualRebootWithOSShutdownCapable", - "32": "manualRebootWithoutOSShutdownCapable", - "64": "manualPowerOffWithOSShutdownCapable", - "128": "manualPowerOffWithoutOSShutdownCapable", - "256": "manualPowerCycleWithOSShutdownCapable", - "512": "manualPowerCycleWithoutOSShutdownCapable" - } - }, - "display_hint": null - }, - "HostControlSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "manualReboot", - "2": "manualPowerOFF", - "4": "manualPowerCycle", - "8": "manualOperatingSystemShutdown", - "9": "manualOperatingSystemShutdownThenReboot", - "10": "manualOperatingSystemShutdownThenPowerOFF", - "12": "manualOperatingSystemShutdownThenPowerCycle" - } - }, - "display_hint": null - }, - "WatchDogControlCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automaticRebootCapable", - "2": "automaticPowerCycleCapable", - "4": "automaticNotificationCapable", - "8": "automaticWatchDogTimerCapable", - "16": "automaticPowerOffCapable", - "27": "automaticAllExceptNotificationCapable", - "31": "automaticFullyCapable" - } - }, - "display_hint": null - }, - "WatchControlSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automaticRebootEnabled", - "2": "automaticPowerCycleEnabled", - "4": "automaticNotificationEnabled", - "8": "automaticPowerOffEnabled" - } - }, - "display_hint": null - }, - "WatchDogTimerCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "type1Capable", - "2": "type2Capable", - "4": "type3Capable" - } - }, - "display_hint": null - }, - "PowerButtonControlCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknownCapabilities", - "2": "enableCapable" - } - }, - "display_hint": null - }, - "PowerButtonControlSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "4": "disabled" - } - }, - "display_hint": null - }, - "NMIButtonControlCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknownCapabilities", - "2": "enableCapable" - } - }, - "display_hint": null - }, - "NMIButtonControlSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "4": "disabled" - } - }, - "display_hint": null - }, - "SystemPropertiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "energySmart" - } - }, - "display_hint": null - }, - "ChassisInformationTableEntry": { - "tp": "SEQUENCE" - }, - "chassisInformationTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ChassisInformationTableEntry" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 10 - ] - }, - "chassisInformationTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ChassisInformationTableEntry" - }, - "index": [ - "chassisIndexChassisInformation" - ], - "value": [ - "chassisInformationTable", - 1 - ] - }, - "chassisIndexChassisInformation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 1 - ] - }, - "chassisStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 2 - ] - }, - "chassisStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 3 - ] - }, - "chassisStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 4 - ] - }, - "chassisparentIndexReference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 5 - ] - }, - "chassisType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ChassisTypeEnum" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 6 - ] - }, - "chassisName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 7 - ] - }, - "chassisManufacturerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 8 - ] - }, - "chassisModelTypeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 9 - ] - }, - "chassisAssetTagName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 10 - ] - }, - "chassisServiceTagName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 11 - ] - }, - "chassisID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 12 - ] - }, - "chassisIDExtension": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 13 - ] - }, - "chassisSystemClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ChassisSystemClassEnum" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 14 - ] - }, - "chassisSystemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 15 - ] - }, - "chassisLEDControlCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LEDControlCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 24 - ] - }, - "chassisLEDControlSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LEDControlSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 25 - ] - }, - "chassisIdentifyFlashControlCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ChassisIdentifyControlCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 28 - ] - }, - "chassisIdentifyFlashControlSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ChassisIdentifyControlSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 29 - ] - }, - "chassisLockPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 30 - ] - }, - "chassishostControlCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostControlCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 31 - ] - }, - "chassishostControlSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostControlSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 32 - ] - }, - "chassiswatchDogControlCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WatchDogControlCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 33 - ] - }, - "chassiswatchDogControlSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WatchControlSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 34 - ] - }, - "chassiswatchDogControlExpiryTimeCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WatchDogTimerCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 35 - ] - }, - "chassiswatchDogControlExpiryTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 36 - ] - }, - "chassisPowerButtonControlCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerButtonControlCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 38 - ] - }, - "chassisPowerButtonControlSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerButtonControlSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 39 - ] - }, - "chassisNMIButtonControlCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NMIButtonControlCapabilitiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 44 - ] - }, - "chassisNMIButtonControlSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NMIButtonControlSettingsFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 45 - ] - }, - "chassisSystemProperties": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemPropertiesFlags" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 46 - ] - }, - "chassisSystemRevisionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 47 - ] - }, - "chassisSystemRevisionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 48 - ] - }, - "chassisExpressServiceCodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "chassisInformationTableEntry", - 49 - ] - }, - "EventLogTableEntry": { - "tp": "SEQUENCE" - }, - "eventLogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EventLogTableEntry" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 40 - ] - }, - "eventLogTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EventLogTableEntry" - }, - "index": [ - "eventLogchassisIndex", - "eventLogRecordIndex" - ], - "value": [ - "eventLogTable", - 1 - ] - }, - "eventLogchassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 1 - ] - }, - "eventLogRecordIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 2 - ] - }, - "eventLogStateCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesLogUniqueFlags" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 3 - ] - }, - "eventLogStateSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsLogUniqueFlags" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 4 - ] - }, - "eventLogRecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 5 - ] - }, - "eventLogFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LogFormatType" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 6 - ] - }, - "eventLogSeverityStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 7 - ] - }, - "eventLogDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "eventLogTableEntry", - 8 - ] - }, - "SystemBIOSTableEntry": { - "tp": "SEQUENCE" - }, - "systemBIOSTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SystemBIOSTableEntry" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 50 - ] - }, - "systemBIOSTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemBIOSTableEntry" - }, - "index": [ - "systemBIOSchassisIndex", - "systemBIOSIndex" - ], - "value": [ - "systemBIOSTable", - 1 - ] - }, - "systemBIOSchassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 1 - ] - }, - "systemBIOSIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 2 - ] - }, - "systemBIOSStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 3 - ] - }, - "systemBIOSStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 4 - ] - }, - "systemBIOSStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 5 - ] - }, - "systemBIOSReleaseDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 7 - ] - }, - "systemBIOSVersionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 8 - ] - }, - "systemBIOSManufacturerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "systemBIOSTableEntry", - 11 - ] - }, - "FirmwareType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "20": "lifecycleController", - "21": "iDRAC7" - } - }, - "display_hint": null - }, - "FirmwareTableEntry": { - "tp": "SEQUENCE" - }, - "firmwareTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF FirmwareTableEntry" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 60 - ] - }, - "firmwareTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FirmwareTableEntry" - }, - "index": [ - "firmwarechassisIndex", - "firmwareIndex" - ], - "value": [ - "firmwareTable", - 1 - ] - }, - "firmwarechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 1 - ] - }, - "firmwareIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 2 - ] - }, - "firmwareStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 3 - ] - }, - "firmwareStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 4 - ] - }, - "firmwareStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 5 - ] - }, - "firmwareSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 6 - ] - }, - "firmwareType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FirmwareType" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 7 - ] - }, - "firmwareTypeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 8 - ] - }, - "firmwareUpdateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 9 - ] - }, - "firmwareVersionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "firmwareTableEntry", - 11 - ] - }, - "IntrusionReadingEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "chassisNotBreached", - "2": "chassisBreached", - "3": "chassisBreachedPrior", - "4": "chassisBreachSensorFailure" - } - }, - "display_hint": null - }, - "IntrusionTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "chassisBreachDetectionWhenPowerON", - "2": "chassisBreachDetectionWhenPowerOFF" - } - }, - "display_hint": null - }, - "IntrusionTableEntry": { - "tp": "SEQUENCE" - }, - "intrusionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IntrusionTableEntry" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 70 - ] - }, - "intrusionTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IntrusionTableEntry" - }, - "index": [ - "intrusionchassisIndex", - "intrusionIndex" - ], - "value": [ - "intrusionTable", - 1 - ] - }, - "intrusionchassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 1 - ] - }, - "intrusionIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 2 - ] - }, - "intrusionStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 3 - ] - }, - "intrusionStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 4 - ] - }, - "intrusionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 5 - ] - }, - "intrusionReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IntrusionReadingEnum" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 6 - ] - }, - "intrusionType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IntrusionTypeEnum" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 7 - ] - }, - "intrusionLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "intrusionTableEntry", - 8 - ] - }, - "LcLogCategoryEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "system", - "2": "storage", - "3": "updates", - "4": "audit", - "5": "configuration", - "6": "workNotes" - } - }, - "display_hint": null - }, - "LcLogTableEntry": { - "tp": "SEQUENCE" - }, - "lcLogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF LcLogTableEntry" - }, - "index": null, - "value": [ - "chassisInformationGroup", - 90 - ] - }, - "lcLogTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LcLogTableEntry" - }, - "index": [ - "lcLogChassisIndex", - "lcLogRecordIndex" - ], - "value": [ - "lcLogTable", - 1 - ] - }, - "lcLogChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 1 - ] - }, - "lcLogRecordIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 2 - ] - }, - "lcLogSequenceNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 3 - ] - }, - "lcLogCategory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LcLogCategoryEnum" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 4 - ] - }, - "lcLogSeverityStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 5 - ] - }, - "lcLogDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 6 - ] - }, - "lcLogFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 7 - ] - }, - "lcLogMessageID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 8 - ] - }, - "lcLogMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 9 - ] - }, - "lcLogDetailedDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 10 - ] - }, - "lcLogRecommededAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 11 - ] - }, - "lcLogComment": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "lcLogTableEntry", - 12 - ] - }, - "PowerUnitTableEntry": { - "tp": "SEQUENCE" - }, - "powerUnitTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PowerUnitTableEntry" - }, - "index": null, - "value": [ - "powerGroup", - 10 - ] - }, - "powerUnitTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerUnitTableEntry" - }, - "index": [ - "powerUnitchassisIndex", - "powerUnitIndex" - ], - "value": [ - "powerUnitTable", - 1 - ] - }, - "powerUnitchassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 1 - ] - }, - "powerUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 2 - ] - }, - "powerUnitStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 3 - ] - }, - "powerUnitStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 4 - ] - }, - "powerUnitRedundancyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusRedundancyEnum" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 5 - ] - }, - "powerSupplyCountForRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 6 - ] - }, - "powerUnitName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 7 - ] - }, - "powerUnitStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "powerUnitTableEntry", - 8 - ] - }, - "PowerSupplyStateCapabilitiesUniqueFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "onlineCapable", - "4": "notReadyCapable" - } - }, - "display_hint": null - }, - "PowerSupplyStateSettingsUniqueFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "onLine", - "4": "notReady", - "8": "fanFailure", - "10": "onlineAndFanFailure", - "16": "powerSupplyIsON", - "32": "powerSupplyIsOK", - "64": "acSwitchIsON", - "66": "onlineandAcSwitchIsON", - "128": "acPowerIsON", - "130": "onlineAndAcPowerIsON", - "210": "onlineAndPredictiveFailure", - "242": "acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline" - } - }, - "display_hint": null - }, - "PowerSupplyTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "powerSupplyTypeIsOther", - "2": "powerSupplyTypeIsUnknown", - "3": "powerSupplyTypeIsLinear", - "4": "powerSupplyTypeIsSwitching", - "5": "powerSupplyTypeIsBattery", - "6": "powerSupplyTypeIsUPS", - "7": "powerSupplyTypeIsConverter", - "8": "powerSupplyTypeIsRegulator", - "9": "powerSupplyTypeIsAC", - "10": "powerSupplyTypeIsDC", - "11": "powerSupplyTypeIsVRM" - } - }, - "display_hint": null - }, - "PowerSupplySensorStateFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "presenceDetected", - "2": "psFailureDetected", - "4": "predictiveFailure", - "8": "psACLost", - "16": "acLostOrOutOfRange", - "32": "acOutOfRangeButPresent", - "64": "configurationError" - } - }, - "display_hint": null - }, - "PowerSupplyConfigurationErrorTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "vendorMismatch", - "2": "revisionMismatch", - "3": "processorMissing" - } - }, - "display_hint": null - }, - "PowerSupplyTableEntry": { - "tp": "SEQUENCE" - }, - "powerSupplyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PowerSupplyTableEntry" - }, - "index": null, - "value": [ - "powerGroup", - 12 - ] - }, - "powerSupplyTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerSupplyTableEntry" - }, - "index": [ - "powerSupplychassisIndex", - "powerSupplyIndex" - ], - "value": [ - "powerSupplyTable", - 1 - ] - }, - "powerSupplychassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 1 - ] - }, - "powerSupplyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 2 - ] - }, - "powerSupplyStateCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerSupplyStateCapabilitiesUniqueFlags" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 3 - ] - }, - "powerSupplyStateSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerSupplyStateSettingsUniqueFlags" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 4 - ] - }, - "powerSupplyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 5 - ] - }, - "powerSupplyOutputWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 6 - ] - }, - "powerSupplyType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerSupplyTypeEnum" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 7 - ] - }, - "powerSupplyLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 8 - ] - }, - "powerSupplyInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 9 - ] - }, - "powerSupplypowerUnitIndexReference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 10 - ] - }, - "powerSupplySensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerSupplySensorStateFlags" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 11 - ] - }, - "powerSupplyConfigurationErrorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerSupplyConfigurationErrorTypeEnum" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 12 - ] - }, - "powerSupplyPowerMonitorCapable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 13 - ] - }, - "powerSupplyRatedInputWattage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 14 - ] - }, - "powerSupplyFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "powerSupplyTableEntry", - 15 - ] - }, - "VoltageTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "voltageProbeTypeIsOther", - "2": "voltageProbeTypeIsUnknown", - "3": "voltageProbeTypeIs1Point5Volt", - "4": "voltageProbeTypeIs3Point3Volt", - "5": "voltageProbeTypeIs5Volt", - "6": "voltageProbeTypeIsMinus5Volt", - "7": "voltageProbeTypeIs12Volt", - "8": "voltageProbeTypeIsMinus12Volt", - "9": "voltageProbeTypeIsIO", - "10": "voltageProbeTypeIsCore", - "11": "voltageProbeTypeIsFLEA", - "12": "voltageProbeTypeIsBattery", - "13": "voltageProbeTypeIsTerminator", - "14": "voltageProbeTypeIs2Point5Volt", - "15": "voltageProbeTypeIsGTL", - "16": "voltageProbeTypeIsDiscrete", - "17": "voltageProbeTypeIsGenericDiscrete", - "18": "voltageProbeTypeIsPSVoltage", - "19": "voltageProbeTypeIsMemoryStatus" - } - }, - "display_hint": null - }, - "VoltageDiscreteReadingEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "voltageIsGood", - "2": "voltageIsBad" - } - }, - "display_hint": null - }, - "VoltageProbeTableEntry": { - "tp": "SEQUENCE" - }, - "voltageProbeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VoltageProbeTableEntry" - }, - "index": null, - "value": [ - "powerGroup", - 20 - ] - }, - "voltageProbeTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VoltageProbeTableEntry" - }, - "index": [ - "voltageProbechassisIndex", - "voltageProbeIndex" - ], - "value": [ - "voltageProbeTable", - 1 - ] - }, - "voltageProbechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 1 - ] - }, - "voltageProbeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 2 - ] - }, - "voltageProbeStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 3 - ] - }, - "voltageProbeStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 4 - ] - }, - "voltageProbeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusProbeEnum" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 5 - ] - }, - "voltageProbeReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 6 - ] - }, - "voltageProbeType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VoltageTypeEnum" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 7 - ] - }, - "voltageProbeLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 8 - ] - }, - "voltageProbeUpperNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 9 - ] - }, - "voltageProbeUpperCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 10 - ] - }, - "voltageProbeUpperNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 11 - ] - }, - "voltageProbeLowerNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 12 - ] - }, - "voltageProbeLowerCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 13 - ] - }, - "voltageProbeLowerNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 14 - ] - }, - "voltageProbeProbeCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProbeCapabilitiesFlags" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 15 - ] - }, - "voltageProbeDiscreteReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VoltageDiscreteReadingEnum" - }, - "index": null, - "value": [ - "voltageProbeTableEntry", - 16 - ] - }, - "AmperageProbeTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "amperageProbeTypeIsOther", - "2": "amperageProbeTypeIsUnknown", - "3": "amperageProbeTypeIs1Point5Volt", - "4": "amperageProbeTypeIs3Point3volt", - "5": "amperageProbeTypeIs5Volt", - "6": "amperageProbeTypeIsMinus5Volt", - "7": "amperageProbeTypeIs12Volt", - "8": "amperageProbeTypeIsMinus12Volt", - "9": "amperageProbeTypeIsIO", - "10": "amperageProbeTypeIsCore", - "11": "amperageProbeTypeIsFLEA", - "12": "amperageProbeTypeIsBattery", - "13": "amperageProbeTypeIsTerminator", - "14": "amperageProbeTypeIs2Point5Volt", - "15": "amperageProbeTypeIsGTL", - "16": "amperageProbeTypeIsDiscrete", - "23": "amperageProbeTypeIsPowerSupplyAmps", - "24": "amperageProbeTypeIsPowerSupplyWatts", - "25": "amperageProbeTypeIsSystemAmps", - "26": "amperageProbeTypeIsSystemWatts" - } - }, - "display_hint": null - }, - "AmperageDiscreteReadingEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "amperageIsGood", - "2": "amperageIsBad" - } - }, - "display_hint": null - }, - "AmperageProbeTableEntry": { - "tp": "SEQUENCE" - }, - "amperageProbeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AmperageProbeTableEntry" - }, - "index": null, - "value": [ - "powerGroup", - 30 - ] - }, - "amperageProbeTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AmperageProbeTableEntry" - }, - "index": [ - "amperageProbechassisIndex", - "amperageProbeIndex" - ], - "value": [ - "amperageProbeTable", - 1 - ] - }, - "amperageProbechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 1 - ] - }, - "amperageProbeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 2 - ] - }, - "amperageProbeStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 3 - ] - }, - "amperageProbeStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 4 - ] - }, - "amperageProbeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusProbeEnum" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 5 - ] - }, - "amperageProbeReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 6 - ] - }, - "amperageProbeType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AmperageProbeTypeEnum" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 7 - ] - }, - "amperageProbeLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 8 - ] - }, - "amperageProbeUpperNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 9 - ] - }, - "amperageProbeUpperCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 10 - ] - }, - "amperageProbeUpperNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 11 - ] - }, - "amperageProbeLowerNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 12 - ] - }, - "amperageProbeLowerCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 13 - ] - }, - "amperageProbeLowerNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 14 - ] - }, - "amperageProbeProbeCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProbeCapabilitiesFlags" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 15 - ] - }, - "amperageProbeDiscreteReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AmperageDiscreteReadingEnum" - }, - "index": null, - "value": [ - "amperageProbeTableEntry", - 16 - ] - }, - "SystemBatteryReadingFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "predictiveFailure", - "2": "failed", - "4": "presenceDetected" - } - }, - "display_hint": null - }, - "SystemBatteryTableEntry": { - "tp": "SEQUENCE" - }, - "systemBatteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SystemBatteryTableEntry" - }, - "index": null, - "value": [ - "powerGroup", - 50 - ] - }, - "systemBatteryTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemBatteryTableEntry" - }, - "index": [ - "systemBatteryChassisIndex", - "systemBatteryIndex" - ], - "value": [ - "systemBatteryTable", - 1 - ] - }, - "systemBatteryChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 1 - ] - }, - "systemBatteryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 2 - ] - }, - "systemBatteryStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 3 - ] - }, - "systemBatteryStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 4 - ] - }, - "systemBatteryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 5 - ] - }, - "systemBatteryReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemBatteryReadingFlags" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 6 - ] - }, - "systemBatteryLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "systemBatteryTableEntry", - 7 - ] - }, - "PowerCapCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "display_hint": null - }, - "PowerCapSettingEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled" - } - }, - "display_hint": null - }, - "PowerUsageTableEntry": { - "tp": "SEQUENCE" - }, - "powerUsageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PowerUsageTableEntry" - }, - "index": null, - "value": [ - "powerGroup", - 60 - ] - }, - "powerUsageTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerUsageTableEntry" - }, - "index": [ - "powerUsageChassisIndex", - "powerUsageIndex" - ], - "value": [ - "powerUsageTable", - 1 - ] - }, - "powerUsageChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 1 - ] - }, - "powerUsageIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 2 - ] - }, - "powerUsageStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 3 - ] - }, - "powerUsageStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 4 - ] - }, - "powerUsageStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 5 - ] - }, - "powerUsageEntityName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 6 - ] - }, - "powerUsageCumulativeWattage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 7 - ] - }, - "powerUsageCumulativeWattageStartDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 8 - ] - }, - "powerUsagePeakWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 9 - ] - }, - "powerUsagePeakWattsStartDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 10 - ] - }, - "powerUsagePeakWattsReadingDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 11 - ] - }, - "powerUsagePeakAmps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 12 - ] - }, - "powerUsagePeakAmpsStartDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 13 - ] - }, - "powerUsagePeakAmpsReadingDateName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateName" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 14 - ] - }, - "powerUsageIdlePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 15 - ] - }, - "powerUsageMaxPotentialPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 16 - ] - }, - "powerUsagePowerCapCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerCapCapabilitiesFlags" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 17 - ] - }, - "powerUsagePowerCapSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerCapSettingEnum" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 18 - ] - }, - "powerUsagePowerCapValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 19 - ] - }, - "powerUsageInstantaneousHeadroom": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 20 - ] - }, - "powerUsagePeakHeadroom": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "powerUsageTableEntry", - 21 - ] - }, - "CoolingUnitTableEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitTableEntry" - }, - "index": null, - "value": [ - "thermalGroup", - 10 - ] - }, - "coolingUnitTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitTableEntry" - }, - "index": [ - "coolingUnitchassisIndex", - "coolingUnitIndex" - ], - "value": [ - "coolingUnitTable", - 1 - ] - }, - "coolingUnitchassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 1 - ] - }, - "coolingUnitIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 2 - ] - }, - "coolingUnitStateCapabilties": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 3 - ] - }, - "coolingUnitStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 4 - ] - }, - "coolingUnitRedundancyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusRedundancyEnum" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 5 - ] - }, - "coolingDeviceCountForRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 6 - ] - }, - "coolingUnitName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 7 - ] - }, - "coolingUnitStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "coolingUnitTableEntry", - 8 - ] - }, - "CoolingDeviceTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "coolingDeviceTypeIsOther", - "2": "coolingDeviceTypeIsUnknown", - "3": "coolingDeviceTypeIsAFan", - "4": "coolingDeviceTypeIsABlower", - "5": "coolingDeviceTypeIsAChipFan", - "6": "coolingDeviceTypeIsACabinetFan", - "7": "coolingDeviceTypeIsAPowerSupplyFan", - "8": "coolingDeviceTypeIsAHeatPipe", - "9": "coolingDeviceTypeIsRefrigeration", - "10": "coolingDeviceTypeIsActiveCooling", - "11": "coolingDeviceTypeIsPassiveCooling" - } - }, - "display_hint": null - }, - "CoolingDeviceSubTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "coolingDeviceSubTypeIsOther", - "2": "coolingDeviceSubTypeIsUnknown", - "3": "coolingDeviceSubTypeIsAFanThatReadsInRPM", - "4": "coolingDeviceSubTypeIsAFanReadsONorOFF", - "5": "coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM", - "6": "coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF", - "16": "coolingDeviceSubTypeIsDiscrete" - } - }, - "display_hint": null - }, - "CoolingDeviceDiscreteReadingEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "coolingDeviceIsGood", - "2": "coolingDeviceIsBad" - } - }, - "display_hint": null - }, - "CoolingDeviceTableEntry": { - "tp": "SEQUENCE" - }, - "coolingDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingDeviceTableEntry" - }, - "index": null, - "value": [ - "thermalGroup", - 12 - ] - }, - "coolingDeviceTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingDeviceTableEntry" - }, - "index": [ - "coolingDevicechassisIndex", - "coolingDeviceIndex" - ], - "value": [ - "coolingDeviceTable", - 1 - ] - }, - "coolingDevicechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 1 - ] - }, - "coolingDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 2 - ] - }, - "coolingDeviceStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 3 - ] - }, - "coolingDeviceStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 4 - ] - }, - "coolingDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusProbeEnum" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 5 - ] - }, - "coolingDeviceReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 6 - ] - }, - "coolingDeviceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingDeviceTypeEnum" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 7 - ] - }, - "coolingDeviceLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 8 - ] - }, - "coolingDeviceUpperNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 9 - ] - }, - "coolingDeviceUpperCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 10 - ] - }, - "coolingDeviceUpperNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 11 - ] - }, - "coolingDeviceLowerNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 12 - ] - }, - "coolingDeviceLowerCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 13 - ] - }, - "coolingDeviceLowerNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 14 - ] - }, - "coolingDevicecoolingUnitIndexReference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 15 - ] - }, - "coolingDeviceSubType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingDeviceSubTypeEnum" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 16 - ] - }, - "coolingDeviceProbeCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProbeCapabilitiesFlags" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 17 - ] - }, - "coolingDeviceDiscreteReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingDeviceDiscreteReadingEnum" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 18 - ] - }, - "coolingDeviceFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "coolingDeviceTableEntry", - 19 - ] - }, - "TemperatureProbeTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "temperatureProbeTypeIsOther", - "2": "temperatureProbeTypeIsUnknown", - "3": "temperatureProbeTypeIsAmbientESM", - "16": "temperatureProbeTypeIsDiscrete" - } - }, - "display_hint": null - }, - "TemperatureDiscreteReadingEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "temperatureIsGood", - "2": "temperatureIsBad" - } - }, - "display_hint": null - }, - "TemperatureProbeTableEntry": { - "tp": "SEQUENCE" - }, - "temperatureProbeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TemperatureProbeTableEntry" - }, - "index": null, - "value": [ - "thermalGroup", - 20 - ] - }, - "temperatureProbeTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TemperatureProbeTableEntry" - }, - "index": [ - "temperatureProbechassisIndex", - "temperatureProbeIndex" - ], - "value": [ - "temperatureProbeTable", - 1 - ] - }, - "temperatureProbechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 1 - ] - }, - "temperatureProbeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 2 - ] - }, - "temperatureProbeStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 3 - ] - }, - "temperatureProbeStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 4 - ] - }, - "temperatureProbeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StatusProbeEnum" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 5 - ] - }, - "temperatureProbeReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 6 - ] - }, - "temperatureProbeType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TemperatureProbeTypeEnum" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 7 - ] - }, - "temperatureProbeLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 8 - ] - }, - "temperatureProbeUpperNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 9 - ] - }, - "temperatureProbeUpperCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 10 - ] - }, - "temperatureProbeUpperNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 11 - ] - }, - "temperatureProbeLowerNonCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 12 - ] - }, - "temperatureProbeLowerCriticalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 13 - ] - }, - "temperatureProbeLowerNonRecoverableThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 14 - ] - }, - "temperatureProbeProbeCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProbeCapabilitiesFlags" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 15 - ] - }, - "temperatureProbeDiscreteReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TemperatureDiscreteReadingEnum" - }, - "index": null, - "value": [ - "temperatureProbeTableEntry", - 16 - ] - }, - "ProcessorDeviceType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "deviceTypeIsOther", - "2": "deviceTypeIsUnknown", - "3": "deviceTypeIsCPU", - "4": "deviceTypeIsMathProcessor", - "5": "deviceTypeIsDSP", - "6": "deviceTypeIsAVideoProcessor" - } - }, - "display_hint": null - }, - "ProcessorDeviceFamily": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "deviceFamilyIsOther", - "2": "deviceFamilyIsUnknown", - "3": "deviceFamilyIs8086", - "4": "deviceFamilyIs80286", - "5": "deviceFamilyIsIntel386", - "6": "deviceFamilyIsIntel486", - "7": "deviceFamilyIs8087", - "8": "deviceFamilyIs80287", - "9": "deviceFamilyIs80387", - "10": "deviceFamilyIs80487", - "11": "deviceFamilyIsPentium", - "12": "deviceFamilyIsPentiumPro", - "13": "deviceFamilyIsPentiumII", - "14": "deviceFamilyIsPentiumMMX", - "15": "deviceFamilyIsCeleron", - "16": "deviceFamilyIsPentiumIIXeon", - "17": "deviceFamilyIsPentiumIII", - "18": "deviceFamilyIsPentiumIIIXeon", - "19": "deviceFamilyIsPentiumIIISpeedStep", - "20": "deviceFamilyIsItanium", - "21": "deviceFamilyIsIntelXeon", - "22": "deviceFamilyIsPentium4", - "23": "deviceFamilyIsIntelXeonMP", - "24": "deviceFamilyIsIntelItanium2", - "25": "deviceFamilyIsK5", - "26": "deviceFamilyIsK6", - "27": "deviceFamilyIsK6-2", - "28": "deviceFamilyIsK6-3", - "29": "deviceFamilyIsAMDAthlon", - "30": "deviceFamilyIsAMD2900", - "31": "deviceFamilyIsK6-2Plus", - "32": "deviceFamilyIsPowerPC", - "33": "deviceFamilyIsPowerPC601", - "34": "deviceFamilyIsPowerPC603", - "35": "deviceFamilyIsPowerPC603Plus", - "36": "deviceFamilyIsPowerPC604", - "37": "deviceFamilyIsPowerPC620", - "38": "deviceFamilyIsPowerPCx704", - "39": "deviceFamilyIsPowerPC750", - "40": "deviceFamilyIsIntelCoreDuo", - "41": "deviceFamilyIsIntelCoreDuoMobile", - "42": "deviceFamilyIsIntelCoreSoloMobile", - "43": "deviceFamilyIsIntelAtom", - "48": "deviceFamilyIsAlpha", - "49": "deviceFamilyIsAlpha21064", - "50": "deviceFamilyIsAlpha21066", - "51": "deviceFamilyIsAlpha21164", - "52": "deviceFamilyIsAlpha21164PC", - "53": "deviceFamilyIsAlpha21164a", - "54": "deviceFamilyIsAlpha21264", - "55": "deviceFamilyIsAlpha21364", - "56": "deviceFamilyIsAMDTurionIIUltraDualMobileM", - "57": "deviceFamilyIsAMDTurionIIDualMobileM", - "58": "deviceFamilyIsAMDAthlonIIDualMobileM", - "59": "deviceFamilyIsAMDOpteron6100", - "60": "deviceFamilyIsAMDOpteron4100", - "61": "deviceFamilyIsAMDOpteron6200", - "62": "deviceFamilyIsAMDOpteron4200", - "64": "deviceFamilyIsMIPS", - "65": "deviceFamilyIsMIPSR4000", - "66": "deviceFamilyIsMIPSR4200", - "67": "deviceFamilyIsMIPSR4400", - "68": "deviceFamilyIsMIPSR4600", - "69": "deviceFamilyIsMIPSR10000", - "80": "deviceFamilyIsSPARC", - "81": "deviceFamilyIsSuperSPARC", - "82": "deviceFamilyIsmicroSPARCII", - "83": "deviceFamilyIsmicroSPARCIIep", - "84": "deviceFamilyIsUltraSPARC", - "85": "deviceFamilyIsUltraSPARCII", - "86": "deviceFamilyIsUltraSPARCIIi", - "87": "deviceFamilyIsUltraSPARCIII", - "88": "deviceFamilyIsUltraSPARCIIIi", - "96": "deviceFamilyIs68040", - "97": "deviceFamilyIs68xxx", - "98": "deviceFamilyIs68000", - "99": "deviceFamilyIs68010", - "100": "deviceFamilyIs68020", - "101": "deviceFamilyIs68030", - "112": "deviceFamilyIsHobbit", - "120": "deviceFamilyIsCrusoeTM5000", - "121": "deviceFamilyIsCrusoeTM3000", - "122": "deviceFamilyIsEfficeonTM8000", - "128": "deviceFamilyIsWeitek", - "130": "deviceFamilyIsIntelCeleronM", - "131": "deviceFamilyIsAMDAthlon64", - "132": "deviceFamilyIsAMDOpteron", - "133": "deviceFamilyIsAMDSempron", - "134": "deviceFamilyIsAMDTurion64Mobile", - "135": "deviceFamilyIsDualCoreAMDOpteron", - "136": "deviceFamilyIsAMDAthlon64X2DualCore", - "137": "deviceFamilyIsAMDTurion64X2Mobile", - "138": "deviceFamilyIsQuadCoreAMDOpteron", - "139": "deviceFamilyIsThirdGenerationAMDOpteron", - "140": "deviceFamilyIsAMDPhenomFXQuadCore", - "141": "deviceFamilyIsAMDPhenomX4QuadCore", - "142": "deviceFamilyIsAMDPhenomX2DualCore", - "143": "deviceFamilyIsAMDAthlonX2DualCore", - "144": "deviceFamilyIsPA-RISC", - "145": "deviceFamilyIsPA-RISC8500", - "146": "deviceFamilyIsPA-RISC8000", - "147": "deviceFamilyIsPA-RISC7300LC", - "148": "deviceFamilyIsPA-RISC7200", - "149": "deviceFamilyIsPA-RISC7100LC", - "150": "deviceFamilyIsPA-RISC7100", - "160": "deviceFamilyIsV30", - "161": "deviceFamilyIsQuadCoreIntelXeon3200", - "162": "deviceFamilyIsDualCoreIntelXeon3000", - "163": "deviceFamilyIsQuadCoreIntelXeon5300", - "164": "deviceFamilyIsDualCoreIntelXeon5100", - "165": "deviceFamilyIsDualCoreIntelXeon5000", - "166": "deviceFamilyIsDualCoreIntelXeonLV", - "167": "deviceFamilyIsDualCoreIntelXeonULV", - "168": "deviceFamilyIsDualCoreIntelXeon7100", - "169": "deviceFamilyIsQuadCoreIntelXeon5400", - "170": "deviceFamilyIsQuadCoreIntelXeon", - "171": "deviceFamilyIsDualCoreIntelXeon5200", - "172": "deviceFamilyIsDualCoreIntelXeon7200", - "173": "deviceFamilyIsQuadCoreIntelXeon7300", - "174": "deviceFamilyIsQuadCoreIntelXeon7400", - "175": "deviceFamilyIsMultiCoreIntelXeon7400", - "176": "deviceFamilyIsM1", - "177": "deviceFamilyIsM2", - "179": "deviceFamilyIsIntelPentium4HT", - "180": "deviceFamilyIsAS400", - "182": "deviceFamilyIsAMDAthlonXP", - "183": "deviceFamilyIsAMDAthlonMP", - "184": "deviceFamilyIsAMDDuron", - "185": "deviceFamilyIsIntelPentiumM", - "186": "deviceFamilyIsIntelCeleronD", - "187": "deviceFamilyIsIntelPentiumD", - "188": "deviceFamilyIsIntelPentiumExtreme", - "189": "deviceFamilyIsIntelCoreSolo", - "190": "deviceFamilyIsIntelCore2", - "191": "deviceFamilyIsIntelCore2Duo", - "192": "deviceFamilyIsIntelCore2Solo", - "193": "deviceFamilyIsIntelCore2Extreme", - "194": "deviceFamilyIsIntelCore2Quad", - "195": "deviceFamilyIsIntelCore2ExtremeMobile", - "196": "deviceFamilyIsIntelCore2DuoMobile", - "197": "deviceFamilyIsIntelCore2SoloMobile", - "198": "deviceFamilyIsIntelCorei7", - "199": "deviceFamilyIsDualCoreIntelCeleron", - "200": "deviceFamilyIsIBM390", - "201": "deviceFamilyIsG4", - "202": "deviceFamilyIsG5", - "203": "deviceFamilyIsESA390G6", - "204": "deviceFamilyIszArchitectur", - "205": "deviceFamilyIsIntelCorei5", - "206": "deviceFamilyIsIntelCorei3", - "210": "deviceFamilyIsVIAC7-M", - "211": "deviceFamilyIsVIAC7-D", - "212": "deviceFamilyIsVIAC7", - "213": "deviceFamilyIsVIAEden", - "214": "deviceFamilyIsMultiCoreIntelXeon", - "215": "deviceFamilyIsDualCoreIntelXeon3xxx", - "216": "deviceFamilyIsQuadCoreIntelXeon3xxx", - "217": "deviceFamilyIsVIANano", - "218": "deviceFamilyIsDualCoreIntelXeon5xxx", - "219": "deviceFamilyIsQuadCoreIntelXeon5xxx", - "221": "deviceFamilyIsDualCoreIntelXeon7xxx", - "222": "deviceFamilyIsQuadCoreIntelXeon7xxx", - "223": "deviceFamilyIsMultiCoreIntelXeon7xxx", - "224": "deviceFamilyIsMultiCoreIntelXeon3400", - "230": "deviceFamilyIsEmbeddedAMDOpertonQuadCore", - "231": "deviceFamilyIsAMDPhenomTripleCore", - "232": "deviceFamilyIsAMDTurionUltraDualCoreMobile", - "233": "deviceFamilyIsAMDTurionDualCoreMobile", - "234": "deviceFamilyIsAMDAthlonDualCore", - "235": "deviceFamilyIsAMDSempronSI", - "236": "deviceFamilyIsAMDPhenomII", - "237": "deviceFamilyIsAMDAthlonII", - "238": "deviceFamilyIsSixCoreAMDOpteron", - "239": "deviceFamilyIsAMDSempronM", - "250": "deviceFamilyIsi860", - "251": "deviceFamilyIsi960" - } - }, - "display_hint": null - }, - "ProcessorDeviceStatusState": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unknown", - "3": "enabled", - "4": "userDisabled", - "5": "biosDisabled", - "6": "idle" - } - }, - "display_hint": null - }, - "ProcessorDeviceTableEntry": { - "tp": "SEQUENCE" - }, - "processorDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ProcessorDeviceTableEntry" - }, - "index": null, - "value": [ - "deviceGroup", - 30 - ] - }, - "processorDeviceTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProcessorDeviceTableEntry" - }, - "index": [ - "processorDevicechassisIndex", - "processorDeviceIndex" - ], - "value": [ - "processorDeviceTable", - 1 - ] - }, - "processorDevicechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 1 - ] - }, - "processorDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 2 - ] - }, - "processorDeviceStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 3 - ] - }, - "processorDeviceStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 4 - ] - }, - "processorDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 5 - ] - }, - "processorDeviceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProcessorDeviceType" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 7 - ] - }, - "processorDeviceManufacturerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 8 - ] - }, - "processorDeviceStatusState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProcessorDeviceStatusState" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 9 - ] - }, - "processorDeviceFamily": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProcessorDeviceFamily" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 10 - ] - }, - "processorDeviceMaximumSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 11 - ] - }, - "processorDeviceCurrentSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 12 - ] - }, - "processorDeviceExternalClockSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 13 - ] - }, - "processorDeviceVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Signed32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 14 - ] - }, - "processorDeviceVersionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 16 - ] - }, - "processorDeviceCoreCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 17 - ] - }, - "processorDeviceCoreEnabledCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 18 - ] - }, - "processorDeviceThreadCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 19 - ] - }, - "processorDeviceCharacteristics": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 20 - ] - }, - "processorDeviceExtendedCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 21 - ] - }, - "processorDeviceExtendedSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned16BitRange" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 22 - ] - }, - "processorDeviceBrandName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 23 - ] - }, - "processorDeviceFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "processorDeviceTableEntry", - 26 - ] - }, - "ProcessorDeviceStatusReadingFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "internalError", - "2": "thermalTrip", - "32": "configurationError", - "128": "processorPresent", - "256": "processorDisabled", - "512": "terminatorPresent", - "1024": "processorThrottled" - } - }, - "display_hint": null - }, - "ProcessorDeviceStatusTableEntry": { - "tp": "SEQUENCE" - }, - "processorDeviceStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ProcessorDeviceStatusTableEntry" - }, - "index": null, - "value": [ - "deviceGroup", - 32 - ] - }, - "processorDeviceStatusTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProcessorDeviceStatusTableEntry" - }, - "index": [ - "processorDeviceStatusChassisIndex", - "processorDeviceStatusIndex" - ], - "value": [ - "processorDeviceStatusTable", - 1 - ] - }, - "processorDeviceStatusChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 1 - ] - }, - "processorDeviceStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 2 - ] - }, - "processorDeviceStatusStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 3 - ] - }, - "processorDeviceStatusStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 4 - ] - }, - "processorDeviceStatusStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 5 - ] - }, - "processorDeviceStatusReading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProcessorDeviceStatusReadingFlags" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 6 - ] - }, - "processorDeviceStatusLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "processorDeviceStatusTableEntry", - 7 - ] - }, - "MemoryDeviceTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "deviceTypeIsOther", - "2": "deviceTypeIsUnknown", - "3": "deviceTypeIsDRAM", - "4": "deviceTypeIsEDRAM", - "5": "deviceTypeIsVRAM", - "6": "deviceTypeIsSRAM", - "7": "deviceTypeIsRAM", - "8": "deviceTypeIsROM", - "9": "deviceTypeIsFLASH", - "10": "deviceTypeIsEEPROM", - "11": "deviceTypeIsFEPROM", - "12": "deviceTypeIsEPROM", - "13": "deviceTypeIsCDRAM", - "14": "deviceTypeIs3DRAM", - "15": "deviceTypeIsSDRAM", - "16": "deviceTypeIsSGRAM", - "17": "deviceTypeIsRDRAM", - "18": "deviceTypeIsDDR", - "19": "deviceTypeIsDDR2", - "20": "deviceTypeIsDDR2FBDIMM", - "24": "deviceTypeIsDDR3", - "25": "deviceTypeIsFBD2" - } - }, - "display_hint": null - }, - "MemoryDeviceTableEntry": { - "tp": "SEQUENCE" - }, - "memoryDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemoryDeviceTableEntry" - }, - "index": null, - "value": [ - "deviceGroup", - 50 - ] - }, - "memoryDeviceTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemoryDeviceTableEntry" - }, - "index": [ - "memoryDevicechassisIndex", - "memoryDeviceIndex" - ], - "value": [ - "memoryDeviceTable", - 1 - ] - }, - "memoryDevicechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 1 - ] - }, - "memoryDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 2 - ] - }, - "memoryDeviceStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 3 - ] - }, - "memoryDeviceStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 4 - ] - }, - "memoryDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 5 - ] - }, - "memoryDeviceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemoryDeviceTypeEnum" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 7 - ] - }, - "memoryDeviceLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 8 - ] - }, - "memoryDeviceBankLocationName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 10 - ] - }, - "memoryDeviceSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 14 - ] - }, - "memoryDeviceSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 15 - ] - }, - "memoryDeviceManufacturerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 21 - ] - }, - "memoryDevicePartNumberName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 22 - ] - }, - "memoryDeviceSerialNumberName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 23 - ] - }, - "memoryDeviceFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "memoryDeviceTableEntry", - 26 - ] - }, - "PCIDeviceTableEntry": { - "tp": "SEQUENCE" - }, - "pCIDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PCIDeviceTableEntry" - }, - "index": null, - "value": [ - "deviceGroup", - 80 - ] - }, - "pCIDeviceTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PCIDeviceTableEntry" - }, - "index": [ - "pCIDevicechassisIndex", - "pCIDeviceIndex" - ], - "value": [ - "pCIDeviceTable", - 1 - ] - }, - "pCIDevicechassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 1 - ] - }, - "pCIDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 2 - ] - }, - "pCIDeviceStateCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateCapabilitiesFlags" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 3 - ] - }, - "pCIDeviceStateSettings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StateSettingsFlags" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 4 - ] - }, - "pCIDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 5 - ] - }, - "pCIDeviceDataBusWidth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32BitRange" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 7 - ] - }, - "pCIDeviceManufacturerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 8 - ] - }, - "pCIDeviceDescriptionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 9 - ] - }, - "pCIDeviceFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "pCIDeviceTableEntry", - 12 - ] - }, - "NetworkDeviceConnectionStatusEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "connected", - "2": "disconnected", - "3": "driverBad", - "4": "driverDisabled", - "10": "hardwareInitalizing", - "11": "hardwareResetting", - "12": "hardwareClosing", - "13": "hardwareNotReady" - } - }, - "display_hint": null - }, - "NetworkDeviceTOECapabilityFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "available", - "4": "notAvailable", - "8": "cannotBeDetermined", - "16": "driverNotResponding" - } - }, - "display_hint": null - }, - "NetworkDeviceiSCSICapabilityFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "available", - "4": "notAvailable", - "8": "cannotBeDetermined", - "16": "driverNotResponding" - } - }, - "display_hint": null - }, - "NetworkDeviceCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "supported", - "2": "toe", - "4": "iscsiOffload", - "8": "fcoeOffload" - } - }, - "display_hint": null - }, - "NetworkDeviceTableEntry": { - "tp": "SEQUENCE" - }, - "networkDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NetworkDeviceTableEntry" - }, - "index": null, - "value": [ - "deviceGroup", - 90 - ] - }, - "networkDeviceTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NetworkDeviceTableEntry" - }, - "index": [ - "networkDeviceChassisIndex", - "networkDeviceIndex" - ], - "value": [ - "networkDeviceTable", - 1 - ] - }, - "networkDeviceChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 1 - ] - }, - "networkDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 2 - ] - }, - "networkDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 3 - ] - }, - "networkDeviceConnectionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NetworkDeviceConnectionStatusEnum" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 4 - ] - }, - "networkDeviceProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 6 - ] - }, - "networkDeviceVendorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 7 - ] - }, - "networkDeviceCurrentMACAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MACAddress" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 15 - ] - }, - "networkDevicePermanentMACAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MACAddress" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 16 - ] - }, - "networkDevicePCIBusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 17 - ] - }, - "networkDevicePCIDeviceNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 18 - ] - }, - "networkDevicePCIFunctionNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned8BitRange" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 19 - ] - }, - "networkDeviceTOECapabilityFlags": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NetworkDeviceTOECapabilityFlags" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 23 - ] - }, - "networkDeviceiSCSICapabilityFlags": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NetworkDeviceiSCSICapabilityFlags" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 27 - ] - }, - "networkDeviceiSCSIEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 28 - ] - }, - "networkDeviceCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NetworkDeviceCapabilitiesFlags" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 29 - ] - }, - "networkDeviceFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "networkDeviceTableEntry", - 30 - ] - }, - "SystemSlotStateCapabilitiesFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemSlotHotPlugIsUnknown", - "2": "systemSlotHotPlugIsHotPluggableCapable", - "4": "systemSlotHotPlugCanBePoweredOn", - "8": "systemSlotHotPlugCanSignalAttention", - "16": "systemSlotHotPlugCanSignalPowerFault", - "32": "systemSlotHotPlugCanSignalAdapterPresent", - "64": "systemSlotHotPlugCanSignalPowerButtonPressed", - "126": "canSupportAllHotPlugCapabilities", - "128": "systemSlotCanProvide5Volts", - "256": "systemSlotCanProvide3Point3Volts", - "512": "systemSlotCanSignalIfShared", - "1024": "systemSlotCanSupportCard16", - "2048": "systemSlotCanSupportCardBus", - "4096": "systemSlotCanSupportZoomVideo", - "8192": "systemSlotCanSupportModemRingResume", - "16384": "systemSlotCanSupportPMESignal", - "32640": "canSupportAllSlotCapabilities", - "32766": "canSupportAllSlotAndAllHotPlugCapabilities" - } - }, - "display_hint": null - }, - "SystemSlotStateSettingsFlags": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemSlotHotPlugIsUnknown", - "2": "systemSlotHotPlugIsHotPluggable", - "4": "systemSlotHotPlugIsPoweredOn", - "8": "systemSlotHotPlugIsAtAttention", - "16": "systemSlotHotPlugHasPowerFaulted", - "32": "systemSlotHotPlugAdapterIsPresent", - "36": "systemSlotHotPlugAdapterPresentAndPoweredOn", - "64": "systemSlotHotPlugPowerButtonPressed", - "128": "systemSlotProvides5Volts", - "256": "systemSlotProvides3Point3Volts", - "512": "systemSlotIsShared", - "1024": "systemSlotSupportsCard16", - "2048": "systemSlotSupportsCardBus", - "4096": "systemSlotSupportsZoomVideo", - "8192": "systemSlotSupportsModemRingResume", - "16384": "systemSlotSupportsPMESignal", - "16770": "supportsPMEand3P3Vand5VandHotPluggable", - "16804": "supportsPMEand3P3Vand5VhasAdapterOn", - "16806": "supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable", - "17316": "supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable" - } - }, - "display_hint": null - }, - "SystemSlotTypeEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemSlotIsOther", - "2": "systemSlotIsUnknown", - "3": "systemSlotIsISA", - "4": "systemSlotIsMCA", - "5": "systemSlotIsEISA", - "6": "systemSlotIsPCI", - "7": "systemSlotIsPCMCIA", - "8": "systemSlotIsVLVESA", - "9": "systemSlotIsProprietary", - "10": "systemSlotIsProcessorCard", - "11": "systemSlotIsProprietaryMemory", - "12": "systemSlotIsIORiserCard", - "13": "systemSlotIsNuBUS", - "14": "systemSlotIsPCI66MHz", - "15": "systemSlotIsAGP", - "16": "systemSlotIsAGP2X", - "17": "systemSlotIsAGP4X", - "18": "systemSlotIsPC98C20", - "19": "systemSlotIsPC98C24", - "20": "systemSlotIsPC98E", - "21": "systemSlotIsPC98LocalBus", - "22": "systemSlotIsPC98Card", - "23": "systemSlotIsPCIX", - "24": "systemSlotIsPCIExpress", - "25": "systemSlotIsAGP8X", - "166": "systemSlotIsPCIExpressX1", - "167": "systemSlotIsPCIExpressX2", - "168": "systemSlotIsPCIExpressX4", - "169": "systemSlotIsPCIExpressX8", - "170": "systemSlotIsPCIExpressX16", - "171": "systemSlotIsPCIExpressGen2", - "172": "systemSlotIsPCIExpressGen2X1", - "173": "systemSlotIsPCIExpressGen2X2", - "174": "systemSlotIsPCIExpressGen2X4", - "175": "systemSlotIsPCIExpressGen2X8", - "176": "systemSlotIsPCIExpressGen2X16" - } - }, - "display_hint": null - }, - "SystemSlotUsageEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemSlotUsageIsOther", - "2": "systemSlotUsageIsUnknown", - "3": "systemSlotUsageIsAvailable", - "4": "systemSlotUsageIsInUse" - } - }, - "display_hint": null - }, - "SystemSlotCategoryEnum": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "systemSlotCategoryIsOther", - "2": "systemSlotCategoryIsUnknown", - "3": "systemSlotCategoryIsBusConnector", - "4": "systemSlotCategoryIsPCMCIA", - "5": "systemSlotCategoryIsMotherboard" - } - }, - "display_hint": null - }, - "SystemSlotTableEntry": { - "tp": "SEQUENCE" - }, - "systemSlotTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SystemSlotTableEntry" - }, - "index": null, - "value": [ - "slotGroup", - 10 - ] - }, - "systemSlotTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemSlotTableEntry" - }, - "index": [ - "systemSlotchassisIndex", - "systemSlotIndex" - ], - "value": [ - "systemSlotTable", - 1 - ] - }, - "systemSlotchassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 1 - ] - }, - "systemSlotIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 2 - ] - }, - "systemSlotStateCapabilitiesUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemSlotStateCapabilitiesFlags" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 3 - ] - }, - "systemSlotStateSettingsUnique": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemSlotStateSettingsFlags" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 4 - ] - }, - "systemSlotStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 5 - ] - }, - "systemSlotCurrentUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemSlotUsageEnum" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 6 - ] - }, - "systemSlotType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemSlotTypeEnum" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 7 - ] - }, - "systemSlotSlotExternalSlotName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "String64" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 8 - ] - }, - "systemSlotCategory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SystemSlotCategoryEnum" - }, - "index": null, - "value": [ - "systemSlotTableEntry", - 11 - ] - }, - "FruTableEntry": { - "tp": "SEQUENCE" - }, - "fruTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF FruTableEntry" - }, - "index": null, - "value": [ - "fruGroup", - 10 - ] - }, - "fruTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FruTableEntry" - }, - "index": [ - "fruChassisIndex", - "fruIndex" - ], - "value": [ - "fruTable", - 1 - ] - }, - "fruChassisIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "fruTableEntry", - 1 - ] - }, - "fruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectRange" - }, - "index": null, - "value": [ - "fruTableEntry", - 2 - ] - }, - "fruInformationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "fruTableEntry", - 3 - ] - }, - "fruManufacturerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "fruTableEntry", - 6 - ] - }, - "fruSerialNumberName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "fruTableEntry", - 7 - ] - }, - "fruPartNumberName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "fruTableEntry", - 8 - ] - }, - "fruRevisionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "fruTableEntry", - 9 - ] - }, - "fruFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "fruTableEntry", - 12 - ] - }, - "BatteryTableEntry": { - "tp": "SEQUENCE" - }, - "batteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BatteryTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 15 - ] - }, - "batteryTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BatteryTableEntry" - }, - "index": [ - "batteryNumber" - ], - "value": [ - "batteryTable", - 1 - ] - }, - "batteryNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "batteryTableEntry", - 1 - ] - }, - "batteryState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "failed", - "4": "degraded", - "5": "missing", - "6": "charging", - "7": "belowThreshold" - } - }, - "index": null, - "value": [ - "batteryTableEntry", - 4 - ] - }, - "batteryComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "batteryTableEntry", - 6 - ] - }, - "batteryPredictedCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "failed", - "3": "ready" - } - }, - "index": null, - "value": [ - "batteryTableEntry", - 10 - ] - }, - "batteryFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "batteryTableEntry", - 20 - ] - }, - "batteryDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "batteryTableEntry", - 21 - ] - }, - "ControllerTableEntry": { - "tp": "SEQUENCE" - }, - "controllerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ControllerTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 1 - ] - }, - "controllerTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControllerTableEntry" - }, - "index": [ - "controllerNumber" - ], - "value": [ - "controllerTable", - 1 - ] - }, - "controllerNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 1 - ] - }, - "controllerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 2 - ] - }, - "controllerRebuildRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 7 - ] - }, - "controllerFWVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 8 - ] - }, - "controllerCacheSizeInMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 9 - ] - }, - "controllerRollUpStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "controllerTableEntry", - 37 - ] - }, - "controllerComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "controllerTableEntry", - 38 - ] - }, - "controllerDriverVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 41 - ] - }, - "controllerPCISlot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 42 - ] - }, - "controllerReconstructRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 48 - ] - }, - "controllerPatrolReadRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 49 - ] - }, - "controllerBGIRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 50 - ] - }, - "controllerCheckConsistencyRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 51 - ] - }, - "controllerPatrolReadMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "disabled", - "4": "auto", - "5": "manual" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 52 - ] - }, - "controllerPatrolReadState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "stopped", - "3": "active" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 53 - ] - }, - "controllerPersistentHotSpare": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "controllerTableEntry", - 59 - ] - }, - "controllerSpinDownUnconfiguredDrives": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "controllerTableEntry", - 60 - ] - }, - "controllerSpinDownHotSpareDrives": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "controllerTableEntry", - 61 - ] - }, - "controllerSpinDownTimeInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "controllerTableEntry", - 62 - ] - }, - "controllerPreservedCache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "controllerTableEntry", - 69 - ] - }, - "controllerCheckConsistencyMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unsupported", - "3": "normal", - "4": "stopOnError" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 70 - ] - }, - "controllerCopyBackMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unsupported", - "3": "on", - "4": "onWithSmart", - "5": "off" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 71 - ] - }, - "controllerSecurityStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "none", - "3": "lkm" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 72 - ] - }, - "controllerEncryptionKeyPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "controllerTableEntry", - 73 - ] - }, - "controllerEncryptionCapability": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "lkm" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 74 - ] - }, - "controllerLoadBalanceSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "unsupported", - "3": "auto", - "4": "none" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 75 - ] - }, - "controllerMaxCapSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "oneDotFiveGbps", - "3": "threeGbps", - "4": "sixGbps" - } - }, - "index": null, - "value": [ - "controllerTableEntry", - 76 - ] - }, - "controllerSASAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 77 - ] - }, - "controllerFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 78 - ] - }, - "controllerDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "controllerTableEntry", - 79 - ] - }, - "PhysicalDiskTableEntry": { - "tp": "SEQUENCE" - }, - "physicalDiskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PhysicalDiskTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 4 - ] - }, - "physicalDiskTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PhysicalDiskTableEntry" - }, - "index": [ - "physicalDiskNumber" - ], - "value": [ - "physicalDiskTable", - 1 - ] - }, - "physicalDiskNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 1 - ] - }, - "physicalDiskName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 2 - ] - }, - "physicalDiskManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 3 - ] - }, - "physicalDiskState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "online", - "4": "foreign", - "5": "offline", - "6": "blocked", - "7": "failed", - "8": "non-raid", - "9": "removed" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 4 - ] - }, - "physicalDiskProductID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 6 - ] - }, - "physicalDiskSerialNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 7 - ] - }, - "physicalDiskRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 8 - ] - }, - "physicalDiskCapacityInMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 11 - ] - }, - "physicalDiskUsedSpaceInMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 17 - ] - }, - "physicalDiskFreeSpaceInMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 19 - ] - }, - "physicalDiskBusType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "scsi", - "3": "sas", - "4": "sata", - "5": "fibre" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 21 - ] - }, - "physicalDiskSpareState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notASpare", - "2": "dedicatedHotSpare", - "3": "globalHotSpare" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 22 - ] - }, - "physicalDiskComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 24 - ] - }, - "physicalDiskPartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 27 - ] - }, - "physicalDiskSASAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 28 - ] - }, - "physicalDiskNegotiatedSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "oneDotFiveGbps", - "3": "threeGbps", - "4": "sixGbps" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 29 - ] - }, - "physicalDiskCapableSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "oneDotFiveGbps", - "3": "threeGbps", - "4": "sixGbps" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 30 - ] - }, - "physicalDiskSmartAlertIndication": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 31 - ] - }, - "physicalDiskManufactureDay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 32 - ] - }, - "physicalDiskManufactureWeek": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 33 - ] - }, - "physicalDiskManufactureYear": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 34 - ] - }, - "physicalDiskMediaType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "hdd", - "3": "ssd" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 35 - ] - }, - "physicalDiskPowerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "spunUp", - "3": "spunDown", - "4": "transition" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 42 - ] - }, - "physicalDiskOperationalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "rebuild", - "3": "clear", - "4": "copyback" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 50 - ] - }, - "physicalDiskProgress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 51 - ] - }, - "physicalDiskSecurityStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "notSupported", - "3": "secured", - "4": "locked", - "5": "foreign" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 52 - ] - }, - "physicalDiskFormFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "oneDotEight", - "3": "twoDotFive", - "4": "threeDotFive" - } - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 53 - ] - }, - "physicalDiskFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 54 - ] - }, - "physicalDiskDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "physicalDiskTableEntry", - 55 - ] - }, - "VirtualDiskTableEntry": { - "tp": "SEQUENCE" - }, - "virtualDiskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VirtualDiskTableEntry" - }, - "index": null, - "value": [ - "logicalDevices", - 1 - ] - }, - "virtualDiskTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VirtualDiskTableEntry" - }, - "index": [ - "virtualDiskNumber" - ], - "value": [ - "virtualDiskTable", - 1 - ] - }, - "virtualDiskNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 1 - ] - }, - "virtualDiskName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 2 - ] - }, - "virtualDiskState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "online", - "3": "failed", - "4": "degraded" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 4 - ] - }, - "virtualDiskSizeInMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 6 - ] - }, - "virtualDiskWritePolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "writeThrough", - "2": "writeBack", - "3": "writeBackForce" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 10 - ] - }, - "virtualDiskReadPolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noReadAhead", - "2": "readAhead", - "3": "adaptiveReadAhead" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 11 - ] - }, - "virtualDiskLayout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "r0", - "3": "r1", - "4": "r5", - "5": "r6", - "6": "r10", - "7": "r50", - "8": "r60", - "9": "concatRaid-1", - "10": "concatRaid-5" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 13 - ] - }, - "virtualDiskStripeSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "default", - "3": "fiveHundredAndTwelvebytes", - "4": "oneKilobytes", - "5": "twoKilobytes", - "6": "fourKilobytes", - "7": "eightKilobytes", - "8": "sixteenKilobytes", - "9": "thirtyTwoKilobytes", - "10": "sixtyFourKilobytes", - "11": "oneTwentyEightKilobytes", - "12": "twoFiftySixKilobytes", - "13": "fiveOneTwoKilobytes", - "14": "oneMegabye", - "15": "twoMegabytes", - "16": "fourMegabytes", - "17": "eightMegabytes", - "18": "sixteenMegabytes" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 14 - ] - }, - "virtualDiskComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 20 - ] - }, - "virtualDiskBadBlocksDetected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 23 - ] - }, - "virtualDiskSecured": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 24 - ] - }, - "virtualDiskIsCacheCade": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BooleanType" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 25 - ] - }, - "virtualDiskDiskCachePolicy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled", - "3": "defullt" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 26 - ] - }, - "virtualDiskOperationalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "reconstructing", - "3": "resynching", - "4": "initializing", - "5": "backgroundInit" - } - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 30 - ] - }, - "virtualDiskProgress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 31 - ] - }, - "virtualDiskAvailableProtocols": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 32 - ] - }, - "virtualDiskMediaType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 33 - ] - }, - "virtualDiskRemainingRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 34 - ] - }, - "virtualDiskFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 35 - ] - }, - "virtualDiskDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "virtualDiskTableEntry", - 36 - ] - }, - "EnclosureTableEntry": { - "tp": "SEQUENCE" - }, - "enclosureTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EnclosureTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 3 - ] - }, - "enclosureTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnclosureTableEntry" - }, - "index": [ - "enclosureNumber" - ], - "value": [ - "enclosureTable", - 1 - ] - }, - "enclosureNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 1 - ] - }, - "enclosureName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 2 - ] - }, - "enclosureState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "failed", - "4": "missing", - "5": "degraded" - } - }, - "index": null, - "value": [ - "enclosureTableEntry", - 4 - ] - }, - "enclosureServiceTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 8 - ] - }, - "enclosureAssetTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 9 - ] - }, - "enclosureConnectedPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 19 - ] - }, - "enclosureRollUpStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 23 - ] - }, - "enclosureComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 24 - ] - }, - "enclosureFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 26 - ] - }, - "enclosureSASAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 30 - ] - }, - "enclosureDriveCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 31 - ] - }, - "enclosureTotalSlots": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 32 - ] - }, - "enclosureFanCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 40 - ] - }, - "enclosurePSUCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 41 - ] - }, - "enclosureEMMCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 42 - ] - }, - "enclosureTempProbeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 43 - ] - }, - "enclosureRedundantPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 44 - ] - }, - "enclosurePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 45 - ] - }, - "enclosureBackplaneBayID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 46 - ] - }, - "enclosureFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 47 - ] - }, - "enclosureDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTableEntry", - 48 - ] - }, - "EnclosureManagementModuleTableEntry": { - "tp": "SEQUENCE" - }, - "enclosureManagementModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EnclosureManagementModuleTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 13 - ] - }, - "enclosureManagementModuleTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnclosureManagementModuleTableEntry" - }, - "index": [ - "enclosureManagementModuleNumber" - ], - "value": [ - "enclosureManagementModuleTable", - 1 - ] - }, - "enclosureManagementModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 1 - ] - }, - "enclosureManagementModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 2 - ] - }, - "enclosureManagementModuleState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "failed", - "4": "missing", - "5": "degraded" - } - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 4 - ] - }, - "enclosureManagementModulePartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 6 - ] - }, - "enclosureManagementModuleFWVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 8 - ] - }, - "enclosureManagementModuleComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 11 - ] - }, - "enclosureManagementModuleFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 15 - ] - }, - "enclosureManagementModuleDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureManagementModuleTableEntry", - 16 - ] - }, - "EnclosureFanTableEntry": { - "tp": "SEQUENCE" - }, - "enclosureFanTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EnclosureFanTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 7 - ] - }, - "enclosureFanTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnclosureFanTableEntry" - }, - "index": [ - "enclosureFanNumber" - ], - "value": [ - "enclosureFanTable", - 1 - ] - }, - "enclosureFanNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 1 - ] - }, - "enclosureFanName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 2 - ] - }, - "enclosureFanState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "failed", - "4": "missing", - "5": "degraded" - } - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 4 - ] - }, - "enclosureFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "stopped", - "3": "slow", - "4": "medium", - "5": "fast" - } - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 11 - ] - }, - "enclosureFanComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 15 - ] - }, - "enclosureFanFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 20 - ] - }, - "enclosureFanDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureFanTableEntry", - 21 - ] - }, - "EnclosurePowerSupplyTableEntry": { - "tp": "SEQUENCE" - }, - "enclosurePowerSupplyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EnclosurePowerSupplyTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 9 - ] - }, - "enclosurePowerSupplyTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnclosurePowerSupplyTableEntry" - }, - "index": [ - "enclosurePowerSupplyNumber" - ], - "value": [ - "enclosurePowerSupplyTable", - 1 - ] - }, - "enclosurePowerSupplyNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 1 - ] - }, - "enclosurePowerSupplyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 2 - ] - }, - "enclosurePowerSupplyState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "failed", - "4": "missing", - "5": "degraded" - } - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 4 - ] - }, - "enclosurePowerSupplyPartNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 7 - ] - }, - "enclosurePowerSupplyComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 9 - ] - }, - "enclosurePowerSupplyFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 15 - ] - }, - "enclosurePowerSupplyDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosurePowerSupplyTableEntry", - 16 - ] - }, - "EnclosureTemperatureProbeTableEntry": { - "tp": "SEQUENCE" - }, - "enclosureTemperatureProbeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EnclosureTemperatureProbeTableEntry" - }, - "index": null, - "value": [ - "physicalDevices", - 11 - ] - }, - "enclosureTemperatureProbeTableEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnclosureTemperatureProbeTableEntry" - }, - "index": [ - "enclosureTemperatureProbeNumber" - ], - "value": [ - "enclosureTemperatureProbeTable", - 1 - ] - }, - "enclosureTemperatureProbeNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 1 - ] - }, - "enclosureTemperatureProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 2 - ] - }, - "enclosureTemperatureProbeState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ready", - "3": "failed", - "4": "missing", - "5": "degraded" - } - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 4 - ] - }, - "enclosureTemperatureProbeMinWarningValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 7 - ] - }, - "enclosureTemperatureProbeMinCriticalValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 8 - ] - }, - "enclosureTemperatureProbeMaxWarningValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 9 - ] - }, - "enclosureTemperatureProbeMaxCriticalValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 10 - ] - }, - "enclosureTemperatureProbeCurValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 11 - ] - }, - "enclosureTemperatureProbeComponentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectStatusEnum" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 13 - ] - }, - "enclosureTemperatureProbeFQDD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FQDDString" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 15 - ] - }, - "enclosureTemperatureProbeDisplayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureTemperatureProbeTableEntry", - 16 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/MG-SNMP-UPS-MIB.json b/mibs/parsed/MG-SNMP-UPS-MIB.json deleted file mode 100644 index bf82f1f..0000000 --- a/mibs/parsed/MG-SNMP-UPS-MIB.json +++ /dev/null @@ -1,2978 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "enterprises", - "IpAddress", - "TimeTicks" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ] - ], - "merlinGerin": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 705 - ] - }, - "upsmg": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "merlinGerin", - 1 - ] - }, - "upsmgIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 1 - ] - }, - "upsmgManagement": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 2 - ] - }, - "upsmgReceptacle": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 3 - ] - }, - "upsmgConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 4 - ] - }, - "upsmgBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 5 - ] - }, - "upsmgInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 6 - ] - }, - "upsmgOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 7 - ] - }, - "upsmgEnviron": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 8 - ] - }, - "upsmgControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 9 - ] - }, - "upsmgTest": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 10 - ] - }, - "upsmgTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 11 - ] - }, - "upsmgAgent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 12 - ] - }, - "upsmgRemote": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsmg", - 13 - ] - }, - "upsmgIdentFamilyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 1 - ] - }, - "upsmgIdentModelName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 2 - ] - }, - "upsmgIdentRevisionLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 3 - ] - }, - "upsmgIdentFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 4 - ] - }, - "upsmgIdentUserID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 5 - ] - }, - "upsmgIdentInstallationDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 6 - ] - }, - "upsmgIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgIdent", - 7 - ] - }, - "upsmgManagersNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgManagement", - 1 - ] - }, - "upsmgManagersTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgManagersEntry" - }, - "index": null, - "value": [ - "upsmgManagement", - 2 - ] - }, - "upsmgManagersEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgManagersEntry" - }, - "index": [ - "mgmanagerIndex" - ], - "value": [ - "upsmgManagersTable", - 1 - ] - }, - "UpsmgManagersEntry": { - "tp": "SEQUENCE" - }, - "mgmanagerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 1 - ] - }, - "mgmanagerDeviceNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 2 - ] - }, - "mgmanagerNMSType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "umclient", - "2": "decnetview", - "3": "umview", - "4": "dview", - "5": "hpopenview", - "6": "sunnetmanager", - "7": "novellnms", - "8": "ibmnetview", - "9": "other", - "10": "autolearning" - } - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 3 - ] - }, - "mgmanagerCommType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "invalid", - "3": "cmip", - "4": "snmpv1", - "5": "snmpv2" - } - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 4 - ] - }, - "mgmanagerDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 5 - ] - }, - "mgmanagerAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 6 - ] - }, - "mgmanagerCommunity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 7 - ] - }, - "mgmanagerSeverityLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 8 - ] - }, - "mgmanagerTrapAck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "mgack", - "2": "mgnoack", - "3": "stdnomg", - "4": "mgacks", - "5": "cpqnoack" - } - }, - "index": null, - "value": [ - "upsmgManagersEntry", - 9 - ] - }, - "upsmgReceptaclesNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptacle", - 1 - ] - }, - "upsmgReceptaclesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgReceptaclesEntry" - }, - "index": null, - "value": [ - "upsmgReceptacle", - 2 - ] - }, - "upsmgReceptaclesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgReceptaclesEntry" - }, - "index": [ - "mgreceptacleIndex" - ], - "value": [ - "upsmgReceptaclesTable", - 1 - ] - }, - "UpsmgReceptaclesEntry": { - "tp": "SEQUENCE" - }, - "mgreceptacleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 1 - ] - }, - "mgreceptacleLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 2 - ] - }, - "mgreceptacleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 3 - ] - }, - "mgreceptacleIdent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 4 - ] - }, - "mgreceptacleState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "manualON", - "2": "manualOFF", - "3": "normalON", - "4": "normalOFF", - "5": "controlON", - "6": "controlOFF", - "7": "scheduleON", - "8": "scheduleOFF" - } - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 5 - ] - }, - "mgreceptacleReceptacle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 6 - ] - }, - "mgreceptaclePowerCons": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 7 - ] - }, - "mgreceptacleOverload": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 8 - ] - }, - "mgreceptacleAutonomy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgReceptaclesEntry", - 9 - ] - }, - "upsmgConfigBatteryInstalled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 1 - ] - }, - "upsmgConfigNominalBatteryVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 2 - ] - }, - "upsmgConfigNominalBatteryTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 3 - ] - }, - "upsmgConfigNominalRechargeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 4 - ] - }, - "upsmgConfigMinRechargeLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 5 - ] - }, - "upsmgConfigMaxRechargeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 6 - ] - }, - "upsmgConfigLowBatteryTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 7 - ] - }, - "upsmgConfigLowBatteryLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 8 - ] - }, - "upsmgConfigAutoRestart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "always", - "2": "never", - "3": "onmain" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 9 - ] - }, - "upsmgConfigShutdownTimer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 10 - ] - }, - "upsmgConfigSysShutDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 11 - ] - }, - "upsmgConfigVARating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 12 - ] - }, - "upsmgConfigLowTransfer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 13 - ] - }, - "upsmgConfigHighTransfer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 14 - ] - }, - "upsmgConfigOutputNominalVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 15 - ] - }, - "upsmgConfigOutputNominalCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 16 - ] - }, - "upsmgConfigOutputNomFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 17 - ] - }, - "upsmgConfigByPassType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "relay", - "3": "static" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 18 - ] - }, - "upsmgConfigAlarmAudible": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 19 - ] - }, - "upsmgConfigAlarmTimeDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 20 - ] - }, - "upsmgConfigDevicesNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 21 - ] - }, - "upsmgConfigDevicesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgConfigDevicesEntry" - }, - "index": null, - "value": [ - "upsmgConfig", - 22 - ] - }, - "upsmgConfigDevicesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgConfigDevicesEntry" - }, - "index": [ - "mgdeviceIndex" - ], - "value": [ - "upsmgConfigDevicesTable", - 1 - ] - }, - "UpsmgConfigDevicesEntry": { - "tp": "SEQUENCE" - }, - "mgdeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 1 - ] - }, - "mgdeviceReceptacleNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 2 - ] - }, - "mgdeviceIdent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 3 - ] - }, - "mgdeviceVaRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 4 - ] - }, - "mgdeviceSequenceOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 5 - ] - }, - "mgdeviceSequenceOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 6 - ] - }, - "mgdeviceShutdownDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 7 - ] - }, - "mgdeviceBootUpDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigDevicesEntry", - 8 - ] - }, - "upsmgConfigReceptaclesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgConfigReceptaclesEntry" - }, - "index": null, - "value": [ - "upsmgConfig", - 23 - ] - }, - "upsmgConfigReceptaclesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgConfigReceptaclesEntry" - }, - "index": [ - "mgreceptacleIndexb" - ], - "value": [ - "upsmgConfigReceptaclesTable", - 1 - ] - }, - "UpsmgConfigReceptaclesEntry": { - "tp": "SEQUENCE" - }, - "mgreceptacleIndexb": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 1 - ] - }, - "mgreceptacleStateTurnOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off", - "3": "last", - "4": "schedule" - } - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 2 - ] - }, - "mgreceptacleStateMainReturn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off", - "3": "last", - "4": "schedule" - } - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 3 - ] - }, - "mgreceptacleStateDischarge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off", - "3": "last", - "4": "schedule" - } - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 4 - ] - }, - "mgreceptacleShutoffLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 5 - ] - }, - "mgreceptacleShutoffTimer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 6 - ] - }, - "mgreceptacleRestartLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 7 - ] - }, - "mgreceptacleRestartDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 8 - ] - }, - "mgreceptacleShutdownDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 9 - ] - }, - "mgreceptacleBootUpDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigReceptaclesEntry", - 10 - ] - }, - "upsmgConfigExtAlarmNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 24 - ] - }, - "upsmgConfigExtAlarmTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgConfigExtAlarmEntry" - }, - "index": null, - "value": [ - "upsmgConfig", - 25 - ] - }, - "upsmgConfigExtAlarmEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgConfigExtAlarmEntry" - }, - "index": [ - "mgextAlarmIndex" - ], - "value": [ - "upsmgConfigExtAlarmTable", - 1 - ] - }, - "UpsmgConfigExtAlarmEntry": { - "tp": "SEQUENCE" - }, - "mgextAlarmIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigExtAlarmEntry", - 1 - ] - }, - "mgextAlarmUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigExtAlarmEntry", - 2 - ] - }, - "upsmgConfigEmergencyTestFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 26 - ] - }, - "upsmgConfigEmergencyOnByPass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 27 - ] - }, - "upsmgConfigEmergencyOverload": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgConfig", - 28 - ] - }, - "upsmgConfigControlDayTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgConfigControlDayEntry" - }, - "index": null, - "value": [ - "upsmgConfig", - 29 - ] - }, - "upsmgConfigControlDayEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgConfigControlDayEntry" - }, - "index": [ - "mgcontrolDayIndex" - ], - "value": [ - "upsmgConfigControlDayTable", - 1 - ] - }, - "UpsmgConfigControlDayEntry": { - "tp": "SEQUENCE" - }, - "mgcontrolDayIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigControlDayEntry", - 1 - ] - }, - "mgcontrolDayOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigControlDayEntry", - 2 - ] - }, - "mgcontrolDayOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigControlDayEntry", - 3 - ] - }, - "upsmgConfigLowBooster": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 30 - ] - }, - "upsmgConfigHighBooster": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 31 - ] - }, - "upsmgConfigLowFader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 32 - ] - }, - "upsmgConfigHighFader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfig", - 33 - ] - }, - "upsmgConfigEnvironmentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgConfigEnvironmentEntry" - }, - "index": null, - "value": [ - "upsmgConfig", - 34 - ] - }, - "upsmgConfigEnvironmentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgConfigEnvironmentEntry" - }, - "index": [ - "upsmgConfigSensorIndex" - ], - "value": [ - "upsmgConfigEnvironmentTable", - 1 - ] - }, - "UpsmgConfigEnvironmentEntry": { - "tp": "SEQUENCE" - }, - "upsmgConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 1 - ] - }, - "upsmgConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 2 - ] - }, - "upsmgConfigTemperatureLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 3 - ] - }, - "upsmgConfigTemperatureHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 4 - ] - }, - "upsmgConfigTemperatureHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 5 - ] - }, - "upsmgConfigHumidityLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 6 - ] - }, - "upsmgConfigHumidityHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 7 - ] - }, - "upsmgConfigHumidityHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 8 - ] - }, - "upsmgConfigInput1Name": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 9 - ] - }, - "upsmgConfigInput1ClosedLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 10 - ] - }, - "upsmgConfigInput1OpenLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 11 - ] - }, - "upsmgConfigInput2Name": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 12 - ] - }, - "upsmgConfigInput2ClosedLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 13 - ] - }, - "upsmgConfigInput2OpenLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgConfigEnvironmentEntry", - 14 - ] - }, - "upsmgBatteryRemainingTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 1 - ] - }, - "upsmgBatteryLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 2 - ] - }, - "upsmgBatteryRechargeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 3 - ] - }, - "upsmgBatteryRechargeLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 4 - ] - }, - "upsmgBatteryVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 5 - ] - }, - "upsmgBatteryCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 6 - ] - }, - "upsmgBatteryTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 7 - ] - }, - "upsmgBatteryFullRechargeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgBattery", - 8 - ] - }, - "upsmgBatteryFaultBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 9 - ] - }, - "upsmgBatteryNoBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 10 - ] - }, - "upsmgBatteryReplacement": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 11 - ] - }, - "upsmgBatteryUnavailableBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 12 - ] - }, - "upsmgBatteryNotHighCharge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 13 - ] - }, - "upsmgBatteryLowBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 14 - ] - }, - "upsmgBatteryChargerFault": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 15 - ] - }, - "upsmgBatteryLowCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 16 - ] - }, - "upsmgBatteryLowRecharge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgBattery", - 17 - ] - }, - "upsmgInputPhaseNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInput", - 1 - ] - }, - "upsmgInputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgInputPhaseEntry" - }, - "index": null, - "value": [ - "upsmgInput", - 2 - ] - }, - "upsmgInputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgInputPhaseEntry" - }, - "index": [ - "mginputIndex" - ], - "value": [ - "upsmgInputPhaseTable", - 1 - ] - }, - "UpsmgInputPhaseEntry": { - "tp": "SEQUENCE" - }, - "mginputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInputPhaseEntry", - 1 - ] - }, - "mginputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInputPhaseEntry", - 2 - ] - }, - "mginputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInputPhaseEntry", - 3 - ] - }, - "mginputMinimumVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInputPhaseEntry", - 4 - ] - }, - "mginputMaximumVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInputPhaseEntry", - 5 - ] - }, - "mginputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgInputPhaseEntry", - 6 - ] - }, - "upsmgInputBadStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgInput", - 3 - ] - }, - "upsmgInputLineFailCause": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "outoftolvolt", - "3": "outoftolfreq", - "4": "utilityoff" - } - }, - "index": null, - "value": [ - "upsmgInput", - 4 - ] - }, - "upsmgOutputPhaseNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutput", - 1 - ] - }, - "upsmgOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgOutputPhaseEntry" - }, - "index": null, - "value": [ - "upsmgOutput", - 2 - ] - }, - "upsmgOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgOutputPhaseEntry" - }, - "index": [ - "mgoutputPhaseIndex" - ], - "value": [ - "upsmgOutputPhaseTable", - 1 - ] - }, - "UpsmgOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "mgoutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutputPhaseEntry", - 1 - ] - }, - "mgoutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutputPhaseEntry", - 2 - ] - }, - "mgoutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutputPhaseEntry", - 3 - ] - }, - "mgoutputLoadPerPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutputPhaseEntry", - 4 - ] - }, - "mgoutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutputPhaseEntry", - 5 - ] - }, - "upsmgOutputOnBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 3 - ] - }, - "upsmgOutputOnByPass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 4 - ] - }, - "upsmgOutputUnavailableByPass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 5 - ] - }, - "upsmgOutputNoByPass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 6 - ] - }, - "upsmgOutputUtilityOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 7 - ] - }, - "upsmgOutputOnBoost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 8 - ] - }, - "upsmgOutputInverterOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 9 - ] - }, - "upsmgOutputOverLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 10 - ] - }, - "upsmgOutputOverTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgOutput", - 11 - ] - }, - "upsmgOutputOnBuck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgOutput", - 12 - ] - }, - "upsmgEnvironAmbientTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnviron", - 1 - ] - }, - "upsmgEnvironAmbientHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnviron", - 2 - ] - }, - "upsmgEnvironExtAlarmTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgEnvironExtAlarmEntry" - }, - "index": null, - "value": [ - "upsmgEnviron", - 3 - ] - }, - "upsmgEnvironExtAlarmEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgEnvironExtAlarmEntry" - }, - "index": [ - "mgalarmNum" - ], - "value": [ - "upsmgEnvironExtAlarmTable", - 1 - ] - }, - "UpsmgEnvironExtAlarmEntry": { - "tp": "SEQUENCE" - }, - "mgalarmNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironExtAlarmEntry", - 1 - ] - }, - "mgalarmState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "inactive" - } - }, - "index": null, - "value": [ - "upsmgEnvironExtAlarmEntry", - 2 - ] - }, - "upsmgEnvironSensorNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnviron", - 4 - ] - }, - "upsmgEnvironSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgEnvironSensorEntry" - }, - "index": null, - "value": [ - "upsmgEnviron", - 5 - ] - }, - "upsmgEnvironSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgEnvironSensorEntry" - }, - "index": [ - "mgsensorNum" - ], - "value": [ - "upsmgEnvironSensorTable", - 1 - ] - }, - "UpsmgEnvironSensorEntry": { - "tp": "SEQUENCE" - }, - "mgsensorNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironSensorEntry", - 1 - ] - }, - "mgsensorTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironSensorEntry", - 2 - ] - }, - "mgsensorHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironSensorEntry", - 3 - ] - }, - "upsmgEnvironmentNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnviron", - 6 - ] - }, - "upsmgEnvironmentSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgEnvironmentSensorEntry" - }, - "index": null, - "value": [ - "upsmgEnviron", - 7 - ] - }, - "upsmgEnvironmentSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgEnvironmentSensorEntry" - }, - "index": [ - "upsmgEnvironmentIndex" - ], - "value": [ - "upsmgEnvironmentSensorTable", - 1 - ] - }, - "UpsmgEnvironmentSensorEntry": { - "tp": "SEQUENCE" - }, - "upsmgEnvironmentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 1 - ] - }, - "upsmgEnvironmentComFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 2 - ] - }, - "upsmgEnvironmentTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 3 - ] - }, - "upsmgEnvironmentTemperatureLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 4 - ] - }, - "upsmgEnvironmentTemperatureHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 5 - ] - }, - "upsmgEnvironmentHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 6 - ] - }, - "upsmgEnvironmentHumidityLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 7 - ] - }, - "upsmgEnvironmentHumidityHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 8 - ] - }, - "upsmgEnvironmentInput1State": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 9 - ] - }, - "upsmgEnvironmentInput2State": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "upsmgEnvironmentSensorEntry", - 10 - ] - }, - "upsmgControlReceptaclesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsmgControlReceptaclesEntry" - }, - "index": null, - "value": [ - "upsmgControl", - 1 - ] - }, - "upsmgControlReceptaclesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsmgControlReceptaclesEntry" - }, - "index": [ - "mgreceptacleIndexc" - ], - "value": [ - "upsmgControlReceptaclesTable", - 1 - ] - }, - "UpsmgControlReceptaclesEntry": { - "tp": "SEQUENCE" - }, - "mgreceptacleIndexc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 1 - ] - }, - "mgreceptacleOnDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 2 - ] - }, - "mgreceptacleOnCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nothing", - "2": "start", - "3": "stop" - } - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 3 - ] - }, - "mgreceptacleOnStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "started", - "3": "inprogressinups", - "4": "completed" - } - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 4 - ] - }, - "mgreceptacleOffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 5 - ] - }, - "mgreceptacleOffCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nothing", - "2": "start", - "3": "stop" - } - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 6 - ] - }, - "mgreceptacleOffStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "started", - "3": "inprogressinups", - "4": "completed" - } - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 7 - ] - }, - "mgreceptacleToggleDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 8 - ] - }, - "mgreceptacleToggleCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nothing", - "2": "start", - "3": "stop" - } - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 9 - ] - }, - "mgreceptacleToggleStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "started", - "3": "inprogressinups", - "4": "completed" - } - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 10 - ] - }, - "mgreceptacleToggleDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgControlReceptaclesEntry", - 11 - ] - }, - "upsmgControlDayOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sunday", - "2": "monday", - "3": "tuesday", - "4": "wednesday", - "5": "thursday", - "6": "friday", - "7": "saterday", - "8": "none" - } - }, - "index": null, - "value": [ - "upsmgControl", - 2 - ] - }, - "upsmgControlDayOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sunday", - "2": "monday", - "3": "tuesday", - "4": "wednesday", - "5": "thursday", - "6": "friday", - "7": "saterday", - "8": "none" - } - }, - "index": null, - "value": [ - "upsmgControl", - 3 - ] - }, - "upsmgTestBatterySchedule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "weekly", - "3": "monthly", - "4": "atturnon", - "5": "none", - "6": "dayly" - } - }, - "index": null, - "value": [ - "upsmgTest", - 1 - ] - }, - "upsmgTestDiagnostics": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "default", - "2": "start" - } - }, - "index": null, - "value": [ - "upsmgTest", - 2 - ] - }, - "upsmgTestDiagResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "success", - "2": "failed", - "3": "none" - } - }, - "index": null, - "value": [ - "upsmgTest", - 3 - ] - }, - "upsmgTestBatteryCalibration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "default", - "2": "start" - } - }, - "index": null, - "value": [ - "upsmgTest", - 4 - ] - }, - "upsmgTestLastCalibration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgTest", - 5 - ] - }, - "upsmgTestIndicators": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgTest", - 6 - ] - }, - "upsmgTestCommandLine": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgTest", - 7 - ] - }, - "upsmgTestCommandReady": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgTest", - 8 - ] - }, - "upsmgTestResponseLine": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgTest", - 9 - ] - }, - "upsmgTestResponseReady": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgTest", - 10 - ] - }, - "upsmgTestBatteryResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "msuccess", - "2": "mfailed", - "3": "ssuccess", - "4": "sfailed", - "5": "none" - } - }, - "index": null, - "value": [ - "upsmgTest", - 11 - ] - }, - "upsmgAgentIpaddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsmgAgent", - 1 - ] - }, - "upsmgAgentSubnetMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsmgAgent", - 2 - ] - }, - "upsmgAgentDefGateway": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsmgAgent", - 3 - ] - }, - "upsmgAgentBaudRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 4 - ] - }, - "upsmgAgentPollRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 5 - ] - }, - "upsmgAgentType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "deviceEth", - "2": "deviceTR", - "3": "proxyEth", - "4": "proxyTR", - "5": "other" - } - }, - "index": null, - "value": [ - "upsmgAgent", - 6 - ] - }, - "upsmgAgentTrapAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 7 - ] - }, - "upsmgAgentTrapAlarmRetry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 8 - ] - }, - "upsmgAgentReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "reset", - "2": "nothing" - } - }, - "index": null, - "value": [ - "upsmgAgent", - 9 - ] - }, - "upsmgAgentFactReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "reset", - "2": "nothing" - } - }, - "index": null, - "value": [ - "upsmgAgent", - 10 - ] - }, - "upsmgAgentMibVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 11 - ] - }, - "upsmgAgentFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsmgAgent", - 12 - ] - }, - "upsmgAgentCommUPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 13 - ] - }, - "upsmgAgentTrapAck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 14 - ] - }, - "upsmgAgentAutoLearning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgAgent", - 15 - ] - }, - "upsmgAgentBootP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgAgent", - 16 - ] - }, - "upsmgAgentTFTP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsmgAgent", - 17 - ] - }, - "upsmgAgentTrapSignature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgAgent", - 18 - ] - }, - "upsmgRemoteOnBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsmgRemote", - 1 - ] - }, - "upsmgRemoteIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsmgRemote", - 2 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/NETBOTZ300-MIB.json b/mibs/parsed/NETBOTZ300-MIB.json deleted file mode 100644 index 02f7af9..0000000 --- a/mibs/parsed/NETBOTZ300-MIB.json +++ /dev/null @@ -1,2569 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "enterprises", - "Counter32", - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString", - "DateAndTime" - ] - ] - ], - "netBotz-APC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 5528 - ] - }, - "netBotz": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz-APC", - 100 - ] - }, - "netBotzTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 10 - ] - }, - "netBotzTrapParms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 11 - ] - }, - "netBotzProducts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 20 - ] - }, - "netBotzGenericTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzTraps", - 1 - ] - }, - "netBotzSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzTraps", - 2 - ] - }, - "netBotzPodTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzTraps", - 3 - ] - }, - "netBotzPortTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzTraps", - 4 - ] - }, - "netBotzTempSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 1 - ] - }, - "netBotzHumiditySensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 2 - ] - }, - "netBotzDewPointSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 3 - ] - }, - "netBotzAirFlowSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 4 - ] - }, - "netBotzAudioSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 5 - ] - }, - "netBotzAmpDetectSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 6 - ] - }, - "netBotzDryContactSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 7 - ] - }, - "netBotzCameraMotionSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 8 - ] - }, - "netBotzDoorSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 9 - ] - }, - "netBotzMicPlugSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 10 - ] - }, - "netBotzSpeakerPlugSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 11 - ] - }, - "netBotzTVSignalSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 12 - ] - }, - "netBotzGPSPositionSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 13 - ] - }, - "netBotzGPSMovementSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 14 - ] - }, - "netBotzGPSStatusSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 15 - ] - }, - "netBotzWirelessStatusSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 22 - ] - }, - "netBotzPacketDropSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 23 - ] - }, - "netBotzSNMPCrawlerSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 24 - ] - }, - "netBotzPlugModuleStatusSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 25 - ] - }, - "netBotzOutputControlSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 26 - ] - }, - "netBotzMultiRAESensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 27 - ] - }, - "netBotzMultiRAESensorStatusTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 28 - ] - }, - "netBotzMultiRAEDeviceStatusTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 29 - ] - }, - "netBotzLinkStatusSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 30 - ] - }, - "netBotzLoopVoltageSensorTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensorTraps", - 31 - ] - }, - "netBotzBasePodTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzPodTraps", - 1 - ] - }, - "netBotzSensorPodTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzPodTraps", - 2 - ] - }, - "netBotzCameraPodTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzPodTraps", - 3 - ] - }, - "netBotzCCTVPodTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzPodTraps", - 4 - ] - }, - "netBotz4to20mAPodTraps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzPodTraps", - 5 - ] - }, - "netBotzBotz": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzProducts", - 10 - ] - }, - "netBotzWallBotz500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2000 - ] - }, - "netBotz420Wall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2001 - ] - }, - "raeSystemsAreaConnect500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2002 - ] - }, - "netBotz420Rack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2003 - ] - }, - "netBotz320Wall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2004 - ] - }, - "netBotz320Rack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2005 - ] - }, - "netBotz420ERack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2006 - ] - }, - "netBotz320ERack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2007 - ] - }, - "netBotz220Camera": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2008 - ] - }, - "apprion500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2009 - ] - }, - "avocent500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2010 - ] - }, - "netBotz320EWall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2011 - ] - }, - "netBotz420EWall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2012 - ] - }, - "netBotz550Rack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2013 - ] - }, - "netBotz450Rack": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2014 - ] - }, - "netBotz455Wall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2015 - ] - }, - "netBotz355Wall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzBotz", - 2016 - ] - }, - "OperStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disconnected", - "1": "error", - "2": "normal" - } - }, - "display_hint": null - }, - "ErrorStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "normal", - "1": "info", - "2": "warning", - "3": "error", - "4": "critical", - "5": "failure" - } - }, - "display_hint": null - }, - "BoolValue": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "no", - "1": "yes", - "2": "null" - } - }, - "display_hint": null - }, - "netBotzEnclosures": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 2 - ] - }, - "netBotzPorts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 3 - ] - }, - "netBotzSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 4 - ] - }, - "netBotzErrors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotz", - 5 - ] - }, - "netBotzNumericSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensors", - 1 - ] - }, - "netBotzStateSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netBotzSensors", - 2 - ] - }, - "netBotzErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "netBotz", - 100 - ] - }, - "enclosureTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EnclosureEntry" - }, - "index": null, - "value": [ - "netBotzEnclosures", - 1 - ] - }, - "enclosureEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnclosureEntry" - }, - "index": [ - "enclosureIndex" - ], - "value": [ - "enclosureTable", - 1 - ] - }, - "EnclosureEntry": { - "tp": "SEQUENCE" - }, - "enclosureId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureEntry", - 1 - ] - }, - "enclosureStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OperStatus" - }, - "index": null, - "value": [ - "enclosureEntry", - 2 - ] - }, - "enclosureErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "enclosureEntry", - 3 - ] - }, - "enclosureLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureEntry", - 4 - ] - }, - "enclosureParentEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureEntry", - 5 - ] - }, - "enclosureDockedToEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "enclosureEntry", - 6 - ] - }, - "enclosureIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "enclosureEntry", - 7 - ] - }, - "dinPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DINPortEntry" - }, - "index": null, - "value": [ - "netBotzPorts", - 1 - ] - }, - "dinPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DINPortEntry" - }, - "index": [ - "dinPortIndex" - ], - "value": [ - "dinPortTable", - 1 - ] - }, - "DINPortEntry": { - "tp": "SEQUENCE" - }, - "dinPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dinPortEntry", - 1 - ] - }, - "dinPortStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OperStatus" - }, - "index": null, - "value": [ - "dinPortEntry", - 2 - ] - }, - "dinPortLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dinPortEntry", - 3 - ] - }, - "dinPortEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dinPortEntry", - 4 - ] - }, - "dinPortSensorIdSuffix": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dinPortEntry", - 5 - ] - }, - "dinPortSupportsAverage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BoolValue" - }, - "index": null, - "value": [ - "dinPortEntry", - 6 - ] - }, - "dinPortSupportsRMS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BoolValue" - }, - "index": null, - "value": [ - "dinPortEntry", - 7 - ] - }, - "dinPortSupportsDryContact": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BoolValue" - }, - "index": null, - "value": [ - "dinPortEntry", - 8 - ] - }, - "dinPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dinPortEntry", - 9 - ] - }, - "otherPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF OtherPortEntry" - }, - "index": null, - "value": [ - "netBotzPorts", - 10 - ] - }, - "otherPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OtherPortEntry" - }, - "index": [ - "otherPortIndex" - ], - "value": [ - "otherPortTable", - 1 - ] - }, - "OtherPortEntry": { - "tp": "SEQUENCE" - }, - "otherPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherPortEntry", - 1 - ] - }, - "otherPortStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OperStatus" - }, - "index": null, - "value": [ - "otherPortEntry", - 2 - ] - }, - "otherPortLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherPortEntry", - 3 - ] - }, - "otherPortEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherPortEntry", - 4 - ] - }, - "otherPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "otherPortEntry", - 5 - ] - }, - "tempSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TempSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 1 - ] - }, - "tempSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TempSensorEntry" - }, - "index": [ - "tempSensorIndex" - ], - "value": [ - "tempSensorTable", - 1 - ] - }, - "TempSensorEntry": { - "tp": "SEQUENCE" - }, - "tempSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "tempSensorEntry", - 1 - ] - }, - "tempSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "tempSensorEntry", - 2 - ] - }, - "tempSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "tempSensorEntry", - 3 - ] - }, - "tempSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "tempSensorEntry", - 4 - ] - }, - "tempSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "tempSensorEntry", - 5 - ] - }, - "tempSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "tempSensorEntry", - 6 - ] - }, - "tempSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "tempSensorEntry", - 7 - ] - }, - "tempSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "tempSensorEntry", - 8 - ] - }, - "tempSensorValueIntF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "tempSensorEntry", - 9 - ] - }, - "tempSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "tempSensorEntry", - 10 - ] - }, - "humiSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HumiSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 2 - ] - }, - "humiSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HumiSensorEntry" - }, - "index": [ - "humiSensorIndex" - ], - "value": [ - "humiSensorTable", - 1 - ] - }, - "HumiSensorEntry": { - "tp": "SEQUENCE" - }, - "humiSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "humiSensorEntry", - 1 - ] - }, - "humiSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "humiSensorEntry", - 2 - ] - }, - "humiSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "humiSensorEntry", - 3 - ] - }, - "humiSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "humiSensorEntry", - 4 - ] - }, - "humiSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "humiSensorEntry", - 5 - ] - }, - "humiSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "humiSensorEntry", - 6 - ] - }, - "humiSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "humiSensorEntry", - 7 - ] - }, - "humiSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "humiSensorEntry", - 8 - ] - }, - "humiSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "humiSensorEntry", - 9 - ] - }, - "dewPointSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DewPointSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 3 - ] - }, - "dewPointSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DewPointSensorEntry" - }, - "index": [ - "dewPointSensorIndex" - ], - "value": [ - "dewPointSensorTable", - 1 - ] - }, - "DewPointSensorEntry": { - "tp": "SEQUENCE" - }, - "dewPointSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 1 - ] - }, - "dewPointSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 2 - ] - }, - "dewPointSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 3 - ] - }, - "dewPointSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 4 - ] - }, - "dewPointSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 5 - ] - }, - "dewPointSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 6 - ] - }, - "dewPointSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 7 - ] - }, - "dewPointSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 8 - ] - }, - "dewPointSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dewPointSensorEntry", - 9 - ] - }, - "audioSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AudioSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 4 - ] - }, - "audioSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AudioSensorEntry" - }, - "index": [ - "audioSensorIndex" - ], - "value": [ - "audioSensorTable", - 1 - ] - }, - "AudioSensorEntry": { - "tp": "SEQUENCE" - }, - "audioSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "audioSensorEntry", - 1 - ] - }, - "audioSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "audioSensorEntry", - 2 - ] - }, - "audioSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "audioSensorEntry", - 3 - ] - }, - "audioSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "audioSensorEntry", - 4 - ] - }, - "audioSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "audioSensorEntry", - 5 - ] - }, - "audioSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "audioSensorEntry", - 6 - ] - }, - "audioSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "audioSensorEntry", - 7 - ] - }, - "audioSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "audioSensorEntry", - 8 - ] - }, - "audioSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "audioSensorEntry", - 9 - ] - }, - "airFlowSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFlowSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 5 - ] - }, - "airFlowSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFlowSensorEntry" - }, - "index": [ - "airFlowSensorIndex" - ], - "value": [ - "airFlowSensorTable", - 1 - ] - }, - "AirFlowSensorEntry": { - "tp": "SEQUENCE" - }, - "airFlowSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 1 - ] - }, - "airFlowSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 2 - ] - }, - "airFlowSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 3 - ] - }, - "airFlowSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 4 - ] - }, - "airFlowSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 5 - ] - }, - "airFlowSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 6 - ] - }, - "airFlowSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 7 - ] - }, - "airFlowSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 8 - ] - }, - "airFlowSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "airFlowSensorEntry", - 9 - ] - }, - "ampDetectSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AmpDetectSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 6 - ] - }, - "ampDetectSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AmpDetectSensorEntry" - }, - "index": [ - "ampDetectSensorIndex" - ], - "value": [ - "ampDetectSensorTable", - 1 - ] - }, - "AmpDetectSensorEntry": { - "tp": "SEQUENCE" - }, - "ampDetectSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 1 - ] - }, - "ampDetectSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 2 - ] - }, - "ampDetectSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 3 - ] - }, - "ampDetectSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 4 - ] - }, - "ampDetectSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 5 - ] - }, - "ampDetectSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 6 - ] - }, - "ampDetectSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 7 - ] - }, - "ampDetectSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 8 - ] - }, - "ampDetectSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ampDetectSensorEntry", - 9 - ] - }, - "otherNumericSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF OtherNumericSensorEntry" - }, - "index": null, - "value": [ - "netBotzNumericSensors", - 10 - ] - }, - "otherNumericSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OtherNumericSensorEntry" - }, - "index": [ - "otherNumericSensorIndex" - ], - "value": [ - "otherNumericSensorTable", - 1 - ] - }, - "OtherNumericSensorEntry": { - "tp": "SEQUENCE" - }, - "otherNumericSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 1 - ] - }, - "otherNumericSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 2 - ] - }, - "otherNumericSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 3 - ] - }, - "otherNumericSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 4 - ] - }, - "otherNumericSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 5 - ] - }, - "otherNumericSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 6 - ] - }, - "otherNumericSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 7 - ] - }, - "otherNumericSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 8 - ] - }, - "otherNumericSensorUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 9 - ] - }, - "otherNumericSensorValueIntX1000": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 10 - ] - }, - "otherNumericSensorValueIntX1000000": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 11 - ] - }, - "otherNumericSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "otherNumericSensorEntry", - 12 - ] - }, - "dryContactSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DryContactSensorEntry" - }, - "index": null, - "value": [ - "netBotzStateSensors", - 1 - ] - }, - "dryContactSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DryContactSensorEntry" - }, - "index": [ - "dryContactSensorIndex" - ], - "value": [ - "dryContactSensorTable", - 1 - ] - }, - "DryContactSensorEntry": { - "tp": "SEQUENCE" - }, - "dryContactSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 1 - ] - }, - "dryContactSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "-1": "null", - "0": "open", - "1": "closed" - } - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 2 - ] - }, - "dryContactSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 3 - ] - }, - "dryContactSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 4 - ] - }, - "dryContactSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 5 - ] - }, - "dryContactSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 6 - ] - }, - "dryContactSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 7 - ] - }, - "dryContactSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dryContactSensorEntry", - 8 - ] - }, - "doorSwitchSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DoorSwitchSensorEntry" - }, - "index": null, - "value": [ - "netBotzStateSensors", - 2 - ] - }, - "doorSwitchSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DoorSwitchSensorEntry" - }, - "index": [ - "doorSwitchSensorIndex" - ], - "value": [ - "doorSwitchSensorTable", - 1 - ] - }, - "DoorSwitchSensorEntry": { - "tp": "SEQUENCE" - }, - "doorSwitchSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 1 - ] - }, - "doorSwitchSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "-1": "null", - "0": "open", - "1": "closed" - } - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 2 - ] - }, - "doorSwitchSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 3 - ] - }, - "doorSwitchSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 4 - ] - }, - "doorSwitchSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 5 - ] - }, - "doorSwitchSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 6 - ] - }, - "doorSwitchSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 7 - ] - }, - "doorSwitchSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "doorSwitchSensorEntry", - 8 - ] - }, - "cameraMotionSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CameraMotionSensorEntry" - }, - "index": null, - "value": [ - "netBotzStateSensors", - 3 - ] - }, - "cameraMotionSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CameraMotionSensorEntry" - }, - "index": [ - "cameraMotionSensorIndex" - ], - "value": [ - "cameraMotionSensorTable", - 1 - ] - }, - "CameraMotionSensorEntry": { - "tp": "SEQUENCE" - }, - "cameraMotionSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 1 - ] - }, - "cameraMotionSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "-1": "null", - "0": "noMotion", - "1": "motionDetected" - } - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 2 - ] - }, - "cameraMotionSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 3 - ] - }, - "cameraMotionSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 4 - ] - }, - "cameraMotionSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 5 - ] - }, - "cameraMotionSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 6 - ] - }, - "cameraMotionSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 7 - ] - }, - "cameraMotionSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cameraMotionSensorEntry", - 8 - ] - }, - "otherStateSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF OtherStateSensorEntry" - }, - "index": null, - "value": [ - "netBotzStateSensors", - 10 - ] - }, - "otherStateSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OtherStateSensorEntry" - }, - "index": [ - "otherStateSensorIndex" - ], - "value": [ - "otherStateSensorTable", - 1 - ] - }, - "OtherStateSensorEntry": { - "tp": "SEQUENCE" - }, - "otherStateSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 1 - ] - }, - "otherStateSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 2 - ] - }, - "otherStateSensorErrorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 3 - ] - }, - "otherStateSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 4 - ] - }, - "otherStateSensorEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 5 - ] - }, - "otherStateSensorPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 6 - ] - }, - "otherStateSensorValueStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 7 - ] - }, - "otherStateSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "otherStateSensorEntry", - 8 - ] - }, - "errorCondTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ErrorCondEntry" - }, - "index": null, - "value": [ - "netBotzErrors", - 1 - ] - }, - "errorCondEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorCondEntry" - }, - "index": [ - "errorCondIndex" - ], - "value": [ - "errorCondTable", - 1 - ] - }, - "ErrorCondEntry": { - "tp": "SEQUENCE" - }, - "errorCondId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 1 - ] - }, - "errorCondSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ErrorStatus" - }, - "index": null, - "value": [ - "errorCondEntry", - 2 - ] - }, - "errorCondTypeId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 3 - ] - }, - "errorCondStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "errorCondEntry", - 4 - ] - }, - "errorCondStartTimeStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 5 - ] - }, - "errorCondResolved": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BoolValue" - }, - "index": null, - "value": [ - "errorCondEntry", - 6 - ] - }, - "errorCondResolvedTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "errorCondEntry", - 7 - ] - }, - "errorCondResolvedTimeStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 8 - ] - }, - "errorCondEncId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 9 - ] - }, - "errorCondPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 10 - ] - }, - "errorCondSensorId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "errorCondEntry", - 11 - ] - }, - "errorCondIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "errorCondEntry", - 12 - ] - }, - "netBotzTrapErrorID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 1 - ] - }, - "netBotzTrapErrorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 2 - ] - }, - "netBotzTrapErrorTypeLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 3 - ] - }, - "netBotzTrapSensorID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 4 - ] - }, - "netBotzTrapSensorLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 5 - ] - }, - "netBotzTrapPodID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 6 - ] - }, - "netBotzTrapPodLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 7 - ] - }, - "netBotzTrapPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 8 - ] - }, - "netBotzTrapPortLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 9 - ] - }, - "netBotzTrapStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 10 - ] - }, - "netBotzTrapNotifyTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 11 - ] - }, - "netBotzTrapResolveTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 12 - ] - }, - "netBotzTrapSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "information", - "1": "warning", - "2": "error", - "3": "critical", - "4": "failure" - } - }, - "index": null, - "value": [ - "netBotzTrapParms", - 13 - ] - }, - "netBotzTrapSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 14 - ] - }, - "netBotzTrapSensorValueInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 15 - ] - }, - "netBotzTrapSensorValueFraction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "netBotzTrapParms", - 16 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/NIMBLE-MIB.json b/mibs/parsed/NIMBLE-MIB.json deleted file mode 100644 index 25db0ee..0000000 --- a/mibs/parsed/NIMBLE-MIB.json +++ /dev/null @@ -1,400 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Unsigned32", - "Counter64" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString", - "TruthValue" - ] - ], - [ - "SNMPv2-SMI", - [ - "enterprises" - ] - ] - ], - "nimble": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 37447 - ] - }, - "variables": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nimble", - 1 - ] - }, - "volNumberOfVolumes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "variables", - 1 - ] - }, - "volTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VolEntry" - }, - "index": null, - "value": [ - "variables", - 2 - ] - }, - "volEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VolEntry" - }, - "index": [ - "volIndex" - ], - "value": [ - "volTable", - 1 - ] - }, - "VolEntry": { - "tp": "SEQUENCE" - }, - "volIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 1 - ] - }, - "volID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 2 - ] - }, - "volName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "volEntry", - 3 - ] - }, - "volSizeLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 4 - ] - }, - "volSizeHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 5 - ] - }, - "volUsageLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 6 - ] - }, - "volUsageHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 7 - ] - }, - "volReserveLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 8 - ] - }, - "volReserveHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 9 - ] - }, - "volOnline": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "volEntry", - 10 - ] - }, - "volNumConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "volEntry", - 11 - ] - }, - "globalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "variables", - 3 - ] - }, - "statTimeEpochSeconds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 1 - ] - }, - "ioReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 2 - ] - }, - "ioSeqReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 3 - ] - }, - "ioWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 4 - ] - }, - "ioSeqWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 5 - ] - }, - "ioReadTimeMicrosec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 6 - ] - }, - "ioWriteTimeMicrosec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 7 - ] - }, - "ioReadBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 8 - ] - }, - "ioSeqReadBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 9 - ] - }, - "ioWriteBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 10 - ] - }, - "ioSeqWriteBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 11 - ] - }, - "diskVolBytesUsedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "globalStats", - 12 - ] - }, - "diskVolBytesUsedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "globalStats", - 13 - ] - }, - "diskSnapBytesUsedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "globalStats", - 14 - ] - }, - "diskSnapBytesUsedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "globalStats", - 15 - ] - }, - "ioNonseqReadHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "globalStats", - 16 - ] - }, - "arrays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nimble", - 3 - ] - }, - "arrayEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "arrays", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/NS-ROOT-MIB.json b/mibs/parsed/NS-ROOT-MIB.json deleted file mode 100644 index b52f43c..0000000 --- a/mibs/parsed/NS-ROOT-MIB.json +++ /dev/null @@ -1,32382 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "Counter64", - "Counter32", - "Gauge32", - "Integer32", - "IpAddress", - "NOTIFICATION-TYPE", - "OBJECT-TYPE", - "TimeTicks", - "enterprises", - "MODULE-IDENTITY", - "OBJECT-IDENTITY" - ] - ], - [ - "IPV6-TC", - [ - "Ipv6Address" - ] - ], - [ - "INET-ADDRESS-MIB", - [ - "InetAddressType", - "InetAddress" - ] - ] - ], - "netScaler": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 5951 - ] - }, - "nsRoot": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netScaler", - 1 - ] - }, - "netScalerEvents": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 1 - ] - }, - "wsSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 2 - ] - }, - "sysStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "wsSystem", - 1 - ] - }, - "totalClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 1 - ] - }, - "curClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 2 - ] - }, - "totalServerConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 3 - ] - }, - "curServerConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 4 - ] - }, - "clientConnRefused": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 5 - ] - }, - "reuseHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 6 - ] - }, - "reuseMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 7 - ] - }, - "totClientDontReuse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 8 - ] - }, - "totServerDontReuse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 9 - ] - }, - "curPhysicalServers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 10 - ] - }, - "totPhysicalServers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 11 - ] - }, - "cookiePacketSeqReject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 12 - ] - }, - "cookieSignatureReject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 13 - ] - }, - "cpuUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 14 - ] - }, - "unackSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 15 - ] - }, - "curClientEstablishedConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 16 - ] - }, - "curServerEstablishedConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sysStatistics", - 17 - ] - }, - "wsHttpGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatistics", - 18 - ] - }, - "totalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 1 - ] - }, - "totalGets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 2 - ] - }, - "totalRequests1-0": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 3 - ] - }, - "totalPosts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 4 - ] - }, - "totalResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 5 - ] - }, - "totalResponses1-0": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 6 - ] - }, - "totalContentLenResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 7 - ] - }, - "totalChunkedResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 8 - ] - }, - "totalMultiPartResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 9 - ] - }, - "totalIncompleteHeaders": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 10 - ] - }, - "totalIncompleteRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 11 - ] - }, - "totalIncompleteResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 12 - ] - }, - "totalPipeLinedRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 13 - ] - }, - "serverBusyErrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsHttpGroup", - 14 - ] - }, - "wsIfStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF WsIfStatsEntry" - }, - "index": null, - "value": [ - "sysStatistics", - 19 - ] - }, - "wsIfStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WsIfStatsEntry" - }, - "index": [ - "index" - ], - "value": [ - "wsIfStatsTable", - 1 - ] - }, - "WsIfStatsEntry": { - "tp": "SEQUENCE" - }, - "index": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 1 - ] - }, - "wsIfName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 2 - ] - }, - "wsIfMedia": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 3 - ] - }, - "rxRawBandwidthUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 4 - ] - }, - "rxAveragePacketRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 5 - ] - }, - "rxCurrentPacketRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 6 - ] - }, - "rxAveragePacketsSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 7 - ] - }, - "rxFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 8 - ] - }, - "rxCrcErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 9 - ] - }, - "rxAlignmentErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 10 - ] - }, - "txRawBandwidthUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 11 - ] - }, - "txAveragePacketRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 12 - ] - }, - "txCurrentPacketRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 13 - ] - }, - "txAveragePacketsSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 14 - ] - }, - "txExcessCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 15 - ] - }, - "txLateCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 16 - ] - }, - "txCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 17 - ] - }, - "txMultiCollisionsErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 18 - ] - }, - "txCarrierErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsIfStatsEntry", - 19 - ] - }, - "wsudpgroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatistics", - 20 - ] - }, - "totudpsessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsudpgroup", - 1 - ] - }, - "currudpsessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "wsudpgroup", - 2 - ] - }, - "sysConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "wsSystem", - 2 - ] - }, - "wsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "sysConfig", - 1 - ] - }, - "wsNetmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "sysConfig", - 2 - ] - }, - "wsMappedIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "sysConfig", - 3 - ] - }, - "wsLastMappedIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "sysConfig", - 4 - ] - }, - "wsMappedIpAddressRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "sysConfig", - 5 - ] - }, - "wsFailOver": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "sysConfig", - 6 - ] - }, - "wsPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "sysConfig", - 7 - ] - }, - "wsMaxClientList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "sysConfig", - 8 - ] - }, - "wsClientIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "sysConfig", - 9 - ] - }, - "wsFailoverTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "sysConfig", - 10 - ] - }, - "wsMaxRequestsPerConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "sysConfig", - 11 - ] - }, - "wsSmoothConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "sysConfig", - 12 - ] - }, - "loadBalancing": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 3 - ] - }, - "lbStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF LbStatisticsEntry" - }, - "index": null, - "value": [ - "loadBalancing", - 1 - ] - }, - "lbStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LbStatisticsEntry" - }, - "index": [ - "vsId", - "psId" - ], - "value": [ - "lbStatisticsTable", - 1 - ] - }, - "LbStatisticsEntry": { - "tp": "SEQUENCE" - }, - "vsId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 1 - ] - }, - "psId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 2 - ] - }, - "vsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 3 - ] - }, - "vsPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 4 - ] - }, - "psIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 5 - ] - }, - "psPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 6 - ] - }, - "protocolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "ssf", - "13": "nat", - "14": "any", - "15": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "serviceUnknown" - } - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 7 - ] - }, - "lbMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "weightedRoundRobin", - "2": "leastConnections", - "3": "leastResponse", - "4": "asynchronousMAC", - "5": "urlHashed", - "6": "domainHashed", - "7": "destinationIPHashed", - "8": "sourceIPHashed", - "9": "leastBandwidth", - "10": "leastPackets" - } - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 8 - ] - }, - "serviceHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 9 - ] - }, - "latency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 10 - ] - }, - "connections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbStatisticsEntry", - 11 - ] - }, - "lbConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "loadBalancing", - 2 - ] - }, - "virServiceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VirServiceEntry" - }, - "index": null, - "value": [ - "lbConfig", - 1 - ] - }, - "virServiceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VirServiceEntry" - }, - "index": [ - "vserId" - ], - "value": [ - "virServiceTable", - 1 - ] - }, - "VirServiceEntry": { - "tp": "SEQUENCE" - }, - "vserId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "virServiceEntry", - 1 - ] - }, - "ipAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "virServiceEntry", - 2 - ] - }, - "port": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "virServiceEntry", - 3 - ] - }, - "vsProtocolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "ssf", - "13": "nat", - "14": "any", - "15": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "serviceUnknown" - } - }, - "index": null, - "value": [ - "virServiceEntry", - 4 - ] - }, - "name": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "virServiceEntry", - 5 - ] - }, - "vsLbMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "weightedRoundRobin", - "2": "leastConnections", - "3": "leastResponse", - "4": "asynchronousMAC", - "5": "urlHashed", - "6": "domainHashed", - "7": "destinationIPHashed", - "8": "sourceIPHashed", - "9": "leastBandwidth", - "10": "leastPackets" - } - }, - "index": null, - "value": [ - "virServiceEntry", - 6 - ] - }, - "persistanceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceIp", - "2": "cookieInsert", - "3": "cookieDelete", - "4": "cookieRead", - "5": "cookieHash", - "6": "sessionId", - "7": "server" - } - }, - "index": null, - "value": [ - "virServiceEntry", - 7 - ] - }, - "persistanceTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "virServiceEntry", - 8 - ] - }, - "state": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "up", - "1": "down", - "2": "unknown", - "3": "busy", - "4": "outOfService", - "5": "transitionToOutOfService" - } - }, - "index": null, - "value": [ - "virServiceEntry", - 9 - ] - }, - "phyServiceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PhyServiceEntry" - }, - "index": null, - "value": [ - "lbConfig", - 2 - ] - }, - "phyServiceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PhyServiceEntry" - }, - "index": [ - "pserId" - ], - "value": [ - "phyServiceTable", - 1 - ] - }, - "PhyServiceEntry": { - "tp": "SEQUENCE" - }, - "pserId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "phyServiceEntry", - 1 - ] - }, - "pserIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "phyServiceEntry", - 2 - ] - }, - "pserPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "phyServiceEntry", - 3 - ] - }, - "psProtocolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "ssf", - "13": "nat", - "14": "any", - "15": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "serviceUnknown" - } - }, - "index": null, - "value": [ - "phyServiceEntry", - 4 - ] - }, - "psName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "phyServiceEntry", - 5 - ] - }, - "psState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "down", - "1": "up" - } - }, - "index": null, - "value": [ - "phyServiceEntry", - 6 - ] - }, - "weight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "phyServiceEntry", - 7 - ] - }, - "psVsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "phyServiceEntry", - 8 - ] - }, - "psVsPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "phyServiceEntry", - 9 - ] - }, - "sureConnect": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 4 - ] - }, - "scStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sureConnect", - 1 - ] - }, - "scperServiceStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ScperServiceStatisticsEntry" - }, - "index": null, - "value": [ - "scStatistics", - 1 - ] - }, - "scperServiceStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ScperServiceStatisticsEntry" - }, - "index": [ - "devno" - ], - "value": [ - "scperServiceStatisticsTable", - 1 - ] - }, - "ScperServiceStatisticsEntry": { - "tp": "SEQUENCE" - }, - "devno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 1 - ] - }, - "phyIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 2 - ] - }, - "phyPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 3 - ] - }, - "scProtocolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "ssf", - "13": "nat", - "14": "any", - "15": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "serviceUnknown" - } - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 4 - ] - }, - "currentDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 5 - ] - }, - "avgTxTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 6 - ] - }, - "surgeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 7 - ] - }, - "iohCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperServiceStatisticsEntry", - 8 - ] - }, - "scperPolicyStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ScperPolicyStatisticsEntry" - }, - "index": null, - "value": [ - "scStatistics", - 2 - ] - }, - "scperPolicyStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ScperPolicyStatisticsEntry" - }, - "index": [ - "policydevno" - ], - "value": [ - "scperPolicyStatisticsTable", - 1 - ] - }, - "ScperPolicyStatisticsEntry": { - "tp": "SEQUENCE" - }, - "policydevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 1 - ] - }, - "primaryserviceIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 2 - ] - }, - "primaryserviceport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 3 - ] - }, - "destserviceIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 4 - ] - }, - "destserviceport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 5 - ] - }, - "transactiontime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 6 - ] - }, - "totaltransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 7 - ] - }, - "totalopenconnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scperPolicyStatisticsEntry", - 8 - ] - }, - "scGlobalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "scStatistics", - 3 - ] - }, - "scUrlHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 1 - ] - }, - "popUps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 2 - ] - }, - "altContUrls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 3 - ] - }, - "sessReqs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 4 - ] - }, - "postReqs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 5 - ] - }, - "thresholdFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 6 - ] - }, - "faultyCookies": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 7 - ] - }, - "unSupBrow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 8 - ] - }, - "resetStats": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scGlobalStats", - 9 - ] - }, - "scConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sureConnect", - 2 - ] - }, - "scPolicyconfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ScPolicyconfigEntry" - }, - "index": null, - "value": [ - "scConfig", - 1 - ] - }, - "scPolicyconfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ScPolicyconfigEntry" - }, - "index": [ - "policyIndex" - ], - "value": [ - "scPolicyconfigTable", - 1 - ] - }, - "ScPolicyconfigEntry": { - "tp": "SEQUENCE" - }, - "policyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 1 - ] - }, - "policyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 2 - ] - }, - "scPolicyUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 3 - ] - }, - "delayThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "-1": "notconfigured" - } - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 4 - ] - }, - "maxConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "-1": "notconfigured" - } - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 5 - ] - }, - "actionType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "ns", - "1": "acs", - "4": "noAction" - } - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 6 - ] - }, - "alternatecontentServicename": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 7 - ] - }, - "ruleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 8 - ] - }, - "alternatecontentPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyconfigEntry", - 9 - ] - }, - "contentSwitching": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 5 - ] - }, - "cswStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CswStatisticsEntry" - }, - "index": null, - "value": [ - "contentSwitching", - 1 - ] - }, - "cswStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CswStatisticsEntry" - }, - "index": [ - "cswIndex" - ], - "value": [ - "cswStatisticsTable", - 1 - ] - }, - "CswStatisticsEntry": { - "tp": "SEQUENCE" - }, - "cswIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 1 - ] - }, - "cswVsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 2 - ] - }, - "cswVsPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 3 - ] - }, - "cswProtocolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "ssf", - "13": "nat", - "14": "any", - "15": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "serviceUnknown" - } - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 4 - ] - }, - "virServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 5 - ] - }, - "vsHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 6 - ] - }, - "vsMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswStatisticsEntry", - 7 - ] - }, - "cswConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CswConfigEntry" - }, - "index": null, - "value": [ - "contentSwitching", - 2 - ] - }, - "cswConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CswConfigEntry" - }, - "index": [ - "cswVsId", - "policyId" - ], - "value": [ - "cswConfigTable", - 1 - ] - }, - "CswConfigEntry": { - "tp": "SEQUENCE" - }, - "cswVsId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswConfigEntry", - 1 - ] - }, - "policyId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswConfigEntry", - 2 - ] - }, - "vServerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cswConfigEntry", - 3 - ] - }, - "policyname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cswConfigEntry", - 4 - ] - }, - "policyvalue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cswConfigEntry", - 5 - ] - }, - "policyHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cswConfigEntry", - 6 - ] - }, - "domain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cswConfigEntry", - 7 - ] - }, - "cacheRedirection": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 6 - ] - }, - "crStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CrStatisticsEntry" - }, - "index": null, - "value": [ - "cacheRedirection", - 1 - ] - }, - "crStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CrStatisticsEntry" - }, - "index": [ - "crVsIndex" - ], - "value": [ - "crStatisticsTable", - 1 - ] - }, - "CrStatisticsEntry": { - "tp": "SEQUENCE" - }, - "crVsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crStatisticsEntry", - 1 - ] - }, - "crVsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "crStatisticsEntry", - 2 - ] - }, - "crVsPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crStatisticsEntry", - 3 - ] - }, - "crProtocolType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "ssf", - "13": "nat", - "14": "any", - "15": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "serviceUnknown" - } - }, - "index": null, - "value": [ - "crStatisticsEntry", - 4 - ] - }, - "crVirServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crStatisticsEntry", - 5 - ] - }, - "crVsHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crStatisticsEntry", - 6 - ] - }, - "crVsMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crStatisticsEntry", - 7 - ] - }, - "crConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cacheRedirection", - 2 - ] - }, - "crPolBindConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CrPolBindConfigEntry" - }, - "index": null, - "value": [ - "crConfig", - 1 - ] - }, - "crPolBindConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CrPolBindConfigEntry" - }, - "index": [ - "bindId" - ], - "value": [ - "crPolBindConfigTable", - 1 - ] - }, - "CrPolBindConfigEntry": { - "tp": "SEQUENCE" - }, - "bindId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crPolBindConfigEntry", - 1 - ] - }, - "crbVServerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolBindConfigEntry", - 2 - ] - }, - "crbPolicyname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolBindConfigEntry", - 3 - ] - }, - "crbPolicyvalue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolBindConfigEntry", - 4 - ] - }, - "crbPolicyHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crPolBindConfigEntry", - 5 - ] - }, - "crMapBindConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CrMapBindConfigEntry" - }, - "index": null, - "value": [ - "crConfig", - 2 - ] - }, - "crMapBindConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CrMapBindConfigEntry" - }, - "index": [ - "mapbindId" - ], - "value": [ - "crMapBindConfigTable", - 1 - ] - }, - "CrMapBindConfigEntry": { - "tp": "SEQUENCE" - }, - "mapbindId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crMapBindConfigEntry", - 1 - ] - }, - "mapName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapBindConfigEntry", - 2 - ] - }, - "mapHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crMapBindConfigEntry", - 3 - ] - }, - "vserverName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapBindConfigEntry", - 4 - ] - }, - "crMapConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CrMapConfigEntry" - }, - "index": null, - "value": [ - "crConfig", - 3 - ] - }, - "crMapConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CrMapConfigEntry" - }, - "index": [ - "crmIndex" - ], - "value": [ - "crMapConfigTable", - 1 - ] - }, - "CrMapConfigEntry": { - "tp": "SEQUENCE" - }, - "crmIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crMapConfigEntry", - 1 - ] - }, - "crmMapName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapConfigEntry", - 2 - ] - }, - "srcDomain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapConfigEntry", - 3 - ] - }, - "dstDomain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapConfigEntry", - 4 - ] - }, - "srcUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapConfigEntry", - 5 - ] - }, - "dstUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crMapConfigEntry", - 6 - ] - }, - "compression": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 7 - ] - }, - "compressionStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "compression", - 1 - ] - }, - "cmpTotRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "compressionStats", - 1 - ] - }, - "cmpTotTxbytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "compressionStats", - 2 - ] - }, - "cmpTotRxbytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "compressionStats", - 3 - ] - }, - "cmpTotTxpkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "compressionStats", - 4 - ] - }, - "cmpTotRxpkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "compressionStats", - 5 - ] - }, - "compressionRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "compressionStats", - 6 - ] - }, - "totalDataCompressionRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "compressionStats", - 7 - ] - }, - "vlan": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 8 - ] - }, - "vlanstatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VlanstatsEntry" - }, - "index": null, - "value": [ - "vlan", - 1 - ] - }, - "vlanstatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanstatsEntry" - }, - "index": [ - "vlansDevno" - ], - "value": [ - "vlanstatsTable", - 1 - ] - }, - "VlanstatsEntry": { - "tp": "SEQUENCE" - }, - "vlansDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 1 - ] - }, - "totalrxpkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 2 - ] - }, - "totaltxpkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 3 - ] - }, - "totalrxbytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 4 - ] - }, - "totaltxbytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 5 - ] - }, - "totaldroppedpkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 6 - ] - }, - "totalbroadcastpackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanstatsEntry", - 7 - ] - }, - "vlanconfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VlanconfigEntry" - }, - "index": null, - "value": [ - "vlan", - 2 - ] - }, - "vlanconfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanconfigEntry" - }, - "index": [ - "vlancDevno" - ], - "value": [ - "vlanconfigTable", - 1 - ] - }, - "VlanconfigEntry": { - "tp": "SEQUENCE" - }, - "vlancDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vlanconfigEntry", - 1 - ] - }, - "tagId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vlanconfigEntry", - 2 - ] - }, - "vlancInterfaces": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vlanconfigEntry", - 3 - ] - }, - "ipaddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vlanconfigEntry", - 4 - ] - }, - "netmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vlanconfigEntry", - 5 - ] - }, - "tagging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vlanconfigEntry", - 6 - ] - }, - "domainNameService": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 9 - ] - }, - "dnsServer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "domainNameService", - 1 - ] - }, - "dnsServerStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dnsServer", - 1 - ] - }, - "totQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 1 - ] - }, - "totAnswers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 2 - ] - }, - "totAuthAns": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 3 - ] - }, - "totAuthNoNames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 4 - ] - }, - "totAuthNoDataResps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 5 - ] - }, - "totNonAuthDatas": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 6 - ] - }, - "totNonAuthNoDatas": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 7 - ] - }, - "totReqRefusals": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 8 - ] - }, - "totReqUnparses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 9 - ] - }, - "totOtherErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 10 - ] - }, - "aRecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 11 - ] - }, - "nsRecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 12 - ] - }, - "mxRecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 13 - ] - }, - "soaRecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 14 - ] - }, - "cnameRecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 15 - ] - }, - "totUnsupportedQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dnsServerStatistics", - 16 - ] - }, - "dnsServerConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dnsServer", - 2 - ] - }, - "dnsServerRecursion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "available", - "2": "restricted", - "3": "unavailable" - } - }, - "index": null, - "value": [ - "dnsServerConfig", - 1 - ] - }, - "dnsServerZoneTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DnsServerZoneEntry" - }, - "index": null, - "value": [ - "dnsServerConfig", - 2 - ] - }, - "dnsServerZoneEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DnsServerZoneEntry" - }, - "index": [ - "zoneIndex" - ], - "value": [ - "dnsServerZoneTable", - 1 - ] - }, - "DnsServerZoneEntry": { - "tp": "SEQUENCE" - }, - "zoneIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dnsServerZoneEntry", - 1 - ] - }, - "zoneName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dnsServerZoneEntry", - 2 - ] - }, - "globalServerLB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 10 - ] - }, - "gslbStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "globalServerLB", - 1 - ] - }, - "gslbDomainStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF GslbDomainStatsEntry" - }, - "index": null, - "value": [ - "gslbStatistics", - 1 - ] - }, - "gslbDomainStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "GslbDomainStatsEntry" - }, - "index": [ - "gslbDomainIndex" - ], - "value": [ - "gslbDomainStatsTable", - 1 - ] - }, - "GslbDomainStatsEntry": { - "tp": "SEQUENCE" - }, - "gslbDomainIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "gslbDomainStatsEntry", - 1 - ] - }, - "domainname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "gslbDomainStatsEntry", - 2 - ] - }, - "gslbDomainQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "gslbDomainStatsEntry", - 3 - ] - }, - "gslbConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "globalServerLB", - 2 - ] - }, - "gslbDomainConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF GslbDomainConfigEntry" - }, - "index": null, - "value": [ - "gslbConfig", - 1 - ] - }, - "gslbDomainConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "GslbDomainConfigEntry" - }, - "index": [ - "gslbcDomainIndex" - ], - "value": [ - "gslbDomainConfigTable", - 1 - ] - }, - "GslbDomainConfigEntry": { - "tp": "SEQUENCE" - }, - "gslbcDomainIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "gslbDomainConfigEntry", - 1 - ] - }, - "gslbcDomainName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "gslbDomainConfigEntry", - 2 - ] - }, - "gslbVipName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "gslbDomainConfigEntry", - 3 - ] - }, - "reOrderInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "gslbDomainConfigEntry", - 4 - ] - }, - "pq": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 11 - ] - }, - "pqstatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pq", - 1 - ] - }, - "pqStatsperLBVipTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PqStatsperLBVipEntry" - }, - "index": null, - "value": [ - "pqstatistics", - 1 - ] - }, - "pqStatsperLBVipEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PqStatsperLBVipEntry" - }, - "index": [ - "pqDevno" - ], - "value": [ - "pqStatsperLBVipTable", - 1 - ] - }, - "PqStatsperLBVipEntry": { - "tp": "SEQUENCE" - }, - "pqDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqStatsperLBVipEntry", - 1 - ] - }, - "totclienttransactiontime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperLBVipEntry", - 2 - ] - }, - "totclienttransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperLBVipEntry", - 3 - ] - }, - "dropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperLBVipEntry", - 4 - ] - }, - "qdepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperLBVipEntry", - 5 - ] - }, - "pqStatsperpqpolicyandperLBVipTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PqStatsperpqpolicyandperLBVipEntry" - }, - "index": null, - "value": [ - "pqstatistics", - 2 - ] - }, - "pqStatsperpqpolicyandperLBVipEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PqStatsperpqpolicyandperLBVipEntry" - }, - "index": [ - "pqvsdevno", - "pqpoldevno" - ], - "value": [ - "pqStatsperpqpolicyandperLBVipTable", - 1 - ] - }, - "PqStatsperpqpolicyandperLBVipEntry": { - "tp": "SEQUENCE" - }, - "pqvsdevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqStatsperpqpolicyandperLBVipEntry", - 1 - ] - }, - "pqpoldevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqStatsperpqpolicyandperLBVipEntry", - 2 - ] - }, - "pqtotclienttransactiontime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperpqpolicyandperLBVipEntry", - 3 - ] - }, - "pqtotclienttransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperpqpolicyandperLBVipEntry", - 4 - ] - }, - "pqDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperpqpolicyandperLBVipEntry", - 5 - ] - }, - "pqQdepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "pqStatsperpqpolicyandperLBVipEntry", - 6 - ] - }, - "pqconfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pq", - 2 - ] - }, - "pqpolicyconfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PqpolicyconfigEntry" - }, - "index": null, - "value": [ - "pqconfig", - 1 - ] - }, - "pqpolicyconfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PqpolicyconfigEntry" - }, - "index": [ - "pqPolDevno" - ], - "value": [ - "pqpolicyconfigTable", - 1 - ] - }, - "PqpolicyconfigEntry": { - "tp": "SEQUENCE" - }, - "pqPolDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 1 - ] - }, - "pqpolicyname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 2 - ] - }, - "rulename": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 3 - ] - }, - "qdepthThreshval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 4 - ] - }, - "polqdepthThreshval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 5 - ] - }, - "priority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 6 - ] - }, - "pqPolWeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqpolicyconfigEntry", - 7 - ] - }, - "dos": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 12 - ] - }, - "dosstatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dos", - 1 - ] - }, - "dosservicestatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DosservicestatsEntry" - }, - "index": null, - "value": [ - "dosstatistics", - 1 - ] - }, - "dosservicestatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DosservicestatsEntry" - }, - "index": [ - "dosDevno" - ], - "value": [ - "dosservicestatsTable", - 1 - ] - }, - "DosservicestatsEntry": { - "tp": "SEQUENCE" - }, - "dosDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dosservicestatsEntry", - 1 - ] - }, - "surgecnt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dosservicestatsEntry", - 2 - ] - }, - "dosqdepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dosservicestatsEntry", - 3 - ] - }, - "totaljstransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dosservicestatsEntry", - 4 - ] - }, - "dosconfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dos", - 2 - ] - }, - "dospolicyconfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DospolicyconfigEntry" - }, - "index": null, - "value": [ - "dosconfig", - 1 - ] - }, - "dospolicyconfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DospolicyconfigEntry" - }, - "index": [ - "dosPolDevno" - ], - "value": [ - "dospolicyconfigTable", - 1 - ] - }, - "DospolicyconfigEntry": { - "tp": "SEQUENCE" - }, - "dosPolDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dospolicyconfigEntry", - 1 - ] - }, - "dospolicyname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dospolicyconfigEntry", - 2 - ] - }, - "thresholdvalue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dospolicyconfigEntry", - 3 - ] - }, - "ssloffloading": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 13 - ] - }, - "sslstatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ssloffloading", - 1 - ] - }, - "sslglobalstats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sslstatistics", - 1 - ] - }, - "currSPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 1 - ] - }, - "sslV2TxCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 2 - ] - }, - "sslV3TxCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 3 - ] - }, - "tlsV1TxCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 4 - ] - }, - "keyExRSA512": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 5 - ] - }, - "keyExRSA1024": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 6 - ] - }, - "keyExDH512": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 7 - ] - }, - "keyExDH1024": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 8 - ] - }, - "authRSA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 9 - ] - }, - "authDH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 10 - ] - }, - "authDS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 11 - ] - }, - "cipher40BitRC4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 12 - ] - }, - "cipher56BitRC4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 13 - ] - }, - "cipher64BitRC4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 14 - ] - }, - "cipher128BitRC4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 15 - ] - }, - "cipher40BitDES": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 16 - ] - }, - "cipher56BitDES": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 17 - ] - }, - "cipher168Bit3DES": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 18 - ] - }, - "cipher40BitRC2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 19 - ] - }, - "cipher56BitRC2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 20 - ] - }, - "cipher128BitRC2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 21 - ] - }, - "cipher128BitIDEA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 22 - ] - }, - "hashMD5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 23 - ] - }, - "hashSHA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sslglobalstats", - 24 - ] - }, - "sslConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ssloffloading", - 2 - ] - }, - "certKeyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CertKeyEntry" - }, - "index": null, - "value": [ - "sslConfig", - 1 - ] - }, - "certKeyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CertKeyEntry" - }, - "index": [ - "certKeyId" - ], - "value": [ - "certKeyTable", - 1 - ] - }, - "CertKeyEntry": { - "tp": "SEQUENCE" - }, - "certKeyId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "certKeyEntry", - 1 - ] - }, - "certKeyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "certKeyEntry", - 2 - ] - }, - "certPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "certKeyEntry", - 3 - ] - }, - "keyPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "certKeyEntry", - 4 - ] - }, - "inputFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "der", - "3": "pem" - } - }, - "index": null, - "value": [ - "certKeyEntry", - 5 - ] - }, - "crlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CrlEntry" - }, - "index": null, - "value": [ - "sslConfig", - 2 - ] - }, - "crlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CrlEntry" - }, - "index": [ - "crlId" - ], - "value": [ - "crlTable", - 1 - ] - }, - "CrlEntry": { - "tp": "SEQUENCE" - }, - "crlId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "crlEntry", - 1 - ] - }, - "crlName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crlEntry", - 2 - ] - }, - "crlPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crlEntry", - 3 - ] - }, - "crlInputFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "der", - "3": "pem" - } - }, - "index": null, - "value": [ - "crlEntry", - 4 - ] - }, - "cipherGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CipherGroupEntry" - }, - "index": null, - "value": [ - "sslConfig", - 3 - ] - }, - "cipherGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CipherGroupEntry" - }, - "index": [ - "cipherGroupId", - "cipherId" - ], - "value": [ - "cipherGroupTable", - 1 - ] - }, - "CipherGroupEntry": { - "tp": "SEQUENCE" - }, - "cipherGroupId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cipherGroupEntry", - 1 - ] - }, - "cipherId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cipherGroupEntry", - 2 - ] - }, - "cipherGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cipherGroupEntry", - 3 - ] - }, - "cipherName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cipherGroupEntry", - 4 - ] - }, - "cipherDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cipherGroupEntry", - 5 - ] - }, - "advanceSSLConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AdvanceSSLConfigEntry" - }, - "index": null, - "value": [ - "sslConfig", - 4 - ] - }, - "advanceSSLConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdvanceSSLConfigEntry" - }, - "index": [ - "id" - ], - "value": [ - "advanceSSLConfigTable", - 1 - ] - }, - "AdvanceSSLConfigEntry": { - "tp": "SEQUENCE" - }, - "id": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 1 - ] - }, - "serviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 2 - ] - }, - "dh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 3 - ] - }, - "dhCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 4 - ] - }, - "dhFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 5 - ] - }, - "eRSA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 6 - ] - }, - "eRSACount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 7 - ] - }, - "certHeader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 8 - ] - }, - "certHeaderTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 9 - ] - }, - "sessHeader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 10 - ] - }, - "sessHeaderTag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 11 - ] - }, - "sslv2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 12 - ] - }, - "sslv3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 13 - ] - }, - "tlsv1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 14 - ] - }, - "owaSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 15 - ] - }, - "sslRedirect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 16 - ] - }, - "clearTextPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 17 - ] - }, - "serviceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "virtualserver", - "1": "physicalservice" - } - }, - "index": null, - "value": [ - "advanceSSLConfigEntry", - 18 - ] - }, - "certBindingConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CertBindingConfigEntry" - }, - "index": null, - "value": [ - "sslConfig", - 5 - ] - }, - "certBindingConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CertBindingConfigEntry" - }, - "index": [ - "certBindId", - "certKeyID", - "certType" - ], - "value": [ - "certBindingConfigTable", - 1 - ] - }, - "CertBindingConfigEntry": { - "tp": "SEQUENCE" - }, - "certBindId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "certBindingConfigEntry", - 1 - ] - }, - "certKeyID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "certBindingConfigEntry", - 2 - ] - }, - "certType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "serverCertificate", - "2": "caCertificate" - } - }, - "index": null, - "value": [ - "certBindingConfigEntry", - 3 - ] - }, - "certBindServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "certBindingConfigEntry", - 4 - ] - }, - "certBindKeyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "certBindingConfigEntry", - 5 - ] - }, - "certBindServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "virtualserver", - "1": "physicalservice" - } - }, - "index": null, - "value": [ - "certBindingConfigEntry", - 6 - ] - }, - "cipherBindingConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CipherBindingConfigEntry" - }, - "index": null, - "value": [ - "sslConfig", - 6 - ] - }, - "cipherBindingConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CipherBindingConfigEntry" - }, - "index": [ - "cipherBindId", - "cipherID" - ], - "value": [ - "cipherBindingConfigTable", - 1 - ] - }, - "CipherBindingConfigEntry": { - "tp": "SEQUENCE" - }, - "cipherBindId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cipherBindingConfigEntry", - 1 - ] - }, - "cipherID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cipherBindingConfigEntry", - 2 - ] - }, - "cipherBindServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cipherBindingConfigEntry", - 3 - ] - }, - "cipherbName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cipherBindingConfigEntry", - 4 - ] - }, - "cipherbDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cipherBindingConfigEntry", - 5 - ] - }, - "cipherBindServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "virtualserver", - "1": "physicalservice" - } - }, - "index": null, - "value": [ - "cipherBindingConfigEntry", - 6 - ] - }, - "cpe": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRoot", - 14 - ] - }, - "cpestatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpe", - 1 - ] - }, - "cpestatspolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpestatspolicyEntry" - }, - "index": null, - "value": [ - "cpestatistics", - 1 - ] - }, - "cpestatspolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpestatspolicyEntry" - }, - "index": [ - "cpesDevno" - ], - "value": [ - "cpestatspolicyTable", - 1 - ] - }, - "CpestatspolicyEntry": { - "tp": "SEQUENCE" - }, - "cpesDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpestatspolicyEntry", - 1 - ] - }, - "cpesPolicyname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpestatspolicyEntry", - 2 - ] - }, - "cpesPolicyhits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpestatspolicyEntry", - 3 - ] - }, - "cpestatsactionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpestatsactionEntry" - }, - "index": null, - "value": [ - "cpestatistics", - 2 - ] - }, - "cpestatsactionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpestatsactionEntry" - }, - "index": [ - "cpeaDevno" - ], - "value": [ - "cpestatsactionTable", - 1 - ] - }, - "CpestatsactionEntry": { - "tp": "SEQUENCE" - }, - "cpeaDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpestatsactionEntry", - 1 - ] - }, - "actionname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpestatsactionEntry", - 2 - ] - }, - "actionhits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cpestatsactionEntry", - 3 - ] - }, - "cpeconfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpe", - 2 - ] - }, - "cpeconfigpolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpeconfigpolicyEntry" - }, - "index": null, - "value": [ - "cpeconfig", - 1 - ] - }, - "cpeconfigpolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpeconfigpolicyEntry" - }, - "index": [ - "cpecDevno" - ], - "value": [ - "cpeconfigpolicyTable", - 1 - ] - }, - "CpeconfigpolicyEntry": { - "tp": "SEQUENCE" - }, - "cpecDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpeconfigpolicyEntry", - 1 - ] - }, - "cpecPolicyname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigpolicyEntry", - 2 - ] - }, - "reqrule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigpolicyEntry", - 3 - ] - }, - "reqaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigpolicyEntry", - 4 - ] - }, - "cpeconfigactionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpeconfigactionEntry" - }, - "index": null, - "value": [ - "cpeconfig", - 2 - ] - }, - "cpeconfigactionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpeconfigactionEntry" - }, - "index": [ - "cpecaDevno" - ], - "value": [ - "cpeconfigactionTable", - 1 - ] - }, - "CpeconfigactionEntry": { - "tp": "SEQUENCE" - }, - "cpecaDevno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 1 - ] - }, - "cpecaActionname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 2 - ] - }, - "directive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "reset", - "2": "drop", - "3": "httpec", - "4": "cmp", - "5": "add", - "6": "mod", - "7": "del", - "8": "cor", - "9": "forward", - "10": "noComparison", - "11": "last" - } - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 3 - ] - }, - "qualifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "http", - "2": "header", - "3": "query" - } - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 4 - ] - }, - "value": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 5 - ] - }, - "page": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 6 - ] - }, - "server": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeconfigactionEntry", - 7 - ] - }, - "cpeExprConfigStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpeExprConfigStatsEntry" - }, - "index": null, - "value": [ - "cpe", - 3 - ] - }, - "cpeExprConfigStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpeExprConfigStatsEntry" - }, - "index": [ - "cpeeIndex" - ], - "value": [ - "cpeExprConfigStatsTable", - 1 - ] - }, - "CpeExprConfigStatsEntry": { - "tp": "SEQUENCE" - }, - "cpeeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 1 - ] - }, - "exprName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 2 - ] - }, - "cpeeQualifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "-1": "unknownQualifier", - "0": "method", - "1": "urlPrefix", - "2": "urlSuffix", - "3": "urlTokens", - "4": "version", - "5": "header", - "6": "urlQuery", - "7": "url", - "8": "urllen", - "9": "urlquerylen", - "10": "domain", - "11": "sourceIp", - "12": "sourcePort", - "13": "destinationIp", - "14": "destinationPort", - "15": "compoundExpression", - "16": "evaluatePredefined" - } - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 3 - ] - }, - "operator": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "and", - "1": "or", - "2": "not", - "3": "equal", - "4": "notEqual", - "5": "greaterThan", - "6": "lessThan", - "7": "greaterThanOrEqualTo", - "8": "lessThanOrEqualTo", - "9": "exists", - "10": "notExists", - "11": "contains", - "12": "notContains", - "13": "contents" - } - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 4 - ] - }, - "hdrName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 5 - ] - }, - "cpeeValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 6 - ] - }, - "length": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 7 - ] - }, - "offset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 8 - ] - }, - "cpeeNetmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpeExprConfigStatsEntry", - 9 - ] - }, - "EntityProtocolType": { - "tp": "INTEGER", - "values": { - "0": "http", - "1": "ftp", - "2": "tcp", - "3": "udp", - "4": "sslBridge", - "5": "monitor", - "6": "monitorUdp", - "7": "nntp", - "8": "httpserver", - "9": "httpclient", - "10": "rpcserver", - "11": "rpcclient", - "12": "nat", - "13": "any", - "14": "ssl", - "16": "dns", - "17": "adns", - "18": "snmp", - "19": "ha", - "20": "monitorPing", - "21": "sslOtherTcp", - "22": "aaa", - "23": "secureMonitor", - "24": "sslvpnUdp", - "25": "rip", - "26": "dnsClient", - "27": "rpcServer", - "28": "rpcClient", - "36": "dhcrpa", - "39": "sipudp", - "40": "siptcp", - "41": "siptls", - "48": "dnstcp", - "49": "adnstcp", - "50": "rtsp", - "52": "push", - "53": "sslPush", - "54": "dhcpClient", - "55": "radius", - "61": "rdp", - "62": "mysql", - "63": "mssql", - "73": "diameter", - "74": "sslDiameter", - "75": "tftp", - "90": "tftp", - "91": "pptp", - "92": "gre", - "95": "fix", - "96": "sslFix", - "99": "serviceUnknown" - } - }, - "EntityState": { - "tp": "INTEGER", - "values": { - "1": "down", - "2": "unknown", - "3": "busy", - "4": "outOfService", - "5": "transitionToOutOfService", - "7": "up", - "8": "transitionToOutOfServiceDown" - } - }, - "MepStatus": { - "tp": "INTEGER", - "values": { - "0": "mepDown", - "1": "mepUp" - } - }, - "SiteType": { - "tp": "INTEGER", - "values": { - "1": "localSite", - "2": "remoteSite" - } - }, - "MetricExchange": { - "tp": "INTEGER", - "values": { - "3": "disabled", - "4": "enabled" - } - }, - "AdminStatus": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "HAMode": { - "tp": "INTEGER", - "values": { - "0": "standalone", - "1": "primary", - "2": "secondary", - "3": "unknown" - } - }, - "HAState": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "init", - "2": "down", - "3": "up", - "4": "partialFail", - "5": "monitorFail", - "6": "monitorOk", - "7": "completeFail", - "8": "dumb", - "9": "disabled", - "10": "partialFailSsl", - "11": "routemonitorFail" - } - }, - "HAON": { - "tp": "INTEGER", - "values": { - "0": "no", - "1": "yes" - } - }, - "ClusterAdminState": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "spare", - "3": "passive" - } - }, - "ClusterMasterState": { - "tp": "INTEGER", - "values": { - "0": "inactive", - "1": "active", - "2": "unknown" - } - }, - "ClusterCurHealth": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "init", - "2": "down", - "3": "up", - "4": "partialFail", - "5": "completeFail", - "6": "partialFailSsl", - "7": "routemonitorFail", - "8": "lbStateSyncInprog", - "9": "bkplaneFail", - "10": "clagFail", - "11": "dhtSyncInprog", - "12": "syncookieSyncInprog", - "14": "unkwnBadHlth" - } - }, - "ClusterEffHealth": { - "tp": "INTEGER", - "values": { - "1": "up", - "2": "notup", - "3": "unknown", - "4": "init" - } - }, - "ClusterSyncState": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "success", - "3": "inprog", - "4": "failure", - "5": "incsyncdisabled", - "6": "disabled", - "7": "unknown" - } - }, - "FeatureStatus": { - "tp": "INTEGER", - "values": { - "0": "notLicensed", - "1": "licensedButDisabled", - "2": "licensedAndEnabled" - } - }, - "FeaturePlatform": { - "tp": "INTEGER", - "values": { - "0": "ns", - "1": "agee", - "2": "nsva" - } - }, - "ModeStatus": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "LbPolicy": { - "tp": "INTEGER", - "values": { - "1": "weightedRoundRobin", - "2": "leastConnections", - "3": "leastResponse", - "4": "asynchronousMAC", - "5": "urlHashed", - "6": "domainHashed", - "7": "destinationIPHashed", - "8": "sourceIPHashed", - "9": "leastBandwidth", - "10": "leastPackets", - "11": "customLoad", - "12": "token", - "13": "staticProximity", - "14": "rdp", - "15": "leastreq", - "16": "rtt", - "17": "sourceIPDestinationIPHashed", - "18": "sourceIPSourcePort", - "19": "lrtm", - "20": "callIDHashed" - } - }, - "PersistanceType": { - "tp": "INTEGER", - "values": { - "0": "none", - "1": "sourceIp", - "2": "cookieInsert", - "3": "cookieDelete", - "4": "cookieRead", - "5": "cookieHash", - "6": "sessionId", - "7": "server", - "8": "rule", - "9": "urlPassive", - "10": "customServerID", - "11": "groupSourceID", - "12": "groupCookieInsert", - "13": "groupRule", - "14": "destinationIP", - "15": "spillOver", - "16": "sourceIPdestinationIP", - "17": "callerID", - "18": "gslbBackup", - "19": "rtspSessionID", - "20": "diameter", - "21": "fixSession" - } - }, - "ActionType": { - "tp": "INTEGER", - "values": { - "1": "ns", - "2": "acs", - "3": "noAction" - } - }, - "InputFormat": { - "tp": "INTEGER", - "values": { - "1": "der", - "3": "pem" - } - }, - "IpAddressType": { - "tp": "INTEGER", - "values": { - "1": "netScalerIp", - "2": "mappedIp", - "4": "subnetIp", - "8": "vserverIp", - "2048": "clusterIp" - } - }, - "IpAddressMode": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "passive" - } - }, - "AuthorizationStatus": { - "tp": "INTEGER", - "values": { - "1": "authorized", - "2": "notAuthorized" - } - }, - "CommandExecutionStatus": { - "tp": "INTEGER", - "values": { - "1": "failed", - "2": "successful" - } - }, - "MonitorType": { - "tp": "INTEGER", - "values": { - "1": "ping", - "2": "tcp", - "3": "http", - "4": "tcpEcv", - "5": "httpEcv", - "6": "udpEcv", - "7": "dns", - "8": "ftp", - "9": "https", - "10": "tcps", - "11": "ldnsPing", - "12": "ldnsTcp", - "13": "ldnsDns", - "14": "radius", - "15": "dbsResolver", - "16": "user", - "17": "httpInline", - "18": "sipUdp", - "19": "sipTcp", - "20": "ftpExtended", - "21": "smtp", - "22": "snmp", - "23": "nntp", - "24": "mysql", - "25": "ldap", - "26": "pop3", - "27": "load", - "28": "citrixXmlService", - "29": "citrixWebInterface", - "30": "citrixStaService", - "31": "citrixStaServiceNhop", - "32": "dnsTcp", - "33": "rtsp", - "34": "arp", - "35": "citrixAg", - "36": "citrixAacLoginPage", - "37": "citrixAacLas", - "38": "citrixXdDdc", - "39": "nd6", - "40": "mysqlEcv", - "41": "mssqlEcv", - "42": "citrixWiExtended", - "44": "diameter", - "46": "radiusaccounting", - "47": "storeFront", - "48": "tftpExtended", - "49": "appc", - "50": "smpp", - "52": "citrixXncEcv", - "53": "citrixXdm" - } - }, - "MonitorState": { - "tp": "INTEGER", - "values": { - "0": "monitorStateNotProbed", - "1": "monitorStateDown", - "2": "monitorStateUnknown", - "6": "monitorStateDisabled", - "7": "monitorStateUp" - } - }, - "ServiceGroupState": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "VServerType": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "loadbalancing", - "2": "loadbalancinggroup", - "3": "sslvpn", - "4": "contentswitching", - "5": "cacheredirection" - } - }, - "SvcEntityType": { - "tp": "INTEGER", - "values": { - "0": "service", - "1": "serviceGroupMember" - } - }, - "ActiveActiveState": { - "tp": "INTEGER", - "values": { - "0": "notApplicable", - "1": "active", - "2": "backup" - } - }, - "nsProducts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netScaler", - 4 - ] - }, - "rs9000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsProducts", - 1 - ] - }, - "nsSysGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rs9000", - 1 - ] - }, - "sysBuildVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysGroup", - 1 - ] - }, - "sysIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsSysGroup", - 2 - ] - }, - "sysNetmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsSysGroup", - 3 - ] - }, - "sysMappedIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsSysGroup", - 4 - ] - }, - "sysMappedIpAddressRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSysGroup", - 5 - ] - }, - "sysHighAvailabilityMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HAMode" - }, - "index": null, - "value": [ - "nsSysGroup", - 6 - ] - }, - "sysGateway": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsSysGroup", - 7 - ] - }, - "sysCurMappedIpCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSysGroup", - 8 - ] - }, - "sysCustomID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysGroup", - 9 - ] - }, - "sysHardwareVersionId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSysGroup", - 10 - ] - }, - "sysHardwareVersionDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysGroup", - 11 - ] - }, - "sysTotConfigChanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSysGroup", - 12 - ] - }, - "sysTotSaveConfigs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSysGroup", - 13 - ] - }, - "sysHardwareSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysGroup", - 14 - ] - }, - "sysHardwareEncodedSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysGroup", - 15 - ] - }, - "sysModelId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSysGroup", - 16 - ] - }, - "nsFeatureInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 20 - ] - }, - "featureWebLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 1 - ] - }, - "featureSurgeProtection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 2 - ] - }, - "featureLoadBalancing": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 3 - ] - }, - "featureContentSwitching": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 4 - ] - }, - "featureCacheRedirection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 5 - ] - }, - "featureSureConnect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 6 - ] - }, - "featureCompression": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 7 - ] - }, - "featurePriorityQueuing": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 8 - ] - }, - "featureSslOffloading": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 9 - ] - }, - "featureGslb": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 10 - ] - }, - "featureHttpDosProtection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 11 - ] - }, - "featureDynamicRouting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 12 - ] - }, - "featureContentFiltering": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 13 - ] - }, - "featureInternalCaching": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 14 - ] - }, - "featureSSLVPN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 15 - ] - }, - "featureOSPF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 16 - ] - }, - "featureRIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 17 - ] - }, - "featureBGP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 18 - ] - }, - "featureRewrite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 19 - ] - }, - "featureDeltaCompression": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 20 - ] - }, - "featureGSLBProximity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 21 - ] - }, - "featureIPv6ProtocolTranslation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 22 - ] - }, - "featureApplicationFirewall": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 23 - ] - }, - "featureResponder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 24 - ] - }, - "featureHtmlInjection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 25 - ] - }, - "featureAGEE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 50 - ] - }, - "featureAAA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 51 - ] - }, - "featurePLATFORM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeaturePlatform" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 60 - ] - }, - "featureAPPFLOW": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 61 - ] - }, - "featureISIS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 62 - ] - }, - "featureContentAdapation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FeatureStatus" - }, - "index": null, - "value": [ - "nsFeatureInfo", - 63 - ] - }, - "nsModeInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 21 - ] - }, - "modeFastRamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 1 - ] - }, - "l2Mode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 2 - ] - }, - "modeUseSrcIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 3 - ] - }, - "modeClientKeepAlive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 4 - ] - }, - "modeTcpBuffering": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 5 - ] - }, - "modeMacBasedForwarding": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 6 - ] - }, - "modeUseSubnetIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 7 - ] - }, - "modeEdgeConfiguration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 8 - ] - }, - "l3mode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 9 - ] - }, - "modePathMTUDiscovery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 10 - ] - }, - "modeStaticRouteAdv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 11 - ] - }, - "modeDirectRouteAdv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 12 - ] - }, - "modeIntranetRouteAdv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 13 - ] - }, - "brgBpdu": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 14 - ] - }, - "modeIpv6StaticRouteAdv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 15 - ] - }, - "modeIpv6DirectRouteAdv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 16 - ] - }, - "mediaclassification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsModeInfo", - 17 - ] - }, - "nsFiltersGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 22 - ] - }, - "aclStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsFiltersGroup", - 1 - ] - }, - "aclTotPktsBridgedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 1 - ] - }, - "aclTotPktsBridgedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 2 - ] - }, - "aclTotPktsDeniedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 3 - ] - }, - "aclTotPktsDeniedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 4 - ] - }, - "aclTotPktsAllowedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 5 - ] - }, - "aclTotPktsAllowedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 6 - ] - }, - "aclTotPktsReusedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 7 - ] - }, - "aclTotPktsReusedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "aclStatsGroup", - 8 - ] - }, - "aclTotPktsBridged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 9 - ] - }, - "aclTotPktsDenied": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 10 - ] - }, - "aclTotPktsAllowed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 11 - ] - }, - "aclTotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 12 - ] - }, - "aclTotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 13 - ] - }, - "aclTotPktsNAT": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 14 - ] - }, - "nsAclTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsAclEntry" - }, - "index": null, - "value": [ - "aclStatsGroup", - 20 - ] - }, - "nsAclEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsAclEntry" - }, - "index": [ - "aclName" - ], - "value": [ - "nsAclTable", - 1 - ] - }, - "NsAclEntry": { - "tp": "SEQUENCE" - }, - "aclName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsAclEntry", - 1 - ] - }, - "aclPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsAclEntry", - 2 - ] - }, - "aclHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAclEntry", - 3 - ] - }, - "aclperHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAclEntry", - 4 - ] - }, - "aclFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsAclEntry", - 5 - ] - }, - "aclTotCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "aclStatsGroup", - 21 - ] - }, - "contentFiltersTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ContentFiltersEntry" - }, - "index": null, - "value": [ - "nsFiltersGroup", - 2 - ] - }, - "contentFiltersEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ContentFiltersEntry" - }, - "index": [ - "contentFilterName" - ], - "value": [ - "contentFiltersTable", - 1 - ] - }, - "ContentFiltersEntry": { - "tp": "SEQUENCE" - }, - "contentFilterName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "contentFiltersEntry", - 1 - ] - }, - "contentFilterHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "contentFiltersEntry", - 2 - ] - }, - "contentFilterHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "contentFiltersEntry", - 3 - ] - }, - "contentFilterHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "contentFiltersEntry", - 4 - ] - }, - "saclStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsFiltersGroup", - 3 - ] - }, - "saclTotPktsBridged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "saclStatsGroup", - 1 - ] - }, - "saclTotPktsDenied": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "saclStatsGroup", - 2 - ] - }, - "saclTotPktsAllowed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "saclStatsGroup", - 3 - ] - }, - "saclTotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "saclStatsGroup", - 4 - ] - }, - "saclTotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "saclStatsGroup", - 5 - ] - }, - "saclsCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "saclStatsGroup", - 6 - ] - }, - "acl6StatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsFiltersGroup", - 4 - ] - }, - "nsAcl6Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsAcl6Entry" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 20 - ] - }, - "nsAcl6Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsAcl6Entry" - }, - "index": [ - "acAclName" - ], - "value": [ - "nsAcl6Table", - 1 - ] - }, - "NsAcl6Entry": { - "tp": "SEQUENCE" - }, - "acAclName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsAcl6Entry", - 1 - ] - }, - "acl6Priority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsAcl6Entry", - 2 - ] - }, - "acl6perHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAcl6Entry", - 3 - ] - }, - "acl6FullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsAcl6Entry", - 4 - ] - }, - "acl6TotPktsBridged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 21 - ] - }, - "acl6TotPktsDenied": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 22 - ] - }, - "acl6TotPktsAllowed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 23 - ] - }, - "acl6TotPktsNAT": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 24 - ] - }, - "acl6TotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 25 - ] - }, - "acl6TotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 26 - ] - }, - "acl6TotPktsNAT64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 27 - ] - }, - "acl6TotCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "acl6StatsGroup", - 28 - ] - }, - "pbrStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsFiltersGroup", - 5 - ] - }, - "nsPbrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsPbrEntry" - }, - "index": null, - "value": [ - "pbrStatsGroup", - 20 - ] - }, - "nsPbrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsPbrEntry" - }, - "index": [ - "pbrName" - ], - "value": [ - "nsPbrTable", - 1 - ] - }, - "NsPbrEntry": { - "tp": "SEQUENCE" - }, - "pbrName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsPbrEntry", - 1 - ] - }, - "pbrFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsPbrEntry", - 2 - ] - }, - "pbrPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsPbrEntry", - 3 - ] - }, - "pbrperHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsPbrEntry", - 4 - ] - }, - "pbrTotPktsAllowed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbrStatsGroup", - 21 - ] - }, - "pbrTotPktsDenied": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbrStatsGroup", - 22 - ] - }, - "pbrTotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbrStatsGroup", - 23 - ] - }, - "pbrTotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbrStatsGroup", - 24 - ] - }, - "pbrTotNullDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbrStatsGroup", - 25 - ] - }, - "sacl6StatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsFiltersGroup", - 6 - ] - }, - "sacl6TotPktsBridged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sacl6StatsGroup", - 1 - ] - }, - "sacl6TotPktsDenied": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sacl6StatsGroup", - 2 - ] - }, - "sacl6TotPktsAllowed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sacl6StatsGroup", - 3 - ] - }, - "sacl6TotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sacl6StatsGroup", - 4 - ] - }, - "sacl6TotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sacl6StatsGroup", - 5 - ] - }, - "sacl6sCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sacl6StatsGroup", - 6 - ] - }, - "pbr6StatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsFiltersGroup", - 7 - ] - }, - "nsPbr6Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsPbr6Entry" - }, - "index": null, - "value": [ - "pbr6StatsGroup", - 20 - ] - }, - "nsPbr6Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsPbr6Entry" - }, - "index": [ - "acPbrName" - ], - "value": [ - "nsPbr6Table", - 1 - ] - }, - "NsPbr6Entry": { - "tp": "SEQUENCE" - }, - "acPbrName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsPbr6Entry", - 1 - ] - }, - "pbr6FullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsPbr6Entry", - 2 - ] - }, - "pbr6Priority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsPbr6Entry", - 3 - ] - }, - "pbr6perHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsPbr6Entry", - 4 - ] - }, - "pbr6TotPktsAllowed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbr6StatsGroup", - 21 - ] - }, - "pbr6TotPktsDenied": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbr6StatsGroup", - 22 - ] - }, - "pbr6TotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbr6StatsGroup", - 23 - ] - }, - "pbr6TotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbr6StatsGroup", - 24 - ] - }, - "pbr6TotNullDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pbr6StatsGroup", - 25 - ] - }, - "nsHighAvailabilityGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 23 - ] - }, - "haPeerId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 1 - ] - }, - "haPeerIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 2 - ] - }, - "haPeerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HAMode" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 3 - ] - }, - "haTotStateTransitions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 4 - ] - }, - "haTimeofLastStateTransition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 5 - ] - }, - "haTotStateFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 6 - ] - }, - "haErrSyncFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 7 - ] - }, - "haErrTotNodeDown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 8 - ] - }, - "haErrPropMemFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 9 - ] - }, - "haErrNsbMemFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 10 - ] - }, - "haErrPortSilent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 11 - ] - }, - "haTotTimerRecoveries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 12 - ] - }, - "haErrSwMonitorFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 13 - ] - }, - "haNicsMonitorFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 14 - ] - }, - "haLastMasterStateTransitionReason": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 15 - ] - }, - "haPeerSystemState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 16 - ] - }, - "haErrPropTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 17 - ] - }, - "haCurDerivedInc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 18 - ] - }, - "haCurPeerInc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 19 - ] - }, - "haErrMasterDispute": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 20 - ] - }, - "haTotPktTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 21 - ] - }, - "haTotPktRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 22 - ] - }, - "haCurStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HAON" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 23 - ] - }, - "haCurState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HAState" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 24 - ] - }, - "haPeerInetAddrType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 25 - ] - }, - "haPeerInetAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 26 - ] - }, - "haNicMonitorSucceeded": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 27 - ] - }, - "haLastNicMonitorFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsHighAvailabilityGroup", - 28 - ] - }, - "vlanTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VlanEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 24 - ] - }, - "vlanEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanEntry" - }, - "index": [ - "vlanId" - ], - "value": [ - "vlanTable", - 1 - ] - }, - "VlanEntry": { - "tp": "SEQUENCE" - }, - "vlanId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vlanEntry", - 1 - ] - }, - "vlanMemberInterfaces": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vlanEntry", - 2 - ] - }, - "vlanTaggedInterfaces": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vlanEntry", - 3 - ] - }, - "vlanTotRxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 4 - ] - }, - "vlanTotRxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 5 - ] - }, - "vlanTotRxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 6 - ] - }, - "vlanTotRxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 7 - ] - }, - "vlanTotTxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 8 - ] - }, - "vlanTotTxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 9 - ] - }, - "vlanTotTxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 10 - ] - }, - "vlanTotTxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 11 - ] - }, - "vlanTotDroppedPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 12 - ] - }, - "vlanTotDroppedPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 13 - ] - }, - "vlanTotBroadcastPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 14 - ] - }, - "vlanTotBroadcastPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vlanEntry", - 15 - ] - }, - "vlanTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vlanEntry", - 16 - ] - }, - "vlanTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vlanEntry", - 17 - ] - }, - "vlanTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vlanEntry", - 18 - ] - }, - "vlanTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vlanEntry", - 19 - ] - }, - "vlanTotDroppedPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vlanEntry", - 20 - ] - }, - "vlanTotBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vlanEntry", - 21 - ] - }, - "vlanBindIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vlanEntry", - 22 - ] - }, - "vlanBindIpNetmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vlanEntry", - 23 - ] - }, - "vlanBridgeGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vlanEntry", - 24 - ] - }, - "vlanAliasName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vlanEntry", - 25 - ] - }, - "nsIpAddrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsIpAddrEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 26 - ] - }, - "nsIpAddrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsIpAddrEntry" - }, - "index": [ - "ipAddr" - ], - "value": [ - "nsIpAddrTable", - 1 - ] - }, - "NsIpAddrEntry": { - "tp": "SEQUENCE" - }, - "ipAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 1 - ] - }, - "ipNetmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 2 - ] - }, - "ipType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddressType" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 3 - ] - }, - "ipMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddressMode" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 4 - ] - }, - "ipFreePorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 5 - ] - }, - "ipVlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 6 - ] - }, - "ipBridgeGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 7 - ] - }, - "ipVxlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsIpAddrEntry", - 8 - ] - }, - "nsResourceGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 41 - ] - }, - "resCpuUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 1 - ] - }, - "resMemUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 2 - ] - }, - "numCPUs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 3 - ] - }, - "memSizeMB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 4 - ] - }, - "numSSLCards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 5 - ] - }, - "nsCPUTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsCPUEntry" - }, - "index": null, - "value": [ - "nsResourceGroup", - 6 - ] - }, - "nsCPUEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsCPUEntry" - }, - "index": [ - "nsCPUname" - ], - "value": [ - "nsCPUTable", - 1 - ] - }, - "NsCPUEntry": { - "tp": "SEQUENCE" - }, - "nsCPUname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsCPUEntry", - 1 - ] - }, - "nsCPUusage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCPUEntry", - 2 - ] - }, - "nsSysHealthTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsSysHealthEntry" - }, - "index": null, - "value": [ - "nsResourceGroup", - 7 - ] - }, - "nsSysHealthEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsSysHealthEntry" - }, - "index": [ - "sysHealthCounterName" - ], - "value": [ - "nsSysHealthTable", - 1 - ] - }, - "NsSysHealthEntry": { - "tp": "SEQUENCE" - }, - "sysHealthCounterName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysHealthEntry", - 1 - ] - }, - "sysHealthCounterValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSysHealthEntry", - 2 - ] - }, - "nsSysHealthDiskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsSysHealthDiskEntry" - }, - "index": null, - "value": [ - "nsResourceGroup", - 8 - ] - }, - "nsSysHealthDiskEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsSysHealthDiskEntry" - }, - "index": [ - "sysHealthDiskName" - ], - "value": [ - "nsSysHealthDiskTable", - 1 - ] - }, - "NsSysHealthDiskEntry": { - "tp": "SEQUENCE" - }, - "sysHealthDiskName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsSysHealthDiskEntry", - 1 - ] - }, - "sysHealthDiskSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSysHealthDiskEntry", - 2 - ] - }, - "sysHealthDiskAvail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSysHealthDiskEntry", - 3 - ] - }, - "sysHealthDiskUsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSysHealthDiskEntry", - 4 - ] - }, - "sysHealthDiskPerusage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSysHealthDiskEntry", - 5 - ] - }, - "cpuSpeedMHz": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 15 - ] - }, - "numPEs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsResourceGroup", - 16 - ] - }, - "sysStatisticsTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "nsResourceGroup", - 17 - ] - }, - "nsIpStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 43 - ] - }, - "ipTotRxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 1 - ] - }, - "ipTotRxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 2 - ] - }, - "ipTotRxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 3 - ] - }, - "ipTotRxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 4 - ] - }, - "ipTotRxMbitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 5 - ] - }, - "ipTotRxMbitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 6 - ] - }, - "ipTotTxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 7 - ] - }, - "ipTotTxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 8 - ] - }, - "ipTotTxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 9 - ] - }, - "ipTotTxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 10 - ] - }, - "ipTotTxMbitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 11 - ] - }, - "ipTotTxMbitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 12 - ] - }, - "ipTotFragmentsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 13 - ] - }, - "ipTotFragmentsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 14 - ] - }, - "ipTotBadlensLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 15 - ] - }, - "ipTotBadlensHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 16 - ] - }, - "ipTotBadMacAddrsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 17 - ] - }, - "ipTotBadMacAddrsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 18 - ] - }, - "ipTotMaxClientsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 19 - ] - }, - "ipTotMaxClientsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 20 - ] - }, - "ipTotUnknownSvcsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 21 - ] - }, - "ipTotUnknownSvcsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 22 - ] - }, - "ipTotLandattacksLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 23 - ] - }, - "ipTotLandattacksHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 24 - ] - }, - "ipTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 25 - ] - }, - "ipTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 26 - ] - }, - "ipTotRxMbits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 27 - ] - }, - "ipTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 28 - ] - }, - "ipTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 29 - ] - }, - "ipTotTxMbits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 30 - ] - }, - "ipTotFragments": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 31 - ] - }, - "ipTotBadlens": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 32 - ] - }, - "ipTotBadMacAddrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 33 - ] - }, - "ipTotMaxClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 34 - ] - }, - "ipTotUnknownSvcs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 35 - ] - }, - "ipTotLandattacks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 36 - ] - }, - "ipTotBadChecksums": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 37 - ] - }, - "ipTotReassemblyAttempt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 38 - ] - }, - "ipTotSuccReassembly": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 39 - ] - }, - "ipTotUnsuccReassembly": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 40 - ] - }, - "ipTotTooBig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 41 - ] - }, - "ipTotZeroFragmentLen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 42 - ] - }, - "ipTotDupFragments": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 43 - ] - }, - "ipTotOutOfOrderFrag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 44 - ] - }, - "ipTotUnknownDstRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 45 - ] - }, - "ipTotBadTransport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 46 - ] - }, - "ipTotVIPDown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 47 - ] - }, - "ipTotFixHeaderFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 48 - ] - }, - "ipTotAddrLookup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 49 - ] - }, - "ipTotAddrLookupFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 50 - ] - }, - "ipTotUDPfragmentsFwd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 51 - ] - }, - "ipTotTCPfragmentsFwd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 52 - ] - }, - "ipTotFragPktsGen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 53 - ] - }, - "ipTotInvalidHeaderSz": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 54 - ] - }, - "ipTotInvalidPacketSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 55 - ] - }, - "ipTotTruncatedPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 56 - ] - }, - "ipTotZeroNextHop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 57 - ] - }, - "ipTotTtlExpired": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 58 - ] - }, - "nonIpTotTruncatedPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIpStatsGroup", - 59 - ] - }, - "nsIcmpStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 44 - ] - }, - "icmpTotRxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 1 - ] - }, - "icmpTotRxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 2 - ] - }, - "icmpTotRxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 3 - ] - }, - "icmpTotRxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 4 - ] - }, - "icmpTotTxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 5 - ] - }, - "icmpTotTxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 6 - ] - }, - "icmpTotTxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 7 - ] - }, - "icmpTotTxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 8 - ] - }, - "icmpTotRxEchoReplyLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 9 - ] - }, - "icmpTotRxEchoReplyHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 10 - ] - }, - "icmpTotTxEchoReplyLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 11 - ] - }, - "icmpTotTxEchoReplyHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 12 - ] - }, - "icmpTotRxEchoLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 13 - ] - }, - "icmpTotRxEchoHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 14 - ] - }, - "icmpTotPktsDroppedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 15 - ] - }, - "icmpTotPktsDroppedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 16 - ] - }, - "icmpCurRateThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 17 - ] - }, - "icmpCurRateThresholdInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 18 - ] - }, - "icmpCurRateCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 19 - ] - }, - "icmpTotThresholdExceedsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 20 - ] - }, - "icmpTotThresholdExceedsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 21 - ] - }, - "icmpTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 22 - ] - }, - "icmpTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 23 - ] - }, - "icmpTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 24 - ] - }, - "icmpTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 25 - ] - }, - "icmpTotRxEchoReply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 26 - ] - }, - "icmpTotTxEchoReply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 27 - ] - }, - "icmpTotRxEcho": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 28 - ] - }, - "icmpTotPktsDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 29 - ] - }, - "icmpTotThresholdExceeds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 30 - ] - }, - "icmpTotPortUnreachableRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 31 - ] - }, - "icmpTotPortUnreachableTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 32 - ] - }, - "icmpTotBadChecksum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 33 - ] - }, - "icmpTotNeedFragRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 34 - ] - }, - "icmpTotNonFirstIpFrag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 35 - ] - }, - "icmpTotInvalidBodyLen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 36 - ] - }, - "icmpTotNoTcpConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 37 - ] - }, - "icmpTotNoUdpConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 38 - ] - }, - "icmpTotInvalidTcpSeqno": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 39 - ] - }, - "icmpTotInvalidNextMTUval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 40 - ] - }, - "icmpTotDstIpLookup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 41 - ] - }, - "icmpTotBigNextMTU": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 42 - ] - }, - "icmpTotInvalidProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 43 - ] - }, - "icmpTotBadPMTUIpChecksum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 44 - ] - }, - "icmpTotPMTUnoLink": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 45 - ] - }, - "icmpTotPMTUDiscoveryDisabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIcmpStatsGroup", - 46 - ] - }, - "nsUdpStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 45 - ] - }, - "udpTotUnknownSvcPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 1 - ] - }, - "udpTotUnknownSvcPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 2 - ] - }, - "udpTotRxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 3 - ] - }, - "udpTotRxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 4 - ] - }, - "udpTotRxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 5 - ] - }, - "udpTotRxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 6 - ] - }, - "udpTotTxPktsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 7 - ] - }, - "udpTotTxPktsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 8 - ] - }, - "udpTotTxBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 9 - ] - }, - "udpTotTxBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 10 - ] - }, - "udpCurRateThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 11 - ] - }, - "udpRateInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 12 - ] - }, - "udpCurRateCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 13 - ] - }, - "udpCurRateThresholdExceedsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 14 - ] - }, - "udpCurRateThresholdExceedsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 15 - ] - }, - "udpTotUnknownSvcPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 16 - ] - }, - "udpTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 17 - ] - }, - "udpTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 18 - ] - }, - "udpTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 19 - ] - }, - "udpTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 20 - ] - }, - "udpCurRateThresholdExceeds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 21 - ] - }, - "udpBadChecksum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsUdpStatsGroup", - 22 - ] - }, - "nsTcpStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 46 - ] - }, - "tcpCurServerConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 1 - ] - }, - "tcpCurClientConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 2 - ] - }, - "tcpCurPendingConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 3 - ] - }, - "tcpCurResetCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 4 - ] - }, - "tcpMaxServerConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 5 - ] - }, - "tcpMaxReqsperConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 6 - ] - }, - "tcpMaxPerSrvrReusePool": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 7 - ] - }, - "tcpActiveServerConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 8 - ] - }, - "tcpCurClientConnClosing": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 9 - ] - }, - "tcpCurServerConnEstablished": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 10 - ] - }, - "tcpCurClientConnOpening": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 11 - ] - }, - "tcpCurClientConnEstablished": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 12 - ] - }, - "tcpCurServerConnClosing": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 13 - ] - }, - "tcpSpareConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 14 - ] - }, - "tcpSurgeQueueLen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 15 - ] - }, - "tcpCurServerConnOpening": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 16 - ] - }, - "tcpTotServerConnOpened": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 17 - ] - }, - "tcpTotServerConnClosed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 18 - ] - }, - "tcpTotClientConnOpened": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 19 - ] - }, - "tcpTotClientConnClosed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 20 - ] - }, - "tcpTotSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 21 - ] - }, - "tcpTotSynProbe": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 22 - ] - }, - "tcpTotSvrFin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 23 - ] - }, - "tcpTotCltFin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 24 - ] - }, - "tcpWaitToSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 25 - ] - }, - "tcpTotZombieCltConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 26 - ] - }, - "tcpTotZombieSvrConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 27 - ] - }, - "tcpTotZombieHalfOpenCltConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 28 - ] - }, - "tcpTotZombieHalfOpenSvrConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 29 - ] - }, - "tcpTotZombieActiveHalfCloseCltConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 30 - ] - }, - "tcpTotZombieActiveHalfCloseSvrConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 31 - ] - }, - "tcpTotZombiePassiveHalfCloseCltConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 32 - ] - }, - "tcpTotZombiePassiveHalfCloseSrvConnFlushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 33 - ] - }, - "tcpErrBadCheckSum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 34 - ] - }, - "tcpErrSynInSynRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 35 - ] - }, - "tcpErrSynInEst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 36 - ] - }, - "tcpErrSynGiveUp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 37 - ] - }, - "tcpErrSynSentBadAck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 38 - ] - }, - "tcpErrSynRetry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 39 - ] - }, - "tcpErrFinRetry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 40 - ] - }, - "tcpErrFinGiveUp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 41 - ] - }, - "tcpErrFinDup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 42 - ] - }, - "tcpErrRst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 43 - ] - }, - "tcpErrRstNonEst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 44 - ] - }, - "tcpErrRstOutOfWindow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 45 - ] - }, - "tcpErrRstInTimewait": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 46 - ] - }, - "tcpErrSvrRetrasmit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 47 - ] - }, - "tcpErrCltRetrasmit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 48 - ] - }, - "tcpErrFullRetrasmit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 49 - ] - }, - "tcpErrPartialRetrasmit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 50 - ] - }, - "tcpErrSvrOutOfOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 51 - ] - }, - "tcpErrCltOutOfOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 52 - ] - }, - "tcpErrCltHole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 53 - ] - }, - "tcpErrSvrHole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 54 - ] - }, - "tcpErrCookiePktSeqReject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 55 - ] - }, - "tcpErrCookiePktSigReject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 56 - ] - }, - "tcpErrCookiePktSeqDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 57 - ] - }, - "tcpErrCookiePktMssReject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 58 - ] - }, - "tcpErrRetransmit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 59 - ] - }, - "tcpErrRetransmitGiveUp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 60 - ] - }, - "tcpTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 61 - ] - }, - "tcpTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 62 - ] - }, - "tcpTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 63 - ] - }, - "tcpTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 64 - ] - }, - "pcbTotZombieCall": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 65 - ] - }, - "tcpTotSynHeld": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 66 - ] - }, - "tcpTotSynFlush": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 67 - ] - }, - "tcpTotFinWaitClosed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 68 - ] - }, - "tcpErrAnyPortFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 69 - ] - }, - "tcpErrIpPortFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 70 - ] - }, - "tcpErrSentRst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 71 - ] - }, - "tcpErrBadStateConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 72 - ] - }, - "tcpErrFastRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 73 - ] - }, - "tcpErrFirstRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 74 - ] - }, - "tcpErrSecondRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 75 - ] - }, - "tcpErrThirdRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 76 - ] - }, - "tcpErrForthRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 77 - ] - }, - "tcpErrFifthRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 78 - ] - }, - "tcpErrSixthRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 79 - ] - }, - "tcpErrSeventhRetransmissions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 80 - ] - }, - "tcpErrDataAfterFin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 81 - ] - }, - "tcpErrRstThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 82 - ] - }, - "tcpErrOutOfWindowPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 83 - ] - }, - "tcpErrSynDroppedCongestion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 84 - ] - }, - "tcpCurPhysicalServers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 85 - ] - }, - "tcpReuseHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 86 - ] - }, - "tcpWaitToData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 87 - ] - }, - "tcpErrStrayPkt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 88 - ] - }, - "tcpTotClientConnOpenRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 89 - ] - }, - "tcpCurRateThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 90 - ] - }, - "freeConnHalfClosed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 91 - ] - }, - "freeConnFlushMarked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 92 - ] - }, - "freeConnEstd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 93 - ] - }, - "flushThresReached": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 94 - ] - }, - "memFailFlushTrigger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 95 - ] - }, - "mptcpCurMpcapableSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 96 - ] - }, - "mptcpCurSFConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 97 - ] - }, - "mptcpCurPendingJoin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 98 - ] - }, - "mptcpErrInvalCookie": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 99 - ] - }, - "mptcpErrUnknownToken": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 100 - ] - }, - "mptcpErrAddridExist": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 101 - ] - }, - "mptcpErrMaxSF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 102 - ] - }, - "mptcpErrInvalMAC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 103 - ] - }, - "mptcpErrBadCksum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 104 - ] - }, - "mptcpErrAddrId0": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 105 - ] - }, - "mptcpErrfastclose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 106 - ] - }, - "mptcpErrJoinThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 107 - ] - }, - "mptcpErrInvalOpts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 108 - ] - }, - "mptcpErrInvalRemAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 109 - ] - }, - "mptcpErrVersionNotSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 110 - ] - }, - "mptcpErrCryptoNotSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 111 - ] - }, - "mptcpErrExtnFlagSet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 112 - ] - }, - "mptcpErrResFlagSet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 113 - ] - }, - "mptcpErrJoinAfterFallback": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 114 - ] - }, - "mptcpErrDataFinpassive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 115 - ] - }, - "mptcpErrFastClosepassive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 116 - ] - }, - "mptcpErrFastClose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 117 - ] - }, - "mptcpErrFastCloseKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 118 - ] - }, - "mptcpPlainackFallback": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 119 - ] - }, - "mptcpPlainackRST": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 120 - ] - }, - "mptcpMPFailSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 121 - ] - }, - "mptcpMPFailRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 122 - ] - }, - "mptcpInfiniteMapRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 123 - ] - }, - "mptcpTotMpCapSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 124 - ] - }, - "mptcpTotMpJoinSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 125 - ] - }, - "mptcpTotMpcapSession": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 126 - ] - }, - "mptcpTotSFConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 127 - ] - }, - "mptcpTotEstSFReplaced": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 128 - ] - }, - "mptcpTotPendSFReplaced": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 129 - ] - }, - "mptcpCurSessWithoutSFs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 130 - ] - }, - "tcpOptimizationEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 131 - ] - }, - "tcpOptimizationBypassed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsTcpStatsGroup", - 132 - ] - }, - "nsSslStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 47 - ] - }, - "sslCardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 1 - ] - }, - "sslEngineStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 2 - ] - }, - "sslSessionsPerSec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 3 - ] - }, - "sslTotTransactionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 11 - ] - }, - "sslTotTransactionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 12 - ] - }, - "sslTotSSLv2TransactionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 13 - ] - }, - "sslTotSSLv2TransactionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 14 - ] - }, - "sslTotSSLv3TransactionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 15 - ] - }, - "sslTotSSLv3TransactionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 16 - ] - }, - "sslTotTLSv1TransactionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 17 - ] - }, - "sslTotTLSv1TransactionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 18 - ] - }, - "sslTotSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 19 - ] - }, - "sslTotSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 20 - ] - }, - "sslTotSSLv2SessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 21 - ] - }, - "sslTotSSLv2SessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 22 - ] - }, - "sslTotSSLv3SessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 23 - ] - }, - "sslTotSSLv3SessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 24 - ] - }, - "sslTotTLSv1SessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 25 - ] - }, - "sslTotTLSv1SessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 26 - ] - }, - "sslTotExpiredSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 27 - ] - }, - "sslTotExpiredSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 28 - ] - }, - "sslTotNewSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 29 - ] - }, - "sslTotNewSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 30 - ] - }, - "sslTotSessionHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 31 - ] - }, - "sslTotSessionHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 32 - ] - }, - "sslTotSessionMissLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 33 - ] - }, - "sslTotSessionMissHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 34 - ] - }, - "sslTotRenegSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 35 - ] - }, - "sslTotRenegSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 36 - ] - }, - "sslTotSSLv3RenegSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 37 - ] - }, - "sslTotSSLv3RenegSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 38 - ] - }, - "sslTotTLSv1RenegSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 39 - ] - }, - "sslTotTLSv1RenegSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 40 - ] - }, - "sslTotSSLv2HandshakesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 41 - ] - }, - "sslTotSSLv2HandshakesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 42 - ] - }, - "sslTotSSLv3HandshakesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 43 - ] - }, - "sslTotSSLv3HandshakesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 44 - ] - }, - "sslTotTLSv1HandshakesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 45 - ] - }, - "sslTotTLSv1HandshakesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 46 - ] - }, - "sslTotSSLv2ClientAuthenticationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 47 - ] - }, - "sslTotSSLv2ClientAuthenticationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 48 - ] - }, - "sslTotSSLv3ClientAuthenticationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 49 - ] - }, - "sslTotSSLv3ClientAuthenticationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 50 - ] - }, - "sslTotTLSv1ClientAuthenticationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 51 - ] - }, - "sslTotTLSv1ClientAuthenticationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 52 - ] - }, - "sslTotRSA512keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 53 - ] - }, - "sslTotRSA512keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 54 - ] - }, - "sslTotRSA1024keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 55 - ] - }, - "sslTotRSA1024keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 56 - ] - }, - "sslTotRSA2048keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 57 - ] - }, - "sslTotRSA2048keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 58 - ] - }, - "sslTotDH512keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 59 - ] - }, - "sslTotDH512keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 60 - ] - }, - "sslTotDH1024keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 61 - ] - }, - "sslTotDH1024keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 62 - ] - }, - "sslTotDH2048keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 63 - ] - }, - "sslTotDH2048keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 64 - ] - }, - "sslTotRSAAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 65 - ] - }, - "sslTotRSAAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 66 - ] - }, - "sslTotDHAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 67 - ] - }, - "sslTotDHAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 68 - ] - }, - "sslTotDSSAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 69 - ] - }, - "sslTotDSSAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 70 - ] - }, - "sslTotNULLAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 71 - ] - }, - "sslTotNULLAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 72 - ] - }, - "sslTot40BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 73 - ] - }, - "sslTot40BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 74 - ] - }, - "sslTot56BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 75 - ] - }, - "sslTot56BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 76 - ] - }, - "sslTot64BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 77 - ] - }, - "sslTot64BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 78 - ] - }, - "sslTot128BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 79 - ] - }, - "sslTot128BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 80 - ] - }, - "sslTot40BitDESCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 81 - ] - }, - "sslTot40BitDESCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 82 - ] - }, - "sslTot56BitDESCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 83 - ] - }, - "sslTot56BitDESCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 84 - ] - }, - "sslTot168Bit3DESCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 85 - ] - }, - "sslTot168Bit3DESCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 86 - ] - }, - "sslTot40BitRC2CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 87 - ] - }, - "sslTot40BitRC2CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 88 - ] - }, - "sslTot56BitRC2CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 89 - ] - }, - "sslTot56BitRC2CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 90 - ] - }, - "sslTot128BitRC2CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 91 - ] - }, - "sslTot128BitRC2CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 92 - ] - }, - "sslTot128BitIDEACiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 93 - ] - }, - "sslTot128BitIDEACiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 94 - ] - }, - "sslTotNULLCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 95 - ] - }, - "sslTotNULLCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 96 - ] - }, - "sslTotMD5MacLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 97 - ] - }, - "sslTotMD5MacHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 98 - ] - }, - "sslTotSHAMacLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 99 - ] - }, - "sslTotSHAMacHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 100 - ] - }, - "sslTotOffloadBulkDESLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 101 - ] - }, - "sslTotOffloadBulkDESHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 102 - ] - }, - "sslTotOffloadRSAKeyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 103 - ] - }, - "sslTotOffloadRSAKeyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 104 - ] - }, - "sslTotOffloadDHKeyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 105 - ] - }, - "sslTotOffloadDHKeyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 106 - ] - }, - "sslTotOffloadSignRSALow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 107 - ] - }, - "sslTotOffloadSignRSAHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 108 - ] - }, - "sslBeTotSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 120 - ] - }, - "sslBeTotSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 121 - ] - }, - "sslBeTotSSLv3SessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 122 - ] - }, - "sslBeTotSSLv3SessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 123 - ] - }, - "sslBeTotTLSv1SessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 124 - ] - }, - "sslBeTotTLSv1SessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 125 - ] - }, - "sslBeExpiredSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 126 - ] - }, - "sslBeTotExpiredSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 127 - ] - }, - "sslBeTotSessionMultiplexAttemptsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 128 - ] - }, - "sslBeTotSessionMultiplexAttemptsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 129 - ] - }, - "sslBeTotSessionMultiplexAttemptSuccessLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 130 - ] - }, - "sslBeTotSessionMultiplexAttemptSuccessHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 131 - ] - }, - "sslBeTotSessionMultiplexAttemptFailsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 132 - ] - }, - "sslBeTotSessionMultiplexAttemptFailsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 133 - ] - }, - "sslBeMaxMultiplexedSessionsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 134 - ] - }, - "sslBeMaxMultiplexedSessionsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 135 - ] - }, - "sslBeSessionsReplacedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 136 - ] - }, - "sslBeSessionsReplacedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 137 - ] - }, - "sslBeTotSSLv3HandshakesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 138 - ] - }, - "sslBeTotSSLv3HandshakesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 139 - ] - }, - "sslBeTotTLSv1HandshakesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 140 - ] - }, - "sslBeTotTLSv1HandshakesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 141 - ] - }, - "sslBeTotSSLv3ClientAuthenticationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 142 - ] - }, - "sslBeTotSSLv3ClientAuthenticationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 143 - ] - }, - "sslBeTotTLSv1ClientAuthenticationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 144 - ] - }, - "sslBeTotTLSv1ClientAuthenticationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 145 - ] - }, - "sslBeTotRSA512keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 146 - ] - }, - "sslBeTotRSA512keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 147 - ] - }, - "sslBeTotRSA1024keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 148 - ] - }, - "sslBeTotRSA1024keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 149 - ] - }, - "sslBeTotRSA2048keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 150 - ] - }, - "sslBeTotRSA2048keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 151 - ] - }, - "sslBeTotDH512keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 152 - ] - }, - "sslBeTotDH512keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 153 - ] - }, - "sslBeTotDH1024keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 154 - ] - }, - "sslBeTotDH1024keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 155 - ] - }, - "sslBeTotDH2048keyExchangesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 156 - ] - }, - "sslBeTotDH2048keyExchangesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 157 - ] - }, - "sslBeTotRSAAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 158 - ] - }, - "sslBeTotRSAAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 159 - ] - }, - "sslBeTotDHAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 160 - ] - }, - "sslBeTotDHAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 161 - ] - }, - "sslBeTotDSSAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 162 - ] - }, - "sslBeTotDSSAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 163 - ] - }, - "sslBeTotNULLAuthorizationsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 164 - ] - }, - "sslBeTotNULLAuthorizationsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 165 - ] - }, - "sslBeTot40BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 166 - ] - }, - "sslBeTot40BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 167 - ] - }, - "sslBeTot56BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 168 - ] - }, - "sslBeTot56BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 169 - ] - }, - "sslBeTot64BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 170 - ] - }, - "sslBeTot64BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 171 - ] - }, - "sslBeTot128BitRC4CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 172 - ] - }, - "sslBeTot128BitRC4CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 173 - ] - }, - "sslBeTot40BitDESCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 174 - ] - }, - "sslBeTot40BitDESCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 175 - ] - }, - "sslBeTot56BitDESCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 176 - ] - }, - "sslBeTot56BitDESCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 177 - ] - }, - "sslBeTot168Bit3DESCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 178 - ] - }, - "sslBeTot168Bit3DESCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 179 - ] - }, - "sslBeTot40BitRC2CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 180 - ] - }, - "sslBeTot40BitRC2CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 181 - ] - }, - "sslBeTot56BitRC2CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 182 - ] - }, - "sslBeTot56BitRC2CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 183 - ] - }, - "sslBeTot128BitRC2CiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 184 - ] - }, - "sslBeTot128BitRC2CiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 185 - ] - }, - "sslBeTot128BitIDEACiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 186 - ] - }, - "sslBeTot128BitIDEACiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 187 - ] - }, - "sslBeTotNULLCiphersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 188 - ] - }, - "sslBeTotNULLCiphersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 189 - ] - }, - "sslBeTotMD5MacLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 190 - ] - }, - "sslBeTotMD5MacHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 191 - ] - }, - "sslBeTotSHAMacLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 192 - ] - }, - "sslBeTotSHAMacHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 193 - ] - }, - "sslTotTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 200 - ] - }, - "sslTotSSLv2Transactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 201 - ] - }, - "sslTotSSLv3Transactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 202 - ] - }, - "sslTotTLSv1Transactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 203 - ] - }, - "sslTotSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 204 - ] - }, - "sslTotSSLv2Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 205 - ] - }, - "sslTotSSLv3Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 206 - ] - }, - "sslTotTLSv1Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 207 - ] - }, - "sslTotExpiredSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 208 - ] - }, - "sslTotNewSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 209 - ] - }, - "sslTotSessionHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 210 - ] - }, - "sslTotSessionMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 211 - ] - }, - "sslTotRenegSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 212 - ] - }, - "sslTotSSLv3RenegSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 213 - ] - }, - "sslTotTLSv1RenegSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 214 - ] - }, - "sslTotSSLv2Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 215 - ] - }, - "sslTotSSLv3Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 216 - ] - }, - "sslTotTLSv1Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 217 - ] - }, - "sslTotSSLv2ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 218 - ] - }, - "sslTotSSLv3ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 219 - ] - }, - "sslTotTLSv1ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 220 - ] - }, - "sslTotRSA512keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 221 - ] - }, - "sslTotRSA1024keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 222 - ] - }, - "sslTotRSA2048keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 223 - ] - }, - "sslTotDH512keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 224 - ] - }, - "sslTotDH1024keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 225 - ] - }, - "sslTotDH2048keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 226 - ] - }, - "sslTotRSAAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 227 - ] - }, - "sslTotDHAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 228 - ] - }, - "sslTotDSSAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 229 - ] - }, - "sslTotNULLAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 230 - ] - }, - "sslTot40BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 231 - ] - }, - "sslTot56BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 232 - ] - }, - "sslTot64BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 233 - ] - }, - "sslTot128BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 234 - ] - }, - "sslTot40BitDESCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 235 - ] - }, - "sslTot56BitDESCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 236 - ] - }, - "sslTot168Bit3DESCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 237 - ] - }, - "sslTot40BitRC2Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 238 - ] - }, - "sslTot56BitRC2Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 239 - ] - }, - "sslTot128BitRC2Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 240 - ] - }, - "sslTot128BitIDEACiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 241 - ] - }, - "sslTotNULLCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 242 - ] - }, - "sslTotMD5Mac": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 243 - ] - }, - "sslTotSHAMac": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 244 - ] - }, - "sslTotOffloadBulkDES": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 245 - ] - }, - "sslTotOffloadRSAKeyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 246 - ] - }, - "sslTotOffloadDHKeyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 247 - ] - }, - "sslTotOffloadSignRSA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 248 - ] - }, - "sslBeTotSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 260 - ] - }, - "sslBeTotSSLv3Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 261 - ] - }, - "sslBeTotTLSv1Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 262 - ] - }, - "sslBeExpiredSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 263 - ] - }, - "sslBeTotSessionMultiplexAttempts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 264 - ] - }, - "sslBeTotSessionMultiplexAttemptSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 265 - ] - }, - "sslBeTotSessionMultiplexAttemptFails": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 266 - ] - }, - "sslBeMaxMultiplexedSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 267 - ] - }, - "sslBeTotSSLv3Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 268 - ] - }, - "sslBeTotTLSv1Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 269 - ] - }, - "sslBeTotSSLv3ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 270 - ] - }, - "sslBeTotTLSv1ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 271 - ] - }, - "sslBeTotRSA512keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 272 - ] - }, - "sslBeTotRSA1024keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 273 - ] - }, - "sslBeTotRSA2048keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 274 - ] - }, - "sslBeTotDH512keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 275 - ] - }, - "sslBeTotDH1024keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 276 - ] - }, - "sslBeTotDH2048keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 277 - ] - }, - "sslBeTotRSAAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 278 - ] - }, - "sslBeTotDHAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 279 - ] - }, - "sslBeTotDSSAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 280 - ] - }, - "sslBeTotNULLAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 281 - ] - }, - "sslBeTot40BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 282 - ] - }, - "sslBeTot56BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 283 - ] - }, - "sslBeTot64BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 284 - ] - }, - "sslBeTot128BitRC4Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 285 - ] - }, - "sslBeTot40BitDESCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 286 - ] - }, - "sslBeTot56BitDESCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 287 - ] - }, - "sslBeTot168Bit3DESCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 288 - ] - }, - "sslBeTot40BitRC2Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 289 - ] - }, - "sslBeTot56BitRC2Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 290 - ] - }, - "sslBeTot128BitRC2Ciphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 291 - ] - }, - "sslBeTot128BitIDEACiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 292 - ] - }, - "sslBeTotNULLCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 293 - ] - }, - "sslBeTotMD5Mac": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 294 - ] - }, - "sslBeTotSHAMac": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 295 - ] - }, - "sslCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 296 - ] - }, - "sslTotOffloadBulkAES": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 297 - ] - }, - "sslTotOffloadBulkRC4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 298 - ] - }, - "sslNumCardsUP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 299 - ] - }, - "sslCards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 300 - ] - }, - "sslTotBkendSessionReNegotiate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 301 - ] - }, - "sslTotCipherAES128": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 302 - ] - }, - "sslTotBkendSslV3Renego": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 303 - ] - }, - "sslTotBkendTlSvlRenego": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 304 - ] - }, - "sslTotCipherAES256": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 305 - ] - }, - "sslTotBkendCipherAES128": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 306 - ] - }, - "sslTotBkendCipherAES256": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 307 - ] - }, - "sslTotHwEncBE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 308 - ] - }, - "sslTotDec": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 309 - ] - }, - "sslTotSwEncFE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 310 - ] - }, - "sslTotEncFE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 311 - ] - }, - "sslTotEnc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 312 - ] - }, - "sslTotDecHw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 313 - ] - }, - "sslTotSwDecBE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 314 - ] - }, - "sslTotHwDecFE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 315 - ] - }, - "sslTotEncHw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 316 - ] - }, - "sslTotDecSw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 317 - ] - }, - "sslTotSwEncBE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 318 - ] - }, - "sslTotEncSw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 319 - ] - }, - "sslTotSwDecFE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 320 - ] - }, - "sslTotEncBE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 321 - ] - }, - "sslTotDecBE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 322 - ] - }, - "sslTotHwDecBE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 323 - ] - }, - "sslTotDecFE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 324 - ] - }, - "sslTotHwEncFE": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 325 - ] - }, - "sslTotRSA4096keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 326 - ] - }, - "sslCurQSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 327 - ] - }, - "sslChipReinitCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 328 - ] - }, - "sslTotECDHE224keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 329 - ] - }, - "sslTotECDHE256keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 330 - ] - }, - "sslTotECDHE384keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 331 - ] - }, - "sslTotECDHE521keyExchanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 332 - ] - }, - "sslTotTransactionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 333 - ] - }, - "sslTotSSLv2TransactionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 334 - ] - }, - "sslTotSSLv3TransactionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 335 - ] - }, - "sslTotTLSv1TransactionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 336 - ] - }, - "sslBeTotEcdheCurve521": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 337 - ] - }, - "sslBeTotEcdheCurve384": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 338 - ] - }, - "sslBeTotEcdheCurve256": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 339 - ] - }, - "sslBeTotEcdheCurve224": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 340 - ] - }, - "sslTotTLSv11Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 341 - ] - }, - "sslTotTLSv12Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 342 - ] - }, - "sslTotTLSv11Transactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 343 - ] - }, - "sslTotTLSv12Transactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 344 - ] - }, - "sslTotTLSv11Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 345 - ] - }, - "sslTotTLSv12Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 346 - ] - }, - "sslTotTLSv11RenegSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 347 - ] - }, - "sslTotTLSv12RenegSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 348 - ] - }, - "sslTotTLSv11ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 349 - ] - }, - "sslTotTLSv12ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 350 - ] - }, - "sslTotTLSv11TransactionRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 351 - ] - }, - "sslTotTLSv12TransactionRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 352 - ] - }, - "sslTot128BitAESGCMCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 353 - ] - }, - "sslTot256BitAESGCMCiphers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 354 - ] - }, - "sslTotOffloadBulkAESGCM128": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 355 - ] - }, - "sslTotOffloadBulkAESGCM256": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 356 - ] - }, - "sslBeTotTLSv11Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 357 - ] - }, - "sslBeTotTLSv12Sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 358 - ] - }, - "sslBeTotTLSv11Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 359 - ] - }, - "sslBeTotTLSv12Handshakes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 360 - ] - }, - "sslBeTotTLSv11ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 361 - ] - }, - "sslBeTotTLSv12ClientAuthentications": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 362 - ] - }, - "sslTotBkendTlSv11Renego": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 363 - ] - }, - "sslTotBkendTlSv12Renego": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 364 - ] - }, - "sslCryptoUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 365 - ] - }, - "sslTotECDSAAuthorizations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslStatsGroup", - 366 - ] - }, - "nsHttpStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 48 - ] - }, - "httpTotGetsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 1 - ] - }, - "httpTotGetsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 2 - ] - }, - "httpTotPostsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 3 - ] - }, - "httpTotPostsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 4 - ] - }, - "httpTotOthersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 5 - ] - }, - "httpTotOthersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 6 - ] - }, - "httpTotRxRequestBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 7 - ] - }, - "httpTotRxRequestBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 8 - ] - }, - "httpTotRxResponseBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 9 - ] - }, - "httpTotRxResponseBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 10 - ] - }, - "httpTotTxRequestBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 11 - ] - }, - "httpTotTxRequestBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 12 - ] - }, - "httpTotTxResponseBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 13 - ] - }, - "httpTotTxResponseBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 14 - ] - }, - "httpTotHTTP10reqLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 15 - ] - }, - "httpTotHTTP10reqHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 16 - ] - }, - "httpTotResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 17 - ] - }, - "httpTotResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 18 - ] - }, - "httpTot10ResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 19 - ] - }, - "httpTot10ResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 20 - ] - }, - "httpTotClenResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 21 - ] - }, - "httpTotClenResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 22 - ] - }, - "httpTotChunkedResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 23 - ] - }, - "httpTotChunkedResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 24 - ] - }, - "httpErrIncompleteRequestsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 25 - ] - }, - "httpErrIncompleteRequestsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 26 - ] - }, - "httpErrIncompleteResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 27 - ] - }, - "httpErrIncompleteResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 28 - ] - }, - "httpErrPipelinedRequestsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 29 - ] - }, - "httpErrPipelinedRequestsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 30 - ] - }, - "httpErrIncompleteHeadersLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 31 - ] - }, - "httpErrIncompleteHeadersHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 32 - ] - }, - "httpErrServerBusyLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 33 - ] - }, - "httpErrServerBusyHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 34 - ] - }, - "httpTotChunkedReqLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 35 - ] - }, - "httpTotChunkedReqHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 36 - ] - }, - "httpTotClenReqLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 37 - ] - }, - "httpTotClenReqHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 38 - ] - }, - "httpErrLargeContentLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 39 - ] - }, - "httpErrLargeContentHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 40 - ] - }, - "httpErrLargeCtlenLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 41 - ] - }, - "httpErrLargeCtlenHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 42 - ] - }, - "httpErrLargeChunkLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 43 - ] - }, - "httpErrLargeChunkHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 44 - ] - }, - "httpTotGets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 45 - ] - }, - "httpTotPosts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 46 - ] - }, - "httpTotOthers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 47 - ] - }, - "httpTotRxRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 48 - ] - }, - "httpTotRxResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 49 - ] - }, - "httpTotTxRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 50 - ] - }, - "httpTotTxResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 51 - ] - }, - "httpTot10Requests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 52 - ] - }, - "httpTotResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 53 - ] - }, - "httpTot10Responses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 54 - ] - }, - "httpTotClenResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 55 - ] - }, - "httpTotChunkedResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 56 - ] - }, - "httpErrIncompleteRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 57 - ] - }, - "httpErrIncompleteResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 58 - ] - }, - "httpErrPipelinedRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 59 - ] - }, - "httpErrIncompleteHeaders": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 60 - ] - }, - "httpErrServerBusy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 61 - ] - }, - "httpTotChunkedRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 62 - ] - }, - "httpTotClenRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 63 - ] - }, - "httpErrLargeContent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 64 - ] - }, - "httpErrLargeCtlen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 65 - ] - }, - "httpErrLargeChunk": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 66 - ] - }, - "httpTotRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 67 - ] - }, - "httpTot11Requests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 68 - ] - }, - "httpTot11Responses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 69 - ] - }, - "httpTotNoClenChunkResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 70 - ] - }, - "httpErrNoreuseMultipart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 71 - ] - }, - "spdy2TotStreams": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 72 - ] - }, - "spdyTotStreams": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 73 - ] - }, - "spdyv2TotStreams": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 74 - ] - }, - "spdyv3TotStreams": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 75 - ] - }, - "httpTotRequestsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 76 - ] - }, - "httpTotResposesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsHttpStatsGroup", - 77 - ] - }, - "nsCacheStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 49 - ] - }, - "cacheMaxMemoryKB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 1 - ] - }, - "cacheUtilizedMemoryKB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 2 - ] - }, - "cacheNumCached": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 3 - ] - }, - "cacheErrMemAllocLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 4 - ] - }, - "cacheErrMemAllocHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 5 - ] - }, - "cacheTotRequestsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 6 - ] - }, - "cacheTotRequestsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 7 - ] - }, - "cacheTotHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 8 - ] - }, - "cacheTotHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 9 - ] - }, - "cacheTotMissesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 10 - ] - }, - "cacheTotMissesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 11 - ] - }, - "cachePercentHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 12 - ] - }, - "cacheRecentPercentHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 13 - ] - }, - "cacheCurHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 14 - ] - }, - "cacheCurMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 15 - ] - }, - "cacheTot304HitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 16 - ] - }, - "cacheTot304HitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 17 - ] - }, - "cacheTotNon304HitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 18 - ] - }, - "cacheTotNon304HitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 19 - ] - }, - "cachePercent304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 20 - ] - }, - "cacheRecentPercent304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 21 - ] - }, - "cacheTotStoreAbleMissesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 22 - ] - }, - "cacheTotStoreAbleMissesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 23 - ] - }, - "cacheTotNonStoreAbleMissesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 24 - ] - }, - "cacheTotNonStoreAbleMissesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 25 - ] - }, - "cachePercentStoreAbleMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 26 - ] - }, - "cacheRecentPercentStoreAbleMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 27 - ] - }, - "cacheTotRevalidationMissLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 28 - ] - }, - "cacheTotRevalidationMissHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 29 - ] - }, - "cacheTotFullToConditionalRequestLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 30 - ] - }, - "cacheTotFullToConditionalRequestHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 31 - ] - }, - "cacheTotSuccessfulRevalidationLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 32 - ] - }, - "cacheTotSuccessfulRevalidationHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 33 - ] - }, - "cachePercentSuccessfulRevalidation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 34 - ] - }, - "cacheRecentPercentSuccessfulRevalidation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 35 - ] - }, - "cacheBytesServedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 36 - ] - }, - "cacheBytesServedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 37 - ] - }, - "cacheCompressedBytesServedLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 38 - ] - }, - "cacheCompressedBytesServedHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 39 - ] - }, - "cachePercentByteHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 40 - ] - }, - "cacheRecentPercentByteHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 41 - ] - }, - "cachePercentOriginBandwidthSaved": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 42 - ] - }, - "cacheRecentPercentOriginBandwidthSaved": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 43 - ] - }, - "cacheErrMemAlloc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 44 - ] - }, - "cacheTotRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 45 - ] - }, - "cacheTotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 46 - ] - }, - "cacheTotMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 47 - ] - }, - "cacheTot304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 48 - ] - }, - "cacheTotNon304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 49 - ] - }, - "cacheTotStoreAbleMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 50 - ] - }, - "cacheTotNonStoreAbleMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 51 - ] - }, - "cacheTotRevalidationMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 52 - ] - }, - "cacheTotFullToConditionalRequest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 53 - ] - }, - "cacheTotSuccessfulRevalidation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 54 - ] - }, - "cacheTotResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 55 - ] - }, - "cacheBytesServed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 56 - ] - }, - "cacheCompressedBytesServed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 57 - ] - }, - "cacheTotPetRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 58 - ] - }, - "cacheTotPetHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 59 - ] - }, - "cachePercentPetHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 60 - ] - }, - "cacheTotParameterizedRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 61 - ] - }, - "cacheTotParameterizedHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 62 - ] - }, - "cacheTotParameterizedNon304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 63 - ] - }, - "cacheTotParameterized304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 64 - ] - }, - "cachePercentParameterized304Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 65 - ] - }, - "cacheRecentPercentParameterizedHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 66 - ] - }, - "cacheTotInvalidationRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 67 - ] - }, - "cacheTotNonParameterizedInvalidationRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 68 - ] - }, - "cacheTotParameterizedInvalidationRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 69 - ] - }, - "cacheLargestResponseReceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 70 - ] - }, - "cacheTotFlashcacheMisses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 71 - ] - }, - "cacheTotFlashcacheHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 72 - ] - }, - "cacheTotExpireAtLastByte": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 73 - ] - }, - "cacheNumMarker": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 74 - ] - }, - "cacheMaxMemoryActiveKB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 75 - ] - }, - "cache64MaxMemoryKB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 76 - ] - }, - "cacheNumObjSavedOnDisk": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 77 - ] - }, - "cacheNumMBSavedOnDisk": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 78 - ] - }, - "cacheNumMBReadFromDisk": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 79 - ] - }, - "cacheNumMBWrittenToDisk": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 80 - ] - }, - "cacheTotSqlHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCacheStatsGroup", - 81 - ] - }, - "nsCompressionStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 50 - ] - }, - "compTotalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 1 - ] - }, - "compTotalTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 2 - ] - }, - "compTotalRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 3 - ] - }, - "compTotalTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 4 - ] - }, - "compTotalRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 5 - ] - }, - "compRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 6 - ] - }, - "compTotalDataCompressionRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 7 - ] - }, - "compTcpTotalTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 8 - ] - }, - "compTcpTotalRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 9 - ] - }, - "compTcpTotalTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 10 - ] - }, - "compTcpTotalRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 11 - ] - }, - "compTcpTotalQuantum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 12 - ] - }, - "compTcpTotalPush": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 13 - ] - }, - "compTcpTotalEoi": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 14 - ] - }, - "compTcpTotalTimer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 15 - ] - }, - "compTcpRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 16 - ] - }, - "compTcpBandwidthSaving": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 17 - ] - }, - "deCompTcpRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 18 - ] - }, - "deCompTcpTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 19 - ] - }, - "deCompTcpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 20 - ] - }, - "deCompTcpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 21 - ] - }, - "deCompTcpErrData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 22 - ] - }, - "deCompTcpErrLessData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 23 - ] - }, - "deCompTcpErrMoreData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 24 - ] - }, - "deCompTcpErrMemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 25 - ] - }, - "deCompTcpErrUnknown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 26 - ] - }, - "deCompTcpRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 27 - ] - }, - "deCompTcpBandwidthSaving": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 28 - ] - }, - "delCompTotalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 29 - ] - }, - "delCompFirstAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 30 - ] - }, - "delCompDone": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 31 - ] - }, - "delCompTcpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 32 - ] - }, - "delCompTcpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 33 - ] - }, - "delCompTcpRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 34 - ] - }, - "delCompTcpTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 35 - ] - }, - "delCompBaseServed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 36 - ] - }, - "delCompBaseTcpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 37 - ] - }, - "delCompErrBypassed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 39 - ] - }, - "delCompErrBFileWHdrFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 40 - ] - }, - "delCompErrNostoreMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 41 - ] - }, - "delCompErrReqinfoToobig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 42 - ] - }, - "delCompErrReqinfoAllocfail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 43 - ] - }, - "delCompErrSessallocFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 44 - ] - }, - "delCmpRatio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 45 - ] - }, - "delBwSaving": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 46 - ] - }, - "compHttpBandwidthSaving": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsCompressionStatsGroup", - 47 - ] - }, - "nsGslbGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 51 - ] - }, - "gslbGlobalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsGslbGroup", - 1 - ] - }, - "customEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "gslbGlobalStats", - 1 - ] - }, - "staticEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "gslbGlobalStats", - 2 - ] - }, - "gslbGlobalInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsGslbGroup", - 2 - ] - }, - "gslbSitesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF GslbSitesEntry" - }, - "index": null, - "value": [ - "gslbGlobalInfo", - 1 - ] - }, - "gslbSitesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "GslbSitesEntry" - }, - "index": [ - "siteName" - ], - "value": [ - "gslbSitesTable", - 1 - ] - }, - "GslbSitesEntry": { - "tp": "SEQUENCE" - }, - "siteName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 1 - ] - }, - "siteIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 2 - ] - }, - "siteType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SiteType" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 3 - ] - }, - "siteMetricExchange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MetricExchange" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 4 - ] - }, - "siteMepStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MepStatus" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 5 - ] - }, - "sitePublicIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 6 - ] - }, - "siteTotalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 7 - ] - }, - "siteTotalRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 8 - ] - }, - "siteTotalResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 9 - ] - }, - "siteTotalResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 10 - ] - }, - "siteCurSrvrConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 11 - ] - }, - "siteCurClntConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 12 - ] - }, - "siteMetricMepStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MepStatus" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 13 - ] - }, - "nwMetricMepStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MepStatus" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 14 - ] - }, - "nwMetricExchange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MetricExchange" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 15 - ] - }, - "persExchange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MetricExchange" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 16 - ] - }, - "gslbSiteInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 17 - ] - }, - "gslbSiteInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 18 - ] - }, - "gslbSitePublicInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 19 - ] - }, - "gslbSitePublicInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "gslbSitesEntry", - 20 - ] - }, - "gslbPoliciesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF GslbPoliciesEntry" - }, - "index": null, - "value": [ - "gslbGlobalInfo", - 2 - ] - }, - "gslbPoliciesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "GslbPoliciesEntry" - }, - "index": [ - "gslbPolicyName" - ], - "value": [ - "gslbPoliciesTable", - 1 - ] - }, - "GslbPoliciesEntry": { - "tp": "SEQUENCE" - }, - "gslbPolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "gslbPoliciesEntry", - 1 - ] - }, - "totalHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "gslbPoliciesEntry", - 2 - ] - }, - "gslbDomainStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsGslbGroup", - 3 - ] - }, - "nsDomainTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsDomainEntry" - }, - "index": null, - "value": [ - "gslbDomainStats", - 1 - ] - }, - "nsDomainEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsDomainEntry" - }, - "index": [ - "domainName" - ], - "value": [ - "nsDomainTable", - 1 - ] - }, - "NsDomainEntry": { - "tp": "SEQUENCE" - }, - "domainName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsDomainEntry", - 1 - ] - }, - "dnsTotalQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDomainEntry", - 2 - ] - }, - "domainNameFull": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsDomainEntry", - 3 - ] - }, - "nsPolicyEngineGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 52 - ] - }, - "nsPolicyStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsPolicyStatsEntry" - }, - "index": null, - "value": [ - "nsPolicyEngineGroup", - 1 - ] - }, - "nsPolicyStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsPolicyStatsEntry" - }, - "index": [ - "pengPolicyName" - ], - "value": [ - "nsPolicyStatsTable", - 1 - ] - }, - "NsPolicyStatsEntry": { - "tp": "SEQUENCE" - }, - "pengPolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsPolicyStatsEntry", - 1 - ] - }, - "pengPolicyHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPolicyStatsEntry", - 2 - ] - }, - "pengBytesIn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPolicyStatsEntry", - 3 - ] - }, - "pengBytesOut": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPolicyStatsEntry", - 4 - ] - }, - "pengPolicyFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsPolicyStatsEntry", - 5 - ] - }, - "nsDomainNameServiceGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 53 - ] - }, - "nsDnsServerStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsDomainNameServiceGroup", - 1 - ] - }, - "dnsTotQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 1 - ] - }, - "dnsTotAnswers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 2 - ] - }, - "dnsTotArecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 3 - ] - }, - "dnsTotAresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 4 - ] - }, - "dnsTotNSrecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 5 - ] - }, - "dnsTotNSresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 6 - ] - }, - "dnsTotMXrecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 7 - ] - }, - "dnsTotMXresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 8 - ] - }, - "dnsTotSOArecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 9 - ] - }, - "dnsTotSOAresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 10 - ] - }, - "dnsTotCNAMErecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 11 - ] - }, - "dnsTotCNAMEresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 12 - ] - }, - "dnsTotUnsupportedResponseClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 13 - ] - }, - "dnsTotUnsupportedResponseType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 14 - ] - }, - "dnsTotUnsupportedQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 15 - ] - }, - "dnsTotUnsupportedQueryClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 16 - ] - }, - "dnsTotInvalidQueryFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 17 - ] - }, - "dnsTotNonAuthNoDatas": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 18 - ] - }, - "dnsTotMultiQuery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 19 - ] - }, - "dnsTotStrayAnswer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 20 - ] - }, - "dnsTotCacheFlush": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 21 - ] - }, - "dnsTotCacheEntriesFlush": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 22 - ] - }, - "dnsTotServerQuery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 23 - ] - }, - "dnsTotServerResponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 24 - ] - }, - "dnsTotArecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 25 - ] - }, - "dnsTotNSrecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 26 - ] - }, - "dnsTotMXrecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 27 - ] - }, - "dnsTotCNAMErecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 28 - ] - }, - "dnsTotArecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 29 - ] - }, - "dnsTotNSrecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 30 - ] - }, - "dnsTotMXrecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 31 - ] - }, - "dnsTotSOArecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 32 - ] - }, - "dnsTotCNAMErecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 33 - ] - }, - "dnsTotRecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 34 - ] - }, - "dnsTotMultiQueryDisableError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 35 - ] - }, - "dnsCurArecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 36 - ] - }, - "dnsCurNSrecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 37 - ] - }, - "dnsCurMXrecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 38 - ] - }, - "dnsCurSOArecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 39 - ] - }, - "dnsCurCNAMErecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 40 - ] - }, - "dnsCurAuthEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 41 - ] - }, - "dnsCurNoAuthEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 42 - ] - }, - "dnsTotAuthAns": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 43 - ] - }, - "dnsTotAuthNoNames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 44 - ] - }, - "dnsTotNoDataResps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 45 - ] - }, - "dnsTotResponseBadLen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 46 - ] - }, - "dnsTotReqRefusals": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 47 - ] - }, - "dnsTotOtherErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 48 - ] - }, - "dnsTotPTRrecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 49 - ] - }, - "dnsTotPTRresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 50 - ] - }, - "dnsTotPTRrecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 51 - ] - }, - "dnsTotPTRrecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 52 - ] - }, - "dnsCurPTRrecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 53 - ] - }, - "dnsTotSRVrecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 54 - ] - }, - "dnsTotSRVresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 55 - ] - }, - "dnsTotSRVrecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 56 - ] - }, - "dnsTotSRVrecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 57 - ] - }, - "dnsCurSRVrecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 58 - ] - }, - "dnsTotAAAArecQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 59 - ] - }, - "dnsTotAAAAresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 60 - ] - }, - "dnsTotAAAArecUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 61 - ] - }, - "dnsTotAAAArecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 62 - ] - }, - "dnsCurAAAArecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 63 - ] - }, - "dnsTotANYqueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 64 - ] - }, - "dnsTotANYresponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 65 - ] - }, - "dnsTotANYrecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 66 - ] - }, - "dnsTotSOArecFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 67 - ] - }, - "dns64TotQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 68 - ] - }, - "dns64TotAnswers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 69 - ] - }, - "dns64TotsvrAQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 70 - ] - }, - "dnsErrNullAttack": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsDnsServerStatsGroup", - 71 - ] - }, - "nsdnsRegisterTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsdnsRegisterEntry" - }, - "index": null, - "value": [ - "nsDomainNameServiceGroup", - 2 - ] - }, - "nsdnsRegisterEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsdnsRegisterEntry" - }, - "index": [ - "dnsRecordType" - ], - "value": [ - "nsdnsRegisterTable", - 1 - ] - }, - "NsdnsRegisterEntry": { - "tp": "SEQUENCE" - }, - "dnsRecordType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 1 - ] - }, - "dnsTotEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 2 - ] - }, - "dnsTotUpdates": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 3 - ] - }, - "dnsTotResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 4 - ] - }, - "dnsTotRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 5 - ] - }, - "dnsTotErrLimits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 6 - ] - }, - "dnsTotErrRespForm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 7 - ] - }, - "dnsTotErrAliasEx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 8 - ] - }, - "dnsTotErrNoDomains": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 9 - ] - }, - "dnsCurEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 10 - ] - }, - "dnsCurRecords": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsdnsRegisterEntry", - 11 - ] - }, - "nsIfStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsIfStatsEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 54 - ] - }, - "nsIfStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsIfStatsEntry" - }, - "index": [ - "ifName" - ], - "value": [ - "nsIfStatsTable", - 1 - ] - }, - "NsIfStatsEntry": { - "tp": "SEQUENCE" - }, - "ifName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 1 - ] - }, - "ifMedia": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 2 - ] - }, - "ifTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 3 - ] - }, - "ifRxAvgBandwidthUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 4 - ] - }, - "ifTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 5 - ] - }, - "ifRxAvgPacketRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 6 - ] - }, - "ifTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 7 - ] - }, - "ifTxAvgBandwidthUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 8 - ] - }, - "ifTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 9 - ] - }, - "ifTxAvgPacketRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 10 - ] - }, - "ifRxCRCErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 11 - ] - }, - "ifRxFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 12 - ] - }, - "ifRxAlignmentErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 13 - ] - }, - "ifTxCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 14 - ] - }, - "ifTxExcessCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 15 - ] - }, - "ifTxLateCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 16 - ] - }, - "ifTxMultiCollisionErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 17 - ] - }, - "ifTxCarrierError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 18 - ] - }, - "ifTotRxMbits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 19 - ] - }, - "ifTotTxMbits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 20 - ] - }, - "ifTotNetScalerPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 21 - ] - }, - "ifErrDroppedRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 22 - ] - }, - "ifErrLinkHangs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 23 - ] - }, - "ifLinkReinits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 24 - ] - }, - "ifErrDuplexMismatch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 25 - ] - }, - "ifErrCongestedPktsDrops": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 26 - ] - }, - "ifErrCongestionLimitPktDrops": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 27 - ] - }, - "ifErrPktRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 28 - ] - }, - "ifErrRxFIFO": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 29 - ] - }, - "ifErrRxNoBuffs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 30 - ] - }, - "ifErrTxNoNSB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 31 - ] - }, - "ifErrRxFCS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 32 - ] - }, - "ifErrPktTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 33 - ] - }, - "ifErrTxFIFO": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 34 - ] - }, - "ifErrTxHeartBeat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 35 - ] - }, - "ifErrTxOverflow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 36 - ] - }, - "ifErrTxDeferred": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 37 - ] - }, - "ifErrDroppedTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 38 - ] - }, - "ifTotRxXonPause": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 39 - ] - }, - "ifTotRxXoffPause": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 40 - ] - }, - "ifTotXoffStateEntered": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 41 - ] - }, - "ifTotXonSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 42 - ] - }, - "ifTotXoffSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 43 - ] - }, - "ifnicStsStalls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 44 - ] - }, - "ifnicTxStalls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 45 - ] - }, - "ifnicRxStalls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 46 - ] - }, - "ifnicErrDisables": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 47 - ] - }, - "ifThroughput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 48 - ] - }, - "ifMinThroughput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 49 - ] - }, - "ifErrDroppedRxPktsRl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 50 - ] - }, - "ifErrRxNoNSB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 51 - ] - }, - "ifInterfaceAlias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsIfStatsEntry", - 52 - ] - }, - "nsScPolicyGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 55 - ] - }, - "scPolicyStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsScPolicyGroup", - 1 - ] - }, - "scPolicyUrlHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 1 - ] - }, - "scPopUps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 2 - ] - }, - "scAltContUrls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 3 - ] - }, - "scSessionReqs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 4 - ] - }, - "scPostReqs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 5 - ] - }, - "scThresholdFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 6 - ] - }, - "scFaultyCookies": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 7 - ] - }, - "scUnSupBrow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 8 - ] - }, - "scResetStats": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 9 - ] - }, - "scTotCondTriggered": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 10 - ] - }, - "scTotReissuedRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "scPolicyStatistics", - 11 - ] - }, - "scPolicyConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsScPolicyGroup", - 2 - ] - }, - "scPolicyConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ScPolicyConfigEntry" - }, - "index": null, - "value": [ - "scPolicyConfig", - 1 - ] - }, - "scPolicyConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ScPolicyConfigEntry" - }, - "index": [ - "scPolicyName" - ], - "value": [ - "scPolicyConfigTable", - 1 - ] - }, - "ScPolicyConfigEntry": { - "tp": "SEQUENCE" - }, - "scPolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 1 - ] - }, - "scPolUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 2 - ] - }, - "scDelayThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 3 - ] - }, - "scMaxConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 4 - ] - }, - "scActionType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ActionType" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 5 - ] - }, - "scAlternateContentServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 6 - ] - }, - "scRuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 7 - ] - }, - "scAlternateContentPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "scPolicyConfigEntry", - 8 - ] - }, - "nsSslConfigGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 56 - ] - }, - "sslCertKeyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SslCertKeyEntry" - }, - "index": null, - "value": [ - "nsSslConfigGroup", - 1 - ] - }, - "sslCertKeyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SslCertKeyEntry" - }, - "index": [ - "sslCertKeyName" - ], - "value": [ - "sslCertKeyTable", - 1 - ] - }, - "SslCertKeyEntry": { - "tp": "SEQUENCE" - }, - "sslCertKeyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCertKeyEntry", - 1 - ] - }, - "sslCertPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCertKeyEntry", - 2 - ] - }, - "sslKeyPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCertKeyEntry", - 3 - ] - }, - "sslInputFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InputFormat" - }, - "index": null, - "value": [ - "sslCertKeyEntry", - 4 - ] - }, - "sslDaysToExpire": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "sslCertKeyEntry", - 5 - ] - }, - "sslCrlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SslCrlEntry" - }, - "index": null, - "value": [ - "nsSslConfigGroup", - 2 - ] - }, - "sslCrlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SslCrlEntry" - }, - "index": [ - "sslCrlName" - ], - "value": [ - "sslCrlTable", - 1 - ] - }, - "SslCrlEntry": { - "tp": "SEQUENCE" - }, - "sslCrlName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCrlEntry", - 1 - ] - }, - "sslCrlPath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCrlEntry", - 2 - ] - }, - "sslCrlInputFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InputFormat" - }, - "index": null, - "value": [ - "sslCrlEntry", - 3 - ] - }, - "sslCipherGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SslCipherGroupEntry" - }, - "index": null, - "value": [ - "nsSslConfigGroup", - 3 - ] - }, - "sslCipherGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SslCipherGroupEntry" - }, - "index": [ - "sslCipherGroupName", - "sslCipherName" - ], - "value": [ - "sslCipherGroupTable", - 1 - ] - }, - "SslCipherGroupEntry": { - "tp": "SEQUENCE" - }, - "sslCipherGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCipherGroupEntry", - 1 - ] - }, - "sslCipherName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCipherGroupEntry", - 2 - ] - }, - "sslCipherDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "sslCipherGroupEntry", - 3 - ] - }, - "nsDosPolicyGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 57 - ] - }, - "dosPolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DosPolicyEntry" - }, - "index": null, - "value": [ - "nsDosPolicyGroup", - 1 - ] - }, - "dosPolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DosPolicyEntry" - }, - "index": [ - "dosPolicyName" - ], - "value": [ - "dosPolicyTable", - 1 - ] - }, - "DosPolicyEntry": { - "tp": "SEQUENCE" - }, - "dosPolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dosPolicyEntry", - 1 - ] - }, - "thresholdValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dosPolicyEntry", - 2 - ] - }, - "dosPolicyStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsDosPolicyGroup", - 2 - ] - }, - "dosTotConditionTriggered": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "dosPolicyStatistics", - 1 - ] - }, - "dosTotValidCookies": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "dosPolicyStatistics", - 2 - ] - }, - "dosTotDosPriorityClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "dosPolicyStatistics", - 3 - ] - }, - "dosAvgValidClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "dosPolicyStatistics", - 4 - ] - }, - "dosAvgDospriClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "dosPolicyStatistics", - 5 - ] - }, - "nsExpressionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsExpressionEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 58 - ] - }, - "nsExpressionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsExpressionEntry" - }, - "index": [ - "expressionName" - ], - "value": [ - "nsExpressionTable", - 1 - ] - }, - "NsExpressionEntry": { - "tp": "SEQUENCE" - }, - "expressionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsExpressionEntry", - 1 - ] - }, - "expressionTotalHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsExpressionEntry", - 2 - ] - }, - "nsPqPolicyGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 59 - ] - }, - "pqPolicyConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PqPolicyConfigEntry" - }, - "index": null, - "value": [ - "nsPqPolicyGroup", - 1 - ] - }, - "pqPolicyConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PqPolicyConfigEntry" - }, - "index": [ - "pqName" - ], - "value": [ - "pqPolicyConfigTable", - 1 - ] - }, - "PqPolicyConfigEntry": { - "tp": "SEQUENCE" - }, - "pqName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "pqPolicyConfigEntry", - 1 - ] - }, - "pqRuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "pqPolicyConfigEntry", - 2 - ] - }, - "pqQdepthThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqPolicyConfigEntry", - 3 - ] - }, - "pqPolQdepthThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqPolicyConfigEntry", - 4 - ] - }, - "pqPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqPolicyConfigEntry", - 5 - ] - }, - "pqPolicyWeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "pqPolicyConfigEntry", - 6 - ] - }, - "pqPolicyStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsPqPolicyGroup", - 2 - ] - }, - "pqTotalPolicyMatches": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pqPolicyStatistics", - 1 - ] - }, - "pqTotalThresholdFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pqPolicyStatistics", - 2 - ] - }, - "pqPriority1Requests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pqPolicyStatistics", - 3 - ] - }, - "pqPriority2Requests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pqPolicyStatistics", - 4 - ] - }, - "pqPriority3Requests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "pqPolicyStatistics", - 5 - ] - }, - "crConfigGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 60 - ] - }, - "crPolicyMapConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CrPolicyMapConfigEntry" - }, - "index": null, - "value": [ - "crConfigGroup", - 1 - ] - }, - "crPolicyMapConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CrPolicyMapConfigEntry" - }, - "index": [ - "crMapName" - ], - "value": [ - "crPolicyMapConfigTable", - 1 - ] - }, - "CrPolicyMapConfigEntry": { - "tp": "SEQUENCE" - }, - "crMapName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolicyMapConfigEntry", - 1 - ] - }, - "crMapSrcName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolicyMapConfigEntry", - 2 - ] - }, - "crMapDstName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolicyMapConfigEntry", - 3 - ] - }, - "crMapSrcUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolicyMapConfigEntry", - 4 - ] - }, - "crMapDstUrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "crPolicyMapConfigEntry", - 5 - ] - }, - "monitorCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSysGroup", - 61 - ] - }, - "monitorBindCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsSysGroup", - 62 - ] - }, - "htmlInjectionStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 63 - ] - }, - "htmlInjectedBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "htmlInjectionStatsGroup", - 1 - ] - }, - "htmlInjectionSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "htmlInjectionStatsGroup", - 2 - ] - }, - "htmlInjectionTotalSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "htmlInjectionStatsGroup", - 3 - ] - }, - "htmlInjectMemAllocFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "htmlInjectionStatsGroup", - 4 - ] - }, - "htmlInitFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "htmlInjectionStatsGroup", - 5 - ] - }, - "appFirewallGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 64 - ] - }, - "appFirewallStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "appFirewallGroup", - 1 - ] - }, - "appFirewallRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 1 - ] - }, - "appFirewallResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 2 - ] - }, - "appFirewallAborts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 3 - ] - }, - "appFirewallRedirects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 4 - ] - }, - "appFirewallViolStartURL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 5 - ] - }, - "appFirewallViolDenyURL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 6 - ] - }, - "appFirewallViolBufferOverflow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 7 - ] - }, - "appFirewallViolCookie": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 8 - ] - }, - "appFirewallViolXSS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 9 - ] - }, - "appFirewallViolSQL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 10 - ] - }, - "appFirewallViolFieldformat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 11 - ] - }, - "appFirewallViolFieldConsistency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 12 - ] - }, - "appFirewallViolCreditCard": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 13 - ] - }, - "appFirewallViolSafeObject": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 14 - ] - }, - "appFirewallTotalViol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 15 - ] - }, - "appFirewallViolWellformednessViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 16 - ] - }, - "appFirewallViolXdosViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 17 - ] - }, - "appFirewallViolMsgValViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 18 - ] - }, - "appFirewallViolWSIViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 19 - ] - }, - "appFirewallViolXmlSqlViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 20 - ] - }, - "appFirewallViolXmlXssViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 21 - ] - }, - "appFirewallViolXmlAttachmentViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 22 - ] - }, - "appFirewallViolCSRFtag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 23 - ] - }, - "appFirewallViolRefererHeader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 24 - ] - }, - "appFirewallViolXmlSoapFaultViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 25 - ] - }, - "appFirewallRet4xx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 26 - ] - }, - "appFirewallRet5xx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 27 - ] - }, - "appFirewallReqBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 28 - ] - }, - "appFirewallResBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 29 - ] - }, - "appFirewallLongAvgRespTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 30 - ] - }, - "appFirewallShortAvgRespTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 31 - ] - }, - "appFirewallViolXmlGenViolations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 32 - ] - }, - "appFirewallViolSignature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 33 - ] - }, - "appFirewallTrapsDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appFirewallStatistics", - 34 - ] - }, - "appfwProfileTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AppfwProfileEntry" - }, - "index": null, - "value": [ - "appFirewallGroup", - 2 - ] - }, - "appfwProfileEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AppfwProfileEntry" - }, - "index": [ - "appfwprofileName" - ], - "value": [ - "appfwProfileTable", - 1 - ] - }, - "AppfwProfileEntry": { - "tp": "SEQUENCE" - }, - "appfwprofileName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 1 - ] - }, - "appfwappFirewallRequestsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 2 - ] - }, - "appfwappFirewallResponsesPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 3 - ] - }, - "appfwappFirewallAbortsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 4 - ] - }, - "appfwappFirewallRedirectsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 5 - ] - }, - "appfwappFirewallViolStartURLPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 6 - ] - }, - "appfwappFirewallViolDenyURLPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 7 - ] - }, - "appfwappFirewallViolRefererHeaderPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 8 - ] - }, - "appfwappFirewallViolBufferOverflowPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 9 - ] - }, - "appfwappFirewallViolCSRFtagPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 10 - ] - }, - "appfwappFirewallViolCookiePerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 11 - ] - }, - "appfwappFirewallViolXSSPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 12 - ] - }, - "appfwappFirewallViolSQLPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 13 - ] - }, - "appfwappFirewallViolFieldformatPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 14 - ] - }, - "appfwappFirewallViolFieldConsistencyPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 15 - ] - }, - "appfwappFirewallViolCreditCardPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 16 - ] - }, - "appfwappFirewallViolSafeObjectPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 17 - ] - }, - "appfwappFirewallViolWellformednessViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 18 - ] - }, - "appfwappFirewallViolXdosViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 19 - ] - }, - "appfwappFirewallViolMsgValViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 20 - ] - }, - "appfwappFirewallViolWSIViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 21 - ] - }, - "appfwappFirewallViolXmlSqlViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 22 - ] - }, - "appfwappFirewallViolXmlXssViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 23 - ] - }, - "appfwappFirewallViolXmlAttachmentViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 24 - ] - }, - "appfwappFirewallTotalViolPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 25 - ] - }, - "appfwappFirewallRet4xxPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 26 - ] - }, - "appfwappFirewallRet5xxPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 27 - ] - }, - "appfwappFirewallViolXmlSoapFaultViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 28 - ] - }, - "appfwappFirewallReqBytesPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 29 - ] - }, - "appfwappFirewallResBytesPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 30 - ] - }, - "appfwappFirewallLongAvgRespTimePerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 31 - ] - }, - "appfwappFirewallShortAvgRespTimePerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 32 - ] - }, - "appfwappFirewallViolXmlGenericViolationsPerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 33 - ] - }, - "appfwappFirewallViolSignaturePerProfile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "appfwProfileEntry", - 34 - ] - }, - "nsRnatStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 65 - ] - }, - "nsRnatGlobalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsRnatStatsGroup", - 1 - ] - }, - "rnatTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatGlobalStats", - 1 - ] - }, - "rnatTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatGlobalStats", - 2 - ] - }, - "rnatTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatGlobalStats", - 3 - ] - }, - "rnatTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatGlobalStats", - 4 - ] - }, - "rnatTotTxSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatGlobalStats", - 5 - ] - }, - "rnatCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsRnatGlobalStats", - 6 - ] - }, - "nsRnatPerIPStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsRnatPerIPStatsEntry" - }, - "index": null, - "value": [ - "nsRnatStatsGroup", - 2 - ] - }, - "nsRnatPerIPStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsRnatPerIPStatsEntry" - }, - "index": [ - "ipAddr" - ], - "value": [ - "nsRnatPerIPStatsTable", - 1 - ] - }, - "NsRnatPerIPStatsEntry": { - "tp": "SEQUENCE" - }, - "ipRnatTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatPerIPStatsEntry", - 1 - ] - }, - "ipRnatTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatPerIPStatsEntry", - 2 - ] - }, - "ipRnatTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatPerIPStatsEntry", - 3 - ] - }, - "ipRnatTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatPerIPStatsEntry", - 4 - ] - }, - "ipRnatTotTxSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsRnatPerIPStatsEntry", - 5 - ] - }, - "ipRnatCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsRnatPerIPStatsEntry", - 6 - ] - }, - "nsSslVpnStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 66 - ] - }, - "indexHtmlHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 1 - ] - }, - "indexHtmlNoServed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 2 - ] - }, - "cfgHtmlServed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 3 - ] - }, - "dnsReqHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 4 - ] - }, - "winsRequestHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 5 - ] - }, - "csRequestHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 6 - ] - }, - "csNonHttpProbeHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 7 - ] - }, - "csHttpProbeHit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 8 - ] - }, - "totalCsConnSucc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 9 - ] - }, - "totalFsRequest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 10 - ] - }, - "iipDisabledMIPdisabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 11 - ] - }, - "iipFailedMIPdisabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 12 - ] - }, - "iipDisabledMIPused": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 13 - ] - }, - "iipFailedMIPused": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 14 - ] - }, - "socksMethReqRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 15 - ] - }, - "socksMethReqSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 16 - ] - }, - "socksMethRespRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 17 - ] - }, - "socksMethRespSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 18 - ] - }, - "socksConnReqRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 19 - ] - }, - "socksConnReqSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 20 - ] - }, - "socksConnRespRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 21 - ] - }, - "socksConnRespSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 22 - ] - }, - "socksServerError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 23 - ] - }, - "socksClientError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 24 - ] - }, - "staConnSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 25 - ] - }, - "staConnFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 26 - ] - }, - "cpsConnSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 27 - ] - }, - "cpsConnFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 28 - ] - }, - "staRequestSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 29 - ] - }, - "staResponseRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 30 - ] - }, - "icaLicenseFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 31 - ] - }, - "staRenewSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 32 - ] - }, - "staRenewRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 33 - ] - }, - "staReassErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 34 - ] - }, - "staRnewNoClnt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 35 - ] - }, - "staRenewNoRfsh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 36 - ] - }, - "staValidNoClnt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 37 - ] - }, - "staValidNoEst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 38 - ] - }, - "staMonSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 39 - ] - }, - "staMonRcvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 40 - ] - }, - "staMonSucc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 41 - ] - }, - "staMonFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 42 - ] - }, - "iipSpilloverMIPused": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 43 - ] - }, - "iPv6tov4FindIPv6MapErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 44 - ] - }, - "iPv6toV4MapInsertErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 45 - ] - }, - "parseIPv6AddressErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 46 - ] - }, - "dtlsStaValidation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 47 - ] - }, - "dtlsStaValidationError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 48 - ] - }, - "dtlsStaReconnectTktReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 49 - ] - }, - "dtlsStaPostResponseSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 50 - ] - }, - "dtlsStaPostResponseError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsSslVpnStatsGroup", - 51 - ] - }, - "nsAaaStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 67 - ] - }, - "aaaAuthFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 1 - ] - }, - "aaaAuthSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 2 - ] - }, - "aaaAuthNonHttpFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 3 - ] - }, - "aaaAuthOnlyHttpFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 4 - ] - }, - "aaaAuthNonHttpSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 5 - ] - }, - "aaaAuthOnlyHttpSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 6 - ] - }, - "aaaTotSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 7 - ] - }, - "aaaTotSessionTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 8 - ] - }, - "aaaCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 9 - ] - }, - "aaaCurICASessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 10 - ] - }, - "aaaCurTMSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 11 - ] - }, - "aaaTotTMSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 12 - ] - }, - "aaaCurICAOnlyConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 13 - ] - }, - "aaaCurICAConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsAaaStatsGroup", - 14 - ] - }, - "nsGlobalConfigSettings": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 68 - ] - }, - "webServerHttpPorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 1 - ] - }, - "maxTcpConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 2 - ] - }, - "maxReqPerConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 3 - ] - }, - "cipInsertionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ModeStatus" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 4 - ] - }, - "cipInsertionHeader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 5 - ] - }, - "cookieVersionInserted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 6 - ] - }, - "minPathMTU": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 7 - ] - }, - "mtuEntryTimeoutValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 8 - ] - }, - "ftpPortRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsGlobalConfigSettings", - 9 - ] - }, - "nsPolicyInfrastructureGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 69 - ] - }, - "piPolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PiPolicyEntry" - }, - "index": null, - "value": [ - "nsPolicyInfrastructureGroup", - 1 - ] - }, - "piPolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PiPolicyEntry" - }, - "index": [ - "piPolName" - ], - "value": [ - "piPolicyTable", - 1 - ] - }, - "PiPolicyEntry": { - "tp": "SEQUENCE" - }, - "piPolName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "piPolicyEntry", - 1 - ] - }, - "piPolicyHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "piPolicyEntry", - 2 - ] - }, - "piPolicyUndefHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "piPolicyEntry", - 3 - ] - }, - "piPolFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "piPolicyEntry", - 4 - ] - }, - "nsInetAddressTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsInetAddressEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 70 - ] - }, - "nsInetAddressEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsInetAddressEntry" - }, - "index": [ - "nsInetAddressType", - "nsInetAddress" - ], - "value": [ - "nsInetAddressTable", - 1 - ] - }, - "NsInetAddressEntry": { - "tp": "SEQUENCE" - }, - "nsInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 1 - ] - }, - "nsInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 2 - ] - }, - "nsInetMaskLenth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 3 - ] - }, - "nsInetType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddressType" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 4 - ] - }, - "nsInetMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddressMode" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 5 - ] - }, - "nsInetFreePorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 6 - ] - }, - "nsInetVlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 7 - ] - }, - "nsInetBridgeGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 8 - ] - }, - "nsInetVxlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsInetAddressEntry", - 9 - ] - }, - "nsNicStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 71 - ] - }, - "allNicTotRxMbits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsNicStatsGroup", - 1 - ] - }, - "allNicTotTxMbits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsNicStatsGroup", - 2 - ] - }, - "clusterTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ClusterEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 72 - ] - }, - "clusterEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterEntry" - }, - "index": [ - "clnodeID" - ], - "value": [ - "clusterTable", - 1 - ] - }, - "ClusterEntry": { - "tp": "SEQUENCE" - }, - "clnodeID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "clusterEntry", - 1 - ] - }, - "clPeerIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "clusterEntry", - 2 - ] - }, - "clNodeIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "clusterEntry", - 3 - ] - }, - "clAdminState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterAdminState" - }, - "index": null, - "value": [ - "clusterEntry", - 4 - ] - }, - "clMasterState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterMasterState" - }, - "index": null, - "value": [ - "clusterEntry", - 5 - ] - }, - "clNodeHealth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterCurHealth" - }, - "index": null, - "value": [ - "clusterEntry", - 6 - ] - }, - "clNodeEffectiveHealth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterEffHealth" - }, - "index": null, - "value": [ - "clusterEntry", - 7 - ] - }, - "clSyncState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterSyncState" - }, - "index": null, - "value": [ - "clusterEntry", - 8 - ] - }, - "clNodeViewQuorum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "clusterEntry", - 9 - ] - }, - "clNodeHealthReason": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "clusterEntry", - 10 - ] - }, - "nsClusterStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 73 - ] - }, - "clViewLeader": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "nsClusterStatsGroup", - 1 - ] - }, - "nsInatStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 74 - ] - }, - "nsInatGlobalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsInatStatsGroup", - 1 - ] - }, - "nat46TotTcp46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 1 - ] - }, - "nat46TotUdp46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 2 - ] - }, - "nat46TotIcmp46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 3 - ] - }, - "nat46TotDrop46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 4 - ] - }, - "nat46TotTcp64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 5 - ] - }, - "nat46TotUdp64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 6 - ] - }, - "nat46TotIcmp64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 7 - ] - }, - "nat46TotDrop64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatGlobalStats", - 8 - ] - }, - "nsInatPerNat46StatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsInatPerNat46StatsEntry" - }, - "index": null, - "value": [ - "nsInatStatsGroup", - 2 - ] - }, - "nsInatPerNat46StatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsInatPerNat46StatsEntry" - }, - "index": [ - "inatname" - ], - "value": [ - "nsInatPerNat46StatsTable", - 1 - ] - }, - "NsInatPerNat46StatsEntry": { - "tp": "SEQUENCE" - }, - "inatname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 1 - ] - }, - "inatNat46Tcp46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 2 - ] - }, - "inatNat46Udp46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 3 - ] - }, - "inatNat46Icmp46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 4 - ] - }, - "inatNat46Drop46": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 5 - ] - }, - "inatNat46Tcp64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 6 - ] - }, - "inatNat46Udp64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 7 - ] - }, - "inatNat46Icmp64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 8 - ] - }, - "inatNat46Drop64": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNat46StatsEntry", - 9 - ] - }, - "nsInatPerNatStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsInatPerNatStatsEntry" - }, - "index": null, - "value": [ - "nsInatStatsGroup", - 3 - ] - }, - "nsInatPerNatStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsInatPerNatStatsEntry" - }, - "index": [ - "inat44name" - ], - "value": [ - "nsInatPerNatStatsTable", - 1 - ] - }, - "NsInatPerNatStatsEntry": { - "tp": "SEQUENCE" - }, - "inat44name": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 1 - ] - }, - "inatTotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 2 - ] - }, - "inatCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 3 - ] - }, - "inatTotReceiveBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 4 - ] - }, - "inatTotSentBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 5 - ] - }, - "inatTotpktreceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 6 - ] - }, - "inatTotpktsent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsInatPerNatStatsEntry", - 7 - ] - }, - "nsNat64StatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 75 - ] - }, - "nsNat64GlobalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsNat64StatsGroup", - 1 - ] - }, - "nat64TotUdpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsNat64GlobalStats", - 1 - ] - }, - "nat64TotTcpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsNat64GlobalStats", - 2 - ] - }, - "nat64TotSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsNat64GlobalStats", - 3 - ] - }, - "nat64TotIcmpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsNat64GlobalStats", - 4 - ] - }, - "nsIp6StatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 76 - ] - }, - "ipv6TotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 1 - ] - }, - "ipv6TotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 2 - ] - }, - "ipv6TotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 3 - ] - }, - "ipv6TotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 4 - ] - }, - "ipv6FragTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 5 - ] - }, - "ipv6FragTotPktsForward": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 6 - ] - }, - "ipv6FragTotPktsProcessNoReass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 7 - ] - }, - "ipv6ErrHdr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 8 - ] - }, - "ipv6LandAttack": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 9 - ] - }, - "ipv6FragZeroLenPkt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 10 - ] - }, - "ipv6TotIcmpFragPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 11 - ] - }, - "ipv6TotLookupDone": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 12 - ] - }, - "ipv6TotLookupFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 13 - ] - }, - "ipv6TotStaticRoutes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 14 - ] - }, - "ipv6TotDynamicRoutes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 15 - ] - }, - "ipv6TotNeigborDiscovered": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 16 - ] - }, - "ipv6TotIpv6To4Conversions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 17 - ] - }, - "ipv6TotIpv4To6Conversions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 18 - ] - }, - "ipv6TotTcpConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 19 - ] - }, - "ipv6TotNonTcpConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsIp6StatsGroup", - 20 - ] - }, - "nsTdInetAddressTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsTdInetAddressEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 77 - ] - }, - "nsTdInetAddressEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsTdInetAddressEntry" - }, - "index": [ - "nsTdInetId", - "nsTdInetAddressType", - "nsTdInetAddress" - ], - "value": [ - "nsTdInetAddressTable", - 1 - ] - }, - "NsTdInetAddressEntry": { - "tp": "SEQUENCE" - }, - "nsTdInetId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 1 - ] - }, - "nsTdInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 2 - ] - }, - "nsTdInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 3 - ] - }, - "nsTdInetMaskLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 4 - ] - }, - "nsTdInetType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddressType" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 5 - ] - }, - "nsTdInetMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddressMode" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 6 - ] - }, - "nsTdInetFreePorts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 7 - ] - }, - "nsTdInetVlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 8 - ] - }, - "nsTdInetBridgeGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 9 - ] - }, - "nsTdInetVxlan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsTdInetAddressEntry", - 10 - ] - }, - "nsCaStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 78 - ] - }, - "caTotaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 1 - ] - }, - "caTotgetobjreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 2 - ] - }, - "caTotlookuphit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 3 - ] - }, - "caTotlookupnostoremiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 4 - ] - }, - "caTotRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 5 - ] - }, - "caTotlookupstoremiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 6 - ] - }, - "caTotobjstored": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 7 - ] - }, - "caTotvideo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 8 - ] - }, - "caTotother": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 9 - ] - }, - "caTotputobjreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 10 - ] - }, - "caTotrespbytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 11 - ] - }, - "caMsftSmthStrmVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 12 - ] - }, - "cacMsftSmthStrmVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 13 - ] - }, - "caMsftSmthStrmVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 14 - ] - }, - "caMicrosoftSmoothStreamingVidCacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 15 - ] - }, - "caMsftSmthStrVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 16 - ] - }, - "cacMsftSmthStrmPlVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 17 - ] - }, - "caMsftSmthStrmPlVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 18 - ] - }, - "caMicrosoftSmoothStreamingPlaylistVidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 19 - ] - }, - "cacApleLiveStrmngVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 20 - ] - }, - "cacAppleLiveStreamingVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 21 - ] - }, - "caAppleLiveStreamingVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 22 - ] - }, - "caAppleLiveStreamingVidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 23 - ] - }, - "cacAppleLiveStrmngVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 24 - ] - }, - "cacAppleLiveStreamingPlaylistVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 25 - ] - }, - "caAppleLiveStreamingPlaylistVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 26 - ] - }, - "caAppleLiveStreamingPlaylistVidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 27 - ] - }, - "caADTSaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 28 - ] - }, - "cacADTSaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 29 - ] - }, - "caADTSaudioBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 30 - ] - }, - "caADTSaudiocacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 31 - ] - }, - "caAACaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 32 - ] - }, - "cacAACaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 33 - ] - }, - "caAACaudiobytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 34 - ] - }, - "caAACaudiocachebytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 35 - ] - }, - "caFLVVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 36 - ] - }, - "cacFLVVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 37 - ] - }, - "caFLVVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 38 - ] - }, - "caFLVVidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 39 - ] - }, - "caMP4Vid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 40 - ] - }, - "cacMP4Vid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 41 - ] - }, - "caMP4VidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 42 - ] - }, - "caMP4VidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 43 - ] - }, - "ca3PVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 44 - ] - }, - "ca3GPVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 45 - ] - }, - "ca3GPVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 46 - ] - }, - "ca3GPVidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 47 - ] - }, - "caMsftSmthStrmVidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 48 - ] - }, - "cacMsftSmthStrmPlVidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 49 - ] - }, - "cacAppleLiveStreamingVidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 50 - ] - }, - "cacAppleLiveStreamingPlaylistVidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 51 - ] - }, - "cacADTSaudioHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 52 - ] - }, - "cacAACaudioHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 53 - ] - }, - "cacFLVVidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 54 - ] - }, - "cacMP4VidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 55 - ] - }, - "ca3GPVidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 56 - ] - }, - "caMsftSmthStrmngVidCaBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 57 - ] - }, - "caMsftSmthStrmngPlVidcaBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 58 - ] - }, - "caAppleLiveStrmngVidcacheBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 59 - ] - }, - "caApleLiveStrmngPlVidcacheBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 60 - ] - }, - "caADTSaudiocacheBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 61 - ] - }, - "caAACaudiocachebytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 62 - ] - }, - "caFLVVidcacheBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 63 - ] - }, - "caMP4VidcacheBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 64 - ] - }, - "ca3GPVidcacheBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 65 - ] - }, - "caAndroid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 66 - ] - }, - "caLaptopDesktp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 67 - ] - }, - "caIos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 68 - ] - }, - "caOther": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 69 - ] - }, - "caUnidentified": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 70 - ] - }, - "caAndroidcache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 71 - ] - }, - "caIoscache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 72 - ] - }, - "caOthercache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 73 - ] - }, - "calaptopDesktpcache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 74 - ] - }, - "caUnidentifiedcache": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 75 - ] - }, - "caAndroidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 76 - ] - }, - "caIosBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 77 - ] - }, - "caOtherBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 78 - ] - }, - "caAlptopDsktpBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 79 - ] - }, - "caUnidentifiedBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 80 - ] - }, - "caAndroididcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 81 - ] - }, - "caIosidcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 82 - ] - }, - "caOtherididcacheBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 83 - ] - }, - "caLaptpdektpBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 84 - ] - }, - "caAunindentifiedBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 85 - ] - }, - "caAndroidHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 86 - ] - }, - "calaptopDesktpHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 87 - ] - }, - "caotherHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 88 - ] - }, - "caIosHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 89 - ] - }, - "caUnidentifiedHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 90 - ] - }, - "caAndroidBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 91 - ] - }, - "caLaptpdsktpBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 92 - ] - }, - "caotherBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 93 - ] - }, - "caiosBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 94 - ] - }, - "caAunindentifiedBytesHR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsCaStatsGroup", - 95 - ] - }, - "nsvPathStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 79 - ] - }, - "vPathTotL2DataRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 1 - ] - }, - "vPathTotL3DataRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 2 - ] - }, - "vPathTotL2CntrlPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 3 - ] - }, - "vPathTotL3CntrlPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 4 - ] - }, - "vPathTotFragPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 5 - ] - }, - "vPathTotL2EncapPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 6 - ] - }, - "vPathTotL3EncapPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 7 - ] - }, - "vPathTotFragEncapPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 8 - ] - }, - "vPathTotOffload": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsvPathStatsGroup", - 9 - ] - }, - "nsLLDPGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 80 - ] - }, - "nsLLDPConfigGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLLDPGroup", - 1 - ] - }, - "lldpMessageTxInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPConfigGroup", - 1 - ] - }, - "lldpMessageTxHoldMultiplier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPConfigGroup", - 2 - ] - }, - "nsLLDPStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLLDPGroup", - 2 - ] - }, - "nsLLDPStatsTxPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLLDPStatsTxPortEntry" - }, - "index": null, - "value": [ - "nsLLDPStatsGroup", - 1 - ] - }, - "nsLLDPStatsTxPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLLDPStatsTxPortEntry" - }, - "index": [ - "lldpStatsTxPortNum" - ], - "value": [ - "nsLLDPStatsTxPortTable", - 1 - ] - }, - "NsLLDPStatsTxPortEntry": { - "tp": "SEQUENCE" - }, - "lldpStatsTxPortNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPStatsTxPortEntry", - 1 - ] - }, - "lldpStatsTxPortFramesTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLLDPStatsTxPortEntry", - 2 - ] - }, - "nsLLDPStatsRxPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLLDPStatsRxPortEntry" - }, - "index": null, - "value": [ - "nsLLDPStatsGroup", - 2 - ] - }, - "nsLLDPStatsRxPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLLDPStatsRxPortEntry" - }, - "index": [ - "lldpStatsRxPortNum" - ], - "value": [ - "nsLLDPStatsRxPortTable", - 1 - ] - }, - "NsLLDPStatsRxPortEntry": { - "tp": "SEQUENCE" - }, - "lldpStatsRxPortNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPStatsRxPortEntry", - 1 - ] - }, - "lldpStatsRxPortTLVsDiscardedTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLLDPStatsRxPortEntry", - 2 - ] - }, - "lldpStatsRxPortFramesErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLLDPStatsRxPortEntry", - 3 - ] - }, - "lldpStatsRxPortFramesTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLLDPStatsRxPortEntry", - 4 - ] - }, - "lldpStatsRxPortTLVsUnrecognizedTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLLDPStatsRxPortEntry", - 5 - ] - }, - "lldpStatsRemTablesLastChangeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPStatsGroup", - 3 - ] - }, - "lldpStatsRemTablesInserts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPStatsGroup", - 4 - ] - }, - "lldpStatsRemTablesDeletes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPStatsGroup", - 5 - ] - }, - "lldpStatsRemTablesAgeouts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPStatsGroup", - 6 - ] - }, - "nsLLDPLocSystemsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLLDPGroup", - 3 - ] - }, - "nsLLDPLocPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLLDPLocPortEntry" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 1 - ] - }, - "nsLLDPLocPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLLDPLocPortEntry" - }, - "index": [ - "lldpLocPortNum" - ], - "value": [ - "nsLLDPLocPortTable", - 1 - ] - }, - "NsLLDPLocPortEntry": { - "tp": "SEQUENCE" - }, - "lldpLocPortNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocPortEntry", - 1 - ] - }, - "lldpLocPortIdSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocPortEntry", - 2 - ] - }, - "lldpLocPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocPortEntry", - 3 - ] - }, - "nsLLDPLocManAddrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLLDPLocManAddrEntry" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 2 - ] - }, - "nsLLDPLocManAddrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLLDPLocManAddrEntry" - }, - "index": [ - "lldpLocManAddrSubtype" - ], - "value": [ - "nsLLDPLocManAddrTable", - 1 - ] - }, - "NsLLDPLocManAddrEntry": { - "tp": "SEQUENCE" - }, - "lldpLocManAddrSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocManAddrEntry", - 1 - ] - }, - "lldpLocManAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocManAddrEntry", - 2 - ] - }, - "lldpLocManAddrIfSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocManAddrEntry", - 3 - ] - }, - "lldpLocManAddrIfId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocManAddrEntry", - 4 - ] - }, - "lldpLocManAddrOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocManAddrEntry", - 5 - ] - }, - "lldpLocChassisIdSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 3 - ] - }, - "lldpLocChassisId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 4 - ] - }, - "lldpLocSysName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 5 - ] - }, - "lldpLocSysDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 6 - ] - }, - "lldpLocSysCapSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 7 - ] - }, - "lldpLocSysCapEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPLocSystemsGroup", - 8 - ] - }, - "nsLLDPRemSystemsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLLDPGroup", - 4 - ] - }, - "nsLLDPRemTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLLDPRemEntry" - }, - "index": null, - "value": [ - "nsLLDPRemSystemsGroup", - 1 - ] - }, - "nsLLDPRemEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLLDPRemEntry" - }, - "index": [ - "lldpRemLocalPortNum" - ], - "value": [ - "nsLLDPRemTable", - 1 - ] - }, - "NsLLDPRemEntry": { - "tp": "SEQUENCE" - }, - "lldpRemTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 1 - ] - }, - "lldpRemLocalPortNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 2 - ] - }, - "lldpRemChassisIdSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 3 - ] - }, - "lldpRemChassisId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 4 - ] - }, - "lldpRemPortIdSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 5 - ] - }, - "lldpRemPortId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 6 - ] - }, - "lldpRemPortDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 7 - ] - }, - "lldpRemSysName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 8 - ] - }, - "lldpRemSysDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 9 - ] - }, - "lldpRemSysCapSupported": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 10 - ] - }, - "lldpRemSysCapEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemEntry", - 11 - ] - }, - "nsLLDPRemManAddrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLLDPRemManAddrEntry" - }, - "index": null, - "value": [ - "nsLLDPRemSystemsGroup", - 2 - ] - }, - "nsLLDPRemManAddrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLLDPRemManAddrEntry" - }, - "index": [ - "lldpRemLocalPortNum", - "lldpRemManAddr" - ], - "value": [ - "nsLLDPRemManAddrTable", - 1 - ] - }, - "NsLLDPRemManAddrEntry": { - "tp": "SEQUENCE" - }, - "lldpRemManAddrSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemManAddrEntry", - 1 - ] - }, - "lldpRemManAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemManAddrEntry", - 2 - ] - }, - "lldpRemManAddrIfSubtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemManAddrEntry", - 3 - ] - }, - "lldpRemManAddrIfId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nsLLDPRemManAddrEntry", - 4 - ] - }, - "lldpRemManAddrOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLLDPRemManAddrEntry", - 5 - ] - }, - "vxlanTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VxlanEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 81 - ] - }, - "vxlanEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VxlanEntry" - }, - "index": [ - "vxlanVNId" - ], - "value": [ - "vxlanTable", - 1 - ] - }, - "VxlanEntry": { - "tp": "SEQUENCE" - }, - "vxlanVNId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vxlanEntry", - 1 - ] - }, - "vxlanTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vxlanEntry", - 2 - ] - }, - "vxlanTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vxlanEntry", - 3 - ] - }, - "vxlanTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vxlanEntry", - 4 - ] - }, - "vxlanTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vxlanEntry", - 5 - ] - }, - "cacheGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CacheGroupEntry" - }, - "index": null, - "value": [ - "nsSysGroup", - 82 - ] - }, - "cacheGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CacheGroupEntry" - }, - "index": [ - "cachegroupName" - ], - "value": [ - "cacheGroupTable", - 1 - ] - }, - "CacheGroupEntry": { - "tp": "SEQUENCE" - }, - "cachegroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 1 - ] - }, - "groupnon304hit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 2 - ] - }, - "group304hit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 3 - ] - }, - "totcell": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 4 - ] - }, - "totmarkercell": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 5 - ] - }, - "timesflushed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 6 - ] - }, - "totmemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 7 - ] - }, - "maxmemory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "cacheGroupEntry", - 8 - ] - }, - "nsLsnStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 83 - ] - }, - "nsLsnGlobalStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnStatsGroup", - 1 - ] - }, - "lsnTotRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 1 - ] - }, - "lsnTotRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 2 - ] - }, - "lsnTotTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 3 - ] - }, - "lsnTotTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 4 - ] - }, - "lsnCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 5 - ] - }, - "lsnCurSubscribers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 6 - ] - }, - "lsnTotTcpRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 7 - ] - }, - "lsnTotTcpTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 8 - ] - }, - "lsnTotUdpRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 9 - ] - }, - "lsnTotUdpTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 10 - ] - }, - "lsnTotIcmpRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 11 - ] - }, - "lsnTotIcmpTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 12 - ] - }, - "lsnTotTcpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 13 - ] - }, - "lsnTotTcpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 14 - ] - }, - "lsnTotUdpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 15 - ] - }, - "lsnTotUdpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 16 - ] - }, - "lsnTotIcmpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 17 - ] - }, - "lsnTotIcmpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 18 - ] - }, - "lsnTotDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 19 - ] - }, - "lsnTotTcpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 20 - ] - }, - "lsnTotUdpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 21 - ] - }, - "lsnTotIcmpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 22 - ] - }, - "lsnCurTcpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 23 - ] - }, - "lsnCurUdpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 24 - ] - }, - "lsnCurIcmpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 25 - ] - }, - "lsnSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 26 - ] - }, - "lsnTcpSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 27 - ] - }, - "lsnUdpSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 28 - ] - }, - "lsnIcmpSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGlobalStatsGroup", - 29 - ] - }, - "nsLsnGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NsLsnGroupEntry" - }, - "index": null, - "value": [ - "nsLsnStatsGroup", - 2 - ] - }, - "nsLsnGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NsLsnGroupEntry" - }, - "index": [ - "lsnGrpName" - ], - "value": [ - "nsLsnGroupTable", - 1 - ] - }, - "NsLsnGroupEntry": { - "tp": "SEQUENCE" - }, - "lsnGrpName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 1 - ] - }, - "lsnGrpTotTranslPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 2 - ] - }, - "lsnGrpTotTranslBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 3 - ] - }, - "lsnGrpCurSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 4 - ] - }, - "lsnGrpCurSubscribers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 5 - ] - }, - "lsnGrpTotTcpTranslPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 6 - ] - }, - "lsnGrpTotUdpTranslPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 7 - ] - }, - "lsnGrpTotIcmpTranslPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 8 - ] - }, - "lsnGrpTotTcpTranslBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 9 - ] - }, - "lsnGrpTotUdpTranslBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 10 - ] - }, - "lsnGrpTotIcmpTranslBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 11 - ] - }, - "lsnGrpTotTcpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 12 - ] - }, - "lsnGrpTotUdpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 13 - ] - }, - "lsnGrpTotIcmpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 14 - ] - }, - "lsnGrpTotTcpDrpBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 15 - ] - }, - "lsnGrpTotUdpDrpBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 16 - ] - }, - "lsnGrpTotIcmpDrpBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 17 - ] - }, - "lsnGrpCurTcpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 18 - ] - }, - "lsnGrpCurUdpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 19 - ] - }, - "lsnGrpCurIcmpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 20 - ] - }, - "lsnGrpSessRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 21 - ] - }, - "lsnGrpTcpSessRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 22 - ] - }, - "lsnGrpUdpSessRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 23 - ] - }, - "lsnGrpIcmpSessRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnGroupEntry", - 24 - ] - }, - "nsPPTPStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnStatsGroup", - 3 - ] - }, - "pptpCurCtrlSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 1 - ] - }, - "pptpTotCtrlSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 2 - ] - }, - "pptpTotGRESessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 3 - ] - }, - "pptpCurGRESessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 4 - ] - }, - "pptpStrtCtrlConnReply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 5 - ] - }, - "pptpStpCtrlConnReply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 6 - ] - }, - "pptpOutCallReply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 7 - ] - }, - "pptpCtlErrNoCallidMap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 8 - ] - }, - "pptpInCallReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 9 - ] - }, - "pptpInCallConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 10 - ] - }, - "pptpCallDisNotify": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 11 - ] - }, - "pptpWanErrNotify": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 12 - ] - }, - "pptpSetLinkInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 13 - ] - }, - "pptpEchoReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 14 - ] - }, - "pptpEchoRep": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 15 - ] - }, - "pptpStrtCtrlConnReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 16 - ] - }, - "pptpStpCtrlConnReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 17 - ] - }, - "pptpOutCallReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 18 - ] - }, - "pptpInCallRep": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 19 - ] - }, - "pptpCallClrReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 20 - ] - }, - "pptpCntlOcreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 21 - ] - }, - "pptpCntlIcreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nsPPTPStatsGroup", - 22 - ] - }, - "nsLsnDSLiteGlobalStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnStatsGroup", - 4 - ] - }, - "lsnTotDSLiteRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnDSLiteGlobalStatsGroup", - 1 - ] - }, - "lsnTotDSLiteRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnDSLiteGlobalStatsGroup", - 2 - ] - }, - "lsnTotDSLiteTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnDSLiteGlobalStatsGroup", - 3 - ] - }, - "lsnTotDSLiteTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnDSLiteGlobalStatsGroup", - 4 - ] - }, - "lsnCurDSLiteSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnDSLiteGlobalStatsGroup", - 5 - ] - }, - "lsnDSLiteCurSubscribers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnDSLiteGlobalStatsGroup", - 6 - ] - }, - "nsLsnLogStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnStatsGroup", - 5 - ] - }, - "nsLsnMappingLogStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnLogStatsGroup", - 1 - ] - }, - "lsnLogTotMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 1 - ] - }, - "lsnLogTotMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 2 - ] - }, - "lsnLogTotAPDMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 3 - ] - }, - "lsnLogTotAPDMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 4 - ] - }, - "lsnLogTotADMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 5 - ] - }, - "lsnLogTotADMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 6 - ] - }, - "lsnLogTotEIMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 7 - ] - }, - "lsnLogTotEIMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 8 - ] - }, - "lsnLogTotTcpMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 9 - ] - }, - "lsnLogTotTcpMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 10 - ] - }, - "lsnLogTotUdpMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 11 - ] - }, - "lsnLogTotUdpMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 12 - ] - }, - "lsnLogTotIcmpMappingCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 13 - ] - }, - "lsnLogTotIcmpMappingDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 14 - ] - }, - "lsnLogTotWrongMappingFlagEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnMappingLogStatsGroup", - 15 - ] - }, - "nsLsnSessionLogStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnLogStatsGroup", - 2 - ] - }, - "lsnLogTotSessionCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 1 - ] - }, - "lsnLogTotSessionDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 2 - ] - }, - "lsnLogTotTcpSessionCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 3 - ] - }, - "lsnLogTotTcpSessionDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 4 - ] - }, - "lsnLogTotUdpSessionCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 5 - ] - }, - "lsnLogTotUdpSessionDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 6 - ] - }, - "lsnLogTotIcmpSessionCreateEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 7 - ] - }, - "lsnLogTotIcmpSessionDeleteEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnSessionLogStatsGroup", - 8 - ] - }, - "lsnLogTotEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 3 - ] - }, - "lsnLogTotDeterministicAllocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 4 - ] - }, - "lsnLogTotDeterministicDeallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 5 - ] - }, - "lsnLogTotPortblockAllocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 6 - ] - }, - "lsnLogTotPortblockDeallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 7 - ] - }, - "lsnLogTotTcpPortblockAllocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 8 - ] - }, - "lsnLogTotTcpPortblockDeallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 9 - ] - }, - "lsnLogTotNontcpPortblockAllocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 10 - ] - }, - "lsnLogTotNontcpPortblockDeallocs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 11 - ] - }, - "lsnLogTotWrongFlags": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 12 - ] - }, - "lsnLogTotWrongProtocols": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnLogStatsGroup", - 13 - ] - }, - "nsLsnNAT64GlobalStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsLsnStatsGroup", - 6 - ] - }, - "lsnTotNAT64RxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 1 - ] - }, - "lsnTotNAT64RxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 2 - ] - }, - "lsnTotNAT64TxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 3 - ] - }, - "lsnTotNAT64TxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 4 - ] - }, - "lsnCurNAT64sessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 5 - ] - }, - "lsnNAT64CurSubscribers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 6 - ] - }, - "lsnTotNAT64TcpRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 7 - ] - }, - "lsnTotNAT64TcpTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 8 - ] - }, - "lsnTotNAT64UdpRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 9 - ] - }, - "lsnTotNAT64UdpTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 10 - ] - }, - "lsnTotNAT64IcmpRxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 11 - ] - }, - "lsnTotNAT64IcmpTxPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 12 - ] - }, - "lsnTotNAT64TcpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 13 - ] - }, - "lsnTotNAT64TcpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 14 - ] - }, - "lsnTotNAT64UdpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 15 - ] - }, - "lsnTotNAT64UdpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 16 - ] - }, - "lsnTotNAT64IcmpRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 17 - ] - }, - "lsnTotNAT64IcmpTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 18 - ] - }, - "lsnTotNAT64TcpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 19 - ] - }, - "lsnTotNAT64UdpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 20 - ] - }, - "lsnTotnat64IcmpDrpPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 21 - ] - }, - "lsnCurNAT64TcpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 22 - ] - }, - "lsnCurNAT64UdpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 23 - ] - }, - "lsnCurNAT64IcmpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 24 - ] - }, - "lsnNAT64SessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 25 - ] - }, - "lsnNAT64TcpSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 26 - ] - }, - "lsnNAT64UdpSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 27 - ] - }, - "lsnNAT64IcmpSessionsRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nsLsnNAT64GlobalStatsGroup", - 28 - ] - }, - "nsmcStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSysGroup", - 84 - ] - }, - "mcTotaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 1 - ] - }, - "mcTotvideo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 2 - ] - }, - "mcTotother": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 3 - ] - }, - "mcMsSmthStrmVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 4 - ] - }, - "mcMsSmthStrmVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 5 - ] - }, - "mcMsSmthStrVidpl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 6 - ] - }, - "mcMsSmthStrmPlVidBytespl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 7 - ] - }, - "mccApleLiveStrmngVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 8 - ] - }, - "mcAppleLiveStreamingVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 9 - ] - }, - "mccAppleLiveStrmngVidpl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 10 - ] - }, - "mcAppleLiveStreamingPlaylistVidBytespl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 11 - ] - }, - "mcADTSaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 12 - ] - }, - "mcADTSaudioBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 13 - ] - }, - "mcAACaudio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 14 - ] - }, - "mcAACaudiobytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 15 - ] - }, - "mcFLVVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 16 - ] - }, - "mcFLVVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 17 - ] - }, - "mcMP4Vid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 18 - ] - }, - "mcMP4VidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 19 - ] - }, - "mc3PVid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 20 - ] - }, - "mc3GPVidBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 21 - ] - }, - "mcTotResponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 22 - ] - }, - "mcAndroid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 23 - ] - }, - "mcLaptopDesktp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 24 - ] - }, - "mcIos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 25 - ] - }, - "mcUnidentified": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 26 - ] - }, - "mcOther": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 27 - ] - }, - "mcYoutubedash": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 28 - ] - }, - "mcYoutubedashBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 29 - ] - }, - "mcEncVideo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 30 - ] - }, - "mcEncHls": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 31 - ] - }, - "mcEncDASH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 32 - ] - }, - "mcEncOthStream": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 33 - ] - }, - "mcEncAndroid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 34 - ] - }, - "mcEncIos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 35 - ] - }, - "mcEncOther": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "nsmcStatsGroup", - 36 - ] - }, - "nsSvcGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rs9000", - 2 - ] - }, - "serviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 1 - ] - }, - "serviceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceEntry" - }, - "index": [ - "svcServiceName" - ], - "value": [ - "serviceTable", - 1 - ] - }, - "ServiceEntry": { - "tp": "SEQUENCE" - }, - "svcServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 1 - ] - }, - "svcIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceEntry", - 2 - ] - }, - "svcPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 3 - ] - }, - "svcServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityProtocolType" - }, - "index": null, - "value": [ - "serviceEntry", - 4 - ] - }, - "svcState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "serviceEntry", - 5 - ] - }, - "svcMaxReqPerConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 6 - ] - }, - "svcAvgTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 7 - ] - }, - "svcEstablishedConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 8 - ] - }, - "svcActiveConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 9 - ] - }, - "svcSurgeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 10 - ] - }, - "svcTotalRequestsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 11 - ] - }, - "svcTotalRequestsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 12 - ] - }, - "svcTotalRequestBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 13 - ] - }, - "svcTotalRequestBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 14 - ] - }, - "svcTotalResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 15 - ] - }, - "svcTotalResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 16 - ] - }, - "svcTotalResponseBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 17 - ] - }, - "svcTotalResponseBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 18 - ] - }, - "svcTotalPktsRecvdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 19 - ] - }, - "svcTotalPktsRecvdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 20 - ] - }, - "svcTotalPktsSentLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 21 - ] - }, - "svcTotalPktsSentHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 22 - ] - }, - "svcTotalSynsRecvdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 23 - ] - }, - "svcTotalSynsRecvdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceEntry", - 24 - ] - }, - "svcTotalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 30 - ] - }, - "svcTotalRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 31 - ] - }, - "svcTotalResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 32 - ] - }, - "svcTotalResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 33 - ] - }, - "svcTotalPktsRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 34 - ] - }, - "svcTotalPktsSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 35 - ] - }, - "svcTotalSynsRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 36 - ] - }, - "svcGslbSiteName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 37 - ] - }, - "svcAvgSvrTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 38 - ] - }, - "svctotalJsTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 39 - ] - }, - "svcdosQDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 40 - ] - }, - "svcCurClntConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 41 - ] - }, - "svcRequestRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 42 - ] - }, - "svcRxBytesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 43 - ] - }, - "svcTxBytesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 44 - ] - }, - "svcSynfloodRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 45 - ] - }, - "svcTicksSinceLastStateChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "serviceEntry", - 47 - ] - }, - "svcTotalClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 48 - ] - }, - "svcTotalServers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceEntry", - 49 - ] - }, - "svcMaxClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 52 - ] - }, - "svcActiveTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 53 - ] - }, - "svcServiceFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 54 - ] - }, - "svcInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "serviceEntry", - 55 - ] - }, - "svcInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "serviceEntry", - 56 - ] - }, - "svcTdId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 57 - ] - }, - "svcGslbState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "serviceEntry", - 58 - ] - }, - "svcCurSrvrConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceEntry", - 59 - ] - }, - "serverTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServerEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 2 - ] - }, - "serverEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServerEntry" - }, - "index": [ - "serverName" - ], - "value": [ - "serverTable", - 1 - ] - }, - "ServerEntry": { - "tp": "SEQUENCE" - }, - "serverName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serverEntry", - 1 - ] - }, - "serverIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serverEntry", - 2 - ] - }, - "serverState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "serverEntry", - 3 - ] - }, - "serverDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serverEntry", - 4 - ] - }, - "serverFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serverEntry", - 5 - ] - }, - "serverInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "serverEntry", - 6 - ] - }, - "serverInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "serverEntry", - 7 - ] - }, - "serverTdId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serverEntry", - 8 - ] - }, - "serviceScpolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceScpolicyEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 3 - ] - }, - "serviceScpolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceScpolicyEntry" - }, - "index": [ - "svcServiceName", - "scPolicyName" - ], - "value": [ - "serviceScpolicyTable", - 1 - ] - }, - "ServiceScpolicyEntry": { - "tp": "SEQUENCE" - }, - "svcscpolicyPrimaryIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 3 - ] - }, - "svcscpolicyPrimaryPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 4 - ] - }, - "svcscpolicyDesIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 5 - ] - }, - "svcscpolicyDestPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 6 - ] - }, - "svcscpolicyAvgServerTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 7 - ] - }, - "svcscpolicyTotClientTransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 8 - ] - }, - "svcscpolicyTotOpenConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 9 - ] - }, - "svcscpolicydesIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 10 - ] - }, - "svcscpolicydestPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 11 - ] - }, - "svcscpolicyavgServerTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 12 - ] - }, - "svcscpolicytotClientTransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 13 - ] - }, - "svcscpolicytotOpenConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 14 - ] - }, - "svcscpolicyscPhysicalServiceIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 15 - ] - }, - "svcscpolicyscPhysicalServicePort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 16 - ] - }, - "svcscpolicyscCurrentWaitingTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 17 - ] - }, - "svcscpolicyscCurrentClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 18 - ] - }, - "svcscpolicyscTotalClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 19 - ] - }, - "svcscpolicyscTotalServerConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 20 - ] - }, - "svcscpolicyscTotalRequestsReceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 21 - ] - }, - "svcscpolicyscTotalRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 22 - ] - }, - "svcscpolicyscTotalResponsesReceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 23 - ] - }, - "svcscpolicyscTotalResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 24 - ] - }, - "svcscpolicyscCurrentSurgeQClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 25 - ] - }, - "svcscpolicyscCurrentWaitingClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 26 - ] - }, - "svcscpolicyscTotalServerTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 27 - ] - }, - "svcscpolicyscTotalServerTTFBTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 28 - ] - }, - "svcscpolicyscTotalServerTTLB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 29 - ] - }, - "svcscpolicyscTotalClientTTLB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 30 - ] - }, - "svcscpolicyscTotalServerTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 31 - ] - }, - "svcscpolicyscAverageClientTTLB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 32 - ] - }, - "svcscpolicyscAverageServerTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceScpolicyEntry", - 33 - ] - }, - "serviceAdvanceSslConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceAdvanceSslConfigEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 4 - ] - }, - "serviceAdvanceSslConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceAdvanceSslConfigEntry" - }, - "index": [ - "svcServiceName" - ], - "value": [ - "serviceAdvanceSslConfigTable", - 1 - ] - }, - "ServiceAdvanceSslConfigEntry": { - "tp": "SEQUENCE" - }, - "svcSslDH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 1 - ] - }, - "svcSslDHCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 2 - ] - }, - "svcSslDHFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 3 - ] - }, - "svcSsleRSA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 4 - ] - }, - "svcSsleRSACount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 5 - ] - }, - "svcSslv2Protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 6 - ] - }, - "svcSslv3Protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 7 - ] - }, - "svcSslTLSv1Protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 8 - ] - }, - "svcSslRedirectSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 9 - ] - }, - "svcSslClearTextPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceAdvanceSslConfigEntry", - 10 - ] - }, - "serviceCipherBindingTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceCipherBindingEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 5 - ] - }, - "serviceCipherBindingEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceCipherBindingEntry" - }, - "index": [ - "svcServiceName", - "svcSslCipherBindName" - ], - "value": [ - "serviceCipherBindingTable", - 1 - ] - }, - "ServiceCipherBindingEntry": { - "tp": "SEQUENCE" - }, - "svcSslCipherBindName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceCipherBindingEntry", - 1 - ] - }, - "svcSslCipherBindDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceCipherBindingEntry", - 2 - ] - }, - "serviceGlobalStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSvcGroup", - 6 - ] - }, - "svcCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 1 - ] - }, - "serverCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 2 - ] - }, - "svcgroupCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 3 - ] - }, - "svcgroupmemCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 4 - ] - }, - "syssvcCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 5 - ] - }, - "sysupsvcCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 6 - ] - }, - "sysupsvcitmCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGlobalStatsGroup", - 7 - ] - }, - "serviceGroupMemberTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceGroupMemberEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 7 - ] - }, - "serviceGroupMemberEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceGroupMemberEntry" - }, - "index": [ - "svcGrpMemberGroupName", - "svcGrpMemberName" - ], - "value": [ - "serviceGroupMemberTable", - 1 - ] - }, - "ServiceGroupMemberEntry": { - "tp": "SEQUENCE" - }, - "svcGrpMemberGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 1 - ] - }, - "svcGrpMemberName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 2 - ] - }, - "svcGrpMemberPrimaryIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 3 - ] - }, - "svcGrpMemberPrimaryPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 4 - ] - }, - "svcGrpMemberServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityProtocolType" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 5 - ] - }, - "svcGrpMemberState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 6 - ] - }, - "svcGrpMemberWeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 7 - ] - }, - "svcGrpMemberMaxReqPerConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 8 - ] - }, - "svcGrpMemberAvgTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 9 - ] - }, - "svcGrpMemberEstablishedConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 10 - ] - }, - "svcGrpMemberActiveConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 11 - ] - }, - "svcGrpMemberSurgeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 12 - ] - }, - "svcGrpMemberTotalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 13 - ] - }, - "svcGrpMemberTotalRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 14 - ] - }, - "svcGrpMemberTotalResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 15 - ] - }, - "svcGrpMemberTotalResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 16 - ] - }, - "svcGrpMemberTotalPktsRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 17 - ] - }, - "svcGrpMemberTotalPktsSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 18 - ] - }, - "svcGrpMemberTotalSynsRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 19 - ] - }, - "svcGrpMemberGslbSiteName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 20 - ] - }, - "svcGrpMemberAvgSvrTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 21 - ] - }, - "svcGrpMembertotalJsTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 22 - ] - }, - "svcGrpMemberdosQDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 23 - ] - }, - "svcGrpMemberCurClntConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 24 - ] - }, - "svcGrpMemberRequestRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 25 - ] - }, - "svcGrpMemberRxBytesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 26 - ] - }, - "svcGrpMemberTxBytesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 27 - ] - }, - "svcGrpMemberSynfloodRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 28 - ] - }, - "svcGrpMemberTicksSinceLastStateChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 31 - ] - }, - "svcGrpMemberGroupFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 32 - ] - }, - "svcGrpMemberFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 33 - ] - }, - "svcGrpMemberPrimaryInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 34 - ] - }, - "svcGrpMemberPrimaryInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 35 - ] - }, - "svcGrpMemberServerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 36 - ] - }, - "svcGrpMemberTdId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGroupMemberEntry", - 37 - ] - }, - "serviceDospolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceDospolicyEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 8 - ] - }, - "serviceDospolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceDospolicyEntry" - }, - "index": [ - "svcServiceName", - "dosPolicyName" - ], - "value": [ - "serviceDospolicyTable", - 1 - ] - }, - "ServiceDospolicyEntry": { - "tp": "SEQUENCE" - }, - "svcdospolicydosTotJSSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 1 - ] - }, - "svcdospolicydosTotJSBytesSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 2 - ] - }, - "svcdospolicydosTotJSRefused": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 3 - ] - }, - "svcdospolicydosTotNonGetPostRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 4 - ] - }, - "svcdospolicydosPhysicalServiceIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 5 - ] - }, - "svcdospolicydosPhysicalServicePort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 6 - ] - }, - "svcdospolicydosCurrentQueueSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 7 - ] - }, - "svcdospolicydosCurrentJSRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 8 - ] - }, - "svcdospolicydosTotValidClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 9 - ] - }, - "svcdospolicydosCurServerRespRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "serviceDospolicyEntry", - 10 - ] - }, - "monitorMemberTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MonitorMemberEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 9 - ] - }, - "monitorMemberEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MonitorMemberEntry" - }, - "index": [ - "monitorName" - ], - "value": [ - "monitorMemberTable", - 1 - ] - }, - "MonitorMemberEntry": { - "tp": "SEQUENCE" - }, - "monitorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 1 - ] - }, - "responseTimeoutThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 2 - ] - }, - "monitorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MonitorType" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 3 - ] - }, - "monitorInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 4 - ] - }, - "monitorResponseTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 5 - ] - }, - "monitorDowntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 6 - ] - }, - "monitorRetrys": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 7 - ] - }, - "destinationIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 8 - ] - }, - "destinationPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 9 - ] - }, - "drtmDeviation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 10 - ] - }, - "drtmActiveMonitors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 11 - ] - }, - "drtmCumResponseTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 12 - ] - }, - "alarmProbeFailedRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 13 - ] - }, - "destinationInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 14 - ] - }, - "destinationInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "monitorMemberEntry", - 15 - ] - }, - "monServiceMemberTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MonServiceMemberEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 10 - ] - }, - "monServiceMemberEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MonServiceMemberEntry" - }, - "index": [ - "monServiceName", - "monitorName" - ], - "value": [ - "monServiceMemberTable", - 1 - ] - }, - "MonServiceMemberEntry": { - "tp": "SEQUENCE" - }, - "monServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 1 - ] - }, - "monitorRTO": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 2 - ] - }, - "monitorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MonitorState" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 3 - ] - }, - "drtmRTO": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 4 - ] - }, - "drtmLearningProbes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 5 - ] - }, - "monitorCurFailedCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 6 - ] - }, - "monitorWeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 7 - ] - }, - "alarmMonrespto": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 8 - ] - }, - "monitorProbes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 9 - ] - }, - "monitorFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 10 - ] - }, - "monitorMaxClient": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 11 - ] - }, - "monitorFailedCon": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 12 - ] - }, - "monitorFailedCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 13 - ] - }, - "monitorFailedStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 14 - ] - }, - "monitorFailedTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 15 - ] - }, - "monitorFailedSend": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 16 - ] - }, - "monitorFailedFTP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 17 - ] - }, - "monitorFailedPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 18 - ] - }, - "monitorFailedResponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 19 - ] - }, - "monitorFailedId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 20 - ] - }, - "monitorProbesNoChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 21 - ] - }, - "monitorResponseTimeoutThreshExceed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "monServiceMemberEntry", - 22 - ] - }, - "serviceGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceGroupEntry" - }, - "index": null, - "value": [ - "nsSvcGroup", - 11 - ] - }, - "serviceGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceGroupEntry" - }, - "index": [ - "svcgrpSvcGroupName" - ], - "value": [ - "serviceGroupTable", - 1 - ] - }, - "ServiceGroupEntry": { - "tp": "SEQUENCE" - }, - "svcgrpSvcGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupEntry", - 1 - ] - }, - "svcgrpSvcGroupType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityProtocolType" - }, - "index": null, - "value": [ - "serviceGroupEntry", - 2 - ] - }, - "svcgrpSvcGroupState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceGroupState" - }, - "index": null, - "value": [ - "serviceGroupEntry", - 3 - ] - }, - "svcgrpSvcGroupFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceGroupEntry", - 4 - ] - }, - "svcgrpTdId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceGroupEntry", - 5 - ] - }, - "nsVserverGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rs9000", - 3 - ] - }, - "vserverTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 1 - ] - }, - "vserverEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverEntry" - }, - "index": [ - "vsvrName" - ], - "value": [ - "vserverTable", - 1 - ] - }, - "VserverEntry": { - "tp": "SEQUENCE" - }, - "vsvrName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 1 - ] - }, - "vsvrIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vserverEntry", - 2 - ] - }, - "vsvrPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverEntry", - 3 - ] - }, - "vsvrType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityProtocolType" - }, - "index": null, - "value": [ - "vserverEntry", - 4 - ] - }, - "vsvrState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "vserverEntry", - 5 - ] - }, - "vsvrMaxReqPerConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 6 - ] - }, - "vsvrCurClntConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 7 - ] - }, - "vsvrCurSrvrConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 8 - ] - }, - "vsvrAvgTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "vserverEntry", - 9 - ] - }, - "vsvrSurgeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 10 - ] - }, - "vsvrTotalRequestsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 11 - ] - }, - "vsvrTotalRequestsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 12 - ] - }, - "vsvrTotalRequestBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 13 - ] - }, - "vsvrTotalRequestBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 14 - ] - }, - "vsvrTotalResponsesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 15 - ] - }, - "vsvrTotalResponsesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 16 - ] - }, - "vsvrTotalResponseBytesLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 17 - ] - }, - "vsvrTotalResponseBytesHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 18 - ] - }, - "vsvrTotalPktsRecvdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 19 - ] - }, - "vsvrTotalPktsRecvdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 20 - ] - }, - "vsvrTotalPktsSentLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 21 - ] - }, - "vsvrTotalPktsSentHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 22 - ] - }, - "vsvrTotalSynsRecvdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 23 - ] - }, - "vsvrTotalSynsRecvdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 24 - ] - }, - "vsvrTotalRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 30 - ] - }, - "vsvrTotalRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 31 - ] - }, - "vsvrTotalResponses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 32 - ] - }, - "vsvrTotalResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 33 - ] - }, - "vsvrTotalPktsRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 34 - ] - }, - "vsvrTotalPktsSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 35 - ] - }, - "vsvrTotalSynsRecvd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 36 - ] - }, - "vsvrCurServicesDown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 37 - ] - }, - "vsvrCurServicesUnKnown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 38 - ] - }, - "vsvrCurServicesOutOfSvc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 39 - ] - }, - "vsvrCurServicesTransToOutOfSvc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 40 - ] - }, - "vsvrCurServicesUp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 41 - ] - }, - "vsvrTotMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 42 - ] - }, - "vsvrRequestRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 43 - ] - }, - "vsvrRxBytesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 44 - ] - }, - "vsvrTxBytesRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 45 - ] - }, - "vsvrSynfloodRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 46 - ] - }, - "vsvrIp6Address": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Ipv6Address" - }, - "index": null, - "value": [ - "vserverEntry", - 47 - ] - }, - "vsvrTotHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 48 - ] - }, - "vsvrTotSpillOvers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverEntry", - 54 - ] - }, - "vsvrTotalClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 56 - ] - }, - "vsvrClientConnOpenRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 58 - ] - }, - "vsvrFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverEntry", - 59 - ] - }, - "vsvrCurSslVpnUsers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 60 - ] - }, - "vsvrTotalServicesBound": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 61 - ] - }, - "vsvrHealth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverEntry", - 62 - ] - }, - "vsvrTicksSinceLastStateChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "vserverEntry", - 63 - ] - }, - "vsvrEntityType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VServerType" - }, - "index": null, - "value": [ - "vserverEntry", - 64 - ] - }, - "vsvrTotalServers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 65 - ] - }, - "vsvrActiveActiveState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ActiveActiveState" - }, - "index": null, - "value": [ - "vserverEntry", - 66 - ] - }, - "vsvrInvalidRequestResponse": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 67 - ] - }, - "vsvrInvalidRequestResponseDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverEntry", - 68 - ] - }, - "vsvrTdId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverEntry", - 69 - ] - }, - "vsvrSoThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 70 - ] - }, - "vsvrEstablishedConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 71 - ] - }, - "vsvrCurTotalVpnUsers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 72 - ] - }, - "vsvrCurMptcpSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 73 - ] - }, - "vsvrCursubflowConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverEntry", - 74 - ] - }, - "vsvrCurEffState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "vserverEntry", - 75 - ] - }, - "vserverServiceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverServiceEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 2 - ] - }, - "vserverServiceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverServiceEntry" - }, - "index": [ - "vsvrName", - "vsvrServiceName" - ], - "value": [ - "vserverServiceTable", - 1 - ] - }, - "VserverServiceEntry": { - "tp": "SEQUENCE" - }, - "serviceHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 1 - ] - }, - "serviceHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 2 - ] - }, - "servicePersistentHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 3 - ] - }, - "servicePersistentHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 4 - ] - }, - "vsvrServiceHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 5 - ] - }, - "servicePersistentHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 6 - ] - }, - "serviceWeight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 7 - ] - }, - "vsvrServiceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 8 - ] - }, - "vsvrServiceFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 9 - ] - }, - "vserverFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 10 - ] - }, - "vsvrServiceEntityType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SvcEntityType" - }, - "index": null, - "value": [ - "vserverServiceEntry", - 11 - ] - }, - "vserverCspolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverCspolicyEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 3 - ] - }, - "vserverCspolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverCspolicyEntry" - }, - "index": [ - "vsvrName", - "cspolicyName" - ], - "value": [ - "vserverCspolicyTable", - 1 - ] - }, - "VserverCspolicyEntry": { - "tp": "SEQUENCE" - }, - "cspolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCspolicyEntry", - 1 - ] - }, - "cspolicyDestVserverName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCspolicyEntry", - 2 - ] - }, - "cspolicyHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverCspolicyEntry", - 3 - ] - }, - "cspolicyHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverCspolicyEntry", - 4 - ] - }, - "cspolicyHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverCspolicyEntry", - 5 - ] - }, - "csIndexVserverFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCspolicyEntry", - 6 - ] - }, - "vserverCrpolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverCrpolicyEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 4 - ] - }, - "vserverCrpolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverCrpolicyEntry" - }, - "index": [ - "vsvrName", - "crpolicyName" - ], - "value": [ - "vserverCrpolicyTable", - 1 - ] - }, - "VserverCrpolicyEntry": { - "tp": "SEQUENCE" - }, - "crpolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCrpolicyEntry", - 1 - ] - }, - "crpolicyHitsLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverCrpolicyEntry", - 2 - ] - }, - "crpolicyHitsHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverCrpolicyEntry", - 3 - ] - }, - "crpolicyHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverCrpolicyEntry", - 4 - ] - }, - "crIndexVserverFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCrpolicyEntry", - 5 - ] - }, - "vserverGlobalStatsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsVserverGroup", - 5 - ] - }, - "curConfigVservers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverGlobalStatsGroup", - 1 - ] - }, - "vsvrBindCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverGlobalStatsGroup", - 2 - ] - }, - "vsvrSvcGrpBindCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverGlobalStatsGroup", - 3 - ] - }, - "curConfigLbVservers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverGlobalStatsGroup", - 4 - ] - }, - "curConfigGslbVservers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverGlobalStatsGroup", - 5 - ] - }, - "totSpilloverCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverGlobalStatsGroup", - 6 - ] - }, - "lbvserverTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF LbvserverEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 6 - ] - }, - "lbvserverEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LbvserverEntry" - }, - "index": [ - "vsvrName" - ], - "value": [ - "lbvserverTable", - 1 - ] - }, - "LbvserverEntry": { - "tp": "SEQUENCE" - }, - "lbvsvrLBMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LbPolicy" - }, - "index": null, - "value": [ - "lbvserverEntry", - 1 - ] - }, - "lbvsvrPersistanceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PersistanceType" - }, - "index": null, - "value": [ - "lbvserverEntry", - 2 - ] - }, - "lbvsvrPersistenceTimeOut": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "lbvserverEntry", - 3 - ] - }, - "lbvsvrActiveConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "lbvserverEntry", - 4 - ] - }, - "lbvsvrAvgSvrTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "lbvserverEntry", - 5 - ] - }, - "lbvsvrRdpCookieParsed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "lbvserverEntry", - 6 - ] - }, - "vserverPqpolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverPqpolicyEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 7 - ] - }, - "vserverPqpolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverPqpolicyEntry" - }, - "index": [ - "vsvrName", - "pqName" - ], - "value": [ - "vserverPqpolicyTable", - 1 - ] - }, - "VserverPqpolicyEntry": { - "tp": "SEQUENCE" - }, - "pqpolicyTotClientTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 1 - ] - }, - "pqpolicyTotClientTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 2 - ] - }, - "pqpolicyDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 3 - ] - }, - "pqpolicyQdepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 4 - ] - }, - "pqpolicytotClientTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 5 - ] - }, - "pqpolicytotClientTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 6 - ] - }, - "pqpolicypqDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 7 - ] - }, - "pqpolicypqQdepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 8 - ] - }, - "pqpolicypqAvgClientTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 9 - ] - }, - "pqpolicypqVserverIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 10 - ] - }, - "pqpolicypqVserverPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 11 - ] - }, - "pqpolicypqCurrentClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 12 - ] - }, - "pqpolicypqTotQueueDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 13 - ] - }, - "pqpolicypqTotClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 14 - ] - }, - "pqpolicypqTotQueueWaitTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 15 - ] - }, - "pqpolicypqTotAvgQueueDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 16 - ] - }, - "pqpolicypqTotAvgQueueWaitTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 17 - ] - }, - "pqpolicytotClientTransactionTimems": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 18 - ] - }, - "pqpolicypqAvgClientTransactionTimems": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverPqpolicyEntry", - 19 - ] - }, - "vserverScpolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverScpolicyEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 8 - ] - }, - "vserverScpolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverScpolicyEntry" - }, - "index": [ - "svcServiceName", - "scPolicyName" - ], - "value": [ - "vserverScpolicyTable", - 1 - ] - }, - "VserverScpolicyEntry": { - "tp": "SEQUENCE" - }, - "vsvrscpolicyPrimaryIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 1 - ] - }, - "vsvrscpolicyPrimaryPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 2 - ] - }, - "vsvrscpolicyDesIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 3 - ] - }, - "vsvrscpolicyDestPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 4 - ] - }, - "vsvrscpolicyAvgServerTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 5 - ] - }, - "vsvrscpolicyTotClientTransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 6 - ] - }, - "vsvrscpolicyTotOpenConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 7 - ] - }, - "vsvrscpolicydesIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 8 - ] - }, - "vsvrscpolicydestPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 9 - ] - }, - "vsvrscpolicyavgServerTransactionTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 10 - ] - }, - "vsvrscpolicytotClientTransaction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 11 - ] - }, - "vsvrscpolicytotOpenConn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 12 - ] - }, - "vsvrscpolicyscPhysicalServiceIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 13 - ] - }, - "vsvrscpolicyscPhysicalServicePort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 14 - ] - }, - "vsvrscpolicyscCurrentWaitingTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 15 - ] - }, - "vsvrscpolicyscCurrentClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 16 - ] - }, - "vsvrscpolicyscTotalClientConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 17 - ] - }, - "vsvrscpolicyscTotalServerConnections": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 18 - ] - }, - "vsvrscpolicyscTotalRequestsReceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 19 - ] - }, - "vsvrscpolicyscTotalRequestBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 20 - ] - }, - "vsvrscpolicyscTotalResponsesReceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 21 - ] - }, - "vsvrscpolicyscTotalResponseBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 22 - ] - }, - "vsvrscpolicyscCurrentSurgeQClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 23 - ] - }, - "vsvrscpolicyscCurrentWaitingClients": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 24 - ] - }, - "vsvrscpolicyscTotalServerTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 25 - ] - }, - "vsvrscpolicyscTotalServerTTFBTransactions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 26 - ] - }, - "vsvrscpolicyscTotalServerTTLB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 27 - ] - }, - "vsvrscpolicyscTotalClientTTLB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 28 - ] - }, - "vsvrscpolicyscTotalServerTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 29 - ] - }, - "vsvrscpolicyscAverageClientTTLB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 30 - ] - }, - "vsvrscpolicyscAverageServerTTFB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "vserverScpolicyEntry", - 31 - ] - }, - "vserverAdvanceSslConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverAdvanceSslConfigEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 9 - ] - }, - "vserverAdvanceSslConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverAdvanceSslConfigEntry" - }, - "index": [ - "vsvrName" - ], - "value": [ - "vserverAdvanceSslConfigTable", - 1 - ] - }, - "VserverAdvanceSslConfigEntry": { - "tp": "SEQUENCE" - }, - "vsvrSslDH": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 1 - ] - }, - "vsvrSslDHCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 2 - ] - }, - "vsvrSslDHFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 3 - ] - }, - "vsvrSsleRSA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 4 - ] - }, - "vsvrSsleRSACount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 5 - ] - }, - "vsvrSslv2Protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 6 - ] - }, - "vsvrSslv3Protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 7 - ] - }, - "vsvrSslTLSv1Protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 8 - ] - }, - "vsvrSslRedirectSupport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AdminStatus" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 9 - ] - }, - "vsvrSslClearTextPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "vserverAdvanceSslConfigEntry", - 10 - ] - }, - "vserverCipherBindingTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverCipherBindingEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 10 - ] - }, - "vserverCipherBindingEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverCipherBindingEntry" - }, - "index": [ - "vsvrName", - "vsvrSslCipherBindName" - ], - "value": [ - "vserverCipherBindingTable", - 1 - ] - }, - "VserverCipherBindingEntry": { - "tp": "SEQUENCE" - }, - "vsvrSslCipherBindName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCipherBindingEntry", - 1 - ] - }, - "vsvrSslCipherBindDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCipherBindingEntry", - 2 - ] - }, - "vserverCsPiPolicyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF VserverCsPiPolicyEntry" - }, - "index": null, - "value": [ - "nsVserverGroup", - 11 - ] - }, - "vserverCsPiPolicyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VserverCsPiPolicyEntry" - }, - "index": [ - "vsvrName", - "csPipolicyName" - ], - "value": [ - "vserverCsPiPolicyTable", - 1 - ] - }, - "VserverCsPiPolicyEntry": { - "tp": "SEQUENCE" - }, - "csPipolicyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCsPiPolicyEntry", - 1 - ] - }, - "csPipolicyDestVserverName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCsPiPolicyEntry", - 2 - ] - }, - "piPolicyBindingHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "vserverCsPiPolicyEntry", - 3 - ] - }, - "csPiIndexVserverFullName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCsPiPolicyEntry", - 4 - ] - }, - "cspolicyActionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "vserverCsPiPolicyEntry", - 5 - ] - }, - "nsSnmpEventsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rs9000", - 10 - ] - }, - "snmpTrapVarBindOidsGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "nsSnmpEventsGroup", - 2 - ] - }, - "alarmHighThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 1 - ] - }, - "alarmNormalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 2 - ] - }, - "entityName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 3 - ] - }, - "nsUserName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 4 - ] - }, - "configurationCmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 5 - ] - }, - "authorizationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AuthorizationStatus" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 6 - ] - }, - "commandExecutionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CommandExecutionStatus" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 7 - ] - }, - "unackSynCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 8 - ] - }, - "alarmLowThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 9 - ] - }, - "alarmProbeFailedErrorString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 10 - ] - }, - "alarmVipRhiIpAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 11 - ] - }, - "alarmVipRhiState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 12 - ] - }, - "alarmRateLmtThresholdExceeded": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 13 - ] - }, - "ipAddressGathered": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 14 - ] - }, - "stringComputed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 15 - ] - }, - "alarmEntityCurState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntityState" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 16 - ] - }, - "sysHealthPowerSupplyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 17 - ] - }, - "alarmCurrentValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 18 - ] - }, - "alarmVipRhiInetAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 19 - ] - }, - "alarmVipRhiInetAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 20 - ] - }, - "alarmVsvrOldName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 21 - ] - }, - "alarmVsvrNewName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 22 - ] - }, - "nsClientIPAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 23 - ] - }, - "ipConflictAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 24 - ] - }, - "appfwLogMsg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 25 - ] - }, - "dnskeyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 26 - ] - }, - "dnskeyTimeToExpire": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 27 - ] - }, - "dnskeyUnitsOfExpiry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 28 - ] - }, - "entityNewName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 29 - ] - }, - "entityOldName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 30 - ] - }, - "platformRateLimitPacketDropCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 31 - ] - }, - "haLicenseMatchState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 32 - ] - }, - "sslCardStatusMsg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 33 - ] - }, - "callHomeUploadEventStatusMsg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 34 - ] - }, - "oldCCOIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 35 - ] - }, - "newCCOIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 36 - ] - }, - "oldOVS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 37 - ] - }, - "newOVS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 38 - ] - }, - "qosdVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 39 - ] - }, - "brVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 40 - ] - }, - "sslChipName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 41 - ] - }, - "vrid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 42 - ] - }, - "vridBoundVIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 43 - ] - }, - "newVridPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 44 - ] - }, - "oldVridPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 45 - ] - }, - "effectiveVridPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 46 - ] - }, - "dstip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 47 - ] - }, - "platformLicensedThroughput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 48 - ] - }, - "platformLicensedPPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 49 - ] - }, - "commandFailureReason": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 50 - ] - }, - "nsIPAddressType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 51 - ] - }, - "nsIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 52 - ] - }, - "lsnSubscrIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 53 - ] - }, - "lsnSubscrTD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 54 - ] - }, - "protocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 55 - ] - }, - "vsvrCurSoValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 56 - ] - }, - "vsvrSoMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 57 - ] - }, - "vsvrSoThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 58 - ] - }, - "lsnSessLimitExceededBy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 59 - ] - }, - "nsPartitionName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 60 - ] - }, - "operation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 61 - ] - }, - "fromPartition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 62 - ] - }, - "toPartition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 63 - ] - }, - "clPeerID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 64 - ] - }, - "lsnDSLiteB4Address": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 65 - ] - }, - "ipConflictMacAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 66 - ] - }, - "gslbSite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 67 - ] - }, - "siteIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 68 - ] - }, - "lsnNAT64SubscrIPV6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "snmpTrapVarBindOidsGroup", - 69 - ] - }, - "netScalerEventsV2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "netScalerEvents", - 0 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/P-BRIDGE-MIB.json b/mibs/parsed/P-BRIDGE-MIB.json deleted file mode 100644 index 06952be..0000000 --- a/mibs/parsed/P-BRIDGE-MIB.json +++ /dev/null @@ -1,696 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Counter32", - "Counter64" - ] - ], - [ - "SNMPv2-TC", - [ - "TruthValue", - "TimeInterval", - "MacAddress", - "TEXTUAL-CONVENTION" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "BRIDGE-MIB", - [ - "dot1dTp", - "dot1dTpPort", - "dot1dBridge", - "dot1dBasePortEntry", - "dot1dBasePort" - ] - ] - ], - "pBridgeMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "dot1dBridge", - 6 - ] - }, - "pBridgeMIBObjects": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeMIB", - 1 - ] - }, - "EnabledStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "display_hint": null - }, - "dot1dExtBase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeMIBObjects", - 1 - ] - }, - "dot1dPriority": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeMIBObjects", - 2 - ] - }, - "dot1dGarp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeMIBObjects", - 3 - ] - }, - "dot1dGmrp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeMIBObjects", - 4 - ] - }, - "dot1dDeviceCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "dot1dExtendedFilteringServices", - "1": "dot1dTrafficClasses", - "2": "dot1qStaticEntryIndividualPort", - "3": "dot1qIVLCapable", - "4": "dot1qSVLCapable", - "5": "dot1qHybridCapable", - "6": "dot1qConfigurablePvidTagging", - "7": "dot1dLocalVlanCapable" - } - }, - "index": null, - "value": [ - "dot1dExtBase", - 1 - ] - }, - "dot1dTrafficClassesEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "dot1dExtBase", - 2 - ] - }, - "dot1dGmrpStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnabledStatus" - }, - "index": null, - "value": [ - "dot1dExtBase", - 3 - ] - }, - "dot1dPortCapabilitiesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dPortCapabilitiesEntry" - }, - "index": null, - "value": [ - "dot1dExtBase", - 4 - ] - }, - "dot1dPortCapabilitiesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dPortCapabilitiesEntry" - }, - "index": "dot1dBasePortEntry", - "value": [ - "dot1dPortCapabilitiesTable", - 1 - ] - }, - "Dot1dPortCapabilitiesEntry": { - "tp": "SEQUENCE" - }, - "dot1dPortCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "dot1qDot1qTagging", - "1": "dot1qConfigurableAcceptableFrameTypes", - "2": "dot1qIngressFiltering" - } - }, - "index": null, - "value": [ - "dot1dPortCapabilitiesEntry", - 1 - ] - }, - "dot1dPortPriorityTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dPortPriorityEntry" - }, - "index": null, - "value": [ - "dot1dPriority", - 1 - ] - }, - "dot1dPortPriorityEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dPortPriorityEntry" - }, - "index": "dot1dBasePortEntry", - "value": [ - "dot1dPortPriorityTable", - 1 - ] - }, - "Dot1dPortPriorityEntry": { - "tp": "SEQUENCE" - }, - "dot1dPortDefaultUserPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dPortPriorityEntry", - 1 - ] - }, - "dot1dPortNumTrafficClasses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dPortPriorityEntry", - 2 - ] - }, - "dot1dUserPriorityRegenTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dUserPriorityRegenEntry" - }, - "index": null, - "value": [ - "dot1dPriority", - 2 - ] - }, - "dot1dUserPriorityRegenEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dUserPriorityRegenEntry" - }, - "index": [ - "dot1dBasePort", - "dot1dUserPriority" - ], - "value": [ - "dot1dUserPriorityRegenTable", - 1 - ] - }, - "Dot1dUserPriorityRegenEntry": { - "tp": "SEQUENCE" - }, - "dot1dUserPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dUserPriorityRegenEntry", - 1 - ] - }, - "dot1dRegenUserPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dUserPriorityRegenEntry", - 2 - ] - }, - "dot1dTrafficClassTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dTrafficClassEntry" - }, - "index": null, - "value": [ - "dot1dPriority", - 3 - ] - }, - "dot1dTrafficClassEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dTrafficClassEntry" - }, - "index": [ - "dot1dBasePort", - "dot1dTrafficClassPriority" - ], - "value": [ - "dot1dTrafficClassTable", - 1 - ] - }, - "Dot1dTrafficClassEntry": { - "tp": "SEQUENCE" - }, - "dot1dTrafficClassPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dTrafficClassEntry", - 1 - ] - }, - "dot1dTrafficClass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dTrafficClassEntry", - 2 - ] - }, - "dot1dPortOutboundAccessPriorityTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dPortOutboundAccessPriorityEntry" - }, - "index": null, - "value": [ - "dot1dPriority", - 4 - ] - }, - "dot1dPortOutboundAccessPriorityEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dPortOutboundAccessPriorityEntry" - }, - "index": [ - "dot1dBasePort", - "dot1dRegenUserPriority" - ], - "value": [ - "dot1dPortOutboundAccessPriorityTable", - 1 - ] - }, - "Dot1dPortOutboundAccessPriorityEntry": { - "tp": "SEQUENCE" - }, - "dot1dPortOutboundAccessPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dot1dPortOutboundAccessPriorityEntry", - 1 - ] - }, - "dot1dPortGarpTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dPortGarpEntry" - }, - "index": null, - "value": [ - "dot1dGarp", - 1 - ] - }, - "dot1dPortGarpEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dPortGarpEntry" - }, - "index": "dot1dBasePortEntry", - "value": [ - "dot1dPortGarpTable", - 1 - ] - }, - "Dot1dPortGarpEntry": { - "tp": "SEQUENCE" - }, - "dot1dPortGarpJoinTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeInterval" - }, - "index": null, - "value": [ - "dot1dPortGarpEntry", - 1 - ] - }, - "dot1dPortGarpLeaveTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeInterval" - }, - "index": null, - "value": [ - "dot1dPortGarpEntry", - 2 - ] - }, - "dot1dPortGarpLeaveAllTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeInterval" - }, - "index": null, - "value": [ - "dot1dPortGarpEntry", - 3 - ] - }, - "dot1dPortGmrpTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dPortGmrpEntry" - }, - "index": null, - "value": [ - "dot1dGmrp", - 1 - ] - }, - "dot1dPortGmrpEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dPortGmrpEntry" - }, - "index": "dot1dBasePortEntry", - "value": [ - "dot1dPortGmrpTable", - 1 - ] - }, - "Dot1dPortGmrpEntry": { - "tp": "SEQUENCE" - }, - "dot1dPortGmrpStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EnabledStatus" - }, - "index": null, - "value": [ - "dot1dPortGmrpEntry", - 1 - ] - }, - "dot1dPortGmrpFailedRegistrations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dPortGmrpEntry", - 2 - ] - }, - "dot1dPortGmrpLastPduOrigin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "dot1dPortGmrpEntry", - 3 - ] - }, - "dot1dTpHCPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dTpHCPortEntry" - }, - "index": null, - "value": [ - "dot1dTp", - 5 - ] - }, - "dot1dTpHCPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dTpHCPortEntry" - }, - "index": [ - "dot1dTpPort" - ], - "value": [ - "dot1dTpHCPortTable", - 1 - ] - }, - "Dot1dTpHCPortEntry": { - "tp": "SEQUENCE" - }, - "dot1dTpHCPortInFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "dot1dTpHCPortEntry", - 1 - ] - }, - "dot1dTpHCPortOutFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "dot1dTpHCPortEntry", - 2 - ] - }, - "dot1dTpHCPortInDiscards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "dot1dTpHCPortEntry", - 3 - ] - }, - "dot1dTpPortOverflowTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dot1dTpPortOverflowEntry" - }, - "index": null, - "value": [ - "dot1dTp", - 6 - ] - }, - "dot1dTpPortOverflowEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dot1dTpPortOverflowEntry" - }, - "index": [ - "dot1dTpPort" - ], - "value": [ - "dot1dTpPortOverflowTable", - 1 - ] - }, - "Dot1dTpPortOverflowEntry": { - "tp": "SEQUENCE" - }, - "dot1dTpPortInOverflowFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTpPortOverflowEntry", - 1 - ] - }, - "dot1dTpPortOutOverflowFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTpPortOverflowEntry", - 2 - ] - }, - "dot1dTpPortInOverflowDiscards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "dot1dTpPortOverflowEntry", - 3 - ] - }, - "pBridgeConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeMIB", - 2 - ] - }, - "pBridgeGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeConformance", - 1 - ] - }, - "pBridgeCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pBridgeConformance", - 2 - ] - }, - "pBridgeExtCapGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 1 - ] - }, - "pBridgeDeviceGmrpGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 2 - ] - }, - "pBridgeDevicePriorityGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 3 - ] - }, - "pBridgeDefaultPriorityGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 4 - ] - }, - "pBridgeRegenPriorityGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 5 - ] - }, - "pBridgePriorityGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 6 - ] - }, - "pBridgeAccessPriorityGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 7 - ] - }, - "pBridgePortGarpGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 8 - ] - }, - "pBridgePortGmrpGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 9 - ] - }, - "pBridgeHCPortGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 10 - ] - }, - "pBridgePortOverflowGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "pBridgeGroups", - 11 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/PAN-COMMON-MIB.json b/mibs/parsed/PAN-COMMON-MIB.json deleted file mode 100644 index 41b4ddb..0000000 --- a/mibs/parsed/PAN-COMMON-MIB.json +++ /dev/null @@ -1,3233 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString", - "TruthValue", - "TimeStamp" - ] - ], - [ - "PAN-GLOBAL-TC", - [ - "TcChassisType" - ] - ], - [ - "PAN-GLOBAL-REG", - [ - "panModules", - "panCommonMib" - ] - ] - ], - "panCommonMibModule": { - "tp": "MODULE-IDENTITY", - "value": [ - "panModules", - 3 - ] - }, - "FloatValue": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": "d-2" - }, - "panCommonConfMib": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonMib", - 1 - ] - }, - "panCommonObjs": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonMib", - 2 - ] - }, - "panCommonEvents": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonMib", - 3 - ] - }, - "panSys": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 1 - ] - }, - "panChassis": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 2 - ] - }, - "panSession": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 3 - ] - }, - "panMgmt": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 4 - ] - }, - "panGlobalProtect": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 5 - ] - }, - "panLogCollector": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 6 - ] - }, - "panDeviceLogging": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 7 - ] - }, - "panSSLBroker": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonObjs", - 8 - ] - }, - "panGlobalCounters": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panSys", - 19 - ] - }, - "panSysSwVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 1 - ] - }, - "panSysHwVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 2 - ] - }, - "panSysSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 3 - ] - }, - "panSysTimeZoneOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSys", - 4 - ] - }, - "panSysDaylightSaving": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "panSys", - 5 - ] - }, - "panSysVpnClientVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 6 - ] - }, - "panSysAppVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 7 - ] - }, - "panSysAvVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 8 - ] - }, - "panSysThreatVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 9 - ] - }, - "panSysUrlFilteringVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 10 - ] - }, - "panSysHAState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 11 - ] - }, - "panSysHAPeerState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 12 - ] - }, - "panSysHAMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 13 - ] - }, - "panSysUrlFilteringDatabase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 14 - ] - }, - "panSysGlobalProtectClientVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 15 - ] - }, - "panSysOpswatDatafileVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 16 - ] - }, - "panSysWildfireVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 17 - ] - }, - "panSysWildfirePrivateCloudVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 18 - ] - }, - "panSysAppReleaseDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 20 - ] - }, - "panSysThreatReleaseDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 21 - ] - }, - "panSysAvReleaseDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 22 - ] - }, - "panSysWfReleaseDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSys", - 23 - ] - }, - "panChassisType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panChassis", - 1 - ] - }, - "panMSeriesMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panChassis", - 2 - ] - }, - "panSessionUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 1 - ] - }, - "panSessionMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 2 - ] - }, - "panSessionActive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 3 - ] - }, - "panSessionActiveTcp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 4 - ] - }, - "panSessionActiveUdp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 5 - ] - }, - "panSessionActiveICMP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 6 - ] - }, - "panSessionActiveSslProxy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 7 - ] - }, - "panSessionSslProxyUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSession", - 8 - ] - }, - "panVsysTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanVsysEntry" - }, - "index": null, - "value": [ - "panSession", - 9 - ] - }, - "panZoneTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanZoneEntry" - }, - "index": null, - "value": [ - "panSession", - 10 - ] - }, - "panIfTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanIfEntry" - }, - "index": null, - "value": [ - "panSession", - 11 - ] - }, - "panVsysEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanVsysEntry" - }, - "index": [ - "panVsysId" - ], - "value": [ - "panVsysTable", - 1 - ] - }, - "PanVsysEntry": { - "tp": "SEQUENCE" - }, - "panVsysId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 1 - ] - }, - "panVsysName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panVsysEntry", - 2 - ] - }, - "panVsysSessionUtilizationPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 3 - ] - }, - "panVsysActiveSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 4 - ] - }, - "panVsysMaxSessions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 5 - ] - }, - "panVsysActiveTcpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 6 - ] - }, - "panVsysActiveUdpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 7 - ] - }, - "panVsysActiveOtherIpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panVsysEntry", - 8 - ] - }, - "panMgmtPanoramaConnected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panMgmt", - 1 - ] - }, - "panMgmtPanorama2Connected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panMgmt", - 2 - ] - }, - "panGPGatewayUtilization": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panGlobalProtect", - 1 - ] - }, - "panGPGWUtilizationPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panGPGatewayUtilization", - 1 - ] - }, - "panGPGWUtilizationMaxTunnels": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panGPGatewayUtilization", - 2 - ] - }, - "panGPGWUtilizationActiveTunnels": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panGPGatewayUtilization", - 3 - ] - }, - "panDeviceLoggingLogRate": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panDeviceLogging", - 1 - ] - }, - "panDeviceLoggingLogTypeStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanDeviceLoggingLogTypeStatEntry" - }, - "index": null, - "value": [ - "panDeviceLogging", - 2 - ] - }, - "panDeviceLoggingLogUsageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanDeviceLoggingLogUsageEntry" - }, - "index": null, - "value": [ - "panDeviceLogging", - 3 - ] - }, - "panDeviceLoggingExtFwd": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panDeviceLogging", - 4 - ] - }, - "panDeviceLoggingCollectorConnectionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanDeviceLoggingCollectorConnectionEntry" - }, - "index": null, - "value": [ - "panDeviceLogging", - 5 - ] - }, - "panSSLBrokerStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanSSLBrokerStatsEntry" - }, - "index": null, - "value": [ - "panSSLBroker", - 1 - ] - }, - "panSSLBrokerStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanSSLBrokerStatsEntry" - }, - "index": [ - "index" - ], - "value": [ - "panSSLBrokerStatsTable", - 1 - ] - }, - "PanSSLBrokerStatsEntry": { - "tp": "SEQUENCE" - }, - "index": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSSLBrokerStatsEntry", - 1 - ] - }, - "chainName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panSSLBrokerStatsEntry", - 2 - ] - }, - "avgLatency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSSLBrokerStatsEntry", - 3 - ] - }, - "sessionCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panSSLBrokerStatsEntry", - 4 - ] - }, - "panDeviceIncomingLogRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panDeviceLoggingLogRate", - 1 - ] - }, - "panDeviceWriteLogRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panDeviceLoggingLogRate", - 2 - ] - }, - "panDeviceLoggingLogTypeStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanDeviceLoggingLogTypeStatEntry" - }, - "index": [ - "panDeviceLoggingDevice", - "panDeviceLoggingLogType" - ], - "value": [ - "panDeviceLoggingLogTypeStatTable", - 1 - ] - }, - "PanDeviceLoggingLogTypeStatEntry": { - "tp": "SEQUENCE" - }, - "panDeviceLoggingDevice": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 1 - ] - }, - "panDeviceLoggingDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 2 - ] - }, - "panDeviceLoggingLogType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 3 - ] - }, - "panDeviceLoggingLogLastLogCreated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 4 - ] - }, - "panDeviceLoggingLogLastLogFwded": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 5 - ] - }, - "panDeviceLoggingLogLastSeqNumberFwded": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 6 - ] - }, - "panDeviceLoggingLogLastSeqNumberAck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 7 - ] - }, - "panDeviceLoggingLogTotalLogsFwded": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingLogTypeStatEntry", - 8 - ] - }, - "panDeviceLoggingLogUsageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanDeviceLoggingLogUsageEntry" - }, - "index": [ - "panDeviceLoggingLogUsageLogType" - ], - "value": [ - "panDeviceLoggingLogUsageTable", - 1 - ] - }, - "PanDeviceLoggingLogUsageEntry": { - "tp": "SEQUENCE" - }, - "panDeviceLoggingLogUsageLogType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingLogUsageEntry", - 1 - ] - }, - "panDeviceLoggingDiskUsageDiskSpace": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingLogUsageEntry", - 2 - ] - }, - "panDeviceLoggingDiskUsageRetention": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panDeviceLoggingLogUsageEntry", - 3 - ] - }, - "panDeviceLoggingDiskQuotaPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingLogUsageEntry", - 4 - ] - }, - "panDeviceLoggingDiskQuota": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingLogUsageEntry", - 5 - ] - }, - "panDeviceLoggingExtFwdCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwd", - 1 - ] - }, - "panDeviceLoggingExtFwdQueueDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwd", - 2 - ] - }, - "panDeviceLoggingExtFwdStatsSendErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwd", - 3 - ] - }, - "panDeviceLoggingExtFwdStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanDeviceLoggingExtFwdStatsEntry" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwd", - 4 - ] - }, - "panDeviceLoggingExtFwdStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanDeviceLoggingExtFwdStatsEntry" - }, - "index": [ - "panDeviceLoggingExtFwdStatsTableType" - ], - "value": [ - "panDeviceLoggingExtFwdStatsTable", - 1 - ] - }, - "PanDeviceLoggingExtFwdStatsEntry": { - "tp": "SEQUENCE" - }, - "panDeviceLoggingExtFwdStatsTableType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwdStatsEntry", - 1 - ] - }, - "panDeviceLoggingExtFwdStatsTableEnqueueCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwdStatsEntry", - 2 - ] - }, - "panDeviceLoggingExtFwdStatsTableSendCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwdStatsEntry", - 3 - ] - }, - "panDeviceLoggingExtFwdStatsTableDropCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwdStatsEntry", - 4 - ] - }, - "panDeviceLoggingExtFwdStatsTableQueueDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwdStatsEntry", - 5 - ] - }, - "panDeviceLoggingExtFwdStatsTable1minAvgSendRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panDeviceLoggingExtFwdStatsEntry", - 6 - ] - }, - "panDeviceLoggingCollectorConnectionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanDeviceLoggingCollectorConnectionEntry" - }, - "index": [ - "panDeviceLoggingCollectorConnectionIP" - ], - "value": [ - "panDeviceLoggingCollectorConnectionTable", - 1 - ] - }, - "PanDeviceLoggingCollectorConnectionEntry": { - "tp": "SEQUENCE" - }, - "panDeviceLoggingCollectorConnectionType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingCollectorConnectionEntry", - 1 - ] - }, - "panDeviceLoggingCollectorConnectionIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingCollectorConnectionEntry", - 2 - ] - }, - "panDeviceLoggingCollectorConnectionHostname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingCollectorConnectionEntry", - 3 - ] - }, - "panDeviceLoggingCollectorConnectionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panDeviceLoggingCollectorConnectionEntry", - 4 - ] - }, - "panLcStat": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panLogCollector", - 1 - ] - }, - "panLcLogRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcStat", - 1 - ] - }, - "panLcLogDuration": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panLcStat", - 2 - ] - }, - "panLcDiskUsageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLcDiskUsageEntry" - }, - "index": null, - "value": [ - "panLcStat", - 3 - ] - }, - "panLcLogUsageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLcLogUsageEntry" - }, - "index": null, - "value": [ - "panLcStat", - 4 - ] - }, - "panLocalLogUsageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLocalLogUsageEntry" - }, - "index": null, - "value": [ - "panLcStat", - 5 - ] - }, - "panLcDiskIOPSTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLcDiskIOPSEntry" - }, - "index": null, - "value": [ - "panLcStat", - 6 - ] - }, - "panLcLogDurationTraffic": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 1 - ] - }, - "panLcLogDurationConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 2 - ] - }, - "panLcLogDurationSystem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 3 - ] - }, - "panLcLogDurationThreat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 4 - ] - }, - "panLcLogDurationAppstat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 5 - ] - }, - "panLcLogDurationTrsum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 6 - ] - }, - "panLcLogDurationThsum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 7 - ] - }, - "panLcLogDurationEvent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 8 - ] - }, - "panLcLogDurationAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 9 - ] - }, - "panLcLogDurationHipmatch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 10 - ] - }, - "panLcLogDurationUserid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogDuration", - 11 - ] - }, - "panLcDiskUsageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLcDiskUsageEntry" - }, - "index": [ - "panLcDiskUsageId" - ], - "value": [ - "panLcDiskUsageTable", - 1 - ] - }, - "PanLcDiskUsageEntry": { - "tp": "SEQUENCE" - }, - "panLocalLogUsageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLocalLogUsageEntry" - }, - "index": [ - "panLcLogType" - ], - "value": [ - "panLocalLogUsageTable", - 1 - ] - }, - "PanLocalLogUsageEntry": { - "tp": "SEQUENCE" - }, - "panLocalLogType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLocalLogUsageEntry", - 1 - ] - }, - "panLocalDiskUsageDiskSpace": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLocalLogUsageEntry", - 2 - ] - }, - "panLocalDiskUsageRetention": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLocalLogUsageEntry", - 3 - ] - }, - "panLocalDiskQuota": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLocalLogUsageEntry", - 4 - ] - }, - "panLocalDiskQuotaPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLocalLogUsageEntry", - 5 - ] - }, - "panLcDiskIOPSEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLcDiskIOPSEntry" - }, - "index": [ - "panLcDiskIOPSId" - ], - "value": [ - "panLcDiskIOPSTable", - 1 - ] - }, - "PanLcDiskIOPSEntry": { - "tp": "SEQUENCE" - }, - "panLcDiskIOPSId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcDiskIOPSEntry", - 1 - ] - }, - "panLcDiskIORead5min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcDiskIOPSEntry", - 2 - ] - }, - "panLcDiskIOWrite5min": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcDiskIOPSEntry", - 3 - ] - }, - "panLcLogUsageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLcLogUsageEntry" - }, - "index": [ - "panLcLogType" - ], - "value": [ - "panLcLogUsageTable", - 1 - ] - }, - "PanLcLogUsageEntry": { - "tp": "SEQUENCE" - }, - "panLcLogType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLogUsageEntry", - 1 - ] - }, - "panLcDiskUsageDiskSpacePct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLogUsageEntry", - 2 - ] - }, - "panLcDiskUsageRetention": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLogUsageEntry", - 3 - ] - }, - "panLcDiskQuotaPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLogUsageEntry", - 4 - ] - }, - "panLcDiskUsageId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "panLcDiskUsageEntry", - 1 - ] - }, - "panLcDiskUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcDiskUsageEntry", - 2 - ] - }, - "panLcIsRedundancyMember": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "panLogCollector", - 2 - ] - }, - "panLcLogFwdStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLcLogFwdStatsEntry" - }, - "index": null, - "value": [ - "panLogCollector", - 3 - ] - }, - "panLcLogFwdStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLcLogFwdStatsEntry" - }, - "index": [ - "panLcLogFwdStatsTableType" - ], - "value": [ - "panLcLogFwdStatsTable", - 1 - ] - }, - "PanLcLogFwdStatsEntry": { - "tp": "SEQUENCE" - }, - "panLcLogFwdStatsTableType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLogFwdStatsEntry", - 1 - ] - }, - "panLcLogFwdStatsTableEnqueueCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcLogFwdStatsEntry", - 2 - ] - }, - "panLcLogFwdStatsTableSendCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcLogFwdStatsEntry", - 3 - ] - }, - "panLcLogFwdStatsTableDropCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcLogFwdStatsEntry", - 4 - ] - }, - "panLcLogFwdStatsTableQueueDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcLogFwdStatsEntry", - 5 - ] - }, - "panLcLoggingConnectedDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLcLoggingConnectedDeviceEntry" - }, - "index": null, - "value": [ - "panLogCollector", - 4 - ] - }, - "panLcLoggingConnectedDeviceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLcLoggingConnectedDeviceEntry" - }, - "index": [ - "panLcLoggingConnectedDeviceConnectionId" - ], - "value": [ - "panLcLoggingConnectedDeviceTable", - 1 - ] - }, - "PanLcLoggingConnectedDeviceEntry": { - "tp": "SEQUENCE" - }, - "panLcLoggingConnectedDeviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLoggingConnectedDeviceEntry", - 1 - ] - }, - "panLcLoggingConnectedDeviceConnectionId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLoggingConnectedDeviceEntry", - 2 - ] - }, - "panLcLoggingConnectedIdLogRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panLcLoggingConnectedDeviceEntry", - 3 - ] - }, - "panLcLoggingDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PanLcLoggingDeviceEntry" - }, - "index": null, - "value": [ - "panLogCollector", - 5 - ] - }, - "panLcLoggingDeviceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanLcLoggingDeviceEntry" - }, - "index": [ - "panLcLoggingDeviceConnectionId", - "panLcLoggingLogType" - ], - "value": [ - "panLcLoggingDeviceTable", - 1 - ] - }, - "PanLcLoggingDeviceEntry": { - "tp": "SEQUENCE" - }, - "panLcLoggingDeviceConnectionId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLoggingDeviceEntry", - 1 - ] - }, - "panLcLoggingLogType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panLcLoggingDeviceEntry", - 2 - ] - }, - "panLcLogTypeLastLogRecd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "panLcLoggingDeviceEntry", - 3 - ] - }, - "panLcLogTypeLastSeqNumRecd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panLcLoggingDeviceEntry", - 4 - ] - }, - "panLcLogTypeLastLogGen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "panLcLoggingDeviceEntry", - 5 - ] - }, - "panCommonEventObjs": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonEvents", - 1 - ] - }, - "panCommonEventEvents": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonEvents", - 2 - ] - }, - "panCommonEventEventsV2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panCommonEventEvents", - 0 - ] - }, - "panCommonEventDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panCommonEventObjs", - 1 - ] - }, - "panAhoSw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 1 - ] - }, - "panDfaSw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 2 - ] - }, - "panFlowHostServiceAllow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 3 - ] - }, - "panHaPathmonSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 4 - ] - }, - "panAhoFpga": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 5 - ] - }, - "panDfaFpga": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 6 - ] - }, - "panFpgaPkt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCounters", - 7 - ] - }, - "panGlobalCountersDOSCounters": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panGlobalCounters", - 8 - ] - }, - "panGlobalCountersDropCounters": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panGlobalCounters", - 9 - ] - }, - "panGlobalCountersIPFragmentationCounters": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panGlobalCounters", - 10 - ] - }, - "panGlobalCountersTCPState": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panGlobalCounters", - 11 - ] - }, - "panGlobalCountersTunnelInspect": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panGlobalCounters", - 12 - ] - }, - "panFlowDosAgMaxSessLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 1 - ] - }, - "panFlowDosBlkNumEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 2 - ] - }, - "panFlowDosClMaxSessLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 3 - ] - }, - "panFlowDosClSyncookieAckErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 4 - ] - }, - "panFlowDosClSyncookieAckRcv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 5 - ] - }, - "panFlowDosClSyncookieBlkDur": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 6 - ] - }, - "panFlowDosClSyncookieMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 7 - ] - }, - "panFlowDosClSyncookieSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 8 - ] - }, - "panFlowMeterVsysThrottle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 9 - ] - }, - "panFlowPolicyDeny": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 10 - ] - }, - "panFlowPolicyNat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 11 - ] - }, - "panFlowScanDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 12 - ] - }, - "panFlowDosDropIpBlocked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 13 - ] - }, - "panFlowDosRedIcmp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 14 - ] - }, - "panFlowDosRedIcmp6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 15 - ] - }, - "panFlowDosRedIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 16 - ] - }, - "panFlowDosRedTcp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 17 - ] - }, - "panFlowDosRedUdp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 18 - ] - }, - "panFlowDosRuleAgBlkDur": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 19 - ] - }, - "panFlowDosRuleAgRedAct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 20 - ] - }, - "panFlowDosRuleAgRedMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 21 - ] - }, - "panFlowDosRuleDeny": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 22 - ] - }, - "panFlowDosRuleDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 23 - ] - }, - "panFlowDosRuleDropAggr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 24 - ] - }, - "panFlowDosRuleDropClBlkDur": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 25 - ] - }, - "panFlowDosRuleDropClRedAct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 26 - ] - }, - "panFlowDosRuleDropClRedMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 27 - ] - }, - "panFlowDosRuleDropClassified": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 28 - ] - }, - "panFlowDosSyncookieBlkDur": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 29 - ] - }, - "panFlowDosSyncookieMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 30 - ] - }, - "panFlowDosZoneRedAct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 31 - ] - }, - "panFlowDosZoneRedMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 32 - ] - }, - "panFlowDosBlkSwEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 33 - ] - }, - "panFlowDosBlkHwEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 34 - ] - }, - "panFlowDosSyncookieNotTcpSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 35 - ] - }, - "panFlowDosSyncookieNotTcpSynAck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 36 - ] - }, - "panFlowDosPfIpspoof": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 37 - ] - }, - "panFlowDosPfIpfrag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 38 - ] - }, - "panFlowDosPfPing0": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 39 - ] - }, - "panFlowDosPfIcmpfrag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 40 - ] - }, - "panFlowDosPfIcmplpkt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 41 - ] - }, - "panFlowDosPfIcmperr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 42 - ] - }, - "panFlowDosPfNoreplyttl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 43 - ] - }, - "panFlowDosPfNoreplyneedfrag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 44 - ] - }, - "panFlowDosPfStrictsource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 45 - ] - }, - "panFlowDosPfLoosesource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 46 - ] - }, - "panFlowDosPfTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 47 - ] - }, - "panFlowDosPfRecordroute": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 48 - ] - }, - "panFlowDosPfSecurity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 49 - ] - }, - "panFlowDosPfSatnetid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 50 - ] - }, - "panFlowDosPfUnknown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 51 - ] - }, - "panFlowDosPfBadoption": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 52 - ] - }, - "panFlowDosPfTcpoverlappingmismatch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 53 - ] - }, - "panFlowDosPfStrictip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 54 - ] - }, - "panFlowDosPfTcpsplithandshake": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 55 - ] - }, - "panFlowDosPfTcpsyndata": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 56 - ] - }, - "panFlowDosPfTcpsynackdata": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 57 - ] - }, - "panFlowDosIp6Route0": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 58 - ] - }, - "panFlowDosIp6Route1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 59 - ] - }, - "panFlowDosIp6Route3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 60 - ] - }, - "panFlowDosIp6Route4to252": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 61 - ] - }, - "panFlowDosIp6Route253": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 62 - ] - }, - "panFlowDosIp6Route254": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 63 - ] - }, - "panFlowDosIp6Route255": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 64 - ] - }, - "panFlowDosIp6Ip4cmpt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 65 - ] - }, - "panFlowDosIp6Acast": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 66 - ] - }, - "panFlowDosIp6OptionsInvalidIPv6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 67 - ] - }, - "panFlowDosIp6Icmpv6ErrorInvalid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 68 - ] - }, - "panFlowDosIp6NeedlessIpv6FragHdr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 69 - ] - }, - "panFlowDosIp6RsvdSet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 70 - ] - }, - "panFlowDosIPv6ExtHdrHopByHop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 71 - ] - }, - "panFlowDosip6IPv6ExtHdrRouting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 72 - ] - }, - "panFlowDosIp6IPv6ExtHdrDestOpt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 73 - ] - }, - "panFlowDosPbpDrop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 74 - ] - }, - "panFlowDosCurrSessIncrFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 75 - ] - }, - "panFlowDosCurrSessDecrFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDOSCounters", - 76 - ] - }, - "panFlowFwdL3TtlZero": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 1 - ] - }, - "panFlowMeterHostThrottle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 2 - ] - }, - "panFlowHostServiceDeny": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 3 - ] - }, - "panFlowHostServiceUnknown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 4 - ] - }, - "panPktAllocFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 5 - ] - }, - "panPktAllocFailureCos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 6 - ] - }, - "panSessionDiscard": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersDropCounters", - 7 - ] - }, - "panFlowIpfragFragErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersIPFragmentationCounters", - 1 - ] - }, - "panFlowIpfragRecv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersIPFragmentationCounters", - 2 - ] - }, - "panTcpAllocWqeFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 1 - ] - }, - "panTcpDeny": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 2 - ] - }, - "panTcpDropOutOfWnd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 3 - ] - }, - "panTcpDropPacket": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 4 - ] - }, - "panFlowActionClose": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 5 - ] - }, - "panFlowActionReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 6 - ] - }, - "panFlowTcpNonSyn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 7 - ] - }, - "panTcpExceedSegLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTCPState", - 8 - ] - }, - "panFlowTciGreDecapSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 1 - ] - }, - "panFlowTciGreDecapFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 2 - ] - }, - "panFlowTciGreDecapUnknown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 3 - ] - }, - "panFlowTciIpsecDecapSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 4 - ] - }, - "panFlowTciIpsecDecapFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 5 - ] - }, - "panFlowTciIpsecDecapUnknown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 6 - ] - }, - "panFlowTciGtpDecapSuccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 7 - ] - }, - "panFlowTciGtpDecapFailed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 8 - ] - }, - "panFlowTciGtpDecapUnknown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "panGlobalCountersTunnelInspect", - 9 - ] - }, - "panIfEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanIfEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "panIfTable", - 1 - ] - }, - "PanIfEntry": { - "tp": "SEQUENCE" - }, - "ifIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panIfEntry", - 1 - ] - }, - "ifDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panIfEntry", - 2 - ] - }, - "panIfActiveTcpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panIfEntry", - 3 - ] - }, - "panIfActiveUdpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panIfEntry", - 4 - ] - }, - "panIfActiveOtherIpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panIfEntry", - 5 - ] - }, - "panZoneEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PanZoneEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "panZoneTable", - 1 - ] - }, - "PanZoneEntry": { - "tp": "SEQUENCE" - }, - "panZoneName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "panZoneEntry", - 1 - ] - }, - "panZoneActiveTcpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panZoneEntry", - 2 - ] - }, - "panZoneActiveUdpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panZoneEntry", - 3 - ] - }, - "panZoneActiveOtherIpCps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "panZoneEntry", - 4 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/PAN-GLOBAL-REG.json b/mibs/parsed/PAN-GLOBAL-REG.json deleted file mode 100644 index e5ee4f7..0000000 --- a/mibs/parsed/PAN-GLOBAL-REG.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-IDENTITY", - "enterprises" - ] - ] - ], - "panGlobalRegModule": { - "tp": "MODULE-IDENTITY", - "value": [ - "panModules", - 1 - ] - }, - "panRoot": { - "tp": "OBJECT-IDENTITY", - "value": [ - "enterprises", - 25461 - ] - }, - "panReg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panRoot", - 1 - ] - }, - "panModules": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panReg", - 1 - ] - }, - "panMibs": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panRoot", - 2 - ] - }, - "panCommonMib": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panMibs", - 1 - ] - }, - "panSpecificMib": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panMibs", - 2 - ] - }, - "panProductsMibs": { - "tp": "OBJECT-IDENTITY", - "value": [ - "panMibs", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/PAN-GLOBAL-TC.json b/mibs/parsed/PAN-GLOBAL-TC.json deleted file mode 100644 index 10593ca..0000000 --- a/mibs/parsed/PAN-GLOBAL-TC.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION" - ] - ], - [ - "PAN-GLOBAL-REG", - [ - "panModules" - ] - ] - ], - "panGlobalTcModule": { - "tp": "MODULE-IDENTITY", - "value": [ - "panModules", - 2 - ] - }, - "TcAppaname": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": "64a" - }, - "TcChassisType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - } -} \ No newline at end of file diff --git a/mibs/parsed/PowerNet-MIB.json b/mibs/parsed/PowerNet-MIB.json deleted file mode 100644 index 9c8e9f7..0000000 --- a/mibs/parsed/PowerNet-MIB.json +++ /dev/null @@ -1,75326 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "enterprises", - "IpAddress", - "Gauge", - "TimeTicks" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC-1215", - [ - "TRAP-TYPE" - ] - ], - [ - "SNMPv2-SMI", - [ - "Integer32", - "Unsigned32" - ] - ] - ], - "apc": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 318 - ] - }, - "products": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apc", - 1 - ] - }, - "apcmgmt": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apc", - 2 - ] - }, - "hardware": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 1 - ] - }, - "software": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 2 - ] - }, - "system": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 3 - ] - }, - "experimental": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "products", - 4 - ] - }, - "mconfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apcmgmt", - 1 - ] - }, - "mcontrol": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apcmgmt", - 2 - ] - }, - "mtrapargs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apcmgmt", - 3 - ] - }, - "mfiletransfer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apcmgmt", - 4 - ] - }, - "mconfigClock": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mconfig", - 6 - ] - }, - "mfiletransferStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mfiletransfer", - 1 - ] - }, - "mfiletransferConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mfiletransfer", - 2 - ] - }, - "mfiletransferControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mfiletransfer", - 3 - ] - }, - "mfiletransferConfigSettings": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mfiletransferConfig", - 1 - ] - }, - "mfiletransferConfigTFTP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mfiletransferConfig", - 2 - ] - }, - "mfiletransferConfigFTP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mfiletransferConfig", - 3 - ] - }, - "ups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 1 - ] - }, - "measureUps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 2 - ] - }, - "miniSNMPadapter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 3 - ] - }, - "masterswitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 4 - ] - }, - "masterswitchVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 5 - ] - }, - "masterswitchMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 6 - ] - }, - "dcDM3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 7 - ] - }, - "automaticTransferSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 8 - ] - }, - "dc2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 9 - ] - }, - "environmentalMonitor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 10 - ] - }, - "netlock": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 11 - ] - }, - "rPDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 12 - ] - }, - "airConditioners": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 13 - ] - }, - "rARU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 14 - ] - }, - "xPDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 15 - ] - }, - "battMan": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 16 - ] - }, - "xATS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 17 - ] - }, - "generator": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 18 - ] - }, - "consolePortServer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 19 - ] - }, - "accessControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 20 - ] - }, - "apcLocalDisplay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 21 - ] - }, - "isxModularDistribution": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 22 - ] - }, - "isxModularPdu": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 23 - ] - }, - "universalInputOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 25 - ] - }, - "rPDU2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 26 - ] - }, - "cooling": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hardware", - 27 - ] - }, - "powerNetSubAgent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "software", - 1 - ] - }, - "struxureWareOperations": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "software", - 2 - ] - }, - "powerChuteNetworkShutdown": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "software", - 3 - ] - }, - "struxureWareOperationsStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "struxureWareOperations", - 1 - ] - }, - "powerNetSoftwareSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerNetSubAgent", - 1 - ] - }, - "powerNetSoftwareConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerNetSubAgent", - 2 - ] - }, - "backUPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 1 - ] - }, - "smartUPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 2 - ] - }, - "matrixUPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 3 - ] - }, - "masterSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 4 - ] - }, - "symmetraUPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 5 - ] - }, - "dp100E": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 6 - ] - }, - "dp300E": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 7 - ] - }, - "monitors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 8 - ] - }, - "redundantSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 9 - ] - }, - "dcPower": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 10 - ] - }, - "automaticXferSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 11 - ] - }, - "netLock": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 12 - ] - }, - "symmetra3PhaseUPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 13 - ] - }, - "networkAir": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 14 - ] - }, - "infraStruXurePDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 15 - ] - }, - "ais5000UPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 16 - ] - }, - "smartUPS3Phase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 17 - ] - }, - "battManager": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 18 - ] - }, - "infraStruXureATS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 19 - ] - }, - "conPortServ": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 20 - ] - }, - "gutor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 21 - ] - }, - "accControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 22 - ] - }, - "symmetraPX": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 23 - ] - }, - "isxModDistribution": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 24 - ] - }, - "isxServers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 25 - ] - }, - "smartUPS2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 27 - ] - }, - "galaxy": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 28 - ] - }, - "eps": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 30 - ] - }, - "pcns": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "system", - 31 - ] - }, - "battManIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 1 - ] - }, - "battManSystemCalib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 2 - ] - }, - "battManUnitCalib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 3 - ] - }, - "battManStringCalib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 4 - ] - }, - "battManBatteryCalib": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 5 - ] - }, - "battManConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 6 - ] - }, - "battManAlarm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 7 - ] - }, - "battManSystemStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 8 - ] - }, - "battManStringStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 9 - ] - }, - "battManBatteryStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 10 - ] - }, - "battManInputContactStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 11 - ] - }, - "battManControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 12 - ] - }, - "battManTestResults": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 13 - ] - }, - "battManUnitStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "battMan", - 14 - ] - }, - "xPDUIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 1 - ] - }, - "xPDUDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 2 - ] - }, - "xPDUACMonitoringPoint": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 3 - ] - }, - "xPDUCircuitBreakers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 4 - ] - }, - "xPDUInputContacts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 5 - ] - }, - "xPDUOutputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 6 - ] - }, - "xPDUMiscGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDU", - 7 - ] - }, - "xPDUMainInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUACMonitoringPoint", - 1 - ] - }, - "xPDUBypassInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUACMonitoringPoint", - 2 - ] - }, - "xPDUUPSInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUACMonitoringPoint", - 3 - ] - }, - "xPDUSystemOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUACMonitoringPoint", - 4 - ] - }, - "xPDUGroundMonitorPoint": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUACMonitoringPoint", - 5 - ] - }, - "xPDUSystemBreakers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUCircuitBreakers", - 1 - ] - }, - "xPDUBranchBreakers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xPDUCircuitBreakers", - 2 - ] - }, - "xATSIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 1 - ] - }, - "xATSDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 2 - ] - }, - "xATSSwitch": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 3 - ] - }, - "xATSACMonitoringPoint": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 4 - ] - }, - "xATSTesting": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 5 - ] - }, - "xATSInputContacts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 6 - ] - }, - "xATSOutputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 7 - ] - }, - "xATSMisc": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATS", - 8 - ] - }, - "xATSSwitchStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSSwitch", - 1 - ] - }, - "xATSSwitchSettings": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSSwitch", - 2 - ] - }, - "xATSSwitchTimers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSSwitch", - 3 - ] - }, - "xATSSwitchBlockMap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSSwitch", - 4 - ] - }, - "xATSSwitchStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSSwitch", - 5 - ] - }, - "xATSSource1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSACMonitoringPoint", - 1 - ] - }, - "xATSSource2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSACMonitoringPoint", - 2 - ] - }, - "xATSSystemOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSACMonitoringPoint", - 3 - ] - }, - "xATSTestingStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSTesting", - 1 - ] - }, - "xATSTestingResults": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSTesting", - 2 - ] - }, - "xATSTestingSchedule": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSTesting", - 3 - ] - }, - "xATSTestingSimulatePowerFail": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSTesting", - 4 - ] - }, - "xATSGenerator": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "generator", - 1 - ] - }, - "xATSGeneratorIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 1 - ] - }, - "xATSGeneratorStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 2 - ] - }, - "xATSGeneratorAdvStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 3 - ] - }, - "xATSGeneratorOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 4 - ] - }, - "xATSGeneratorSettings": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 5 - ] - }, - "xATSGeneratorService": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 6 - ] - }, - "xATSGeneratorFuelSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xATSGenerator", - 7 - ] - }, - "cpsAP930x": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "consolePortServer", - 1 - ] - }, - "cpsAP930xSys": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930x", - 1 - ] - }, - "cpsAP930xConf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930x", - 2 - ] - }, - "cpsAP930xInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930x", - 3 - ] - }, - "cpsAP930xAdm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930x", - 4 - ] - }, - "smartUPS250": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 1 - ] - }, - "smartUPS400": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 2 - ] - }, - "smartUPS600": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 3 - ] - }, - "smartUPS900": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 4 - ] - }, - "smartUPS1250": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 5 - ] - }, - "smartUPS2000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 6 - ] - }, - "smartUPS450": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 7 - ] - }, - "smartUPS700": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 8 - ] - }, - "smartUPS1000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 9 - ] - }, - "smartUPS1400": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 10 - ] - }, - "smartUPS2200": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 11 - ] - }, - "smartUPS3000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 12 - ] - }, - "smartUPS5000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 13 - ] - }, - "smartUPS7500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 14 - ] - }, - "smartUPS10000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 15 - ] - }, - "smartUPS1500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 16 - ] - }, - "smartUPS3000DSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 17 - ] - }, - "smartUPS5000DSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 18 - ] - }, - "smartUPS8000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS", - 19 - ] - }, - "matrixUPS3000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "matrixUPS", - 1 - ] - }, - "matrixUPS5000": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "matrixUPS", - 2 - ] - }, - "masterSwitchV1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 1 - ] - }, - "masterSwitchV2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 2 - ] - }, - "masterSwitchVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 3 - ] - }, - "masterSwitchMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 4 - ] - }, - "masterSwitchrPDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 5 - ] - }, - "masterSwitchrPDU2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 6 - ] - }, - "masterSwitchsPDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 7 - ] - }, - "masterSwitchrPDUB": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterSwitch", - 8 - ] - }, - "symmetraUPS4kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraUPS", - 1 - ] - }, - "symmetraUPS8kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraUPS", - 2 - ] - }, - "symmetraUPS12kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraUPS", - 3 - ] - }, - "symmetraUPS16kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraUPS", - 4 - ] - }, - "environmental": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "monitors", - 1 - ] - }, - "environmentalMgtSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "monitors", - 2 - ] - }, - "emu2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "monitors", - 3 - ] - }, - "mem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "monitors", - 4 - ] - }, - "dm3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcPower", - 1 - ] - }, - "dcmim2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcPower", - 2 - ] - }, - "symmetra3PhaseUPS40kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetra3PhaseUPS", - 1 - ] - }, - "symmetra3PhaseUPS60kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetra3PhaseUPS", - 2 - ] - }, - "symmetra3PhaseUPS80kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetra3PhaseUPS", - 3 - ] - }, - "symmetra3PhaseUPS20kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetra3PhaseUPS", - 4 - ] - }, - "airFMSeries": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 1 - ] - }, - "rackAirRemovalUnit": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 2 - ] - }, - "airPASeries": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 3 - ] - }, - "airIRSC100Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 4 - ] - }, - "airIRRC100Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 5 - ] - }, - "airIRRP100Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 6 - ] - }, - "airIRRP500Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 7 - ] - }, - "airIRRD100Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 8 - ] - }, - "airInRoomPerimeter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 9 - ] - }, - "airACRC300Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 10 - ] - }, - "airLESeries": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 11 - ] - }, - "airIRRDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 12 - ] - }, - "airEcoBreeze": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 13 - ] - }, - "airLELSeries": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 14 - ] - }, - "airACRC600Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 15 - ] - }, - "airACRD600Series": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 16 - ] - }, - "airEconomizer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "networkAir", - 17 - ] - }, - "ais5000UPS10kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 1 - ] - }, - "ais5000UPS20kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 2 - ] - }, - "ais5000UPS30kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 3 - ] - }, - "ais5000UPS40kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 4 - ] - }, - "ais5000UPS60kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 5 - ] - }, - "ais5000UPS80kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 6 - ] - }, - "ais5000UPS100kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ais5000UPS", - 7 - ] - }, - "smartUPS3Phase10kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS3Phase", - 1 - ] - }, - "smartUPS3Phase15kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS3Phase", - 2 - ] - }, - "smartUPS3Phase20kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS3Phase", - 3 - ] - }, - "smartUPS3Phase30kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS3Phase", - 4 - ] - }, - "smartUPS3Phase40kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "smartUPS3Phase", - 5 - ] - }, - "galaxy7000UPS200kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 1 - ] - }, - "galaxy7000UPS250kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 2 - ] - }, - "galaxy7000UPS300kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 3 - ] - }, - "galaxy7000UPS400kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 4 - ] - }, - "galaxy7000UPS500kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 5 - ] - }, - "galaxy7000SSC800kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 6 - ] - }, - "galaxy7000SSC1200kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 7 - ] - }, - "galaxy7000SSC2000kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 8 - ] - }, - "galaxy300UPS10kVA33": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 9 - ] - }, - "galaxy300UPS15kVA33": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 10 - ] - }, - "galaxy300UPS20kVA33": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 11 - ] - }, - "galaxy300UPS30kVA33": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 12 - ] - }, - "galaxy300UPS40kVA33": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 13 - ] - }, - "galaxy300UPS10kVA31": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 14 - ] - }, - "galaxy300UPS15kVA31": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 15 - ] - }, - "galaxy300UPS20kVA31": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 16 - ] - }, - "galaxy300UPS30kVA31": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 17 - ] - }, - "galaxy5000UPS20KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 18 - ] - }, - "galaxy5000UPS30KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 19 - ] - }, - "galaxy5000UPS40KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 20 - ] - }, - "galaxy5000UPS50KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 21 - ] - }, - "galaxy5000UPS60KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 22 - ] - }, - "galaxy5000UPS80KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 23 - ] - }, - "galaxy5000UPS100KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 24 - ] - }, - "galaxy5000UPS120KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 25 - ] - }, - "galaxy5000UPS130KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 26 - ] - }, - "galaxy5500UPS20KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 27 - ] - }, - "galaxy5500UPS30KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 28 - ] - }, - "galaxy5500UPS40KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 29 - ] - }, - "galaxy5500UPS50KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 30 - ] - }, - "galaxy5500UPS60KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 31 - ] - }, - "galaxy5500UPS80KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 32 - ] - }, - "galaxy5500UPS100KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 33 - ] - }, - "galaxy5500UPS120KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 34 - ] - }, - "galaxy5500UPS130KVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 35 - ] - }, - "galaxyVMUPS50kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 36 - ] - }, - "galaxyVMUPS60kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 37 - ] - }, - "galaxyVMUPS80kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 38 - ] - }, - "galaxyVMUPS90kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 39 - ] - }, - "galaxyVMUPS100kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 40 - ] - }, - "galaxyVMUPS110kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 41 - ] - }, - "galaxyVMUPS120kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 42 - ] - }, - "galaxyVMUPS130kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 43 - ] - }, - "galaxyVMUPS160kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 44 - ] - }, - "galaxyVMUPS180kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 45 - ] - }, - "galaxyVMUPS200kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 46 - ] - }, - "galaxyVMUPS225kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 47 - ] - }, - "galaxy9000UPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 48 - ] - }, - "galaxy9000SSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 49 - ] - }, - "galaxy9000UPSWithSSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 50 - ] - }, - "galaxy9000FreqConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 51 - ] - }, - "galaxyVXUPS625kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 56 - ] - }, - "galaxyVXUPS750kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 57 - ] - }, - "galaxyVXUPS1000kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 58 - ] - }, - "galaxyVXUPS1250kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 59 - ] - }, - "galaxyVXUPS1500kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 60 - ] - }, - "galaxyVXUPS500kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "galaxy", - 63 - ] - }, - "eps6000UPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 1 - ] - }, - "eps6000SSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 2 - ] - }, - "eps6000UPSWithSSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 3 - ] - }, - "eps6000FreqConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 4 - ] - }, - "eps7000UPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 5 - ] - }, - "eps7000SSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 6 - ] - }, - "eps7000UPSWithSSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 7 - ] - }, - "eps7000FreqConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 8 - ] - }, - "eps8000UPS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 9 - ] - }, - "eps8000SSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 10 - ] - }, - "eps8000UPSWithSSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 11 - ] - }, - "eps8000FreqConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "eps", - 12 - ] - }, - "pcns4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcns", - 1 - ] - }, - "pcnsIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerChuteNetworkShutdown", - 1 - ] - }, - "pcnsNetworking": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerChuteNetworkShutdown", - 2 - ] - }, - "pcnsNMC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerChuteNetworkShutdown", - 3 - ] - }, - "pcnsEvents": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerChuteNetworkShutdown", - 4 - ] - }, - "pcnsShutdown": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerChuteNetworkShutdown", - 5 - ] - }, - "pcnsAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "powerChuteNetworkShutdown", - 6 - ] - }, - "pcnsLoggingLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "powerChuteNetworkShutdown", - 7 - ] - }, - "conPortServAP930x": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "conPortServ", - 1 - ] - }, - "gutorPEW": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "gutor", - 1 - ] - }, - "gutorPDW": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "gutor", - 2 - ] - }, - "gutorWEW": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "gutor", - 3 - ] - }, - "gutorWDW": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "gutor", - 4 - ] - }, - "gutorSDC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "gutor", - 5 - ] - }, - "upsIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 1 - ] - }, - "upsBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 2 - ] - }, - "upsInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 3 - ] - }, - "upsOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 4 - ] - }, - "upsConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 5 - ] - }, - "upsControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 6 - ] - }, - "upsTest": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 7 - ] - }, - "upsComm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 8 - ] - }, - "upsPhase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 9 - ] - }, - "upsSyncCtrlGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 10 - ] - }, - "upsState": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 11 - ] - }, - "upsOutletGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 12 - ] - }, - "upsDiagnostics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 13 - ] - }, - "upsParallelSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 14 - ] - }, - "upsPhysicalLayout": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 15 - ] - }, - "upsIntegratedATS": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 16 - ] - }, - "upsDCOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 17 - ] - }, - "upsIntegratedUIO": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ups", - 18 - ] - }, - "upsBasicIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsIdent", - 1 - ] - }, - "upsAdvIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsIdent", - 2 - ] - }, - "upsBasicBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsBattery", - 1 - ] - }, - "upsAdvBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsBattery", - 2 - ] - }, - "upsHighPrecBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsBattery", - 3 - ] - }, - "upsBasicInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsInput", - 1 - ] - }, - "upsAdvInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsInput", - 2 - ] - }, - "upsHighPrecInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsInput", - 3 - ] - }, - "upsBasicOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsOutput", - 1 - ] - }, - "upsAdvOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsOutput", - 2 - ] - }, - "upsHighPrecOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsOutput", - 3 - ] - }, - "upsBasicConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsConfig", - 1 - ] - }, - "upsAdvConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsConfig", - 2 - ] - }, - "upsBasicControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsControl", - 1 - ] - }, - "upsAdvControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsControl", - 2 - ] - }, - "upsBasicTest": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsTest", - 1 - ] - }, - "upsAdvTest": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsTest", - 2 - ] - }, - "upsPhaseResetValues": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsPhase", - 1 - ] - }, - "upsPhaseInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsPhase", - 2 - ] - }, - "upsPhaseOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsPhase", - 3 - ] - }, - "upsSyncCtrlGroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsSyncCtrlGroup", - 1 - ] - }, - "upsSyncCtrlGroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsSyncCtrlGroup", - 2 - ] - }, - "upsBasicState": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsState", - 1 - ] - }, - "upsAdvState": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsState", - 2 - ] - }, - "upsOutletGroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsOutletGroups", - 1 - ] - }, - "upsOutletGroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsOutletGroups", - 2 - ] - }, - "upsOutletGroupControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsOutletGroups", - 3 - ] - }, - "upsDiagnosticIM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 1 - ] - }, - "upsDiagnosticPowerModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 2 - ] - }, - "upsDiagnosticBatteries": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 3 - ] - }, - "upsDiagnosticSubsystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 4 - ] - }, - "upsDiagnosticExternalDevices": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 5 - ] - }, - "upsDiagnosticComBus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 6 - ] - }, - "upsDiagnosticPowerCabinet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnostics", - 7 - ] - }, - "upsDiagSwitchGear": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnosticExternalDevices", - 1 - ] - }, - "upsDiagMCCBBox": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnosticExternalDevices", - 2 - ] - }, - "upsDiagTransformer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnosticExternalDevices", - 3 - ] - }, - "upsDiagFlyWheel": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDiagnosticExternalDevices", - 4 - ] - }, - "upsOutputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsIntegratedUIO", - 1 - ] - }, - "mUpsEnviron": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "measureUps", - 1 - ] - }, - "mUpsContact": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "measureUps", - 2 - ] - }, - "serialPort": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "miniSNMPadapter", - 1 - ] - }, - "serialPort1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "serialPort", - 1 - ] - }, - "serialPort2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "serialPort", - 2 - ] - }, - "serialPort2Config": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "serialPort2", - 1 - ] - }, - "serialPort2Control": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "serialPort2", - 2 - ] - }, - "sPDUIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitch", - 1 - ] - }, - "sPDUMasterControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitch", - 2 - ] - }, - "sPDUMasterConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitch", - 3 - ] - }, - "sPDUOutletControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitch", - 4 - ] - }, - "sPDUOutletConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitch", - 5 - ] - }, - "sPDUIdentVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 1 - ] - }, - "sPDUMasterControlVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 2 - ] - }, - "sPDUMasterConfigVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 3 - ] - }, - "sPDUMasterStatusVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 4 - ] - }, - "sPDUOutletControlVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 5 - ] - }, - "sPDUOutletConfigVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 6 - ] - }, - "sPDUOutletStatusVM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchVM", - 7 - ] - }, - "sPDUIdentMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 1 - ] - }, - "sPDUMasterControlMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 2 - ] - }, - "sPDUMasterConfigMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 3 - ] - }, - "sPDUMasterStatusMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 4 - ] - }, - "sPDUOutletControlMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 5 - ] - }, - "sPDUOutletConfigMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 6 - ] - }, - "sPDUOutletStatusMSP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "masterswitchMSP", - 7 - ] - }, - "sPDUOutletConfigMSPall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sPDUOutletConfigMSP", - 1 - ] - }, - "sPDUOutletConfigMSPgs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sPDUOutletConfigMSP", - 2 - ] - }, - "sPDUOutletConfigMSPannun": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sPDUOutletConfigMSP", - 3 - ] - }, - "sPDUOutletConfigMSPmups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sPDUOutletConfigMSP", - 4 - ] - }, - "rPDUIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU", - 1 - ] - }, - "rPDULoad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU", - 2 - ] - }, - "rPDUOutlet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU", - 3 - ] - }, - "rPDUPowerSupply": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU", - 4 - ] - }, - "rPDUStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU", - 5 - ] - }, - "rPDULoadDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDULoad", - 1 - ] - }, - "rPDULoadPhaseConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDULoad", - 2 - ] - }, - "rPDULoadStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDULoad", - 3 - ] - }, - "rPDULoadBankConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDULoad", - 4 - ] - }, - "rPDUOutletDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUOutlet", - 1 - ] - }, - "rPDUOutletPhase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUOutlet", - 2 - ] - }, - "rPDUOutletControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUOutlet", - 3 - ] - }, - "rPDUOutletConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUOutlet", - 4 - ] - }, - "rPDUOutletStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUOutlet", - 5 - ] - }, - "rPDUOutletBank": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUOutlet", - 6 - ] - }, - "rPDUPowerSupplyDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDUPowerSupply", - 1 - ] - }, - "dm3Ident": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcDM3", - 1 - ] - }, - "dm3Config": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcDM3", - 2 - ] - }, - "dm3Status": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcDM3", - 3 - ] - }, - "dm3IdentSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Ident", - 1 - ] - }, - "dm3ConfigSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Config", - 1 - ] - }, - "dm3ConfigLVD": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Config", - 2 - ] - }, - "dm3ConfigBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Config", - 3 - ] - }, - "dm3ConfigPowerModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Config", - 4 - ] - }, - "dm3ConfigRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Config", - 5 - ] - }, - "dm3ConfigDistribution": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Config", - 6 - ] - }, - "dm3ConfigRectifier": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigPowerModules", - 1 - ] - }, - "dm3ConfigConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigPowerModules", - 2 - ] - }, - "dm3ConfigRectThresh": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigRectifier", - 1 - ] - }, - "dm3ConfigRectAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigRectifier", - 2 - ] - }, - "dm3ConfigConvThresh": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigConverter", - 1 - ] - }, - "dm3ConfigConvAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigConverter", - 2 - ] - }, - "dm3ConfigOutputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigRelays", - 1 - ] - }, - "dm3ConfigInputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigRelays", - 2 - ] - }, - "dm3ConfigBreakers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigDistribution", - 1 - ] - }, - "dm3ConfigFuses": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3ConfigDistribution", - 2 - ] - }, - "dm3StatusSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 1 - ] - }, - "dm3StatusAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 2 - ] - }, - "dm3StatusBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 3 - ] - }, - "dm3StatusOEM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 4 - ] - }, - "dm3StatusLVD": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 5 - ] - }, - "dm3StatusPowerModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 6 - ] - }, - "dm3StatusRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 7 - ] - }, - "dm3StatusDistribution": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3Status", - 8 - ] - }, - "dm3StatusRectifier": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3StatusPowerModules", - 1 - ] - }, - "dm3StatusConverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3StatusPowerModules", - 2 - ] - }, - "dm3StatusOutputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3StatusRelays", - 1 - ] - }, - "dm3StatusInputRelays": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3StatusRelays", - 2 - ] - }, - "dm3StatusBreakers": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3StatusDistribution", - 1 - ] - }, - "dm3StatusFuses": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dm3StatusDistribution", - 2 - ] - }, - "atsIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "automaticTransferSwitch", - 1 - ] - }, - "atsCalibration": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "automaticTransferSwitch", - 2 - ] - }, - "atsControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "automaticTransferSwitch", - 3 - ] - }, - "atsConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "automaticTransferSwitch", - 4 - ] - }, - "atsStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "automaticTransferSwitch", - 5 - ] - }, - "atsCalibrationInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsCalibration", - 1 - ] - }, - "atsCalibrationPowerSupply": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsCalibration", - 2 - ] - }, - "atsCalibrationOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsCalibration", - 3 - ] - }, - "atsStatusDeviceStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsStatus", - 1 - ] - }, - "atsStatusResetValues": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsStatus", - 2 - ] - }, - "atsStatusInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsStatus", - 3 - ] - }, - "atsStatusOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "atsStatus", - 4 - ] - }, - "dcmim2Ident": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dc2", - 1 - ] - }, - "dcmim2Control": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dc2", - 2 - ] - }, - "dcmim2Config": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dc2", - 3 - ] - }, - "dcmim2Status": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dc2", - 4 - ] - }, - "dcmim2IdentSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Ident", - 1 - ] - }, - "dcmim2ControlSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Control", - 1 - ] - }, - "dcmim2ConfigSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Config", - 1 - ] - }, - "dcmim2ConfigBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Config", - 2 - ] - }, - "dcmim2ConfigLVD": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Config", - 3 - ] - }, - "dcmim2StatusSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Status", - 1 - ] - }, - "dcmim2StatusRectifier": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Status", - 2 - ] - }, - "dcmim2StatusBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Status", - 3 - ] - }, - "dcmim2StatusLVD": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Status", - 4 - ] - }, - "dcmim2StatusAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "dcmim2Status", - 5 - ] - }, - "external": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "environmentalMonitor", - 1 - ] - }, - "integrated": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "environmentalMonitor", - 2 - ] - }, - "envMgtSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "environmentalMonitor", - 3 - ] - }, - "modEnvMgr": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "environmentalMonitor", - 4 - ] - }, - "envWireless": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "environmentalMonitor", - 5 - ] - }, - "emIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "external", - 1 - ] - }, - "emConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "external", - 2 - ] - }, - "emStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "external", - 3 - ] - }, - "iemIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "integrated", - 1 - ] - }, - "iemConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "integrated", - 2 - ] - }, - "iemStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "integrated", - 3 - ] - }, - "emsIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 1 - ] - }, - "emsOutputRelayControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 2 - ] - }, - "emsOutletControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 3 - ] - }, - "emsSensorControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 4 - ] - }, - "emsAlarmDeviceControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 5 - ] - }, - "emsConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 6 - ] - }, - "emsProbeConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 7 - ] - }, - "emsInputContactConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 8 - ] - }, - "emsOutputRelayConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 9 - ] - }, - "emsOutletConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 10 - ] - }, - "emsSensorConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 11 - ] - }, - "emsStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 12 - ] - }, - "emsProbeStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 13 - ] - }, - "emsInputContactStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 14 - ] - }, - "emsOutputRelayStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 15 - ] - }, - "emsOutletStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 16 - ] - }, - "emsAlarmDeviceStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 17 - ] - }, - "emsSensorStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 18 - ] - }, - "emsInputStateSensorConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 19 - ] - }, - "emsInputStateSensorStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envMgtSystem", - 20 - ] - }, - "memModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 1 - ] - }, - "memSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 2 - ] - }, - "memInputs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 3 - ] - }, - "memOutputs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 4 - ] - }, - "memOutlets": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 5 - ] - }, - "memBeacons": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 6 - ] - }, - "memInputStateSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "modEnvMgr", - 7 - ] - }, - "wirelessSensorStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envWireless", - 1 - ] - }, - "wirelessSensorPodStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envWireless", - 2 - ] - }, - "wirelessSensorConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envWireless", - 3 - ] - }, - "wirelessSensorPodConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "envWireless", - 4 - ] - }, - "nlIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netlock", - 1 - ] - }, - "nlStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "netlock", - 2 - ] - }, - "airFM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airConditioners", - 1 - ] - }, - "airFMIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFM", - 1 - ] - }, - "airFMStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFM", - 2 - ] - }, - "airFMGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFM", - 3 - ] - }, - "airFMSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFM", - 4 - ] - }, - "airFMModule": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFM", - 5 - ] - }, - "airFMAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFM", - 6 - ] - }, - "airFMGroupSysRoles": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMGroup", - 4 - ] - }, - "airFMGroupCfg": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMGroup", - 5 - ] - }, - "airFMGroupLoadShare": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMGroup", - 6 - ] - }, - "airFMGroupFailover": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMGroup", - 7 - ] - }, - "airFMGroupFailoverSys": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMGroupFailover", - 1 - ] - }, - "airFMGroupFailoverMod": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMGroupFailover", - 2 - ] - }, - "airFMSysStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 1 - ] - }, - "airFMSysDemands": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 2 - ] - }, - "airFMSysSetup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 3 - ] - }, - "airFMSysConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 4 - ] - }, - "airFMSysCooling": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 5 - ] - }, - "airFMSysHumidify": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 6 - ] - }, - "airFMSysDehumidify": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 7 - ] - }, - "airFMSysReheat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 8 - ] - }, - "airFMSysThresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 9 - ] - }, - "airFMSysInputs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 10 - ] - }, - "airFMSysOutputs": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 11 - ] - }, - "airFMSysAlarmMap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSystem", - 12 - ] - }, - "airFMSysAlarmMapSys": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSysAlarmMap", - 1 - ] - }, - "airFMSysAlarmMapMainMod": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSysAlarmMap", - 2 - ] - }, - "airFMSysAlarmMapExpMod1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSysAlarmMap", - 3 - ] - }, - "airFMSysAlarmMapExpMod2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSysAlarmMap", - 4 - ] - }, - "airFMSysAlarmMapInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSysAlarmMap", - 5 - ] - }, - "airFMSysAlarmMapOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMSysAlarmMap", - 6 - ] - }, - "airFMModIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 1 - ] - }, - "airFMModStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 2 - ] - }, - "airFMModProperties": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 3 - ] - }, - "airFMModCooling": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 4 - ] - }, - "airFMModHumidity": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 5 - ] - }, - "airFMModBlower1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 6 - ] - }, - "airFMModBlower2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 7 - ] - }, - "airFMModRunHours": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 8 - ] - }, - "airFMModServIntervals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 9 - ] - }, - "airFMModServIntResets": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airFMModule", - 10 - ] - }, - "airPA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airConditioners", - 2 - ] - }, - "airPAIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airPA", - 1 - ] - }, - "airPAStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airPA", - 2 - ] - }, - "airIR": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airConditioners", - 3 - ] - }, - "airIRAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIR", - 1 - ] - }, - "airIRRC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIR", - 2 - ] - }, - "airIRRP": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIR", - 3 - ] - }, - "airIRSC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIR", - 4 - ] - }, - "airIRRCGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRC", - 1 - ] - }, - "airIRRCUnit": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRC", - 2 - ] - }, - "airIRRCGroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCGroup", - 1 - ] - }, - "airIRRCGroupSetpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCGroup", - 2 - ] - }, - "airIRRCGroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCGroup", - 3 - ] - }, - "airIRRCUnitIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCUnit", - 1 - ] - }, - "airIRRCUnitStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCUnit", - 2 - ] - }, - "airIRRCUnitRunHours": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCUnit", - 3 - ] - }, - "airIRRCUnitServiceIntervals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCUnit", - 4 - ] - }, - "airIRRCUnitThresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCUnit", - 5 - ] - }, - "airIRRCUnitConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRCUnit", - 6 - ] - }, - "airIRRP100": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP", - 1 - ] - }, - "airIRRP500": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP", - 2 - ] - }, - "airIRRP100Group": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100", - 1 - ] - }, - "airIRRP100Unit": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100", - 2 - ] - }, - "airIRRP100GroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Group", - 1 - ] - }, - "airIRRP100GroupSetpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Group", - 2 - ] - }, - "airIRRP100GroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Group", - 3 - ] - }, - "airIRRP100UnitIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Unit", - 1 - ] - }, - "airIRRP100UnitStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Unit", - 2 - ] - }, - "airIRRP100UnitRunHours": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Unit", - 3 - ] - }, - "airIRRP100UnitServiceIntervals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Unit", - 4 - ] - }, - "airIRRP100UnitThresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Unit", - 5 - ] - }, - "airIRRP100UnitConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP100Unit", - 6 - ] - }, - "airIRRP500Group": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500", - 1 - ] - }, - "airIRRP500Unit": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500", - 2 - ] - }, - "airIRRP500GroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Group", - 1 - ] - }, - "airIRRP500GroupSetpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Group", - 2 - ] - }, - "airIRRP500GroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Group", - 3 - ] - }, - "airIRRP500UnitIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Unit", - 1 - ] - }, - "airIRRP500UnitStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Unit", - 2 - ] - }, - "airIRRP500UnitRunHours": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Unit", - 3 - ] - }, - "airIRRP500UnitServiceIntervals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Unit", - 4 - ] - }, - "airIRRP500UnitThresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Unit", - 5 - ] - }, - "airIRRP500UnitConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRRP500Unit", - 6 - ] - }, - "airIRSCUnit": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSC", - 1 - ] - }, - "airIRSCUnitIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 1 - ] - }, - "airIRSCUnitStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 2 - ] - }, - "airIRSCUnitRunHours": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 3 - ] - }, - "airIRSCUnitServiceIntervals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 4 - ] - }, - "airIRSCUnitThresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 5 - ] - }, - "airIRSCUnitSetpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 6 - ] - }, - "airIRSCUnitConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCUnit", - 7 - ] - }, - "airIRSCGroup": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSC", - 2 - ] - }, - "airIRSCGroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCGroup", - 1 - ] - }, - "airIRSCGroupSetpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCGroup", - 2 - ] - }, - "airIRSCGroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRSCGroup", - 3 - ] - }, - "airIRGen2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airConditioners", - 4 - ] - }, - "airIRG2Ident": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 1 - ] - }, - "airIRG2Group": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 2 - ] - }, - "airIRG2Alarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 3 - ] - }, - "airIRG2RC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 4 - ] - }, - "airIRG2RD": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 5 - ] - }, - "airIRG2SC": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 6 - ] - }, - "airIRG2RA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen2", - 7 - ] - }, - "airIRG2GroupStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2Group", - 1 - ] - }, - "airIRG2GroupSetpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2Group", - 2 - ] - }, - "airIRG2GroupConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2Group", - 3 - ] - }, - "airIRG2RDType1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RD", - 1 - ] - }, - "airIRG2RDType2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RD", - 2 - ] - }, - "airIRG2RDT2Status": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RDType2", - 1 - ] - }, - "airIRG2RDT2RunHours": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RDType2", - 2 - ] - }, - "airIRG2RDT2ServiceIntervals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RDType2", - 3 - ] - }, - "airIRG2RDT2Thresholds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RDType2", - 4 - ] - }, - "airIRG2RDT2Setpoints": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RDType2", - 5 - ] - }, - "airIRG2RDT2Config": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRG2RDType2", - 6 - ] - }, - "airInRoom": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airConditioners", - 5 - ] - }, - "airIRmIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airInRoom", - 1 - ] - }, - "airIRmAlarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airInRoom", - 2 - ] - }, - "airIRmPerimeter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airInRoom", - 3 - ] - }, - "airIRmPmCommon1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 2 - ] - }, - "airIRmPmCommon2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 3 - ] - }, - "airIRmPmCommon3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 4 - ] - }, - "airIRmPmCommon4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 5 - ] - }, - "airIRmPmCommon5": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 6 - ] - }, - "airIRmPmCompressor1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 7 - ] - }, - "airIRmPmCompressor2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 8 - ] - }, - "airIRmPmSuctionValve1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 9 - ] - }, - "airIRmPmSuctionValve2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 10 - ] - }, - "airIRmPmEheating1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 11 - ] - }, - "airIRmPmEheating2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 12 - ] - }, - "airIRmPmEheating3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 13 - ] - }, - "airIRmPmEheating4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 14 - ] - }, - "airIRmPmGECWvalve": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 15 - ] - }, - "airIRmPmGvalve": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 16 - ] - }, - "airIRmPmDrycooler1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 17 - ] - }, - "airIRmPmDrycooler2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 18 - ] - }, - "airIRmPmDrycooler3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 19 - ] - }, - "airIRmPmDrycooler4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 20 - ] - }, - "airIRmPmPump1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 21 - ] - }, - "airIRmPmPump2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 22 - ] - }, - "airIRmPmPump3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 23 - ] - }, - "airIRmPmPump4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 24 - ] - }, - "airIRmPmHotgasHeating": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 25 - ] - }, - "airIRmPmPWWHeating": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 26 - ] - }, - "airIRmPmHumidifier1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 27 - ] - }, - "airIRmPmHumidifier2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 28 - ] - }, - "airIRmPmDehumidification": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 31 - ] - }, - "airIRmPmFan1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 32 - ] - }, - "airIRmPmFan2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 33 - ] - }, - "airIRmPmFan3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 34 - ] - }, - "airIRmPmLouver1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 35 - ] - }, - "airIRmPmLouver2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 36 - ] - }, - "airIRmPmLouver3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 37 - ] - }, - "airIRmPmAuxAlarm1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 38 - ] - }, - "airIRmPmAuxAlarm2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 39 - ] - }, - "airIRmPmAuxAlarm3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 40 - ] - }, - "airIRmPmAuxAlarm4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 41 - ] - }, - "airIRmPmAuxAlarm5": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 42 - ] - }, - "airIRmPmAlarmBits": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 43 - ] - }, - "airIRmPmMyZone": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 44 - ] - }, - "airIRmPmGlobalZoneData": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPerimeter", - 45 - ] - }, - "airIRGen3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airConditioners", - 6 - ] - }, - "airIRG3Ident": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen3", - 1 - ] - }, - "airIRG3Group": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen3", - 2 - ] - }, - "airIRG3Alarms": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen3", - 3 - ] - }, - "airIRG3RDU": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen3", - 4 - ] - }, - "airIRG3CM": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRGen3", - 5 - ] - }, - "rARUIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rARU", - 1 - ] - }, - "rARUConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rARU", - 2 - ] - }, - "rARUStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rARU", - 3 - ] - }, - "rARUFanStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rARU", - 4 - ] - }, - "rARUPower": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rARU", - 5 - ] - }, - "rARUSensors": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rARU", - 6 - ] - }, - "accessPX": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessControl", - 1 - ] - }, - "accessPXIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 1 - ] - }, - "accessPXConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 2 - ] - }, - "accessPXConfigFront": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 3 - ] - }, - "accessPXStatusFront": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 4 - ] - }, - "accessPXConfigRear": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 5 - ] - }, - "accessPXStatusRear": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 6 - ] - }, - "accessPXConfigBeacon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 7 - ] - }, - "accessPXStatusBeacon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accessPX", - 8 - ] - }, - "apcLocalDisplayIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apcLocalDisplay", - 1 - ] - }, - "apcLocalDisplayConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "apcLocalDisplay", - 2 - ] - }, - "accPX": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "accControl", - 1 - ] - }, - "isxModularPduIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularPdu", - 1 - ] - }, - "isxModularPduDevice": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularPdu", - 2 - ] - }, - "isxModularPduStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularPdu", - 3 - ] - }, - "symmetraPx48kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraPX", - 1 - ] - }, - "symmetraPx160kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraPX", - 2 - ] - }, - "symmetraPx250kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraPX", - 3 - ] - }, - "symmetraPx500kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraPX", - 4 - ] - }, - "symmetraPx100kVA": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraPX", - 5 - ] - }, - "symmetraPxDisplay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "symmetraPX", - 6 - ] - }, - "isx24ModuleHalfRackPdu": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModDistribution", - 1 - ] - }, - "isx6ModuleRackPdu": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModDistribution", - 2 - ] - }, - "isxModularDistInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistribution", - 1 - ] - }, - "isxModularDistModules": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistribution", - 2 - ] - }, - "isxModularDistSubFeeds": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistribution", - 3 - ] - }, - "isxModularDistTotals": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistribution", - 4 - ] - }, - "isxModularDistSysVoltage": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistTotals", - 1 - ] - }, - "isxModularDistSysCurrent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistTotals", - 2 - ] - }, - "isxModularDistSysPower": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxModularDistTotals", - 3 - ] - }, - "isxcBasic": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxServers", - 1 - ] - }, - "isxcStandard": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxServers", - 2 - ] - }, - "isxcEnterprise": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxServers", - 3 - ] - }, - "isxcVirtual": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "isxServers", - 4 - ] - }, - "uioSensor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "universalInputOutput", - 1 - ] - }, - "uioInputContact": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "universalInputOutput", - 2 - ] - }, - "uioOutputRelay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "universalInputOutput", - 3 - ] - }, - "mconfigNumTrapReceivers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mconfig", - 1 - ] - }, - "mconfigTrapReceiverTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MconfigTrapReceiverEntry" - }, - "index": null, - "value": [ - "mconfig", - 2 - ] - }, - "mconfigTrapReceiverEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MconfigTrapReceiverEntry" - }, - "index": [ - "trapIndex" - ], - "value": [ - "mconfigTrapReceiverTable", - 1 - ] - }, - "MconfigTrapReceiverEntry": { - "tp": "SEQUENCE" - }, - "trapIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mconfigTrapReceiverEntry", - 1 - ] - }, - "receiverAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "mconfigTrapReceiverEntry", - 2 - ] - }, - "communityString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mconfigTrapReceiverEntry", - 3 - ] - }, - "severity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "information", - "2": "warning", - "3": "severe" - } - }, - "index": null, - "value": [ - "mconfigTrapReceiverEntry", - 4 - ] - }, - "acceptThisReceiver": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "mconfigTrapReceiverEntry", - 5 - ] - }, - "receiveTrapType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "powernet", - "2": "ietf", - "3": "both" - } - }, - "index": null, - "value": [ - "mconfigTrapReceiverEntry", - 6 - ] - }, - "mconfigBOOTPEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "mconfig", - 3 - ] - }, - "mconfigTFTPServerIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "mconfig", - 4 - ] - }, - "newCodeAuthentViaTFTP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "validNewAgentCodeImage", - "3": "sameAgentCodeImage", - "4": "invalidAgentCodeImage" - } - }, - "index": null, - "value": [ - "mconfig", - 5 - ] - }, - "mconfigClockDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mconfigClock", - 1 - ] - }, - "mconfigClockTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mconfigClock", - 2 - ] - }, - "mcontrolRestartAgent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "restartCurrentAgent", - "2": "continueCurrentAgent", - "3": "loadAndExecuteNewAgent", - "4": "restartWithoutAgent", - "5": "resetNetworkAndRestart", - "6": "resetNetworkLeaveModeAndRestart" - } - }, - "index": null, - "value": [ - "mcontrol", - 1 - ] - }, - "mtrapargsInteger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mtrapargs", - 1 - ] - }, - "mtrapargsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "mtrapargs", - 2 - ] - }, - "mtrapargsString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 3 - ] - }, - "mtrapargsGauge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mtrapargs", - 4 - ] - }, - "mtrapargsTimeTicks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "mtrapargs", - 5 - ] - }, - "mtrapargsInteger02": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mtrapargs", - 6 - ] - }, - "mtrapargsInteger03": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mtrapargs", - 7 - ] - }, - "mtrapargsIpAddress02": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "mtrapargs", - 8 - ] - }, - "mtrapargsIpAddress03": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "mtrapargs", - 9 - ] - }, - "mtrapargsString02": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 10 - ] - }, - "mtrapargsString03": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 11 - ] - }, - "mtrapargsGauge02": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mtrapargs", - 12 - ] - }, - "mtrapargsGauge03": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mtrapargs", - 13 - ] - }, - "mtrapargsTimeTicks02": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "mtrapargs", - 14 - ] - }, - "mtrapargsTimeTicks03": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "mtrapargs", - 15 - ] - }, - "mtrapargsString04": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 16 - ] - }, - "mtrapargsString05": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 17 - ] - }, - "mtrapargsInteger04": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mtrapargs", - 18 - ] - }, - "mtrapargsInteger05": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mtrapargs", - 19 - ] - }, - "mtrapargsString06": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 20 - ] - }, - "mtrapargsString07": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 21 - ] - }, - "mtrapargsString08": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mtrapargs", - 22 - ] - }, - "mtrapargsOctetString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 23 - ] - }, - "mtrapargsOctetString02": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 24 - ] - }, - "mtrapargsOctetString03": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 25 - ] - }, - "mtrapargsOctetString04": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 26 - ] - }, - "mtrapargsOctetString05": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 27 - ] - }, - "mtrapargsOctetString06": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 28 - ] - }, - "mtrapargsOctetString07": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 29 - ] - }, - "mtrapargsOctetString08": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "mtrapargs", - 30 - ] - }, - "mfiletransferStatusLastTransferResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lastFileTransferResultSuccessful", - "2": "lastFileTransferResultNotAvailable", - "3": "lastFileTransferResultFailureUnknown", - "4": "lastFileTransferResultFailureServerInaccessible", - "5": "lastFileTransferResultFailureServerAccessDenied", - "6": "lastFileTransferResultFailureFileNotFound", - "7": "lastFileTransferResultFailureFileTypeUnknown", - "8": "lastFileTransferResultFailureFileCorrupted" - } - }, - "index": null, - "value": [ - "mfiletransferStatus", - 1 - ] - }, - "mfiletransferConfigSettingsFilename": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mfiletransferConfigSettings", - 1 - ] - }, - "mfiletransferConfigTFTPServerAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mfiletransferConfigTFTP", - 1 - ] - }, - "mfiletransferConfigFTPServerAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mfiletransferConfigFTP", - 1 - ] - }, - "mfiletransferConfigFTPServerUser": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mfiletransferConfigFTP", - 2 - ] - }, - "mfiletransferConfigFTPServerPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mfiletransferConfigFTP", - 3 - ] - }, - "mfiletransferControlInitiateFileTransfer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "doNotInitiateFileTransfer", - "2": "initiateFileTransferDownloadViaTFTP", - "3": "initiateFileTransferDownloadViaFTP" - } - }, - "index": null, - "value": [ - "mfiletransferControl", - 1 - ] - }, - "battManIdentProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManIdent", - 1 - ] - }, - "battManIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManIdent", - 2 - ] - }, - "battManIdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManIdent", - 3 - ] - }, - "battManIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManIdent", - 4 - ] - }, - "battManIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManIdent", - 5 - ] - }, - "battManIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManIdent", - 6 - ] - }, - "battManOhmicValueCorrectionFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManSystemCalib", - 1 - ] - }, - "battManUnitCalibTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitCalib", - 1 - ] - }, - "battManUnitCalibTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManUnitCalibEntry" - }, - "index": null, - "value": [ - "battManUnitCalib", - 2 - ] - }, - "battManUnitCalibEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManUnitCalibEntry" - }, - "index": [ - "battManUnitCalibIndex" - ], - "value": [ - "battManUnitCalibTable", - 1 - ] - }, - "BattManUnitCalibEntry": { - "tp": "SEQUENCE" - }, - "battManUnitCalibIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitCalibEntry", - 1 - ] - }, - "battManUnitSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManUnitCalibEntry", - 2 - ] - }, - "battManBatteryVoltageZeroCalib": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitCalibEntry", - 3 - ] - }, - "battManBatteryVoltageSpanCalib": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitCalibEntry", - 4 - ] - }, - "battManStringCalibTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringCalib", - 1 - ] - }, - "battManStringCalibTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManStringCalibEntry" - }, - "index": null, - "value": [ - "battManStringCalib", - 2 - ] - }, - "battManStringCalibEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManStringCalibEntry" - }, - "index": [ - "battManStringCalibIndex" - ], - "value": [ - "battManStringCalibTable", - 1 - ] - }, - "BattManStringCalibEntry": { - "tp": "SEQUENCE" - }, - "battManStringCalibIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringCalibEntry", - 1 - ] - }, - "battManDCCurrentZeroCalib": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringCalibEntry", - 2 - ] - }, - "battManACCurrentZeroCalib": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringCalibEntry", - 3 - ] - }, - "battManProbeRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "amps1000", - "2": "amps500", - "3": "amps100", - "4": "amps200", - "5": "amps2000" - } - }, - "index": null, - "value": [ - "battManStringCalibEntry", - 4 - ] - }, - "battManString1BatteryCalibTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManBatteryCalib", - 1 - ] - }, - "battManString1BatteryCalibTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString1BatteryCalibEntry" - }, - "index": null, - "value": [ - "battManBatteryCalib", - 2 - ] - }, - "battManString1BatteryCalibEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString1BatteryCalibEntry" - }, - "index": [ - "battManString1BatteryCalibIndex" - ], - "value": [ - "battManString1BatteryCalibTable", - 1 - ] - }, - "BattManString1BatteryCalibEntry": { - "tp": "SEQUENCE" - }, - "battManString1BatteryCalibIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1BatteryCalibEntry", - 1 - ] - }, - "battManString1BatteryInterTierOhmicValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1BatteryCalibEntry", - 2 - ] - }, - "battManString2BatteryCalibTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManBatteryCalib", - 3 - ] - }, - "battManString2BatteryCalibTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString2BatteryCalibEntry" - }, - "index": null, - "value": [ - "battManBatteryCalib", - 4 - ] - }, - "battManString2BatteryCalibEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString2BatteryCalibEntry" - }, - "index": [ - "battManString2BatteryCalibIndex" - ], - "value": [ - "battManString2BatteryCalibTable", - 1 - ] - }, - "BattManString2BatteryCalibEntry": { - "tp": "SEQUENCE" - }, - "battManString2BatteryCalibIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2BatteryCalibEntry", - 1 - ] - }, - "battManString2BatteryInterTierOhmicValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2BatteryCalibEntry", - 2 - ] - }, - "battManConfigApplication": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "silcon", - "2": "other" - } - }, - "index": null, - "value": [ - "battManConfig", - 1 - ] - }, - "battManConfigBatteryChemistry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "leadAcid", - "2": "nickel-Cadmium" - } - }, - "index": null, - "value": [ - "battManConfig", - 2 - ] - }, - "battManConfigBatteryAHCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 3 - ] - }, - "battManConfigNumberofStrings": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 4 - ] - }, - "battManConfigBatteriesperString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 5 - ] - }, - "battManConfigCellsperBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "oneCell", - "2": "twoCells", - "4": "fourCells", - "6": "sixCells" - } - }, - "index": null, - "value": [ - "battManConfig", - 6 - ] - }, - "battManConfigMinCellVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 7 - ] - }, - "battManConfigMaxCellVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 8 - ] - }, - "battManConfigMaxPilotTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 9 - ] - }, - "battManConfigMaxPilotTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 10 - ] - }, - "battManConfigMaxAmbientTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 11 - ] - }, - "battManConfigMaxAmbientTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 12 - ] - }, - "battManConfigMinAmbientTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 13 - ] - }, - "battManConfigMinAmbientTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 14 - ] - }, - "battManConfigMaxRippleCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 15 - ] - }, - "battManConfigMaxCurrentAcceptanceDeviation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 16 - ] - }, - "battManConfigMonitorWireLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fiftyFeetOrLess", - "2": "moreThanFiftyFeet" - } - }, - "index": null, - "value": [ - "battManConfig", - 17 - ] - }, - "battManConfigDischargeVoltageAlarmLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 18 - ] - }, - "battManConfigAutoAnnunciatorReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "battManConfig", - 19 - ] - }, - "battManConfigSuspendCellVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 20 - ] - }, - "battManConfigOhmicTestWaitTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 21 - ] - }, - "battManConfigNumberOfBoosts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManConfig", - 22 - ] - }, - "battManAlarmManagementController": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManAlarm", - 1 - ] - }, - "battManAlarmBatteries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManAlarm", - 2 - ] - }, - "battManAlarmCharger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManAlarm", - 3 - ] - }, - "battManAlarmEnvironment": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManAlarm", - 4 - ] - }, - "battManSystemAmbientTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManSystemStatus", - 1 - ] - }, - "battManSystemAmbientTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManSystemStatus", - 2 - ] - }, - "battManSystemPilotTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManSystemStatus", - 3 - ] - }, - "battManSystemPilotTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManSystemStatus", - 4 - ] - }, - "battManSystemAmbientHighTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 5 - ] - }, - "battManSystemAmbientLowTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 6 - ] - }, - "battManSystemPilotBatteryHighTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 7 - ] - }, - "battManSystemPilotProbeDisconnected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 8 - ] - }, - "battManSystemAmbientProbeDisconnected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 9 - ] - }, - "battManSystemConfigurationInvalid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 10 - ] - }, - "battManSystemSuspendVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManSystemStatus", - 11 - ] - }, - "battManInputContactTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManInputContactStatus", - 1 - ] - }, - "battManInputContactTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManInputContactEntry" - }, - "index": null, - "value": [ - "battManInputContactStatus", - 2 - ] - }, - "battManInputContactEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManInputContactEntry" - }, - "index": [ - "battManInputContactIndex" - ], - "value": [ - "battManInputContactTable", - 1 - ] - }, - "BattManInputContactEntry": { - "tp": "SEQUENCE" - }, - "battManInputContactIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManInputContactEntry", - 1 - ] - }, - "battManInputContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManInputContactEntry", - 2 - ] - }, - "battManInputContactAlarmState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManInputContactEntry", - 3 - ] - }, - "battManInputContactState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "battManInputContactEntry", - 4 - ] - }, - "battManInputContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "battManInputContactEntry", - 5 - ] - }, - "battManInputContactAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManInputContactEntry", - 6 - ] - }, - "battManStringTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringStatus", - 1 - ] - }, - "battManStringTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManStringEntry" - }, - "index": null, - "value": [ - "battManStringStatus", - 2 - ] - }, - "battManStringEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManStringEntry" - }, - "index": [ - "battManStringIndex" - ], - "value": [ - "battManStringTable", - 1 - ] - }, - "BattManStringEntry": { - "tp": "SEQUENCE" - }, - "battManStringIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 1 - ] - }, - "battManStringCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 2 - ] - }, - "battManStringRippleCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 3 - ] - }, - "battManStringChargerHighVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManStringEntry", - 4 - ] - }, - "battManStringChargerLowVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManStringEntry", - 5 - ] - }, - "battManStringCurrentProbeDisconnected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManStringEntry", - 6 - ] - }, - "battManStringOnBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManStringEntry", - 7 - ] - }, - "battManStringHighRippleCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManStringEntry", - 8 - ] - }, - "battManStringVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 9 - ] - }, - "battManStringDischargeLess5Seconds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 10 - ] - }, - "battManStringDischarge5to10Seconds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 11 - ] - }, - "battManStringDischarge10to60Seconds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 12 - ] - }, - "battManStringDischargeMore60Seconds": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManStringEntry", - 13 - ] - }, - "battManString1BatteryTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManBatteryStatus", - 1 - ] - }, - "battManString1BatteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString1BatteryEntry" - }, - "index": null, - "value": [ - "battManBatteryStatus", - 2 - ] - }, - "battManString1BatteryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString1BatteryEntry" - }, - "index": [ - "battManString1BatteryIndex" - ], - "value": [ - "battManString1BatteryTable", - 1 - ] - }, - "BattManString1BatteryEntry": { - "tp": "SEQUENCE" - }, - "battManString1BatteryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 1 - ] - }, - "battManString1BatteryVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 2 - ] - }, - "battManString1BatteryLowestVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 3 - ] - }, - "battManString1BatteryCellShorted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 4 - ] - }, - "battManString1BatteryOpenFuseOrConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 5 - ] - }, - "battManString1BatteryLowCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 6 - ] - }, - "battManString1BatteryHighOhmicValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 7 - ] - }, - "battManString1BatteryThermalRunaway": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 8 - ] - }, - "battManString1BatteryDryout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 9 - ] - }, - "battManString1BatteryUserHighVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 10 - ] - }, - "battManString1BatteryUserLowVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 11 - ] - }, - "battManString1BatteryChemHighVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 12 - ] - }, - "battManString1BatteryChemLowVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 13 - ] - }, - "battManString1BatteryOpenCell": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString1BatteryEntry", - 14 - ] - }, - "battManString2BatteryTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManBatteryStatus", - 3 - ] - }, - "battManString2BatteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString2BatteryEntry" - }, - "index": null, - "value": [ - "battManBatteryStatus", - 4 - ] - }, - "battManString2BatteryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString2BatteryEntry" - }, - "index": [ - "battManString2BatteryIndex" - ], - "value": [ - "battManString2BatteryTable", - 1 - ] - }, - "BattManString2BatteryEntry": { - "tp": "SEQUENCE" - }, - "battManString2BatteryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 1 - ] - }, - "battManString2BatteryVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 2 - ] - }, - "battManString2BatteryLowestVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 3 - ] - }, - "battManString2BatteryCellShorted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 4 - ] - }, - "battManString2BatteryOpenFuseOrConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 5 - ] - }, - "battManString2BatteryLowCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 6 - ] - }, - "battManString2BatteryHighOhmicValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 7 - ] - }, - "battManString2BatteryThermalRunaway": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 8 - ] - }, - "battManString2BatteryDryout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 9 - ] - }, - "battManString2BatteryUserHighVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 10 - ] - }, - "battManString2BatteryUserLowVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 11 - ] - }, - "battManString2BatteryChemHighVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 12 - ] - }, - "battManString2BatteryChemLowVoltageAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 13 - ] - }, - "battManString2BatteryOpenCell": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManString2BatteryEntry", - 14 - ] - }, - "battManRemoteAnnunciatorReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "battManControl", - 1 - ] - }, - "battManResetChargeCurrentDeviationBenchmark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "battManControl", - 2 - ] - }, - "battManResetLowestDischargeVoltages": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "battManControl", - 3 - ] - }, - "battManResetDischargeCounters": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "battManControl", - 4 - ] - }, - "battManString1OhmicValueLastDischargeInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManTestResults", - 1 - ] - }, - "battManString1OhmicValueTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 2 - ] - }, - "battManString1OhmicValueTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString1OhmicValueEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 3 - ] - }, - "battManString1OhmicValueEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString1OhmicValueEntry" - }, - "index": [ - "battManString1OhmicValueIndex" - ], - "value": [ - "battManString1OhmicValueTable", - 1 - ] - }, - "BattManString1OhmicValueEntry": { - "tp": "SEQUENCE" - }, - "battManString1OhmicValueIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1OhmicValueEntry", - 1 - ] - }, - "battManString1OhmicValueData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1OhmicValueEntry", - 2 - ] - }, - "battManString1ResponseTestChangeTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 4 - ] - }, - "battManString1ResponseTestChangeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString1ResponseTestChangeEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 5 - ] - }, - "battManString1ResponseTestChangeEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString1ResponseTestChangeEntry" - }, - "index": [ - "battManString1ResponseTestChangeIndex" - ], - "value": [ - "battManString1ResponseTestChangeTable", - 1 - ] - }, - "BattManString1ResponseTestChangeEntry": { - "tp": "SEQUENCE" - }, - "battManString1ResponseTestChangeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1ResponseTestChangeEntry", - 1 - ] - }, - "battManString1ResponseTestChangeData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1ResponseTestChangeEntry", - 2 - ] - }, - "battManString2OhmicValueLastDischargeInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManTestResults", - 6 - ] - }, - "battManString2OhmicValueTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 7 - ] - }, - "battManString2OhmicValueTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString2OhmicValueEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 8 - ] - }, - "battManString2OhmicValueEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString2OhmicValueEntry" - }, - "index": [ - "battManString2OhmicValueIndex" - ], - "value": [ - "battManString2OhmicValueTable", - 1 - ] - }, - "BattManString2OhmicValueEntry": { - "tp": "SEQUENCE" - }, - "battManString2OhmicValueIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2OhmicValueEntry", - 1 - ] - }, - "battManString2OhmicValueData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2OhmicValueEntry", - 2 - ] - }, - "battManString2ResponseTestChangeTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 9 - ] - }, - "battManString2ResponseTestChangeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString2ResponseTestChangeEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 10 - ] - }, - "battManString2ResponseTestChangeEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString2ResponseTestChangeEntry" - }, - "index": [ - "battManString2ResponseTestChangeIndex" - ], - "value": [ - "battManString2ResponseTestChangeTable", - 1 - ] - }, - "BattManString2ResponseTestChangeEntry": { - "tp": "SEQUENCE" - }, - "battManString2ResponseTestChangeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2ResponseTestChangeEntry", - 1 - ] - }, - "battManString2ResponseTestChangeData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2ResponseTestChangeEntry", - 2 - ] - }, - "battManString1ResponseTestCurrentTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 11 - ] - }, - "battManString1ResponseTestCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString1ResponseTestCurrentEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 12 - ] - }, - "battManString1ResponseTestCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString1ResponseTestCurrentEntry" - }, - "index": [ - "battManString1ResponseTestCurrentIndex" - ], - "value": [ - "battManString1ResponseTestCurrentTable", - 1 - ] - }, - "BattManString1ResponseTestCurrentEntry": { - "tp": "SEQUENCE" - }, - "battManString1ResponseTestCurrentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1ResponseTestCurrentEntry", - 1 - ] - }, - "battManString1ResponseTestCurrentData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1ResponseTestCurrentEntry", - 2 - ] - }, - "battManString2ResponseTestCurrentTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 13 - ] - }, - "battManString2ResponseTestCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString2ResponseTestCurrentEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 14 - ] - }, - "battManString2ResponseTestCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString2ResponseTestCurrentEntry" - }, - "index": [ - "battManString2ResponseTestCurrentIndex" - ], - "value": [ - "battManString2ResponseTestCurrentTable", - 1 - ] - }, - "BattManString2ResponseTestCurrentEntry": { - "tp": "SEQUENCE" - }, - "battManString2ResponseTestCurrentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2ResponseTestCurrentEntry", - 1 - ] - }, - "battManString2ResponseTestCurrentData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2ResponseTestCurrentEntry", - 2 - ] - }, - "battManString1ResponseTestCurrentBenchmarkTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 15 - ] - }, - "battManString1ResponseTestCurrentBenchmarkTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString1ResponseTestCurrentBenchmarkEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 16 - ] - }, - "battManString1ResponseTestCurrentBenchmarkEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString1ResponseTestCurrentBenchmarkEntry" - }, - "index": [ - "battManString1ResponseTestCurrentBenchmarkIndex" - ], - "value": [ - "battManString1ResponseTestCurrentBenchmarkTable", - 1 - ] - }, - "BattManString1ResponseTestCurrentBenchmarkEntry": { - "tp": "SEQUENCE" - }, - "battManString1ResponseTestCurrentBenchmarkIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1ResponseTestCurrentBenchmarkEntry", - 1 - ] - }, - "battManString1ResponseTestCurrentBenchmarkData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString1ResponseTestCurrentBenchmarkEntry", - 2 - ] - }, - "battManString2ResponseTestCurrentBenchmarkTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManTestResults", - 17 - ] - }, - "battManString2ResponseTestCurrentBenchmarkTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManString2ResponseTestCurrentBenchmarkEntry" - }, - "index": null, - "value": [ - "battManTestResults", - 18 - ] - }, - "battManString2ResponseTestCurrentBenchmarkEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManString2ResponseTestCurrentBenchmarkEntry" - }, - "index": [ - "battManString2ResponseTestCurrentBenchmarkIndex" - ], - "value": [ - "battManString2ResponseTestCurrentBenchmarkTable", - 1 - ] - }, - "BattManString2ResponseTestCurrentBenchmarkEntry": { - "tp": "SEQUENCE" - }, - "battManString2ResponseTestCurrentBenchmarkIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2ResponseTestCurrentBenchmarkEntry", - 1 - ] - }, - "battManString2ResponseTestCurrentBenchmarkData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManString2ResponseTestCurrentBenchmarkEntry", - 2 - ] - }, - "battManUnitStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitStatus", - 1 - ] - }, - "battManUnitStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BattManUnitStatusEntry" - }, - "index": null, - "value": [ - "battManUnitStatus", - 2 - ] - }, - "battManUnitStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BattManUnitStatusEntry" - }, - "index": [ - "battManUnitStatusIndex" - ], - "value": [ - "battManUnitStatusTable", - 1 - ] - }, - "BattManUnitStatusEntry": { - "tp": "SEQUENCE" - }, - "battManUnitStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitStatusEntry", - 1 - ] - }, - "battManUnitStatusSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "battManUnitStatusEntry", - 2 - ] - }, - "battManUnitHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitStatusEntry", - 3 - ] - }, - "battManUnitFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "battManUnitStatusEntry", - 4 - ] - }, - "battManUnitCommLoss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManUnitStatusEntry", - 5 - ] - }, - "battManUnitRelayStuck": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "battManUnitStatusEntry", - 6 - ] - }, - "xPDUIdentProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 1 - ] - }, - "xPDUIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 2 - ] - }, - "xPDUIdentFirmwareAppRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 3 - ] - }, - "xPDUIdentFirmwareAppOSRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 4 - ] - }, - "xPDUIdentFirmwareControllerRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 5 - ] - }, - "xPDUIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 6 - ] - }, - "xPDUIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 7 - ] - }, - "xPDUIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUIdent", - 8 - ] - }, - "xPDUDeviceNominalMainInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUDevice", - 1 - ] - }, - "xPDUDeviceServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "threeWire", - "2": "fourWire" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 2 - ] - }, - "xPDUDeviceNominalOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUDevice", - 3 - ] - }, - "xPDUDeviceMainInputBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUDevice", - 4 - ] - }, - "xPDUDevicePanelBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUDevice", - 5 - ] - }, - "xPDUDeviceTransformerPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 6 - ] - }, - "xPDUDeviceLoadTieBreakerPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 7 - ] - }, - "xPDUDeviceLoadTestPortPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 8 - ] - }, - "xPDUDeviceFusesPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 9 - ] - }, - "xPDUDeviceFansPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 10 - ] - }, - "xPDUDeviceBypassInputPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 11 - ] - }, - "xPDUDeviceCrossTieOutputPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 12 - ] - }, - "xPDUDeviceEarthGroundMonitorPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 13 - ] - }, - "xPDUDeviceInfraStruXureType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "typeB", - "2": "typeC" - } - }, - "index": null, - "value": [ - "xPDUDevice", - 14 - ] - }, - "xPDUMainInputOverVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUMainInput", - 1 - ] - }, - "xPDUMainInputUnderVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUMainInput", - 2 - ] - }, - "xPDUMainInputVoltageTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUMainInput", - 3 - ] - }, - "xPDUMainInputVoltagePhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUMainInputVoltagePhaseEntry" - }, - "index": null, - "value": [ - "xPDUMainInput", - 4 - ] - }, - "xPDUMainInputVoltagePhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUMainInputVoltagePhaseEntry" - }, - "index": [ - "xPDUMainInputVoltagePhaseIndex" - ], - "value": [ - "xPDUMainInputVoltagePhaseTable", - 1 - ] - }, - "XPDUMainInputVoltagePhaseEntry": { - "tp": "SEQUENCE" - }, - "xPDUMainInputVoltagePhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xPDUMainInputVoltagePhaseEntry", - 1 - ] - }, - "xPDUMainInputVoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUMainInputVoltagePhaseEntry", - 2 - ] - }, - "xPDUMainInputVoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUMainInputVoltagePhaseEntry", - 3 - ] - }, - "xPDUBypassInputOverVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBypassInput", - 1 - ] - }, - "xPDUBypassInputUnderVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBypassInput", - 2 - ] - }, - "xPDUBypassInputVoltagePhaseTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBypassInput", - 3 - ] - }, - "xPDUBypassInputVoltagePhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUBypassInputVoltagePhaseEntry" - }, - "index": null, - "value": [ - "xPDUBypassInput", - 4 - ] - }, - "xPDUBypassInputVoltagePhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUBypassInputVoltagePhaseEntry" - }, - "index": [ - "xPDUBypassInputVoltagePhaseIndex" - ], - "value": [ - "xPDUBypassInputVoltagePhaseTable", - 1 - ] - }, - "XPDUBypassInputVoltagePhaseEntry": { - "tp": "SEQUENCE" - }, - "xPDUBypassInputVoltagePhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xPDUBypassInputVoltagePhaseEntry", - 1 - ] - }, - "xPDUBypassInputVoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBypassInputVoltagePhaseEntry", - 2 - ] - }, - "xPDUBypassInputVoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBypassInputVoltagePhaseEntry", - 3 - ] - }, - "xPDUUPSInputVoltagePhaseTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUUPSInput", - 1 - ] - }, - "xPDUUPSInputVoltagePhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUUPSInputVoltagePhaseEntry" - }, - "index": null, - "value": [ - "xPDUUPSInput", - 2 - ] - }, - "xPDUUPSInputVoltagePhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUUPSInputVoltagePhaseEntry" - }, - "index": [ - "xPDUUPSInputVoltagePhaseIndex" - ], - "value": [ - "xPDUUPSInputVoltagePhaseTable", - 1 - ] - }, - "XPDUUPSInputVoltagePhaseEntry": { - "tp": "SEQUENCE" - }, - "xPDUUPSInputVoltagePhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xPDUUPSInputVoltagePhaseEntry", - 1 - ] - }, - "xPDUUPSInputVoltageLtoNPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xPDUUPSInputVoltagePhaseEntry", - 2 - ] - }, - "xPDUSystemOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 1 - ] - }, - "xPDUSystemOutputNeutralCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 2 - ] - }, - "xPDUSystemOutputTotalPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 3 - ] - }, - "xPDUSystemOutputTotalApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 4 - ] - }, - "xPDUSystemOutputTotalPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 5 - ] - }, - "xPDUSystemOutputFrequencyTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "freqToleranceOff", - "2": "freqTolerancePointTwo", - "3": "freqTolerancePointFive", - "4": "freqToleranceOne", - "5": "freqToleranceOnePointFive", - "6": "freqToleranceTwo", - "7": "freqToleranceThree", - "8": "freqToleranceFour", - "9": "freqToleranceFive", - "10": "freqToleranceNine" - } - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 6 - ] - }, - "xPDUSystemOutputMaxKWPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 7 - ] - }, - "xPDUSystemOutputOverVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 8 - ] - }, - "xPDUSystemOutputUnderVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 9 - ] - }, - "xPDUSystemOutputOverCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 10 - ] - }, - "xPDUSystemOutputOverCurrentNeutralThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 11 - ] - }, - "xPDUSystemOutputUnderCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 12 - ] - }, - "xPDUSystemOutputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 13 - ] - }, - "xPDUSystemOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUSystemOutputPhaseEntry" - }, - "index": null, - "value": [ - "xPDUSystemOutput", - 14 - ] - }, - "xPDUSystemOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUSystemOutputPhaseEntry" - }, - "index": [ - "xPDUSystemOutputPhaseIndex" - ], - "value": [ - "xPDUSystemOutputPhaseTable", - 1 - ] - }, - "XPDUSystemOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "xPDUSystemOutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 1 - ] - }, - "xPDUSystemOutputVoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 2 - ] - }, - "xPDUSystemOutputVoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 3 - ] - }, - "xPDUSystemOutputPhaseCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 4 - ] - }, - "xPDUSystemOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 5 - ] - }, - "xPDUSystemOutputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 6 - ] - }, - "xPDUSystemOutputPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemOutputPhaseEntry", - 7 - ] - }, - "xPDUGroundCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUGroundMonitorPoint", - 1 - ] - }, - "xPDUGroundCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUGroundMonitorPoint", - 2 - ] - }, - "xPDUSystemBreakerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemBreakers", - 1 - ] - }, - "xPDUSystemBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUSystemBreakerEntry" - }, - "index": null, - "value": [ - "xPDUSystemBreakers", - 2 - ] - }, - "xPDUSystemBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUSystemBreakerEntry" - }, - "index": [ - "xPDUSystemBreakerTableIndex" - ], - "value": [ - "xPDUSystemBreakerTable", - 1 - ] - }, - "XPDUSystemBreakerEntry": { - "tp": "SEQUENCE" - }, - "xPDUSystemBreakerTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUSystemBreakerEntry", - 1 - ] - }, - "xPDUSystemBreakerDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUSystemBreakerEntry", - 2 - ] - }, - "xPDUSystemBreakerPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xPDUSystemBreakerEntry", - 3 - ] - }, - "xPDUNumOfBranchBreakers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakers", - 1 - ] - }, - "xPDUBranchBreakerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakers", - 2 - ] - }, - "xPDUBranchBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUBranchBreakerEntry" - }, - "index": null, - "value": [ - "xPDUBranchBreakers", - 3 - ] - }, - "xPDUBranchBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUBranchBreakerEntry" - }, - "index": [ - "xPDUBranchBreakerTableIndex" - ], - "value": [ - "xPDUBranchBreakerTable", - 1 - ] - }, - "XPDUBranchBreakerEntry": { - "tp": "SEQUENCE" - }, - "xPDUBranchBreakerTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 1 - ] - }, - "xPDUBranchBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 2 - ] - }, - "xPDUBranchBreakerRDPFeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "remoteDistribution", - "2": "noRemoteDistribution" - } - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 3 - ] - }, - "xPDUBranchBreakerTieIndicator": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "breakerUnTied", - "2": "breakerTied" - } - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 4 - ] - }, - "xPDUBranchBreakerCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 5 - ] - }, - "xPDUBranchBreakerOverCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 6 - ] - }, - "xPDUBranchBreakerUnderCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 7 - ] - }, - "xPDUBranchBreakerMaxCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 8 - ] - }, - "xPDUBranchBreakerMinCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 9 - ] - }, - "xPDUBranchBreakerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 10 - ] - }, - "xPDUBranchBreakerLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUBranchBreakerEntry", - 11 - ] - }, - "xPDUInputContactNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUInputContacts", - 1 - ] - }, - "xPDUInputContactTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUInputContacts", - 2 - ] - }, - "xPDUInputContactTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUInputContactEntry" - }, - "index": null, - "value": [ - "xPDUInputContacts", - 3 - ] - }, - "xPDUInputContactEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUInputContactEntry" - }, - "index": [ - "xPDUInputContactNumber" - ], - "value": [ - "xPDUInputContactTable", - 1 - ] - }, - "XPDUInputContactEntry": { - "tp": "SEQUENCE" - }, - "xPDUInputContactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUInputContactEntry", - 1 - ] - }, - "xPDUInputContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUInputContactEntry", - 2 - ] - }, - "xPDUInputContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "xPDUInputContactEntry", - 3 - ] - }, - "xPDUInputContactCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xPDUInputContactEntry", - 4 - ] - }, - "xPDUOutputRelaysNumRelays": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUOutputRelays", - 1 - ] - }, - "xPDUOutputRelaysTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUOutputRelays", - 2 - ] - }, - "xPDUOutputRelayTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XPDUOutputRelayEntry" - }, - "index": null, - "value": [ - "xPDUOutputRelays", - 3 - ] - }, - "xPDUOutputRelayEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XPDUOutputRelayEntry" - }, - "index": [ - "xPDUOutputRelayNumber" - ], - "value": [ - "xPDUOutputRelayTable", - 1 - ] - }, - "XPDUOutputRelayEntry": { - "tp": "SEQUENCE" - }, - "xPDUOutputRelayNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xPDUOutputRelayEntry", - 1 - ] - }, - "xPDUOutputRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xPDUOutputRelayEntry", - 2 - ] - }, - "xPDUOutputRelayNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "xPDUOutputRelayEntry", - 3 - ] - }, - "xPDUOutputRelayCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xPDUOutputRelayEntry", - 4 - ] - }, - "xPDUEPOMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "armed", - "2": "disarmed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xPDUMiscGroup", - 1 - ] - }, - "xPDUTransformTempStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "overtemp", - "3": "noTransformerPresent", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xPDUMiscGroup", - 2 - ] - }, - "xPDUCoolingFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "failed", - "3": "noCoolingFansPresent", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xPDUMiscGroup", - 3 - ] - }, - "xATSIdentProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 1 - ] - }, - "xATSIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 2 - ] - }, - "xATSIdentFirmwareAppRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 3 - ] - }, - "xATSIdentFirmwareAppOSRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 4 - ] - }, - "xATSIdentFirmwareControllerRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 5 - ] - }, - "xATSIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 6 - ] - }, - "xATSIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 7 - ] - }, - "xATSIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSIdent", - 8 - ] - }, - "xATSDeviceServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "threeWire", - "2": "fourWire" - } - }, - "index": null, - "value": [ - "xATSDevice", - 1 - ] - }, - "xATSDeviceNominalVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSDevice", - 2 - ] - }, - "xATSDeviceNominalFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSDevice", - 3 - ] - }, - "xATSDeviceTransferSwitchRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSDevice", - 4 - ] - }, - "xATSDeviceDCBackUpPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "xATSDevice", - 5 - ] - }, - "xATSSwitchStatusSelectedSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "source1", - "3": "source2", - "4": "fault", - "5": "unknown" - } - }, - "index": null, - "value": [ - "xATSSwitchStatus", - 1 - ] - }, - "xATSSwitchStatusOperationalMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "notInAutoAbnormal", - "3": "notInAuto", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xATSSwitchStatus", - 2 - ] - }, - "xATSSwitchStatusAutomaticOperationSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSSwitchStatus", - 3 - ] - }, - "xATSSwitchStatusEngineStartSignal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "run", - "2": "stop", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSSwitchStatus", - 4 - ] - }, - "xATSSwitchSettingsLowVoltageTransferPoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 1 - ] - }, - "xATSSwitchSettingsHighVoltageTransferPoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 2 - ] - }, - "xATSSwitchSettingsMaxFrequencyDeviation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 3 - ] - }, - "xATSSwitchSettingsMinPhaseBalance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 4 - ] - }, - "xATSSwitchSettingsNominalRotation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "abc", - "2": "cba", - "3": "any", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 5 - ] - }, - "xATSSwitchSettingsAllowClosedTransfer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 6 - ] - }, - "xATSSwitchSettingsMaxSyncTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 7 - ] - }, - "xATSSwitchSettingsNeutralTransferTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 8 - ] - }, - "xATSSwitchSettingsClearLatchedAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 9 - ] - }, - "xATSSwitchSettingsSetToFactoryDefaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "xATSSwitchSettings", - 10 - ] - }, - "xATSSwitchTimersTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchTimers", - 1 - ] - }, - "xATSSwitchTimersTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSSwitchTimersEntry" - }, - "index": null, - "value": [ - "xATSSwitchTimers", - 2 - ] - }, - "xATSSwitchTimersEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSSwitchTimersEntry" - }, - "index": [ - "xATSSwitchTimersIndex" - ], - "value": [ - "xATSSwitchTimersTable", - 1 - ] - }, - "XATSSwitchTimersEntry": { - "tp": "SEQUENCE" - }, - "xATSSwitchTimersIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchTimersEntry", - 1 - ] - }, - "xATSSwitchTimersName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSSwitchTimersEntry", - 2 - ] - }, - "xATSSwitchTimersAbort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "xATSSwitchTimersEntry", - 3 - ] - }, - "xATSSwitchTimersStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "inactive", - "2": "active" - } - }, - "index": null, - "value": [ - "xATSSwitchTimersEntry", - 4 - ] - }, - "xATSSwitchTimersRemainingTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchTimersEntry", - 5 - ] - }, - "xATSSwitchTimersDelaySetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchTimersEntry", - 6 - ] - }, - "xATSSwitchBlockMapTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchBlockMap", - 1 - ] - }, - "xATSSwitchBlockMapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSSwitchBlockMapEntry" - }, - "index": null, - "value": [ - "xATSSwitchBlockMap", - 2 - ] - }, - "xATSSwitchBlockMapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSSwitchBlockMapEntry" - }, - "index": [ - "xATSSwitchBlockMapIndex" - ], - "value": [ - "xATSSwitchBlockMapTable", - 1 - ] - }, - "XATSSwitchBlockMapEntry": { - "tp": "SEQUENCE" - }, - "xATSSwitchBlockMapIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchBlockMapEntry", - 1 - ] - }, - "xATSSwitchBlockMapName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSSwitchBlockMapEntry", - 2 - ] - }, - "xATSSwitchBlockMapStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchBlockMapEntry", - 3 - ] - }, - "xATSSwitchBlockMapSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchBlockMapEntry", - 4 - ] - }, - "xATSSwitchStatisticsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchStatistics", - 1 - ] - }, - "xATSSwitchStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSSwitchStatisticsEntry" - }, - "index": null, - "value": [ - "xATSSwitchStatistics", - 2 - ] - }, - "xATSSwitchStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSSwitchStatisticsEntry" - }, - "index": [ - "xATSSwitchStatisticsIndex" - ], - "value": [ - "xATSSwitchStatisticsTable", - 1 - ] - }, - "XATSSwitchStatisticsEntry": { - "tp": "SEQUENCE" - }, - "xATSSwitchStatisticsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSwitchStatisticsEntry", - 1 - ] - }, - "xATSSwitchStatisticsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSSwitchStatisticsEntry", - 2 - ] - }, - "xATSSwitchStatisticsValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSSwitchStatisticsEntry", - 3 - ] - }, - "xATSSwitchStatisticsReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "xATSSwitchStatisticsEntry", - 4 - ] - }, - "xATSSource1Name": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSSource1", - 1 - ] - }, - "xATSSource1Position": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "tripped", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xATSSource1", - 2 - ] - }, - "xATSSource1Frequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource1", - 3 - ] - }, - "xATSSource1Quality": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceGood", - "2": "lowVoltage", - "3": "highVoltage", - "4": "phaseImbalance", - "5": "freqOutOfRange", - "6": "badRotation", - "7": "unknown" - } - }, - "index": null, - "value": [ - "xATSSource1", - 4 - ] - }, - "xATSSource1Rotation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "abc", - "2": "cba", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSSource1", - 5 - ] - }, - "xATSSource1TableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource1", - 6 - ] - }, - "xATSSource1PhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSSource1PhaseEntry" - }, - "index": null, - "value": [ - "xATSSource1", - 7 - ] - }, - "xATSSource1PhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSSource1PhaseEntry" - }, - "index": [ - "xATSSource1Index" - ], - "value": [ - "xATSSource1PhaseTable", - 1 - ] - }, - "XATSSource1PhaseEntry": { - "tp": "SEQUENCE" - }, - "xATSSource1Index": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xATSSource1PhaseEntry", - 1 - ] - }, - "xATSSource1VoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource1PhaseEntry", - 2 - ] - }, - "xATSSource1VoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource1PhaseEntry", - 3 - ] - }, - "xATSSource2Name": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSSource2", - 1 - ] - }, - "xATSSource2Position": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "tripped", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xATSSource2", - 2 - ] - }, - "xATSSource2Frequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource2", - 3 - ] - }, - "xATSSource2Quality": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceGood", - "2": "lowVoltage", - "3": "highVoltage", - "4": "phaseImbalance", - "5": "freqOutOfRange", - "6": "badRotation", - "7": "unknown" - } - }, - "index": null, - "value": [ - "xATSSource2", - 4 - ] - }, - "xATSSource2Rotation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "abc", - "2": "cba", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSSource2", - 5 - ] - }, - "xATSSource2TableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource2", - 6 - ] - }, - "xATSSource2PhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSSource2PhaseEntry" - }, - "index": null, - "value": [ - "xATSSource2", - 7 - ] - }, - "xATSSource2PhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSSource2PhaseEntry" - }, - "index": [ - "xATSSource2Index" - ], - "value": [ - "xATSSource2PhaseTable", - 1 - ] - }, - "XATSSource2PhaseEntry": { - "tp": "SEQUENCE" - }, - "xATSSource2Index": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xATSSource2PhaseEntry", - 1 - ] - }, - "xATSSource2VoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource2PhaseEntry", - 2 - ] - }, - "xATSSource2VoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSource2PhaseEntry", - 3 - ] - }, - "xATSSystemOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 1 - ] - }, - "xATSSystemOutputTotalPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 2 - ] - }, - "xATSSystemOutputTotalApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 3 - ] - }, - "xATSSystemOutputTotalPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 4 - ] - }, - "xATSSystemOutputFrequencyTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "freqToleranceOff", - "2": "freqTolerancePointTwo", - "3": "freqTolerancePointFive", - "4": "freqToleranceOne", - "5": "freqToleranceOnePointFive", - "6": "freqToleranceTwo", - "7": "freqToleranceThree", - "8": "freqToleranceFour", - "9": "freqToleranceFive", - "10": "freqToleranceNine" - } - }, - "index": null, - "value": [ - "xATSSystemOutput", - 5 - ] - }, - "xATSSystemOutputOverVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 6 - ] - }, - "xATSSystemOutputUnderVoltThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 7 - ] - }, - "xATSSystemOutputOverCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 8 - ] - }, - "xATSSystemOutputUnderCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 9 - ] - }, - "xATSSystemOutputAlarmDelayThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 10 - ] - }, - "xATSSystemOutputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 11 - ] - }, - "xATSSystemOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSSystemOutputPhaseEntry" - }, - "index": null, - "value": [ - "xATSSystemOutput", - 12 - ] - }, - "xATSSystemOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSSystemOutputPhaseEntry" - }, - "index": [ - "xATSSystemOutputPhaseIndex" - ], - "value": [ - "xATSSystemOutputPhaseTable", - 1 - ] - }, - "XATSSystemOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "xATSSystemOutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 1 - ] - }, - "xATSSystemOutputVoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 2 - ] - }, - "xATSSystemOutputVoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 3 - ] - }, - "xATSSystemOutputPhaseCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 4 - ] - }, - "xATSSystemOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 5 - ] - }, - "xATSSystemOutputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 6 - ] - }, - "xATSSystemOutputPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSSystemOutputPhaseEntry", - 7 - ] - }, - "xATSTestingStatusSelectTestProcess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "engineStartTest", - "2": "systemLoadTest", - "3": "generatorHoldTest", - "4": "cancelTest" - } - }, - "index": null, - "value": [ - "xATSTestingStatus", - 1 - ] - }, - "xATSTestingStatusTestStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noTestInProcess", - "2": "testPending", - "3": "startingEngine", - "4": "engineWarmingUp", - "5": "awaitingTransferToS2", - "6": "testingWithLoad", - "7": "awaitingRetransferToS1", - "8": "testingWithoutLoad", - "9": "stoppingEngine", - "10": "holdingOnGenerator" - } - }, - "index": null, - "value": [ - "xATSTestingStatus", - 2 - ] - }, - "xATSTestingStatusProfileWarmupTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingStatus", - 3 - ] - }, - "xATSTestingStatusProfileLoadedTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingStatus", - 4 - ] - }, - "xATSTestingStatusProfileUnloadedTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingStatus", - 5 - ] - }, - "xATSTestingResultsLastDateOfTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSTestingResults", - 1 - ] - }, - "xATSTestingResultsLastResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noResultsAvailable", - "2": "startTestPassed", - "3": "loadTestPassed", - "4": "startSignalFailure", - "5": "failedGenNotInAuto", - "6": "failedGenEmerStop", - "7": "failedGenShutdown", - "8": "failedGenDidNotStart", - "9": "failedS2NeverGood", - "10": "genFailedDuringWarmup", - "11": "failureOnXferToS1", - "12": "genFailedLoaded", - "13": "failureOnRexferToS2", - "14": "failedOnCooldown", - "15": "genFailedToStop", - "16": "failedAtsInternalFault", - "17": "failedAtsNotInAuto", - "18": "canceledManualTest", - "19": "canceledScheduledTest" - } - }, - "index": null, - "value": [ - "xATSTestingResults", - 2 - ] - }, - "xATSTestingResultsTestLastTestTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSTestingResults", - 3 - ] - }, - "xATSTestingResultsLastCrankDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingResults", - 4 - ] - }, - "xATSTestingResultsLastWarmupDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingResults", - 5 - ] - }, - "xATSTestingResultsLastLoadedDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingResults", - 6 - ] - }, - "xATSTestingResultsLastUnloadedDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingResults", - 7 - ] - }, - "xATSTestingScheduleFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "never", - "2": "daily", - "3": "weekly", - "4": "monthly" - } - }, - "index": null, - "value": [ - "xATSTestingSchedule", - 1 - ] - }, - "xATSTestingScheduleTestDay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSTestingSchedule", - 2 - ] - }, - "xATSTestingScheduleTestTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSTestingSchedule", - 3 - ] - }, - "xATSTestingScheduleTestWithLoadInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "applyLoadEveryTest", - "2": "neverApplyLoad", - "3": "applyLoadMonthly", - "4": "applyLoadMonthlyDetailed" - } - }, - "index": null, - "value": [ - "xATSTestingSchedule", - 4 - ] - }, - "xATSTestingScheduleTestWithLoadSelectMonth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSTestingSchedule", - 5 - ] - }, - "xATSTestingScheduleNextTestDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSTestingSchedule", - 6 - ] - }, - "xATSTestingSimulatePowerFailTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "cancelSimulation", - "2": "fiveSecondsSimulation", - "3": "tenSecondsSimulation", - "4": "thirtySecondsSimulation", - "5": "oneMinuteSimulation", - "6": "threeMinutesSimulation", - "7": "fiveMinutesSimulation", - "8": "tenMinutesSimulation" - } - }, - "index": null, - "value": [ - "xATSTestingSimulatePowerFail", - 1 - ] - }, - "xATSTestingSimulatePowerFailTimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSTestingSimulatePowerFail", - 2 - ] - }, - "xATSInputContactNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSInputContacts", - 1 - ] - }, - "xATSInputContactTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSInputContacts", - 2 - ] - }, - "xATSInputContactTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSInputContactEntry" - }, - "index": null, - "value": [ - "xATSInputContacts", - 3 - ] - }, - "xATSInputContactEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSInputContactEntry" - }, - "index": [ - "xATSInputContactNumber" - ], - "value": [ - "xATSInputContactTable", - 1 - ] - }, - "XATSInputContactEntry": { - "tp": "SEQUENCE" - }, - "xATSInputContactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSInputContactEntry", - 1 - ] - }, - "xATSInputContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSInputContactEntry", - 2 - ] - }, - "xATSInputContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "xATSInputContactEntry", - 3 - ] - }, - "xATSInputContactCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "xATSInputContactEntry", - 4 - ] - }, - "xATSOutputRelayNumRelays": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSOutputRelays", - 1 - ] - }, - "xATSOutputRelayTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSOutputRelays", - 2 - ] - }, - "xATSOutputRelayTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSOutputRelayEntry" - }, - "index": null, - "value": [ - "xATSOutputRelays", - 3 - ] - }, - "xATSOutputRelayEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSOutputRelayEntry" - }, - "index": [ - "xATSOutputRelayNumber" - ], - "value": [ - "xATSOutputRelayTable", - 1 - ] - }, - "XATSOutputRelayEntry": { - "tp": "SEQUENCE" - }, - "xATSOutputRelayNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSOutputRelayEntry", - 1 - ] - }, - "xATSOutputRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSOutputRelayEntry", - 2 - ] - }, - "xATSOutputRelayNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "xATSOutputRelayEntry", - 3 - ] - }, - "xATSOutputRelayCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "xATSOutputRelayEntry", - 4 - ] - }, - "xATSGeneratorIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSGeneratorIdent", - 1 - ] - }, - "xATSGeneratorIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSGeneratorIdent", - 2 - ] - }, - "xATSGeneratorIdentDateofManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSGeneratorIdent", - 3 - ] - }, - "xATSGeneratorIdentVoltageConfiguration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorIdent", - 4 - ] - }, - "xATSGeneratorIdentMaxPowerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorIdent", - 5 - ] - }, - "xATSGeneratorIdentAlternatorFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorIdent", - 6 - ] - }, - "xATSGeneratorStatusGeneratorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSGeneratorStatus", - 1 - ] - }, - "xATSGeneratorStatusOperational": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nocomm", - "2": "off", - "3": "ready", - "4": "starting", - "5": "idle", - "6": "running", - "7": "normalStop", - "8": "emergencyStop", - "9": "notInAuto", - "10": "shutdown", - "11": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorStatus", - 2 - ] - }, - "xATSGeneratorStatusModeSwitchPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "manual", - "3": "automatic", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorStatus", - 3 - ] - }, - "xATSGeneratorStatusRemoteStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "stop", - "2": "run", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorStatus", - 4 - ] - }, - "xATSGeneratorAdvStatusBatteryVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorAdvStatus", - 1 - ] - }, - "xATSGeneratorAdvStatusOilPressure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorAdvStatus", - 2 - ] - }, - "xATSGeneratorAdvStatusCoolantTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorAdvStatus", - 3 - ] - }, - "xATSGeneratorAdvStatusEngineRPM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorAdvStatus", - 4 - ] - }, - "xATSGeneratorAdvStatusOilLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "low", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorAdvStatus", - 5 - ] - }, - "xATSGeneratorAdvStatusCoolantLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "low", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorAdvStatus", - 6 - ] - }, - "xATSGeneratorOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutput", - 1 - ] - }, - "xATSGeneratorOutputTotalPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutput", - 2 - ] - }, - "xATSGeneratorOutputTotalApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutput", - 3 - ] - }, - "xATSGeneratorOutputTotalPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutput", - 4 - ] - }, - "xATSGeneratorOutputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutput", - 5 - ] - }, - "xATSGeneratorOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XATSGeneratorOutputPhaseEntry" - }, - "index": null, - "value": [ - "xATSGeneratorOutput", - 6 - ] - }, - "xATSGeneratorOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XATSGeneratorOutputPhaseEntry" - }, - "index": [ - "xATSGeneratorOutputPhaseIndex" - ], - "value": [ - "xATSGeneratorOutputPhaseTable", - 1 - ] - }, - "XATSGeneratorOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "xATSGeneratorOutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 1 - ] - }, - "xATSGeneratorOutputVoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 2 - ] - }, - "xATSGeneratorOutputVoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 3 - ] - }, - "xATSGeneratorOutputPhaseCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 4 - ] - }, - "xATSGeneratorOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 5 - ] - }, - "xATSGeneratorOutputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 6 - ] - }, - "xATSGeneratorOutputPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorOutputPhaseEntry", - 7 - ] - }, - "xATSGeneratorSettingsVoltageAdjust": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 1 - ] - }, - "xATSGeneratorSettingsFrequencyAdjust": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 2 - ] - }, - "xATSGeneratorSettingsStartDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 3 - ] - }, - "xATSGeneratorSettingsStopDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 4 - ] - }, - "xATSGeneratorSettingsCrankCycleEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 5 - ] - }, - "xATSGeneratorSettingsCrankTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 6 - ] - }, - "xATSGeneratorSettingsCrankRestTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 7 - ] - }, - "xATSGeneratorSettingsNumberCrank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 8 - ] - }, - "xATSGeneratorSettingsMetricUnit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "xATSGeneratorSettings", - 9 - ] - }, - "xATSGeneratorServiceTotalRunHoursLifetime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 1 - ] - }, - "xATSGeneratorServiceEngineStartsLifetime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 2 - ] - }, - "xATSGeneratorServiceTotalkWhLifetime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 3 - ] - }, - "xATSGeneratorServiceTotalRunHoursSinceMaintenance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 4 - ] - }, - "xATSGeneratorServiceEngineStartsSinceMaintenance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 5 - ] - }, - "xATSGeneratorServiceTotalkWhMaintenance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 6 - ] - }, - "xATSGeneratorServiceResetRecord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "xATSGeneratorService", - 7 - ] - }, - "xATSGeneratorServiceRecordResetDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 8 - ] - }, - "xATSGeneratorServiceNextServiceDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 9 - ] - }, - "xATSGeneratorServiceRunHoursUntilServiceDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorService", - 10 - ] - }, - "xATSGeneratorServiceRunHoursThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "runThreshold100Hours", - "3": "runThreshold150Hours", - "4": "runThreshold200Hours", - "5": "runThreshold250Hours", - "6": "runThreshold300Hours", - "7": "runThreshold400Hours", - "8": "runThreshold500Hours" - } - }, - "index": null, - "value": [ - "xATSGeneratorService", - 11 - ] - }, - "xATSGeneratorServiceCalendarIntervalThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "interval1month", - "3": "interval2month", - "4": "interval3month", - "5": "interval6month", - "6": "intervalyearly" - } - }, - "index": null, - "value": [ - "xATSGeneratorService", - 12 - ] - }, - "xATSGeneratorFuelSystemType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "diesel", - "2": "propane", - "3": "naturalGas", - "4": "unknown" - } - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 1 - ] - }, - "xATSGeneratorFuelSystemTankSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 2 - ] - }, - "xATSGeneratorFuelSystemFuelLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 3 - ] - }, - "xATSGeneratorFuelSystemRuntimePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 4 - ] - }, - "xATSGeneratorFuelSystemEstimatedRunTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 5 - ] - }, - "xATSGeneratorFuelSystemLowRunTimeThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "oneHour", - "3": "twoHours", - "4": "threeHours", - "5": "fourHours", - "6": "fiveHours", - "7": "sixHours", - "8": "twelveHours", - "9": "oneDay", - "10": "twoDays", - "11": "threeDays", - "12": "fourDays", - "13": "fiveDays", - "14": "sixDays", - "15": "sevenDays" - } - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 6 - ] - }, - "xATSGeneratorFuelSystemVeryLowRunTimeThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "oneHour", - "3": "twoHours", - "4": "threeHours", - "5": "fourHours", - "6": "fiveHours", - "7": "sixHours", - "8": "twelveHours", - "9": "oneDay", - "10": "twoDays", - "11": "threeDays", - "12": "fourDays", - "13": "fiveDays", - "14": "sixDays", - "15": "sevenDays" - } - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 7 - ] - }, - "xATSGeneratorFuelSystemLowFuelLevelThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 8 - ] - }, - "xATSGeneratorFuelSystemVeryLowFuelLevelThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "xATSGeneratorFuelSystem", - 9 - ] - }, - "apCPSpname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsAP930xSys", - 1 - ] - }, - "apCPSversion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsAP930xSys", - 2 - ] - }, - "apCPSPower": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930xSys", - 3 - ] - }, - "apCPSPwNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "apCPSPower", - 1 - ] - }, - "apCPSPw1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "apCPSPower", - 2 - ] - }, - "apCPSPw2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "apCPSPower", - 3 - ] - }, - "apCPSPcmcia": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930xSys", - 4 - ] - }, - "apCPSNPcmcia": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "apCPSPcmcia", - 1 - ] - }, - "cpsCardIdentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpsCardIdentEntry" - }, - "index": null, - "value": [ - "apCPSPcmcia", - 2 - ] - }, - "cpsCardIdentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpsCardIdentEntry" - }, - "index": [ - "cpsCardIdentIndex" - ], - "value": [ - "cpsCardIdentTable", - 1 - ] - }, - "CpsCardIdentEntry": { - "tp": "SEQUENCE" - }, - "cpsCardIdentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsCardIdentEntry", - 1 - ] - }, - "cpsCardIdentProd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardIdentEntry", - 2 - ] - }, - "cpsCardIdentMan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardIdentEntry", - 3 - ] - }, - "cpsCardIdentFunc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardIdentEntry", - 4 - ] - }, - "cpsCardIdentPCI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardIdentEntry", - 5 - ] - }, - "cpsCardConfTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpsCardConfEntry" - }, - "index": null, - "value": [ - "apCPSPcmcia", - 3 - ] - }, - "cpsCardConfEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpsCardConfEntry" - }, - "index": [ - "cpsCardConfIndex" - ], - "value": [ - "cpsCardConfTable", - 1 - ] - }, - "CpsCardConfEntry": { - "tp": "SEQUENCE" - }, - "cpsCardConfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 1 - ] - }, - "cpsCardConfPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 2 - ] - }, - "cpsCardConfType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 3 - ] - }, - "cpsCardConfInter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 4 - ] - }, - "cpsCardConfFunc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 5 - ] - }, - "cpsCardConfCardv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 6 - ] - }, - "cpsCardConfPort1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 7 - ] - }, - "cpsCardConfPort2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardConfEntry", - 8 - ] - }, - "cpsCardStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpsCardStatusEntry" - }, - "index": null, - "value": [ - "apCPSPcmcia", - 4 - ] - }, - "cpsCardStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpsCardStatusEntry" - }, - "index": [ - "cpsCardStatusIndex" - ], - "value": [ - "cpsCardStatusTable", - 1 - ] - }, - "CpsCardStatusEntry": { - "tp": "SEQUENCE" - }, - "cpsCardStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsCardStatusEntry", - 1 - ] - }, - "cpsCardStatusCard": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardStatusEntry", - 2 - ] - }, - "cpsCardStatusFunc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsCardStatusEntry", - 3 - ] - }, - "apCPSFlashSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsAP930xSys", - 5 - ] - }, - "apCPSRAMSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsAP930xSys", - 6 - ] - }, - "apCPSCPUfreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsAP930xSys", - 7 - ] - }, - "apCPSDevId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsAP930xSys", - 8 - ] - }, - "cpsHostName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsAP930xConf", - 1 - ] - }, - "cpsConsoleBanner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsAP930xConf", - 2 - ] - }, - "cpsMotd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsAP930xConf", - 3 - ] - }, - "cpsEthItf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930xConf", - 4 - ] - }, - "cpsEthDhcpc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsEthItf", - 1 - ] - }, - "cpsEthIPaddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsEthItf", - 2 - ] - }, - "cpsEthIPmask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsEthItf", - 3 - ] - }, - "cpsEthMTU": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsEthItf", - 4 - ] - }, - "cpsEthIPaddr2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsEthItf", - 5 - ] - }, - "cpsEthIPmask2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsEthItf", - 6 - ] - }, - "cpsNameService": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930xConf", - 5 - ] - }, - "cpsResolverOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsNameService", - 1 - ] - }, - "cpsMultipleIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsNameService", - 2 - ] - }, - "cpsDNSserv": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsNameService", - 3 - ] - }, - "cpsDNSpriserv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsDNSserv", - 1 - ] - }, - "cpsDNSsecserv": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsDNSserv", - 2 - ] - }, - "cpsDNSdomain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsDNSserv", - 3 - ] - }, - "cpsSerialPortConf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsAP930xConf", - 6 - ] - }, - "cpsSerialGlobal": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsSerialPortConf", - 1 - ] - }, - "cpsSerialInclude": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 1 - ] - }, - "cpsSerialNFS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 2 - ] - }, - "cpsSerialLockDir": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 3 - ] - }, - "cpsSerialRlogin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 4 - ] - }, - "cpsSerialPppd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 5 - ] - }, - "cpsSerialTelnet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 6 - ] - }, - "cpsSerialSsh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 7 - ] - }, - "cpsSerialLocalLogins": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 8 - ] - }, - "cpsSerialFacility": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 9 - ] - }, - "cpsSerialDBFacility": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 10 - ] - }, - "cpsSerialGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpsSerialGroupEntry" - }, - "index": null, - "value": [ - "cpsSerialGlobal", - 11 - ] - }, - "cpsSerialGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpsSerialGroupEntry" - }, - "index": [ - "cpsSerialGroupIndex" - ], - "value": [ - "cpsSerialGroupTable", - 1 - ] - }, - "CpsSerialGroupEntry": { - "tp": "SEQUENCE" - }, - "cpsSerialGroupIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialGroupEntry", - 1 - ] - }, - "cpsSerialGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGroupEntry", - 2 - ] - }, - "cpsSerialGroupUsers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialGroupEntry", - 3 - ] - }, - "cpsSerialSpec": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cpsSerialPortConf", - 2 - ] - }, - "cpsSerialPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpsSerialPortEntry" - }, - "index": null, - "value": [ - "cpsSerialSpec", - 1 - ] - }, - "cpsSerialPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpsSerialPortEntry" - }, - "index": [ - "cpsSerialPortNumber" - ], - "value": [ - "cpsSerialPortTable", - 1 - ] - }, - "CpsSerialPortEntry": { - "tp": "SEQUENCE" - }, - "cpsSerialPortNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 1 - ] - }, - "cpsSerialPortTty": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 2 - ] - }, - "cpsSerialPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 3 - ] - }, - "cpsSerialPortSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 4 - ] - }, - "cpsSerialPortDataSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 5 - ] - }, - "cpsSerialPortStopBits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 6 - ] - }, - "cpsSerialPortParity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 7 - ] - }, - "cpsSerialPortFlowCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 8 - ] - }, - "cpsSerialPortDTRdelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 9 - ] - }, - "cpsSerialPortDCDCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 10 - ] - }, - "cpsSerialPortLogUtmp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 11 - ] - }, - "cpsSerialPortLogWtmp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 12 - ] - }, - "cpsSerialPortLogform": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 13 - ] - }, - "cpsSerialPortAuthtype": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 14 - ] - }, - "cpsSerialPortAuthSrv1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 15 - ] - }, - "cpsSerialPortAccSrv1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 16 - ] - }, - "cpsSerialPortAuthTmo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 17 - ] - }, - "cpsSerialPortAuthRetr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 18 - ] - }, - "cpsSerialPortAuthSrv2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 19 - ] - }, - "cpsSerialPortAccSrv2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 20 - ] - }, - "cpsSerialPortAuthSecret": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 21 - ] - }, - "cpsSerialPortAuthRadP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 22 - ] - }, - "cpsSerialPortAuthAcc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 23 - ] - }, - "cpsSerialPortProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 24 - ] - }, - "cpsSerialPortRemoteIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 25 - ] - }, - "cpsSerialPortSocketPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 26 - ] - }, - "cpsSerialPortRemHost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 27 - ] - }, - "cpsSerialPortBanner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 28 - ] - }, - "cpsSerialPortPrompt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 29 - ] - }, - "cpsSerialPortTermType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 30 - ] - }, - "cpsSerialPortAutomUsr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 31 - ] - }, - "cpsSerialPortNetMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 32 - ] - }, - "cpsSerialPortPppMtu": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 33 - ] - }, - "cpsSerialPortPppMru": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 34 - ] - }, - "cpsSerialPortPppOptions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 35 - ] - }, - "cpsSerialPortPppFoption": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 36 - ] - }, - "cpsSerialPortModemChat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 37 - ] - }, - "cpsSerialPortSttyCmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 38 - ] - }, - "cpsSerialPortSockTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 39 - ] - }, - "cpsSerialPortSockPoll": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 40 - ] - }, - "cpsSerialPortSockIdle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 41 - ] - }, - "cpsSerialPortDBsize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 42 - ] - }, - "cpsSerialPortDBtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 43 - ] - }, - "cpsSerialPortDBmode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 44 - ] - }, - "cpsSerialPortDBsyslog": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 45 - ] - }, - "cpsSerialPortDBmenu": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 46 - ] - }, - "cpsSerialPortDBalarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 47 - ] - }, - "cpsSerialPortSSHbreak": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 48 - ] - }, - "cpsSerialPortSniffSess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 49 - ] - }, - "cpsSerialPortSniffAdm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 50 - ] - }, - "cpsSerialPortSniffEsc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 51 - ] - }, - "cpsSerialPortSniffMsess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 52 - ] - }, - "cpsSerialPortTelnetMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 53 - ] - }, - "cpsSerialPortSysBufSess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 54 - ] - }, - "cpsSerialPortLFSuppress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 55 - ] - }, - "cpsSerialPortAutoInput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 56 - ] - }, - "cpsSerialPortAutoOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 57 - ] - }, - "cpsSerialPortBreakInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsSerialPortEntry", - 58 - ] - }, - "cpsInfoSerialPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CpsInfoSerialPortEntry" - }, - "index": null, - "value": [ - "cpsAP930xInfo", - 1 - ] - }, - "cpsInfoSerialPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CpsInfoSerialPortEntry" - }, - "index": [ - "cpsInfoSerialPortNumber" - ], - "value": [ - "cpsInfoSerialPortTable", - 1 - ] - }, - "CpsInfoSerialPortEntry": { - "tp": "SEQUENCE" - }, - "cpsInfoSerialPortNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 1 - ] - }, - "cpsInfoSerialPortTty": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 2 - ] - }, - "cpsInfoSerialPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 3 - ] - }, - "cpsInfoSerialPortSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 4 - ] - }, - "cpsInfoSerialPortTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 5 - ] - }, - "cpsInfoSerialPortRXBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 6 - ] - }, - "cpsInfoSerialPortErrFrame": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 7 - ] - }, - "cpsInfoSerialPortErrParity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 8 - ] - }, - "cpsInfoSerialPortErrBreaks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 9 - ] - }, - "cpsInfoSerialPortErrOverrun": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 10 - ] - }, - "cpsInfoSerialPortSigDTR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 11 - ] - }, - "cpsInfoSerialPortSigCD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 12 - ] - }, - "cpsInfoSerialPortSigDSR": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 13 - ] - }, - "cpsInfoSerialPortSigRTS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 14 - ] - }, - "cpsInfoSerialPortSigCTS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 15 - ] - }, - "cpsInfoSerialPortSigRI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsInfoSerialPortEntry", - 16 - ] - }, - "apCPSSave": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsAP930xAdm", - 1 - ] - }, - "apCPSSerialHUP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "cpsAP930xAdm", - 2 - ] - }, - "accessPXIdentAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXIdent", - 1 - ] - }, - "accessPXIdentProductNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXIdent", - 2 - ] - }, - "accessPXIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXIdent", - 3 - ] - }, - "accessPXIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXIdent", - 4 - ] - }, - "accessPXIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXIdent", - 5 - ] - }, - "accessPXConfigCardReaderEnableDisableAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enable" - } - }, - "index": null, - "value": [ - "accessPXConfig", - 1 - ] - }, - "accessPXConfigAutoRelockTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXConfig", - 2 - ] - }, - "accessPXConfigCardFormat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "hidStd26", - "2": "hid37Bit", - "3": "hid37BitWithFacility", - "4": "hidCorp1000" - } - }, - "index": null, - "value": [ - "accessPXConfig", - 3 - ] - }, - "accessPXConfigFrontDoorLockControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unlock", - "2": "lock", - "3": "notInstalledReadOnly", - "4": "disconnectedReadOnly" - } - }, - "index": null, - "value": [ - "accessPXConfigFront", - 1 - ] - }, - "accessPXConfigFrontDoorMaxOpenTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXConfigFront", - 2 - ] - }, - "accessPXStatusFrontDoorLock": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unlocked", - "2": "locked", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusFront", - 1 - ] - }, - "accessPXStatusFrontDoor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusFront", - 2 - ] - }, - "accessPXStatusFrontDoorHandle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusFront", - 3 - ] - }, - "accessPXStatusFrontDoorMaxOpenTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXStatusFront", - 4 - ] - }, - "accessPXStatusFrontDoorAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXStatusFront", - 5 - ] - }, - "accessPXConfigRearDoorLockControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unlock", - "2": "lock", - "3": "notInstalledReadOnly", - "4": "disconnectedReadOnly" - } - }, - "index": null, - "value": [ - "accessPXConfigRear", - 1 - ] - }, - "accessPXConfigRearDoorMaxOpenTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXConfigRear", - 2 - ] - }, - "accessPXStatusRearDoorLock": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unlocked", - "2": "locked", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusRear", - 1 - ] - }, - "accessPXStatusRearDoor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusRear", - 2 - ] - }, - "accessPXStatusRearDoorHandle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusRear", - 3 - ] - }, - "accessPXStatusRearDoorMaxOpenTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXStatusRear", - 4 - ] - }, - "accessPXStatusRearDoorAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "accessPXStatusRear", - 5 - ] - }, - "accessPXConfigBeaconName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXConfigBeacon", - 1 - ] - }, - "accessPXConfigBeaconLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXConfigBeacon", - 2 - ] - }, - "accessPXConfigBeaconAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "turnOff", - "2": "turnOn", - "3": "notInstalledReadOnly", - "4": "disconnectedReadOnly" - } - }, - "index": null, - "value": [ - "accessPXConfigBeacon", - 3 - ] - }, - "accessPXStatusBeaconName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXStatusBeacon", - 1 - ] - }, - "accessPXStatusBeaconLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "accessPXStatusBeacon", - 2 - ] - }, - "accessPXStatusBeaconCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on", - "3": "notInstalled", - "4": "disconnected" - } - }, - "index": null, - "value": [ - "accessPXStatusBeacon", - 3 - ] - }, - "apcLocalDisplayIdentDisplayType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noDisplayFound", - "2": "powerviewRM", - "3": "powerviewWW" - } - }, - "index": null, - "value": [ - "apcLocalDisplayIdent", - 1 - ] - }, - "apcLocalDisplayIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "apcLocalDisplayIdent", - 2 - ] - }, - "apcLocalDisplayIdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "apcLocalDisplayIdent", - 3 - ] - }, - "apcLocalDisplayIdentOptions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "apcLocalDisplayIdent", - 4 - ] - }, - "apcLocalDisplayIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "apcLocalDisplayIdent", - 5 - ] - }, - "apcLocalDisplayIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "apcLocalDisplayIdent", - 6 - ] - }, - "apcLocalDisplayConfigAlarmBeeper": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "beeperDisabled", - "2": "beeperEnabled" - } - }, - "index": null, - "value": [ - "apcLocalDisplayConfig", - 1 - ] - }, - "apcLocalDisplayConfigBeeperVolume": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "beeperDisabled", - "2": "beeperLow", - "3": "beeperMedium", - "4": "beeperHigh" - } - }, - "index": null, - "value": [ - "apcLocalDisplayConfig", - 2 - ] - }, - "apcLocalDisplayConfigCheckLogIndicator": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "checklogNotPresent", - "2": "checklogDisabled", - "3": "checklogInformational", - "4": "checklogWarning", - "5": "checklogCritical" - } - }, - "index": null, - "value": [ - "apcLocalDisplayConfig", - 3 - ] - }, - "apcLocalDisplayConfigKeyClick": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "keyclickDisabled", - "2": "keyclickEnabled" - } - }, - "index": null, - "value": [ - "apcLocalDisplayConfig", - 4 - ] - }, - "apcLocalDisplayConfigContrast": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "contrast1", - "2": "contrast2", - "3": "contrast3", - "4": "contrast4", - "5": "contrast5", - "6": "contrast6", - "7": "contrast7", - "8": "contrast8" - } - }, - "index": null, - "value": [ - "apcLocalDisplayConfig", - 5 - ] - }, - "powerNetSoftwareSystemDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "powerNetSoftwareSystem", - 1 - ] - }, - "powerNetSoftwareOid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "powerNetSoftwareSystem", - 2 - ] - }, - "powerNetSoftwareSystemUpTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "powerNetSoftwareSystem", - 3 - ] - }, - "powerNetSoftwareTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "powerNetSoftwareConfig", - 1 - ] - }, - "powerNetSoftwareTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PowerNetSoftwareEntry" - }, - "index": null, - "value": [ - "powerNetSoftwareConfig", - 2 - ] - }, - "powerNetSoftwareEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PowerNetSoftwareEntry" - }, - "index": [ - "moduleNumber" - ], - "value": [ - "powerNetSoftwareTable", - 1 - ] - }, - "PowerNetSoftwareEntry": { - "tp": "SEQUENCE" - }, - "moduleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "powerNetSoftwareEntry", - 1 - ] - }, - "moduleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "powerNetSoftwareEntry", - 2 - ] - }, - "moduleVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "powerNetSoftwareEntry", - 3 - ] - }, - "moduleDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "powerNetSoftwareEntry", - 4 - ] - }, - "serverStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "stopped", - "3": "running", - "4": "running-missing", - "5": "initializing", - "6": "starting", - "7": "disaster-recovery", - "8": "postoffice-inconsistent", - "9": "missing-jgroups" - } - }, - "index": null, - "value": [ - "struxureWareOperationsStatus", - 1 - ] - }, - "databaseStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "stopped", - "3": "running", - "4": "detached", - "5": "catching-up", - "6": "attaching", - "7": "running-master", - "8": "running-primary-slave", - "9": "running-slave", - "10": "running-alone" - } - }, - "index": null, - "value": [ - "struxureWareOperationsStatus", - 2 - ] - }, - "loadBalancerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "stopped", - "3": "running", - "4": "running-missing" - } - }, - "index": null, - "value": [ - "struxureWareOperationsStatus", - 3 - ] - }, - "essentialServicesStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "stopped", - "3": "running", - "4": "time-sync-problems", - "5": "backup-problems" - } - }, - "index": null, - "value": [ - "struxureWareOperationsStatus", - 4 - ] - }, - "etlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "running", - "3": "failed", - "4": "paused", - "5": "stopped" - } - }, - "index": null, - "value": [ - "struxureWareOperationsStatus", - 5 - ] - }, - "pcnshostname": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsIdent", - 1 - ] - }, - "pcnsVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsIdent", - 2 - ] - }, - "pcnsOS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsIdent", - 3 - ] - }, - "pcnsJavaVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsIdent", - 4 - ] - }, - "pcnsUIProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "http", - "2": "https" - } - }, - "index": null, - "value": [ - "pcnsNetworking", - 1 - ] - }, - "pcnsHttpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsNetworking", - 2 - ] - }, - "pcnsHttpsPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsNetworking", - 3 - ] - }, - "pcnsNetworkConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ipV4", - "2": "ipV6" - } - }, - "index": null, - "value": [ - "pcnsNetworking", - 4 - ] - }, - "pcnsVirtualInstall": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "hyper-V", - "3": "vmWare" - } - }, - "index": null, - "value": [ - "pcnsNetworking", - 5 - ] - }, - "pcnsMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "single", - "2": "redundant", - "3": "parallel", - "4": "advanced" - } - }, - "index": null, - "value": [ - "pcnsNMC", - 1 - ] - }, - "pcnsNMCPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsNMC", - 2 - ] - }, - "pcnsNMCProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "http", - "2": "https" - } - }, - "index": null, - "value": [ - "pcnsNMC", - 3 - ] - }, - "pcnsNmcTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PCNSNMCEntry" - }, - "index": null, - "value": [ - "pcnsNMC", - 4 - ] - }, - "pcnsNmcEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PCNSNMCEntry" - }, - "index": [ - "pcnsNmcIndex" - ], - "value": [ - "pcnsNmcTable", - 1 - ] - }, - "PCNSNMCEntry": { - "tp": "SEQUENCE" - }, - "pcnsNmcIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "pcnsNmcEntry", - 1 - ] - }, - "pcnsNmcAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "pcnsNmcEntry", - 2 - ] - }, - "pcnsNmcOutlet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "pcnsNmcEntry", - 3 - ] - }, - "pcnsPowerFailed": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 1 - ] - }, - "pcnsPowerFailedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 1 - ] - }, - "pcnsPowerFailedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 2 - ] - }, - "pcnsPowerFailedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 3 - ] - }, - "pcnsPowerFailedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 4 - ] - }, - "pcnsPowerFailedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 5 - ] - }, - "pcnsPowerFailedEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 6 - ] - }, - "pcnsPowerFailedShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsPowerFailed", - 7 - ] - }, - "pcnsPowerRestored": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 2 - ] - }, - "pcnsPowerRestoredDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsPowerRestored", - 1 - ] - }, - "pcnsPowerRestoredEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsPowerRestored", - 2 - ] - }, - "pcnsPowerRestoredEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsPowerRestored", - 3 - ] - }, - "pcnsPowerRestoredCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsPowerRestored", - 4 - ] - }, - "pcnsPowerRestoredCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsPowerRestored", - 5 - ] - }, - "pcnsOverload": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 3 - ] - }, - "pcnsOverloadDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsOverload", - 1 - ] - }, - "pcnsOverloadEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsOverload", - 2 - ] - }, - "pcnsOverloadEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsOverload", - 3 - ] - }, - "pcnsOverloadCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsOverload", - 4 - ] - }, - "pcnsOverloadCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsOverload", - 5 - ] - }, - "pcnsOverloadEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsOverload", - 6 - ] - }, - "pcnsOverloadShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsOverload", - 7 - ] - }, - "pcnsOverloadSolved": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 4 - ] - }, - "pcnsOverloadSolvedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsOverloadSolved", - 1 - ] - }, - "pcnsOverloadSolvedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsOverloadSolved", - 2 - ] - }, - "pcnsOverloadSolvedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsOverloadSolved", - 3 - ] - }, - "pcnsOverloadSolvedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsOverloadSolved", - 4 - ] - }, - "pcnsOverloadSolvedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsOverloadSolved", - 5 - ] - }, - "pcnsRunTimeExceeded": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 5 - ] - }, - "pcnsRunTimeExceededDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 1 - ] - }, - "pcnsRunTimeExceededEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 2 - ] - }, - "pcnsRunTimeExceededEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 3 - ] - }, - "pcnsRunTimeExceededCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 4 - ] - }, - "pcnsRunTimeExceededCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 5 - ] - }, - "pcnsRunTimeExceededEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 6 - ] - }, - "pcnsRunTimeExceededShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsRunTimeExceeded", - 7 - ] - }, - "pcnsRunTimeWithinRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 6 - ] - }, - "pcnsRunTimeWithinRangeDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeWithinRange", - 1 - ] - }, - "pcnsRunTimeWithinRangeEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeWithinRange", - 2 - ] - }, - "pcnsRunTimeWithinRangeEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeWithinRange", - 3 - ] - }, - "pcnsRunTimeWithinRangeCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeWithinRange", - 4 - ] - }, - "pcnsRunTimeWithinRangeCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsRunTimeWithinRange", - 5 - ] - }, - "pcnsRunTimeBelowThreshold": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 7 - ] - }, - "pcnsRunTimeBelowThresholdDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 1 - ] - }, - "pcnspcnsRunTimeBelowThresholdEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 2 - ] - }, - "pcnsRunTimeBelowThresholdEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 3 - ] - }, - "pcnsRunTimeBelowThresholdCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 4 - ] - }, - "pcnsRunTimeBelowThresholdEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 6 - ] - }, - "pcnsRunTimeBelowThresholdCommandFileThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 8 - ] - }, - "pcnsRunTimeBelowThresholdShutdownThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsRunTimeBelowThreshold", - 9 - ] - }, - "pcnsRunTimeAboveThreshold": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 8 - ] - }, - "pcnsRunTimeAboveThresholdDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeAboveThreshold", - 1 - ] - }, - "pcnsRunTimeAboveThresholdEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeAboveThreshold", - 2 - ] - }, - "pcnsRunTimeAboveThresholdEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsRunTimeAboveThreshold", - 3 - ] - }, - "pcnsRunTimeAboveThresholdCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsRunTimeAboveThreshold", - 4 - ] - }, - "pcnsRunTimeAboveThresholdCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsRunTimeAboveThreshold", - 5 - ] - }, - "pcnsBatteryDischarged": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 10 - ] - }, - "pcnsBatteryDischargedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 1 - ] - }, - "pcnsBatteryDischargedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 2 - ] - }, - "pcnsBatteryDischargedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 3 - ] - }, - "pcnsBatteryDischargedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 4 - ] - }, - "pcnsBatteryDischargedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 5 - ] - }, - "pcnsBatteryDischargedEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 6 - ] - }, - "pcnsBatteryDischargedShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBatteryDischarged", - 7 - ] - }, - "pcnsBatteryChargeInRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 11 - ] - }, - "pcnsBatteryChargeInRangeDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBatteryChargeInRange", - 1 - ] - }, - "pcnsBatteryChargeInRangeEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBatteryChargeInRange", - 2 - ] - }, - "pcnsBatteryChargeInRangeEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBatteryChargeInRange", - 3 - ] - }, - "pcnsBatteryChargeInRangeCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBatteryChargeInRange", - 4 - ] - }, - "pcnsBatteryChargeInRangeCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBatteryChargeInRange", - 5 - ] - }, - "pcnsFaultBypassEnabled": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 12 - ] - }, - "pcnsFaultBypassEnabledDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 1 - ] - }, - "pcnsFaultBypassEnabledEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 2 - ] - }, - "pcnsFaultBypassEnabledEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 3 - ] - }, - "pcnsFaultBypassEnabledCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 4 - ] - }, - "pcnsFaultBypassEnabledCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 5 - ] - }, - "pcnsFaultBypassEnabledEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 6 - ] - }, - "pcnsFaultBypassEnabledShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsFaultBypassEnabled", - 7 - ] - }, - "pcnsBypassEnabled": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 13 - ] - }, - "pcnsBypassEnabledDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 1 - ] - }, - "pcnsBypassEnabledEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 2 - ] - }, - "pcnsBypassEnabledEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 3 - ] - }, - "pcnsBypassEnabledCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 4 - ] - }, - "pcnsBypassEnabledCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 5 - ] - }, - "pcnsBypassEnabledEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 6 - ] - }, - "pcnsBypassEnabledShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassEnabled", - 7 - ] - }, - "pcnsBypassManualEnabled": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 14 - ] - }, - "pcnsBypassManualEnabledDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 1 - ] - }, - "pcnsBypassManualEnabledEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 2 - ] - }, - "pcnsBypassManualEnabledEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 3 - ] - }, - "pcnsBypassManualEnabledCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 4 - ] - }, - "pcnsBypassManualEnabledCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 5 - ] - }, - "pcnsBypassManualEnabledEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 6 - ] - }, - "pcnsBypassManualEnabledShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassManualEnabled", - 7 - ] - }, - "pcnsBypassDisabled": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 15 - ] - }, - "pcnsBypassDisabledDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassDisabled", - 1 - ] - }, - "pcnsBypassDisabledEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassDisabled", - 2 - ] - }, - "pcnsBypassDisabledEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassDisabled", - 3 - ] - }, - "pcnsBypassDisabledCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassDisabled", - 4 - ] - }, - "pcnsBypassDisabledCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassDisabled", - 5 - ] - }, - "pcnsBypassContactorFailed": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 16 - ] - }, - "pcnsBypassContactorFailedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 1 - ] - }, - "pcnsBypassContactorFailedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 2 - ] - }, - "pcnsBypassContactorFailedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 3 - ] - }, - "pcnsBypassContactorFailedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 4 - ] - }, - "pcnsBypassContactorFailedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 5 - ] - }, - "pcnsBypassContactorFailedEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 6 - ] - }, - "pcnsBypassContactorFailedShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassContactorFailed", - 7 - ] - }, - "pcnsBypassContactorOk": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 17 - ] - }, - "pcnsBypassContactorOkDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassContactorOk", - 1 - ] - }, - "pcnsBypassContactorOkEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassContactorOk", - 2 - ] - }, - "pcnsBypassContactorOkEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsBypassContactorOk", - 3 - ] - }, - "pcnsBypassContactorOkCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsBypassContactorOk", - 4 - ] - }, - "pcnsBypassContactorOkCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsBypassContactorOk", - 5 - ] - }, - "pcnsCommunicationLostOnBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 18 - ] - }, - "pcnsCommunicationLostOnBatteryDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 1 - ] - }, - "pcnsCommunicationLostOnBatteryEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 2 - ] - }, - "pcnsCommunicationLostOnBatteryEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 3 - ] - }, - "pcnsCommunicationLostOnBatteryCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 4 - ] - }, - "pcnsCommunicationLostOnBatteryCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 5 - ] - }, - "pcnsCommunicationLostOnBatteryEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 6 - ] - }, - "pcnsCommunicationLostOnBatteryShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsCommunicationLostOnBattery", - 7 - ] - }, - "pcnsCommunicationLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 19 - ] - }, - "pcnsCommunicationLostDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 1 - ] - }, - "pcnsCommunicationLostEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 2 - ] - }, - "pcnsCommunicationLostEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 3 - ] - }, - "pcnsCommunicationLostCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 4 - ] - }, - "pcnsCommunicationLostCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 5 - ] - }, - "pcnsCommunicationLostEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 6 - ] - }, - "pcnsCommunicationLostShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsCommunicationLost", - 7 - ] - }, - "pcnsNetCommunicationLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 20 - ] - }, - "pcnsNetCommunicationLostDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 1 - ] - }, - "pcnsNetCommunicationLostEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 2 - ] - }, - "pcnsNetCommunicationLostEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 3 - ] - }, - "pcnsNetCommunicationLostCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 4 - ] - }, - "pcnsNetCommunicationLostCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 5 - ] - }, - "pcnsNetCommunicationLostEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 6 - ] - }, - "pcnsNetCommunicationLostShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsNetCommunicationLost", - 7 - ] - }, - "pcnsCommunicationEstablished": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 21 - ] - }, - "pcnsCommunicationEstablishedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsCommunicationEstablished", - 1 - ] - }, - "pcnsCommunicationEstablishedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationEstablished", - 2 - ] - }, - "pcnsCommunicationEstablishedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsCommunicationEstablished", - 3 - ] - }, - "pcnsCommunicationEstablishedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsCommunicationEstablished", - 4 - ] - }, - "pcnsCommunicationEstablishedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsCommunicationEstablished", - 5 - ] - }, - "pcnsMinRedundancyLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 22 - ] - }, - "pcnsMinRedundancyLostDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 1 - ] - }, - "pcnsMinRedundancyLostEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 2 - ] - }, - "pcnsMinRedundancyLostEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 3 - ] - }, - "pcnsMinRedundancyLostCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 4 - ] - }, - "pcnsMinRedundancyLostCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 5 - ] - }, - "pcnsMinRedundancyLostEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 6 - ] - }, - "pcnsMinRedundancyLostShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMinRedundancyLost", - 7 - ] - }, - "pcnsMinRedundancyRegained": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 23 - ] - }, - "pcnsMinRedundancyRegainedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinRedundancyRegained", - 1 - ] - }, - "pcnsMinRedundancyRegainedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinRedundancyRegained", - 2 - ] - }, - "pcnsMinRedundancyRegainedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinRedundancyRegained", - 3 - ] - }, - "pcnsMinRedundancyRegainedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinRedundancyRegained", - 4 - ] - }, - "pcnsMinRedundancyRegainedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMinRedundancyRegained", - 5 - ] - }, - "pcnsParallelRedundancyLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 24 - ] - }, - "pcnsParallelRedundancyLostDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 1 - ] - }, - "pcnsParallelRedundancyLostEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 2 - ] - }, - "pcnsParallelRedundancyLostEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 3 - ] - }, - "pcnsParallelRedundancyLostCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 4 - ] - }, - "pcnsParallelRedundancyLostCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 5 - ] - }, - "pcnsParallelRedundancyLostEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 6 - ] - }, - "pcnsParallelRedundancyLostShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyLost", - 7 - ] - }, - "pcnsParallelRedundancyRegained": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 25 - ] - }, - "pcnsParallelRedundancyRegainedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyRegained", - 1 - ] - }, - "pcnsParallelRedundancyRegainedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsParallelRedundancyRegained", - 2 - ] - }, - "pcnsParallelRedundancyRegainedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsParallelRedundancyRegained", - 3 - ] - }, - "pcnsParallelRedundancyRegainedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyRegained", - 4 - ] - }, - "pcnsParallelRedundancyRegainedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsParallelRedundancyRegained", - 5 - ] - }, - "pcnsMaxInternalTempExceeded": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 26 - ] - }, - "pcnsMaxInternalTempExceededDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 1 - ] - }, - "pcnsMaxInternalTempExceededEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 2 - ] - }, - "pcnsMaxInternalTempExceededEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 3 - ] - }, - "pcnsMaxInternalTempExceededCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 4 - ] - }, - "pcnsMaxInternalTempExceededCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 5 - ] - }, - "pcnsMaxInternalTempExceededEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 6 - ] - }, - "pcnsMaxInternalTempExceededShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempExceeded", - 7 - ] - }, - "pcnsMaxInternalTempInRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 27 - ] - }, - "pcnsMaxInternalTempInRangeDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempInRange", - 1 - ] - }, - "pcnsMaxInternalTempInRangeEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMaxInternalTempInRange", - 2 - ] - }, - "pcnsMaxInternalTempInRangeEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMaxInternalTempInRange", - 3 - ] - }, - "pcnsMaxInternalTempInRangeCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempInRange", - 4 - ] - }, - "pcnsMaxInternalTempInRangeCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMaxInternalTempInRange", - 5 - ] - }, - "pcnsMinLoadCapabilityLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 28 - ] - }, - "pcnsMinLoadCapabilityLostDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 1 - ] - }, - "pcnsMinLoadCapabilityLostEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 2 - ] - }, - "pcnsMinLoadCapabilityLostEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 3 - ] - }, - "pcnsMinLoadCapabilityLostCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 4 - ] - }, - "pcnsMinLoadCapabilityLostCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 5 - ] - }, - "pcnsMinLoadCapabilityLostEnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 6 - ] - }, - "pcnsMinLoadCapabilityLostShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityLost", - 7 - ] - }, - "pcnsMinLoadCapabilityRegained": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 29 - ] - }, - "pcnsMinLoadCapabilityRegainedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityRegained", - 1 - ] - }, - "pcnsMinLoadCapabilityRegainedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityRegained", - 2 - ] - }, - "pcnsMinLoadCapabilityRegainedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityRegained", - 3 - ] - }, - "pcnsMinLoadCapabilityRegainedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityRegained", - 4 - ] - }, - "pcnsMinLoadCapabilityRegainedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsMinLoadCapabilityRegained", - 5 - ] - }, - "pcnsEnvironmentCommunicationEstablished": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 30 - ] - }, - "pcnsEnvironmentCommunicationEstablishedDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationEstablished", - 1 - ] - }, - "pcnsEnvironmentCommunicationEstablishedEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationEstablished", - 2 - ] - }, - "pcnsEnvironmentCommunicationEstablishedEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationEstablished", - 3 - ] - }, - "pcnsEnvironmentCommunicationEstablishedCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationEstablished", - 4 - ] - }, - "pcnsEnvironmentCommunicationEstablishedCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationEstablished", - 5 - ] - }, - "pcnsEnvironmentCommunicationLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 31 - ] - }, - "pcnsEnvironmentCommunicationLostDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationLost", - 1 - ] - }, - "pcnsEnvironmentCommunicationLostEnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationLost", - 2 - ] - }, - "pcnsEnvironmentCommunicationLostEnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationLost", - 3 - ] - }, - "pcnsEnvironmentCommunicationLostCommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationLost", - 4 - ] - }, - "pcnsEnvironmentCommunicationLostCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsEnvironmentCommunicationLost", - 5 - ] - }, - "pcnsTempInRangeProbe1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 32 - ] - }, - "pcnsTempInRangeProbe1Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe1", - 1 - ] - }, - "pcnsTempInRangeProbe1EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe1", - 2 - ] - }, - "pcnsTempInRangeProbe1EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe1", - 3 - ] - }, - "pcnsTempInRangeProbe1CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe1", - 4 - ] - }, - "pcnsTempInRangeProbe1CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe1", - 5 - ] - }, - "pcnsTempOutOfRangeProbe1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 33 - ] - }, - "pcnsTempOutOfRangeProbe1Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 1 - ] - }, - "pcnsTempOutOfRangeProbe1EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 2 - ] - }, - "pcnsTempOutOfRangeProbe1EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 3 - ] - }, - "pcnsTempOutOfRangeProbe1CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 4 - ] - }, - "pcnsTempOutOfRangeProbe1CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 5 - ] - }, - "pcnsTempOutOfRangeProbe1EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 6 - ] - }, - "pcnsTempOutOfRangeProbe1ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe1", - 7 - ] - }, - "pcnsHumidityInRangeProbe1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 34 - ] - }, - "pcnsHumidityInRangeProbe1Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe1", - 1 - ] - }, - "pcnsHumidityInRangeProbe1EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe1", - 2 - ] - }, - "pcnsHumidityInRangeProbe1EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe1", - 3 - ] - }, - "pcnsHumidityInRangeProbe1CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe1", - 4 - ] - }, - "pcnsHumidityInRangeProbe1CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe1", - 5 - ] - }, - "pcnsHumidityOutOfRangeProbe1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 35 - ] - }, - "pcnsHumidityOutOfRangeProbe1Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 1 - ] - }, - "pcnsHumidityOutOfRangeProbe1EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 2 - ] - }, - "pcnsHumidityOutOfRangeProbe1EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 3 - ] - }, - "pcnsHumidityOutOfRangeProbe1CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 4 - ] - }, - "pcnsHumidityOutOfRangeProbe1CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 5 - ] - }, - "pcnsHumidityOutOfRangeProbe1EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 6 - ] - }, - "pcnsHumidityOutOfRangeProbe1ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe1", - 7 - ] - }, - "pcnsTempInRangeProbe2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 36 - ] - }, - "pcnsTempInRangeProbe2Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe2", - 1 - ] - }, - "pcnsTempInRangeProbe2EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe2", - 2 - ] - }, - "pcnsTempInRangeProbe2EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe2", - 3 - ] - }, - "pcnsTempInRangeProbe2CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe2", - 4 - ] - }, - "pcnsTempInRangeProbe2CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsTempInRangeProbe2", - 5 - ] - }, - "pcnsTempOutOfRangeProbe2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 37 - ] - }, - "pcnsTempOutOfRangeProbe2Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 1 - ] - }, - "pcnsTempOutOfRangeProbe2EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 2 - ] - }, - "pcnsTempOutOfRangeProbe2EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 3 - ] - }, - "pcnsTempOutOfRangeProbe2CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 4 - ] - }, - "pcnsTempOutOfRangeProbe2CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 5 - ] - }, - "pcnsTempOutOfRangeProbe2EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 6 - ] - }, - "pcnsTempOutOfRangeProbe2ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsTempOutOfRangeProbe2", - 7 - ] - }, - "pcnsHumidityInRangeProbe2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 38 - ] - }, - "pcnsHumidityInRangeProbe2Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe2", - 1 - ] - }, - "pcnsHumidityInRangeProbe2EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe2", - 2 - ] - }, - "pcnsHumidityInRangeProbe2EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe2", - 3 - ] - }, - "pcnsHumidityInRangeProbe2CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe2", - 4 - ] - }, - "pcnsHumidityInRangeProbe2CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsHumidityInRangeProbe2", - 5 - ] - }, - "pcnsHumidityOutOfRangeProbe2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 39 - ] - }, - "pcnsHumidityOutOfRangeProbe2Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 1 - ] - }, - "pcnsHumidityOutOfRangeProbe2EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 2 - ] - }, - "pcnsHumidityOutOfRangeProbe2EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 3 - ] - }, - "pcnsHumidityOutOfRangeProbe2CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 4 - ] - }, - "pcnsHumidityOutOfRangeProbe2CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 5 - ] - }, - "pcnsHumidityOutOfRangeProbe2EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 6 - ] - }, - "pcnsHumidityOutOfRangeProbe2ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsHumidityOutOfRangeProbe2", - 7 - ] - }, - "pcnsContactFault1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 40 - ] - }, - "pcnsContactFault1Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault1", - 1 - ] - }, - "pcnsContactFault1EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault1", - 2 - ] - }, - "pcnsContactFault1EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault1", - 3 - ] - }, - "pcnsContactFault1CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault1", - 4 - ] - }, - "pcnsContactFault1CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault1", - 5 - ] - }, - "pcnsContactFault1EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault1", - 6 - ] - }, - "pcnsContactFault1ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault1", - 7 - ] - }, - "pcnsContactFault2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 41 - ] - }, - "pcnsContactFault2Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault2", - 1 - ] - }, - "pcnsContactFault2EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault2", - 2 - ] - }, - "pcnsContactFault2EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault2", - 3 - ] - }, - "pcnsContactFault2CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault2", - 4 - ] - }, - "pcnsContactFault2CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault2", - 5 - ] - }, - "pcnsContactFault2EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault2", - 6 - ] - }, - "pcnsContactFault2ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault2", - 7 - ] - }, - "pcnsContactFault3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 42 - ] - }, - "pcnsContactFault3Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault3", - 1 - ] - }, - "pcnsContactFault3EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault3", - 2 - ] - }, - "pcnsContactFault3EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault3", - 3 - ] - }, - "pcnsContactFault3CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault3", - 4 - ] - }, - "pcnsContactFault3CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault3", - 5 - ] - }, - "pcnsContactFault3EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault3", - 6 - ] - }, - "pcnsContactFault3ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault3", - 7 - ] - }, - "pcnsContactFault4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 43 - ] - }, - "pcnsContactFault4Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault4", - 1 - ] - }, - "pcnsContactFault4EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault4", - 2 - ] - }, - "pcnsContactFault4EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault4", - 3 - ] - }, - "pcnsContactFault4CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactFault4", - 4 - ] - }, - "pcnsContactFault4CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault4", - 5 - ] - }, - "pcnsContactFault4EnableShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactFault4", - 6 - ] - }, - "pcnsContactFault4ShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactFault4", - 7 - ] - }, - "pcnsContactNormal1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 44 - ] - }, - "pcnsContactNormal1Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal1", - 1 - ] - }, - "pcnsContactNormal1EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal1", - 2 - ] - }, - "pcnsContactNormal1EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal1", - 3 - ] - }, - "pcnsContactNormal1CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal1", - 4 - ] - }, - "pcnsContactNormal1CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactNormal1", - 5 - ] - }, - "pcnsContactNormal2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 45 - ] - }, - "pcnsContactNormal2Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal2", - 1 - ] - }, - "pcnsContactNormal2EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal2", - 2 - ] - }, - "pcnsContactNormal2EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal2", - 3 - ] - }, - "pcnsContactNormal2CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal2", - 4 - ] - }, - "pcnsContactNormal2CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactNormal2", - 5 - ] - }, - "pcnsContactNormal3": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 46 - ] - }, - "pcnsContactNormal3Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal3", - 1 - ] - }, - "pcnsContactNormal3EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal3", - 2 - ] - }, - "pcnsContactNormal3EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal3", - 3 - ] - }, - "pcnsContactNormal3CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal3", - 4 - ] - }, - "pcnsContactNormal3CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactNormal3", - 5 - ] - }, - "pcnsContactNormal4": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "pcnsEvents", - 47 - ] - }, - "pcnsContactNormal4Desc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal4", - 1 - ] - }, - "pcnsContactNormal4EnableLogging": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal4", - 2 - ] - }, - "pcnsContactNormal4EnableCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsContactNormal4", - 3 - ] - }, - "pcnsContactNormal4CommandFilePath": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsContactNormal4", - 4 - ] - }, - "pcnsContactNormal4CommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsContactNormal4", - 5 - ] - }, - "pcnsShutdownCommandFileEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsShutdown", - 1 - ] - }, - "pcnsShutdownCommandFileDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsShutdown", - 2 - ] - }, - "pcnsShutdownCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsShutdown", - 3 - ] - }, - "pcnsShutdownCommandFileDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsShutdown", - 4 - ] - }, - "pcnsTurnOffUps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsShutdown", - 5 - ] - }, - "pcnsTurnOffSOG": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsShutdown", - 6 - ] - }, - "pcnsRuntimeRemainingThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsShutdown", - 7 - ] - }, - "pcnsRuntimeRemainingCmdFileThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsShutdown", - 8 - ] - }, - "pcnsAdvancedShutdownTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF PCNSAdvancedShutdownEntry" - }, - "index": null, - "value": [ - "pcnsShutdown", - 9 - ] - }, - "pcnsAdvancedShutdownEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "PCNSAdvancedShutdownEntry" - }, - "index": [ - "pcnsAdvancedGroupNo" - ], - "value": [ - "pcnsAdvancedShutdownTable", - 1 - ] - }, - "PCNSAdvancedShutdownEntry": { - "tp": "SEQUENCE" - }, - "pcnsAdvancedGroupNo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 1 - ] - }, - "pcnsAdvancedGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 2 - ] - }, - "pcnsAdvancedGroupNMC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 3 - ] - }, - "pcnsAdvancedShutdownUPSRequiredForLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 4 - ] - }, - "pcnsAdvancedShutdownCommandFileEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 5 - ] - }, - "pcnsAdvancedShutdownCommandFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 6 - ] - }, - "pcnsAdvancedShutdownCommandFileDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 7 - ] - }, - "pcnsAdvancedShutdownPowerchuteServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 8 - ] - }, - "pcnsAdvancedShutdownOnLostRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 9 - ] - }, - "pcnsAdvancedTurnOffUps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 10 - ] - }, - "pcnsAdvancedTurnOffSOG": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "pcnsAdvancedShutdownEntry", - 11 - ] - }, - "pcnsCriticalFlag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "clear" - } - }, - "index": null, - "value": [ - "pcnsAlarms", - 1 - ] - }, - "pcnsCriticalCause": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsAlarms", - 2 - ] - }, - "pcnsNetComsLostFlag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "clear" - } - }, - "index": null, - "value": [ - "pcnsAlarms", - 3 - ] - }, - "pcnsNMCComsLostFlag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "clear" - } - }, - "index": null, - "value": [ - "pcnsAlarms", - 4 - ] - }, - "pcnsUpdateAvailableFlag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "clear" - } - }, - "index": null, - "value": [ - "pcnsAlarms", - 5 - ] - }, - "pcnsUpdateDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "pcnsAlarms", - 6 - ] - }, - "upsBasicIdentModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsBasicIdent", - 1 - ] - }, - "upsBasicIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsBasicIdent", - 2 - ] - }, - "upsAdvIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvIdent", - 1 - ] - }, - "upsAdvIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvIdent", - 2 - ] - }, - "upsAdvIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvIdent", - 3 - ] - }, - "upsAdvIdentFirmwareRevision2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvIdent", - 4 - ] - }, - "upsAdvIdentSkuNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvIdent", - 5 - ] - }, - "upsBasicBatteryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "batteryNormal", - "3": "batteryLow", - "4": "batteryInFaultCondition" - } - }, - "index": null, - "value": [ - "upsBasicBattery", - 1 - ] - }, - "upsBasicBatteryTimeOnBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsBasicBattery", - 2 - ] - }, - "upsBasicBatteryLastReplaceDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsBasicBattery", - 3 - ] - }, - "upsAdvBatteryCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvBattery", - 1 - ] - }, - "upsAdvBatteryTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvBattery", - 2 - ] - }, - "upsAdvBatteryRunTimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvBattery", - 3 - ] - }, - "upsAdvBatteryReplaceIndicator": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noBatteryNeedsReplacing", - "2": "batteryNeedsReplacing" - } - }, - "index": null, - "value": [ - "upsAdvBattery", - 4 - ] - }, - "upsAdvBatteryNumOfBattPacks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 5 - ] - }, - "upsAdvBatteryNumOfBadBattPacks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 6 - ] - }, - "upsAdvBatteryNominalVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 7 - ] - }, - "upsAdvBatteryActualVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 8 - ] - }, - "upsAdvBatteryCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 9 - ] - }, - "upsAdvTotalDCCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 10 - ] - }, - "upsAdvBatteryFullCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 11 - ] - }, - "upsAdvBatteryActualVoltageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSAdvBatteryActualVoltageEntry" - }, - "index": null, - "value": [ - "upsAdvBattery", - 12 - ] - }, - "upsAdvBatteryActualVoltageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSAdvBatteryActualVoltageEntry" - }, - "index": [ - "upsAdvBatteryActualVoltageTableIndex" - ], - "value": [ - "upsAdvBatteryActualVoltageTable", - 1 - ] - }, - "UPSAdvBatteryActualVoltageEntry": { - "tp": "SEQUENCE" - }, - "upsAdvBatteryActualVoltageTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBatteryActualVoltageEntry", - 1 - ] - }, - "upsAdvBatteryActualVoltagePolarity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "positive", - "1": "negative" - } - }, - "index": null, - "value": [ - "upsAdvBatteryActualVoltageEntry", - 2 - ] - }, - "upsAdvBatteryFrameActualVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBatteryActualVoltageEntry", - 3 - ] - }, - "upsAdvTotalDCCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSAdvTotalDCCurrentEntry" - }, - "index": null, - "value": [ - "upsAdvBattery", - 13 - ] - }, - "upsAdvTotalDCCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSAdvTotalDCCurrentEntry" - }, - "index": [ - "upsAdvTotalDCCurrentTableIndex" - ], - "value": [ - "upsAdvTotalDCCurrentTable", - 1 - ] - }, - "UPSAdvTotalDCCurrentEntry": { - "tp": "SEQUENCE" - }, - "upsAdvTotalDCCurrentTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvTotalDCCurrentEntry", - 1 - ] - }, - "upsAdvTotalDCCurrentPolarity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "positive", - "1": "negative" - } - }, - "index": null, - "value": [ - "upsAdvTotalDCCurrentEntry", - 2 - ] - }, - "upsAdvTotalFrameDCCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvTotalDCCurrentEntry", - 3 - ] - }, - "upsAdvBatteryCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSAdvBatteryCurrentEntry" - }, - "index": null, - "value": [ - "upsAdvBattery", - 14 - ] - }, - "upsAdvBatteryCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSAdvBatteryCurrentEntry" - }, - "index": [ - "upsAdvBatteryCurrentTableIndex", - "upsAdvBatteryCurrentIndex" - ], - "value": [ - "upsAdvBatteryCurrentTable", - 1 - ] - }, - "UPSAdvBatteryCurrentEntry": { - "tp": "SEQUENCE" - }, - "upsAdvBatteryCurrentTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBatteryCurrentEntry", - 1 - ] - }, - "upsAdvBatteryCurrentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBatteryCurrentEntry", - 2 - ] - }, - "upsAdvBatteryCurrentPolarity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "positive", - "1": "negative" - } - }, - "index": null, - "value": [ - "upsAdvBatteryCurrentEntry", - 3 - ] - }, - "upsAdvBatteryFrameCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBatteryCurrentEntry", - 4 - ] - }, - "upsAdvBatteryEstimatedChargeTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvBattery", - 15 - ] - }, - "upsAdvBatteryPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvBattery", - 16 - ] - }, - "upsAdvBatteryChargerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "inFaultCondition" - } - }, - "index": null, - "value": [ - "upsAdvBattery", - 17 - ] - }, - "upsAdvBatteryInternalSKU": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvBattery", - 19 - ] - }, - "upsAdvBatteryExternalSKU": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvBattery", - 20 - ] - }, - "upsAdvBatteryRecommendedReplaceDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvBattery", - 21 - ] - }, - "upsHighPrecBatteryCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 1 - ] - }, - "upsHighPrecBatteryTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 2 - ] - }, - "upsHighPrecBatteryNominalVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 3 - ] - }, - "upsHighPrecBatteryActualVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 4 - ] - }, - "upsHighPrecBatteryCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 5 - ] - }, - "upsHighPrecTotalDCCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 6 - ] - }, - "upsHighPrecBatteryActualVoltageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSHighPrecBatteryActualVoltageEntry" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 7 - ] - }, - "upsHighPrecBatteryActualVoltageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSHighPrecBatteryActualVoltageEntry" - }, - "index": [ - "upsHighPrecBatteryActualVoltageTableIndex" - ], - "value": [ - "upsHighPrecBatteryActualVoltageTable", - 1 - ] - }, - "UPSHighPrecBatteryActualVoltageEntry": { - "tp": "SEQUENCE" - }, - "upsHighPrecBatteryActualVoltageTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryActualVoltageEntry", - 1 - ] - }, - "upsHighPrecBatteryActualVoltagePolarity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "positive", - "1": "negative" - } - }, - "index": null, - "value": [ - "upsHighPrecBatteryActualVoltageEntry", - 2 - ] - }, - "upsHighPrecBatteryVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryActualVoltageEntry", - 3 - ] - }, - "upsHighPrecTotalDCCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSHighPrecTotalDCCurrentEntry" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 8 - ] - }, - "upsHighPrecTotalDCCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSHighPrecTotalDCCurrentEntry" - }, - "index": [ - "upsHighPrecTotalDCCurrentTableIndex" - ], - "value": [ - "upsHighPrecTotalDCCurrentTable", - 1 - ] - }, - "UPSHighPrecTotalDCCurrentEntry": { - "tp": "SEQUENCE" - }, - "upsHighPrecTotalDCCurrentTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecTotalDCCurrentEntry", - 1 - ] - }, - "upsHighPrecTotalDCCurrentPolarity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "positive", - "1": "negative" - } - }, - "index": null, - "value": [ - "upsHighPrecTotalDCCurrentEntry", - 2 - ] - }, - "upsHighPrecTotalDCFrameCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecTotalDCCurrentEntry", - 3 - ] - }, - "upsHighPrecBatteryCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSHighPrecBatteryCurrentEntry" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 9 - ] - }, - "upsHighPrecBatteryCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSHighPrecBatteryCurrentEntry" - }, - "index": [ - "upsHighPrecBatteryCurrentTableIndex", - "upsHighPrecBatteryCurrentIndex" - ], - "value": [ - "upsHighPrecBatteryCurrentTable", - 1 - ] - }, - "UPSHighPrecBatteryCurrentEntry": { - "tp": "SEQUENCE" - }, - "upsHighPrecBatteryCurrentTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryCurrentEntry", - 1 - ] - }, - "upsHighPrecBatteryCurrentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryCurrentEntry", - 2 - ] - }, - "upsHighPrecBatteryCurrentPolarity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "positive", - "1": "negative" - } - }, - "index": null, - "value": [ - "upsHighPrecBatteryCurrentEntry", - 3 - ] - }, - "upsHighPrecBatteryFrameCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryCurrentEntry", - 4 - ] - }, - "upsHighPrecBatteryPacks": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsHighPrecBattery", - 10 - ] - }, - "upsHighPrecBatteryPackTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPacks", - 1 - ] - }, - "upsHighPrecBatteryPackTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSHighPrecBatteryPackEntry" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPacks", - 2 - ] - }, - "upsHighPrecBatteryPackEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSHighPrecBatteryPackEntry" - }, - "index": [ - "upsHighPrecBatteryPackIndex", - "upsHighPrecBatteryCartridgeIndex" - ], - "value": [ - "upsHighPrecBatteryPackTable", - 1 - ] - }, - "UPSHighPrecBatteryPackEntry": { - "tp": "SEQUENCE" - }, - "upsHighPrecBatteryPackIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 1 - ] - }, - "upsHighPrecBatteryCartridgeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 2 - ] - }, - "upsHighPrecBatteryPackFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 3 - ] - }, - "upsHighPrecBatteryPackSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 4 - ] - }, - "upsHighPrecBatteryPackTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 5 - ] - }, - "upsHighPrecBatteryPackStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 6 - ] - }, - "upsHighPrecBatteryPackCartridgeHealth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 7 - ] - }, - "upsHighPrecBatteryPackCartridgeReplaceDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 8 - ] - }, - "upsHighPrecBatteryPackCartridgeInstallDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 9 - ] - }, - "upsHighPrecBatteryPackCartridgeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "upsHighPrecBatteryPackEntry", - 10 - ] - }, - "upsHighPrecBatteryHealth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "upsHighPrecBattery", - 11 - ] - }, - "upsBasicInputPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBasicInput", - 1 - ] - }, - "upsAdvInputLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvInput", - 1 - ] - }, - "upsAdvInputMaxLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvInput", - 2 - ] - }, - "upsAdvInputMinLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvInput", - 3 - ] - }, - "upsAdvInputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvInput", - 4 - ] - }, - "upsAdvInputLineFailCause": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noTransfer", - "2": "highLineVoltage", - "3": "brownout", - "4": "blackout", - "5": "smallMomentarySag", - "6": "deepMomentarySag", - "7": "smallMomentarySpike", - "8": "largeMomentarySpike", - "9": "selfTest", - "10": "rateOfVoltageChange" - } - }, - "index": null, - "value": [ - "upsAdvInput", - 5 - ] - }, - "upsAdvInputNominalFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 6 - ] - }, - "upsAdvInputNominalVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 7 - ] - }, - "upsAdvInputBypassNominalFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 8 - ] - }, - "upsAdvInputBypassNominalVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 9 - ] - }, - "upsAdvInputStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsAdvInputStatisticsEntry" - }, - "index": null, - "value": [ - "upsAdvInput", - 10 - ] - }, - "upsAdvInputStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsAdvInputStatisticsEntry" - }, - "index": [ - "upsAdvInputStatisticsIndex" - ], - "value": [ - "upsAdvInputStatisticsTable", - 1 - ] - }, - "UpsAdvInputStatisticsEntry": { - "tp": "SEQUENCE" - }, - "upsAdvInputStatisticsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 1 - ] - }, - "upsAdvInputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 2 - ] - }, - "upsAdvInputVoltageTHD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 3 - ] - }, - "upsAdvInputBypassVoltageTHD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 4 - ] - }, - "upsAdvInputPeakCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 5 - ] - }, - "upsAdvInputBypassPeakCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 6 - ] - }, - "upsAdvInputActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInputStatisticsEntry", - 7 - ] - }, - "upsAdvInputTotalApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 11 - ] - }, - "upsAdvInputTotalActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 12 - ] - }, - "upsAdvInputBypassTotalApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 13 - ] - }, - "upsAdvInputBypassTotalActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvInput", - 14 - ] - }, - "upsAdvInputEnergyUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "upsAdvInput", - 15 - ] - }, - "upsHighPrecInputLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 1 - ] - }, - "upsHighPrecInputMaxLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 2 - ] - }, - "upsHighPrecInputMinLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 3 - ] - }, - "upsHighPrecInputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 4 - ] - }, - "upsHighPrecInputEnergyUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 5 - ] - }, - "upsHighPrecInputBypassVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 6 - ] - }, - "upsHighPrecInputBypassFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "upsHighPrecInput", - 7 - ] - }, - "upsBasicOutputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "onLine", - "3": "onBattery", - "4": "onSmartBoost", - "5": "timedSleeping", - "6": "softwareBypass", - "7": "off", - "8": "rebooting", - "9": "switchedBypass", - "10": "hardwareFailureBypass", - "11": "sleepingUntilPowerReturn", - "12": "onSmartTrim", - "13": "ecoMode", - "14": "hotStandby", - "15": "onBatteryTest", - "16": "emergencyStaticBypass", - "17": "staticBypassStandby", - "18": "powerSavingMode", - "19": "spotMode", - "20": "eConversion", - "21": "chargerSpotmode", - "22": "inverterSpotmode" - } - }, - "index": null, - "value": [ - "upsBasicOutput", - 1 - ] - }, - "upsBasicOutputPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBasicOutput", - 2 - ] - }, - "upsBasicSystemStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "onLine", - "3": "onBattery", - "4": "onSmartBoost", - "5": "timedSleeping", - "6": "softwareBypass", - "7": "off", - "8": "rebooting", - "9": "switchedBypass", - "10": "hardwareFailureBypass", - "11": "sleepingUntilPowerReturn", - "12": "onSmartTrim", - "13": "ecoMode", - "14": "inverter", - "15": "eConversion", - "16": "staticBypassStandby" - } - }, - "index": null, - "value": [ - "upsBasicOutput", - 3 - ] - }, - "upsBasicSystemInternalTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBasicOutput", - 4 - ] - }, - "upsBasicSystemInverterStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "inFaultCondition" - } - }, - "index": null, - "value": [ - "upsBasicOutput", - 5 - ] - }, - "upsBasicSystemPFCStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "ok", - "3": "inFaultCondition" - } - }, - "index": null, - "value": [ - "upsBasicOutput", - 6 - ] - }, - "upsBasicOutputACwiringConfiguration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "noNeutralWiredonSystem", - "3": "neutralUsedforSupplyingLoad" - } - }, - "index": null, - "value": [ - "upsBasicOutput", - 7 - ] - }, - "upsAdvOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvOutput", - 1 - ] - }, - "upsAdvOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvOutput", - 2 - ] - }, - "upsAdvOutputLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvOutput", - 3 - ] - }, - "upsAdvOutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvOutput", - 4 - ] - }, - "upsAdvOutputRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsAdvOutput", - 5 - ] - }, - "upsAdvOutputKVACapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutput", - 6 - ] - }, - "upsAdvOutputNominalFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutput", - 7 - ] - }, - "upsAdvOutputActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutput", - 8 - ] - }, - "upsAdvOutputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutput", - 9 - ] - }, - "upsAdvOutputStatisticsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsAdvOutputStatisticsEntry" - }, - "index": null, - "value": [ - "upsAdvOutput", - 10 - ] - }, - "upsAdvOutputStatisticsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsAdvOutputStatisticsEntry" - }, - "index": [ - "upsAdvOutputStatisticsIndex" - ], - "value": [ - "upsAdvOutputStatisticsTable", - 1 - ] - }, - "UpsAdvOutputStatisticsEntry": { - "tp": "SEQUENCE" - }, - "upsAdvOutputStatisticsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutputStatisticsEntry", - 1 - ] - }, - "upsAdvOutputPeakCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutputStatisticsEntry", - 2 - ] - }, - "upsAdvOutputCurrentTHD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutputStatisticsEntry", - 3 - ] - }, - "upsAdvOutputCrestFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutputStatisticsEntry", - 4 - ] - }, - "upsAdvOutputNeutralCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvOutput", - 11 - ] - }, - "upsAdvOutputEnergyUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "upsAdvOutput", - 12 - ] - }, - "upsHighPrecOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecOutput", - 1 - ] - }, - "upsHighPrecOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecOutput", - 2 - ] - }, - "upsHighPrecOutputLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecOutput", - 3 - ] - }, - "upsHighPrecOutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "upsHighPrecOutput", - 4 - ] - }, - "upsHighPrecOutputEfficiency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "upsHighPrecOutput", - 5 - ] - }, - "upsHighPrecOutputEnergyUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "upsHighPrecOutput", - 6 - ] - }, - "upsBasicConfigNumDevices": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBasicConfig", - 1 - ] - }, - "upsBasicConfigDeviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsBasicConfigDeviceEntry" - }, - "index": null, - "value": [ - "upsBasicConfig", - 2 - ] - }, - "upsBasicConfigDeviceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsBasicConfigDeviceEntry" - }, - "index": [ - "deviceIndex" - ], - "value": [ - "upsBasicConfigDeviceTable", - 1 - ] - }, - "UpsBasicConfigDeviceEntry": { - "tp": "SEQUENCE" - }, - "deviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBasicConfigDeviceEntry", - 1 - ] - }, - "deviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsBasicConfigDeviceEntry", - 2 - ] - }, - "vaRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBasicConfigDeviceEntry", - 3 - ] - }, - "acceptThisDevice": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "upsBasicConfigDeviceEntry", - 4 - ] - }, - "upsAdvConfigRatedOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 1 - ] - }, - "upsAdvConfigHighTransferVolt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 2 - ] - }, - "upsAdvConfigLowTransferVolt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 3 - ] - }, - "upsAdvConfigAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "timed", - "2": "atLowBattery", - "3": "never", - "4": "mute" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 4 - ] - }, - "upsAdvConfigAlarmTimer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 5 - ] - }, - "upsAdvConfigMinReturnCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 6 - ] - }, - "upsAdvConfigSensitivity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "auto", - "2": "low", - "3": "medium", - "4": "high" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 7 - ] - }, - "upsAdvConfigLowBatteryRunTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 8 - ] - }, - "upsAdvConfigReturnDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 9 - ] - }, - "upsAdvConfigShutoffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 10 - ] - }, - "upsAdvConfigUpsSleepTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 11 - ] - }, - "upsAdvConfigSetEEPROMDefaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noSetEEPROMDefaults", - "2": "setEEPROMDefaults" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 12 - ] - }, - "upsAdvConfigDipSwitchTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsAdvConfigDipSwitchEntry" - }, - "index": null, - "value": [ - "upsAdvConfig", - 13 - ] - }, - "upsAdvConfigDipSwitchEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsAdvConfigDipSwitchEntry" - }, - "index": [ - "dipSwitchIndex" - ], - "value": [ - "upsAdvConfigDipSwitchTable", - 1 - ] - }, - "UpsAdvConfigDipSwitchEntry": { - "tp": "SEQUENCE" - }, - "dipSwitchIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfigDipSwitchEntry", - 1 - ] - }, - "dipSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off" - } - }, - "index": null, - "value": [ - "upsAdvConfigDipSwitchEntry", - 2 - ] - }, - "upsAdvConfigBattExhaustThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 14 - ] - }, - "upsAdvConfigPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvConfig", - 15 - ] - }, - "upsAdvConfigAllowedSetTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsAdvConfigAllowedSetEntry" - }, - "index": null, - "value": [ - "upsAdvConfig", - 16 - ] - }, - "upsAdvConfigAllowedSetEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsAdvConfigAllowedSetEntry" - }, - "index": [ - "apcUpsConfigFieldIndex" - ], - "value": [ - "upsAdvConfigAllowedSetTable", - 1 - ] - }, - "UpsAdvConfigAllowedSetEntry": { - "tp": "SEQUENCE" - }, - "apcUpsConfigFieldIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfigAllowedSetEntry", - 1 - ] - }, - "apcUpsConfigFieldOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "upsAdvConfigAllowedSetEntry", - 2 - ] - }, - "apcUpsConfigFieldValueRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvConfigAllowedSetEntry", - 3 - ] - }, - "upsAdvConfigBattCabAmpHour": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 17 - ] - }, - "upsAdvConfigPositionSelector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "rack", - "3": "tower" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 18 - ] - }, - "upsAdvConfigOutputFreqRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "freqRangeAUTO", - "3": "freqRange60Var1", - "4": "freqRange60Var3", - "5": "freqRange50Var1", - "6": "freqRange50Var3", - "7": "freqRange60Var10", - "8": "freqRange50Var10", - "9": "freqRange60Var1dot0", - "10": "freqRange50Var1dot0", - "11": "freqRange50Pct0dot5", - "12": "freqRange50Pct1", - "13": "freqRange50Pct2", - "14": "freqRange50Pct4", - "15": "freqRange50Pct6", - "16": "freqRange50Pct8", - "17": "freqRange60Pct0dot5", - "18": "freqRange60Pct1", - "19": "freqRange60Pct2", - "20": "freqRange60Pct4", - "21": "freqRange60Pct6", - "22": "freqRange60Pct8" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 19 - ] - }, - "upsAdvConfigUPSFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "gotoBypass", - "3": "dropLoad" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 20 - ] - }, - "upsAdvConfigAlarmRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 21 - ] - }, - "upsAdvConfigAlarmLoadOver": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 22 - ] - }, - "upsAdvConfigAlarmRuntimeUnder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 23 - ] - }, - "upsAdvConfigVoutReporting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "voutAUTO", - "3": "vout208", - "4": "vout240" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 24 - ] - }, - "upsAdvConfigNumExternalBatteries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 25 - ] - }, - "upsAdvConfigSimpleSignalShutdowns": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 26 - ] - }, - "upsAdvConfigMaxShutdownTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 27 - ] - }, - "upsAsiUpsControlServerRequestShutdown": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "serverShutdownOff", - "2": "serverShutdownReboot" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 28 - ] - }, - "upsAdvConfigMinReturnRuntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 29 - ] - }, - "upsAdvConfigBasicSignalLowBatteryDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "upsAdvConfig", - 30 - ] - }, - "upsAdvConfigBypassPhaseLockRequired": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 31 - ] - }, - "upsAdvConfigOutputFreqSlewRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "slewRateQuarterHzPerSec", - "3": "slewRateHalfHzPerSec", - "4": "slewRate1HzPerSec", - "5": "slewRate2HzPerSec", - "6": "slewRate4HzPerSec", - "7": "slewRate6HzPerSec" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 32 - ] - }, - "upsAdvConfigChargerLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "low", - "3": "high" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 33 - ] - }, - "upsAdvConfigBypassToleranceSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "wide", - "3": "medium", - "4": "narrow", - "5": "custom" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 34 - ] - }, - "upsAdvConfigMainsSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "singleInput", - "2": "dualInput" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 35 - ] - }, - "upsAdvConfigACWiringSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "threeWire", - "2": "fourWire" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 36 - ] - }, - "upsAdvConfigUpperOutputVoltTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 37 - ] - }, - "upsAdvConfigLowerOutputVoltTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 38 - ] - }, - "upsAdvConfigUpperBypassVoltTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 39 - ] - }, - "upsAdvConfigLowerBypassVoltTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 40 - ] - }, - "upsAdvConfigOutofSyncBypassTransferDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 41 - ] - }, - "upsAdvConfigWarningAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 43 - ] - }, - "upsAdvConfigInformationalAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 44 - ] - }, - "upsAdvConfigGreenMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 45 - ] - }, - "upsAdvConfigLCDLocalLanguage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "english", - "2": "french", - "3": "italian", - "4": "german", - "5": "spanish", - "6": "portuguese", - "7": "japanese" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 46 - ] - }, - "upsAdvConfigLCDLockOut": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 47 - ] - }, - "upsAdvConfigChargerRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 48 - ] - }, - "upsAdvConfigBatterySelection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "vrla", - "2": "ventedcell" - } - }, - "index": null, - "value": [ - "upsAdvConfig", - 49 - ] - }, - "upsAdvConfigBatteryHealthAlarmWarningTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 50 - ] - }, - "upsAdvConfigBatteryHealthAlarmSleepTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 51 - ] - }, - "upsAdvConfigSignalFlashVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 52 - ] - }, - "upsAdvConfigBatteryTemperatureCompensation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvConfig", - 53 - ] - }, - "upsSCGMembershipGroupNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSyncCtrlGroupConfig", - 1 - ] - }, - "upsSCGActiveMembershipStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabledSCG", - "2": "disabledSCG" - } - }, - "index": null, - "value": [ - "upsSyncCtrlGroupConfig", - 2 - ] - }, - "upsSCGPowerSynchronizationDelayTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSyncCtrlGroupConfig", - 3 - ] - }, - "upsSCGReturnBatteryCapacityOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSyncCtrlGroupConfig", - 4 - ] - }, - "upsSCGMultiCastIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsSyncCtrlGroupConfig", - 5 - ] - }, - "upsSCGNumOfGroupMembers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSyncCtrlGroupStatus", - 1 - ] - }, - "upsSCGStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsSCGStatusEntry" - }, - "index": null, - "value": [ - "upsSyncCtrlGroupStatus", - 2 - ] - }, - "upsSCGStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsSCGStatusEntry" - }, - "index": [ - "upsSCGStatusTableIndex" - ], - "value": [ - "upsSCGStatusTable", - 1 - ] - }, - "UpsSCGStatusEntry": { - "tp": "SEQUENCE" - }, - "upsSCGStatusTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSCGStatusEntry", - 1 - ] - }, - "upsSCGMemberIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "upsSCGStatusEntry", - 2 - ] - }, - "upsSCGACInputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "acInGood", - "2": "acInBad" - } - }, - "index": null, - "value": [ - "upsSCGStatusEntry", - 3 - ] - }, - "upsSCGACOutputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "acOutOn", - "2": "acOutOff" - } - }, - "index": null, - "value": [ - "upsSCGStatusEntry", - 4 - ] - }, - "upsBasicStateOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsBasicState", - 1 - ] - }, - "upsAdvStateAbnormalConditions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 1 - ] - }, - "upsAdvStateSymmetra3PhaseSpecificFaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 2 - ] - }, - "upsAdvStateDP300ESpecificFaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 3 - ] - }, - "upsAdvStateSymmetraSpecificFaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 4 - ] - }, - "upsAdvStateSmartUPSSpecificFaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 5 - ] - }, - "upsAdvStateSystemMessages": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 6 - ] - }, - "upsAdvStateTotaltimeonbattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 7 - ] - }, - "upsAdvStateTotaltimeonbypass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 8 - ] - }, - "upsAdvStateTotaltimeonNormal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvState", - 9 - ] - }, - "upsAdvStateNumberoftimesonbattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvState", - 10 - ] - }, - "upsAdvStateNumberoftimesbypass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvState", - 11 - ] - }, - "upsAdvStateNumberoftimesNormal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsAdvState", - 12 - ] - }, - "upsAdvStateEcomode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOnEcoMode", - "2": "upsNotOnEcoMode" - } - }, - "index": null, - "value": [ - "upsAdvState", - 13 - ] - }, - "upsBasicControlConserveBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noTurnOffUps", - "2": "turnOffUpsToConserveBattery" - } - }, - "index": null, - "value": [ - "upsBasicControl", - 1 - ] - }, - "upsAdvControlUpsOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noTurnUpsOff", - "2": "turnUpsOff", - "3": "turnUpsOffGracefully", - "4": "turnUpsSyncGroupOff", - "5": "turnUpsSyncGroupOffAfterDelay", - "6": "turnUpsSyncGroupOffGracefully" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 1 - ] - }, - "upsAdvControlRebootShutdownUps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noRebootShutdownUps", - "2": "rebootShutdownUps", - "3": "rebootShutdownUpsGracefully", - "4": "rebootShutdownSyncGroupUps", - "5": "rebootShutdownSyncGroupUpsGracefully" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 2 - ] - }, - "upsAdvControlUpsSleep": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noPutUpsToSleep", - "2": "putUpsToSleep", - "3": "putUpsToSleepGracefully", - "4": "putUpsSyncGroupToSleep", - "5": "putUpsSyncGroupToSleepGracefully" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 3 - ] - }, - "upsAdvControlSimulatePowerFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noSimulatePowerFailure", - "2": "simulatePowerFailure" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 4 - ] - }, - "upsAdvControlFlashAndBeep": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noFlashAndBeep", - "2": "flashAndBeep", - "3": "flashAndBeepSyncGroup", - "4": "flashAndBeepCont", - "5": "flashAndBeepCancel" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 5 - ] - }, - "upsAdvControlTurnOnUPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noTurnOnUPS", - "2": "turnOnUPS", - "3": "turnOnUPSSyncGroup" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 6 - ] - }, - "upsAdvControlBypassSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noBypassSwitch", - "2": "switchToBypass", - "3": "switchOutOfBypass" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 7 - ] - }, - "upsAdvControlRebootUpsWithOrWithoutAC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noRebootUpsWithOrWithoutAC", - "2": "rebootUpsImmediatelyWithOrWithoutAC", - "3": "rebootUpsDelayedWithOrWithoutAC" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 8 - ] - }, - "upsAdvControlFirmwareUpdate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noFirmwareUpdate", - "2": "firmwareUpdate", - "3": "updateInProcess", - "4": "updateSuccessful", - "5": "updateFailed" - } - }, - "index": null, - "value": [ - "upsAdvControl", - 9 - ] - }, - "upsAdvTestDiagnosticSchedule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "biweekly", - "3": "weekly", - "4": "atTurnOn", - "5": "never", - "6": "fourWeeks", - "7": "twelveWeeks", - "8": "biweeklySinceLastTest", - "9": "weeklySinceLastTest", - "10": "eightWeeks", - "11": "twentysixWeeks", - "12": "fiftytwoWeeks" - } - }, - "index": null, - "value": [ - "upsAdvTest", - 1 - ] - }, - "upsAdvTestDiagnostics": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noTestDiagnostics", - "2": "testDiagnostics" - } - }, - "index": null, - "value": [ - "upsAdvTest", - 2 - ] - }, - "upsAdvTestDiagnosticsResults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "failed", - "3": "invalidTest", - "4": "testInProgress" - } - }, - "index": null, - "value": [ - "upsAdvTest", - 3 - ] - }, - "upsAdvTestLastDiagnosticsDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvTest", - 4 - ] - }, - "upsAdvTestRuntimeCalibration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noPerformCalibration", - "2": "performCalibration", - "3": "cancelCurrentCalibration" - } - }, - "index": null, - "value": [ - "upsAdvTest", - 5 - ] - }, - "upsAdvTestCalibrationResults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "invalidCalibration", - "3": "calibrationInProgress" - } - }, - "index": null, - "value": [ - "upsAdvTest", - 6 - ] - }, - "upsAdvTestCalibrationDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvTest", - 7 - ] - }, - "upsAdvTestDiagnosticTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsAdvTest", - 8 - ] - }, - "upsAdvTestDiagnosticDay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "monday", - "2": "tuesday", - "3": "wednesday", - "4": "thursday", - "5": "friday", - "6": "saturday", - "7": "sunday" - } - }, - "index": null, - "value": [ - "upsAdvTest", - 9 - ] - }, - "upsCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "noComm" - } - }, - "index": null, - "value": [ - "upsComm", - 1 - ] - }, - "upsOutputRelayStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutputRelays", - 1 - ] - }, - "upsOutputRelayStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSOutputRelayStatusEntry" - }, - "index": null, - "value": [ - "upsOutputRelays", - 2 - ] - }, - "upsOutputRelayStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSOutputRelayStatusEntry" - }, - "index": [ - "upsOutputRelayIndex" - ], - "value": [ - "upsOutputRelayStatusTable", - 1 - ] - }, - "UPSOutputRelayStatusEntry": { - "tp": "SEQUENCE" - }, - "upsOutputRelayIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutputRelayStatusEntry", - 1 - ] - }, - "upsOutputRelayState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outputRelayNormalState", - "2": "outputRelayAbnormalState" - } - }, - "index": null, - "value": [ - "upsOutputRelayStatusEntry", - 2 - ] - }, - "mUpsEnvironAmbientTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mUpsEnviron", - 1 - ] - }, - "mUpsEnvironRelativeHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mUpsEnviron", - 2 - ] - }, - "mUpsEnvironAmbientTemperature2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mUpsEnviron", - 3 - ] - }, - "mUpsEnvironRelativeHumidity2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "mUpsEnviron", - 4 - ] - }, - "mUpsContactNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mUpsContact", - 1 - ] - }, - "mUpsContactTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MUpsContactEntry" - }, - "index": null, - "value": [ - "mUpsContact", - 2 - ] - }, - "mUpsContactEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MUpsContactEntry" - }, - "index": [ - "contactNumber" - ], - "value": [ - "mUpsContactTable", - 1 - ] - }, - "MUpsContactEntry": { - "tp": "SEQUENCE" - }, - "contactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "mUpsContactEntry", - 1 - ] - }, - "normalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "open", - "3": "closed" - } - }, - "index": null, - "value": [ - "mUpsContactEntry", - 2 - ] - }, - "description": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "mUpsContactEntry", - 3 - ] - }, - "monitoringStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "enabled", - "3": "disabled" - } - }, - "index": null, - "value": [ - "mUpsContactEntry", - 4 - ] - }, - "currentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "noFault", - "3": "fault" - } - }, - "index": null, - "value": [ - "mUpsContactEntry", - 5 - ] - }, - "upsPhaseResetMaxMinValues": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "reset" - } - }, - "index": null, - "value": [ - "upsPhaseResetValues", - 1 - ] - }, - "upsPhaseNumInputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInput", - 1 - ] - }, - "upsPhaseInputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsPhaseInputEntry" - }, - "index": null, - "value": [ - "upsPhaseInput", - 2 - ] - }, - "upsPhaseInputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsPhaseInputEntry" - }, - "index": [ - "upsPhaseInputTableIndex" - ], - "value": [ - "upsPhaseInputTable", - 1 - ] - }, - "UpsPhaseInputEntry": { - "tp": "SEQUENCE" - }, - "upsPhaseInputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputEntry", - 1 - ] - }, - "upsPhaseNumInputPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputEntry", - 2 - ] - }, - "upsPhaseInputVoltageOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "singlePhase", - "3": "splitPhase", - "4": "threePhasePhaseToNeutral", - "5": "threePhasePhaseToPhase" - } - }, - "index": null, - "value": [ - "upsPhaseInputEntry", - 3 - ] - }, - "upsPhaseInputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputEntry", - 4 - ] - }, - "upsPhaseInputType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "main", - "3": "bypass" - } - }, - "index": null, - "value": [ - "upsPhaseInputEntry", - 5 - ] - }, - "upsPhaseInputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsPhaseInputEntry", - 6 - ] - }, - "upsPhaseInputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsPhaseInputPhaseEntry" - }, - "index": null, - "value": [ - "upsPhaseInput", - 3 - ] - }, - "upsPhaseInputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsPhaseInputPhaseEntry" - }, - "index": [ - "upsPhaseInputPhaseTableIndex", - "upsPhaseInputPhaseIndex" - ], - "value": [ - "upsPhaseInputPhaseTable", - 1 - ] - }, - "UpsPhaseInputPhaseEntry": { - "tp": "SEQUENCE" - }, - "upsPhaseInputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 1 - ] - }, - "upsPhaseInputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 2 - ] - }, - "upsPhaseInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 3 - ] - }, - "upsPhaseInputMaxVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 4 - ] - }, - "upsPhaseInputMinVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 5 - ] - }, - "upsPhaseInputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 6 - ] - }, - "upsPhaseInputMaxCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 7 - ] - }, - "upsPhaseInputMinCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 8 - ] - }, - "upsPhaseInputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 9 - ] - }, - "upsPhaseInputMaxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 10 - ] - }, - "upsPhaseInputMinPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 11 - ] - }, - "upsPhaseInputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 12 - ] - }, - "upsPhaseInputPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseInputPhaseEntry", - 13 - ] - }, - "upsPhaseNumOutputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutput", - 1 - ] - }, - "upsPhaseOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsPhaseOutputEntry" - }, - "index": null, - "value": [ - "upsPhaseOutput", - 2 - ] - }, - "upsPhaseOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsPhaseOutputEntry" - }, - "index": [ - "upsPhaseOutputTableIndex" - ], - "value": [ - "upsPhaseOutputTable", - 1 - ] - }, - "UpsPhaseOutputEntry": { - "tp": "SEQUENCE" - }, - "upsPhaseOutputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputEntry", - 1 - ] - }, - "upsPhaseNumOutputPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputEntry", - 2 - ] - }, - "upsPhaseOutputVoltageOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "singlePhase", - "3": "splitPhase", - "4": "threePhasePhaseToNeutral", - "5": "threePhasePhaseToPhase" - } - }, - "index": null, - "value": [ - "upsPhaseOutputEntry", - 3 - ] - }, - "upsPhaseOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputEntry", - 4 - ] - }, - "upsPhaseOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsPhaseOutputPhaseEntry" - }, - "index": null, - "value": [ - "upsPhaseOutput", - 3 - ] - }, - "upsPhaseOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsPhaseOutputPhaseEntry" - }, - "index": [ - "upsPhaseOutputPhaseTableIndex", - "upsPhaseOutputPhaseIndex" - ], - "value": [ - "upsPhaseOutputPhaseTable", - 1 - ] - }, - "UpsPhaseOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "upsPhaseOutputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 1 - ] - }, - "upsPhaseOutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 2 - ] - }, - "upsPhaseOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 3 - ] - }, - "upsPhaseOutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 4 - ] - }, - "upsPhaseOutputMaxCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 5 - ] - }, - "upsPhaseOutputMinCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 6 - ] - }, - "upsPhaseOutputLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 7 - ] - }, - "upsPhaseOutputMaxLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 8 - ] - }, - "upsPhaseOutputMinLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 9 - ] - }, - "upsPhaseOutputPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 10 - ] - }, - "upsPhaseOutputMaxPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 11 - ] - }, - "upsPhaseOutputMinPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 12 - ] - }, - "upsPhaseOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 13 - ] - }, - "upsPhaseOutputMaxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 14 - ] - }, - "upsPhaseOutputMinPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 15 - ] - }, - "upsPhaseOutputPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 16 - ] - }, - "upsPhaseOutputMaxPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 17 - ] - }, - "upsPhaseOutputMinPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 18 - ] - }, - "upsPhaseOutputPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhaseOutputPhaseEntry", - 19 - ] - }, - "upsOutletGroupStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupStatus", - 1 - ] - }, - "upsOutletGroupStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsOutletGroupStatusEntry" - }, - "index": null, - "value": [ - "upsOutletGroupStatus", - 2 - ] - }, - "upsOutletGroupStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsOutletGroupStatusEntry" - }, - "index": [ - "upsOutletGroupStatusIndex" - ], - "value": [ - "upsOutletGroupStatusTable", - 1 - ] - }, - "UpsOutletGroupStatusEntry": { - "tp": "SEQUENCE" - }, - "upsOutletGroupStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupStatusEntry", - 1 - ] - }, - "upsOutletGroupStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsOutletGroupStatusEntry", - 2 - ] - }, - "upsOutletGroupStatusGroupState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupStatusOn", - "2": "upsOutletGroupStatusOff", - "3": "upsOutletGroupStatusUnknown" - } - }, - "index": null, - "value": [ - "upsOutletGroupStatusEntry", - 3 - ] - }, - "upsOutletGroupStatusCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupCommandPending", - "2": "upsOutletGroupNoCommandPending" - } - }, - "index": null, - "value": [ - "upsOutletGroupStatusEntry", - 4 - ] - }, - "upsOutletGroupStatusOutletType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsSwitchedOutletGroup", - "2": "upsMainOutletGroup" - } - }, - "index": null, - "value": [ - "upsOutletGroupStatusEntry", - 5 - ] - }, - "upsOutletGroupStatusGroupFullState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsOutletGroupStatusEntry", - 6 - ] - }, - "upsOutletGroupConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfig", - 1 - ] - }, - "upsOutletGroupConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsOutletGroupConfigEntry" - }, - "index": null, - "value": [ - "upsOutletGroupConfig", - 2 - ] - }, - "upsOutletGroupConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsOutletGroupConfigEntry" - }, - "index": [ - "upsOutletGroupConfigIndex" - ], - "value": [ - "upsOutletGroupConfigTable", - 1 - ] - }, - "UpsOutletGroupConfigEntry": { - "tp": "SEQUENCE" - }, - "upsOutletGroupConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 1 - ] - }, - "upsOutletGroupConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 2 - ] - }, - "upsOutletGroupConfigPowerOnDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 3 - ] - }, - "upsOutletGroupConfigPowerOffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 4 - ] - }, - "upsOutletGroupConfigRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 5 - ] - }, - "upsOutletGroupConfigMinReturnRuntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 6 - ] - }, - "upsOutletGroupConfigOutletType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsSwitchedOutletGroup", - "2": "upsMainOutletGroup" - } - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 7 - ] - }, - "upsOutletGroupConfigLoadShedControlSkipOffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupConfigSkipOffDelay", - "2": "upsOutletGroupConfigUseOffDelay" - } - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 8 - ] - }, - "upsOutletGroupConfigLoadShedControlAutoRestart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupConfigAutoRestart", - "2": "upsOutletGroupConfigManualRestart" - } - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 9 - ] - }, - "upsOutletGroupConfigLoadShedControlTimeOnBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupConfigDisableTimeOnBatteryLoadShed", - "2": "upsOutletGroupConfigEnableTimeOnBatteryLoadShed" - } - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 10 - ] - }, - "upsOutletGroupConfigLoadShedControlRuntimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupConfigDisableRuntimeRemainingLoadShed", - "2": "upsOutletGroupConfigEnableRuntimeRemainingLoadShed" - } - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 11 - ] - }, - "upsOutletGroupConfigLoadShedControlInOverload": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupConfigDisableInOverloadLoadShed", - "2": "upsOutletGroupConfigEnableInOverloadLoadShed" - } - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 12 - ] - }, - "upsOutletGroupConfigLoadShedTimeOnBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 13 - ] - }, - "upsOutletGroupConfigLoadShedRuntimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupConfigEntry", - 14 - ] - }, - "upsOutletGroupControlTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupControl", - 1 - ] - }, - "upsOutletGroupControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsOutletGroupControlEntry" - }, - "index": null, - "value": [ - "upsOutletGroupControl", - 2 - ] - }, - "upsOutletGroupControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsOutletGroupControlEntry" - }, - "index": [ - "upsOutletGroupControlIndex" - ], - "value": [ - "upsOutletGroupControlTable", - 1 - ] - }, - "UpsOutletGroupControlEntry": { - "tp": "SEQUENCE" - }, - "upsOutletGroupControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsOutletGroupControlEntry", - 1 - ] - }, - "upsOutletGroupControlName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsOutletGroupControlEntry", - 2 - ] - }, - "upsOutletGroupControlCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsOutletGroupImmediateOn", - "2": "upsOutletGroupImmediateOff", - "3": "upsOutletGroupImmediateRebootWithOrWithoutAC", - "4": "upsOutletGroupDelayedOn", - "5": "upsOutletGroupDelayedOff", - "6": "upsOutletGroupDelayedRebootWithOrWithoutAC", - "7": "upsOutletGroupCancelPendingCommand", - "8": "upsOutletGroupControlUnknown", - "9": "upsOutletGroupImmediateRebootShutdown", - "10": "upsOutletGroupDelayedRebootShutdown" - } - }, - "index": null, - "value": [ - "upsOutletGroupControlEntry", - 3 - ] - }, - "upsOutletGroupControlOutletType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsSwitchedOutletGroup", - "2": "upsMainOutletGroup" - } - }, - "index": null, - "value": [ - "upsOutletGroupControlEntry", - 4 - ] - }, - "upsDiagIMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticIM", - 1 - ] - }, - "upsDiagIMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagIMEntry" - }, - "index": null, - "value": [ - "upsDiagnosticIM", - 2 - ] - }, - "upsDiagIMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagIMEntry" - }, - "index": [ - "upsDiagIMIndex" - ], - "value": [ - "upsDiagIMTable", - 1 - ] - }, - "UpsDiagIMEntry": { - "tp": "SEQUENCE" - }, - "upsDiagIMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 1 - ] - }, - "upsDiagIMType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "imUnknown", - "2": "imMIM", - "3": "imRIM" - } - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 2 - ] - }, - "upsDiagIMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 3 - ] - }, - "upsDiagIMFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 4 - ] - }, - "upsDiagIMSlaveFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 5 - ] - }, - "upsDiagIMHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 6 - ] - }, - "upsDiagIMSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 7 - ] - }, - "upsDiagIMManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagIMEntry", - 8 - ] - }, - "upsDiagPMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticPowerModules", - 1 - ] - }, - "upsDiagPMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagPMEntry" - }, - "index": null, - "value": [ - "upsDiagnosticPowerModules", - 2 - ] - }, - "upsDiagPMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagPMEntry" - }, - "index": [ - "upsDiagPMIndex" - ], - "value": [ - "upsDiagPMTable", - 1 - ] - }, - "UpsDiagPMEntry": { - "tp": "SEQUENCE" - }, - "upsDiagPMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMEntry", - 1 - ] - }, - "upsDiagPMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagPMEntry", - 2 - ] - }, - "upsDiagPMFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagPMEntry", - 3 - ] - }, - "upsDiagPMHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagPMEntry", - 4 - ] - }, - "upsDiagPMSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagPMEntry", - 5 - ] - }, - "upsDiagPMManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagPMEntry", - 6 - ] - }, - "upsDiagPMLifetimeInfoTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagPMLifetimeInfoEntry" - }, - "index": null, - "value": [ - "upsDiagnosticPowerModules", - 3 - ] - }, - "upsDiagPMLifetimeInfoEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagPMLifetimeInfoEntry" - }, - "index": [ - "upsDiagPMLifetimeInfoIndex" - ], - "value": [ - "upsDiagPMLifetimeInfoTable", - 1 - ] - }, - "UpsDiagPMLifetimeInfoEntry": { - "tp": "SEQUENCE" - }, - "upsDiagPMLifetimeInfoIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 1 - ] - }, - "upsDiagPMLifetimeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "nearEnd", - "3": "exceeded", - "4": "unknown" - } - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 2 - ] - }, - "upsDiagPMEstmtdLifetimeRmng": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 3 - ] - }, - "upsDiagPMEstmtdLifetimeRmngPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 4 - ] - }, - "upsDiagPMFanLifetimeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "nearEnd", - "3": "exceeded", - "4": "unknown" - } - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 5 - ] - }, - "upsDiagPMFanEstmtdLifetimeRmng": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 6 - ] - }, - "upsDiagPMFanEstmtdLifetimeRmngPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMLifetimeInfoEntry", - 7 - ] - }, - "upsDiagPMEnclDoorFltrTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticPowerModules", - 4 - ] - }, - "upsDiagPMEnclDoorFltrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagPMEnclDoorFltrEntry" - }, - "index": null, - "value": [ - "upsDiagnosticPowerModules", - 5 - ] - }, - "upsDiagPMEnclDoorFltrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagPMEnclDoorFltrEntry" - }, - "index": [ - "upsDiagPMEnclIndex" - ], - "value": [ - "upsDiagPMEnclDoorFltrTable", - 1 - ] - }, - "UpsDiagPMEnclDoorFltrEntry": { - "tp": "SEQUENCE" - }, - "upsDiagPMEnclIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMEnclDoorFltrEntry", - 1 - ] - }, - "upsDiagPMEnclDoorFltrLifetime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "heavyFiltration15days", - "2": "normalFiltration30days", - "3": "lightFiltration60days", - "4": "notPresent" - } - }, - "index": null, - "value": [ - "upsDiagPMEnclDoorFltrEntry", - 2 - ] - }, - "upsDiagPMEnclDoorFltrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "nearEnd", - "3": "exceeded", - "4": "unknown" - } - }, - "index": null, - "value": [ - "upsDiagPMEnclDoorFltrEntry", - 3 - ] - }, - "upsDiagPMEnclDoorFltrEstmtdLifetimeRmng": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMEnclDoorFltrEntry", - 4 - ] - }, - "upsDiagPMEnclDoorFltrEstmtdLifetimeRmngPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagPMEnclDoorFltrEntry", - 5 - ] - }, - "upsDiagBatteryTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticBatteries", - 1 - ] - }, - "upsDiagBatteryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagBatteryEntry" - }, - "index": null, - "value": [ - "upsDiagnosticBatteries", - 2 - ] - }, - "upsDiagBatteryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagBatteryEntry" - }, - "index": [ - "upsDiagBatteryIndex" - ], - "value": [ - "upsDiagBatteryTable", - 1 - ] - }, - "UpsDiagBatteryEntry": { - "tp": "SEQUENCE" - }, - "upsDiagBatteryFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 1 - ] - }, - "upsDiagBatteryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 2 - ] - }, - "upsDiagBatteryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "failed", - "5": "highTemperature", - "6": "replaceImmediately", - "7": "lowCapacity" - } - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 3 - ] - }, - "upsDiagBatterySerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 4 - ] - }, - "upsDiagBatteryFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 5 - ] - }, - "upsDiagBatteryManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 6 - ] - }, - "upsDiagBatteryType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 7 - ] - }, - "upsDiagBatteryFramePresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "notPresent", - "1": "present" - } - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 8 - ] - }, - "upsDiagBatteryFrameTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagBatteryEntry", - 9 - ] - }, - "upsDiagSubSysFrameTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 1 - ] - }, - "upsDiagSubSysFrameTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysFrameEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 2 - ] - }, - "upsDiagSubSysFrameEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysFrameEntry" - }, - "index": [ - "upsDiagSubSysFrameIndex" - ], - "value": [ - "upsDiagSubSysFrameTable", - 1 - ] - }, - "UpsDiagSubSysFrameEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysFrameEntry", - 1 - ] - }, - "upsDiagSubSysFrameType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "frameTypeMain", - "4": "frameTypeXR", - "5": "frameTypeLXR" - } - }, - "index": null, - "value": [ - "upsDiagSubSysFrameEntry", - 2 - ] - }, - "upsDiagSubSysFrameFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysFrameEntry", - 3 - ] - }, - "upsDiagSubSysFrameHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysFrameEntry", - 4 - ] - }, - "upsDiagSubSysFrameSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysFrameEntry", - 5 - ] - }, - "upsDiagSubSysFrameManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysFrameEntry", - 6 - ] - }, - "upsDiagSubSysIntBypSwitchTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 3 - ] - }, - "upsDiagSubSysIntBypSwitchTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysIntBypSwitchEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 4 - ] - }, - "upsDiagSubSysIntBypSwitchEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysIntBypSwitchEntry" - }, - "index": [ - "upsDiagSubSysIntBypSwitchIndex" - ], - "value": [ - "upsDiagSubSysIntBypSwitchTable", - 1 - ] - }, - "UpsDiagSubSysIntBypSwitchEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysIntBypSwitchFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 1 - ] - }, - "upsDiagSubSysIntBypSwitchIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 2 - ] - }, - "upsDiagSubSysIntBypSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 3 - ] - }, - "upsDiagSubSysIntBypSwitchFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 4 - ] - }, - "upsDiagSubSysIntBypSwitchHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 5 - ] - }, - "upsDiagSubSysIntBypSwitchSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 6 - ] - }, - "upsDiagSubSysIntBypSwitchManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysIntBypSwitchEntry", - 7 - ] - }, - "upsDiagSubSysBattMonitorTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 5 - ] - }, - "upsDiagSubSysBattMonitorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysBattMonitorEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 6 - ] - }, - "upsDiagSubSysBattMonitorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysBattMonitorEntry" - }, - "index": [ - "upsDiagSubSysBattMonitorIndex" - ], - "value": [ - "upsDiagSubSysBattMonitorTable", - 1 - ] - }, - "UpsDiagSubSysBattMonitorEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysBattMonitorFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 1 - ] - }, - "upsDiagSubSysBattMonitorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 2 - ] - }, - "upsDiagSubSysBattMonitorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 3 - ] - }, - "upsDiagSubSysBattMonitorFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 4 - ] - }, - "upsDiagSubSysBattMonitorHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 5 - ] - }, - "upsDiagSubSysBattMonitorSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 6 - ] - }, - "upsDiagSubSysBattMonitorManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysBattMonitorEntry", - 7 - ] - }, - "upsDiagSubSysExternalSwitchGearTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 7 - ] - }, - "upsDiagSubSysExternalSwitchGearTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysExternalSwitchGearEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 8 - ] - }, - "upsDiagSubSysExternalSwitchGearEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysExternalSwitchGearEntry" - }, - "index": [ - "upsDiagSubSysExternalSwitchGearIndex" - ], - "value": [ - "upsDiagSubSysExternalSwitchGearTable", - 1 - ] - }, - "UpsDiagSubSysExternalSwitchGearEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysExternalSwitchGearFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 1 - ] - }, - "upsDiagSubSysExternalSwitchGearIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 2 - ] - }, - "upsDiagSubSysExternalSwitchGearStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 3 - ] - }, - "upsDiagSubSysExternalSwitchGearFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 4 - ] - }, - "upsDiagSubSysExternalSwitchGearHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 5 - ] - }, - "upsDiagSubSysExternalSwitchGearSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 6 - ] - }, - "upsDiagSubSysExternalSwitchGearManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalSwitchGearEntry", - 7 - ] - }, - "upsDiagSubSysDisplayInterfaceCardTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 9 - ] - }, - "upsDiagSubSysDisplayInterfaceCardTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysDisplayInterfaceCardEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 10 - ] - }, - "upsDiagSubSysDisplayInterfaceCardEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysDisplayInterfaceCardEntry" - }, - "index": [ - "upsDiagSubSysDisplayInterfaceCardIndex" - ], - "value": [ - "upsDiagSubSysDisplayInterfaceCardTable", - 1 - ] - }, - "UpsDiagSubSysDisplayInterfaceCardEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysDisplayInterfaceCardFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysDisplayInterfaceCardEntry", - 1 - ] - }, - "upsDiagSubSysDisplayInterfaceCardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysDisplayInterfaceCardEntry", - 2 - ] - }, - "upsDiagSubSysDisplayInterfaceCardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysDisplayInterfaceCardEntry", - 3 - ] - }, - "upsDiagSubSysDCCircuitBreakerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 11 - ] - }, - "upsDiagSubSysDCCircuitBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysDCCircuitBreakerEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 12 - ] - }, - "upsDiagSubSysDCCircuitBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysDCCircuitBreakerEntry" - }, - "index": [ - "upsDiagSubSysDCCircuitBreakerIndex" - ], - "value": [ - "upsDiagSubSysDCCircuitBreakerTable", - 1 - ] - }, - "UpsDiagSubSysDCCircuitBreakerEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysDCCircuitBreakerFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysDCCircuitBreakerEntry", - 1 - ] - }, - "upsDiagSubSysDCCircuitBreakerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysDCCircuitBreakerEntry", - 2 - ] - }, - "upsDiagSubSysDCCircuitBreakerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSubSysDCCircuitBreakerEntry", - 3 - ] - }, - "upsDiagSubSysSystemPowerSupplyTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 13 - ] - }, - "upsDiagSubSysSystemPowerSupplyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysSystemPowerSupplyEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 14 - ] - }, - "upsDiagSubSysSystemPowerSupplyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysSystemPowerSupplyEntry" - }, - "index": [ - "upsDiagSubSysSystemPowerSupplyIndex" - ], - "value": [ - "upsDiagSubSysSystemPowerSupplyTable", - 1 - ] - }, - "UpsDiagSubSysSystemPowerSupplyEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysSystemPowerSupplyFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 1 - ] - }, - "upsDiagSubSysSystemPowerSupplyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 2 - ] - }, - "upsDiagSubSysSystemPowerSupplyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 3 - ] - }, - "upsDiagSubSysSystemPowerSupplyFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 4 - ] - }, - "upsDiagSubSysSystemPowerSupplyHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 5 - ] - }, - "upsDiagSubSysSystemPowerSupplySerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 6 - ] - }, - "upsDiagSubSysSystemPowerSupplyManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysSystemPowerSupplyEntry", - 7 - ] - }, - "upsDiagSubSysXRCommunicationCardTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 15 - ] - }, - "upsDiagSubSysXRCommunicationCardTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysXRCommunicationCardEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 16 - ] - }, - "upsDiagSubSysXRCommunicationCardEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysXRCommunicationCardEntry" - }, - "index": [ - "upsDiagSubSysXRCommunicationCardIndex" - ], - "value": [ - "upsDiagSubSysXRCommunicationCardTable", - 1 - ] - }, - "UpsDiagSubSysXRCommunicationCardEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysXRCommunicationCardFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysXRCommunicationCardEntry", - 1 - ] - }, - "upsDiagSubSysXRCommunicationCardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysXRCommunicationCardEntry", - 2 - ] - }, - "upsDiagSubSysXRCommunicationCardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysXRCommunicationCardEntry", - 3 - ] - }, - "upsDiagSubSysXRCommunicationCardFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysXRCommunicationCardEntry", - 4 - ] - }, - "upsDiagSubSysXRCommunicationCardSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysXRCommunicationCardEntry", - 5 - ] - }, - "upsDiagSubSysExternalPowerFrameBoardTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 17 - ] - }, - "upsDiagSubSysExternalPowerFrameBoardTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysExternalPowerFrameBoardEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 18 - ] - }, - "upsDiagSubSysExternalPowerFrameBoardEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysExternalPowerFrameBoardEntry" - }, - "index": [ - "upsDiagSubSysExternalPowerFrameBoardIndex" - ], - "value": [ - "upsDiagSubSysExternalPowerFrameBoardTable", - 1 - ] - }, - "UpsDiagSubSysExternalPowerFrameBoardEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysExternalPowerFrameBoardFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalPowerFrameBoardEntry", - 1 - ] - }, - "upsDiagSubSysExternalPowerFrameBoardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysExternalPowerFrameBoardEntry", - 2 - ] - }, - "upsDiagSubSysExternalPowerFrameBoardStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysExternalPowerFrameBoardEntry", - 3 - ] - }, - "upsDiagSubSysChargerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 19 - ] - }, - "upsDiagSubSysChargerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysChargerEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 20 - ] - }, - "upsDiagSubSysChargerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysChargerEntry" - }, - "index": [ - "upsDiagSubSysChargerIndex" - ], - "value": [ - "upsDiagSubSysChargerTable", - 1 - ] - }, - "UpsDiagSubSysChargerEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysChargerFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysChargerEntry", - 1 - ] - }, - "upsDiagSubSysChargerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysChargerEntry", - 2 - ] - }, - "upsDiagSubSysChargerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysChargerEntry", - 3 - ] - }, - "upsDiagSubSysInverterTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 21 - ] - }, - "upsDiagSubSysInverterTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysInverterEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 22 - ] - }, - "upsDiagSubSysInverterEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysInverterEntry" - }, - "index": [ - "upsDiagSubSysInverterIndex" - ], - "value": [ - "upsDiagSubSysInverterTable", - 1 - ] - }, - "UpsDiagSubSysInverterEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysInverterFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 1 - ] - }, - "upsDiagSubSysInverterIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 2 - ] - }, - "upsDiagSubSysInverterStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 3 - ] - }, - "upsDiagSubSysInverterFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 4 - ] - }, - "upsDiagSubSysInverterHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 5 - ] - }, - "upsDiagSubSysInverterSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 6 - ] - }, - "upsDiagSubSysInverterManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysInverterEntry", - 7 - ] - }, - "upsDiagSubSysPowerFactorCorrectionTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 23 - ] - }, - "upsDiagSubSysPowerFactorCorrectionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysPowerFactorCorrectionEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 24 - ] - }, - "upsDiagSubSysPowerFactorCorrectionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysPowerFactorCorrectionEntry" - }, - "index": [ - "upsDiagSubSysPowerFactorCorrectionIndex" - ], - "value": [ - "upsDiagSubSysPowerFactorCorrectionTable", - 1 - ] - }, - "UpsDiagSubSysPowerFactorCorrectionEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysPowerFactorCorrectionFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 1 - ] - }, - "upsDiagSubSysPowerFactorCorrectionIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 2 - ] - }, - "upsDiagSubSysPowerFactorCorrectionStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "offOk", - "4": "onOk", - "5": "offFail", - "6": "onFail", - "7": "lostComm" - } - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 3 - ] - }, - "upsDiagSubSysPowerFactorCorrectionFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 4 - ] - }, - "upsDiagSubSysPowerFactorCorrectionHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 5 - ] - }, - "upsDiagSubSysPowerFactorCorrectionSerialNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 6 - ] - }, - "upsDiagSubSysPowerFactorCorrectionManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysPowerFactorCorrectionEntry", - 7 - ] - }, - "upsDiagSubSysNetworkComCardTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 25 - ] - }, - "upsDiagSubSysNetworkComCardTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubSysNetworkComCardEntry" - }, - "index": null, - "value": [ - "upsDiagnosticSubsystem", - 26 - ] - }, - "upsDiagSubSysNetworkComCardEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubSysNetworkComCardEntry" - }, - "index": [ - "upsDiagSubSysNetworkComCardIndex" - ], - "value": [ - "upsDiagSubSysNetworkComCardTable", - 1 - ] - }, - "UpsDiagSubSysNetworkComCardEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubSysNetworkComCardIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 1 - ] - }, - "upsDiagSubSysNetworkComCardModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 2 - ] - }, - "upsDiagSubSysNetworkComCardSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 3 - ] - }, - "upsDiagSubSysNetworkComCardDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 4 - ] - }, - "upsDiagSubSysNetworkComCardHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 5 - ] - }, - "upsDiagSubSysNetworkComCardFirmwareAppRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 6 - ] - }, - "upsDiagSubSysNetworkComCardFirmwareAppOSRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubSysNetworkComCardEntry", - 7 - ] - }, - "upsDiagSwitchGearStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "fail", - "5": "lostComm", - "6": "overtemp" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 1 - ] - }, - "upsDiagSwitchGearInputSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 2 - ] - }, - "upsDiagSwitchGearOutputSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 3 - ] - }, - "upsDiagSwitchGearBypassSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 4 - ] - }, - "upsDiagSwitchGearBypassInputSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 5 - ] - }, - "upsDiagSwitchGearBreakerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 6 - ] - }, - "upsDiagSwitchGearBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSwitchGearBreakerEntry" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 7 - ] - }, - "upsDiagSwitchGearBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSwitchGearBreakerEntry" - }, - "index": [ - "switchgearBreakerIndex" - ], - "value": [ - "upsDiagSwitchGearBreakerTable", - 1 - ] - }, - "UpsDiagSwitchGearBreakerEntry": { - "tp": "SEQUENCE" - }, - "switchgearBreakerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSwitchGearBreakerEntry", - 1 - ] - }, - "switchgearBreakerPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGearBreakerEntry", - 2 - ] - }, - "switchgearBreakerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSwitchGearBreakerEntry", - 3 - ] - }, - "switchgearBreakerType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "unitInputBreaker", - "3": "staticSwitchInputBreaker", - "4": "maintenanceBypassBreaker", - "5": "unitOutputBreaker", - "6": "systemIsolationBreaker", - "7": "batteryBreaker", - "8": "bypassBackFeedBreaker" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGearBreakerEntry", - 4 - ] - }, - "switchgearBreakerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "opened", - "3": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSwitchGearBreakerEntry", - 5 - ] - }, - "upsDiagSubFeedBreakerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 8 - ] - }, - "upsDiagSubFeedBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagSubFeedBreakerEntry" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 9 - ] - }, - "upsDiagSubFeedBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagSubFeedBreakerEntry" - }, - "index": [ - "subfeedBreakerIndex" - ], - "value": [ - "upsDiagSubFeedBreakerTable", - 1 - ] - }, - "UpsDiagSubFeedBreakerEntry": { - "tp": "SEQUENCE" - }, - "subfeedBreakerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 1 - ] - }, - "subfeedBreakerPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 2 - ] - }, - "subfeedBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 3 - ] - }, - "subfeedBreakerUpperAcceptPowerWarning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 4 - ] - }, - "subfeedBreakerUpperAcceptPowerCritical": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 5 - ] - }, - "subfeedBreakerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 6 - ] - }, - "subfeedBreakerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSubFeedBreakerEntry", - 7 - ] - }, - "upsDiagSwitchGearInstallationLoadPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 10 - ] - }, - "upsDiagSubFeedPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UPSDiagSubFeedPhaseEntry" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 11 - ] - }, - "upsDiagSubFeedPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UPSDiagSubFeedPhaseEntry" - }, - "index": [ - "upsDiagSubFeedPhaseIndex" - ], - "value": [ - "upsDiagSubFeedPhaseTable", - 1 - ] - }, - "UPSDiagSubFeedPhaseEntry": { - "tp": "SEQUENCE" - }, - "upsDiagSubFeedBreakerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedPhaseEntry", - 1 - ] - }, - "upsDiagSubFeedPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedPhaseEntry", - 2 - ] - }, - "upsDiagSubFeedPhaseCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedPhaseEntry", - 3 - ] - }, - "upsDiagSubFeedPhaseCurrentAlternate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSubFeedPhaseEntry", - 4 - ] - }, - "upsDiagSwitchgearSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 12 - ] - }, - "upsDiagSwitchgearAmbientTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagSwitchGear", - 13 - ] - }, - "upsDiagMCCBBoxStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsDiagMCCBBox", - 1 - ] - }, - "upsDiagTransformerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "fail", - "5": "lostComm", - "6": "overtemp", - "7": "opened", - "8": "closed" - } - }, - "index": null, - "value": [ - "upsDiagTransformer", - 1 - ] - }, - "upsDiagFlyWheelStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "present", - "3": "notPresent" - } - }, - "index": null, - "value": [ - "upsDiagFlyWheel", - 1 - ] - }, - "upsDiagComBusInternalMIMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "lostComm", - "5": "rxFailure", - "6": "txFailure" - } - }, - "index": null, - "value": [ - "upsDiagnosticComBus", - 1 - ] - }, - "upsDiagComBusInternalRIMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "lostComm", - "5": "rxFailure", - "6": "txFailure" - } - }, - "index": null, - "value": [ - "upsDiagnosticComBus", - 2 - ] - }, - "upsDiagComBusMIMtoRIMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "lostComm", - "5": "rxFailure", - "6": "txFailure" - } - }, - "index": null, - "value": [ - "upsDiagnosticComBus", - 3 - ] - }, - "upsDiagComBusExternalMIMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "lostComm", - "5": "rxFailure", - "6": "txFailure" - } - }, - "index": null, - "value": [ - "upsDiagnosticComBus", - 4 - ] - }, - "upsDiagComBusExternalRIMStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "ok", - "4": "lostComm", - "5": "rxFailure", - "6": "txFailure" - } - }, - "index": null, - "value": [ - "upsDiagnosticComBus", - 5 - ] - }, - "upsDiagnosticPowerCabinetTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticPowerCabinet", - 1 - ] - }, - "upsDiagnosticPowerCabinetTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDiagnosticPowerCabinetEntry" - }, - "index": null, - "value": [ - "upsDiagnosticPowerCabinet", - 2 - ] - }, - "upsDiagnosticPowerCabinetEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDiagnosticPowerCabinetEntry" - }, - "index": [ - "upsDiagnosticPowerCabinetIndex" - ], - "value": [ - "upsDiagnosticPowerCabinetTable", - 1 - ] - }, - "UpsDiagnosticPowerCabinetEntry": { - "tp": "SEQUENCE" - }, - "upsDiagnosticPowerCabinetIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticPowerCabinetEntry", - 1 - ] - }, - "upsDiagnosticPowerCabinetAmbientTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDiagnosticPowerCabinetEntry", - 2 - ] - }, - "upsParallelSysLocalAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 1 - ] - }, - "upsParallelSysRemoteAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 2 - ] - }, - "upsParallelSysRedundancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nplus0", - "2": "nplus1", - "3": "nplus2", - "4": "nplus3", - "5": "nplus4", - "6": "nplus5" - } - }, - "index": null, - "value": [ - "upsParallelSystem", - 3 - ] - }, - "upsParallelInputMaximumCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 4 - ] - }, - "upsParallelTotalOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 5 - ] - }, - "upsParallelTotalOutputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 6 - ] - }, - "upsParallelInputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsParallelInputPhaseEntry" - }, - "index": null, - "value": [ - "upsParallelSystem", - 7 - ] - }, - "upsParallelInputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsParallelInputPhaseEntry" - }, - "index": [ - "upsParallelInputPhaseTableIndex", - "upsParallelInputPhaseIndex" - ], - "value": [ - "upsParallelInputPhaseTable", - 1 - ] - }, - "UpsParallelInputPhaseEntry": { - "tp": "SEQUENCE" - }, - "upsParallelInputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 1 - ] - }, - "upsParallelInputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 2 - ] - }, - "upsParallelInputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 3 - ] - }, - "upsParallelInputActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 4 - ] - }, - "upsParallelInputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 5 - ] - }, - "upsParallelInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 6 - ] - }, - "upsParallelInputMaxVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 7 - ] - }, - "upsParallelInputMaxCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 8 - ] - }, - "upsParallelInputTotalActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 9 - ] - }, - "upsParallelInputTotalApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelInputPhaseEntry", - 10 - ] - }, - "upsParallelOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsParallelOutputPhaseEntry" - }, - "index": null, - "value": [ - "upsParallelSystem", - 8 - ] - }, - "upsParallelOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsParallelOutputPhaseEntry" - }, - "index": [ - "upsParallelOutputPhaseTableIndex", - "upsParallelOutputPhaseIndex" - ], - "value": [ - "upsParallelOutputPhaseTable", - 1 - ] - }, - "UpsParallelOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "upsParallelOutputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputPhaseEntry", - 1 - ] - }, - "upsParallelOutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputPhaseEntry", - 2 - ] - }, - "upsParallelOutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputPhaseEntry", - 3 - ] - }, - "upsParallelOutputLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputPhaseEntry", - 4 - ] - }, - "upsParallelOutputPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputPhaseEntry", - 5 - ] - }, - "upsParallelOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputPhaseEntry", - 6 - ] - }, - "upsParallelOutputApparentPowerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsParallelOutputApparentPowerEntry" - }, - "index": null, - "value": [ - "upsParallelSystem", - 9 - ] - }, - "upsParallelOutputApparentPowerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsParallelOutputApparentPowerEntry" - }, - "index": [ - "upsParallelOutputApparentPowerTableIndex" - ], - "value": [ - "upsParallelOutputApparentPowerTable", - 1 - ] - }, - "UpsParallelOutputApparentPowerEntry": { - "tp": "SEQUENCE" - }, - "upsParallelOutputApparentPowerTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputApparentPowerEntry", - 1 - ] - }, - "upsParallelOutputApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputApparentPowerEntry", - 2 - ] - }, - "upsParallelDiagSubSysBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsParallelDiagSubSysBreakerEntry" - }, - "index": null, - "value": [ - "upsParallelSystem", - 10 - ] - }, - "upsParallelDiagSubSysBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsParallelDiagSubSysBreakerEntry" - }, - "index": [ - "upsParallelDiagSubSysBreakerFrameIndex", - "upsParallelDiagSubSysBreakerIndex" - ], - "value": [ - "upsParallelDiagSubSysBreakerTable", - 1 - ] - }, - "UpsParallelDiagSubSysBreakerEntry": { - "tp": "SEQUENCE" - }, - "upsParallelDiagSubSysBreakerFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelDiagSubSysBreakerEntry", - 1 - ] - }, - "upsParallelDiagSubSysBreakerIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelDiagSubSysBreakerEntry", - 2 - ] - }, - "upsParallelDiagSubSysBreakerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "notInstalled", - "3": "opened", - "4": "closed" - } - }, - "index": null, - "value": [ - "upsParallelDiagSubSysBreakerEntry", - 3 - ] - }, - "upsParallelDiagSubSysBreakerName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsParallelDiagSubSysBreakerEntry", - 4 - ] - }, - "upsParallelOutputTotalPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 11 - ] - }, - "upsParallelOutputActivePowerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsParallelOutputActivePowerEntry" - }, - "index": null, - "value": [ - "upsParallelSystem", - 12 - ] - }, - "upsParallelOutputActivePowerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsParallelOutputActivePowerEntry" - }, - "index": [ - "upsParallelOutputActivePowerTableIndex" - ], - "value": [ - "upsParallelOutputActivePowerTable", - 1 - ] - }, - "UpsParallelOutputActivePowerEntry": { - "tp": "SEQUENCE" - }, - "upsParallelOutputActivePowerTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputActivePowerEntry", - 1 - ] - }, - "upsParallelOutputActivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelOutputActivePowerEntry", - 2 - ] - }, - "upsParallelSysSwitchGearInstallationLoadPct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsParallelSystem", - 13 - ] - }, - "upsParallelSysRedundancyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nplus0", - "2": "nplus1", - "3": "nplus2", - "4": "nplus3", - "5": "nplus4", - "6": "nplus5" - } - }, - "index": null, - "value": [ - "upsParallelSystem", - 14 - ] - }, - "upsParallelSysName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsParallelSystem", - 15 - ] - }, - "upsIOFrameLayoutPositionID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 1 - ] - }, - "upsBottomFeedFrameLayoutPositionID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 2 - ] - }, - "upsSwitchGearLayoutPositionID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 3 - ] - }, - "upsBatteryFrameLayoutTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 4 - ] - }, - "upsBatteryFrameLayoutTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsBatteryFrameLayoutEntry" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 5 - ] - }, - "upsBatteryFrameLayoutEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsBatteryFrameLayoutEntry" - }, - "index": [ - "batteryFrameIndex" - ], - "value": [ - "upsBatteryFrameLayoutTable", - 1 - ] - }, - "UpsBatteryFrameLayoutEntry": { - "tp": "SEQUENCE" - }, - "batteryFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBatteryFrameLayoutEntry", - 1 - ] - }, - "batteryFramePositionID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsBatteryFrameLayoutEntry", - 2 - ] - }, - "upsSideCarFrameLayoutTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 6 - ] - }, - "upsSideCarFrameLayoutTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsSideCarFrameLayoutEntry" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 7 - ] - }, - "upsSideCarFrameLayoutEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsSideCarFrameLayoutEntry" - }, - "index": [ - "sideCarFrameIndex" - ], - "value": [ - "upsSideCarFrameLayoutTable", - 1 - ] - }, - "UpsSideCarFrameLayoutEntry": { - "tp": "SEQUENCE" - }, - "sideCarFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSideCarFrameLayoutEntry", - 1 - ] - }, - "sideCarFramePositionID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsSideCarFrameLayoutEntry", - 2 - ] - }, - "upsPowerFrameLayoutTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 8 - ] - }, - "upsPowerFrameLayoutTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsPowerFrameLayoutEntry" - }, - "index": null, - "value": [ - "upsPhysicalLayout", - 9 - ] - }, - "upsPowerFrameLayoutEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsPowerFrameLayoutEntry" - }, - "index": [ - "powerFrameIndex" - ], - "value": [ - "upsPowerFrameLayoutTable", - 1 - ] - }, - "UpsPowerFrameLayoutEntry": { - "tp": "SEQUENCE" - }, - "powerFrameIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPowerFrameLayoutEntry", - 1 - ] - }, - "powerFramePositionID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsPowerFrameLayoutEntry", - 2 - ] - }, - "upsIntegratedATSSelectedSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noSourceSelected", - "2": "unknown", - "3": "sourceA", - "4": "sourceB" - } - }, - "index": null, - "value": [ - "upsIntegratedATS", - 1 - ] - }, - "upsIntegratedATSPreferredSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsIntegratedATSNoSourcePreference", - "2": "upsIntegratedATSPreferSourceA", - "3": "upsIntegratedATSPreferSourceB" - } - }, - "index": null, - "value": [ - "upsIntegratedATS", - 2 - ] - }, - "upsIntegratedATSUpsReturnStaggering": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsIntegratedATS", - 3 - ] - }, - "upsIntegratedATSSourceTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsIntegratedATS", - 4 - ] - }, - "upsIntegratedATSSourceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsIntegratedATSSourceEntry" - }, - "index": null, - "value": [ - "upsIntegratedATS", - 5 - ] - }, - "upsIntegratedATSSourceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsIntegratedATSSourceEntry" - }, - "index": [ - "upsIntegratedATSSourceIndex" - ], - "value": [ - "upsIntegratedATSSourceTable", - 1 - ] - }, - "UpsIntegratedATSSourceEntry": { - "tp": "SEQUENCE" - }, - "upsIntegratedATSSourceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsIntegratedATSSourceEntry", - 1 - ] - }, - "upsIntegratedATSSourceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsIntegratedATSSourceEntry", - 2 - ] - }, - "upsIntegratedATSSourceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upsIntegratedATSSourceGood", - "2": "upsIntegratedATSSourceBad", - "3": "upsIntegratedATSSourceUnknown" - } - }, - "index": null, - "value": [ - "upsIntegratedATSSourceEntry", - 3 - ] - }, - "upsIntegratedATSLineFailDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsIntegratedATSSourceEntry", - 4 - ] - }, - "upsIntegratedATSLineStabilityDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsIntegratedATSSourceEntry", - 5 - ] - }, - "upsDCOutputStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "upsDCOutput", - 1 - ] - }, - "upsDCOutputStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDCOutputStatus", - 1 - ] - }, - "upsDCOutputStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UpsDCOutputStatusEntry" - }, - "index": null, - "value": [ - "upsDCOutputStatus", - 2 - ] - }, - "upsDCOutputStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UpsDCOutputStatusEntry" - }, - "index": [ - "upsDCOutputStatusTableIndex" - ], - "value": [ - "upsDCOutputStatusTable", - 1 - ] - }, - "UpsDCOutputStatusEntry": { - "tp": "SEQUENCE" - }, - "upsDCOutputStatusTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDCOutputStatusEntry", - 1 - ] - }, - "upsDCOutputStatusVoltageNominal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDCOutputStatusEntry", - 2 - ] - }, - "upsDCOutputStatusCurrentRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDCOutputStatusEntry", - 3 - ] - }, - "upsDCOutputStatusVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDCOutputStatusEntry", - 4 - ] - }, - "upsDCOutputStatusCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "upsDCOutputStatusEntry", - 5 - ] - }, - "upsDCOutputStatusAbnormalConditions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "upsDCOutputStatusEntry", - 6 - ] - }, - "serialPort2Mode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "localConsole", - "2": "passthrough" - } - }, - "index": null, - "value": [ - "serialPort2Config", - 1 - ] - }, - "setPulseOnTXD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noSetPulseOnTXD", - "2": "setPulseOnTXD", - "3": "setTXDLow", - "4": "setTXDHigh" - } - }, - "index": null, - "value": [ - "serialPort2Control", - 1 - ] - }, - "sPDUIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdent", - 1 - ] - }, - "sPDUIdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdent", - 2 - ] - }, - "sPDUIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdent", - 3 - ] - }, - "sPDUIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdent", - 4 - ] - }, - "sPDUIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdent", - 5 - ] - }, - "sPDUMasterControlSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "turnAllOnNow", - "2": "turnAllOnSequence", - "3": "turnAllOffNow", - "4": "rebootAllNow", - "5": "rebootAllSequence", - "6": "noCommand", - "7": "turnAllOffSequence" - } - }, - "index": null, - "value": [ - "sPDUMasterControl", - 1 - ] - }, - "sPDUMasterState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterControl", - 2 - ] - }, - "sPDUMasterPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterControl", - 3 - ] - }, - "sPDUMasterConfigPowerOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfig", - 1 - ] - }, - "sPDUMasterConfigReboot": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfig", - 2 - ] - }, - "sPDUMasterConfigPDUName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterConfig", - 3 - ] - }, - "sPDUOutletControlTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletControl", - 1 - ] - }, - "sPDUOutletControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletControlEntry" - }, - "index": null, - "value": [ - "sPDUOutletControl", - 2 - ] - }, - "sPDUOutletControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletControlEntry" - }, - "index": [ - "sPDUOutletControlIndex" - ], - "value": [ - "sPDUOutletControlTable", - 1 - ] - }, - "SPDUOutletControlEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletControlEntry", - 1 - ] - }, - "sPDUOutletPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commandPending", - "2": "noCommandPending", - "3": "commandPendingUnknown" - } - }, - "index": null, - "value": [ - "sPDUOutletControlEntry", - 2 - ] - }, - "sPDUOutletCtl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletOn", - "2": "outletOff", - "3": "outletReboot", - "4": "outletUnknown", - "5": "outletOnWithDelay", - "6": "outletOffWithDelay", - "7": "outletRebootWithDelay" - } - }, - "index": null, - "value": [ - "sPDUOutletControlEntry", - 3 - ] - }, - "sPDUOutletCtlName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletControlEntry", - 4 - ] - }, - "sPDUOutletConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfig", - 1 - ] - }, - "sPDUOutletConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletConfigEntry" - }, - "index": null, - "value": [ - "sPDUOutletConfig", - 2 - ] - }, - "sPDUOutletConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletConfigEntry" - }, - "index": [ - "sPDUOutletConfigIndex" - ], - "value": [ - "sPDUOutletConfigTable", - 1 - ] - }, - "SPDUOutletConfigEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigEntry", - 1 - ] - }, - "sPDUOutletPowerOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigEntry", - 2 - ] - }, - "sPDUOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigEntry", - 3 - ] - }, - "sPDUOutletPowerOffTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigEntry", - 4 - ] - }, - "sPDUOutletRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigEntry", - 5 - ] - }, - "sPDUIdentVMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUIdentVM", - 1 - ] - }, - "sPDUIdentVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUIdentVMEntry" - }, - "index": null, - "value": [ - "sPDUIdentVM", - 2 - ] - }, - "sPDUIdentVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUIdentVMEntry" - }, - "index": [ - "sPDUIdentVMIndex" - ], - "value": [ - "sPDUIdentVMTable", - 1 - ] - }, - "SPDUIdentVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUIdentVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 1 - ] - }, - "sPDUIdentNameVM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 2 - ] - }, - "sPDUIdentHardwareRevVM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 3 - ] - }, - "sPDUIdentFirmwareRevVM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 4 - ] - }, - "sPDUIdentDateOfManufactureVM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 5 - ] - }, - "sPDUIdentModelNumberVM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 6 - ] - }, - "sPDUIdentSerialNumberVM": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentVMEntry", - 7 - ] - }, - "sPDUMasterControlVMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterControlVM", - 1 - ] - }, - "sPDUMasterControlVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUMasterControlVMEntry" - }, - "index": null, - "value": [ - "sPDUMasterControlVM", - 2 - ] - }, - "sPDUMasterControlVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUMasterControlVMEntry" - }, - "index": [ - "sPDUMasterControlVMIndex" - ], - "value": [ - "sPDUMasterControlVMTable", - 1 - ] - }, - "SPDUMasterControlVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUMasterControlVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterControlVMEntry", - 1 - ] - }, - "sPDUMasterControlVMName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterControlVMEntry", - 2 - ] - }, - "sPDUMasterControlVMCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noCommandAllVM", - "2": "immediateAllOnVM", - "3": "immediateAllOffVM", - "4": "immediateAllRebootVM", - "5": "delayedAllOnVM", - "6": "delayedAllOffVM", - "7": "sequencedAllRebootVM", - "8": "delayedAllRebootVM", - "9": "delayedSequenceAllRebootVM", - "10": "cancelAllPendingCommandsVM", - "11": "audioAlarmMute" - } - }, - "index": null, - "value": [ - "sPDUMasterControlVMEntry", - 3 - ] - }, - "sPDUMasterConfigVMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigVM", - 1 - ] - }, - "sPDUMasterConfigVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUMasterConfigVMEntry" - }, - "index": null, - "value": [ - "sPDUMasterConfigVM", - 2 - ] - }, - "sPDUMasterConfigVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUMasterConfigVMEntry" - }, - "index": [ - "sPDUMasterConfigVMIndex" - ], - "value": [ - "sPDUMasterConfigVMTable", - 1 - ] - }, - "SPDUMasterConfigVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUMasterConfigVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 1 - ] - }, - "sPDUMasterConfigVMName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 2 - ] - }, - "sPDUMasterConfigVMColdstartDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 3 - ] - }, - "sPDUMasterConfigVMAudioAlarmActivated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "audioAlarmActiveNever", - "2": "audioAlarmActiveOnOverload", - "3": "audioAlarmActiveOnOverloadImminent" - } - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 4 - ] - }, - "sPDUMasterConfigVMHighLoadWarningThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 5 - ] - }, - "sPDUMasterConfigVMLowLoadWarningThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 6 - ] - }, - "sPDUMasterConfigVMOverloadRestriction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alwaysAllowTurnON", - "2": "restrictOnWarning", - "3": "restrictOnOverload" - } - }, - "index": null, - "value": [ - "sPDUMasterConfigVMEntry", - 7 - ] - }, - "sPDUMasterStatusVMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusVM", - 1 - ] - }, - "sPDUMasterStatusVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUMasterStatusVMEntry" - }, - "index": null, - "value": [ - "sPDUMasterStatusVM", - 2 - ] - }, - "sPDUMasterStatusVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUMasterStatusVMEntry" - }, - "index": [ - "sPDUMasterStatusVMIndex" - ], - "value": [ - "sPDUMasterStatusVMTable", - 1 - ] - }, - "SPDUMasterStatusVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUMasterStatusVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 1 - ] - }, - "sPDUMasterStatusVMName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 2 - ] - }, - "sPDUMasterStatusVMCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commandPendingMasterTrueVM", - "2": "commandPendingMasterFalseVM" - } - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 3 - ] - }, - "sPDUMasterStatusVMOverloadCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "overloadConditionTrueVM", - "2": "overloadConditionFalseVM" - } - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 4 - ] - }, - "sPDUMasterStatusVMLowLoadCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lowLoadConditionTrueVM", - "2": "lowLoadConditionFalseVM" - } - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 5 - ] - }, - "sPDUMasterStatusVMCurrentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 6 - ] - }, - "sPDUMasterStatusVMMaxLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 7 - ] - }, - "sPDUMasterStatusVMOutletCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 8 - ] - }, - "sPDUMasterStatusVMRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusVMEntry", - 9 - ] - }, - "sPDUOutletControlVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletControlVMEntry" - }, - "index": null, - "value": [ - "sPDUOutletControlVM", - 1 - ] - }, - "sPDUOutletControlVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletControlVMEntry" - }, - "index": [ - "sPDUOutletControlVMIndex", - "sPDUOutletControlVMOutletIndex" - ], - "value": [ - "sPDUOutletControlVMTable", - 1 - ] - }, - "SPDUOutletControlVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletControlVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletControlVMEntry", - 1 - ] - }, - "sPDUOutletControlVMName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletControlVMEntry", - 2 - ] - }, - "sPDUOutletControlVMOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletControlVMEntry", - 3 - ] - }, - "sPDUOutletControlVMOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletControlVMEntry", - 4 - ] - }, - "sPDUOutletControlVMOutletCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateOnVM", - "2": "immediateOffVM", - "3": "immediateRebootVM", - "4": "delayedOnVM", - "5": "delayedOffVM", - "6": "delayedRebootVM", - "7": "cancelPendingCommandVM" - } - }, - "index": null, - "value": [ - "sPDUOutletControlVMEntry", - 5 - ] - }, - "sPDUOutletConfigVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletConfigVMEntry" - }, - "index": null, - "value": [ - "sPDUOutletConfigVM", - 1 - ] - }, - "sPDUOutletConfigVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletConfigVMEntry" - }, - "index": [ - "sPDUOutletConfigVMIndex", - "sPDUOutletConfigVMOutletIndex" - ], - "value": [ - "sPDUOutletConfigVMTable", - 1 - ] - }, - "SPDUOutletConfigVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletConfigVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 1 - ] - }, - "sPDUOutletConfigVMName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 2 - ] - }, - "sPDUOutletConfigVMOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 3 - ] - }, - "sPDUOutletConfigVMOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 4 - ] - }, - "sPDUOutletConfigVMPowerOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 5 - ] - }, - "sPDUOutletConfigVMPowerOffTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 6 - ] - }, - "sPDUOutletConfigVMRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigVMEntry", - 7 - ] - }, - "sPDUOutletStatusVMTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletStatusVMEntry" - }, - "index": null, - "value": [ - "sPDUOutletStatusVM", - 1 - ] - }, - "sPDUOutletStatusVMEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletStatusVMEntry" - }, - "index": [ - "sPDUOutletStatusVMIndex", - "sPDUOutletStatusVMOutletIndex" - ], - "value": [ - "sPDUOutletStatusVMTable", - 1 - ] - }, - "SPDUOutletStatusVMEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletStatusVMIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletStatusVMEntry", - 1 - ] - }, - "sPDUOutletStatusVMName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletStatusVMEntry", - 2 - ] - }, - "sPDUOutletStatusVMOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletStatusVMEntry", - 3 - ] - }, - "sPDUOutletStatusVMOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletStatusVMEntry", - 4 - ] - }, - "sPDUOutletStatusVMOutletState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletStatusVMOn", - "2": "outletStatusVMOff" - } - }, - "index": null, - "value": [ - "sPDUOutletStatusVMEntry", - 5 - ] - }, - "sPDUOutletStatusVMCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletStatusVMCommandPending", - "2": "outletStatusVMNoCommandPending" - } - }, - "index": null, - "value": [ - "sPDUOutletStatusVMEntry", - 6 - ] - }, - "sPDUIdentMSPTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUIdentMSP", - 1 - ] - }, - "sPDUIdentMSPTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUIdentMSPEntry" - }, - "index": null, - "value": [ - "sPDUIdentMSP", - 2 - ] - }, - "sPDUIdentMSPEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUIdentMSPEntry" - }, - "index": [ - "sPDUIdentMSPIndex" - ], - "value": [ - "sPDUIdentMSPTable", - 1 - ] - }, - "SPDUIdentMSPEntry": { - "tp": "SEQUENCE" - }, - "sPDUIdentMSPIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 1 - ] - }, - "sPDUIdentNameMSP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 2 - ] - }, - "sPDUIdentHardwareRevMSP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 3 - ] - }, - "sPDUIdentFirmwareRevMSP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 4 - ] - }, - "sPDUIdentDateOfManufactureMSP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 5 - ] - }, - "sPDUIdentModelNumberMSP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 6 - ] - }, - "sPDUIdentSerialNumberMSP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUIdentMSPEntry", - 7 - ] - }, - "sPDUMasterControlMSPTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterControlMSP", - 1 - ] - }, - "sPDUMasterControlMSPTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUMasterControlMSPEntry" - }, - "index": null, - "value": [ - "sPDUMasterControlMSP", - 2 - ] - }, - "sPDUMasterControlMSPEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUMasterControlMSPEntry" - }, - "index": [ - "sPDUMasterControlMSPIndex" - ], - "value": [ - "sPDUMasterControlMSPTable", - 1 - ] - }, - "SPDUMasterControlMSPEntry": { - "tp": "SEQUENCE" - }, - "sPDUMasterControlMSPIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterControlMSPEntry", - 1 - ] - }, - "sPDUMasterControlMSPName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterControlMSPEntry", - 2 - ] - }, - "sPDUMasterControlMSPCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noCommandAllMSP", - "2": "immediateAllOnMSP", - "3": "sequencedAllOnMSP", - "4": "immediateAllOffMSP", - "5": "gracefulAllRebootMSP", - "6": "immediateAllRebootMSP", - "7": "gracefulAllShutdownMSP", - "8": "overrideAllBatCapThreshMSP", - "9": "cancelAllPendingCommandsMSP", - "10": "restoreFactoryDefaultsMSP" - } - }, - "index": null, - "value": [ - "sPDUMasterControlMSPEntry", - 3 - ] - }, - "sPDUMasterConfigMSPTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigMSP", - 1 - ] - }, - "sPDUMasterConfigMSPTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUMasterConfigMSPEntry" - }, - "index": null, - "value": [ - "sPDUMasterConfigMSP", - 2 - ] - }, - "sPDUMasterConfigMSPEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUMasterConfigMSPEntry" - }, - "index": [ - "sPDUMasterConfigMSPIndex" - ], - "value": [ - "sPDUMasterConfigMSPTable", - 1 - ] - }, - "SPDUMasterConfigMSPEntry": { - "tp": "SEQUENCE" - }, - "sPDUMasterConfigMSPIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigMSPEntry", - 1 - ] - }, - "sPDUMasterConfigMSPName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterConfigMSPEntry", - 2 - ] - }, - "sPDUMasterConfigMSPPowerOnTimeDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterConfigMSPEntry", - 3 - ] - }, - "sPDUMasterConfigMSPManualButton": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "manualButtonDisabled", - "2": "manualButtonEnabled" - } - }, - "index": null, - "value": [ - "sPDUMasterConfigMSPEntry", - 4 - ] - }, - "sPDUMasterStatusMSPTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusMSP", - 1 - ] - }, - "sPDUMasterStatusMSPTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUMasterStatusMSPEntry" - }, - "index": null, - "value": [ - "sPDUMasterStatusMSP", - 2 - ] - }, - "sPDUMasterStatusMSPEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUMasterStatusMSPEntry" - }, - "index": [ - "sPDUMasterStatusMSPIndex" - ], - "value": [ - "sPDUMasterStatusMSPTable", - 1 - ] - }, - "SPDUMasterStatusMSPEntry": { - "tp": "SEQUENCE" - }, - "sPDUMasterStatusMSPIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusMSPEntry", - 1 - ] - }, - "sPDUMasterStatusMSPName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUMasterStatusMSPEntry", - 2 - ] - }, - "sPDUMasterStatusMSPOutletCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUMasterStatusMSPEntry", - 3 - ] - }, - "sPDUOutletControlMSPTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletControlMSPEntry" - }, - "index": null, - "value": [ - "sPDUOutletControlMSP", - 1 - ] - }, - "sPDUOutletControlMSPEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletControlMSPEntry" - }, - "index": [ - "sPDUOutletControlMSPIndex", - "sPDUOutletControlMSPOutletIndex" - ], - "value": [ - "sPDUOutletControlMSPTable", - 1 - ] - }, - "SPDUOutletControlMSPEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletControlMSPIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletControlMSPEntry", - 1 - ] - }, - "sPDUOutletControlMSPName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletControlMSPEntry", - 2 - ] - }, - "sPDUOutletControlMSPOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletControlMSPEntry", - 3 - ] - }, - "sPDUOutletControlMSPOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletControlMSPEntry", - 4 - ] - }, - "sPDUOutletControlMSPOutletCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateOnMSP", - "2": "delayedOnMSP", - "3": "immediateOffMSP", - "4": "gracefulRebootMSP", - "5": "immediateRebootMSP", - "6": "gracefulshutdownMSP", - "7": "overrideBatCapThreshMSP", - "8": "cancelPendingCommandMSP" - } - }, - "index": null, - "value": [ - "sPDUOutletControlMSPEntry", - 5 - ] - }, - "sPDUOutletConfigMSPallTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletConfigMSPallEntry" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPall", - 1 - ] - }, - "sPDUOutletConfigMSPallEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletConfigMSPallEntry" - }, - "index": [ - "sPDUOutletConfigMSPallIndex", - "sPDUOutletConfigMSPallOutletIndex" - ], - "value": [ - "sPDUOutletConfigMSPallTable", - 1 - ] - }, - "SPDUOutletConfigMSPallEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletConfigMSPallIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPallEntry", - 1 - ] - }, - "sPDUOutletConfigMSPallName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPallEntry", - 2 - ] - }, - "sPDUOutletConfigMSPallOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPallEntry", - 3 - ] - }, - "sPDUOutletConfigMSPallOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPallEntry", - 4 - ] - }, - "sPDUOutletConfigMSPallOutletCtrlMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "modeGracefulShutdown", - "2": "modeAnnunciator" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPallEntry", - 5 - ] - }, - "sPDUOutletConfigMSPgsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletConfigMSPgsEntry" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgs", - 1 - ] - }, - "sPDUOutletConfigMSPgsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletConfigMSPgsEntry" - }, - "index": [ - "sPDUOutletConfigMSPgsIndex", - "sPDUOutletConfigMSPgsOutletIndex" - ], - "value": [ - "sPDUOutletConfigMSPgsTable", - 1 - ] - }, - "SPDUOutletConfigMSPgsEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletConfigMSPgsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 1 - ] - }, - "sPDUOutletConfigMSPgsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 2 - ] - }, - "sPDUOutletConfigMSPgsOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 3 - ] - }, - "sPDUOutletConfigMSPgsOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 4 - ] - }, - "sPDUOutletConfigMSPgsOutletCtrlMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "modeGracefulShutdown", - "2": "modeAnnunciator" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 5 - ] - }, - "sPDUOutletConfigMSPgsDeviceConfirm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "deviceConfirmNo", - "2": "deviceConfirmYes" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 6 - ] - }, - "sPDUOutletConfigMSPgsLowBattWarning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 7 - ] - }, - "sPDUOutletConfigMSPgsLowBattMult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 8 - ] - }, - "sPDUOutletConfigMSPgsRestartDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 9 - ] - }, - "sPDUOutletConfigMSPgsPowerOnDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 10 - ] - }, - "sPDUOutletConfigMSPgsPowerOffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 11 - ] - }, - "sPDUOutletConfigMSPgsBattCapThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 12 - ] - }, - "sPDUOutletConfigMSPgsRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPgsEntry", - 13 - ] - }, - "sPDUOutletConfigMSPannunTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletConfigMSPannunEntry" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannun", - 1 - ] - }, - "sPDUOutletConfigMSPannunEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletConfigMSPannunEntry" - }, - "index": [ - "sPDUOutletConfigMSPannunIndex", - "sPDUOutletConfigMSPannunOutletIndex" - ], - "value": [ - "sPDUOutletConfigMSPannunTable", - 1 - ] - }, - "SPDUOutletConfigMSPannunEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletConfigMSPannunIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 1 - ] - }, - "sPDUOutletConfigMSPannunName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 2 - ] - }, - "sPDUOutletConfigMSPannunOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 3 - ] - }, - "sPDUOutletConfigMSPannunOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 4 - ] - }, - "sPDUOutletConfigMSPannunOutletCtrlMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "modeGracefulShutdown", - "2": "modeAnnunciator" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 5 - ] - }, - "sPDUOutletConfigMSPannunInitialState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "initialStateOff", - "2": "initialStateOn" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 6 - ] - }, - "sPDUOutletConfigMSPannunAlarmActionDly": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPannunEntry", - 7 - ] - }, - "sPDUOutletConfigMSPmupsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletConfigMSPmupsEntry" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmups", - 1 - ] - }, - "sPDUOutletConfigMSPmupsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletConfigMSPmupsEntry" - }, - "index": [ - "sPDUOutletConfigMSPmupsIndex", - "sPDUOutletConfigMSPmupsOutletIndex" - ], - "value": [ - "sPDUOutletConfigMSPmupsTable", - 1 - ] - }, - "SPDUOutletConfigMSPmupsEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletConfigMSPmupsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 1 - ] - }, - "sPDUOutletConfigMSPmupsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 2 - ] - }, - "sPDUOutletConfigMSPmupsOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 3 - ] - }, - "sPDUOutletConfigMSPmupsOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 4 - ] - }, - "sPDUOutletConfigMSPmupsZone1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 5 - ] - }, - "sPDUOutletConfigMSPmupsZone2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 6 - ] - }, - "sPDUOutletConfigMSPmupsZone3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 7 - ] - }, - "sPDUOutletConfigMSPmupsZone4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 8 - ] - }, - "sPDUOutletConfigMSPmupsP1LowHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 9 - ] - }, - "sPDUOutletConfigMSPmupsP1HiHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 10 - ] - }, - "sPDUOutletConfigMSPmupsP1LowTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 11 - ] - }, - "sPDUOutletConfigMSPmupsP1HiTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 12 - ] - }, - "sPDUOutletConfigMSPmupsP2LowHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 13 - ] - }, - "sPDUOutletConfigMSPmupsP2HiHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 14 - ] - }, - "sPDUOutletConfigMSPmupsP2LowTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 15 - ] - }, - "sPDUOutletConfigMSPmupsP2HiTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableAlarm", - "2": "enableAlarm" - } - }, - "index": null, - "value": [ - "sPDUOutletConfigMSPmupsEntry", - 16 - ] - }, - "sPDUOutletStatusMSPTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SPDUOutletStatusMSPEntry" - }, - "index": null, - "value": [ - "sPDUOutletStatusMSP", - 1 - ] - }, - "sPDUOutletStatusMSPEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SPDUOutletStatusMSPEntry" - }, - "index": [ - "sPDUOutletStatusMSPIndex", - "sPDUOutletStatusMSPOutletIndex" - ], - "value": [ - "sPDUOutletStatusMSPTable", - 1 - ] - }, - "SPDUOutletStatusMSPEntry": { - "tp": "SEQUENCE" - }, - "sPDUOutletStatusMSPIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 1 - ] - }, - "sPDUOutletStatusMSPName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 2 - ] - }, - "sPDUOutletStatusMSPOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 3 - ] - }, - "sPDUOutletStatusMSPOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 4 - ] - }, - "sPDUOutletStatusMSPOutletState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletStatusMSPOn", - "2": "outletStatusMSPOff" - } - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 5 - ] - }, - "sPDUOutletStatusMSPCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletStatusMSPCommandPending", - "2": "outletStatusMSPNoCommandPending" - } - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 6 - ] - }, - "sPDUOutletStatusMSPOutletCtrlMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "modeGracefulShutdown", - "2": "modeAnnunciator" - } - }, - "index": null, - "value": [ - "sPDUOutletStatusMSPEntry", - 7 - ] - }, - "rPDUIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUIdent", - 1 - ] - }, - "rPDUIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUIdent", - 2 - ] - }, - "rPDUIdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUIdent", - 3 - ] - }, - "rPDUIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUIdent", - 4 - ] - }, - "rPDUIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUIdent", - 5 - ] - }, - "rPDUIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUIdent", - 6 - ] - }, - "rPDUIdentDeviceRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 7 - ] - }, - "rPDUIdentDeviceNumOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 8 - ] - }, - "rPDUIdentDeviceNumPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 9 - ] - }, - "rPDUIdentDeviceNumBreakers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 10 - ] - }, - "rPDUIdentDeviceBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 11 - ] - }, - "rPDUIdentDeviceOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "orientHorizontal", - "2": "orientVertical" - } - }, - "index": null, - "value": [ - "rPDUIdent", - 12 - ] - }, - "rPDUIdentDeviceOutletLayout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "seqPhaseToNeutral", - "2": "seqPhaseToPhase", - "3": "seqPhToNeu21PhToPh", - "4": "seqPhToPhGrouped", - "5": "seqPhToNGrouped", - "6": "seqPToN1516PToPGrouped", - "7": "seqPhToPh2xGrouped", - "8": "seqPhToN2xGrouped", - "9": "seqNotApplicable" - } - }, - "index": null, - "value": [ - "rPDUIdent", - 13 - ] - }, - "rPDUIdentDeviceDisplayOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "displayNormal", - "2": "displayReverse" - } - }, - "index": null, - "value": [ - "rPDUIdent", - 14 - ] - }, - "rPDUIdentDeviceLinetoLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 15 - ] - }, - "rPDUIdentDevicePowerWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 16 - ] - }, - "rPDUIdentDevicePowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 17 - ] - }, - "rPDUIdentDevicePowerVA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 18 - ] - }, - "rPDUIdentDeviceLinetoNeutralVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUIdent", - 19 - ] - }, - "rPDULoadDevMaxPhaseLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 1 - ] - }, - "rPDULoadDevNumPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 2 - ] - }, - "rPDULoadDevMaxBankLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 3 - ] - }, - "rPDULoadDevNumBanks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 4 - ] - }, - "rPDULoadDevBankTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 5 - ] - }, - "rPDULoadDevBankTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDULoadDevBankEntry" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 6 - ] - }, - "rPDULoadDevBankEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDULoadDevBankEntry" - }, - "index": [ - "rPDULoadDevBankIndex" - ], - "value": [ - "rPDULoadDevBankTable", - 1 - ] - }, - "RPDULoadDevBankEntry": { - "tp": "SEQUENCE" - }, - "rPDULoadDevBankIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevBankEntry", - 1 - ] - }, - "rPDULoadDevBankNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevBankEntry", - 2 - ] - }, - "rPDULoadDevBankMaxLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevBankEntry", - 3 - ] - }, - "rPDULoadDevMaxOutletTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 7 - ] - }, - "rPDULoadDevMaxOutletTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDULoadDevMaxOutletEntry" - }, - "index": null, - "value": [ - "rPDULoadDevice", - 8 - ] - }, - "rPDULoadDevMaxOutletEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDULoadDevMaxOutletEntry" - }, - "index": [ - "rPDULoadDevOutletIndex" - ], - "value": [ - "rPDULoadDevMaxOutletTable", - 1 - ] - }, - "RPDULoadDevMaxOutletEntry": { - "tp": "SEQUENCE" - }, - "rPDULoadDevOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevMaxOutletEntry", - 1 - ] - }, - "rPDULoadDevOutletNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevMaxOutletEntry", - 2 - ] - }, - "rPDULoadDevMaxOutletLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadDevMaxOutletEntry", - 3 - ] - }, - "rPDULoadPhaseConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDULoadPhaseConfigEntry" - }, - "index": null, - "value": [ - "rPDULoadPhaseConfig", - 1 - ] - }, - "rPDULoadPhaseConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDULoadPhaseConfigEntry" - }, - "index": [ - "rPDULoadPhaseConfigIndex" - ], - "value": [ - "rPDULoadPhaseConfigTable", - 1 - ] - }, - "RPDULoadPhaseConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDULoadPhaseConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "rPDULoadPhaseConfigEntry", - 1 - ] - }, - "rPDULoadPhaseConfigLowLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadPhaseConfigEntry", - 2 - ] - }, - "rPDULoadPhaseConfigNearOverloadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadPhaseConfigEntry", - 3 - ] - }, - "rPDULoadPhaseConfigOverloadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadPhaseConfigEntry", - 4 - ] - }, - "rPDULoadPhaseConfigAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noLoadAlarm", - "2": "underCurrentAlarm", - "3": "nearOverCurrentAlarm", - "4": "overCurrentAlarm" - } - }, - "index": null, - "value": [ - "rPDULoadPhaseConfigEntry", - 5 - ] - }, - "rPDULoadStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDULoadStatusEntry" - }, - "index": null, - "value": [ - "rPDULoadStatus", - 1 - ] - }, - "rPDULoadStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDULoadStatusEntry" - }, - "index": [ - "rPDULoadStatusIndex" - ], - "value": [ - "rPDULoadStatusTable", - 1 - ] - }, - "RPDULoadStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDULoadStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadStatusEntry", - 1 - ] - }, - "rPDULoadStatusLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "rPDULoadStatusEntry", - 2 - ] - }, - "rPDULoadStatusLoadState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phaseLoadNormal", - "2": "phaseLoadLow", - "3": "phaseLoadNearOverload", - "4": "phaseLoadOverload" - } - }, - "index": null, - "value": [ - "rPDULoadStatusEntry", - 3 - ] - }, - "rPDULoadStatusPhaseNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadStatusEntry", - 4 - ] - }, - "rPDULoadStatusBankNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadStatusEntry", - 5 - ] - }, - "rPDULoadBankConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDULoadBankConfigEntry" - }, - "index": null, - "value": [ - "rPDULoadBankConfig", - 1 - ] - }, - "rPDULoadBankConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDULoadBankConfigEntry" - }, - "index": [ - "rPDULoadBankConfigIndex" - ], - "value": [ - "rPDULoadBankConfigTable", - 1 - ] - }, - "RPDULoadBankConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDULoadBankConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadBankConfigEntry", - 1 - ] - }, - "rPDULoadBankConfigLowLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadBankConfigEntry", - 2 - ] - }, - "rPDULoadBankConfigNearOverloadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadBankConfigEntry", - 3 - ] - }, - "rPDULoadBankConfigOverloadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDULoadBankConfigEntry", - 4 - ] - }, - "rPDULoadBankConfigAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noLoadAlarm", - "2": "underCurrentAlarm", - "3": "nearOverCurrentAlarm", - "4": "overCurrentAlarm" - } - }, - "index": null, - "value": [ - "rPDULoadBankConfigEntry", - 5 - ] - }, - "rPDUOutletDevCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noCommandAll", - "2": "immediateAllOn", - "3": "immediateAllOff", - "4": "immediateAllReboot", - "5": "delayedAllOn", - "6": "delayedAllOff", - "7": "delayedAllReboot", - "8": "cancelAllPendingCommands" - } - }, - "index": null, - "value": [ - "rPDUOutletDevice", - 1 - ] - }, - "rPDUOutletDevColdstartDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletDevice", - 2 - ] - }, - "rPDUOutletDevNumCntrlOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletDevice", - 3 - ] - }, - "rPDUOutletDevNumTotalOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletDevice", - 4 - ] - }, - "rPDUOutletDevMonitoredOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletDevice", - 5 - ] - }, - "rPDUOutletPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUOutletPhaseEntry" - }, - "index": null, - "value": [ - "rPDUOutletPhase", - 1 - ] - }, - "rPDUOutletPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUOutletPhaseEntry" - }, - "index": [ - "rPDUOutletPhaseIndex" - ], - "value": [ - "rPDUOutletPhaseTable", - 1 - ] - }, - "RPDUOutletPhaseEntry": { - "tp": "SEQUENCE" - }, - "rPDUOutletPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "rPDUOutletPhaseEntry", - 1 - ] - }, - "rPDUOutletPhaseOverloadRestriction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alwaysAllowTurnON", - "2": "restrictOnNearOverload", - "3": "restrictOnOverload" - } - }, - "index": null, - "value": [ - "rPDUOutletPhaseEntry", - 2 - ] - }, - "rPDUOutletControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUOutletControlEntry" - }, - "index": null, - "value": [ - "rPDUOutletControl", - 1 - ] - }, - "rPDUOutletControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUOutletControlEntry" - }, - "index": [ - "rPDUOutletControlIndex" - ], - "value": [ - "rPDUOutletControlTable", - 1 - ] - }, - "RPDUOutletControlEntry": { - "tp": "SEQUENCE" - }, - "rPDUOutletControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletControlEntry", - 1 - ] - }, - "rPDUOutletControlOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUOutletControlEntry", - 2 - ] - }, - "rPDUOutletControlOutletPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3", - "4": "phase1-2", - "5": "phase2-3", - "6": "phase3-1" - } - }, - "index": null, - "value": [ - "rPDUOutletControlEntry", - 3 - ] - }, - "rPDUOutletControlOutletCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateOn", - "2": "immediateOff", - "3": "immediateReboot", - "4": "delayedOn", - "5": "delayedOff", - "6": "delayedReboot", - "7": "cancelPendingCommand" - } - }, - "index": null, - "value": [ - "rPDUOutletControlEntry", - 4 - ] - }, - "rPDUOutletControlOutletBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletControlEntry", - 5 - ] - }, - "rPDUOutletConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUOutletConfigEntry" - }, - "index": null, - "value": [ - "rPDUOutletConfig", - 1 - ] - }, - "rPDUOutletConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUOutletConfigEntry" - }, - "index": [ - "rPDUOutletConfigIndex" - ], - "value": [ - "rPDUOutletConfigTable", - 1 - ] - }, - "RPDUOutletConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDUOutletConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 1 - ] - }, - "rPDUOutletConfigOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 2 - ] - }, - "rPDUOutletConfigOutletPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3", - "4": "phase1-2", - "5": "phase2-3", - "6": "phase3-1" - } - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 3 - ] - }, - "rPDUOutletConfigPowerOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 4 - ] - }, - "rPDUOutletConfigPowerOffTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 5 - ] - }, - "rPDUOutletConfigRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 6 - ] - }, - "rPDUOutletConfigOutletBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigEntry", - 7 - ] - }, - "rPDUOutletConfigMonitoredTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfig", - 2 - ] - }, - "rPDUOutletConfigMonitoredTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUOutletConfigMonitoredEntry" - }, - "index": null, - "value": [ - "rPDUOutletConfig", - 3 - ] - }, - "rPDUOutletConfigMonitoredEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUOutletConfigMonitoredEntry" - }, - "index": [ - "rPDUOutletConfigMonitoredIndex" - ], - "value": [ - "rPDUOutletConfigMonitoredTable", - 1 - ] - }, - "RPDUOutletConfigMonitoredEntry": { - "tp": "SEQUENCE" - }, - "rPDUOutletConfigMonitoredIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigMonitoredEntry", - 1 - ] - }, - "rPDUOutletConfigMonitoredName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUOutletConfigMonitoredEntry", - 2 - ] - }, - "rPDUOutletConfigMonitoredNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigMonitoredEntry", - 3 - ] - }, - "rPDUOutletConfigMonitoredLowLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigMonitoredEntry", - 4 - ] - }, - "rPDUOutletConfigMonitoredNearOverloadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigMonitoredEntry", - 5 - ] - }, - "rPDUOutletConfigMonitoredOverloadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletConfigMonitoredEntry", - 6 - ] - }, - "rPDUOutletStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUOutletStatusEntry" - }, - "index": null, - "value": [ - "rPDUOutletStatus", - 1 - ] - }, - "rPDUOutletStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUOutletStatusEntry" - }, - "index": [ - "rPDUOutletStatusIndex" - ], - "value": [ - "rPDUOutletStatusTable", - 1 - ] - }, - "RPDUOutletStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDUOutletStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 1 - ] - }, - "rPDUOutletStatusOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 2 - ] - }, - "rPDUOutletStatusOutletPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3", - "4": "phase1-2", - "5": "phase2-3", - "6": "phase3-1" - } - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 3 - ] - }, - "rPDUOutletStatusOutletState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletStatusOn", - "2": "outletStatusOff" - } - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 4 - ] - }, - "rPDUOutletStatusCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletStatusCommandPending", - "2": "outletStatusNoCommandPending" - } - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 5 - ] - }, - "rPDUOutletStatusOutletBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 6 - ] - }, - "rPDUOutletStatusLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "rPDUOutletStatusEntry", - 7 - ] - }, - "rPDUOutletBankTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUOutletBankEntry" - }, - "index": null, - "value": [ - "rPDUOutletBank", - 1 - ] - }, - "rPDUOutletBankEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUOutletBankEntry" - }, - "index": [ - "rPDUOutletBankIndex" - ], - "value": [ - "rPDUOutletBankTable", - 1 - ] - }, - "RPDUOutletBankEntry": { - "tp": "SEQUENCE" - }, - "rPDUOutletBankIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUOutletBankEntry", - 1 - ] - }, - "rPDUOutletBankOverloadRestriction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alwaysAllowTurnON", - "2": "restrictOnNearOverload", - "3": "restrictOnOverload" - } - }, - "index": null, - "value": [ - "rPDUOutletBankEntry", - 2 - ] - }, - "rPDUPowerSupply1Status": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "powerSupplyOneOk", - "2": "powerSupplyOneFailed" - } - }, - "index": null, - "value": [ - "rPDUPowerSupplyDevice", - 1 - ] - }, - "rPDUPowerSupply2Status": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "powerSupplyTwoOk", - "2": "powerSupplyTwoFailed", - "3": "powerSupplyTwoNotPresent" - } - }, - "index": null, - "value": [ - "rPDUPowerSupplyDevice", - 2 - ] - }, - "rPDUPowerSupplyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "allAvailablePowerSuppliesOK", - "2": "powerSupplyOneFailed", - "3": "powerSupplyTwoFailed", - "4": "powerSupplyOneandTwoFailed" - } - }, - "index": null, - "value": [ - "rPDUPowerSupplyDevice", - 3 - ] - }, - "rPDUStatusBankTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatus", - 1 - ] - }, - "rPDUStatusBankTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUStatusBankEntry" - }, - "index": null, - "value": [ - "rPDUStatus", - 2 - ] - }, - "rPDUStatusBankEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUStatusBankEntry" - }, - "index": [ - "rPDUStatusBankIndex" - ], - "value": [ - "rPDUStatusBankTable", - 1 - ] - }, - "RPDUStatusBankEntry": { - "tp": "SEQUENCE" - }, - "rPDUStatusBankIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatusBankEntry", - 1 - ] - }, - "rPDUStatusBankNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatusBankEntry", - 2 - ] - }, - "rPDUStatusBankState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "bankLoadNormal", - "2": "bankLoadLow", - "3": "bankLoadNearOverload", - "4": "bankLoadOverload" - } - }, - "index": null, - "value": [ - "rPDUStatusBankEntry", - 3 - ] - }, - "rPDUStatusPhaseTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatus", - 3 - ] - }, - "rPDUStatusPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUStatusPhaseEntry" - }, - "index": null, - "value": [ - "rPDUStatus", - 4 - ] - }, - "rPDUStatusPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUStatusPhaseEntry" - }, - "index": [ - "rPDUStatusPhaseIndex" - ], - "value": [ - "rPDUStatusPhaseTable", - 1 - ] - }, - "RPDUStatusPhaseEntry": { - "tp": "SEQUENCE" - }, - "rPDUStatusPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatusPhaseEntry", - 1 - ] - }, - "rPDUStatusPhaseNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatusPhaseEntry", - 2 - ] - }, - "rPDUStatusPhaseState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phaseLoadNormal", - "2": "phaseLoadLow", - "3": "phaseLoadNearOverload", - "4": "phaseLoadOverload" - } - }, - "index": null, - "value": [ - "rPDUStatusPhaseEntry", - 3 - ] - }, - "rPDUStatusOutletTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatus", - 5 - ] - }, - "rPDUStatusOutletTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDUStatusOutletEntry" - }, - "index": null, - "value": [ - "rPDUStatus", - 6 - ] - }, - "rPDUStatusOutletEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDUStatusOutletEntry" - }, - "index": [ - "rPDUStatusOutletIndex" - ], - "value": [ - "rPDUStatusOutletTable", - 1 - ] - }, - "RPDUStatusOutletEntry": { - "tp": "SEQUENCE" - }, - "rPDUStatusOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatusOutletEntry", - 1 - ] - }, - "rPDUStatusOutletNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDUStatusOutletEntry", - 2 - ] - }, - "rPDUStatusOutletState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletLoadNormal", - "2": "outletLoadLow", - "3": "outletLoadNearOverload", - "4": "outletLoadOverload" - } - }, - "index": null, - "value": [ - "rPDUStatusOutletEntry", - 3 - ] - }, - "Rpdu2OutletPhaseLayoutType": { - "tp": "INTEGER", - "values": { - "1": "seqPhase1ToNeutral", - "2": "seqPhase2ToNeutral", - "3": "seqPhase3ToNeutral", - "4": "seqPhase1ToPhase2", - "5": "seqPhase2ToPhase3", - "6": "seqPhase3ToPhase1" - } - }, - "rPDU2IdentTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2", - 1 - ] - }, - "rPDU2IdentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2IdentEntry" - }, - "index": null, - "value": [ - "rPDU2", - 2 - ] - }, - "rPDU2IdentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2IdentEntry" - }, - "index": [ - "rPDU2IdentIndex" - ], - "value": [ - "rPDU2IdentTable", - 1 - ] - }, - "RPDU2IdentEntry": { - "tp": "SEQUENCE" - }, - "rPDU2IdentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 1 - ] - }, - "rPDU2IdentModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 2 - ] - }, - "rPDU2IdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 3 - ] - }, - "rPDU2IdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 4 - ] - }, - "rPDU2IdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 5 - ] - }, - "rPDU2IdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 6 - ] - }, - "rPDU2IdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 7 - ] - }, - "rPDU2IdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 8 - ] - }, - "rPDU2IdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 9 - ] - }, - "rPDU2IdentContact": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2IdentEntry", - 10 - ] - }, - "rPDU2DeviceTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2", - 3 - ] - }, - "rPDU2Device": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 4 - ] - }, - "rPDU2DeviceConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2DeviceConfigEntry" - }, - "index": null, - "value": [ - "rPDU2Device", - 1 - ] - }, - "rPDU2DeviceConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2DeviceConfigEntry" - }, - "index": [ - "rPDU2DeviceConfigIndex" - ], - "value": [ - "rPDU2DeviceConfigTable", - 1 - ] - }, - "RPDU2DeviceConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2DeviceConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 1 - ] - }, - "rPDU2DeviceConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 2 - ] - }, - "rPDU2DeviceConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 3 - ] - }, - "rPDU2DeviceConfigLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 4 - ] - }, - "rPDU2DeviceConfigDisplayOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "displayNormal", - "2": "displayReverse" - } - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 5 - ] - }, - "rPDU2DeviceConfigColdstartDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 6 - ] - }, - "rPDU2DeviceConfigLowLoadPowerThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 7 - ] - }, - "rPDU2DeviceConfigNearOverloadPowerThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 8 - ] - }, - "rPDU2DeviceConfigOverloadPowerThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 9 - ] - }, - "rPDU2DeviceConfigDevicePeakPowerReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset", - "3": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 10 - ] - }, - "rPDU2DeviceConfigDeviceEnergyReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset", - "3": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 11 - ] - }, - "rPDU2DeviceConfigOutletsEnergyReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset", - "3": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 12 - ] - }, - "rPDU2DeviceConfigOutletsPeakLoadReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset", - "3": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 13 - ] - }, - "rPDU2DeviceConfigContact": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceConfigEntry", - 14 - ] - }, - "rPDU2DevicePropertiesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2DevicePropertiesEntry" - }, - "index": null, - "value": [ - "rPDU2Device", - 2 - ] - }, - "rPDU2DevicePropertiesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2DevicePropertiesEntry" - }, - "index": [ - "rPDU2DevicePropertiesIndex" - ], - "value": [ - "rPDU2DevicePropertiesTable", - 1 - ] - }, - "RPDU2DevicePropertiesEntry": { - "tp": "SEQUENCE" - }, - "rPDU2DevicePropertiesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 1 - ] - }, - "rPDU2DevicePropertiesModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 2 - ] - }, - "rPDU2DevicePropertiesName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 3 - ] - }, - "rPDU2DevicePropertiesNumOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 4 - ] - }, - "rPDU2DevicePropertiesNumSwitchedOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 5 - ] - }, - "rPDU2DevicePropertiesNumMeteredOutlets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 6 - ] - }, - "rPDU2DevicePropertiesNumPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 7 - ] - }, - "rPDU2DevicePropertiesNumMeteredBanks": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 8 - ] - }, - "rPDU2DevicePropertiesMaxCurrentRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 9 - ] - }, - "rPDU2DevicePropertiesOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "horizontal", - "2": "vertical", - "3": "verticalISXv2", - "4": "verticalISXv3" - } - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 10 - ] - }, - "rPDU2DevicePropertiesOutletLayout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "seqPhaseToNeutral", - "2": "seqPhaseToPhase", - "3": "seqPhToNeu21PhToPh", - "4": "seqPhToPhGrouped", - "5": "seqPhToNGrouped", - "6": "seqPToN1516PToPGrouped", - "7": "seqPhToPh2xGrouped", - "8": "seqPhToN2xGrouped", - "9": "seqNotApplicable", - "10": "seqPhToNPhToPhPhToN" - } - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 11 - ] - }, - "rPDU2DevicePropertiesMaxPhaseCurrentRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DevicePropertiesEntry", - 12 - ] - }, - "rPDU2DeviceStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2DeviceStatusEntry" - }, - "index": null, - "value": [ - "rPDU2Device", - 3 - ] - }, - "rPDU2DeviceStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2DeviceStatusEntry" - }, - "index": [ - "rPDU2DeviceStatusIndex" - ], - "value": [ - "rPDU2DeviceStatusTable", - 1 - ] - }, - "RPDU2DeviceStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2DeviceStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 1 - ] - }, - "rPDU2DeviceStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 2 - ] - }, - "rPDU2DeviceStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 3 - ] - }, - "rPDU2DeviceStatusLoadState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lowLoad", - "2": "normal", - "3": "nearOverload", - "4": "overload", - "5": "notsupported" - } - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 4 - ] - }, - "rPDU2DeviceStatusPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 5 - ] - }, - "rPDU2DeviceStatusPeakPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 6 - ] - }, - "rPDU2DeviceStatusPeakPowerTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 7 - ] - }, - "rPDU2DeviceStatusPeakPowerStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 8 - ] - }, - "rPDU2DeviceStatusEnergy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 9 - ] - }, - "rPDU2DeviceStatusEnergyStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 10 - ] - }, - "rPDU2DeviceStatusCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commandPending", - "2": "noCommandPending", - "3": "commandPendingUnknown" - } - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 11 - ] - }, - "rPDU2DeviceStatusPowerSupplyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 12 - ] - }, - "rPDU2DeviceStatusPowerSupply1Status": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm", - "3": "notInstalled" - } - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 13 - ] - }, - "rPDU2DeviceStatusPowerSupply2Status": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm", - "3": "notInstalled" - } - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 14 - ] - }, - "rPDU2DeviceStatusOutletsEnergyStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 15 - ] - }, - "rPDU2DeviceStatusApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 16 - ] - }, - "rPDU2DeviceStatusPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 17 - ] - }, - "rPDU2DeviceStatusNPSType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notNPS", - "2": "host", - "3": "guest" - } - }, - "index": null, - "value": [ - "rPDU2DeviceStatusEntry", - 18 - ] - }, - "rPDU2DeviceControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2DeviceControlEntry" - }, - "index": null, - "value": [ - "rPDU2Device", - 4 - ] - }, - "rPDU2DeviceControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2DeviceControlEntry" - }, - "index": [ - "rPDU2DeviceControlIndex" - ], - "value": [ - "rPDU2DeviceControlTable", - 1 - ] - }, - "RPDU2DeviceControlEntry": { - "tp": "SEQUENCE" - }, - "rPDU2DeviceControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceControlEntry", - 1 - ] - }, - "rPDU2DeviceControlModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2DeviceControlEntry", - 2 - ] - }, - "rPDU2DeviceControlName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2DeviceControlEntry", - 3 - ] - }, - "rPDU2DeviceControlCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateAllOn", - "2": "delayedAllOn", - "3": "immediateAllOff", - "4": "immediateAllReboot", - "5": "delayedAllReboot", - "6": "noCommandAll", - "7": "delayedAllOff", - "8": "cancelAllPendingCommands" - } - }, - "index": null, - "value": [ - "rPDU2DeviceControlEntry", - 4 - ] - }, - "rPDU2PhaseTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2", - 5 - ] - }, - "rPDU2Phase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 6 - ] - }, - "rPDU2PhaseConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2PhaseConfigEntry" - }, - "index": null, - "value": [ - "rPDU2Phase", - 1 - ] - }, - "rPDU2PhaseConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2PhaseConfigEntry" - }, - "index": [ - "rPDU2PhaseConfigIndex" - ], - "value": [ - "rPDU2PhaseConfigTable", - 1 - ] - }, - "RPDU2PhaseConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2PhaseConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 1 - ] - }, - "rPDU2PhaseConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 2 - ] - }, - "rPDU2PhaseConfigNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 3 - ] - }, - "rPDU2PhaseConfigOverloadRestriction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alwaysAllowTurnON", - "2": "restrictOnNearOverload", - "3": "restrictOnOverload", - "4": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 4 - ] - }, - "rPDU2PhaseConfigLowLoadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 5 - ] - }, - "rPDU2PhaseConfigNearOverloadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 6 - ] - }, - "rPDU2PhaseConfigOverloadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 7 - ] - }, - "rPDU2PhaseConfigPhasePeakCurrentReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "rPDU2PhaseConfigEntry", - 8 - ] - }, - "rPDU2PhasePropertiesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2PhasePropertiesEntry" - }, - "index": null, - "value": [ - "rPDU2Phase", - 2 - ] - }, - "rPDU2PhasePropertiesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2PhasePropertiesEntry" - }, - "index": [ - "rPDU2PhasePropertiesIndex" - ], - "value": [ - "rPDU2PhasePropertiesTable", - 1 - ] - }, - "RPDU2PhasePropertiesEntry": { - "tp": "SEQUENCE" - }, - "rPDU2PhasePropertiesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhasePropertiesEntry", - 1 - ] - }, - "rPDU2PhasePropertiesModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhasePropertiesEntry", - 2 - ] - }, - "rPDU2PhasePropertiesNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhasePropertiesEntry", - 3 - ] - }, - "rPDU2PhaseStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2PhaseStatusEntry" - }, - "index": null, - "value": [ - "rPDU2Phase", - 3 - ] - }, - "rPDU2PhaseStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2PhaseStatusEntry" - }, - "index": [ - "rPDU2PhaseStatusIndex" - ], - "value": [ - "rPDU2PhaseStatusTable", - 1 - ] - }, - "RPDU2PhaseStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2PhaseStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 1 - ] - }, - "rPDU2PhaseStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 2 - ] - }, - "rPDU2PhaseStatusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 3 - ] - }, - "rPDU2PhaseStatusLoadState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lowLoad", - "2": "normal", - "3": "nearOverload", - "4": "overload" - } - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 4 - ] - }, - "rPDU2PhaseStatusCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 5 - ] - }, - "rPDU2PhaseStatusVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 6 - ] - }, - "rPDU2PhaseStatusPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 7 - ] - }, - "rPDU2PhaseStatusApparentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 8 - ] - }, - "rPDU2PhaseStatusPowerFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 9 - ] - }, - "rPDU2PhaseStatusPeakCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 10 - ] - }, - "rPDU2PhaseStatusPeakCurrentTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 11 - ] - }, - "rPDU2PhaseStatusPeakCurrentStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2PhaseStatusEntry", - 12 - ] - }, - "rPDU2BankTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2", - 7 - ] - }, - "rPDU2Bank": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 8 - ] - }, - "rPDU2BankConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2BankConfigEntry" - }, - "index": null, - "value": [ - "rPDU2Bank", - 1 - ] - }, - "rPDU2BankConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2BankConfigEntry" - }, - "index": [ - "rPDU2BankConfigIndex" - ], - "value": [ - "rPDU2BankConfigTable", - 1 - ] - }, - "RPDU2BankConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2BankConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 1 - ] - }, - "rPDU2BankConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 2 - ] - }, - "rPDU2BankConfigNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 3 - ] - }, - "rPDU2BankConfigOverloadRestriction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alwaysAllowTurnON", - "2": "restrictOnNearOverload", - "3": "restrictOnOverload", - "4": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 4 - ] - }, - "rPDU2BankConfigLowLoadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 5 - ] - }, - "rPDU2BankConfigNearOverloadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 6 - ] - }, - "rPDU2BankConfigOverloadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 7 - ] - }, - "rPDU2BankConfigBankPeakCurrentReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "rPDU2BankConfigEntry", - 8 - ] - }, - "rPDU2BankPropertiesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2BankPropertiesEntry" - }, - "index": null, - "value": [ - "rPDU2Bank", - 2 - ] - }, - "rPDU2BankPropertiesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2BankPropertiesEntry" - }, - "index": [ - "rPDU2BankPropertiesIndex" - ], - "value": [ - "rPDU2BankPropertiesTable", - 1 - ] - }, - "RPDU2BankPropertiesEntry": { - "tp": "SEQUENCE" - }, - "rPDU2BankPropertiesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankPropertiesEntry", - 1 - ] - }, - "rPDU2BankPropertiesModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankPropertiesEntry", - 2 - ] - }, - "rPDU2BankPropertiesNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankPropertiesEntry", - 3 - ] - }, - "rPDU2BankPropertiesPhaseLayout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Rpdu2OutletPhaseLayoutType" - }, - "index": null, - "value": [ - "rPDU2BankPropertiesEntry", - 4 - ] - }, - "rPDU2BankStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2BankStatusEntry" - }, - "index": null, - "value": [ - "rPDU2Bank", - 3 - ] - }, - "rPDU2BankStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2BankStatusEntry" - }, - "index": [ - "rPDU2BankStatusIndex" - ], - "value": [ - "rPDU2BankStatusTable", - 1 - ] - }, - "RPDU2BankStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2BankStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 1 - ] - }, - "rPDU2BankStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 2 - ] - }, - "rPDU2BankStatusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 3 - ] - }, - "rPDU2BankStatusLoadState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lowLoad", - "2": "normal", - "3": "nearOverload", - "4": "overload" - } - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 4 - ] - }, - "rPDU2BankStatusCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 5 - ] - }, - "rPDU2BankStatusPeakCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 6 - ] - }, - "rPDU2BankStatusPeakCurrentTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 7 - ] - }, - "rPDU2BankStatusPeakCurrentStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2BankStatusEntry", - 8 - ] - }, - "rPDU2Outlet": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 9 - ] - }, - "rPDU2OutletSwitchedTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Outlet", - 1 - ] - }, - "rPDU2OutletSwitched": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2Outlet", - 2 - ] - }, - "rPDU2OutletSwitchedConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletSwitchedConfigEntry" - }, - "index": null, - "value": [ - "rPDU2OutletSwitched", - 1 - ] - }, - "rPDU2OutletSwitchedConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletSwitchedConfigEntry" - }, - "index": [ - "rPDU2OutletSwitchedConfigIndex" - ], - "value": [ - "rPDU2OutletSwitchedConfigTable", - 1 - ] - }, - "RPDU2OutletSwitchedConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletSwitchedConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 1 - ] - }, - "rPDU2OutletSwitchedConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 2 - ] - }, - "rPDU2OutletSwitchedConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 3 - ] - }, - "rPDU2OutletSwitchedConfigNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 4 - ] - }, - "rPDU2OutletSwitchedConfigPowerOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 5 - ] - }, - "rPDU2OutletSwitchedConfigPowerOffTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 6 - ] - }, - "rPDU2OutletSwitchedConfigRebootDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedConfigEntry", - 7 - ] - }, - "rPDU2OutletSwitchedPropertiesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletSwitchedPropertiesEntry" - }, - "index": null, - "value": [ - "rPDU2OutletSwitched", - 2 - ] - }, - "rPDU2OutletSwitchedPropertiesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletSwitchedPropertiesEntry" - }, - "index": [ - "rPDU2OutletSwitchedPropertiesIndex" - ], - "value": [ - "rPDU2OutletSwitchedPropertiesTable", - 1 - ] - }, - "RPDU2OutletSwitchedPropertiesEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletSwitchedPropertiesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedPropertiesEntry", - 1 - ] - }, - "rPDU2OutletSwitchedPropertiesModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedPropertiesEntry", - 2 - ] - }, - "rPDU2OutletSwitchedPropertiesName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedPropertiesEntry", - 3 - ] - }, - "rPDU2OutletSwitchedPropertiesNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedPropertiesEntry", - 4 - ] - }, - "rPDU2OutletSwitchedPropertiesPhaseLayout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Rpdu2OutletPhaseLayoutType" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedPropertiesEntry", - 5 - ] - }, - "rPDU2OutletSwitchedPropertiesBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedPropertiesEntry", - 6 - ] - }, - "rPDU2OutletSwitchedStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletSwitchedStatusEntry" - }, - "index": null, - "value": [ - "rPDU2OutletSwitched", - 3 - ] - }, - "rPDU2OutletSwitchedStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletSwitchedStatusEntry" - }, - "index": [ - "rPDU2OutletSwitchedStatusIndex" - ], - "value": [ - "rPDU2OutletSwitchedStatusTable", - 1 - ] - }, - "RPDU2OutletSwitchedStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletSwitchedStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedStatusEntry", - 1 - ] - }, - "rPDU2OutletSwitchedStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedStatusEntry", - 2 - ] - }, - "rPDU2OutletSwitchedStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedStatusEntry", - 3 - ] - }, - "rPDU2OutletSwitchedStatusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedStatusEntry", - 4 - ] - }, - "rPDU2OutletSwitchedStatusState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedStatusEntry", - 5 - ] - }, - "rPDU2OutletSwitchedStatusCommandPending": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commandPending", - "2": "noCommandPending", - "3": "commandPendingUnknown" - } - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedStatusEntry", - 6 - ] - }, - "rPDU2OutletSwitchedControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletSwitchedControlEntry" - }, - "index": null, - "value": [ - "rPDU2OutletSwitched", - 4 - ] - }, - "rPDU2OutletSwitchedControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletSwitchedControlEntry" - }, - "index": [ - "rPDU2OutletSwitchedControlIndex" - ], - "value": [ - "rPDU2OutletSwitchedControlTable", - 1 - ] - }, - "RPDU2OutletSwitchedControlEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletSwitchedControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedControlEntry", - 1 - ] - }, - "rPDU2OutletSwitchedControlModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedControlEntry", - 2 - ] - }, - "rPDU2OutletSwitchedControlName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedControlEntry", - 3 - ] - }, - "rPDU2OutletSwitchedControlNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedControlEntry", - 4 - ] - }, - "rPDU2OutletSwitchedControlCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateOn", - "2": "immediateOff", - "3": "immediateReboot", - "4": "outletUnknown", - "5": "delayedOn", - "6": "delayedOff", - "7": "delayedReboot", - "8": "cancelPendingCommand" - } - }, - "index": null, - "value": [ - "rPDU2OutletSwitchedControlEntry", - 5 - ] - }, - "rPDU2OutletMeteredTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Outlet", - 3 - ] - }, - "rPDU2OutletMetered": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2Outlet", - 4 - ] - }, - "rPDU2OutletMeteredConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletMeteredConfigEntry" - }, - "index": null, - "value": [ - "rPDU2OutletMetered", - 1 - ] - }, - "rPDU2OutletMeteredConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletMeteredConfigEntry" - }, - "index": [ - "rPDU2OutletMeteredConfigIndex" - ], - "value": [ - "rPDU2OutletMeteredConfigTable", - 1 - ] - }, - "RPDU2OutletMeteredConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletMeteredConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 1 - ] - }, - "rPDU2OutletMeteredConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 2 - ] - }, - "rPDU2OutletMeteredConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 3 - ] - }, - "rPDU2OutletMeteredConfigNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 4 - ] - }, - "rPDU2OutletMeteredConfigLowLoadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 5 - ] - }, - "rPDU2OutletMeteredConfigNearOverloadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 6 - ] - }, - "rPDU2OutletMeteredConfigOverloadCurrentThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredConfigEntry", - 7 - ] - }, - "rPDU2OutletMeteredPropertiesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletMeteredPropertiesEntry" - }, - "index": null, - "value": [ - "rPDU2OutletMetered", - 2 - ] - }, - "rPDU2OutletMeteredPropertiesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletMeteredPropertiesEntry" - }, - "index": [ - "rPDU2OutletMeteredPropertiesIndex" - ], - "value": [ - "rPDU2OutletMeteredPropertiesTable", - 1 - ] - }, - "RPDU2OutletMeteredPropertiesEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletMeteredPropertiesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 1 - ] - }, - "rPDU2OutletMeteredPropertiesModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 2 - ] - }, - "rPDU2OutletMeteredPropertiesName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 3 - ] - }, - "rPDU2OutletMeteredPropertiesNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 4 - ] - }, - "rPDU2OutletMeteredPropertiesLayout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Rpdu2OutletPhaseLayoutType" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 5 - ] - }, - "rPDU2OutletMeteredPropertiesPowerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 6 - ] - }, - "rPDU2OutletMeteredPropertiesBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredPropertiesEntry", - 7 - ] - }, - "rPDU2OutletMeteredStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2OutletMeteredStatusEntry" - }, - "index": null, - "value": [ - "rPDU2OutletMetered", - 3 - ] - }, - "rPDU2OutletMeteredStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2OutletMeteredStatusEntry" - }, - "index": [ - "rPDU2OutletMeteredStatusIndex" - ], - "value": [ - "rPDU2OutletMeteredStatusTable", - 1 - ] - }, - "RPDU2OutletMeteredStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2OutletMeteredStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 1 - ] - }, - "rPDU2OutletMeteredStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 2 - ] - }, - "rPDU2OutletMeteredStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 3 - ] - }, - "rPDU2OutletMeteredStatusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 4 - ] - }, - "rPDU2OutletMeteredStatusState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lowLoad", - "2": "normal", - "3": "nearOverload", - "4": "overload" - } - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 5 - ] - }, - "rPDU2OutletMeteredStatusCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 6 - ] - }, - "rPDU2OutletMeteredStatusPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 7 - ] - }, - "rPDU2OutletMeteredStatusPeakPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 8 - ] - }, - "rPDU2OutletMeteredStatusPeakPowerTimestamp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 9 - ] - }, - "rPDU2OutletMeteredStatusPeakPowerStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 10 - ] - }, - "rPDU2OutletMeteredStatusEnergy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2OutletMeteredStatusEntry", - 11 - ] - }, - "rPDU2Sensor": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 10 - ] - }, - "rPDU2SensorTempHumidityTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Sensor", - 1 - ] - }, - "rPDU2SensorTempHumidity": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2Sensor", - 2 - ] - }, - "rPDU2SensorTempHumidityConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2SensorTempHumidityConfigEntry" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidity", - 1 - ] - }, - "rPDU2SensorTempHumidityConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2SensorTempHumidityConfigEntry" - }, - "index": [ - "rPDU2SensorTempHumidityConfigIndex" - ], - "value": [ - "rPDU2SensorTempHumidityConfigTable", - 1 - ] - }, - "RPDU2SensorTempHumidityConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2SensorTempHumidityConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 1 - ] - }, - "rPDU2SensorTempHumidityConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 2 - ] - }, - "rPDU2SensorTempHumidityConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 3 - ] - }, - "rPDU2SensorTempHumidityConfigNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 4 - ] - }, - "rPDU2SensorTempHumidityConfigTemperatureAlarmEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 5 - ] - }, - "rPDU2SensorTempHumidityConfigHumidityAlarmEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 6 - ] - }, - "rPDU2SensorTempHumidityConfigTempMaxThreshF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 7 - ] - }, - "rPDU2SensorTempHumidityConfigTempHighThreshF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 8 - ] - }, - "rPDU2SensorTempHumidityConfigTempHysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 9 - ] - }, - "rPDU2SensorTempHumidityConfigTempMaxThreshC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 10 - ] - }, - "rPDU2SensorTempHumidityConfigTempHighThreshC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 11 - ] - }, - "rPDU2SensorTempHumidityConfigTempHysteresisC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 12 - ] - }, - "rPDU2SensorTempHumidityConfigHumidityLowThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 13 - ] - }, - "rPDU2SensorTempHumidityConfigHumidityMinThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 14 - ] - }, - "rPDU2SensorTempHumidityConfigHumidityHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityConfigEntry", - 15 - ] - }, - "rPDU2SensorTempHumidityStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2SensorTempHumidityStatusEntry" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidity", - 2 - ] - }, - "rPDU2SensorTempHumidityStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2SensorTempHumidityStatusEntry" - }, - "index": [ - "rPDU2SensorTempHumidityStatusIndex" - ], - "value": [ - "rPDU2SensorTempHumidityStatusTable", - 1 - ] - }, - "RPDU2SensorTempHumidityStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2SensorTempHumidityStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 1 - ] - }, - "rPDU2SensorTempHumidityStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 2 - ] - }, - "rPDU2SensorTempHumidityStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 3 - ] - }, - "rPDU2SensorTempHumidityStatusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 4 - ] - }, - "rPDU2SensorTempHumidityStatusType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "temperatureOnly", - "2": "temperatureHumidity", - "3": "commsLost", - "4": "notInstalled" - } - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 5 - ] - }, - "rPDU2SensorTempHumidityStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 6 - ] - }, - "rPDU2SensorTempHumidityStatusTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 7 - ] - }, - "rPDU2SensorTempHumidityStatusTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 8 - ] - }, - "rPDU2SensorTempHumidityStatusTempStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "belowMin", - "3": "belowLow", - "4": "normal", - "5": "aboveHigh", - "6": "aboveMax" - } - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 9 - ] - }, - "rPDU2SensorTempHumidityStatusRelativeHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 10 - ] - }, - "rPDU2SensorTempHumidityStatusHumidityStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "belowMin", - "3": "belowLow", - "4": "normal", - "5": "aboveHigh", - "6": "aboveMax" - } - }, - "index": null, - "value": [ - "rPDU2SensorTempHumidityStatusEntry", - 11 - ] - }, - "rPDU2SensorDiscreteTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Sensor", - 3 - ] - }, - "rPDU2SensorDiscrete": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2Sensor", - 4 - ] - }, - "rPDU2SensorDiscreteConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2SensorDiscreteConfigEntry" - }, - "index": null, - "value": [ - "rPDU2SensorDiscrete", - 1 - ] - }, - "rPDU2SensorDiscreteConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2SensorDiscreteConfigEntry" - }, - "index": [ - "rPDU2SensorDiscreteConfigIndex" - ], - "value": [ - "rPDU2SensorDiscreteConfigTable", - 1 - ] - }, - "RPDU2SensorDiscreteConfigEntry": { - "tp": "SEQUENCE" - }, - "rPDU2SensorDiscreteConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteConfigEntry", - 1 - ] - }, - "rPDU2SensorDiscreteConfigModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteConfigEntry", - 2 - ] - }, - "rPDU2SensorDiscreteConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteConfigEntry", - 3 - ] - }, - "rPDU2SensorDiscreteConfigNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteConfigEntry", - 4 - ] - }, - "rPDU2SensorDiscreteConfigNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyOpen", - "2": "normallyClosed" - } - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteConfigEntry", - 5 - ] - }, - "rPDU2SensorDiscreteConfigAbnormalSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "informational", - "2": "warning", - "3": "critical" - } - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteConfigEntry", - 6 - ] - }, - "rPDU2SensorDiscreteStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2SensorDiscreteStatusEntry" - }, - "index": null, - "value": [ - "rPDU2SensorDiscrete", - 2 - ] - }, - "rPDU2SensorDiscreteStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2SensorDiscreteStatusEntry" - }, - "index": [ - "rPDU2SensorDiscreteStatusIndex" - ], - "value": [ - "rPDU2SensorDiscreteStatusTable", - 1 - ] - }, - "RPDU2SensorDiscreteStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2SensorDiscreteStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 1 - ] - }, - "rPDU2SensorDiscreteStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 2 - ] - }, - "rPDU2SensorDiscreteStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 3 - ] - }, - "rPDU2SensorDiscreteStatusNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 4 - ] - }, - "rPDU2SensorDiscreteStatusType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notConnected", - "2": "doorContactSensor", - "3": "smokeSensor", - "4": "motionDetector", - "5": "vibrationSensor", - "6": "dryContactSensor", - "7": "spotLeakSensor" - } - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 5 - ] - }, - "rPDU2SensorDiscreteStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 6 - ] - }, - "rPDU2SensorDiscreteStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 7 - ] - }, - "rPDU2SensorDiscreteStatusAlarmState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "alarm" - } - }, - "index": null, - "value": [ - "rPDU2SensorDiscreteStatusEntry", - 8 - ] - }, - "rPDU2Group": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 11 - ] - }, - "rPDU2GroupNumberOfDevices": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Group", - 1 - ] - }, - "rPDU2GroupTotalPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Group", - 2 - ] - }, - "rPDU2GroupTotalEnergy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2Group", - 3 - ] - }, - "rPDU2GroupEnergyReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset", - "3": "notSupported" - } - }, - "index": null, - "value": [ - "rPDU2Group", - 4 - ] - }, - "rPDU2PhaseToPhaseStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2", - 12 - ] - }, - "rPDU2PhaseToPhase": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rPDU2", - 13 - ] - }, - "rPDU2PhaseToPhaseStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RPDU2PhaseToPhaseStatusEntry" - }, - "index": null, - "value": [ - "rPDU2PhaseToPhase", - 1 - ] - }, - "rPDU2PhaseToPhaseStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RPDU2PhaseToPhaseStatusEntry" - }, - "index": [ - "rPDU2PhaseToPhaseStatusIndex" - ], - "value": [ - "rPDU2PhaseToPhaseStatusTable", - 1 - ] - }, - "RPDU2PhaseToPhaseStatusEntry": { - "tp": "SEQUENCE" - }, - "rPDU2PhaseToPhaseStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseToPhaseStatusEntry", - 1 - ] - }, - "rPDU2PhaseToPhaseStatusModule": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseToPhaseStatusEntry", - 2 - ] - }, - "rPDU2PhaseToPhaseStatusVoltage1to2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseToPhaseStatusEntry", - 3 - ] - }, - "rPDU2PhaseToPhaseStatusVoltage2to3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseToPhaseStatusEntry", - 4 - ] - }, - "rPDU2PhaseToPhaseStatusVoltage3to1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rPDU2PhaseToPhaseStatusEntry", - 5 - ] - }, - "coolingUnit": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "cooling", - 1 - ] - }, - "coolingUnitTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnit", - 1 - ] - }, - "coolingUnitTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitEntry" - }, - "index": null, - "value": [ - "coolingUnit", - 2 - ] - }, - "coolingUnitEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitEntry" - }, - "index": [ - "coolingUnitTableIndex" - ], - "value": [ - "coolingUnitTable", - 1 - ] - }, - "CoolingUnitEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitEntry", - 1 - ] - }, - "coolingUnitAbout": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnit", - 3 - ] - }, - "coolingUnitAboutTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitAbout", - 1 - ] - }, - "coolingUnitAboutTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitAboutEntry" - }, - "index": null, - "value": [ - "coolingUnitAbout", - 2 - ] - }, - "coolingUnitAboutEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitAboutEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitAboutTableIndex" - ], - "value": [ - "coolingUnitAboutTable", - 1 - ] - }, - "CoolingUnitAboutEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitAboutTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitAboutEntry", - 1 - ] - }, - "coolingUnitAboutDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitAboutEntry", - 2 - ] - }, - "coolingUnitAboutValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitAboutEntry", - 3 - ] - }, - "coolingUnitStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnit", - 4 - ] - }, - "coolingUnitStatusAnalog": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitStatus", - 1 - ] - }, - "coolingUnitStatusAnalogTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalog", - 1 - ] - }, - "coolingUnitStatusAnalogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitStatusAnalogEntry" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalog", - 2 - ] - }, - "coolingUnitStatusAnalogEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitStatusAnalogEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitStatusAnalogTableIndex" - ], - "value": [ - "coolingUnitStatusAnalogTable", - 1 - ] - }, - "CoolingUnitStatusAnalogEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitStatusAnalogTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalogEntry", - 1 - ] - }, - "coolingUnitStatusAnalogDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalogEntry", - 2 - ] - }, - "coolingUnitStatusAnalogValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalogEntry", - 3 - ] - }, - "coolingUnitStatusAnalogUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalogEntry", - 4 - ] - }, - "coolingUnitStatusAnalogScale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusAnalogEntry", - 5 - ] - }, - "coolingUnitStatusDiscrete": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitStatus", - 2 - ] - }, - "coolingUnitStatusDiscreteTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscrete", - 1 - ] - }, - "coolingUnitStatusDiscreteTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitStatusDiscreteEntry" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscrete", - 2 - ] - }, - "coolingUnitStatusDiscreteEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitStatusDiscreteEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitStatusDiscreteTableIndex" - ], - "value": [ - "coolingUnitStatusDiscreteTable", - 1 - ] - }, - "CoolingUnitStatusDiscreteEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitStatusDiscreteTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscreteEntry", - 1 - ] - }, - "coolingUnitStatusDiscreteDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscreteEntry", - 2 - ] - }, - "coolingUnitStatusDiscreteValueAsString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscreteEntry", - 3 - ] - }, - "coolingUnitStatusDiscreteValueAsInteger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscreteEntry", - 4 - ] - }, - "coolingUnitStatusDiscreteIntegerReferenceKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitStatusDiscreteEntry", - 5 - ] - }, - "coolingUnitConfiguration": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnit", - 5 - ] - }, - "coolingUnitConfigurationAnalog": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitConfiguration", - 1 - ] - }, - "coolingUnitConfigurationAnalogTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalog", - 1 - ] - }, - "coolingUnitConfigurationAnalogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitConfigurationAnalogEntry" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalog", - 2 - ] - }, - "coolingUnitConfigurationAnalogEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitConfigurationAnalogEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitConfigurationAnalogTableIndex" - ], - "value": [ - "coolingUnitConfigurationAnalogTable", - 1 - ] - }, - "CoolingUnitConfigurationAnalogEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitConfigurationAnalogTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 1 - ] - }, - "coolingUnitConfigurationAnalogDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 2 - ] - }, - "coolingUnitConfigurationAnalogValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 3 - ] - }, - "coolingUnitConfigurationAnalogUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 4 - ] - }, - "coolingUnitConfigurationAnalogScale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 5 - ] - }, - "coolingUnitConfigurationAnalogAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "readOnly", - "2": "readWrite" - } - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 6 - ] - }, - "coolingUnitConfigurationAnalogMinimum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 7 - ] - }, - "coolingUnitConfigurationAnalogMaximum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationAnalogEntry", - 8 - ] - }, - "coolingUnitConfigurationDiscrete": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitConfiguration", - 2 - ] - }, - "coolingUnitConfigurationDiscreteTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscrete", - 1 - ] - }, - "coolingUnitConfigurationDiscreteTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitConfigurationDiscreteEntry" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscrete", - 2 - ] - }, - "coolingUnitConfigurationDiscreteEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitConfigurationDiscreteEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitConfigurationDiscreteTableIndex" - ], - "value": [ - "coolingUnitConfigurationDiscreteTable", - 1 - ] - }, - "CoolingUnitConfigurationDiscreteEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitConfigurationDiscreteTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscreteEntry", - 1 - ] - }, - "coolingUnitConfigurationDiscreteDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscreteEntry", - 2 - ] - }, - "coolingUnitConfigurationDiscreteValueAsString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscreteEntry", - 3 - ] - }, - "coolingUnitConfigurationDiscreteValueAsInteger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscreteEntry", - 4 - ] - }, - "coolingUnitConfigurationDiscreteIntegerReferenceKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscreteEntry", - 5 - ] - }, - "coolingUnitConfigurationDiscreteAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "readOnly", - "2": "readWrite" - } - }, - "index": null, - "value": [ - "coolingUnitConfigurationDiscreteEntry", - 6 - ] - }, - "coolingUnitConfigurationString": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitConfiguration", - 3 - ] - }, - "coolingUnitConfigurationStringTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationString", - 1 - ] - }, - "coolingUnitConfigurationStringTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitConfigurationStringEntry" - }, - "index": null, - "value": [ - "coolingUnitConfigurationString", - 2 - ] - }, - "coolingUnitConfigurationStringEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitConfigurationStringEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitConfigurationStringTableIndex" - ], - "value": [ - "coolingUnitConfigurationStringTable", - 1 - ] - }, - "CoolingUnitConfigurationStringEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitConfigurationStringTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationStringEntry", - 1 - ] - }, - "coolingUnitConfigurationStringDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationStringEntry", - 2 - ] - }, - "coolingUnitConfigurationStringValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitConfigurationStringEntry", - 3 - ] - }, - "coolingUnitConfigurationStringMaxLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitConfigurationStringEntry", - 4 - ] - }, - "coolingUnitConfigurationStringAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "readOnly", - "2": "readWrite" - } - }, - "index": null, - "value": [ - "coolingUnitConfigurationStringEntry", - 5 - ] - }, - "coolingUnitExtended": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnit", - 6 - ] - }, - "coolingUnitExtendedAnalog": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitExtended", - 1 - ] - }, - "coolingUnitExtendedAnalogTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalog", - 1 - ] - }, - "coolingUnitExtendedAnalogTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitExtendedAnalogEntry" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalog", - 2 - ] - }, - "coolingUnitExtendedAnalogEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitExtendedAnalogEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitExtendedAnalogTableIndex" - ], - "value": [ - "coolingUnitExtendedAnalogTable", - 1 - ] - }, - "CoolingUnitExtendedAnalogEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitExtendedAnalogTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalogEntry", - 1 - ] - }, - "coolingUnitExtendedAnalogDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalogEntry", - 2 - ] - }, - "coolingUnitExtendedAnalogValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalogEntry", - 3 - ] - }, - "coolingUnitExtendedAnalogUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalogEntry", - 4 - ] - }, - "coolingUnitExtendedAnalogScale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedAnalogEntry", - 5 - ] - }, - "coolingUnitExtendedDiscrete": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitExtended", - 2 - ] - }, - "coolingUnitExtendedDiscreteTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscrete", - 1 - ] - }, - "coolingUnitExtendedDiscreteTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitExtendedDiscreteEntry" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscrete", - 2 - ] - }, - "coolingUnitExtendedDiscreteEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitExtendedDiscreteEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitExtendedDiscreteTableIndex" - ], - "value": [ - "coolingUnitExtendedDiscreteTable", - 1 - ] - }, - "CoolingUnitExtendedDiscreteEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitExtendedDiscreteTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscreteEntry", - 1 - ] - }, - "coolingUnitExtendedDiscreteDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscreteEntry", - 2 - ] - }, - "coolingUnitExtendedDiscreteValueAsString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscreteEntry", - 3 - ] - }, - "coolingUnitExtendedDiscreteValueAsInteger": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscreteEntry", - 4 - ] - }, - "coolingUnitExtendedDiscreteIntegerReferenceKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedDiscreteEntry", - 5 - ] - }, - "coolingUnitExtendedString": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "coolingUnitExtended", - 3 - ] - }, - "coolingUnitExtendedStringTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedString", - 1 - ] - }, - "coolingUnitExtendedStringTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CoolingUnitExtendedStringEntry" - }, - "index": null, - "value": [ - "coolingUnitExtendedString", - 2 - ] - }, - "coolingUnitExtendedStringEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CoolingUnitExtendedStringEntry" - }, - "index": [ - "coolingUnitTableIndex", - "coolingUnitExtendedStringTableIndex" - ], - "value": [ - "coolingUnitExtendedStringTable", - 1 - ] - }, - "CoolingUnitExtendedStringEntry": { - "tp": "SEQUENCE" - }, - "coolingUnitExtendedStringTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "coolingUnitExtendedStringEntry", - 1 - ] - }, - "coolingUnitExtendedStringDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedStringEntry", - 2 - ] - }, - "coolingUnitExtendedStringValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "coolingUnitExtendedStringEntry", - 3 - ] - }, - "dm3IdentSysDescriptionTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3IdentSystem", - 1 - ] - }, - "dm3IdentSysDescriptionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3IdentSysDescriptionEntry" - }, - "index": null, - "value": [ - "dm3IdentSystem", - 2 - ] - }, - "dm3IdentSysDescriptionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3IdentSysDescriptionEntry" - }, - "index": [ - "dm3IdentSysDescriptionIndex" - ], - "value": [ - "dm3IdentSysDescriptionTable", - 1 - ] - }, - "Dm3IdentSysDescriptionEntry": { - "tp": "SEQUENCE" - }, - "dm3IdentSysDescriptionIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3IdentSysDescriptionEntry", - 1 - ] - }, - "dm3IdentSysDescriptionText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3IdentSysDescriptionEntry", - 2 - ] - }, - "dm3IdentSysModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3IdentSystem", - 3 - ] - }, - "dm3IdentSysCntrlRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3IdentSystem", - 4 - ] - }, - "dm3IdentSysFWVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3IdentSystem", - 5 - ] - }, - "dm3ConfigSysDescriptionTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 1 - ] - }, - "dm3ConfigSysDescriptionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3ConfigSysDescriptionEntry" - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 2 - ] - }, - "dm3ConfigSysDescriptionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3ConfigSysDescriptionEntry" - }, - "index": [ - "dm3ConfigSysDescriptionIndex" - ], - "value": [ - "dm3ConfigSysDescriptionTable", - 1 - ] - }, - "Dm3ConfigSysDescriptionEntry": { - "tp": "SEQUENCE" - }, - "dm3ConfigSysDescriptionIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigSysDescriptionEntry", - 1 - ] - }, - "dm3ConfigSysDescriptionText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3ConfigSysDescriptionEntry", - 2 - ] - }, - "dm3ConfigSysHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 3 - ] - }, - "dm3ConfigSysHighTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 4 - ] - }, - "dm3ConfigSysLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 5 - ] - }, - "dm3ConfigSysLowTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 6 - ] - }, - "dm3ConfigSysHardwareTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 7 - ] - }, - "dm3ConfigSysRemoteAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "accessEnabled", - "2": "accessDisabled" - } - }, - "index": null, - "value": [ - "dm3ConfigSystem", - 8 - ] - }, - "dm3ConfigLVDTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigLVD", - 1 - ] - }, - "dm3ConfigLVDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3ConfigLVDEntry" - }, - "index": null, - "value": [ - "dm3ConfigLVD", - 2 - ] - }, - "dm3ConfigLVDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3ConfigLVDEntry" - }, - "index": [ - "dm3ConfigLVDIndex" - ], - "value": [ - "dm3ConfigLVDTable", - 1 - ] - }, - "Dm3ConfigLVDEntry": { - "tp": "SEQUENCE" - }, - "dm3ConfigLVDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 1 - ] - }, - "dm3ConfigLVDName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 2 - ] - }, - "dm3ConfigLVDEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabledYes", - "2": "enabledNo" - } - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 3 - ] - }, - "dm3ConfigLVDTripThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 4 - ] - }, - "dm3ConfigLVDResetThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 5 - ] - }, - "dm3ConfigLVDOpenAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 6 - ] - }, - "dm3ConfigLVDHWAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigLVDEntry", - 7 - ] - }, - "dm3ConfigBattFloatVolt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 1 - ] - }, - "dm3ConfigBattMaxRecharge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 2 - ] - }, - "dm3ConfigBattDischargeThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 3 - ] - }, - "dm3ConfigBattDischargeAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 4 - ] - }, - "dm3ConfigBattHighVoltThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 5 - ] - }, - "dm3ConfigBattHighVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 6 - ] - }, - "dm3ConfigBattLowVoltThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 7 - ] - }, - "dm3ConfigBattLowVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 8 - ] - }, - "dm3ConfigBattHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 9 - ] - }, - "dm3ConfigBattHighTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 10 - ] - }, - "dm3ConfigBattLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 11 - ] - }, - "dm3ConfigBattLowTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 12 - ] - }, - "dm3ConfigBattAmpHour": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 13 - ] - }, - "dm3ConfigCompMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "tempcompOn", - "2": "tempcompOff" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 14 - ] - }, - "dm3ConfigCompTempCoeff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 15 - ] - }, - "dm3ConfigHighKneeTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 16 - ] - }, - "dm3ConfigLowKneeTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 17 - ] - }, - "dm3ConfigBattHwCurrentAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 18 - ] - }, - "dm3ConfigBattHwTempAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBattery", - 19 - ] - }, - "dm3ConfigRectHighVoltThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigRectThresh", - 1 - ] - }, - "dm3ConfigRectLowVoltThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigRectThresh", - 2 - ] - }, - "dm3ConfigRectFailSafe": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigRectThresh", - 3 - ] - }, - "dm3ConfigRectFailComm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigRectThresh", - 4 - ] - }, - "dm3ConfigRectHighVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 1 - ] - }, - "dm3ConfigRectLowVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 2 - ] - }, - "dm3ConfigRectConfigAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 3 - ] - }, - "dm3ConfigRect1ofNAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 4 - ] - }, - "dm3ConfigRect2ofNAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 5 - ] - }, - "dm3ConfigRectDiagAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 6 - ] - }, - "dm3ConfigRectImbalanceAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 7 - ] - }, - "dm3ConfigRectCurrLimitAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 8 - ] - }, - "dm3ConfigRectStandbyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 9 - ] - }, - "dm3ConfigRectFanFailAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 10 - ] - }, - "dm3ConfigRectFailAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 11 - ] - }, - "dm3ConfigRectHwVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigRectAlarms", - 12 - ] - }, - "dm3ConfigConvHighVoltThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 1 - ] - }, - "dm3ConfigConvLowVoltThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 2 - ] - }, - "dm3ConfigConvFailSafe": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 3 - ] - }, - "dm3ConfigConvSetPoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 4 - ] - }, - "dm3ConfigConvFailMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 5 - ] - }, - "dm3ConfigConvFailMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 6 - ] - }, - "dm3ConfigConvFailComm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigConvThresh", - 7 - ] - }, - "dm3ConfigConvHighVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 1 - ] - }, - "dm3ConfigConvLowVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 2 - ] - }, - "dm3ConfigConvConfigAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 3 - ] - }, - "dm3ConfigConv1ofNAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 4 - ] - }, - "dm3ConfigConv2ofNAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 5 - ] - }, - "dm3ConfigConvDiagAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 6 - ] - }, - "dm3ConfigConvImbalanceAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 7 - ] - }, - "dm3ConfigConvCurrLimitAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 8 - ] - }, - "dm3ConfigConvStandbyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 9 - ] - }, - "dm3ConfigConvFanFailAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 10 - ] - }, - "dm3ConfigConvFailAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 11 - ] - }, - "dm3ConfigConvHwVoltAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor", - "10": "alarmNofN" - } - }, - "index": null, - "value": [ - "dm3ConfigConvAlarms", - 12 - ] - }, - "dm3ConfigOutRlyTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigOutputRelays", - 1 - ] - }, - "dm3ConfigOutRlyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3ConfigOutRlyEntry" - }, - "index": null, - "value": [ - "dm3ConfigOutputRelays", - 2 - ] - }, - "dm3ConfigOutRlyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3ConfigOutRlyEntry" - }, - "index": [ - "dm3ConfigOutRlyIndex" - ], - "value": [ - "dm3ConfigOutRlyTable", - 1 - ] - }, - "Dm3ConfigOutRlyEntry": { - "tp": "SEQUENCE" - }, - "dm3ConfigOutRlyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigOutRlyEntry", - 1 - ] - }, - "dm3ConfigOutRlyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3ConfigOutRlyEntry", - 2 - ] - }, - "dm3ConfigOutRlyDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigOutRlyEntry", - 3 - ] - }, - "dm3ConfigOutRlyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigOutRlyEntry", - 4 - ] - }, - "dm3ConfigInRlyTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigInputRelays", - 1 - ] - }, - "dm3ConfigInRlyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3ConfigInRlyEntry" - }, - "index": null, - "value": [ - "dm3ConfigInputRelays", - 2 - ] - }, - "dm3ConfigInRlyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3ConfigInRlyEntry" - }, - "index": [ - "dm3ConfigInRlyIndex" - ], - "value": [ - "dm3ConfigInRlyTable", - 1 - ] - }, - "Dm3ConfigInRlyEntry": { - "tp": "SEQUENCE" - }, - "dm3ConfigInRlyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigInRlyEntry", - 1 - ] - }, - "dm3ConfigInRlyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3ConfigInRlyEntry", - 2 - ] - }, - "dm3ConfigInRlyDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigInRlyEntry", - 3 - ] - }, - "dm3ConfigInRlyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigInRlyEntry", - 4 - ] - }, - "dm3ConfigBreakersTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBreakers", - 1 - ] - }, - "dm3ConfigBreakersTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3ConfigBreakersEntry" - }, - "index": null, - "value": [ - "dm3ConfigBreakers", - 2 - ] - }, - "dm3ConfigBreakersEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3ConfigBreakersEntry" - }, - "index": [ - "dm3ConfigBreakersIndex" - ], - "value": [ - "dm3ConfigBreakersTable", - 1 - ] - }, - "Dm3ConfigBreakersEntry": { - "tp": "SEQUENCE" - }, - "dm3ConfigBreakersIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigBreakersEntry", - 1 - ] - }, - "dm3ConfigBreakersName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3ConfigBreakersEntry", - 2 - ] - }, - "dm3ConfigBreakersAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigBreakersEntry", - 3 - ] - }, - "dm3ConfigFusesTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigFuses", - 1 - ] - }, - "dm3ConfigFusesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3ConfigFusesEntry" - }, - "index": null, - "value": [ - "dm3ConfigFuses", - 2 - ] - }, - "dm3ConfigFusesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3ConfigFusesEntry" - }, - "index": [ - "dm3ConfigFusesIndex" - ], - "value": [ - "dm3ConfigFusesTable", - 1 - ] - }, - "Dm3ConfigFusesEntry": { - "tp": "SEQUENCE" - }, - "dm3ConfigFusesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3ConfigFusesEntry", - 1 - ] - }, - "dm3ConfigFusesName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3ConfigFusesEntry", - 2 - ] - }, - "dm3ConfigFusesAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmIgnore", - "2": "alarmRelay1", - "3": "alarmRelay2", - "4": "alarmRelay3", - "5": "alarmRelay4", - "6": "alarmRelay5", - "7": "alarmRelay6", - "8": "alarmMinor", - "9": "alarmMajor" - } - }, - "index": null, - "value": [ - "dm3ConfigFusesEntry", - 3 - ] - }, - "dm3StatusSystemTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusSystem", - 1 - ] - }, - "dm3StatusSystemStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusSystem", - 2 - ] - }, - "dm3StatusSysRemoteAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "accessEnabled", - "2": "accessDisabled" - } - }, - "index": null, - "value": [ - "dm3StatusSystem", - 3 - ] - }, - "dm3StatusSysSecurityLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusSystem", - 4 - ] - }, - "dm3StatusSysTempSanity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "saneYES", - "2": "saneNO" - } - }, - "index": null, - "value": [ - "dm3StatusSystem", - 5 - ] - }, - "dm3StatusSysAlarmState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmMinor", - "2": "alarmMajor", - "3": "alarmBoth", - "4": "alarmNone" - } - }, - "index": null, - "value": [ - "dm3StatusSystem", - 6 - ] - }, - "dm3StatusSysTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "dm3StatusSystem", - 7 - ] - }, - "dm3StatusAlarmsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusAlarms", - 1 - ] - }, - "dm3StatusAlarmsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusAlarmsEntry" - }, - "index": null, - "value": [ - "dm3StatusAlarms", - 2 - ] - }, - "dm3StatusAlarmsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusAlarmsEntry" - }, - "index": [ - "dm3StatusAlarmsIndex" - ], - "value": [ - "dm3StatusAlarmsTable", - 1 - ] - }, - "Dm3StatusAlarmsEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusAlarmsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusAlarmsEntry", - 1 - ] - }, - "dm3StatusAlarmsText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusAlarmsEntry", - 2 - ] - }, - "dm3StatusBattCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusBattery", - 1 - ] - }, - "dm3StatusBattTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusBattery", - 2 - ] - }, - "dm3StatusBattCurrentSanity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "saneYES", - "2": "saneNO" - } - }, - "index": null, - "value": [ - "dm3StatusBattery", - 3 - ] - }, - "dm3StatusBattTempSanity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "saneYES", - "2": "saneNO" - } - }, - "index": null, - "value": [ - "dm3StatusBattery", - 4 - ] - }, - "dm3StatusOEMrectOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOEM", - 1 - ] - }, - "dm3StatusOEMrectGain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOEM", - 2 - ] - }, - "dm3StatusOEMconvOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOEM", - 3 - ] - }, - "dm3StatusOEMconvGain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOEM", - 4 - ] - }, - "dm3StatusOEMshuntOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOEM", - 5 - ] - }, - "dm3StatusOEMshuntGain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOEM", - 6 - ] - }, - "dm3StatusLVDTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusLVD", - 1 - ] - }, - "dm3StatusLVDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusLVDEntry" - }, - "index": null, - "value": [ - "dm3StatusLVD", - 2 - ] - }, - "dm3StatusLVDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusLVDEntry" - }, - "index": [ - "dm3StatusLVDIndex" - ], - "value": [ - "dm3StatusLVDTable", - 1 - ] - }, - "Dm3StatusLVDEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusLVDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusLVDEntry", - 1 - ] - }, - "dm3StatusLVDName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusLVDEntry", - 2 - ] - }, - "dm3StatusLVDState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusClosed", - "2": "statusOpened" - } - }, - "index": null, - "value": [ - "dm3StatusLVDEntry", - 3 - ] - }, - "dm3StatusLVDHwFault": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusFault", - "2": "statusNofault" - } - }, - "index": null, - "value": [ - "dm3StatusLVDEntry", - 4 - ] - }, - "dm3StatusRectTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 1 - ] - }, - "dm3StatusRectTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusRectEntry" - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 2 - ] - }, - "dm3StatusRectEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusRectEntry" - }, - "index": [ - "dm3StatusRectIndex" - ], - "value": [ - "dm3StatusRectTable", - 1 - ] - }, - "Dm3StatusRectEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusRectIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 1 - ] - }, - "dm3StatusRectID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 2 - ] - }, - "dm3StatusRectDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 3 - ] - }, - "dm3StatusRectCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 4 - ] - }, - "dm3StatusRectCurrentLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 5 - ] - }, - "dm3StatusRectStandby": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 6 - ] - }, - "dm3StatusRectFanFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 7 - ] - }, - "dm3StatusRectFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 8 - ] - }, - "dm3StatusRectDevType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 9 - ] - }, - "dm3StatusRectPhyAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 10 - ] - }, - "dm3StatusRectCfg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 11 - ] - }, - "dm3StatusRectPcbRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 12 - ] - }, - "dm3StatusRectFwVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 13 - ] - }, - "dm3StatusRectPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 14 - ] - }, - "dm3StatusRectDiagPass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 15 - ] - }, - "dm3StatusRectState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectEntry", - 16 - ] - }, - "dm3StatusSysRectVoltSanity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "saneYES", - "2": "saneNO" - } - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 3 - ] - }, - "dm3StatusSysRectAvailable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 4 - ] - }, - "dm3StatusSysRectType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 5 - ] - }, - "dm3StatusSysRectVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 6 - ] - }, - "dm3StatusSysRectCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusRectifier", - 7 - ] - }, - "dm3StatusConvTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConverter", - 1 - ] - }, - "dm3StatusConvTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusConvEntry" - }, - "index": null, - "value": [ - "dm3StatusConverter", - 2 - ] - }, - "dm3StatusConvEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusConvEntry" - }, - "index": [ - "dm3StatusConvIndex" - ], - "value": [ - "dm3StatusConvTable", - 1 - ] - }, - "Dm3StatusConvEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusConvIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 1 - ] - }, - "dm3StatusConvID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 2 - ] - }, - "dm3StatusConvDesc": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 3 - ] - }, - "dm3StatusConvCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 4 - ] - }, - "dm3StatusConvCurrentLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 5 - ] - }, - "dm3StatusConvStandby": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 6 - ] - }, - "dm3StatusConvFanFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 7 - ] - }, - "dm3StatusConvFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 8 - ] - }, - "dm3StatusConvDevType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 9 - ] - }, - "dm3StatusConvPhyAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 10 - ] - }, - "dm3StatusConvCfg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 11 - ] - }, - "dm3StatusConvPcbRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 12 - ] - }, - "dm3StatusConvFwVer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 13 - ] - }, - "dm3StatusConvPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 14 - ] - }, - "dm3StatusConvDiagPass": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 15 - ] - }, - "dm3StatusConvState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConvEntry", - 16 - ] - }, - "dm3StatusSysConvVoltSanity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "saneYES", - "2": "saneNO" - } - }, - "index": null, - "value": [ - "dm3StatusConverter", - 3 - ] - }, - "dm3StatusSysConvAvailable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dm3StatusConverter", - 4 - ] - }, - "dm3StatusSysConvType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConverter", - 5 - ] - }, - "dm3StatusSysConvVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConverter", - 6 - ] - }, - "dm3StatusSysConvCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusConverter", - 7 - ] - }, - "dm3StatusOutRlyTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOutputRelays", - 1 - ] - }, - "dm3StatusOutRlyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusOutRlyEntry" - }, - "index": null, - "value": [ - "dm3StatusOutputRelays", - 2 - ] - }, - "dm3StatusOutRlyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusOutRlyEntry" - }, - "index": [ - "dm3StatusOutRlyIndex" - ], - "value": [ - "dm3StatusOutRlyTable", - 1 - ] - }, - "Dm3StatusOutRlyEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusOutRlyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusOutRlyEntry", - 1 - ] - }, - "dm3StatusOutRlyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusOutRlyEntry", - 2 - ] - }, - "dm3StatusOutRlyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusOn", - "2": "statusOff" - } - }, - "index": null, - "value": [ - "dm3StatusOutRlyEntry", - 3 - ] - }, - "dm3StatusInRlyTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusInputRelays", - 1 - ] - }, - "dm3StatusInRlyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusInRlyEntry" - }, - "index": null, - "value": [ - "dm3StatusInputRelays", - 2 - ] - }, - "dm3StatusInRlyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusInRlyEntry" - }, - "index": [ - "dm3StatusInRlyIndex" - ], - "value": [ - "dm3StatusInRlyTable", - 1 - ] - }, - "Dm3StatusInRlyEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusInRlyIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusInRlyEntry", - 1 - ] - }, - "dm3StatusInRlyName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusInRlyEntry", - 2 - ] - }, - "dm3StatusInRlyStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusOn", - "2": "statusOff" - } - }, - "index": null, - "value": [ - "dm3StatusInRlyEntry", - 3 - ] - }, - "dm3StatusBreakersTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusBreakers", - 1 - ] - }, - "dm3StatusBreakersTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusBreakersEntry" - }, - "index": null, - "value": [ - "dm3StatusBreakers", - 2 - ] - }, - "dm3StatusBreakersEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusBreakersEntry" - }, - "index": [ - "dm3StatusBreakersIndex" - ], - "value": [ - "dm3StatusBreakersTable", - 1 - ] - }, - "Dm3StatusBreakersEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusBreakersIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusBreakersEntry", - 1 - ] - }, - "dm3StatusBreakersName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusBreakersEntry", - 2 - ] - }, - "dm3StatusBreakersStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusClosed", - "2": "statusOpen" - } - }, - "index": null, - "value": [ - "dm3StatusBreakersEntry", - 3 - ] - }, - "dm3StatusFusesTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusFuses", - 1 - ] - }, - "dm3StatusFusesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dm3StatusFusesEntry" - }, - "index": null, - "value": [ - "dm3StatusFuses", - 2 - ] - }, - "dm3StatusFusesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dm3StatusFusesEntry" - }, - "index": [ - "dm3StatusFusesIndex" - ], - "value": [ - "dm3StatusFusesTable", - 1 - ] - }, - "Dm3StatusFusesEntry": { - "tp": "SEQUENCE" - }, - "dm3StatusFusesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dm3StatusFusesEntry", - 1 - ] - }, - "dm3StatusFusesName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dm3StatusFusesEntry", - 2 - ] - }, - "dm3StatusFusesStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusClosed", - "2": "statusOpen" - } - }, - "index": null, - "value": [ - "dm3StatusFusesEntry", - 3 - ] - }, - "atsIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsIdent", - 1 - ] - }, - "atsIdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsIdent", - 2 - ] - }, - "atsIdentFirmwareDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsIdent", - 3 - ] - }, - "atsIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsIdent", - 4 - ] - }, - "atsIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsIdent", - 5 - ] - }, - "atsIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsIdent", - 6 - ] - }, - "atsIdentNominalLineVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsIdent", - 7 - ] - }, - "atsIdentNominalLineFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsIdent", - 8 - ] - }, - "atsIdentDeviceRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsIdent", - 9 - ] - }, - "atsCalibrationNumInputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationInput", - 1 - ] - }, - "atsCalibrationNumInputPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationInput", - 2 - ] - }, - "atsCalibrationInputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATSCalibrationInputPhaseEntry" - }, - "index": null, - "value": [ - "atsCalibrationInput", - 3 - ] - }, - "atsCalibrationInputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATSCalibrationInputPhaseEntry" - }, - "index": [ - "atsCalibrationInputTableIndex", - "atsCalibrationInputPhaseTableIndex" - ], - "value": [ - "atsCalibrationInputPhaseTable", - 1 - ] - }, - "ATSCalibrationInputPhaseEntry": { - "tp": "SEQUENCE" - }, - "atsCalibrationInputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationInputPhaseEntry", - 1 - ] - }, - "atsCalibrationInputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationInputPhaseEntry", - 2 - ] - }, - "atsLineVoltageCalibrationFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationInputPhaseEntry", - 3 - ] - }, - "atsCalibrationPowerSupplyVoltages": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationPowerSupply", - 1 - ] - }, - "atsCalibrationPowerSupplyVoltageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATSCalibrationPowerSupplyVoltageEntry" - }, - "index": null, - "value": [ - "atsCalibrationPowerSupply", - 2 - ] - }, - "atsCalibrationPowerSupplyVoltageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATSCalibrationPowerSupplyVoltageEntry" - }, - "index": [ - "atsCalibrationPowerSupplyVoltageTableIndex" - ], - "value": [ - "atsCalibrationPowerSupplyVoltageTable", - 1 - ] - }, - "ATSCalibrationPowerSupplyVoltageEntry": { - "tp": "SEQUENCE" - }, - "atsCalibrationPowerSupplyVoltageTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationPowerSupplyVoltageEntry", - 1 - ] - }, - "atsCalibrationPowerSupplyVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "powerSupply24V", - "2": "powerSupply12V", - "3": "powerSupply", - "4": "powerSupply24VSourceB", - "5": "powerSupplyMinus12V" - } - }, - "index": null, - "value": [ - "atsCalibrationPowerSupplyVoltageEntry", - 2 - ] - }, - "atsPowerSupplyVoltageCalibrationFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationPowerSupplyVoltageEntry", - 3 - ] - }, - "atsCalibrationNumOutputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationOutput", - 1 - ] - }, - "atsCalibrationNumOutputPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationOutput", - 2 - ] - }, - "atsCalibrationOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATSCalibrationOutputEntry" - }, - "index": null, - "value": [ - "atsCalibrationOutput", - 3 - ] - }, - "atsCalibrationOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATSCalibrationOutputEntry" - }, - "index": [ - "atsCalibrationOutputTableIndex", - "atsCalibrationOutputPhasesTableIndex" - ], - "value": [ - "atsCalibrationOutputTable", - 1 - ] - }, - "ATSCalibrationOutputEntry": { - "tp": "SEQUENCE" - }, - "atsCalibrationOutputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationOutputEntry", - 1 - ] - }, - "atsCalibrationOutputPhasesTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3", - "4": "neutral" - } - }, - "index": null, - "value": [ - "atsCalibrationOutputEntry", - 2 - ] - }, - "atsOutputCurrentCalibrationFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsCalibrationOutputEntry", - 3 - ] - }, - "ats4gCalibrationOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATS4GCalibrationOutputEntry" - }, - "index": null, - "value": [ - "atsCalibrationOutput", - 4 - ] - }, - "ats4gCalibrationOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATS4GCalibrationOutputEntry" - }, - "index": [ - "ats4gCalibrationOutputTableIndex", - "ats4gCalibrationOutputPhasesTableIndex" - ], - "value": [ - "ats4gCalibrationOutputTable", - 1 - ] - }, - "ATS4GCalibrationOutputEntry": { - "tp": "SEQUENCE" - }, - "ats4gCalibrationOutputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ats4gCalibrationOutputEntry", - 1 - ] - }, - "ats4gCalibrationOutputPhasesTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceALine", - "2": "sourneANeutral", - "3": "sourceBLine", - "4": "sourceBNeutral", - "5": "bank1", - "6": "bank2" - } - }, - "index": null, - "value": [ - "ats4gCalibrationOutputEntry", - 2 - ] - }, - "ats4gOutputCurrentCalibrationFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ats4gCalibrationOutputEntry", - 3 - ] - }, - "atsControlResetATS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "reset" - } - }, - "index": null, - "value": [ - "atsControl", - 1 - ] - }, - "atsControlClearAllAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "clear" - } - }, - "index": null, - "value": [ - "atsControl", - 2 - ] - }, - "atsConfigProductName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsConfig", - 1 - ] - }, - "atsConfigPreferredSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceA", - "2": "sourceB", - "3": "none" - } - }, - "index": null, - "value": [ - "atsConfig", - 2 - ] - }, - "atsConfigFrontPanelLockout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disableFrontPanel", - "2": "enableFrontPanel" - } - }, - "index": null, - "value": [ - "atsConfig", - 3 - ] - }, - "atsConfigVoltageSensitivity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "high", - "2": "low" - } - }, - "index": null, - "value": [ - "atsConfig", - 4 - ] - }, - "atsConfigTransferVoltageRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "wide", - "2": "medium", - "3": "narrow" - } - }, - "index": null, - "value": [ - "atsConfig", - 5 - ] - }, - "atsConfigCurrentLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 6 - ] - }, - "atsConfigResetValues": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "reset" - } - }, - "index": null, - "value": [ - "atsConfig", - 7 - ] - }, - "atsConfigLineVRMS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 8 - ] - }, - "atsConfigLineVRMSNarrowLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 9 - ] - }, - "atsConfigLineVRMSMediumLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 10 - ] - }, - "atsConfigLineVRMSWideLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 11 - ] - }, - "atsConfigFrequencyDeviation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "one", - "2": "two", - "3": "three" - } - }, - "index": null, - "value": [ - "atsConfig", - 12 - ] - }, - "atsConfigBankTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 13 - ] - }, - "atsConfigBankTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATSConfigBankEntry" - }, - "index": null, - "value": [ - "atsConfig", - 14 - ] - }, - "atsConfigBankEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATSConfigBankEntry" - }, - "index": [ - "atsConfigBankTableIndex" - ], - "value": [ - "atsConfigBankTable", - 1 - ] - }, - "ATSConfigBankEntry": { - "tp": "SEQUENCE" - }, - "atsConfigBankTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigBankEntry", - 1 - ] - }, - "atsConfigBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "total", - "2": "bank1", - "3": "bank2" - } - }, - "index": null, - "value": [ - "atsConfigBankEntry", - 2 - ] - }, - "atsConfigBankLowLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigBankEntry", - 3 - ] - }, - "atsConfigBankNearOverLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigBankEntry", - 4 - ] - }, - "atsConfigBankOverLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigBankEntry", - 5 - ] - }, - "atsConfigPhaseTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfig", - 15 - ] - }, - "atsConfigPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATSConfigPhaseEntry" - }, - "index": null, - "value": [ - "atsConfig", - 16 - ] - }, - "atsConfigPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATSConfigPhaseEntry" - }, - "index": [ - "atsConfigPhaseTableIndex" - ], - "value": [ - "atsConfigPhaseTable", - 1 - ] - }, - "ATSConfigPhaseEntry": { - "tp": "SEQUENCE" - }, - "atsConfigPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigPhaseEntry", - 1 - ] - }, - "atsConfigPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "atsConfigPhaseEntry", - 2 - ] - }, - "atsConfigPhaseLowLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigPhaseEntry", - 3 - ] - }, - "atsConfigPhaseNearOverLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigPhaseEntry", - 4 - ] - }, - "atsConfigPhaseOverLoadThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsConfigPhaseEntry", - 5 - ] - }, - "atsStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsNeverDiscovered", - "2": "atsCommEstablished", - "3": "atsCommLost" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 1 - ] - }, - "atsStatusSelectedSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceA", - "2": "sourceB" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 2 - ] - }, - "atsStatusRedundancyState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsRedundancyLost", - "2": "atsFullyRedundant" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 3 - ] - }, - "atsStatusOverCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsOverCurrent", - "2": "atsCurrentOK" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 4 - ] - }, - "atsStatus5VPowerSupply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsPowerSupplyFailure", - "2": "atsPowerSupplyOK" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 5 - ] - }, - "atsStatus24VPowerSupply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsPowerSupplyFailure", - "2": "atsPowerSupplyOK" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 6 - ] - }, - "atsStatus24VSourceBPowerSupply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsPowerSupplyFailure", - "2": "atsPowerSupplyOK" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 7 - ] - }, - "atsStatusPlus12VPowerSupply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsPowerSupplyFailure", - "2": "atsPowerSupplyOK" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 8 - ] - }, - "atsStatusMinus12VPowerSupply": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "atsPowerSupplyFailure", - "2": "atsPowerSupplyOK" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 9 - ] - }, - "atsStatusSwitchStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fail", - "2": "ok" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 10 - ] - }, - "atsStatusFrontPanel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "locked", - "2": "unlocked" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 11 - ] - }, - "atsStatusSourceAStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fail", - "2": "ok" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 12 - ] - }, - "atsStatusSourceBStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fail", - "2": "ok" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 13 - ] - }, - "atsStatusPhaseSyncStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "inSync", - "2": "outOfSync" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 14 - ] - }, - "atsStatusVoltageOutStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fail", - "2": "ok" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 15 - ] - }, - "atsStatusHardwareStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fail", - "2": "ok" - } - }, - "index": null, - "value": [ - "atsStatusDeviceStatus", - 16 - ] - }, - "atsStatusResetMaxMinValues": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "reset" - } - }, - "index": null, - "value": [ - "atsStatusResetValues", - 1 - ] - }, - "atsNumInputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsStatusInput", - 1 - ] - }, - "atsInputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AtsInputEntry" - }, - "index": null, - "value": [ - "atsStatusInput", - 2 - ] - }, - "atsInputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AtsInputEntry" - }, - "index": [ - "atsInputTableIndex" - ], - "value": [ - "atsInputTable", - 1 - ] - }, - "AtsInputEntry": { - "tp": "SEQUENCE" - }, - "atsInputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputEntry", - 1 - ] - }, - "atsNumInputPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputEntry", - 2 - ] - }, - "atsInputVoltageOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "singlePhase", - "3": "splitPhase", - "4": "threePhasePhaseToNeutral", - "5": "threePhasePhaseToPhase" - } - }, - "index": null, - "value": [ - "atsInputEntry", - 3 - ] - }, - "atsInputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputEntry", - 4 - ] - }, - "atsInputType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "main", - "3": "bypass" - } - }, - "index": null, - "value": [ - "atsInputEntry", - 5 - ] - }, - "atsInputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "atsInputEntry", - 6 - ] - }, - "atsInputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AtsInputPhaseEntry" - }, - "index": null, - "value": [ - "atsStatusInput", - 3 - ] - }, - "atsInputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AtsInputPhaseEntry" - }, - "index": [ - "atsInputPhaseTableIndex", - "atsInputPhaseIndex" - ], - "value": [ - "atsInputPhaseTable", - 1 - ] - }, - "AtsInputPhaseEntry": { - "tp": "SEQUENCE" - }, - "atsInputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 1 - ] - }, - "atsInputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 2 - ] - }, - "atsInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 3 - ] - }, - "atsInputMaxVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 4 - ] - }, - "atsInputMinVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 5 - ] - }, - "atsInputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 6 - ] - }, - "atsInputMaxCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 7 - ] - }, - "atsInputMinCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 8 - ] - }, - "atsInputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 9 - ] - }, - "atsInputMaxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 10 - ] - }, - "atsInputMinPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsInputPhaseEntry", - 11 - ] - }, - "atsNumOutputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsStatusOutput", - 1 - ] - }, - "atsOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AtsOutputEntry" - }, - "index": null, - "value": [ - "atsStatusOutput", - 2 - ] - }, - "atsOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AtsOutputEntry" - }, - "index": [ - "atsOutputTableIndex" - ], - "value": [ - "atsOutputTable", - 1 - ] - }, - "AtsOutputEntry": { - "tp": "SEQUENCE" - }, - "atsOutputTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputEntry", - 1 - ] - }, - "atsNumOutputPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputEntry", - 2 - ] - }, - "atsOutputVoltageOrientation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "singlePhase", - "3": "splitPhase", - "4": "threePhasePhaseToNeutral", - "5": "threePhasePhaseToPhase" - } - }, - "index": null, - "value": [ - "atsOutputEntry", - 3 - ] - }, - "atsOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputEntry", - 4 - ] - }, - "atsOutputPhaseTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AtsOutputPhaseEntry" - }, - "index": null, - "value": [ - "atsStatusOutput", - 3 - ] - }, - "atsOutputPhaseEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AtsOutputPhaseEntry" - }, - "index": [ - "atsOutputPhaseTableIndex", - "atsOutputPhaseIndex" - ], - "value": [ - "atsOutputPhaseTable", - 1 - ] - }, - "AtsOutputPhaseEntry": { - "tp": "SEQUENCE" - }, - "atsOutputPhaseTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 1 - ] - }, - "atsOutputPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3", - "4": "neutral" - } - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 2 - ] - }, - "atsOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 3 - ] - }, - "atsOutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 4 - ] - }, - "atsOutputMaxCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 5 - ] - }, - "atsOutputMinCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 6 - ] - }, - "atsOutputLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 7 - ] - }, - "atsOutputMaxLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 8 - ] - }, - "atsOutputMinLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 9 - ] - }, - "atsOutputPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 10 - ] - }, - "atsOutputMaxPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 11 - ] - }, - "atsOutputMinPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 12 - ] - }, - "atsOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 13 - ] - }, - "atsOutputMaxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 14 - ] - }, - "atsOutputMinPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 15 - ] - }, - "atsOutputPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 16 - ] - }, - "atsOutputMaxPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 17 - ] - }, - "atsOutputMinPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 18 - ] - }, - "atsOutputPhaseState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "lowload", - "3": "nearoverload", - "4": "overload" - } - }, - "index": null, - "value": [ - "atsOutputPhaseEntry", - 19 - ] - }, - "atsOutputBankTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsStatusOutput", - 4 - ] - }, - "atsOutputBankTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ATSOutputBankEntry" - }, - "index": null, - "value": [ - "atsStatusOutput", - 5 - ] - }, - "atsOutputBankEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ATSOutputBankEntry" - }, - "index": [ - "atsOutputBankTableIndex" - ], - "value": [ - "atsOutputBankTable", - 1 - ] - }, - "ATSOutputBankEntry": { - "tp": "SEQUENCE" - }, - "atsOutputBankTableIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 1 - ] - }, - "atsOutputPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 2 - ] - }, - "atsOutputBank": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "total", - "2": "bank1", - "3": "bank2" - } - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 3 - ] - }, - "atsOutputBankCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 4 - ] - }, - "atsOutputBankState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "lowload", - "3": "nearoverload", - "4": "overload" - } - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 5 - ] - }, - "atsOutputBankOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 6 - ] - }, - "atsOutputBankMaxCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 7 - ] - }, - "atsOutputBankMinCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 8 - ] - }, - "atsOutputBankLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 9 - ] - }, - "atsOutputBankMaxLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 10 - ] - }, - "atsOutputBankMinLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 11 - ] - }, - "atsOutputBankPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 12 - ] - }, - "atsOutputBankMaxPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 13 - ] - }, - "atsOutputBankMinPercentLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 14 - ] - }, - "atsOutputBankPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 15 - ] - }, - "atsOutputBankMaxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 16 - ] - }, - "atsOutputBankMinPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 17 - ] - }, - "atsOutputBankPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 18 - ] - }, - "atsOutputBankMaxPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 19 - ] - }, - "atsOutputBankMinPercentPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "atsOutputBankEntry", - 20 - ] - }, - "dcmim2IdentSysFWVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2IdentSystem", - 1 - ] - }, - "dcmim2ControlRunFunctBatteryTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "battTestOff", - "2": "battTestOn" - } - }, - "index": null, - "value": [ - "dcmim2ControlSystem", - 1 - ] - }, - "dcmim2ControlRunCapacityBatteryTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "battTestOff", - "2": "battTestOn" - } - }, - "index": null, - "value": [ - "dcmim2ControlSystem", - 2 - ] - }, - "dcmim2ConfigSysHighTempTrip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigSystem", - 1 - ] - }, - "dcmim2ConfigSysHighTempReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigSystem", - 2 - ] - }, - "dcmim2ConfigSysLowTempTrip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigSystem", - 3 - ] - }, - "dcmim2ConfigSysLowTempReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigSystem", - 4 - ] - }, - "dcmim2ConfigBattFloatVolt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 1 - ] - }, - "dcmim2ConfigBattMaxRecharge": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 2 - ] - }, - "dcmim2ConfigBattMfgCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 3 - ] - }, - "dcmim2ConfigBattType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 4 - ] - }, - "dcmim2ConfigBattFunctTestDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 5 - ] - }, - "dcmim2ConfigBattFunctTestThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 6 - ] - }, - "dcmim2ConfigBattCapacityTestPercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 7 - ] - }, - "dcmim2ConfigBattCapacityTestEndThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 8 - ] - }, - "dcmim2ConfigBattCapacityTestCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigBattery", - 9 - ] - }, - "dcmim2ConfigLVDTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigLVD", - 1 - ] - }, - "dcmim2ConfigLVDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dcmim2ConfigLVDEntry" - }, - "index": null, - "value": [ - "dcmim2ConfigLVD", - 2 - ] - }, - "dcmim2ConfigLVDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dcmim2ConfigLVDEntry" - }, - "index": [ - "dcmim2ConfigLVDIndex" - ], - "value": [ - "dcmim2ConfigLVDTable", - 1 - ] - }, - "Dcmim2ConfigLVDEntry": { - "tp": "SEQUENCE" - }, - "dcmim2ConfigLVDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigLVDEntry", - 1 - ] - }, - "dcmim2ConfigLVDTrip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigLVDEntry", - 2 - ] - }, - "dcmim2ConfigLVDReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2ConfigLVDEntry", - 3 - ] - }, - "dcmim2ConfigLVDState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusClosed", - "2": "statusOpened" - } - }, - "index": null, - "value": [ - "dcmim2ConfigLVDEntry", - 4 - ] - }, - "dcmim2StatusSysRectCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusSystem", - 1 - ] - }, - "dcmim2StatusSysLoadCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusSystem", - 2 - ] - }, - "dcmim2StatusSysBusVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusSystem", - 3 - ] - }, - "dcmim2StatusSysAmbientTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusSystem", - 4 - ] - }, - "dcmim2StatusSysUpTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dcmim2StatusSystem", - 5 - ] - }, - "dcmim2StatusSysTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "dcmim2StatusSystem", - 6 - ] - }, - "dcmim2StatusRectTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusRectifier", - 1 - ] - }, - "dcmim2StatusRectTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dcmim2StatusRectEntry" - }, - "index": null, - "value": [ - "dcmim2StatusRectifier", - 2 - ] - }, - "dcmim2StatusRectEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dcmim2StatusRectEntry" - }, - "index": [ - "dcmim2StatusRectIndex" - ], - "value": [ - "dcmim2StatusRectTable", - 1 - ] - }, - "Dcmim2StatusRectEntry": { - "tp": "SEQUENCE" - }, - "dcmim2StatusRectIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusRectEntry", - 1 - ] - }, - "dcmim2StatusRectDevType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusRectEntry", - 2 - ] - }, - "dcmim2StatusRectID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusRectEntry", - 3 - ] - }, - "dcmim2StatusRectPhyAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusRectEntry", - 4 - ] - }, - "dcmim2StatusRectFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusTrue", - "2": "statusFalse" - } - }, - "index": null, - "value": [ - "dcmim2StatusRectEntry", - 5 - ] - }, - "dcmim2StatusRectCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusRectEntry", - 6 - ] - }, - "dcmim2StatusBattFloatVolt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 1 - ] - }, - "dcmim2StatusBattCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 2 - ] - }, - "dcmim2StatusBattTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 3 - ] - }, - "dcmim2StatusBattMfgCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 4 - ] - }, - "dcmim2StatusBattTestCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 5 - ] - }, - "dcmim2StatusBattFunctTestResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "functTestNotPerformed", - "2": "functTestInProcess", - "3": "functTestInterrupted", - "4": "functTestPass", - "5": "functTestFail" - } - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 6 - ] - }, - "dcmim2StatusBattCapacityTestResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "capacityTestNotPerformed", - "2": "capacityTestInProcess", - "3": "capacityTestInterrupted", - "4": "capacityTestPass", - "5": "capacityTestFail" - } - }, - "index": null, - "value": [ - "dcmim2StatusBattery", - 7 - ] - }, - "dcmim2StatusLVDTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusLVD", - 1 - ] - }, - "dcmim2StatusLVDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dcmim2StatusLVDEntry" - }, - "index": null, - "value": [ - "dcmim2StatusLVD", - 2 - ] - }, - "dcmim2StatusLVDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dcmim2StatusLVDEntry" - }, - "index": [ - "dcmim2StatusLVDIndex" - ], - "value": [ - "dcmim2StatusLVDTable", - 1 - ] - }, - "Dcmim2StatusLVDEntry": { - "tp": "SEQUENCE" - }, - "dcmim2StatusLVDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusLVDEntry", - 1 - ] - }, - "dcmim2StatusLVDState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusClosed", - "2": "statusOpened" - } - }, - "index": null, - "value": [ - "dcmim2StatusLVDEntry", - 2 - ] - }, - "dcmim2StatusAlarmsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusAlarms", - 1 - ] - }, - "dcmim2StatusAlarmsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Dcmim2StatusAlarmsEntry" - }, - "index": null, - "value": [ - "dcmim2StatusAlarms", - 2 - ] - }, - "dcmim2StatusAlarmsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Dcmim2StatusAlarmsEntry" - }, - "index": [ - "dcmim2StatusAlarmsIndex" - ], - "value": [ - "dcmim2StatusAlarmsTable", - 1 - ] - }, - "Dcmim2StatusAlarmsEntry": { - "tp": "SEQUENCE" - }, - "dcmim2StatusAlarmsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "dcmim2StatusAlarmsEntry", - 1 - ] - }, - "dcmim2StatusAlarmsText": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "dcmim2StatusAlarmsEntry", - 2 - ] - }, - "emIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emIdent", - 1 - ] - }, - "emConfigProbesNumProbes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfig", - 1 - ] - }, - "emConfigProbesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmConfigProbesEntry" - }, - "index": null, - "value": [ - "emConfig", - 2 - ] - }, - "emConfigProbesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmConfigProbesEntry" - }, - "index": [ - "emConfigProbeNumber" - ], - "value": [ - "emConfigProbesTable", - 1 - ] - }, - "EmConfigProbesEntry": { - "tp": "SEQUENCE" - }, - "emConfigProbeNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 1 - ] - }, - "emConfigProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 2 - ] - }, - "emConfigProbeHighTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 3 - ] - }, - "emConfigProbeLowTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 4 - ] - }, - "emConfigProbeTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 5 - ] - }, - "emConfigProbeHighHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 6 - ] - }, - "emConfigProbeLowHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 7 - ] - }, - "emConfigProbeHighTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 8 - ] - }, - "emConfigProbeLowTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 9 - ] - }, - "emConfigProbeHighHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 10 - ] - }, - "emConfigProbeLowHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 11 - ] - }, - "emConfigProbeMaxTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 12 - ] - }, - "emConfigProbeMinTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 13 - ] - }, - "emConfigProbeMaxHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 14 - ] - }, - "emConfigProbeMinHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 15 - ] - }, - "emConfigProbeMaxTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 16 - ] - }, - "emConfigProbeMinTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 17 - ] - }, - "emConfigProbeMaxHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 18 - ] - }, - "emConfigProbeMinHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 19 - ] - }, - "emConfigProbeTempHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 20 - ] - }, - "emConfigProbeHumidHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 21 - ] - }, - "emConfigProbeLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emConfigProbesEntry", - 22 - ] - }, - "emConfigContactsNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfig", - 3 - ] - }, - "emConfigContactsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmConfigContactsEntry" - }, - "index": null, - "value": [ - "emConfig", - 4 - ] - }, - "emConfigContactsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmConfigContactsEntry" - }, - "index": [ - "emConfigContactNumber" - ], - "value": [ - "emConfigContactsTable", - 1 - ] - }, - "EmConfigContactsEntry": { - "tp": "SEQUENCE" - }, - "emConfigContactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emConfigContactsEntry", - 1 - ] - }, - "emConfigContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emConfigContactsEntry", - 2 - ] - }, - "emConfigContactEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "emConfigContactsEntry", - 3 - ] - }, - "emConfigContactSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emConfigContactsEntry", - 4 - ] - }, - "emConfigContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "emConfigContactsEntry", - 5 - ] - }, - "emConfigContactLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emConfigContactsEntry", - 6 - ] - }, - "emStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noComm", - "2": "comm", - "3": "commLost" - } - }, - "index": null, - "value": [ - "emStatus", - 1 - ] - }, - "emStatusProbesNumProbes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emStatus", - 2 - ] - }, - "emStatusProbesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmStatusProbesEntry" - }, - "index": null, - "value": [ - "emStatus", - 3 - ] - }, - "emStatusProbesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmStatusProbesEntry" - }, - "index": [ - "emStatusProbeNumber" - ], - "value": [ - "emStatusProbesTable", - 1 - ] - }, - "EmStatusProbesEntry": { - "tp": "SEQUENCE" - }, - "emStatusProbeNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 1 - ] - }, - "emStatusProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 2 - ] - }, - "emStatusProbeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disconnected", - "2": "connected" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 3 - ] - }, - "emStatusProbeCurrentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 4 - ] - }, - "emStatusProbeTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 5 - ] - }, - "emStatusProbeCurrentHumid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 6 - ] - }, - "emStatusProbeHighTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "highTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 7 - ] - }, - "emStatusProbeLowTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "lowTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 8 - ] - }, - "emStatusProbeHighHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "highHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 9 - ] - }, - "emStatusProbeLowHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "lowHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 10 - ] - }, - "emStatusProbeMaxTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "maxTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 11 - ] - }, - "emStatusProbeMinTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "minTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 12 - ] - }, - "emStatusProbeMaxHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "maxHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 13 - ] - }, - "emStatusProbeMinHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "minHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusProbesEntry", - 14 - ] - }, - "emStatusContactsNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emStatus", - 4 - ] - }, - "emStatusContactsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmStatusContactsEntry" - }, - "index": null, - "value": [ - "emStatus", - 5 - ] - }, - "emStatusContactsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmStatusContactsEntry" - }, - "index": [ - "emStatusContactNumber" - ], - "value": [ - "emStatusContactsTable", - 1 - ] - }, - "EmStatusContactsEntry": { - "tp": "SEQUENCE" - }, - "emStatusContactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emStatusContactsEntry", - 1 - ] - }, - "emStatusContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emStatusContactsEntry", - 2 - ] - }, - "emStatusContactStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noFault", - "2": "fault", - "3": "disabled" - } - }, - "index": null, - "value": [ - "emStatusContactsEntry", - 3 - ] - }, - "memModulesStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memModules", - 1 - ] - }, - "memModulesStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemModulesStatusEntry" - }, - "index": null, - "value": [ - "memModules", - 2 - ] - }, - "memModulesStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemModulesStatusEntry" - }, - "index": [ - "memModulesStatusModuleNumber" - ], - "value": [ - "memModulesStatusTable", - 1 - ] - }, - "MemModulesStatusEntry": { - "tp": "SEQUENCE" - }, - "memModulesStatusModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 1 - ] - }, - "memModulesStatusModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 2 - ] - }, - "memModulesStatusModuleLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 3 - ] - }, - "memModulesStatusModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 4 - ] - }, - "memModulesStatusSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 5 - ] - }, - "memModulesStatusFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 6 - ] - }, - "memModulesStatusHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesStatusEntry", - 7 - ] - }, - "memModulesConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memModules", - 3 - ] - }, - "memModulesConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemModulesConfigEntry" - }, - "index": null, - "value": [ - "memModules", - 4 - ] - }, - "memModulesConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemModulesConfigEntry" - }, - "index": [ - "memModulesConfigModuleNumber" - ], - "value": [ - "memModulesConfigTable", - 1 - ] - }, - "MemModulesConfigEntry": { - "tp": "SEQUENCE" - }, - "memModulesConfigModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memModulesConfigEntry", - 1 - ] - }, - "memModulesConfigModuleName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesConfigEntry", - 2 - ] - }, - "memModulesConfigModuleLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memModulesConfigEntry", - 3 - ] - }, - "memSensorsStatusSysTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "memSensors", - 1 - ] - }, - "memSensorsStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensors", - 2 - ] - }, - "memSensorsStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemSensorsStatusEntry" - }, - "index": null, - "value": [ - "memSensors", - 3 - ] - }, - "memSensorsStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemSensorsStatusEntry" - }, - "index": [ - "memSensorsStatusModuleNumber", - "memSensorsStatusSensorNumber" - ], - "value": [ - "memSensorsStatusTable", - 1 - ] - }, - "MemSensorsStatusEntry": { - "tp": "SEQUENCE" - }, - "memSensorsStatusModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 1 - ] - }, - "memSensorsStatusSensorNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 2 - ] - }, - "memSensorsStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 3 - ] - }, - "memSensorsStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 4 - ] - }, - "memSensorsTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 5 - ] - }, - "memSensorsHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 6 - ] - }, - "memSensorsCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 7 - ] - }, - "memSensorsAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memNormal", - "2": "memWarning", - "3": "memCritical" - } - }, - "index": null, - "value": [ - "memSensorsStatusEntry", - 8 - ] - }, - "memSensorsConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensors", - 4 - ] - }, - "memSensorsConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemSensorsConfigEntry" - }, - "index": null, - "value": [ - "memSensors", - 5 - ] - }, - "memSensorsConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemSensorsConfigEntry" - }, - "index": [ - "memSensorsConfigModuleNumber", - "memSensorsConfigSensorNumber" - ], - "value": [ - "memSensorsConfigTable", - 1 - ] - }, - "MemSensorsConfigEntry": { - "tp": "SEQUENCE" - }, - "memSensorsConfigModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 1 - ] - }, - "memSensorsConfigSensorNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 2 - ] - }, - "memSensorsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 3 - ] - }, - "memSensorsLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 4 - ] - }, - "memSensorsAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 5 - ] - }, - "memSensorsTempMaxThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 6 - ] - }, - "memSensorsTempHighThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 7 - ] - }, - "memSensorsTempLowThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 8 - ] - }, - "memSensorsTempMinThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 9 - ] - }, - "memSensorsTempThreshHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 10 - ] - }, - "memSensorsTempShortDecRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 11 - ] - }, - "memSensorsTempShortDecRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 12 - ] - }, - "memSensorsTempShortIncRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 13 - ] - }, - "memSensorsTempShortIncRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 14 - ] - }, - "memSensorsTempLongDecRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 15 - ] - }, - "memSensorsTempLongDecRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 16 - ] - }, - "memSensorsTempLongIncRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 17 - ] - }, - "memSensorsTempLongIncRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 18 - ] - }, - "memSensorsHumidityMaxThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 19 - ] - }, - "memSensorsHumidityHighThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 20 - ] - }, - "memSensorsHumidityLowThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 21 - ] - }, - "memSensorsHumidityMinThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 22 - ] - }, - "memSensorsHumidityThreshHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSensorsConfigEntry", - 23 - ] - }, - "memInputsStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputs", - 1 - ] - }, - "memInputsStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemInputsStatusEntry" - }, - "index": null, - "value": [ - "memInputs", - 2 - ] - }, - "memInputsStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemInputsStatusEntry" - }, - "index": [ - "memInputsStatusModuleNumber", - "memInputsStatusInputNumber" - ], - "value": [ - "memInputsStatusTable", - 1 - ] - }, - "MemInputsStatusEntry": { - "tp": "SEQUENCE" - }, - "memInputsStatusModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 1 - ] - }, - "memInputsStatusInputNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 2 - ] - }, - "memInputsStatusInputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 3 - ] - }, - "memInputsStatusInputLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 4 - ] - }, - "memInputsStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "inputClosedHighMEM", - "2": "inputOpenLowMEM", - "3": "inputDisabled", - "4": "inputStateNotApplicable" - } - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 5 - ] - }, - "memInputsStatusCurrentAnalogValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 6 - ] - }, - "memInputsStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memNormal", - "2": "memWarning", - "3": "memCritical" - } - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 7 - ] - }, - "memInputsCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "memInputsStatusEntry", - 8 - ] - }, - "memInputsConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputs", - 3 - ] - }, - "memInputsConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemInputsConfigEntry" - }, - "index": null, - "value": [ - "memInputs", - 4 - ] - }, - "memInputsConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemInputsConfigEntry" - }, - "index": [ - "memInputsConfigModuleNumber", - "memInputsConfigInputNumber" - ], - "value": [ - "memInputsConfigTable", - 1 - ] - }, - "MemInputsConfigEntry": { - "tp": "SEQUENCE" - }, - "memInputsConfigModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 1 - ] - }, - "memInputsConfigInputNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 2 - ] - }, - "memInputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 3 - ] - }, - "memInputLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 4 - ] - }, - "memInputType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noConnection", - "2": "dryContact", - "3": "digital", - "4": "analogmAmps", - "5": "analogVolts" - } - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 5 - ] - }, - "memInputAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 6 - ] - }, - "memInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "inputClosedHighMEM", - "2": "inputOpenLowMEM", - "3": "inputDisabled", - "4": "inputStateNotApplicable" - } - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 7 - ] - }, - "memInputAbnormalSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "inputSeverityinformational", - "2": "inputSeveritywarning", - "3": "inputSeveritysevere", - "4": "inputSeverityNotApplicable" - } - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 8 - ] - }, - "memInputNumberCalibrationPoints": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 9 - ] - }, - "memInputAnalogCalibrationPoint1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 10 - ] - }, - "memInputAnalogCalibrationPoint2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 11 - ] - }, - "memInputAnalogCalibrationPoint3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 12 - ] - }, - "memInputAnalogCalibrationPoint4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 13 - ] - }, - "memInputAnalogCalibrationPoint5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 14 - ] - }, - "memInputAnalogCalibrationPoint1Value": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 15 - ] - }, - "memInputAnalogCalibrationPoint2Value": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 16 - ] - }, - "memInputAnalogCalibrationPoint3Value": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 17 - ] - }, - "memInputAnalogCalibrationPoint4Value": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 18 - ] - }, - "memInputAnalogCalibrationPoint5Value": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 19 - ] - }, - "memInputAnalogMeasurementUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 20 - ] - }, - "memInputAnalogMaxThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 21 - ] - }, - "memInputAnalogHighThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 22 - ] - }, - "memInputAnalogLowThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 23 - ] - }, - "memInputAnalogMinThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 24 - ] - }, - "memInputAnalogThreshHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memInputsConfigEntry", - 25 - ] - }, - "memOutputStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutputs", - 1 - ] - }, - "memOutputStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemOutputStatusEntry" - }, - "index": null, - "value": [ - "memOutputs", - 2 - ] - }, - "memOutputStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemOutputStatusEntry" - }, - "index": [ - "memOutputStatusModuleNumber", - "memOutputStatusOutputNumber" - ], - "value": [ - "memOutputStatusTable", - 1 - ] - }, - "MemOutputStatusEntry": { - "tp": "SEQUENCE" - }, - "memOutputStatusModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutputStatusEntry", - 1 - ] - }, - "memOutputStatusOutputNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutputStatusEntry", - 2 - ] - }, - "memOutputStatusOutputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutputStatusEntry", - 3 - ] - }, - "memOutputStatusOutputLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutputStatusEntry", - 4 - ] - }, - "memOutputStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memOutputClosed", - "2": "memOutputOpen" - } - }, - "index": null, - "value": [ - "memOutputStatusEntry", - 5 - ] - }, - "memOutputConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutputs", - 3 - ] - }, - "memOutputConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemOutputConfigEntry" - }, - "index": null, - "value": [ - "memOutputs", - 4 - ] - }, - "memOutputConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemOutputConfigEntry" - }, - "index": [ - "memOutputConfigModuleNumber", - "memOutputConfigOutputNumber" - ], - "value": [ - "memOutputConfigTable", - 1 - ] - }, - "MemOutputConfigEntry": { - "tp": "SEQUENCE" - }, - "memOutputConfigModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutputConfigEntry", - 1 - ] - }, - "memOutputConfigOutputNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutputConfigEntry", - 2 - ] - }, - "memOutputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutputConfigEntry", - 3 - ] - }, - "memOutputLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutputConfigEntry", - 4 - ] - }, - "memOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memOutputClosed", - "2": "memOutputOpen" - } - }, - "index": null, - "value": [ - "memOutputConfigEntry", - 5 - ] - }, - "memOutputAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memActionClose", - "2": "memActionOpen" - } - }, - "index": null, - "value": [ - "memOutputConfigEntry", - 6 - ] - }, - "memOutletStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutlets", - 1 - ] - }, - "memOutletStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemOutletStatusEntry" - }, - "index": null, - "value": [ - "memOutlets", - 2 - ] - }, - "memOutletStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemOutletStatusEntry" - }, - "index": [ - "memOutletStatusModuleNumber", - "memOutletStatusOutletNumber" - ], - "value": [ - "memOutletStatusTable", - 1 - ] - }, - "MemOutletStatusEntry": { - "tp": "SEQUENCE" - }, - "memOutletStatusModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutletStatusEntry", - 1 - ] - }, - "memOutletStatusOutletNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutletStatusEntry", - 2 - ] - }, - "memOutletStatusOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutletStatusEntry", - 3 - ] - }, - "memOutletStatusOutletLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutletStatusEntry", - 4 - ] - }, - "memOutletStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "memOutletStatusEntry", - 5 - ] - }, - "memOutletConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutlets", - 3 - ] - }, - "memOutletConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemOutletConfigEntry" - }, - "index": null, - "value": [ - "memOutlets", - 4 - ] - }, - "memOutletConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemOutletConfigEntry" - }, - "index": [ - "memOutletConfigModuleNumber", - "memOutletConfigOutletNumber" - ], - "value": [ - "memOutletConfigTable", - 1 - ] - }, - "MemOutletConfigEntry": { - "tp": "SEQUENCE" - }, - "memOutletConfigModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutletConfigEntry", - 1 - ] - }, - "memOutletConfigOutletNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memOutletConfigEntry", - 2 - ] - }, - "memOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutletConfigEntry", - 3 - ] - }, - "memOutletLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memOutletConfigEntry", - 4 - ] - }, - "memOutletNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "memOutletConfigEntry", - 5 - ] - }, - "memOutletAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "turnOff", - "2": "turnOn" - } - }, - "index": null, - "value": [ - "memOutletConfigEntry", - 6 - ] - }, - "memBeaconStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memBeacons", - 1 - ] - }, - "memBeaconStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemBeaconStatusEntry" - }, - "index": null, - "value": [ - "memBeacons", - 2 - ] - }, - "memBeaconStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemBeaconStatusEntry" - }, - "index": [ - "memBeaconStatusModuleNumber", - "memBeaconStatusBeaconNumber" - ], - "value": [ - "memBeaconStatusTable", - 1 - ] - }, - "MemBeaconStatusEntry": { - "tp": "SEQUENCE" - }, - "memBeaconStatusModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memBeaconStatusEntry", - 1 - ] - }, - "memBeaconStatusBeaconNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memBeaconStatusEntry", - 2 - ] - }, - "memBeaconStatusBeaconName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memBeaconStatusEntry", - 3 - ] - }, - "memBeaconStatusBeaconLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memBeaconStatusEntry", - 4 - ] - }, - "memBeaconStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "memBeaconStatusEntry", - 5 - ] - }, - "memBeaconConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memBeacons", - 3 - ] - }, - "memBeaconConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemBeaconConfigEntry" - }, - "index": null, - "value": [ - "memBeacons", - 4 - ] - }, - "memBeaconConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemBeaconConfigEntry" - }, - "index": [ - "memBeaconConfigModuleNumber", - "memBeaconConfigBeaconNumber" - ], - "value": [ - "memBeaconConfigTable", - 1 - ] - }, - "MemBeaconConfigEntry": { - "tp": "SEQUENCE" - }, - "memBeaconConfigModuleNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memBeaconConfigEntry", - 1 - ] - }, - "memBeaconConfigBeaconNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memBeaconConfigEntry", - 2 - ] - }, - "memBeaconConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memBeaconConfigEntry", - 3 - ] - }, - "memBeaconConfigLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memBeaconConfigEntry", - 4 - ] - }, - "memBeaconAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "turnOff", - "2": "turnOn" - } - }, - "index": null, - "value": [ - "memBeaconConfigEntry", - 5 - ] - }, - "memSmokeSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputStateSensors", - 1 - ] - }, - "memSmokeSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemSmokeSensorStatusEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 2 - ] - }, - "memSmokeSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemSmokeSensorStatusEntry" - }, - "index": [ - "memSmokeSensorStatusModuleIndex" - ], - "value": [ - "memSmokeSensorStatusTable", - 1 - ] - }, - "MemSmokeSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "memSmokeSensorStatusModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 1 - ] - }, - "memSmokeSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 2 - ] - }, - "memSmokeSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 3 - ] - }, - "memSmokeSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 4 - ] - }, - "memSmokeSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "smokeDetected", - "2": "noSmoke", - "3": "unknown" - } - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 5 - ] - }, - "memSmokeSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 6 - ] - }, - "memSmokeStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memNormal", - "2": "memWarning", - "3": "memCritical" - } - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 7 - ] - }, - "memSmokeSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "memSmokeSensorStatusEntry", - 8 - ] - }, - "memVibrationSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputStateSensors", - 3 - ] - }, - "memVibrationSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemVibrationSensorStatusEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 4 - ] - }, - "memVibrationSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemVibrationSensorStatusEntry" - }, - "index": [ - "memVibrationSensorStatusModuleIndex" - ], - "value": [ - "memVibrationSensorStatusTable", - 1 - ] - }, - "MemVibrationSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "memVibrationSensorStatusModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 1 - ] - }, - "memVibrationSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 2 - ] - }, - "memVibrationSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 3 - ] - }, - "memVibrationSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 4 - ] - }, - "memVibrationSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "vibrationDetected", - "2": "noVibration", - "3": "unknown" - } - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 5 - ] - }, - "memVibrationSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 6 - ] - }, - "memVibrationStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memNormal", - "2": "memWarning", - "3": "memCritical" - } - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 7 - ] - }, - "memVibrationSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "memVibrationSensorStatusEntry", - 8 - ] - }, - "memFluidSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputStateSensors", - 5 - ] - }, - "memFluidSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemFluidSensorStatusEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 6 - ] - }, - "memFluidSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemFluidSensorStatusEntry" - }, - "index": [ - "memFluidSensorStatusModuleIndex" - ], - "value": [ - "memFluidSensorStatusTable", - 1 - ] - }, - "MemFluidSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "memFluidSensorStatusModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 1 - ] - }, - "memFluidSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 2 - ] - }, - "memFluidSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 3 - ] - }, - "memFluidSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 4 - ] - }, - "memFluidSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fluidDetected", - "2": "noFluid", - "3": "unknown" - } - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 5 - ] - }, - "memFluidSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 6 - ] - }, - "memFluidStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memNormal", - "2": "memWarning", - "3": "memCritical" - } - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 7 - ] - }, - "memFluidSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "memFluidSensorStatusEntry", - 8 - ] - }, - "memDoorSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memInputStateSensors", - 7 - ] - }, - "memDoorSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemDoorSensorStatusEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 8 - ] - }, - "memDoorSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemDoorSensorStatusEntry" - }, - "index": [ - "memDoorSensorStatusModuleIndex" - ], - "value": [ - "memDoorSensorStatusTable", - 1 - ] - }, - "MemDoorSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "memDoorSensorStatusModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 1 - ] - }, - "memDoorSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 2 - ] - }, - "memDoorSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 3 - ] - }, - "memDoorSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 4 - ] - }, - "memDoorSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 5 - ] - }, - "memDoorSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 6 - ] - }, - "memDoorStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "memNormal", - "2": "memWarning", - "3": "memCritical" - } - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 7 - ] - }, - "memDoorSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "memDoorSensorStatusEntry", - 8 - ] - }, - "memSmokeSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemSmokeSensorConfigEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 9 - ] - }, - "memSmokeSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemSmokeSensorConfigEntry" - }, - "index": [ - "memSmokeSensorConfigSensorModuleIndex" - ], - "value": [ - "memSmokeSensorConfigTable", - 1 - ] - }, - "MemSmokeSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "memSmokeSensorConfigSensorModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSmokeSensorConfigEntry", - 1 - ] - }, - "memSmokeSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memSmokeSensorConfigEntry", - 2 - ] - }, - "memSmokeSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSmokeSensorConfigEntry", - 3 - ] - }, - "memSmokeSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memSmokeSensorConfigEntry", - 4 - ] - }, - "memSmokeSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memSmokeSensorConfigEntry", - 5 - ] - }, - "memSmokeSensorConfigAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "memSmokeSensorConfigEntry", - 6 - ] - }, - "memVibrationSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemVibrationSensorConfigEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 10 - ] - }, - "memVibrationSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemVibrationSensorConfigEntry" - }, - "index": [ - "memVibrationSensorModuleConfigIndex" - ], - "value": [ - "memVibrationSensorConfigTable", - 1 - ] - }, - "MemVibrationSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "memVibrationSensorModuleConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memVibrationSensorConfigEntry", - 1 - ] - }, - "memVibrationSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memVibrationSensorConfigEntry", - 2 - ] - }, - "memVibrationSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memVibrationSensorConfigEntry", - 3 - ] - }, - "memVibrationSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memVibrationSensorConfigEntry", - 4 - ] - }, - "memVibrationSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memVibrationSensorConfigEntry", - 5 - ] - }, - "memVibrationSensorConfigAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "memVibrationSensorConfigEntry", - 6 - ] - }, - "memFluidSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemFluidSensorConfigEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 11 - ] - }, - "memFluidSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemFluidSensorConfigEntry" - }, - "index": [ - "memFluidSensorModuleConfigIndex" - ], - "value": [ - "memFluidSensorConfigTable", - 1 - ] - }, - "MemFluidSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "memFluidSensorModuleConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memFluidSensorConfigEntry", - 1 - ] - }, - "memFluidSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memFluidSensorConfigEntry", - 2 - ] - }, - "memFluidSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memFluidSensorConfigEntry", - 3 - ] - }, - "memFluidSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memFluidSensorConfigEntry", - 4 - ] - }, - "memFluidSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memFluidSensorConfigEntry", - 5 - ] - }, - "memFluidSensorConfigAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "memFluidSensorConfigEntry", - 6 - ] - }, - "memDoorSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MemDoorSensorConfigEntry" - }, - "index": null, - "value": [ - "memInputStateSensors", - 12 - ] - }, - "memDoorSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MemDoorSensorConfigEntry" - }, - "index": [ - "memDoorSensorModuleConfigIndex" - ], - "value": [ - "memDoorSensorConfigTable", - 1 - ] - }, - "MemDoorSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "memDoorSensorModuleConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memDoorSensorConfigEntry", - 1 - ] - }, - "memDoorSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "memDoorSensorConfigEntry", - 2 - ] - }, - "memDoorSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memDoorSensorConfigEntry", - 3 - ] - }, - "memDoorSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "memDoorSensorConfigEntry", - 4 - ] - }, - "memDoorSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "memDoorSensorConfigEntry", - 5 - ] - }, - "memDoorSensorConfigAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "memDoorSensorConfigEntry", - 6 - ] - }, - "wirelessSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF WirelessSensorStatusEntry" - }, - "index": null, - "value": [ - "wirelessSensorStatus", - 1 - ] - }, - "wirelessSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WirelessSensorStatusEntry" - }, - "index": [ - "wirelessSensorStatusIndex" - ], - "value": [ - "wirelessSensorStatusTable", - 1 - ] - }, - "WirelessSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "wirelessSensorStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 1 - ] - }, - "wirelessSensorStatusExtAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 2 - ] - }, - "wirelessSensorStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 3 - ] - }, - "wirelessSensorStatusAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 4 - ] - }, - "wirelessSensorStatusTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 5 - ] - }, - "wirelessSensorStatusHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 6 - ] - }, - "wirelessSensorStatusLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 7 - ] - }, - "wirelessSensorStatusHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 8 - ] - }, - "wirelessSensorStatusHighHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 9 - ] - }, - "wirelessSensorStatusLowHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 10 - ] - }, - "wirelessSensorStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "inactive", - "1": "active" - } - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 11 - ] - }, - "wirelessSensorStatusMaxTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 12 - ] - }, - "wirelessSensorStatusMinTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 13 - ] - }, - "wirelessSensorStatusMaxHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 14 - ] - }, - "wirelessSensorStatusMinHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 15 - ] - }, - "wirelessSensorStatusBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 16 - ] - }, - "wirelessSensorStatusLowBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 17 - ] - }, - "wirelessSensorStatusMinBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 18 - ] - }, - "wirelessSensorStatusRssi": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 19 - ] - }, - "wirelessSensorStatusLowRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 20 - ] - }, - "wirelessSensorStatusMinRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorStatusEntry", - 21 - ] - }, - "wirelessSensorPodStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF WirelessSensorPodStatusEntry" - }, - "index": null, - "value": [ - "wirelessSensorPodStatus", - 1 - ] - }, - "wirelessSensorPodStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WirelessSensorPodStatusEntry" - }, - "index": [ - "wirelessSensorPodStatusIndex" - ], - "value": [ - "wirelessSensorPodStatusTable", - 1 - ] - }, - "WirelessSensorPodStatusEntry": { - "tp": "SEQUENCE" - }, - "wirelessSensorPodStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 1 - ] - }, - "wirelessSensorPodPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 2 - ] - }, - "wirelessSensorPodStatusExtAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 3 - ] - }, - "wirelessSensorPodStatusName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 4 - ] - }, - "wirelessSensorPodStatusAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 5 - ] - }, - "wirelessSensorPodStatusTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 6 - ] - }, - "wirelessSensorPodStatusHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 7 - ] - }, - "wirelessSensorPodStatusLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 8 - ] - }, - "wirelessSensorPodStatusHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 9 - ] - }, - "wirelessSensorPodStatusHighHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 10 - ] - }, - "wirelessSensorPodStatusLowHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 11 - ] - }, - "wirelessSensorPodStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "inactive", - "1": "active" - } - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 12 - ] - }, - "wirelessSensorPodStatusMaxTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 13 - ] - }, - "wirelessSensorPodStatusMinTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 14 - ] - }, - "wirelessSensorPodStatusMaxHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 15 - ] - }, - "wirelessSensorPodStatusMinHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 16 - ] - }, - "wirelessSensorPodStatusDryContactState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "drycontactOpen", - "1": "drycontactClosed" - } - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 17 - ] - }, - "wirelessSensorPodStatusDryContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "normallyOpen", - "1": "normallyClosed" - } - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 18 - ] - }, - "wirelessSensorPodStatusBattery": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 19 - ] - }, - "wirelessSensorPodStatusLowBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 20 - ] - }, - "wirelessSensorPodStatusMinBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 21 - ] - }, - "wirelessSensorPodStatusRssi": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 22 - ] - }, - "wirelessSensorPodStatusLowRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 23 - ] - }, - "wirelessSensorPodStatusMinRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodStatusEntry", - 24 - ] - }, - "wirelessSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF WirelessSensorConfigEntry" - }, - "index": null, - "value": [ - "wirelessSensorConfig", - 1 - ] - }, - "wirelessSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WirelessSensorConfigEntry" - }, - "index": [ - "wirelessSensorConfigIndex" - ], - "value": [ - "wirelessSensorConfigTable", - 1 - ] - }, - "WirelessSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "wirelessSensorConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 1 - ] - }, - "wirelessSensorConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 2 - ] - }, - "wirelessSensorConfigAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 3 - ] - }, - "wirelessSensorConfigHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 4 - ] - }, - "wirelessSensorConfigLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 5 - ] - }, - "wirelessSensorConfigHighHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 6 - ] - }, - "wirelessSensorConfigLowHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 7 - ] - }, - "wirelessSensorConfigMaxTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 8 - ] - }, - "wirelessSensorConfigMinTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 9 - ] - }, - "wirelessSensorConfigMaxHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 10 - ] - }, - "wirelessSensorConfigMinHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 11 - ] - }, - "wirelessSensorConfigLowBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 12 - ] - }, - "wirelessSensorConfigMinBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 13 - ] - }, - "wirelessSensorConfigLowRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 14 - ] - }, - "wirelessSensorConfigMinRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorConfigEntry", - 15 - ] - }, - "wirelessSensorPodConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF WirelessSensorPodConfigEntry" - }, - "index": null, - "value": [ - "wirelessSensorPodConfig", - 1 - ] - }, - "wirelessSensorPodConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "WirelessSensorPodConfigEntry" - }, - "index": [ - "wirelessSensorPodConfigIndex", - "wirelessSensorPodConfigPortIndex" - ], - "value": [ - "wirelessSensorPodConfigTable", - 1 - ] - }, - "WirelessSensorPodConfigEntry": { - "tp": "SEQUENCE" - }, - "wirelessSensorPodConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 1 - ] - }, - "wirelessSensorPodConfigPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 2 - ] - }, - "wirelessSensorPodConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 3 - ] - }, - "wirelessSensorPodConfigAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 4 - ] - }, - "wirelessSensorPodConfigDryContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "normallyOpen", - "1": "normallyClosed" - } - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 5 - ] - }, - "wirelessSensorPodConfigHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 6 - ] - }, - "wirelessSensorPodConfigLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 7 - ] - }, - "wirelessSensorPodConfigHighHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 8 - ] - }, - "wirelessSensorPodConfigLowHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 9 - ] - }, - "wirelessSensorPodConfigMaxTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 10 - ] - }, - "wirelessSensorPodConfigMinTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 11 - ] - }, - "wirelessSensorPodConfigMaxHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 12 - ] - }, - "wirelessSensorPodConfigMinHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 13 - ] - }, - "wirelessSensorPodConfigLowBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 14 - ] - }, - "wirelessSensorPodConfigMinBatteryThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 15 - ] - }, - "wirelessSensorPodConfigLowRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 16 - ] - }, - "wirelessSensorPodConfigMinRssiThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "wirelessSensorPodConfigEntry", - 17 - ] - }, - "iemIdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemIdent", - 1 - ] - }, - "iemConfigProbesNumProbes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfig", - 1 - ] - }, - "iemConfigProbesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IemConfigProbesEntry" - }, - "index": null, - "value": [ - "iemConfig", - 2 - ] - }, - "iemConfigProbesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IemConfigProbesEntry" - }, - "index": [ - "iemConfigProbeNumber" - ], - "value": [ - "iemConfigProbesTable", - 1 - ] - }, - "IemConfigProbesEntry": { - "tp": "SEQUENCE" - }, - "iemConfigProbeNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 1 - ] - }, - "iemConfigProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 2 - ] - }, - "iemConfigProbeHighTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 3 - ] - }, - "iemConfigProbeLowTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 4 - ] - }, - "iemConfigProbeTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 5 - ] - }, - "iemConfigProbeHighHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 6 - ] - }, - "iemConfigProbeLowHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 7 - ] - }, - "iemConfigProbeHighTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 8 - ] - }, - "iemConfigProbeLowTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 9 - ] - }, - "iemConfigProbeHighHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 10 - ] - }, - "iemConfigProbeLowHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 11 - ] - }, - "iemConfigProbeMaxTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 12 - ] - }, - "iemConfigProbeMinTempThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 13 - ] - }, - "iemConfigProbeMaxHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 14 - ] - }, - "iemConfigProbeMinHumidThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 15 - ] - }, - "iemConfigProbeMaxTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 16 - ] - }, - "iemConfigProbeMinTempEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 17 - ] - }, - "iemConfigProbeMaxHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 18 - ] - }, - "iemConfigProbeMinHumidEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 19 - ] - }, - "iemConfigProbeTempHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 20 - ] - }, - "iemConfigProbeHumidHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 21 - ] - }, - "iemConfigProbeLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemConfigProbesEntry", - 22 - ] - }, - "iemConfigContactsNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfig", - 3 - ] - }, - "iemConfigContactsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IemConfigContactsEntry" - }, - "index": null, - "value": [ - "iemConfig", - 4 - ] - }, - "iemConfigContactsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IemConfigContactsEntry" - }, - "index": [ - "iemConfigContactNumber" - ], - "value": [ - "iemConfigContactsTable", - 1 - ] - }, - "IemConfigContactsEntry": { - "tp": "SEQUENCE" - }, - "iemConfigContactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigContactsEntry", - 1 - ] - }, - "iemConfigContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemConfigContactsEntry", - 2 - ] - }, - "iemConfigContactEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "iemConfigContactsEntry", - 3 - ] - }, - "iemConfigContactSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "iemConfigContactsEntry", - 4 - ] - }, - "iemConfigContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "iemConfigContactsEntry", - 5 - ] - }, - "iemConfigContactLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemConfigContactsEntry", - 6 - ] - }, - "iemConfigConfigRelaysNumRelays": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfig", - 5 - ] - }, - "iemConfigRelaysTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IemConfigRelaysEntry" - }, - "index": null, - "value": [ - "iemConfig", - 6 - ] - }, - "iemConfigRelaysEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IemConfigRelaysEntry" - }, - "index": [ - "iemConfigRelayNumber" - ], - "value": [ - "iemConfigRelaysTable", - 1 - ] - }, - "IemConfigRelaysEntry": { - "tp": "SEQUENCE" - }, - "iemConfigRelayNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigRelaysEntry", - 1 - ] - }, - "iemConfigRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemConfigRelaysEntry", - 2 - ] - }, - "iemConfigRelayNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "iemConfigRelaysEntry", - 3 - ] - }, - "iemConfigRelayFaultCondition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemConfigRelaysEntry", - 4 - ] - }, - "iemStatusProbesNumProbes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatus", - 1 - ] - }, - "iemStatusProbesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IemStatusProbesEntry" - }, - "index": null, - "value": [ - "iemStatus", - 2 - ] - }, - "iemStatusProbesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IemStatusProbesEntry" - }, - "index": [ - "iemStatusProbeNumber" - ], - "value": [ - "iemStatusProbesTable", - 1 - ] - }, - "IemStatusProbesEntry": { - "tp": "SEQUENCE" - }, - "iemStatusProbeNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 1 - ] - }, - "iemStatusProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 2 - ] - }, - "iemStatusProbeStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disconnected", - "2": "connected" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 3 - ] - }, - "iemStatusProbeCurrentTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 4 - ] - }, - "iemStatusProbeTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 5 - ] - }, - "iemStatusProbeCurrentHumid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 6 - ] - }, - "iemStatusProbeHighTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "highTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 7 - ] - }, - "iemStatusProbeLowTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "lowTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 8 - ] - }, - "iemStatusProbeHighHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "highHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 9 - ] - }, - "iemStatusProbeLowHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "lowHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 10 - ] - }, - "iemStatusProbeMaxTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "maxTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 11 - ] - }, - "iemStatusProbeMinTempViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "minTempViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 12 - ] - }, - "iemStatusProbeMaxHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "maxHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 13 - ] - }, - "iemStatusProbeMinHumidViolation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noViolation", - "2": "minHumidViolation", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 14 - ] - }, - "iemStatusProbeLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemStatusProbesEntry", - 15 - ] - }, - "iemStatusContactsNumContacts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatus", - 3 - ] - }, - "iemStatusContactsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IemStatusContactsEntry" - }, - "index": null, - "value": [ - "iemStatus", - 4 - ] - }, - "iemStatusContactsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IemStatusContactsEntry" - }, - "index": [ - "iemStatusContactNumber" - ], - "value": [ - "iemStatusContactsTable", - 1 - ] - }, - "IemStatusContactsEntry": { - "tp": "SEQUENCE" - }, - "iemStatusContactNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatusContactsEntry", - 1 - ] - }, - "iemStatusContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemStatusContactsEntry", - 2 - ] - }, - "iemStatusContactStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noFault", - "2": "fault", - "3": "disabled" - } - }, - "index": null, - "value": [ - "iemStatusContactsEntry", - 3 - ] - }, - "iemStatusRelaysNumRelays": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatus", - 6 - ] - }, - "iemStatusRelaysTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IemStatusRelaysEntry" - }, - "index": null, - "value": [ - "iemStatus", - 7 - ] - }, - "iemStatusRelaysEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IemStatusRelaysEntry" - }, - "index": [ - "iemStatusRelayNumber" - ], - "value": [ - "iemStatusRelaysTable", - 1 - ] - }, - "IemStatusRelaysEntry": { - "tp": "SEQUENCE" - }, - "iemStatusRelayNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "iemStatusRelaysEntry", - 1 - ] - }, - "iemStatusRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "iemStatusRelaysEntry", - 2 - ] - }, - "iemStatusRelayStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "faultState", - "2": "normalState" - } - }, - "index": null, - "value": [ - "iemStatusRelaysEntry", - 3 - ] - }, - "emsIdentEMSName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsIdent", - 1 - ] - }, - "emsIdentProductNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsIdent", - 2 - ] - }, - "emsIdentFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsIdent", - 3 - ] - }, - "emsIdentHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsIdent", - 4 - ] - }, - "emsIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsIdent", - 5 - ] - }, - "emsIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsIdent", - 6 - ] - }, - "emsOutputRelayControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsOutputRelayControlEntry" - }, - "index": null, - "value": [ - "emsOutputRelayControl", - 1 - ] - }, - "emsOutputRelayControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsOutputRelayControlEntry" - }, - "index": [ - "emsOutputRelayControlOutputRelayIndex" - ], - "value": [ - "emsOutputRelayControlTable", - 1 - ] - }, - "EmsOutputRelayControlEntry": { - "tp": "SEQUENCE" - }, - "emsOutputRelayControlOutputRelayIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsOutputRelayControlEntry", - 1 - ] - }, - "emsOutputRelayControlOutputRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsOutputRelayControlEntry", - 2 - ] - }, - "emsOutputRelayControlOutputRelayCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateCloseEMS", - "2": "immediateOpenEMS" - } - }, - "index": null, - "value": [ - "emsOutputRelayControlEntry", - 3 - ] - }, - "emsOutletControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsOutletControlEntry" - }, - "index": null, - "value": [ - "emsOutletControl", - 1 - ] - }, - "emsOutletControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsOutletControlEntry" - }, - "index": [ - "emsOutletControlOutletIndex" - ], - "value": [ - "emsOutletControlTable", - 1 - ] - }, - "EmsOutletControlEntry": { - "tp": "SEQUENCE" - }, - "emsOutletControlOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsOutletControlEntry", - 1 - ] - }, - "emsOutletControlOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsOutletControlEntry", - 2 - ] - }, - "emsOutletControlOutletCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "immediateOnEMS", - "2": "immediateOffEMS" - } - }, - "index": null, - "value": [ - "emsOutletControlEntry", - 3 - ] - }, - "emsSensorControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSSensorControlEntry" - }, - "index": null, - "value": [ - "emsSensorControl", - 1 - ] - }, - "emsSensorControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSSensorControlEntry" - }, - "index": [ - "emsSensorControlSensorIndex" - ], - "value": [ - "emsSensorControlTable", - 1 - ] - }, - "EMSSensorControlEntry": { - "tp": "SEQUENCE" - }, - "emsSensorControlSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSensorControlEntry", - 1 - ] - }, - "emsSensorControlSensorSystemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSensorControlEntry", - 2 - ] - }, - "emsSensorControlSensorUserName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSensorControlEntry", - 3 - ] - }, - "emsSensorControlSensorCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noCommandEMS", - "2": "resetCommandEMS" - } - }, - "index": null, - "value": [ - "emsSensorControlEntry", - 4 - ] - }, - "emsAlarmDeviceControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsAlarmDeviceControlEntry" - }, - "index": null, - "value": [ - "emsAlarmDeviceControl", - 1 - ] - }, - "emsAlarmDeviceControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsAlarmDeviceControlEntry" - }, - "index": [ - "emsAlarmDeviceControlDeviceIndex" - ], - "value": [ - "emsAlarmDeviceControlTable", - 1 - ] - }, - "EmsAlarmDeviceControlEntry": { - "tp": "SEQUENCE" - }, - "emsAlarmDeviceControlDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsAlarmDeviceControlEntry", - 1 - ] - }, - "emsAlarmDeviceControlDeviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsAlarmDeviceControlEntry", - 2 - ] - }, - "emsAlarmDeviceControlDeviceCommand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmDeviceOnEMS", - "2": "alarmDeviceOffEMS", - "3": "alarmDeviceNotInstalledEMS" - } - }, - "index": null, - "value": [ - "emsAlarmDeviceControlEntry", - 3 - ] - }, - "emsConfigName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsConfig", - 1 - ] - }, - "emsConfigCheckLogLight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lightDisabled", - "2": "lightOnInformational", - "3": "lightOnWarning", - "4": "lightOnSevere" - } - }, - "index": null, - "value": [ - "emsConfig", - 2 - ] - }, - "emsProbeConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSProbeConfigEntry" - }, - "index": null, - "value": [ - "emsProbeConfig", - 1 - ] - }, - "emsProbeConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSProbeConfigEntry" - }, - "index": [ - "emsProbeConfigProbeIndex" - ], - "value": [ - "emsProbeConfigTable", - 1 - ] - }, - "EMSProbeConfigEntry": { - "tp": "SEQUENCE" - }, - "emsProbeConfigProbeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 1 - ] - }, - "emsProbeConfigProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 2 - ] - }, - "emsProbeConfigProbeHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 3 - ] - }, - "emsProbeConfigProbeLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 4 - ] - }, - "emsProbeConfigProbeHighHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 5 - ] - }, - "emsProbeConfigProbeLowHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 6 - ] - }, - "emsProbeConfigProbeMaxTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 7 - ] - }, - "emsProbeConfigProbeMinTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 8 - ] - }, - "emsProbeConfigProbeDeltaTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 9 - ] - }, - "emsProbeConfigProbeMaxHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 10 - ] - }, - "emsProbeConfigProbeMinHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 11 - ] - }, - "emsProbeConfigProbeDeltaHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 12 - ] - }, - "emsProbeConfigProbeSTIncTempVariance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 13 - ] - }, - "emsProbeConfigProbeSTIncTempTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 14 - ] - }, - "emsProbeConfigProbeSTDecTempVariance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 15 - ] - }, - "emsProbeConfigProbeSTDecTempTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 16 - ] - }, - "emsProbeConfigProbeLTIncTempVariance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 17 - ] - }, - "emsProbeConfigProbeLTIncTempTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 18 - ] - }, - "emsProbeConfigProbeLTDecTempVariance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 19 - ] - }, - "emsProbeConfigProbeLTDecTempTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeConfigEntry", - 20 - ] - }, - "emsInputContactConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSInputContactConfigEntry" - }, - "index": null, - "value": [ - "emsInputContactConfig", - 1 - ] - }, - "emsInputContactConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSInputContactConfigEntry" - }, - "index": [ - "emsInputContactConfigInputContactIndex" - ], - "value": [ - "emsInputContactConfigTable", - 1 - ] - }, - "EMSInputContactConfigEntry": { - "tp": "SEQUENCE" - }, - "emsInputContactConfigInputContactIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsInputContactConfigEntry", - 1 - ] - }, - "emsInputContactConfigInputContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsInputContactConfigEntry", - 2 - ] - }, - "emsInputContactConfigInputContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyClosedEMS", - "2": "normallyOpenEMS" - } - }, - "index": null, - "value": [ - "emsInputContactConfigEntry", - 3 - ] - }, - "emsOutputRelayConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSOutputRelayConfigEntry" - }, - "index": null, - "value": [ - "emsOutputRelayConfig", - 1 - ] - }, - "emsOutputRelayConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSOutputRelayConfigEntry" - }, - "index": [ - "emsOutputRelayConfigOutputRelayIndex" - ], - "value": [ - "emsOutputRelayConfigTable", - 1 - ] - }, - "EMSOutputRelayConfigEntry": { - "tp": "SEQUENCE" - }, - "emsOutputRelayConfigOutputRelayIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsOutputRelayConfigEntry", - 1 - ] - }, - "emsOutputRelayConfigOutputRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsOutputRelayConfigEntry", - 2 - ] - }, - "emsOutputRelayConfigOutputRelayNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyClosedEMS", - "2": "normallyOpenEMS" - } - }, - "index": null, - "value": [ - "emsOutputRelayConfigEntry", - 3 - ] - }, - "emsOutletConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSOutletConfigEntry" - }, - "index": null, - "value": [ - "emsOutletConfig", - 1 - ] - }, - "emsOutletConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSOutletConfigEntry" - }, - "index": [ - "emsOutletConfigOutletIndex" - ], - "value": [ - "emsOutletConfigTable", - 1 - ] - }, - "EMSOutletConfigEntry": { - "tp": "SEQUENCE" - }, - "emsOutletConfigOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsOutletConfigEntry", - 1 - ] - }, - "emsOutletConfigOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsOutletConfigEntry", - 2 - ] - }, - "emsOutletConfigOutletNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyOnEMS", - "2": "normallyOffEMS" - } - }, - "index": null, - "value": [ - "emsOutletConfigEntry", - 3 - ] - }, - "emsSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSSensorConfigEntry" - }, - "index": null, - "value": [ - "emsSensorConfig", - 1 - ] - }, - "emsSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSSensorConfigEntry" - }, - "index": [ - "emsSensorConfigSensorIndex" - ], - "value": [ - "emsSensorConfigTable", - 1 - ] - }, - "EMSSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "emsSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSensorConfigEntry", - 1 - ] - }, - "emsSensorConfigSensorSystemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSensorConfigEntry", - 2 - ] - }, - "emsSensorConfigSensorUserName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSensorConfigEntry", - 3 - ] - }, - "emsSensorConfigSensorNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyClosedEMS", - "2": "normallyOpenEMS" - } - }, - "index": null, - "value": [ - "emsSensorConfigEntry", - 4 - ] - }, - "emsSensorConfigSensorAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSensorConfigEntry", - 5 - ] - }, - "emsStatusEMSName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsStatus", - 1 - ] - }, - "emsStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noComm", - "2": "comm", - "3": "commLost" - } - }, - "index": null, - "value": [ - "emsStatus", - 2 - ] - }, - "emsStatusProbeCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 3 - ] - }, - "emsStatusInputContactCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 4 - ] - }, - "emsStatusOutputRelayCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 5 - ] - }, - "emsStatusOutletCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 6 - ] - }, - "emsStatusSensorCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 7 - ] - }, - "emsStatusAlinkAruDeviceCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 8 - ] - }, - "emsStatusAlinkProbeDeviceCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 9 - ] - }, - "emsStatusAlarmDeviceCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 10 - ] - }, - "emsStatusSysTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "emsStatus", - 11 - ] - }, - "emsStatusCheckLogLight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lightOff", - "2": "lightOn" - } - }, - "index": null, - "value": [ - "emsStatus", - 12 - ] - }, - "emsStatusHardwareStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsStatus", - 13 - ] - }, - "emsProbeStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSProbeStatusEntry" - }, - "index": null, - "value": [ - "emsProbeStatus", - 1 - ] - }, - "emsProbeStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSProbeStatusEntry" - }, - "index": [ - "emsProbeStatusProbeIndex" - ], - "value": [ - "emsProbeStatusTable", - 1 - ] - }, - "EMSProbeStatusEntry": { - "tp": "SEQUENCE" - }, - "emsProbeStatusProbeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 1 - ] - }, - "emsProbeStatusProbeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 2 - ] - }, - "emsProbeStatusProbeTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 3 - ] - }, - "emsProbeStatusProbeHighTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 4 - ] - }, - "emsProbeStatusProbeLowTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 5 - ] - }, - "emsProbeStatusProbeHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 6 - ] - }, - "emsProbeStatusProbeHighHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 7 - ] - }, - "emsProbeStatusProbeLowHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 8 - ] - }, - "emsProbeStatusProbeSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 9 - ] - }, - "emsProbeStatusProbeCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commsNeverDiscovered", - "2": "commsEstablished", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 10 - ] - }, - "emsProbeStatusProbeAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 11 - ] - }, - "emsProbeStatusProbeMaxTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 12 - ] - }, - "emsProbeStatusProbeMinTempThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 13 - ] - }, - "emsProbeStatusProbeMaxHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 14 - ] - }, - "emsProbeStatusProbeMinHumidityThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsProbeStatusEntry", - 15 - ] - }, - "emsInputContactStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSInputContactStatusEntry" - }, - "index": null, - "value": [ - "emsInputContactStatus", - 1 - ] - }, - "emsInputContactStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSInputContactStatusEntry" - }, - "index": [ - "emsInputContactStatusInputContactIndex" - ], - "value": [ - "emsInputContactStatusTable", - 1 - ] - }, - "EMSInputContactStatusEntry": { - "tp": "SEQUENCE" - }, - "emsInputContactStatusInputContactIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsInputContactStatusEntry", - 1 - ] - }, - "emsInputContactStatusInputContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsInputContactStatusEntry", - 2 - ] - }, - "emsInputContactStatusInputContactState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "contactClosedEMS", - "2": "contactOpenEMS" - } - }, - "index": null, - "value": [ - "emsInputContactStatusEntry", - 3 - ] - }, - "emsInputContactStatusInputContactNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyClosedEMS", - "2": "normallyOpenEMS" - } - }, - "index": null, - "value": [ - "emsInputContactStatusEntry", - 4 - ] - }, - "emsOutputRelayStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSOutputRelayStatusEntry" - }, - "index": null, - "value": [ - "emsOutputRelayStatus", - 1 - ] - }, - "emsOutputRelayStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSOutputRelayStatusEntry" - }, - "index": [ - "emsOutputRelayStatusOutputRelayIndex" - ], - "value": [ - "emsOutputRelayStatusTable", - 1 - ] - }, - "EMSOutputRelayStatusEntry": { - "tp": "SEQUENCE" - }, - "emsOutputRelayStatusOutputRelayIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsOutputRelayStatusEntry", - 1 - ] - }, - "emsOutputRelayStatusOutputRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsOutputRelayStatusEntry", - 2 - ] - }, - "emsOutputRelayStatusOutputRelayState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "relayClosedEMS", - "2": "relayOpenEMS" - } - }, - "index": null, - "value": [ - "emsOutputRelayStatusEntry", - 3 - ] - }, - "emsOutputRelayStatusOutputRelayNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyClosedEMS", - "2": "normallyOpenEMS" - } - }, - "index": null, - "value": [ - "emsOutputRelayStatusEntry", - 4 - ] - }, - "emsOutletStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSOutletStatusEntry" - }, - "index": null, - "value": [ - "emsOutletStatus", - 1 - ] - }, - "emsOutletStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSOutletStatusEntry" - }, - "index": [ - "emsOutletStatusOutletIndex" - ], - "value": [ - "emsOutletStatusTable", - 1 - ] - }, - "EMSOutletStatusEntry": { - "tp": "SEQUENCE" - }, - "emsOutletStatusOutletIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsOutletStatusEntry", - 1 - ] - }, - "emsOutletStatusOutletName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsOutletStatusEntry", - 2 - ] - }, - "emsOutletStatusOutletState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "outletOnEMS", - "2": "outletOffEMS" - } - }, - "index": null, - "value": [ - "emsOutletStatusEntry", - 3 - ] - }, - "emsOutletStatusOutletNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyOnEMS", - "2": "normallyOffEMS" - } - }, - "index": null, - "value": [ - "emsOutletStatusEntry", - 4 - ] - }, - "emsAlarmDeviceStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSAlarmDeviceStatusEntry" - }, - "index": null, - "value": [ - "emsAlarmDeviceStatus", - 1 - ] - }, - "emsAlarmDeviceStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSAlarmDeviceStatusEntry" - }, - "index": [ - "emsAlarmDeviceStatusDeviceIndex" - ], - "value": [ - "emsAlarmDeviceStatusTable", - 1 - ] - }, - "EMSAlarmDeviceStatusEntry": { - "tp": "SEQUENCE" - }, - "emsAlarmDeviceStatusDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsAlarmDeviceStatusEntry", - 1 - ] - }, - "emsAlarmDeviceStatusDeviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsAlarmDeviceStatusEntry", - 2 - ] - }, - "emsAlarmDeviceStatusDeviceState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alarmDeviceOnEMS", - "2": "alarmDeviceOffEMS", - "3": "alarmDeviceNotInstalledEMS" - } - }, - "index": null, - "value": [ - "emsAlarmDeviceStatusEntry", - 3 - ] - }, - "emsSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EMSSensorStatusEntry" - }, - "index": null, - "value": [ - "emsSensorStatus", - 1 - ] - }, - "emsSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EMSSensorStatusEntry" - }, - "index": [ - "emsSensorStatusSensorIndex" - ], - "value": [ - "emsSensorStatusTable", - 1 - ] - }, - "EMSSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "emsSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSensorStatusEntry", - 1 - ] - }, - "emsSensorStatusSensorSystemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSensorStatusEntry", - 2 - ] - }, - "emsSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSensorStatusEntry", - 3 - ] - }, - "emsSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sensorFaultedEMS", - "2": "sensorOKEMS", - "3": "sensorNotInstalledEMS" - } - }, - "index": null, - "value": [ - "emsSensorStatusEntry", - 4 - ] - }, - "emsSensorStatusSensorNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normallyClosedEMS", - "2": "normallyOpenEMS" - } - }, - "index": null, - "value": [ - "emsSensorStatusEntry", - 5 - ] - }, - "emsSensorStatusSensorAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSensorStatusEntry", - 6 - ] - }, - "emsSmokeSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsSmokeSensorConfigEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorConfig", - 1 - ] - }, - "emsSmokeSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsSmokeSensorConfigEntry" - }, - "index": [ - "emsSmokeSensorConfigSensorIndex" - ], - "value": [ - "emsSmokeSensorConfigTable", - 1 - ] - }, - "EmsSmokeSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "emsSmokeSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSmokeSensorConfigEntry", - 1 - ] - }, - "emsSmokeSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSmokeSensorConfigEntry", - 2 - ] - }, - "emsSmokeSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSmokeSensorConfigEntry", - 3 - ] - }, - "emsSmokeSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsSmokeSensorConfigEntry", - 4 - ] - }, - "emsVibrationSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsVibrationSensorConfigEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorConfig", - 2 - ] - }, - "emsVibrationSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsVibrationSensorConfigEntry" - }, - "index": [ - "emsVibrationSensorConfigSensorIndex" - ], - "value": [ - "emsVibrationSensorConfigTable", - 1 - ] - }, - "EmsVibrationSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "emsVibrationSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsVibrationSensorConfigEntry", - 1 - ] - }, - "emsVibrationSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsVibrationSensorConfigEntry", - 2 - ] - }, - "emsVibrationSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsVibrationSensorConfigEntry", - 3 - ] - }, - "emsVibrationSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsVibrationSensorConfigEntry", - 4 - ] - }, - "emsFluidSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsFluidSensorConfigEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorConfig", - 3 - ] - }, - "emsFluidSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsFluidSensorConfigEntry" - }, - "index": [ - "emsFluidSensorConfigSensorIndex" - ], - "value": [ - "emsFluidSensorConfigTable", - 1 - ] - }, - "EmsFluidSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "emsFluidSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsFluidSensorConfigEntry", - 1 - ] - }, - "emsFluidSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsFluidSensorConfigEntry", - 2 - ] - }, - "emsFluidSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsFluidSensorConfigEntry", - 3 - ] - }, - "emsFluidSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsFluidSensorConfigEntry", - 4 - ] - }, - "emsDoorSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsDoorSensorConfigEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorConfig", - 4 - ] - }, - "emsDoorSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsDoorSensorConfigEntry" - }, - "index": [ - "emsDoorSensorConfigSensorIndex" - ], - "value": [ - "emsDoorSensorConfigTable", - 1 - ] - }, - "EmsDoorSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "emsDoorSensorConfigSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsDoorSensorConfigEntry", - 1 - ] - }, - "emsDoorSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsDoorSensorConfigEntry", - 2 - ] - }, - "emsDoorSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsDoorSensorConfigEntry", - 3 - ] - }, - "emsDoorSensorConfigSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsDoorSensorConfigEntry", - 4 - ] - }, - "emsSmokeSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 1 - ] - }, - "emsSmokeSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsSmokeSensorStatusEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 2 - ] - }, - "emsSmokeSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsSmokeSensorStatusEntry" - }, - "index": [ - "emsSmokeSensorStatusSensorIndex" - ], - "value": [ - "emsSmokeSensorStatusTable", - 1 - ] - }, - "EmsSmokeSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "emsSmokeSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsSmokeSensorStatusEntry", - 1 - ] - }, - "emsSmokeSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSmokeSensorStatusEntry", - 2 - ] - }, - "emsSmokeSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsSmokeSensorStatusEntry", - 3 - ] - }, - "emsSmokeSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "smokeDetected", - "2": "noSmoke", - "3": "unknown" - } - }, - "index": null, - "value": [ - "emsSmokeSensorStatusEntry", - 4 - ] - }, - "emsSmokeSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsSmokeSensorStatusEntry", - 5 - ] - }, - "emsSmokeSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "emsSmokeSensorStatusEntry", - 6 - ] - }, - "emsVibrationSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 3 - ] - }, - "emsVibrationSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsVibrationSensorStatusEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 4 - ] - }, - "emsVibrationSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsVibrationSensorStatusEntry" - }, - "index": [ - "emsVibrationSensorStatusSensorIndex" - ], - "value": [ - "emsVibrationSensorStatusTable", - 1 - ] - }, - "EmsVibrationSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "emsVibrationSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsVibrationSensorStatusEntry", - 1 - ] - }, - "emsVibrationSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsVibrationSensorStatusEntry", - 2 - ] - }, - "emsVibrationSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsVibrationSensorStatusEntry", - 3 - ] - }, - "emsVibrationSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "vibrationDetected", - "2": "noVibration", - "3": "unknown" - } - }, - "index": null, - "value": [ - "emsVibrationSensorStatusEntry", - 4 - ] - }, - "emsVibrationSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsVibrationSensorStatusEntry", - 5 - ] - }, - "emsVibrationSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "emsVibrationSensorStatusEntry", - 6 - ] - }, - "emsFluidSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 5 - ] - }, - "emsFluidSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsFluidSensorStatusEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 6 - ] - }, - "emsFluidSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsFluidSensorStatusEntry" - }, - "index": [ - "emsFluidSensorStatusSensorIndex" - ], - "value": [ - "emsFluidSensorStatusTable", - 1 - ] - }, - "EmsFluidSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "emsFluidSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsFluidSensorStatusEntry", - 1 - ] - }, - "emsFluidSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsFluidSensorStatusEntry", - 2 - ] - }, - "emsFluidSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsFluidSensorStatusEntry", - 3 - ] - }, - "emsFluidSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fluidDetected", - "2": "noFluid", - "3": "unknown" - } - }, - "index": null, - "value": [ - "emsFluidSensorStatusEntry", - 4 - ] - }, - "emsFluidSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsFluidSensorStatusEntry", - 5 - ] - }, - "emsFluidSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "emsFluidSensorStatusEntry", - 6 - ] - }, - "emsDoorSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 7 - ] - }, - "emsDoorSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EmsDoorSensorStatusEntry" - }, - "index": null, - "value": [ - "emsInputStateSensorStatus", - 8 - ] - }, - "emsDoorSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EmsDoorSensorStatusEntry" - }, - "index": [ - "emsDoorSensorStatusSensorIndex" - ], - "value": [ - "emsDoorSensorStatusTable", - 1 - ] - }, - "EmsDoorSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "emsDoorSensorStatusSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "emsDoorSensorStatusEntry", - 1 - ] - }, - "emsDoorSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsDoorSensorStatusEntry", - 2 - ] - }, - "emsDoorSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "emsDoorSensorStatusEntry", - 3 - ] - }, - "emsDoorSensorStatusSensorState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed", - "3": "unknown" - } - }, - "index": null, - "value": [ - "emsDoorSensorStatusEntry", - 4 - ] - }, - "emsDoorSensorStatusSensorSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "warning", - "3": "informational" - } - }, - "index": null, - "value": [ - "emsDoorSensorStatusEntry", - 5 - ] - }, - "emsDoorSensorCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commOK", - "2": "commLost" - } - }, - "index": null, - "value": [ - "emsDoorSensorStatusEntry", - 6 - ] - }, - "airFMIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdent", - 1 - ] - }, - "airFMIdentTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMIdent", - 2 - ] - }, - "airFMIdentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMIdentEntry" - }, - "index": null, - "value": [ - "airFMIdent", - 3 - ] - }, - "airFMIdentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMIdentEntry" - }, - "index": [ - "airFMIdentModuleIndex" - ], - "value": [ - "airFMIdentTable", - 1 - ] - }, - "AirFMIdentEntry": { - "tp": "SEQUENCE" - }, - "airFMIdentModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMIdentEntry", - 1 - ] - }, - "airFMIdentModuleModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdentEntry", - 2 - ] - }, - "airFMIdentModuleDateOfMfg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdentEntry", - 3 - ] - }, - "airFMIdentModuleSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdentEntry", - 4 - ] - }, - "airFMIdentModuleFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdentEntry", - 5 - ] - }, - "airFMIdentModuleHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdentEntry", - 6 - ] - }, - "airFMIdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdent", - 4 - ] - }, - "airFMIdentContact": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMIdent", - 5 - ] - }, - "airFMStatusSystemOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusOn", - "2": "statusOff" - } - }, - "index": null, - "value": [ - "airFMStatus", - 1 - ] - }, - "airFMStatusSystemAverageRetTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 2 - ] - }, - "airFMStatusSystemAverageRetTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 3 - ] - }, - "airFMStatusSystemAverageRetHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 4 - ] - }, - "airFMStatusSystemActionTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 5 - ] - }, - "airFMStatusSystemActionTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 6 - ] - }, - "airFMStatusSystemActionHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 7 - ] - }, - "airFMStatusSystemRemoteHighTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 8 - ] - }, - "airFMStatusSystemRemoteHighTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 9 - ] - }, - "airFMStatusSystemRemoteAvgTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 10 - ] - }, - "airFMStatusSystemRemoteAvgTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 11 - ] - }, - "airFMStatusSystemRemoteAvgHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 12 - ] - }, - "airFMStatusSystemRemoteLowTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 13 - ] - }, - "airFMStatusSystemRemoteLowTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 14 - ] - }, - "airFMStatusSystemCoolingEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabledYes", - "2": "enabledNo" - } - }, - "index": null, - "value": [ - "airFMStatus", - 15 - ] - }, - "airFMStatusSystemReheatingEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabledYes", - "2": "enabledNo" - } - }, - "index": null, - "value": [ - "airFMStatus", - 16 - ] - }, - "airFMStatusSystemHumidifyEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabledYes", - "2": "enabledNo" - } - }, - "index": null, - "value": [ - "airFMStatus", - 17 - ] - }, - "airFMStatusSystemDehumidifyEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabledYes", - "2": "enabledNo" - } - }, - "index": null, - "value": [ - "airFMStatus", - 18 - ] - }, - "airFMStatusModuleTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatus", - 19 - ] - }, - "airFMStatusModuleTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMStatusModuleEntry" - }, - "index": null, - "value": [ - "airFMStatus", - 20 - ] - }, - "airFMStatusModuleEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMStatusModuleEntry" - }, - "index": [ - "airFMStatusModuleIndex" - ], - "value": [ - "airFMStatusModuleTable", - 1 - ] - }, - "AirFMStatusModuleEntry": { - "tp": "SEQUENCE" - }, - "airFMStatusModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 1 - ] - }, - "airFMStatusModuleOutputCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 2 - ] - }, - "airFMStatusModuleSupplyTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 3 - ] - }, - "airFMStatusModuleSupplyTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 4 - ] - }, - "airFMStatusModuleSupplyHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 5 - ] - }, - "airFMStatusModuleReturnTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 6 - ] - }, - "airFMStatusModuleReturnTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 7 - ] - }, - "airFMStatusModuleReturnHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMStatusModuleEntry", - 8 - ] - }, - "airFMGroupSysStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusOnLine", - "2": "statusIdle", - "3": "statusLoadShare", - "4": "statusOffLine", - "5": "statusFailed", - "6": "statusDisabled", - "7": "statusUndefined" - } - }, - "index": null, - "value": [ - "airFMGroup", - 1 - ] - }, - "airFMGroupSysRuntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroup", - 2 - ] - }, - "airFMGroupSysRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "rolePrimary", - "2": "roleBackup" - } - }, - "index": null, - "value": [ - "airFMGroup", - 3 - ] - }, - "airFMGroupSysRolesTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupSysRoles", - 1 - ] - }, - "airFMGroupSysRolesTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMGroupSysRolesEntry" - }, - "index": null, - "value": [ - "airFMGroupSysRoles", - 2 - ] - }, - "airFMGroupSysRolesEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMGroupSysRolesEntry" - }, - "index": [ - "airFMGroupSysIndex" - ], - "value": [ - "airFMGroupSysRolesTable", - 1 - ] - }, - "AirFMGroupSysRolesEntry": { - "tp": "SEQUENCE" - }, - "airFMGroupSysIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 1 - ] - }, - "airFMGroupSysRoleStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "reserved1", - "2": "reserved2", - "3": "onLine", - "4": "idle", - "5": "loadShare", - "6": "failed", - "7": "offLine" - } - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 2 - ] - }, - "airFMGroupSysPresentRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "primary", - "2": "backup" - } - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 3 - ] - }, - "airFMGroupSysManualRoleSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "primary", - "2": "backup" - } - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 4 - ] - }, - "airFMGroupSysRunHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 5 - ] - }, - "airFMGroupSysComm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commLost", - "2": "commEstablished" - } - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 6 - ] - }, - "airFMGroupSysIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "airFMGroupSysRolesEntry", - 7 - ] - }, - "airFMGroupSysRoleAssignment": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "staticManual", - "2": "dynamicAutomatic" - } - }, - "index": null, - "value": [ - "airFMGroupSysRoles", - 3 - ] - }, - "airFMGroupAutoRoleNumPrimary": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "one", - "2": "two", - "3": "three", - "4": "four" - } - }, - "index": null, - "value": [ - "airFMGroupSysRoles", - 4 - ] - }, - "airFMGroupCfgName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMGroupCfg", - 1 - ] - }, - "airFMGroupCfgNumSystems": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "one", - "2": "two", - "3": "three", - "4": "four" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 2 - ] - }, - "airFMGroupCfgIdleBlower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "minimumSpeed", - "3": "normalSpeed" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 3 - ] - }, - "airFMGroupCfgShutdownSmoke": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 4 - ] - }, - "airFMGroupCfgShutdownFire": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 5 - ] - }, - "airFMGroupCfgFailoverCommLoss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 6 - ] - }, - "airFMGroupCfgDmdFightStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 7 - ] - }, - "airFMGroupCfgDmdFightSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 8 - ] - }, - "airFMGroupCfgSetpointShareStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 9 - ] - }, - "airFMGroupCfgSetpointShareSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 10 - ] - }, - "airFMGroupCfgResetFieldServiceDefaults": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "reset" - } - }, - "index": null, - "value": [ - "airFMGroupCfg", - 11 - ] - }, - "airFMGroupLoadShareCoolRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 1 - ] - }, - "airFMGroupLoadShareCoolThreshC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 2 - ] - }, - "airFMGroupLoadShareCoolThreshF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 3 - ] - }, - "airFMGroupLoadShareReheatRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 4 - ] - }, - "airFMGroupLoadShareReheatThreshC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 5 - ] - }, - "airFMGroupLoadShareReheatThreshF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 6 - ] - }, - "airFMGroupLoadShareHumRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 7 - ] - }, - "airFMGroupLoadShareHumThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 8 - ] - }, - "airFMGroupLoadShareDehumRequests": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 9 - ] - }, - "airFMGroupLoadShareDehumThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMGroupLoadShare", - 10 - ] - }, - "airFMGroupFailoverSysAnyMinorAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 1 - ] - }, - "airFMGroupFailoverSysAnyMajorAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 2 - ] - }, - "airFMGroupFailoverSysHighEnvTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 3 - ] - }, - "airFMGroupFailoverSysLowEnvTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 4 - ] - }, - "airFMGroupFailoverSysHighEnvHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 5 - ] - }, - "airFMGroupFailoverSysLowEnvHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 6 - ] - }, - "airFMGroupFailoverSysFireAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 7 - ] - }, - "airFMGroupFailoverSysSmokeAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 8 - ] - }, - "airFMGroupFailoverSysCommLost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 9 - ] - }, - "airFMGroupFailoverSysSupplySensorFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 10 - ] - }, - "airFMGroupFailoverSysReturnSensorFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 11 - ] - }, - "airFMGroupFailoverSysPrimarySensorFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 12 - ] - }, - "airFMGroupFailoverSysSecondarySensorFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 13 - ] - }, - "airFMGroupFailoverSysNoSensorsAvailable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverSys", - 14 - ] - }, - "airFMGroupFailoverModMaintRequired": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 1 - ] - }, - "airFMGroupFailoverModCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 2 - ] - }, - "airFMGroupFailoverModHumFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 3 - ] - }, - "airFMGroupFailoverModBlwrCntrl1Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 4 - ] - }, - "airFMGroupFailoverModBlwrCntrl2Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 5 - ] - }, - "airFMGroupFailoverModHighFilterDP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 6 - ] - }, - "airFMGroupFailoverModHighSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 7 - ] - }, - "airFMGroupFailoverModLowSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 8 - ] - }, - "airFMGroupFailoverModLossOrLowAirFlow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 9 - ] - }, - "airFMGroupFailoverModHumReplaceCylinder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 10 - ] - }, - "airFMGroupFailoverModAirBlockInterlockOpen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 11 - ] - }, - "airFMGroupFailoverModWaterDetected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 12 - ] - }, - "airFMGroupFailoverModCondensatePumpFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disable", - "3": "enable" - } - }, - "index": null, - "value": [ - "airFMGroupFailoverMod", - 13 - ] - }, - "airFMSysNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "one", - "3": "two", - "4": "three", - "5": "four" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 1 - ] - }, - "airFMSysPresentStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "reserved1", - "3": "reserved2", - "4": "onLine", - "5": "idle", - "6": "loadShare", - "7": "failed", - "8": "offLine" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 2 - ] - }, - "airFMSysPresentRole": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "primary", - "3": "backup" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 3 - ] - }, - "airFMSysRunHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 4 - ] - }, - "airFMSysCoilFluidTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 5 - ] - }, - "airFMSysCoilFluidTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 6 - ] - }, - "airFMSysHotWaterTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 7 - ] - }, - "airFMSysHotWaterTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 8 - ] - }, - "airFMSysAvgReturnTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 9 - ] - }, - "airFMSysAvgReturnTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 10 - ] - }, - "airFMSysAvgReturnHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 11 - ] - }, - "airFMSysAvgRemoteTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 12 - ] - }, - "airFMSysAvgRemoteTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 13 - ] - }, - "airFMSysAvgRemoteHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 14 - ] - }, - "airFMSysMaxRemoteTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 15 - ] - }, - "airFMSysMaxRemoteTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 16 - ] - }, - "airFMSysMinRemoteTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 17 - ] - }, - "airFMSysMinRemoteTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 18 - ] - }, - "airFMSysTempCtrlMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "avgReturn", - "3": "avgRemote", - "4": "maxRemote" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 19 - ] - }, - "airFMSysActualTempCtrlMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "avgReturn", - "3": "avgRemote", - "4": "maxRemote" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 20 - ] - }, - "airFMSysHumCtrlMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "avgReturnRH", - "3": "avgReturnDewPt", - "4": "avgRemoteRH", - "5": "avgRemoteDewPt" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 21 - ] - }, - "airFMSysActualHumCtrlMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "avgReturnRH", - "3": "avgReturnDewPt", - "4": "avgRemoteRH", - "5": "avgRemoteDewPt" - } - }, - "index": null, - "value": [ - "airFMSysStatus", - 22 - ] - }, - "airFMSysCtrlTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 23 - ] - }, - "airFMSysCtrlTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 24 - ] - }, - "airFMSysCtrlHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysStatus", - 25 - ] - }, - "airFMSysDXCoolingDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 1 - ] - }, - "airFMSysDXDehumDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 2 - ] - }, - "airFMSysDXActualCoolDehum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 3 - ] - }, - "airFMSysCoilFluidCoolDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 4 - ] - }, - "airFMSysCoilFluidDehumDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 5 - ] - }, - "airFMSysCoilFluidActualCoolDehum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 6 - ] - }, - "airFMSysElectricReheatDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 7 - ] - }, - "airFMSysActualElectricReheat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 8 - ] - }, - "airFMSysSteamHotGasReheatDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "off", - "3": "on" - } - }, - "index": null, - "value": [ - "airFMSysDemands", - 9 - ] - }, - "airFMSysActualSteamHotGasReheat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "off", - "3": "on" - } - }, - "index": null, - "value": [ - "airFMSysDemands", - 10 - ] - }, - "airFMSysSteamElectrodeHumDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 11 - ] - }, - "airFMSysActualSteamElectrodeHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDemands", - 12 - ] - }, - "airFMSysSteamHumDmd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "off", - "3": "on" - } - }, - "index": null, - "value": [ - "airFMSysDemands", - 13 - ] - }, - "airFMSysActualSteamHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "off", - "3": "on" - } - }, - "index": null, - "value": [ - "airFMSysDemands", - 14 - ] - }, - "airFMSysNumModules": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "one", - "3": "two", - "4": "three" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 1 - ] - }, - "airFMSysNumPCIOMs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "one", - "3": "two", - "4": "three", - "5": "four" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 2 - ] - }, - "airFMSysMainsVlt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMSysSetup", - 3 - ] - }, - "airFMSysUPSVlt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMSysSetup", - 4 - ] - }, - "airFMSysCoilCfg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "dx", - "3": "econ", - "4": "multicool", - "5": "chilledWater" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 5 - ] - }, - "airFMSysRefrigType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "r22", - "3": "r407C" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 6 - ] - }, - "airFMSysHeatRejection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "airCooled", - "3": "waterCooled", - "4": "glycolCooled" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 7 - ] - }, - "airFMSysDischAirPtrn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "upFlow", - "3": "downFlow", - "4": "horizFlow" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 8 - ] - }, - "airFMSysAirFltr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "standard", - "3": "highEfficiency" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 9 - ] - }, - "airFMSysFlowSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "dxEcon", - "4": "multiCoolChillWater" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 10 - ] - }, - "airFMSysCoilFluidVlvAct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "springAnalog", - "4": "floatingControl" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 11 - ] - }, - "airFMSysCoilFluidVlvType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "twoWay", - "3": "threeWay" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 12 - ] - }, - "airFMSysCndsrFluidVlvAct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "floatingControl" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 13 - ] - }, - "airFMSysCndsrFluidVlvType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "twoWay", - "3": "threeWay" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 14 - ] - }, - "airFMSysHotWaterVlvAct": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "springAnalog", - "4": "floatingControl" - } - }, - "index": null, - "value": [ - "airFMSysSetup", - 15 - ] - }, - "airFMSysNumRemoteSensors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysSetup", - 16 - ] - }, - "airFMSysPrimaryControlSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "return", - "3": "remote" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 1 - ] - }, - "airFMSysRemoteSensorData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "average", - "3": "maximum" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 2 - ] - }, - "airFMSysFastStartup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 3 - ] - }, - "airFMSysStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysConfig", - 4 - ] - }, - "airFMSysModeDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysConfig", - 5 - ] - }, - "airFMSysCommLossShutdownDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysConfig", - 6 - ] - }, - "airFMSysResetSysFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 7 - ] - }, - "airFMSysResetUserDflts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 8 - ] - }, - "airFMSysResetFldSrvcDflts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 9 - ] - }, - "airFMSysResetRunHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMSysConfig", - 10 - ] - }, - "airFMSysCompMinOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 1 - ] - }, - "airFMSysCompMinOffTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 2 - ] - }, - "airFMSysCompRotPeriod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 3 - ] - }, - "airFMSysEconIsolVlvOpenDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 4 - ] - }, - "airFMSysEconIsolVlvCloseDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 5 - ] - }, - "airFMSysCndsrFluidVlvCloseDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 6 - ] - }, - "airFMSysInterstageDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 7 - ] - }, - "airFMSysCoolState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysCooling", - 8 - ] - }, - "airFMSysCoolEssFunction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "yes", - "3": "no" - } - }, - "index": null, - "value": [ - "airFMSysCooling", - 9 - ] - }, - "airFMSysCoolSetpointC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 10 - ] - }, - "airFMSysCoolSetpointF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 11 - ] - }, - "airFMSysCoolDeadbandC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 12 - ] - }, - "airFMSysCoolDeadbandF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 13 - ] - }, - "airFMSysCoolEconIsolFunction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysCooling", - 14 - ] - }, - "airFMSysSuctPresCompensation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysCooling", - 15 - ] - }, - "airFMSysCoilFluidActivThreshC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 16 - ] - }, - "airFMSysCoilFluidActivThreshF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 17 - ] - }, - "airFMSysCoilFluidActivDeadbandC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 18 - ] - }, - "airFMSysCoilFluidActivDeadbandF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 19 - ] - }, - "airFMSysCoolPIDMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "p", - "3": "pi", - "4": "pid" - } - }, - "index": null, - "value": [ - "airFMSysCooling", - 20 - ] - }, - "airFMSysCoolPIDGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 21 - ] - }, - "airFMSysCoolPIDResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 22 - ] - }, - "airFMSysCoolPIDDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysCooling", - 23 - ] - }, - "airFMSysHumState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysHumidify", - 1 - ] - }, - "airFMSysHumEssFunction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "yes", - "3": "no" - } - }, - "index": null, - "value": [ - "airFMSysHumidify", - 2 - ] - }, - "airFMSysHumSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysHumidify", - 3 - ] - }, - "airFMSysHumDeadband": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysHumidify", - 4 - ] - }, - "airFMSysHumCtrlSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "relativeHum", - "3": "dewPoint" - } - }, - "index": null, - "value": [ - "airFMSysHumidify", - 5 - ] - }, - "airFMSysActualHumCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "relativeHum", - "3": "dewPoint" - } - }, - "index": null, - "value": [ - "airFMSysHumidify", - 6 - ] - }, - "airFMSysHumSensBand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysHumidify", - 7 - ] - }, - "airFMSysDehumState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 1 - ] - }, - "airFMSysDehumEssFunction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "yes", - "3": "no" - } - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 2 - ] - }, - "airFMSysDehumSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 3 - ] - }, - "airFMSysDehumDeadband": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 4 - ] - }, - "airFMSysDehumCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "half", - "3": "full" - } - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 5 - ] - }, - "airFMSysDehumPIDMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "p", - "3": "pi", - "4": "pid" - } - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 6 - ] - }, - "airFMSysDehumPIDGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 7 - ] - }, - "airFMSysDehumPIDResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 8 - ] - }, - "airFMSysDehumPIDDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysDehumidify", - 9 - ] - }, - "airFMSysReheatState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysReheat", - 1 - ] - }, - "airFMSysReheatEssFunction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "yes", - "3": "no" - } - }, - "index": null, - "value": [ - "airFMSysReheat", - 2 - ] - }, - "airFMSysReheatSetpointC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 3 - ] - }, - "airFMSysReheatSetpointF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 4 - ] - }, - "airFMSysReheatDeadbandC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 5 - ] - }, - "airFMSysReheatDeadbandF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 6 - ] - }, - "airFMSysReheatPIDMethod": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "p", - "3": "pi", - "4": "pid" - } - }, - "index": null, - "value": [ - "airFMSysReheat", - 7 - ] - }, - "airFMSysReheatPIDGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 8 - ] - }, - "airFMSysReheatPIDResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 9 - ] - }, - "airFMSysReheatPIDDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysReheat", - 10 - ] - }, - "airFMSysHighSplyTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 1 - ] - }, - "airFMSysHighSplyTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 2 - ] - }, - "airFMSysLowSplyTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 3 - ] - }, - "airFMSysLowSplyTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 4 - ] - }, - "airFMSysHighCoilFluidTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 5 - ] - }, - "airFMSysHighCoilFluidTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 6 - ] - }, - "airFMSysLowCoilFluidTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 7 - ] - }, - "airFMSysLowCoilFluidTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 8 - ] - }, - "airFMSysHighCtrlTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 9 - ] - }, - "airFMSysHighCtrlTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 10 - ] - }, - "airFMSysLowCtrlTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 11 - ] - }, - "airFMSysLowCtrlTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 12 - ] - }, - "airFMSysHighCtrlHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 13 - ] - }, - "airFMSysLowCtrlHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 14 - ] - }, - "airFMSysTempAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 15 - ] - }, - "airFMSysHumAlarmDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysThresholds", - 16 - ] - }, - "airFMSysInputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysInputs", - 1 - ] - }, - "airFMSysInputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysInputEntry" - }, - "index": null, - "value": [ - "airFMSysInputs", - 2 - ] - }, - "airFMSysInputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysInputEntry" - }, - "index": [ - "airFMSysInputIndex" - ], - "value": [ - "airFMSysInputTable", - 1 - ] - }, - "AirFMSysInputEntry": { - "tp": "SEQUENCE" - }, - "airFMSysInputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysInputEntry", - 1 - ] - }, - "airFMSysInputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMSysInputEntry", - 2 - ] - }, - "airFMSysInputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airFMSysInputEntry", - 3 - ] - }, - "airFMSysInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airFMSysInputEntry", - 4 - ] - }, - "airFMSysInputDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysInputEntry", - 5 - ] - }, - "airFMSysInputAlarmAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusOnly", - "2": "minor", - "3": "major", - "4": "remoteRunStop", - "5": "nonessStop", - "6": "immShutdown" - } - }, - "index": null, - "value": [ - "airFMSysInputEntry", - 6 - ] - }, - "airFMSysOutputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysOutputs", - 1 - ] - }, - "airFMSysOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysOutputEntry" - }, - "index": null, - "value": [ - "airFMSysOutputs", - 2 - ] - }, - "airFMSysOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysOutputEntry" - }, - "index": [ - "airFMSysOutputIndex" - ], - "value": [ - "airFMSysOutputTable", - 1 - ] - }, - "AirFMSysOutputEntry": { - "tp": "SEQUENCE" - }, - "airFMSysOutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysOutputEntry", - 1 - ] - }, - "airFMSysOutputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airFMSysOutputEntry", - 2 - ] - }, - "airFMSysOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airFMSysOutputEntry", - 3 - ] - }, - "airFMSysAlarmMapSysTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapSys", - 1 - ] - }, - "airFMSysAlarmMapSysTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysAlarmMapSysEntry" - }, - "index": null, - "value": [ - "airFMSysAlarmMapSys", - 2 - ] - }, - "airFMSysAlarmMapSysEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysAlarmMapSysEntry" - }, - "index": [ - "airFMSysAlarmMapSysOutputIndex" - ], - "value": [ - "airFMSysAlarmMapSysTable", - 1 - ] - }, - "AirFMSysAlarmMapSysEntry": { - "tp": "SEQUENCE" - }, - "airFMSysAlarmMapSysOutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 1 - ] - }, - "airFMSysAlarmMapSysAnyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 2 - ] - }, - "airFMSysAlarmMapSystemOn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 3 - ] - }, - "airFMSysAlarmMapSystemOffline": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 4 - ] - }, - "airFMSysAlarmMapSysHighEnvTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 5 - ] - }, - "airFMSysAlarmMapSysLowEnvTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 6 - ] - }, - "airFMSysAlarmMapSysHighEnvHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 7 - ] - }, - "airFMSysAlarmMapSysLowEnvHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 8 - ] - }, - "airFMSysAlarmMapSysFireDet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 9 - ] - }, - "airFMSysAlarmMapSysSmokeDet": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 10 - ] - }, - "airFMSysAlarmMapSysEconIsol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 11 - ] - }, - "airFMSysAlarmMapSysSupplySensFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 12 - ] - }, - "airFMSysAlarmMapSysReturnSensFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 13 - ] - }, - "airFMSysAlarmMapSysRemSensRemoved": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 14 - ] - }, - "airFMSysAlarmMapSysPrimSensFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 15 - ] - }, - "airFMSysAlarmMapSysSecSensFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 16 - ] - }, - "airFMSysAlarmMapSysSecSensActive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapSysEntry", - 17 - ] - }, - "airFMSysAlarmMapMainModTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainMod", - 1 - ] - }, - "airFMSysAlarmMapMainModTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysAlarmMapMainModEntry" - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainMod", - 2 - ] - }, - "airFMSysAlarmMapMainModEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysAlarmMapMainModEntry" - }, - "index": [ - "airFMSysAlarmMapMainModOutputIndex" - ], - "value": [ - "airFMSysAlarmMapMainModTable", - 1 - ] - }, - "AirFMSysAlarmMapMainModEntry": { - "tp": "SEQUENCE" - }, - "airFMSysAlarmMapMainModOutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 1 - ] - }, - "airFMSysAlarmMapMainModAnyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 2 - ] - }, - "airFMSysAlarmMapMainModMaintReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 3 - ] - }, - "airFMSysAlarmMapMainModCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 4 - ] - }, - "airFMSysAlarmMapMainModHighSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 5 - ] - }, - "airFMSysAlarmMapMainModLowSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 6 - ] - }, - "airFMSysAlarmMapMainModHumFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 7 - ] - }, - "airFMSysAlarmMapMainModHumReplCyl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 8 - ] - }, - "airFMSysAlarmMapMainModCondPumpFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 9 - ] - }, - "airFMSysAlarmMapMainModBlwrCntl1Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 10 - ] - }, - "airFMSysAlarmMapMainModBlwrCntl2Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 11 - ] - }, - "airFMSysAlarmMapMainModHighFltrDP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 12 - ] - }, - "airFMSysAlarmMapMainModLowAirFlow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 13 - ] - }, - "airFMSysAlarmMapMainModAirBlckIntOpen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 14 - ] - }, - "airFMSysAlarmMapMainModWaterDetected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapMainModEntry", - 15 - ] - }, - "airFMSysAlarmMapExpMod1TableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1", - 1 - ] - }, - "airFMSysAlarmMapExpMod1Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysAlarmMapExpMod1Entry" - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1", - 2 - ] - }, - "airFMSysAlarmMapExpMod1Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysAlarmMapExpMod1Entry" - }, - "index": [ - "airFMSysAlarmMapExpMod1OutputIndex" - ], - "value": [ - "airFMSysAlarmMapExpMod1Table", - 1 - ] - }, - "AirFMSysAlarmMapExpMod1Entry": { - "tp": "SEQUENCE" - }, - "airFMSysAlarmMapExpMod1OutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 1 - ] - }, - "airFMSysAlarmMapExpMod1AnyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 2 - ] - }, - "airFMSysAlarmMapExpMod1MaintReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 3 - ] - }, - "airFMSysAlarmMapExpMod1CoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 4 - ] - }, - "airFMSysAlarmMapExpMod1HighSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 5 - ] - }, - "airFMSysAlarmMapExpMod1LowSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 6 - ] - }, - "airFMSysAlarmMapExpMod1HumFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 7 - ] - }, - "airFMSysAlarmMapExpMod1HumReplCyl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 8 - ] - }, - "airFMSysAlarmMapExpMod1CondPumpFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 9 - ] - }, - "airFMSysAlarmMapExpMod1BlwrCntl1Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 10 - ] - }, - "airFMSysAlarmMapExpMod1BlwrCntl2Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 11 - ] - }, - "airFMSysAlarmMapExpMod1HighFltrDP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 12 - ] - }, - "airFMSysAlarmMapExpMod1LowAirFlow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 13 - ] - }, - "airFMSysAlarmMapExpMod1AirBlckIntOpen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 14 - ] - }, - "airFMSysAlarmMapExpMod1WaterDetected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod1Entry", - 15 - ] - }, - "airFMSysAlarmMapExpMod2TableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2", - 1 - ] - }, - "airFMSysAlarmMapExpMod2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysAlarmMapExpMod2Entry" - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2", - 2 - ] - }, - "airFMSysAlarmMapExpMod2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysAlarmMapExpMod2Entry" - }, - "index": [ - "airFMSysAlarmMapExpMod2OutputIndex" - ], - "value": [ - "airFMSysAlarmMapExpMod2Table", - 1 - ] - }, - "AirFMSysAlarmMapExpMod2Entry": { - "tp": "SEQUENCE" - }, - "airFMSysAlarmMapExpMod2OutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 1 - ] - }, - "airFMSysAlarmMapExpMod2AnyAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 2 - ] - }, - "airFMSysAlarmMapExpMod2MaintReq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 3 - ] - }, - "airFMSysAlarmMapExpMod2CoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 4 - ] - }, - "airFMSysAlarmMapExpMod2HighSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 5 - ] - }, - "airFMSysAlarmMapExpMod2LowSupplyTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 6 - ] - }, - "airFMSysAlarmMapExpMod2HumFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 7 - ] - }, - "airFMSysAlarmMapExpMod2HumReplCyl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 8 - ] - }, - "airFMSysAlarmMapExpMod2CondPumpFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 9 - ] - }, - "airFMSysAlarmMapExpMod2BlwrCntl1Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 10 - ] - }, - "airFMSysAlarmMapExpMod2BlwrCntl2Fail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 11 - ] - }, - "airFMSysAlarmMapExpMod2HighFltrDP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 12 - ] - }, - "airFMSysAlarmMapExpMod2LowAirFlow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 13 - ] - }, - "airFMSysAlarmMapExpMod2AirBlckIntOpen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 14 - ] - }, - "airFMSysAlarmMapExpMod2WaterDetected": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapExpMod2Entry", - 15 - ] - }, - "airFMSysAlarmMapInputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapInput", - 1 - ] - }, - "airFMSysAlarmMapInputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysAlarmMapInputEntry" - }, - "index": null, - "value": [ - "airFMSysAlarmMapInput", - 2 - ] - }, - "airFMSysAlarmMapInputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysAlarmMapInputEntry" - }, - "index": [ - "airFMSysAlarmMapInputOutputIndex" - ], - "value": [ - "airFMSysAlarmMapInputTable", - 1 - ] - }, - "AirFMSysAlarmMapInputEntry": { - "tp": "SEQUENCE" - }, - "airFMSysAlarmMapInputOutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 1 - ] - }, - "airFMSysAlarmMapInput1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 2 - ] - }, - "airFMSysAlarmMapInput2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 3 - ] - }, - "airFMSysAlarmMapInput3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 4 - ] - }, - "airFMSysAlarmMapInput4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 5 - ] - }, - "airFMSysAlarmMapInput5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 6 - ] - }, - "airFMSysAlarmMapInput6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 7 - ] - }, - "airFMSysAlarmMapInput7": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 8 - ] - }, - "airFMSysAlarmMapInput8": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 9 - ] - }, - "airFMSysAlarmMapInput9": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 10 - ] - }, - "airFMSysAlarmMapInput10": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 11 - ] - }, - "airFMSysAlarmMapInput11": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 12 - ] - }, - "airFMSysAlarmMapInput12": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 13 - ] - }, - "airFMSysAlarmMapInput13": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 14 - ] - }, - "airFMSysAlarmMapInput14": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 15 - ] - }, - "airFMSysAlarmMapInput15": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 16 - ] - }, - "airFMSysAlarmMapInput16": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapInputEntry", - 17 - ] - }, - "airFMSysAlarmMapOutputTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutput", - 1 - ] - }, - "airFMSysAlarmMapOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMSysAlarmMapOutputEntry" - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutput", - 2 - ] - }, - "airFMSysAlarmMapOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMSysAlarmMapOutputEntry" - }, - "index": [ - "airFMSysAlarmMapOutputIndex" - ], - "value": [ - "airFMSysAlarmMapOutputTable", - 1 - ] - }, - "AirFMSysAlarmMapOutputEntry": { - "tp": "SEQUENCE" - }, - "airFMSysAlarmMapOutputIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 1 - ] - }, - "airFMSysAlarmMapOutput1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 2 - ] - }, - "airFMSysAlarmMapOutput2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 3 - ] - }, - "airFMSysAlarmMapOutput3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 4 - ] - }, - "airFMSysAlarmMapOutput4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 5 - ] - }, - "airFMSysAlarmMapOutput5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 6 - ] - }, - "airFMSysAlarmMapOutput6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 7 - ] - }, - "airFMSysAlarmMapOutput7": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 8 - ] - }, - "airFMSysAlarmMapOutput8": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 9 - ] - }, - "airFMSysAlarmMapOutput9": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 10 - ] - }, - "airFMSysAlarmMapOutput10": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 11 - ] - }, - "airFMSysAlarmMapOutput11": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 12 - ] - }, - "airFMSysAlarmMapOutput12": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 13 - ] - }, - "airFMSysAlarmMapOutput13": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 14 - ] - }, - "airFMSysAlarmMapOutput14": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 15 - ] - }, - "airFMSysAlarmMapOutput15": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 16 - ] - }, - "airFMSysAlarmMapOutput16": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "disabled", - "3": "enabled" - } - }, - "index": null, - "value": [ - "airFMSysAlarmMapOutputEntry", - 17 - ] - }, - "airFMModIdentTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModIdent", - 1 - ] - }, - "airFMModIdentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModIdentEntry" - }, - "index": null, - "value": [ - "airFMModIdent", - 2 - ] - }, - "airFMModIdentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModIdentEntry" - }, - "index": [ - "airFMModIdentModuleIndex" - ], - "value": [ - "airFMModIdentTable", - 1 - ] - }, - "AirFMModIdentEntry": { - "tp": "SEQUENCE" - }, - "airFMModIdentModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModIdentEntry", - 1 - ] - }, - "airFMModModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMModIdentEntry", - 2 - ] - }, - "airFMModSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMModIdentEntry", - 3 - ] - }, - "airFMModManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMModIdentEntry", - 4 - ] - }, - "airFMModFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMModIdentEntry", - 5 - ] - }, - "airFMModHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMModIdentEntry", - 6 - ] - }, - "airFMModStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatus", - 1 - ] - }, - "airFMModStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModStatusEntry" - }, - "index": null, - "value": [ - "airFMModStatus", - 2 - ] - }, - "airFMModStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModStatusEntry" - }, - "index": [ - "airFMModStatusModuleIndex" - ], - "value": [ - "airFMModStatusTable", - 1 - ] - }, - "AirFMModStatusEntry": { - "tp": "SEQUENCE" - }, - "airFMModStatusModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 1 - ] - }, - "airFMModSupplyTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 2 - ] - }, - "airFMModSupplyTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 3 - ] - }, - "airFMModSupplyHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 4 - ] - }, - "airFMModReturnTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 5 - ] - }, - "airFMModReturnTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 6 - ] - }, - "airFMModReturnHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 7 - ] - }, - "airFMModFilterDiffPresPa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 8 - ] - }, - "airFMModFilterDiffPresInWC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 9 - ] - }, - "airFMModCoilDiffPresPa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 10 - ] - }, - "airFMModCoilDiffPresInWC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModStatusEntry", - 11 - ] - }, - "airFMModPropTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModProperties", - 1 - ] - }, - "airFMModPropTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModPropEntry" - }, - "index": null, - "value": [ - "airFMModProperties", - 2 - ] - }, - "airFMModPropEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModPropEntry" - }, - "index": [ - "airFMModPropModuleIndex" - ], - "value": [ - "airFMModPropTable", - 1 - ] - }, - "AirFMModPropEntry": { - "tp": "SEQUENCE" - }, - "airFMModPropModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModPropEntry", - 1 - ] - }, - "airFMModOutputCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "kw45", - "3": "kw35", - "4": "kw40", - "5": "kw50", - "6": "kw80" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 2 - ] - }, - "airFMModCapacityCtrl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "tandem", - "3": "hotGasBypass" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 3 - ] - }, - "airFMModHeaterType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "electricSCR", - "4": "steam", - "5": "hotWaterOnOff", - "6": "hotGasReheat", - "7": "hotGasAndElectric", - "8": "hotWaterProp" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 4 - ] - }, - "airFMModElectricHeaterType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "kw10", - "3": "kw15" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 5 - ] - }, - "airFMModHumidifierType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "steamElectrode", - "4": "liveSteam" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 6 - ] - }, - "airFMModBlwrFreqSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModPropEntry", - 7 - ] - }, - "airFMModNomCoilDiffPresPa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModPropEntry", - 8 - ] - }, - "airFMModNomCoilDiffPresInWC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModPropEntry", - 9 - ] - }, - "airFMModCondPump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "notPresent", - "3": "present" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 10 - ] - }, - "airFMModFireDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "notPresent", - "3": "present" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 11 - ] - }, - "airFMModSmokeDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "notPresent", - "3": "present" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 12 - ] - }, - "airFMModWaterDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "notPresent", - "3": "present" - } - }, - "index": null, - "value": [ - "airFMModPropEntry", - 13 - ] - }, - "airFMModCoolTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCooling", - 1 - ] - }, - "airFMModCoolTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModCoolEntry" - }, - "index": null, - "value": [ - "airFMModCooling", - 2 - ] - }, - "airFMModCoolEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModCoolEntry" - }, - "index": [ - "airFMModCoolModuleIndex" - ], - "value": [ - "airFMModCoolTable", - 1 - ] - }, - "AirFMModCoolEntry": { - "tp": "SEQUENCE" - }, - "airFMModCoolModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 1 - ] - }, - "airFMModComp1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "on", - "3": "off" - } - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 2 - ] - }, - "airFMModComp2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "on", - "3": "off" - } - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 3 - ] - }, - "airFMModSuctPresKPa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 4 - ] - }, - "airFMModSuctPresPSI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 5 - ] - }, - "airFMModDischPresKPa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 6 - ] - }, - "airFMModDischPresPSI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 7 - ] - }, - "airFMModCondFluidVlvPos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 8 - ] - }, - "airFMModCoilFluidVlvPos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModCoolEntry", - 9 - ] - }, - "airFMModHumTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModHumidity", - 1 - ] - }, - "airFMModHumTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModHumEntry" - }, - "index": null, - "value": [ - "airFMModHumidity", - 2 - ] - }, - "airFMModHumEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModHumEntry" - }, - "index": [ - "airFMModHumModuleIndex" - ], - "value": [ - "airFMModHumTable", - 1 - ] - }, - "AirFMModHumEntry": { - "tp": "SEQUENCE" - }, - "airFMModHumModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModHumEntry", - 1 - ] - }, - "airFMModHumidifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "none", - "3": "steamElectrode", - "4": "liveSteam" - } - }, - "index": null, - "value": [ - "airFMModHumEntry", - 2 - ] - }, - "airFMModElectrodeCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModHumEntry", - 3 - ] - }, - "airFMModHumActualOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModHumEntry", - 4 - ] - }, - "airFMModWaterConductivity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModHumEntry", - 5 - ] - }, - "airFMModHotWaterVlvPos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModHumEntry", - 6 - ] - }, - "airFMModStmElectHumMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "off", - "3": "auto", - "4": "drain" - } - }, - "index": null, - "value": [ - "airFMModHumEntry", - 7 - ] - }, - "airFMModBlwr1TableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlower1", - 1 - ] - }, - "airFMModBlwr1Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModBlwr1Entry" - }, - "index": null, - "value": [ - "airFMModBlower1", - 2 - ] - }, - "airFMModBlwr1Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModBlwr1Entry" - }, - "index": [ - "airFMModBlwr1ModuleIndex" - ], - "value": [ - "airFMModBlwr1Table", - 1 - ] - }, - "AirFMModBlwr1Entry": { - "tp": "SEQUENCE" - }, - "airFMModBlwr1ModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 1 - ] - }, - "airFMModBlwr1CtrlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "fujiVFD", - "3": "ecController", - "4": "danfossVFD" - } - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 2 - ] - }, - "airFMModBlwr1CmdFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 3 - ] - }, - "airFMModBlwr1ActFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 4 - ] - }, - "airFMModBlwr1Poles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 5 - ] - }, - "airFMModBlwr1RatedHorsePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 6 - ] - }, - "airFMModBlwr1RatedCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 7 - ] - }, - "airFMModBlwr1ActTorq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 8 - ] - }, - "airFMModBlwr1Current": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 9 - ] - }, - "airFMModBlwr1Vlt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 10 - ] - }, - "airFMModBlwr1DCLinkVlt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 11 - ] - }, - "airFMModBlwr1AccTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 12 - ] - }, - "airFMModBlwr1DecTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 13 - ] - }, - "airFMModBlwr1CapLife": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 14 - ] - }, - "airFMModBlwr1CtrlCoolFanLife": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 15 - ] - }, - "airFMModBlwr1ElOvMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "inactive", - "3": "active" - } - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 16 - ] - }, - "airFMModBlwr1ElOvSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 17 - ] - }, - "airFMModBlwr1ElOvTimeConst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 18 - ] - }, - "airFMModBlwr1FanPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 19 - ] - }, - "airFMModBlwr1HeatsinkTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 20 - ] - }, - "airFMModBlwr1HeatsinkTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 21 - ] - }, - "airFMModBlwr1ChokeTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 22 - ] - }, - "airFMModBlwr1ChokeTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 23 - ] - }, - "airFMModBlwr1InverterTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 24 - ] - }, - "airFMModBlwr1InverterTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr1Entry", - 25 - ] - }, - "airFMModBlwr2TableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlower2", - 1 - ] - }, - "airFMModBlwr2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModBlwr2Entry" - }, - "index": null, - "value": [ - "airFMModBlower2", - 2 - ] - }, - "airFMModBlwr2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModBlwr2Entry" - }, - "index": [ - "airFMModBlwr2ModuleIndex" - ], - "value": [ - "airFMModBlwr2Table", - 1 - ] - }, - "AirFMModBlwr2Entry": { - "tp": "SEQUENCE" - }, - "airFMModBlwr2ModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 1 - ] - }, - "airFMModBlwr2CtrlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "fujiVFD", - "3": "ecController", - "4": "danfossVFD" - } - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 2 - ] - }, - "airFMModBlwr2CmdFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 3 - ] - }, - "airFMModBlwr2ActFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 4 - ] - }, - "airFMModBlwr2Poles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 5 - ] - }, - "airFMModBlwr2RatedHorsePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 6 - ] - }, - "airFMModBlwr2RatedCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 7 - ] - }, - "airFMModBlwr2ActTorq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 8 - ] - }, - "airFMModBlwr2Current": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 9 - ] - }, - "airFMModBlwr2Vlt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 10 - ] - }, - "airFMModBlwr2DCLinkVlt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 11 - ] - }, - "airFMModBlwr2AccTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 12 - ] - }, - "airFMModBlwr2DecTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 13 - ] - }, - "airFMModBlwr2CapLife": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 14 - ] - }, - "airFMModBlwr2CtrlCoolFanLife": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 15 - ] - }, - "airFMModBlwr2ElOvMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "inactive", - "3": "active" - } - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 16 - ] - }, - "airFMModBlwr2ElOvSetting": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 17 - ] - }, - "airFMModBlwr2ElOvTimeConst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 18 - ] - }, - "airFMModBlwr2FanPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 19 - ] - }, - "airFMModBlwr2HeatsinkTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 20 - ] - }, - "airFMModBlwr2HeatsinkTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 21 - ] - }, - "airFMModBlwr2ChokeTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 22 - ] - }, - "airFMModBlwr2ChokeTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 23 - ] - }, - "airFMModBlwr2InverterTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 24 - ] - }, - "airFMModBlwr2InverterTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModBlwr2Entry", - 25 - ] - }, - "airFMModRHTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRunHours", - 1 - ] - }, - "airFMModRHTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModRHEntry" - }, - "index": null, - "value": [ - "airFMModRunHours", - 2 - ] - }, - "airFMModRHEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModRHEntry" - }, - "index": [ - "airFMModRHModuleIndex" - ], - "value": [ - "airFMModRHTable", - 1 - ] - }, - "AirFMModRHEntry": { - "tp": "SEQUENCE" - }, - "airFMModRHModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 1 - ] - }, - "airFMModRHComp1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 2 - ] - }, - "airFMModRHComp2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 3 - ] - }, - "airFMModRHHeater": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 4 - ] - }, - "airFMModRHHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 5 - ] - }, - "airFMModRHBlwr1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 6 - ] - }, - "airFMModRHBlwr2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 7 - ] - }, - "airFMModRHBlwrCtrl1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 8 - ] - }, - "airFMModRHBlwrCtrl2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModRHEntry", - 9 - ] - }, - "airFMModRHComp1Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModRHEntry", - 10 - ] - }, - "airFMModRHComp2Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModRHEntry", - 11 - ] - }, - "airFMModRHHeaterReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModRHEntry", - 12 - ] - }, - "airFMModRHHumReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModRHEntry", - 13 - ] - }, - "airFMModRHBlwr1Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModRHEntry", - 14 - ] - }, - "airFMModRHBlwr2Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModRHEntry", - 15 - ] - }, - "airFMModServIntComp1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 1 - ] - }, - "airFMModServIntComp2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 2 - ] - }, - "airFMModServIntHeater": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 3 - ] - }, - "airFMModServIntHum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 4 - ] - }, - "airFMModServIntBlwr1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 5 - ] - }, - "airFMModServIntBlwr2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 6 - ] - }, - "airFMModServIntBlwrCtrl1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 7 - ] - }, - "airFMModServIntBlwrCtrl2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntervals", - 8 - ] - }, - "airFMModServIntResetTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntResets", - 1 - ] - }, - "airFMModServIntResetTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMModServIntResetEntry" - }, - "index": null, - "value": [ - "airFMModServIntResets", - 2 - ] - }, - "airFMModServIntResetEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMModServIntResetEntry" - }, - "index": [ - "airFMModServIntResetModuleIndex" - ], - "value": [ - "airFMModServIntResetTable", - 1 - ] - }, - "AirFMModServIntResetEntry": { - "tp": "SEQUENCE" - }, - "airFMModServIntResetModuleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 1 - ] - }, - "airFMModServIntComp1Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 2 - ] - }, - "airFMModServIntComp2Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 3 - ] - }, - "airFMModServIntHeaterReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 4 - ] - }, - "airFMModServIntHumReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 5 - ] - }, - "airFMModServIntBlwr1Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 6 - ] - }, - "airFMModServIntBlwr2Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 7 - ] - }, - "airFMModServIntBlwrCtrl1Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 8 - ] - }, - "airFMModServIntBlwrCtrl2Reset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notApplicable", - "2": "noOperation", - "3": "reset" - } - }, - "index": null, - "value": [ - "airFMModServIntResetEntry", - 9 - ] - }, - "airFMAlarmClearActiveGroupAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "clearAlarms" - } - }, - "index": null, - "value": [ - "airFMAlarms", - 1 - ] - }, - "airFMAlarmClearActiveSysModAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noOperation", - "2": "clearAlarms" - } - }, - "index": null, - "value": [ - "airFMAlarms", - 2 - ] - }, - "airFMAlarmConditionsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMAlarms", - 3 - ] - }, - "airFMAlarmConditionsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirFMAlarmConditionsEntry" - }, - "index": null, - "value": [ - "airFMAlarms", - 4 - ] - }, - "airFMAlarmConditionsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirFMAlarmConditionsEntry" - }, - "index": [ - "airFMAlarmConditionsIndex" - ], - "value": [ - "airFMAlarmConditionsTable", - 1 - ] - }, - "AirFMAlarmConditionsEntry": { - "tp": "SEQUENCE" - }, - "airFMAlarmConditionsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 1 - ] - }, - "airFMAlarmSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "informational", - "2": "warningMinor", - "3": "criticalMajor" - } - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 2 - ] - }, - "airFMAlarmType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "group", - "2": "system", - "3": "mainMod", - "4": "expMod1", - "5": "expMod2" - } - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 3 - ] - }, - "airFMEventCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 4 - ] - }, - "airFMAlarmDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 5 - ] - }, - "airFMAlarmTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 6 - ] - }, - "airFMAlarmDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airFMAlarmConditionsEntry", - 7 - ] - }, - "airPAIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airPAIdent", - 1 - ] - }, - "airPAModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airPAIdent", - 2 - ] - }, - "airPADateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airPAIdent", - 3 - ] - }, - "airPASerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airPAIdent", - 4 - ] - }, - "airPAFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airPAIdent", - 5 - ] - }, - "airPAHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airPAIdent", - 6 - ] - }, - "airPASystemPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "powerON", - "2": "powerOFF" - } - }, - "index": null, - "value": [ - "airPAStatus", - 1 - ] - }, - "airPAOperatingMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "modeOFF", - "2": "modeVENTING", - "3": "modeCOOLING" - } - }, - "index": null, - "value": [ - "airPAStatus", - 2 - ] - }, - "airPASetpointTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 3 - ] - }, - "airPASetpointTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 4 - ] - }, - "airPABlowerSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "speedLOW", - "2": "speedHIGH" - } - }, - "index": null, - "value": [ - "airPAStatus", - 5 - ] - }, - "airPACompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusON", - "2": "statusOFF" - } - }, - "index": null, - "value": [ - "airPAStatus", - 6 - ] - }, - "airPACondenserFan": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusON", - "2": "statusOFF" - } - }, - "index": null, - "value": [ - "airPAStatus", - 7 - ] - }, - "airPACondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "statusON", - "2": "statusOFF" - } - }, - "index": null, - "value": [ - "airPAStatus", - 8 - ] - }, - "airPASupplyTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 9 - ] - }, - "airPASupplyTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 10 - ] - }, - "airPAReturnTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 11 - ] - }, - "airPAReturnTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 12 - ] - }, - "airPARemoteTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 13 - ] - }, - "airPARemoteTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 14 - ] - }, - "airPARemoteHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airPAStatus", - 15 - ] - }, - "airIRAlarmConditionsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRAlarms", - 1 - ] - }, - "airIRAlarmConditionsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRAlarmConditionsEntry" - }, - "index": null, - "value": [ - "airIRAlarms", - 2 - ] - }, - "airIRAlarmConditionsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRAlarmConditionsEntry" - }, - "index": [ - "airIRAlarmConditionsIndex" - ], - "value": [ - "airIRAlarmConditionsTable", - 1 - ] - }, - "AirIRAlarmConditionsEntry": { - "tp": "SEQUENCE" - }, - "airIRAlarmConditionsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRAlarmConditionsEntry", - 1 - ] - }, - "airIREventCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRAlarmConditionsEntry", - 2 - ] - }, - "airIRAlarmDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRAlarmConditionsEntry", - 3 - ] - }, - "airIRRCGroupStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 1 - ] - }, - "airIRRCGroupStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 2 - ] - }, - "airIRRCGroupStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 3 - ] - }, - "airIRRCGroupStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 4 - ] - }, - "airIRRCGroupStatusMaxRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 5 - ] - }, - "airIRRCGroupStatusMaxRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 6 - ] - }, - "airIRRCGroupStatusMinRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 7 - ] - }, - "airIRRCGroupStatusMinRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 8 - ] - }, - "airIRRCGroupStatusActiveFlowControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "under", - "2": "okay", - "3": "over", - "4": "notApplicable" - } - }, - "index": null, - "value": [ - "airIRRCGroupStatus", - 9 - ] - }, - "airIRRCGroupSetpointsCoolUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 1 - ] - }, - "airIRRCGroupSetpointsCoolMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 2 - ] - }, - "airIRRCGroupSetpointsSupplyAirUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 3 - ] - }, - "airIRRCGroupSetpointsSupplyAirMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 4 - ] - }, - "airIRRCGroupSetpointsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "low", - "2": "med-low", - "3": "med", - "4": "med-high", - "5": "high" - } - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 5 - ] - }, - "airIRRCGroupSetpointsFanSpeedControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 6 - ] - }, - "airIRRCGroupSetpointsActiveFlowControlBias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "positive", - "2": "slightlyPositive", - "3": "zero", - "4": "slightlyNegative", - "5": "negative" - } - }, - "index": null, - "value": [ - "airIRRCGroupSetpoints", - 7 - ] - }, - "airIRRCGroupConfigNumberofCoolingUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 1 - ] - }, - "airIRRCGroupConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "racs", - "2": "hacs", - "3": "in-row", - "4": "cacs" - } - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 2 - ] - }, - "airIRRCGroupConfigPctGlycol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 3 - ] - }, - "airIRRCGroupConfigCoolGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 4 - ] - }, - "airIRRCGroupConfigCoolResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 5 - ] - }, - "airIRRCGroupConfigCoolDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 6 - ] - }, - "airIRRCGroupConfigMaxFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 7 - ] - }, - "airIRRCGroupConfigNumberOfActiveFlowControllers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 8 - ] - }, - "airIRRCGroupConfigActiveFlowControllerLampTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 9 - ] - }, - "airIRRCGroupConfigAltitudeUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 10 - ] - }, - "airIRRCGroupConfigAltitudeMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCGroupConfig", - 11 - ] - }, - "airIRRCUnitStatusOperateMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "on", - "3": "idle" - } - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 1 - ] - }, - "airIRRCUnitStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 2 - ] - }, - "airIRRCUnitStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 3 - ] - }, - "airIRRCUnitStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 4 - ] - }, - "airIRRCUnitStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 5 - ] - }, - "airIRRCUnitStatusRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 6 - ] - }, - "airIRRCUnitStatusRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 7 - ] - }, - "airIRRCUnitStatusSupplyAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 8 - ] - }, - "airIRRCUnitStatusSupplyAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 9 - ] - }, - "airIRRCUnitStatusReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 10 - ] - }, - "airIRRCUnitStatusReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 11 - ] - }, - "airIRRCUnitStatusContainmtDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 12 - ] - }, - "airIRRCUnitStatusContainmtDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 13 - ] - }, - "airIRRCUnitStatusFilterDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 14 - ] - }, - "airIRRCUnitStatusFilterDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 15 - ] - }, - "airIRRCUnitStatusFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 16 - ] - }, - "airIRRCUnitStatusInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 17 - ] - }, - "airIRRCUnitStatusOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 18 - ] - }, - "airIRRCUnitStatusActivePowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceA", - "2": "sourceB" - } - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 19 - ] - }, - "airIRRCUnitStatusFluidValvePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 20 - ] - }, - "airIRRCUnitStatusFluidFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 21 - ] - }, - "airIRRCUnitStatusFluidFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 22 - ] - }, - "airIRRCUnitStatusEnteringFluidTemperatureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 23 - ] - }, - "airIRRCUnitStatusEnteringFluidTemperatureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 24 - ] - }, - "airIRRCUnitStatusLeavingFluidTemperatureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 25 - ] - }, - "airIRRCUnitStatusLeavingFluidTemperatureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitStatus", - 26 - ] - }, - "airIRRCUnitIdentID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 1 - ] - }, - "airIRRCUnitIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 2 - ] - }, - "airIRRCUnitIdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 3 - ] - }, - "airIRRCUnitIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 4 - ] - }, - "airIRRCUnitIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 5 - ] - }, - "airIRRCUnitIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 6 - ] - }, - "airIRRCUnitIdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 7 - ] - }, - "airIRRCUnitIdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRCUnitIdent", - 8 - ] - }, - "airIRRCUnitRunHoursAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 1 - ] - }, - "airIRRCUnitRunHoursFan1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 2 - ] - }, - "airIRRCUnitRunHoursFan2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 3 - ] - }, - "airIRRCUnitRunHoursFan3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 4 - ] - }, - "airIRRCUnitRunHoursFan4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 5 - ] - }, - "airIRRCUnitRunHoursFan5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 6 - ] - }, - "airIRRCUnitRunHoursFan6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 7 - ] - }, - "airIRRCUnitRunHoursFan7": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 8 - ] - }, - "airIRRCUnitRunHoursFan8": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 9 - ] - }, - "airIRRCUnitRunHoursFanPowerSupplyLeft": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 10 - ] - }, - "airIRRCUnitRunHoursFanPowerSupplyRight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 11 - ] - }, - "airIRRCUnitRunHoursCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 12 - ] - }, - "airIRRCUnitRunHoursFanPowerSupplyFeedALeft": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 13 - ] - }, - "airIRRCUnitRunHoursFanPowerSupplyFeedARight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 14 - ] - }, - "airIRRCUnitRunHoursFanPowerSupplyFeedBLeft": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 15 - ] - }, - "airIRRCUnitRunHoursFanPowerSupplyFeedBRight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitRunHours", - 16 - ] - }, - "airIRRCUnitServiceIntervalsAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitServiceIntervals", - 1 - ] - }, - "airIRRCUnitServiceIntervalsAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRCUnitServiceIntervals", - 2 - ] - }, - "airIRRCUnitThresholdsRackInletHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 1 - ] - }, - "airIRRCUnitThresholdsRackInletHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 2 - ] - }, - "airIRRCUnitThresholdsSupplyAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 3 - ] - }, - "airIRRCUnitThresholdsSupplyAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 4 - ] - }, - "airIRRCUnitThresholdsReturnAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 5 - ] - }, - "airIRRCUnitThresholdsReturnAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 6 - ] - }, - "airIRRCUnitThresholdsEnteringFluidHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 7 - ] - }, - "airIRRCUnitThresholdsEnteringFluidHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitThresholds", - 8 - ] - }, - "airIRRCUnitConfigCoolCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "maximum" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 1 - ] - }, - "airIRRCUnitConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 2 - ] - }, - "airIRRCUnitConfigIdleOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 3 - ] - }, - "airIRRCUnitConfigPowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceA", - "2": "sourceB", - "3": "sourceAandB" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 4 - ] - }, - "airIRRCUnitConfigInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 5 - ] - }, - "airIRRCUnitConfigOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 6 - ] - }, - "airIRRCUnitConfigOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "anyAlarm", - "2": "criticalAlarm" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 7 - ] - }, - "airIRRCUnitConfigIdleOnCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "airIRRCUnitConfig", - 8 - ] - }, - "airIRRP100GroupStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 1 - ] - }, - "airIRRP100GroupStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 2 - ] - }, - "airIRRP100GroupStatusMaxRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 3 - ] - }, - "airIRRP100GroupStatusMaxRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 4 - ] - }, - "airIRRP100GroupStatusMinRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 5 - ] - }, - "airIRRP100GroupStatusMinRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 6 - ] - }, - "airIRRP100GroupStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 7 - ] - }, - "airIRRP100GroupStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 8 - ] - }, - "airIRRP100GroupStatusHumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 9 - ] - }, - "airIRRP100GroupStatusHumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 10 - ] - }, - "airIRRP100GroupStatusDehumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 11 - ] - }, - "airIRRP100GroupStatusDehumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 12 - ] - }, - "airIRRP100GroupStatusReheatDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 13 - ] - }, - "airIRRP100GroupStatusReheatOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 14 - ] - }, - "airIRRP100GroupStatusActiveFlowControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "under", - "2": "okay", - "3": "over", - "4": "notApplicable" - } - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 15 - ] - }, - "airIRRP100GroupStatusDewPointTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 16 - ] - }, - "airIRRP100GroupStatusDewPointTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupStatus", - 17 - ] - }, - "airIRRP100GroupSetpointsCoolUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 1 - ] - }, - "airIRRP100GroupSetpointsCoolMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 2 - ] - }, - "airIRRP100GroupSetpointsSupplyAirUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 3 - ] - }, - "airIRRP100GroupSetpointsSupplyAirMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 4 - ] - }, - "airIRRP100GroupSetpointsHumidify": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 5 - ] - }, - "airIRRP100GroupSetpointsDehumidify": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 6 - ] - }, - "airIRRP100GroupSetpointsDehumidifyDeadband": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 7 - ] - }, - "airIRRP100GroupSetpointsReheatUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 8 - ] - }, - "airIRRP100GroupSetpointsReheatMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 9 - ] - }, - "airIRRP100GroupSetpointsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "low", - "2": "med-low", - "3": "med", - "4": "med-high", - "5": "high" - } - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 10 - ] - }, - "airIRRP100GroupSetpointsFanSpeedControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 11 - ] - }, - "airIRRP100GroupSetpointsActiveFlowControlBias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "positive", - "2": "slightlyPositive", - "3": "zero", - "4": "slightlyNegative", - "5": "negative" - } - }, - "index": null, - "value": [ - "airIRRP100GroupSetpoints", - 12 - ] - }, - "airIRRP100GroupConfigNumberofCoolingUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 1 - ] - }, - "airIRRP100GroupConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "racs", - "2": "hacs", - "3": "in-row", - "4": "cacs" - } - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 2 - ] - }, - "airIRRP100GroupConfigCoolGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 3 - ] - }, - "airIRRP100GroupConfigCoolResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 4 - ] - }, - "airIRRP100GroupConfigCoolDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 5 - ] - }, - "airIRRP100GroupConfigHumidifySensitivityBand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 6 - ] - }, - "airIRRP100GroupConfigReheatGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 7 - ] - }, - "airIRRP100GroupConfigReheatResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 8 - ] - }, - "airIRRP100GroupConfigReheatDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 9 - ] - }, - "airIRRP100GroupConfigNumberofBackupUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 10 - ] - }, - "airIRRP100GroupConfigRuntimeBalancingEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 11 - ] - }, - "airIRRP100GroupConfigLoadAssistEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 12 - ] - }, - "airIRRP100GroupConfigFullRPBackups": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 13 - ] - }, - "airIRRP100GroupConfigMaxFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 14 - ] - }, - "airIRRP100GroupConfigNumberOfActiveFlowControllers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 15 - ] - }, - "airIRRP100GroupConfigActiveFlowControllerLampTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 16 - ] - }, - "airIRRP100GroupConfigAltitudeUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 17 - ] - }, - "airIRRP100GroupConfigAltitudeMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100GroupConfig", - 18 - ] - }, - "airIRRP100UnitStatusOperateMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "on", - "3": "idle", - "4": "prestart", - "5": "service", - "6": "backup", - "7": "assist" - } - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 1 - ] - }, - "airIRRP100UnitStatusRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 2 - ] - }, - "airIRRP100UnitStatusRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 3 - ] - }, - "airIRRP100UnitStatusSupplyAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 4 - ] - }, - "airIRRP100UnitStatusSupplyAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 5 - ] - }, - "airIRRP100UnitStatusReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 6 - ] - }, - "airIRRP100UnitStatusReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 7 - ] - }, - "airIRRP100UnitStatusSupplyHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 8 - ] - }, - "airIRRP100UnitStatusReturnHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 9 - ] - }, - "airIRRP100UnitStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 10 - ] - }, - "airIRRP100UnitStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 11 - ] - }, - "airIRRP100UnitStatusFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 12 - ] - }, - "airIRRP100UnitStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 13 - ] - }, - "airIRRP100UnitStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 14 - ] - }, - "airIRRP100UnitStatusHumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 15 - ] - }, - "airIRRP100UnitStatusHumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 16 - ] - }, - "airIRRP100UnitStatusDehumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 17 - ] - }, - "airIRRP100UnitStatusDehumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 18 - ] - }, - "airIRRP100UnitStatusReheatDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 19 - ] - }, - "airIRRP100UnitStatusReheatOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 20 - ] - }, - "airIRRP100UnitStatusInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 21 - ] - }, - "airIRRP100UnitStatusOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 22 - ] - }, - "airIRRP100UnitStatusRackInletTemperature1US": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 23 - ] - }, - "airIRRP100UnitStatusRackInletTemperature1Metric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 24 - ] - }, - "airIRRP100UnitStatusRackInletTemperature2US": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 25 - ] - }, - "airIRRP100UnitStatusRackInletTemperature2Metric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 26 - ] - }, - "airIRRP100UnitStatusRackInletTemperature3US": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 27 - ] - }, - "airIRRP100UnitStatusRackInletTemperature3Metric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 28 - ] - }, - "airIRRP100UnitStatusFilterDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 29 - ] - }, - "airIRRP100UnitStatusFilterDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 30 - ] - }, - "airIRRP100UnitStatusContainmtDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 31 - ] - }, - "airIRRP100UnitStatusContainmtDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 32 - ] - }, - "airIRRP100UnitStatusHumidifierCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 33 - ] - }, - "airIRRP100UnitStatusHumidifierWaterConductivity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 34 - ] - }, - "airIRRP100UnitStatusCompressorDriveSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 35 - ] - }, - "airIRRP100UnitStatusCompressorDrivePower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 36 - ] - }, - "airIRRP100UnitStatusCompressorDriveVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 37 - ] - }, - "airIRRP100UnitStatusCompressorDriveCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 38 - ] - }, - "airIRRP100UnitStatusCompressorDriveDCLinkVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 39 - ] - }, - "airIRRP100UnitStatusCompressorDriveHeatSinkTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 40 - ] - }, - "airIRRP100UnitStatusCompressorDriveHeatSinkTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 41 - ] - }, - "airIRRP100UnitStatusCompressorDriveControlCardTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 42 - ] - }, - "airIRRP100UnitStatusCompressorDriveControlCardTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 43 - ] - }, - "airIRRP100UnitStatusCompressorDriveWarningStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 44 - ] - }, - "airIRRP100UnitStatusCompressorDriveAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 45 - ] - }, - "airIRRP100UnitStatusSuctionPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 46 - ] - }, - "airIRRP100UnitStatusSuctionPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 47 - ] - }, - "airIRRP100UnitStatusDischargePressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 48 - ] - }, - "airIRRP100UnitStatusDischargePressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 49 - ] - }, - "airIRRP100UnitStatusLeakSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no-leak", - "2": "leak" - } - }, - "index": null, - "value": [ - "airIRRP100UnitStatus", - 50 - ] - }, - "airIRRP100UnitIdentID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 1 - ] - }, - "airIRRP100UnitIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 2 - ] - }, - "airIRRP100UnitIdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 3 - ] - }, - "airIRRP100UnitIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 4 - ] - }, - "airIRRP100UnitIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 5 - ] - }, - "airIRRP100UnitIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 6 - ] - }, - "airIRRP100UnitIdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 7 - ] - }, - "airIRRP100UnitIdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP100UnitIdent", - 8 - ] - }, - "airIRRP100UnitRunHoursAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 1 - ] - }, - "airIRRP100UnitRunHoursCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 2 - ] - }, - "airIRRP100UnitRunHoursHumidifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 3 - ] - }, - "airIRRP100UnitRunHoursFan1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 4 - ] - }, - "airIRRP100UnitRunHoursHeater1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 5 - ] - }, - "airIRRP100UnitRunHoursFan2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 6 - ] - }, - "airIRRP100UnitRunHoursHeater2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 7 - ] - }, - "airIRRP100UnitRunHoursCompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 8 - ] - }, - "airIRRP100UnitRunHoursSystem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitRunHours", - 9 - ] - }, - "airIRRP100UnitServiceIntervalAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 1 - ] - }, - "airIRRP100UnitServiceIntervalAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 2 - ] - }, - "airIRRP100UnitServiceIntervalHumidifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 3 - ] - }, - "airIRRP100UnitServiceIntervalHumidifierAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 4 - ] - }, - "airIRRP100UnitServiceIntervalHeater": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 5 - ] - }, - "airIRRP100UnitServiceIntervalHeaterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 6 - ] - }, - "airIRRP100UnitServiceIntervalCompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 7 - ] - }, - "airIRRP100UnitServiceIntervalCompressorAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 8 - ] - }, - "airIRRP100UnitServiceIntervalCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 9 - ] - }, - "airIRRP100UnitServiceIntervalCondensatePumpAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 10 - ] - }, - "airIRRP100UnitServiceIntervalFans": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 11 - ] - }, - "airIRRP100UnitServiceIntervalFansAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitServiceIntervals", - 12 - ] - }, - "airIRRP100UnitThresholdsRackInletHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 1 - ] - }, - "airIRRP100UnitThresholdsRackInletHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 2 - ] - }, - "airIRRP100UnitThresholdsSupplyAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 3 - ] - }, - "airIRRP100UnitThresholdsSupplyAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 4 - ] - }, - "airIRRP100UnitThresholdsReturnAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 5 - ] - }, - "airIRRP100UnitThresholdsReturnAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 6 - ] - }, - "airIRRP100UnitThresholdsSupplyHumidityHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 7 - ] - }, - "airIRRP100UnitThresholdsSupplyHumidityLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitThresholds", - 8 - ] - }, - "airIRRP100UnitConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 1 - ] - }, - "airIRRP100UnitConfigCoolCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "maximum" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 2 - ] - }, - "airIRRP100UnitConfigIdleOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 3 - ] - }, - "airIRRP100UnitConfigInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 4 - ] - }, - "airIRRP100UnitConfigOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 5 - ] - }, - "airIRRP100UnitConfigOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "anyAlarm", - "2": "criticalAlarm" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 6 - ] - }, - "airIRRP100UnitConfigHumidifyEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 7 - ] - }, - "airIRRP100UnitConfigHumidifierControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "auto", - "2": "drainOff" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 8 - ] - }, - "airIRRP100UnitConfigDehumidifyEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 9 - ] - }, - "airIRRP100UnitConfigReheatEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 10 - ] - }, - "airIRRP100UnitConfigHeatAssistEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 11 - ] - }, - "airIRRP100UnitConfigPowerSourceConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "single", - "2": "dual" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 12 - ] - }, - "airIRRP100UnitConfigUnitRoleOverride": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "forcedOn" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 13 - ] - }, - "airIRRP100UnitConfigSecondaryPowerFeedCapability": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "full", - "2": "reduced" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 14 - ] - }, - "airIRRP100UnitConfigIdleOnCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP100UnitConfig", - 15 - ] - }, - "airIRRP500GroupStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 1 - ] - }, - "airIRRP500GroupStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 2 - ] - }, - "airIRRP500GroupStatusMaxRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 3 - ] - }, - "airIRRP500GroupStatusMaxRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 4 - ] - }, - "airIRRP500GroupStatusMinRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 5 - ] - }, - "airIRRP500GroupStatusMinRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 6 - ] - }, - "airIRRP500GroupStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 7 - ] - }, - "airIRRP500GroupStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 8 - ] - }, - "airIRRP500GroupStatusHumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 9 - ] - }, - "airIRRP500GroupStatusHumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 10 - ] - }, - "airIRRP500GroupStatusDehumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 11 - ] - }, - "airIRRP500GroupStatusDehumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 12 - ] - }, - "airIRRP500GroupStatusReheatDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 13 - ] - }, - "airIRRP500GroupStatusReheatOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 14 - ] - }, - "airIRRP500GroupStatusActiveFlowControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "under", - "2": "okay", - "3": "over", - "4": "notApplicable" - } - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 15 - ] - }, - "airIRRP500GroupStatusDewPointTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 16 - ] - }, - "airIRRP500GroupStatusDewPointTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupStatus", - 17 - ] - }, - "airIRRP500GroupSetpointsCoolUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 1 - ] - }, - "airIRRP500GroupSetpointsCoolMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 2 - ] - }, - "airIRRP500GroupSetpointsSupplyAirUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 3 - ] - }, - "airIRRP500GroupSetpointsSupplyAirMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 4 - ] - }, - "airIRRP500GroupSetpointsHumidify": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 5 - ] - }, - "airIRRP500GroupSetpointsDehumidify": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 6 - ] - }, - "airIRRP500GroupSetpointsDehumidifyDeadband": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 7 - ] - }, - "airIRRP500GroupSetpointsReheatUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 8 - ] - }, - "airIRRP500GroupSetpointsReheatMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 9 - ] - }, - "airIRRP500GroupSetpointsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "low", - "2": "med-low", - "3": "med", - "4": "med-high", - "5": "high" - } - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 10 - ] - }, - "airIRRP500GroupSetpointsFanSpeedControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 11 - ] - }, - "airIRRP500GroupSetpointsActiveFlowControlBias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "positive", - "2": "slightlyPositive", - "3": "zero", - "4": "slightlyNegative", - "5": "negative" - } - }, - "index": null, - "value": [ - "airIRRP500GroupSetpoints", - 12 - ] - }, - "airIRRP500GroupConfigNumberofCoolingUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 1 - ] - }, - "airIRRP500GroupConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "racs", - "2": "hacs", - "3": "in-row", - "4": "cacs" - } - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 2 - ] - }, - "airIRRP500GroupConfigPercentGlycol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 3 - ] - }, - "airIRRP500GroupConfigCoolGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 4 - ] - }, - "airIRRP500GroupConfigCoolResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 5 - ] - }, - "airIRRP500GroupConfigCoolDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 6 - ] - }, - "airIRRP500GroupConfigHumidifySensitivityBand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 7 - ] - }, - "airIRRP500GroupConfigReheatGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 8 - ] - }, - "airIRRP500GroupConfigReheatResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 9 - ] - }, - "airIRRP500GroupConfigReheatDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 10 - ] - }, - "airIRRP500GroupConfigMaxFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 11 - ] - }, - "airIRRP500GroupConfigNumberofBackupUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 12 - ] - }, - "airIRRP500GroupConfigRuntimeBalancingEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 13 - ] - }, - "airIRRP500GroupConfigLoadAssistEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 14 - ] - }, - "airIRRP500GroupConfigFullRPBackups": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 15 - ] - }, - "airIRRP500GroupConfigNumberOfActiveFlowControllers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 16 - ] - }, - "airIRRP500GroupConfigActiveFlowControllerLampTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 17 - ] - }, - "airIRRP500GroupConfigAltitudeUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 18 - ] - }, - "airIRRP500GroupConfigAltitudeMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500GroupConfig", - 19 - ] - }, - "airIRRP500UnitStatusOperateMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "on", - "3": "idle", - "4": "prestart", - "5": "backup", - "6": "assist" - } - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 1 - ] - }, - "airIRRP500UnitStatusMaximumRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 2 - ] - }, - "airIRRP500UnitStatusMaximumRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 3 - ] - }, - "airIRRP500UnitStatusSupplyAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 4 - ] - }, - "airIRRP500UnitStatusSupplyAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 5 - ] - }, - "airIRRP500UnitStatusReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 6 - ] - }, - "airIRRP500UnitStatusReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 7 - ] - }, - "airIRRP500UnitStatusSupplyHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 8 - ] - }, - "airIRRP500UnitStatusReturnHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 9 - ] - }, - "airIRRP500UnitStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 10 - ] - }, - "airIRRP500UnitStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 11 - ] - }, - "airIRRP500UnitStatusFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 12 - ] - }, - "airIRRP500UnitStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 13 - ] - }, - "airIRRP500UnitStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 14 - ] - }, - "airIRRP500UnitStatusHumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 15 - ] - }, - "airIRRP500UnitStatusHumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 16 - ] - }, - "airIRRP500UnitStatusDehumidifyDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 17 - ] - }, - "airIRRP500UnitStatusDehumidifyOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 18 - ] - }, - "airIRRP500UnitStatusReheatDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 19 - ] - }, - "airIRRP500UnitStatusReheatOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 20 - ] - }, - "airIRRP500UnitStatusInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 21 - ] - }, - "airIRRP500UnitStatusOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 22 - ] - }, - "airIRRP500UnitStatusRackInletTemperature1US": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 23 - ] - }, - "airIRRP500UnitStatusRackInletTemperature1Metric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 24 - ] - }, - "airIRRP500UnitStatusRackInletTemperature2US": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 25 - ] - }, - "airIRRP500UnitStatusRackInletTemperature2Metric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 26 - ] - }, - "airIRRP500UnitStatusRackInletTemperature3US": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 27 - ] - }, - "airIRRP500UnitStatusRackInletTemperature3Metric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 28 - ] - }, - "airIRRP500UnitStatusContainmtDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 29 - ] - }, - "airIRRP500UnitStatusContainmtDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 30 - ] - }, - "airIRRP500UnitStatusFilterDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 31 - ] - }, - "airIRRP500UnitStatusFilterDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 32 - ] - }, - "airIRRP500UnitStatusHumidifierCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 33 - ] - }, - "airIRRP500UnitStatusHumidifierWaterConductivity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 34 - ] - }, - "airIRRP500UnitStatusActivePowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sourceA", - "2": "sourceB" - } - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 35 - ] - }, - "airIRRP500UnitStatusFluidValvePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 36 - ] - }, - "airIRRP500UnitStatusFluidFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 37 - ] - }, - "airIRRP500UnitStatusFluidFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 38 - ] - }, - "airIRRP500UnitStatusEnteringFluidTemperatureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 39 - ] - }, - "airIRRP500UnitStatusEnteringFluidTemperatureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 40 - ] - }, - "airIRRP500UnitStatusLeavingFluidTemperatureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 41 - ] - }, - "airIRRP500UnitStatusLeavingFluidTemperatureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 42 - ] - }, - "airIRRP500UnitStatusLeakSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no-leak", - "2": "leak" - } - }, - "index": null, - "value": [ - "airIRRP500UnitStatus", - 43 - ] - }, - "airIRRP500UnitIdentID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 1 - ] - }, - "airIRRP500UnitIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 2 - ] - }, - "airIRRP500UnitIdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 3 - ] - }, - "airIRRP500UnitIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 4 - ] - }, - "airIRRP500UnitIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 5 - ] - }, - "airIRRP500UnitIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 6 - ] - }, - "airIRRP500UnitIdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 7 - ] - }, - "airIRRP500UnitIdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRRP500UnitIdent", - 8 - ] - }, - "airIRRP500UnitRunHoursAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 1 - ] - }, - "airIRRP500UnitRunHoursCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 2 - ] - }, - "airIRRP500UnitRunHoursHumidifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 3 - ] - }, - "airIRRP500UnitRunHoursFan1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 4 - ] - }, - "airIRRP500UnitRunHoursHeater1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 5 - ] - }, - "airIRRP500UnitRunHoursFan2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 6 - ] - }, - "airIRRP500UnitRunHoursHeater2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 7 - ] - }, - "airIRRP500UnitRunHoursFan3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 8 - ] - }, - "airIRRP500UnitRunHoursHeater3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 9 - ] - }, - "airIRRP500UnitRunHoursSystem": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitRunHours", - 10 - ] - }, - "airIRRP500UnitServiceIntervalAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 1 - ] - }, - "airIRRP500UnitServiceIntervalAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 2 - ] - }, - "airIRRP500UnitServiceIntervalHumidifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 3 - ] - }, - "airIRRP500UnitServiceIntervalHumidifierAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 4 - ] - }, - "airIRRP500UnitServiceIntervalHeater": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 5 - ] - }, - "airIRRP500UnitServiceIntervalHeaterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 6 - ] - }, - "airIRRP500UnitServiceIntervalCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 7 - ] - }, - "airIRRP500UnitServiceIntervalCondensatePumpAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 8 - ] - }, - "airIRRP500UnitServiceIntervalFans": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 9 - ] - }, - "airIRRP500UnitServiceIntervalFansAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitServiceIntervals", - 10 - ] - }, - "airIRRP500UnitThresholdsRackInletHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 1 - ] - }, - "airIRRP500UnitThresholdsRackInletHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 2 - ] - }, - "airIRRP500UnitThresholdsSupplyAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 3 - ] - }, - "airIRRP500UnitThresholdsSupplyAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 4 - ] - }, - "airIRRP500UnitThresholdsReturnAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 5 - ] - }, - "airIRRP500UnitThresholdsReturnAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 6 - ] - }, - "airIRRP500UnitThresholdsSupplyHumidityHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 7 - ] - }, - "airIRRP500UnitThresholdsSupplyHumidityLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 8 - ] - }, - "airIRRP500UnitThresholdsEnteringFluidHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 9 - ] - }, - "airIRRP500UnitThresholdsEnteringFluidHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitThresholds", - 10 - ] - }, - "airIRRP500UnitConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 1 - ] - }, - "airIRRP500UnitConfigCoolCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "maximum" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 2 - ] - }, - "airIRRP500UnitConfigIdleOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 3 - ] - }, - "airIRRP500UnitConfigInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 4 - ] - }, - "airIRRP500UnitConfigOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 5 - ] - }, - "airIRRP500UnitConfigOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "anyAlarm", - "2": "criticalAlarm" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 6 - ] - }, - "airIRRP500UnitConfigHumidifyEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 7 - ] - }, - "airIRRP500UnitConfigHumidifierControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "auto", - "2": "drainOff" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 8 - ] - }, - "airIRRP500UnitConfigDehumidifyEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 9 - ] - }, - "airIRRP500UnitConfigReheatEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 10 - ] - }, - "airIRRP500UnitConfigHeatAssistEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 11 - ] - }, - "airIRRP500UnitConfigPowerSourceConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "single", - "2": "dual" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 12 - ] - }, - "airIRRP500UnitConfigUnitRoleOverride": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "forcedOn" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 13 - ] - }, - "airIRRP500UnitConfigSecondaryPowerFeedCapability": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "full", - "2": "reduced" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 14 - ] - }, - "airIRRP500UnitConfigIdleOnCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRRP500UnitConfig", - 15 - ] - }, - "AirIRSCConfigType": { - "tp": "INTEGER", - "values": { - "1": "racs", - "2": "spot", - "3": "in-row" - } - }, - "AirIRSCCapacityControlType": { - "tp": "INTEGER", - "values": { - "1": "discrete", - "2": "proportional" - } - }, - "AirIRSCFanSpeedPreference": { - "tp": "INTEGER", - "values": { - "1": "low", - "2": "med-low", - "3": "med", - "4": "med-high", - "5": "high" - } - }, - "AirIRSCFanSpeedControl": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "airIRSCUnitStatusOperateMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "on", - "3": "idle" - } - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 1 - ] - }, - "airIRSCUnitStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 2 - ] - }, - "airIRSCUnitStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 3 - ] - }, - "airIRSCUnitStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 4 - ] - }, - "airIRSCUnitStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 5 - ] - }, - "airIRSCUnitStatusRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 6 - ] - }, - "airIRSCUnitStatusRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 7 - ] - }, - "airIRSCUnitStatusSupplyAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 8 - ] - }, - "airIRSCUnitStatusSupplyAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 9 - ] - }, - "airIRSCUnitStatusReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 10 - ] - }, - "airIRSCUnitStatusReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 11 - ] - }, - "airIRSCUnitStatusSuctionTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 12 - ] - }, - "airIRSCUnitStatusSuctionTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 13 - ] - }, - "airIRSCUnitStatusSuperheatTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 14 - ] - }, - "airIRSCUnitStatusSuperheatTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 15 - ] - }, - "airIRSCUnitStatusContainmtDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 16 - ] - }, - "airIRSCUnitStatusContainmtDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 17 - ] - }, - "airIRSCUnitStatusFilterDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 18 - ] - }, - "airIRSCUnitStatusFilterDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 19 - ] - }, - "airIRSCUnitStatusSuctionPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 20 - ] - }, - "airIRSCUnitStatusSuctionPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 21 - ] - }, - "airIRSCUnitStatusDischargePressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 22 - ] - }, - "airIRSCUnitStatusDischargePressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 23 - ] - }, - "airIRSCUnitStatusEvaporatorFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 24 - ] - }, - "airIRSCUnitStatusCondenserFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 25 - ] - }, - "airIRSCUnitStatusInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 26 - ] - }, - "airIRSCUnitStatusOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 27 - ] - }, - "airIRSCUnitStatusCondOutletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 28 - ] - }, - "airIRSCUnitStatusCondOutletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 29 - ] - }, - "airIRSCUnitStatusCondInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 30 - ] - }, - "airIRSCUnitStatusCondInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 31 - ] - }, - "airIRSCUnitStatusCompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 32 - ] - }, - "airIRSCUnitStatusLeakSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no-leak", - "2": "leak" - } - }, - "index": null, - "value": [ - "airIRSCUnitStatus", - 33 - ] - }, - "airIRSCUnitIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 1 - ] - }, - "airIRSCUnitIdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 2 - ] - }, - "airIRSCUnitIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 3 - ] - }, - "airIRSCUnitIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 4 - ] - }, - "airIRSCUnitIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 5 - ] - }, - "airIRSCUnitIdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 6 - ] - }, - "airIRSCUnitIdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRSCUnitIdent", - 7 - ] - }, - "airIRSCUnitRunHoursAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 1 - ] - }, - "airIRSCUnitRunHoursEvaporatorFan1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 2 - ] - }, - "airIRSCUnitRunHoursEvaporatorFan2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 3 - ] - }, - "airIRSCUnitRunHoursEvaporatorFan3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 4 - ] - }, - "airIRSCUnitRunHoursCondenserFan1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 5 - ] - }, - "airIRSCUnitRunHoursCondenserFan2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 6 - ] - }, - "airIRSCUnitRunHoursCondenserFan3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 7 - ] - }, - "airIRSCUnitRunHoursFanPowerSupplyLeft": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 8 - ] - }, - "airIRSCUnitRunHoursFanPowerSupplyRight": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 9 - ] - }, - "airIRSCUnitRunHoursCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 10 - ] - }, - "airIRSCUnitRunHoursCompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitRunHours", - 11 - ] - }, - "airIRSCUnitServiceIntervalsAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitServiceIntervals", - 1 - ] - }, - "airIRSCUnitServiceIntervalsAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRSCUnitServiceIntervals", - 2 - ] - }, - "airIRSCUnitThresholdsRackInletHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitThresholds", - 1 - ] - }, - "airIRSCUnitThresholdsRackInletHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitThresholds", - 2 - ] - }, - "airIRSCUnitThresholdsSupplyAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitThresholds", - 3 - ] - }, - "airIRSCUnitThresholdsSupplyAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitThresholds", - 4 - ] - }, - "airIRSCUnitThresholdsReturnAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitThresholds", - 5 - ] - }, - "airIRSCUnitThresholdsReturnAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitThresholds", - 6 - ] - }, - "airIRSCUnitSetptsCoolSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 1 - ] - }, - "airIRSCUnitSetptsCoolSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 2 - ] - }, - "airIRSCUnitSetptsCoolDeadbandUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 3 - ] - }, - "airIRSCUnitSetptsCoolDeadbandMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 4 - ] - }, - "airIRSCUnitSetptsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCFanSpeedPreference" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 5 - ] - }, - "airIRSCUnitSetptsSupplyAirSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 6 - ] - }, - "airIRSCUnitSetptsSupplyAirSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitSetpoints", - 7 - ] - }, - "airIRSCUnitConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCConfigType" - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 1 - ] - }, - "airIRSCUnitConfigCapacityControlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCCapacityControlType" - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 2 - ] - }, - "airIRSCUnitConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 3 - ] - }, - "airIRSCUnitConfigIdleOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 4 - ] - }, - "airIRSCUnitConfigInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 5 - ] - }, - "airIRSCUnitConfigOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 6 - ] - }, - "airIRSCUnitConfigOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "anyAlarm", - "2": "criticalAlarm" - } - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 7 - ] - }, - "airIRSCUnitConfigAltitudeUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 8 - ] - }, - "airIRSCUnitConfigAltitudeMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 9 - ] - }, - "airIRSCUnitConfigOpControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRSCUnitConfig", - 10 - ] - }, - "airIRSCGroupStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 1 - ] - }, - "airIRSCGroupStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 2 - ] - }, - "airIRSCGroupStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 3 - ] - }, - "airIRSCGroupStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 4 - ] - }, - "airIRSCGroupStatusMaxRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 5 - ] - }, - "airIRSCGroupStatusMaxRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 6 - ] - }, - "airIRSCGroupStatusMinRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 7 - ] - }, - "airIRSCGroupStatusMinRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 8 - ] - }, - "airIRSCGroupStatusMaxReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 9 - ] - }, - "airIRSCGroupStatusMaxReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 10 - ] - }, - "airIRSCGroupStatusMinReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 11 - ] - }, - "airIRSCGroupStatusMinReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 12 - ] - }, - "airIRSCGroupStatusActiveFlowControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "under", - "2": "okay", - "3": "over", - "4": "notApplicable" - } - }, - "index": null, - "value": [ - "airIRSCGroupStatus", - 13 - ] - }, - "airIRSCGroupSetptsCoolSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 1 - ] - }, - "airIRSCGroupSetptsCoolSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 2 - ] - }, - "airIRSCGroupSetptsCoolDeadbandUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 3 - ] - }, - "airIRSCGroupSetptsCoolDeadbandMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 4 - ] - }, - "airIRSCGroupSetptsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCFanSpeedPreference" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 5 - ] - }, - "airIRSCGroupSetptsSupplyAirSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 6 - ] - }, - "airIRSCGroupSetptsSupplyAirSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 7 - ] - }, - "airIRSCGroupSetpointsActiveFlowControlBias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "positive", - "2": "slightlyPositive", - "3": "zero", - "4": "slightlyNegative", - "5": "negative" - } - }, - "index": null, - "value": [ - "airIRSCGroupSetpoints", - 8 - ] - }, - "airIRSCGroupConfigNumberofCoolingUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 1 - ] - }, - "airIRSCGroupConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCConfigType" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 2 - ] - }, - "airIRSCGroupConfigCapacityControlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCCapacityControlType" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 3 - ] - }, - "airIRSCGroupConfigAltitudeUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 4 - ] - }, - "airIRSCGroupConfigAltitudeMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 5 - ] - }, - "airIRSCGroupConfigFanSpeedControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRSCFanSpeedControl" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 6 - ] - }, - "airIRSCGroupConfigNumberOfActiveFlowControllers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 7 - ] - }, - "airIRSCGroupConfigActiveFlowControllerLampTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRSCGroupConfig", - 8 - ] - }, - "airIRG2IdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 1 - ] - }, - "airIRG2IdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 2 - ] - }, - "airIRG2IdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 3 - ] - }, - "airIRG2IdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 4 - ] - }, - "airIRG2IdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 5 - ] - }, - "airIRG2IdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 6 - ] - }, - "airIRG2IdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2Ident", - 7 - ] - }, - "airIRG2IdentUnitSysOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "airIRG2Ident", - 8 - ] - }, - "airIRG2IdentGroupSysOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "airIRG2Ident", - 9 - ] - }, - "airIRG2GroupStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 1 - ] - }, - "airIRG2GroupStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 2 - ] - }, - "airIRG2GroupStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 3 - ] - }, - "airIRG2GroupStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 4 - ] - }, - "airIRG2GroupStatusMaxRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 5 - ] - }, - "airIRG2GroupStatusMaxRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 6 - ] - }, - "airIRG2GroupStatusMinRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 7 - ] - }, - "airIRG2GroupStatusMinRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 8 - ] - }, - "airIRG2GroupStatusMaxReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 9 - ] - }, - "airIRG2GroupStatusMaxReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 10 - ] - }, - "airIRG2GroupStatusMinReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 11 - ] - }, - "airIRG2GroupStatusMinReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 12 - ] - }, - "airIRG2GroupStatusActiveFlowControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "under", - "2": "okay", - "3": "over", - "4": "notApplicable" - } - }, - "index": null, - "value": [ - "airIRG2GroupStatus", - 13 - ] - }, - "airIRG2GroupSetptsCoolSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 1 - ] - }, - "airIRG2GroupSetptsCoolSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 2 - ] - }, - "airIRG2GroupSetptsCoolDeadbandUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 3 - ] - }, - "airIRG2GroupSetptsCoolDeadbandMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 4 - ] - }, - "airIRG2GroupSetptsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "low", - "2": "med-low", - "3": "med", - "4": "med-high", - "5": "high" - } - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 5 - ] - }, - "airIRG2GroupSetptsSupplyAirSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 6 - ] - }, - "airIRG2GroupSetptsSupplyAirSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 7 - ] - }, - "airIRG2GroupSetpointsActiveFlowControlBias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "positive", - "2": "slightlyPositive", - "3": "zero", - "4": "slightlyNegative", - "5": "negative" - } - }, - "index": null, - "value": [ - "airIRG2GroupSetpoints", - 8 - ] - }, - "airIRG2GroupConfigNumberofCoolingUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 1 - ] - }, - "airIRG2GroupConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "racs", - "2": "spot", - "3": "in-row", - "4": "hacs", - "5": "cacs" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 2 - ] - }, - "airIRG2GroupConfigCapacityControlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "discrete", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 3 - ] - }, - "airIRG2GroupConfigFanSpeedControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 4 - ] - }, - "airIRG2GroupConfigCoolGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 5 - ] - }, - "airIRG2GroupConfigCoolResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 6 - ] - }, - "airIRG2GroupConfigCoolDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 7 - ] - }, - "airIRG2GroupConfigCoolPIDReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "readBack", - "2": "reset" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 8 - ] - }, - "airIRG2GroupConfigNumberofBackupUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 9 - ] - }, - "airIRG2GroupConfigRuntimeBalancingEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 10 - ] - }, - "airIRG2GroupConfigLoadAssistEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 11 - ] - }, - "airIRG2GroupConfigNumberOfActiveFlowControllers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 12 - ] - }, - "airIRG2GroupConfigActiveFlowControllerLampTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 13 - ] - }, - "airIRG2GroupConfigAltitudeUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 14 - ] - }, - "airIRG2GroupConfigAltitudeMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2GroupConfig", - 15 - ] - }, - "airIRG2AlarmsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2Alarms", - 1 - ] - }, - "AirIRG2AlarmsEntry": { - "tp": "SEQUENCE" - }, - "airIRG2AlarmsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG2AlarmsEntry" - }, - "index": null, - "value": [ - "airIRG2Alarms", - 2 - ] - }, - "airIRG2AlarmsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2AlarmsEntry" - }, - "index": [ - "airIRG2AlarmsIndex" - ], - "value": [ - "airIRG2AlarmsTable", - 1 - ] - }, - "airIRG2AlarmsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2AlarmsEntry", - 1 - ] - }, - "airIRG2AlarmsEventCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2AlarmsEntry", - 2 - ] - }, - "airIRG2AlarmsDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG2AlarmsEntry", - 3 - ] - }, - "AirIRG2RDType2IOState": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "airIRG2RDT2StatusOperateMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "on", - "3": "idle", - "4": "reserved", - "5": "service" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 1 - ] - }, - "airIRG2RDT2StatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 2 - ] - }, - "airIRG2RDT2StatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 3 - ] - }, - "airIRG2RDT2StatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 4 - ] - }, - "airIRG2RDT2StatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 5 - ] - }, - "airIRG2RDT2StatusRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 6 - ] - }, - "airIRG2RDT2StatusRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 7 - ] - }, - "airIRG2RDT2StatusSupplyAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 8 - ] - }, - "airIRG2RDT2StatusSupplyAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 9 - ] - }, - "airIRG2RDT2StatusReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 10 - ] - }, - "airIRG2RDT2StatusReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 11 - ] - }, - "airIRG2RDT2StatusSuctionTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 12 - ] - }, - "airIRG2RDT2StatusSuctionTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 13 - ] - }, - "airIRG2RDT2StatusSuperheatTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 14 - ] - }, - "airIRG2RDT2StatusSuperheatTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 15 - ] - }, - "airIRG2RDT2StatusFilterDPUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 16 - ] - }, - "airIRG2RDT2StatusFilterDPMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 17 - ] - }, - "airIRG2RDT2StatusSuctionPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 18 - ] - }, - "airIRG2RDT2StatusSuctionPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 19 - ] - }, - "airIRG2RDT2StatusDischargePressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 20 - ] - }, - "airIRG2RDT2StatusDischargePressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 21 - ] - }, - "airIRG2RDT2StatusEvaporatorFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 22 - ] - }, - "airIRG2RDT2StatusInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 23 - ] - }, - "airIRG2RDT2StatusOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 24 - ] - }, - "airIRG2RDT2StatusOHEInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 25 - ] - }, - "airIRG2RDT2StatusOHEOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 26 - ] - }, - "airIRG2RDT2StatusCompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 27 - ] - }, - "airIRG2RDT2StatusFluidValvePos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 28 - ] - }, - "airIRG2RDT2StatusHotGasBypassValvePos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 29 - ] - }, - "airIRG2RDT2StatusLeakSensor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no-leak", - "2": "leak" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Status", - 30 - ] - }, - "airIRG2RDT2RunHoursAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 1 - ] - }, - "airIRG2RDT2RunHoursCondensatePump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 2 - ] - }, - "airIRG2RDT2RunHoursCompressor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 3 - ] - }, - "airIRG2RDT2RunHoursFanPSTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 4 - ] - }, - "AirIRG2RDT2RunHoursFanPSEntry": { - "tp": "SEQUENCE" - }, - "airIRG2RDT2RunHoursFanPSTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG2RDT2RunHoursFanPSEntry" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 5 - ] - }, - "airIRG2RDT2RunHoursFanPSEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDT2RunHoursFanPSEntry" - }, - "index": [ - "airIRG2RDT2RunHoursFanPSIndex" - ], - "value": [ - "airIRG2RDT2RunHoursFanPSTable", - 1 - ] - }, - "airIRG2RDT2RunHoursFanPSIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHoursFanPSEntry", - 1 - ] - }, - "airIRG2RDT2RunHoursFanPSHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHoursFanPSEntry", - 2 - ] - }, - "airIRG2RDT2RunHoursFanPSPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "upper", - "2": "lower", - "3": "left", - "4": "right" - } - }, - "index": null, - "value": [ - "airIRG2RDT2RunHoursFanPSEntry", - 3 - ] - }, - "airIRG2RDT2RunHoursEvapFanTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 6 - ] - }, - "AirIRG2RDT2RunHoursEvapFanEntry": { - "tp": "SEQUENCE" - }, - "airIRG2RDT2RunHoursEvapFanTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG2RDT2RunHoursEvapFanEntry" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 7 - ] - }, - "airIRG2RDT2RunHoursEvapFanEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDT2RunHoursEvapFanEntry" - }, - "index": [ - "airIRG2RDT2RunHoursEvapFanIndex" - ], - "value": [ - "airIRG2RDT2RunHoursEvapFanTable", - 1 - ] - }, - "airIRG2RDT2RunHoursEvapFanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHoursEvapFanEntry", - 1 - ] - }, - "airIRG2RDT2RunHoursEvapFanHours": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHoursEvapFanEntry", - 2 - ] - }, - "airIRG2RDT2RunHoursUnit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2RunHours", - 8 - ] - }, - "airIRG2RDT2ServiceIntervalsAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2ServiceIntervals", - 1 - ] - }, - "airIRG2RDT2ServiceIntervalsAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRG2RDT2ServiceIntervals", - 2 - ] - }, - "airIRG2RDT2ThresholdsRackInletHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Thresholds", - 1 - ] - }, - "airIRG2RDT2ThresholdsRackInletHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Thresholds", - 2 - ] - }, - "airIRG2RDT2ThresholdsSupplyAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Thresholds", - 3 - ] - }, - "airIRG2RDT2ThresholdsSupplyAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Thresholds", - 4 - ] - }, - "airIRG2RDT2ThresholdsReturnAirHighTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Thresholds", - 5 - ] - }, - "airIRG2RDT2ThresholdsReturnAirHighTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Thresholds", - 6 - ] - }, - "airIRG2RDT2ConfigUnitType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fluidCooled", - "2": "airCooled" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 1 - ] - }, - "airIRG2RDT2ConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 2 - ] - }, - "airIRG2RDT2ConfigIdleOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 3 - ] - }, - "airIRG2RDT2ConfigInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 4 - ] - }, - "airIRG2RDT2ConfigOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 5 - ] - }, - "airIRG2RDT2ConfigOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "anyAlarm", - "2": "criticalAlarm" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 6 - ] - }, - "airIRG2RDT2ConfigOHEInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG2RDType2IOState" - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 7 - ] - }, - "airIRG2RDT2ConfigUnitRoleOverride": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "forcedOn" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 8 - ] - }, - "airIRG2RDT2ConfigUnitIdleOnCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG2RDT2Config", - 9 - ] - }, - "AirIRmAlarmState": { - "tp": "INTEGER", - "values": { - "1": "ok", - "2": "alarm" - } - }, - "AirIRmControlState": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "AirIRmStopState": { - "tp": "INTEGER", - "values": { - "1": "maybeOn", - "2": "unitOff" - } - }, - "AirIRmActivityState": { - "tp": "INTEGER", - "values": { - "1": "inactive", - "2": "active" - } - }, - "airIRmIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 1 - ] - }, - "airIRmIdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 2 - ] - }, - "airIRmIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 3 - ] - }, - "airIRmIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 4 - ] - }, - "airIRmIdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 5 - ] - }, - "airIRmIdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 6 - ] - }, - "airIRmIdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmIdent", - 7 - ] - }, - "airIRmIdentSysOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "airIRmIdent", - 8 - ] - }, - "airIRmAlarmsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmAlarms", - 1 - ] - }, - "AirIRmAlarmsEntry": { - "tp": "SEQUENCE" - }, - "airIRmAlarmsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRmAlarmsEntry" - }, - "index": null, - "value": [ - "airIRmAlarms", - 2 - ] - }, - "airIRmAlarmsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmsEntry" - }, - "index": [ - "airIRmAlarmsIndex" - ], - "value": [ - "airIRmAlarmsTable", - 1 - ] - }, - "airIRmAlarmsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmAlarmsEntry", - 1 - ] - }, - "airIRmAlarmsEventCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmAlarmsEntry", - 2 - ] - }, - "airIRmAlarmsDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmAlarmsEntry", - 3 - ] - }, - "airIRmPmUnitType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "mc", - "2": "dx", - "3": "cw", - "4": "ch", - "5": "ecoCool", - "6": "msc", - "7": "ge1", - "8": "ge2", - "9": "dualFluid", - "10": "cw2", - "256": "unknown" - } - }, - "index": null, - "value": [ - "airIRmPmCommon1", - 1 - ] - }, - "airIRmPmSwVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRmPmCommon1", - 3 - ] - }, - "airIRmPmBusAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon1", - 5 - ] - }, - "airIRmPmControllerType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "c4000", - "3": "c1001", - "4": "c1002", - "5": "c5000", - "6": "c6000", - "7": "c1010", - "8": "c7000IOC", - "9": "c7000AT", - "10": "c7000PT", - "11": "c5MSC", - "12": "c7000PT2" - } - }, - "index": null, - "value": [ - "airIRmPmCommon1", - 7 - ] - }, - "airIRmPmGeneralError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmCommon1", - 8 - ] - }, - "airIRmPmErrorOnBus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmCommon1", - 9 - ] - }, - "airIRmPmPCStop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmStopState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 1 - ] - }, - "airIRmPmRemoteStop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmStopState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 2 - ] - }, - "airIRmPmLocalStop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmStopState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 3 - ] - }, - "airIRmPmTimerStop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmStopState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 4 - ] - }, - "airIRmPmSeqStop": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmStopState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 5 - ] - }, - "airIRmPmRemoteUPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 7 - ] - }, - "airIRmPmLocalUPS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 8 - ] - }, - "airIRmPmCommonAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 11 - ] - }, - "airIRmPmResetAllAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "doNothing", - "2": "reset" - } - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 12 - ] - }, - "airIRmPmUnitOnOff": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 14 - ] - }, - "airIRmPmMaintenance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notNecessary", - "2": "necessary" - } - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 15 - ] - }, - "airIRmPmUnitTemperatureScale": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 23 - ] - }, - "airIRmPmUnitWinterMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "summer", - "2": "winter" - } - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 24 - ] - }, - "airIRmPmDayNightMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "day", - "2": "night" - } - }, - "index": null, - "value": [ - "airIRmPmCommon2", - 25 - ] - }, - "airIRmPmLastMaintenanceYear": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 1 - ] - }, - "airIRmPmLastMaintenanceMonth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 2 - ] - }, - "airIRmPmLastMaintenanceDay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 3 - ] - }, - "airIRmPmUnitMaintenanceInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 4 - ] - }, - "airIRmPmRuntimeUnit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 5 - ] - }, - "airIRmPmStoptimeUnit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 6 - ] - }, - "airIRmPmRuntimeCooling": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 7 - ] - }, - "airIRmPmRuntimeHeating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 8 - ] - }, - "airIRmPmRuntimeHumidification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 9 - ] - }, - "airIRmPmRuntimeDehumidification": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 10 - ] - }, - "airIRmPmUnitTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 11 - ] - }, - "airIRmPmUnitTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitTemperature", - 1 - ] - }, - "airIRmPmUnitTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitTemperature", - 2 - ] - }, - "airIRmPmUnitHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 12 - ] - }, - "airIRmPmSetpointTemperatureDay": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 14 - ] - }, - "airIRmPmSetpointTemperatureDayC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmSetpointTemperatureDay", - 1 - ] - }, - "airIRmPmSetpointTemperatureDayF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmSetpointTemperatureDay", - 2 - ] - }, - "airIRmPmSetpointTemperatureNight": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 15 - ] - }, - "airIRmPmSetpointTemperatureNightC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmSetpointTemperatureNight", - 1 - ] - }, - "airIRmPmSetpointTemperatureNightF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmSetpointTemperatureNight", - 2 - ] - }, - "airIRmPmSetpointHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 17 - ] - }, - "airIRmPmUnitControlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "room", - "2": "supply", - "3": "room-SupplyLimit", - "4": "supply-RoomLimit" - } - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 24 - ] - }, - "airIRmPmWinterModeStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 29 - ] - }, - "airIRmPmWinterModeStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWinterModeStartTemp", - 1 - ] - }, - "airIRmPmWinterModeStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWinterModeStartTemp", - 2 - ] - }, - "airIRmPmWinterModeHysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 30 - ] - }, - "airIRmPmWinterModeHysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWinterModeHysteresis", - 1 - ] - }, - "airIRmPmWinterModeHysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWinterModeHysteresis", - 2 - ] - }, - "airIRmPmWaterTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 32 - ] - }, - "airIRmPmWaterTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWaterTemperature", - 1 - ] - }, - "airIRmPmWaterTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWaterTemperature", - 2 - ] - }, - "airIRmPmReturnAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 33 - ] - }, - "airIRmPmReturnAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmReturnAirTemperature", - 1 - ] - }, - "airIRmPmReturnAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmReturnAirTemperature", - 2 - ] - }, - "airIRmPmSupplyAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 34 - ] - }, - "airIRmPmSupplyAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmSupplyAirTemperature", - 1 - ] - }, - "airIRmPmSupplyAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmSupplyAirTemperature", - 2 - ] - }, - "airIRmPmReturnAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 35 - ] - }, - "airIRmPmSupplyAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 36 - ] - }, - "airIRmPmOutsideAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 37 - ] - }, - "airIRmPmOutsideAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmOutsideAirTemperature", - 1 - ] - }, - "airIRmPmOutsideAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmOutsideAirTemperature", - 2 - ] - }, - "airIRmPmOutsideAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 38 - ] - }, - "airIRmPmCoolingPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ge", - "2": "cw", - "3": "dx" - } - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 39 - ] - }, - "airIRmPmWaterTemperature2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon3", - 43 - ] - }, - "airIRmPmWaterTemperature2C": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWaterTemperature2", - 1 - ] - }, - "airIRmPmWaterTemperature2F": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmWaterTemperature2", - 2 - ] - }, - "airIRmPmRuntimeFreeCooling": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 44 - ] - }, - "airIRmPmRuntimeMixedModeFreeCooling": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon3", - 45 - ] - }, - "airIRmPmNumberOfCompressors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 4 - ] - }, - "airIRmPmNumberOfSuctionValves": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 5 - ] - }, - "airIRmPmNumberOfDryCoolers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 6 - ] - }, - "airIRmPmNumberOfPumps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 7 - ] - }, - "airIRmPmNumberOfElectricHeaters": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 8 - ] - }, - "airIRmPmNumberOfHumidifiers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 9 - ] - }, - "airIRmPmNumberOfFans": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 10 - ] - }, - "airIRmPmNumberOfLouvers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 11 - ] - }, - "airIRmPmNumberOfSensors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 12 - ] - }, - "airIRmPmNumberOfExternalAlarmInputs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 13 - ] - }, - "airIRmPmNumberOfGECWValves": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 14 - ] - }, - "airIRmPmNumberOfHotGasReheat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 15 - ] - }, - "airIRmPmNumberOfPWWReheat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 16 - ] - }, - "airIRmPmNumberOfDehumidifiers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon4", - 17 - ] - }, - "airIRmPmUnitEvaporationTemperature1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 1 - ] - }, - "airIRmPmUnitEvaporationTemperature1C": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitEvaporationTemperature1", - 1 - ] - }, - "airIRmPmUnitEvaporationTemperature1F": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitEvaporationTemperature1", - 2 - ] - }, - "airIRmPmUnitEvaporationPressure1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 2 - ] - }, - "airIRmPmUnitCondensationTemperature1": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 3 - ] - }, - "airIRmPmUnitCondensationTemperature1C": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitCondensationTemperature1", - 1 - ] - }, - "airIRmPmUnitCondensationTemperature1F": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitCondensationTemperature1", - 2 - ] - }, - "airIRmPmUnitCondensationPressure1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 4 - ] - }, - "airIRmPmMaxLimitReturnAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 8 - ] - }, - "airIRmPmMaxLimitReturnAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMaxLimitReturnAirTemperature", - 1 - ] - }, - "airIRmPmMaxLimitReturnAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMaxLimitReturnAirTemperature", - 2 - ] - }, - "airIRmPmMinLimitReturnAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 9 - ] - }, - "airIRmPmMinLimitReturnAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMinLimitReturnAirTemperature", - 1 - ] - }, - "airIRmPmMinLimitReturnAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMinLimitReturnAirTemperature", - 2 - ] - }, - "airIRmPmMaxLimitSupplyAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 10 - ] - }, - "airIRmPmMaxLimitSupplyAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMaxLimitSupplyAirTemperature", - 1 - ] - }, - "airIRmPmMaxLimitSupplyAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMaxLimitSupplyAirTemperature", - 2 - ] - }, - "airIRmPmMinLimitSupplyAirTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 11 - ] - }, - "airIRmPmMinLimitSupplyAirTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMinLimitSupplyAirTemperature", - 1 - ] - }, - "airIRmPmMinLimitSupplyAirTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMinLimitSupplyAirTemperature", - 2 - ] - }, - "airIRmPmMaxLimitWaterTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 12 - ] - }, - "airIRmPmMaxLimitWaterTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMaxLimitWaterTemperature", - 1 - ] - }, - "airIRmPmMaxLimitWaterTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMaxLimitWaterTemperature", - 2 - ] - }, - "airIRmPmMinLimitWaterTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 13 - ] - }, - "airIRmPmMinLimitWaterTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMinLimitWaterTemperature", - 1 - ] - }, - "airIRmPmMinLimitWaterTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMinLimitWaterTemperature", - 2 - ] - }, - "airIRmPmMaxLimitReturnAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 14 - ] - }, - "airIRmPmMinLimitReturnAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 15 - ] - }, - "airIRmPmMaxLimitSupplyAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 16 - ] - }, - "airIRmPmMinLimitSupplyAirHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 17 - ] - }, - "airIRmPmLowPressureWinterDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 18 - ] - }, - "airIRmPmUnitCondensationPressure2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 19 - ] - }, - "airIRmPmUnitOverloadSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 20 - ] - }, - "airIRmPmUnitCondensationTemperature2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 41 - ] - }, - "airIRmPmUnitCondensationTemperature2C": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitCondensationTemperature2", - 1 - ] - }, - "airIRmPmUnitCondensationTemperature2F": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitCondensationTemperature2", - 2 - ] - }, - "airIRmPmUnitEvaporationPressure2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCommon5", - 42 - ] - }, - "airIRmPmUnitEvaporationTemperature2": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCommon5", - 43 - ] - }, - "airIRmPmUnitEvaporationTemperature2C": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitEvaporationTemperature2", - 1 - ] - }, - "airIRmPmUnitEvaporationTemperature2F": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmUnitEvaporationTemperature2", - 2 - ] - }, - "airIRmPmCmp1ManOperationActive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRmPmCompressor1", - 2 - ] - }, - "airIRmPmCmp1ManOperationState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmCompressor1", - 3 - ] - }, - "airIRmPmCmp1Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmCompressor1", - 4 - ] - }, - "airIRmPmCmp1StartTempSummer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor1", - 17 - ] - }, - "airIRmPmCmp1StartTempSummerK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1StartTempSummer", - 1 - ] - }, - "airIRmPmCmp1StartTempSummerF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1StartTempSummer", - 2 - ] - }, - "airIRmPmCmp1HysteresisSummer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor1", - 18 - ] - }, - "airIRmPmCmp1HysteresisSummerK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1HysteresisSummer", - 1 - ] - }, - "airIRmPmCmp1HysteresisSummerF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1HysteresisSummer", - 2 - ] - }, - "airIRmPmCmp1StartTempWinter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor1", - 19 - ] - }, - "airIRmPmCmp1StartTempWinterK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1StartTempWinter", - 1 - ] - }, - "airIRmPmCmp1StartTempWinterF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1StartTempWinter", - 2 - ] - }, - "airIRmPmCmp1HysteresisWinter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor1", - 20 - ] - }, - "airIRmPmCmp1HysteresisWinterK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1HysteresisWinter", - 1 - ] - }, - "airIRmPmCmp1HysteresisWinterF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp1HysteresisWinter", - 2 - ] - }, - "airIRmPmCmp1Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCompressor1", - 29 - ] - }, - "airIRmPmCmp2ManOperationActive": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRmPmCompressor2", - 2 - ] - }, - "airIRmPmCmp2ManOperationState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmCompressor2", - 3 - ] - }, - "airIRmPmCmp2Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmCompressor2", - 4 - ] - }, - "airIRmPmCmp2StartTempSummer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor2", - 17 - ] - }, - "airIRmPmCmp2StartTempSummerK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2StartTempSummer", - 1 - ] - }, - "airIRmPmCmp2StartTempSummerF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2StartTempSummer", - 2 - ] - }, - "airIRmPmCmp2HysteresisSummer": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor2", - 18 - ] - }, - "airIRmPmCmp2HysteresisSummerK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2HysteresisSummer", - 1 - ] - }, - "airIRmPmCmp2HysteresisSummerF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2HysteresisSummer", - 2 - ] - }, - "airIRmPmCmp2StartTempWinter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor2", - 19 - ] - }, - "airIRmPmCmp2StartTempWinterK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2StartTempWinter", - 1 - ] - }, - "airIRmPmCmp2StartTempWinterF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2StartTempWinter", - 2 - ] - }, - "airIRmPmCmp2HysteresisWinter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmCompressor2", - 20 - ] - }, - "airIRmPmCmp2HysteresisWinterK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2HysteresisWinter", - 1 - ] - }, - "airIRmPmCmp2HysteresisWinterF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCmp2HysteresisWinter", - 2 - ] - }, - "airIRmPmCmp2Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmCompressor2", - 29 - ] - }, - "airIRmPmEheating1ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating1", - 2 - ] - }, - "airIRmPmEheating1Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmEheating1", - 4 - ] - }, - "airIRmPmEheating1ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating1", - 5 - ] - }, - "airIRmPmEheating1Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "pwm" - } - }, - "index": null, - "value": [ - "airIRmPmEheating1", - 9 - ] - }, - "airIRmPmEheating1StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating1", - 10 - ] - }, - "airIRmPmEheating1StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating1StartTemperature", - 1 - ] - }, - "airIRmPmEheating1StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating1StartTemperature", - 2 - ] - }, - "airIRmPmEheating1Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating1", - 11 - ] - }, - "airIRmPmEheating1HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating1Hysteresis", - 1 - ] - }, - "airIRmPmEheating1HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating1Hysteresis", - 2 - ] - }, - "airIRmPmEheating1Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating1", - 17 - ] - }, - "airIRmPmEheating2ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating2", - 2 - ] - }, - "airIRmPmEheating2Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmEheating2", - 4 - ] - }, - "airIRmPmEheating2ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating2", - 5 - ] - }, - "airIRmPmEheating2Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "pwm" - } - }, - "index": null, - "value": [ - "airIRmPmEheating2", - 9 - ] - }, - "airIRmPmEheating2StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating2", - 10 - ] - }, - "airIRmPmEheating2StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating2StartTemperature", - 1 - ] - }, - "airIRmPmEheating2StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating2StartTemperature", - 2 - ] - }, - "airIRmPmEheating2Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating2", - 11 - ] - }, - "airIRmPmEheating2HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating2Hysteresis", - 1 - ] - }, - "airIRmPmEheating2HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating2Hysteresis", - 2 - ] - }, - "airIRmPmEheating2Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating2", - 17 - ] - }, - "airIRmPmEheating3ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating3", - 2 - ] - }, - "airIRmPmEheating3Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmEheating3", - 4 - ] - }, - "airIRmPmEheating3ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating3", - 5 - ] - }, - "airIRmPmEheating3Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "pwm" - } - }, - "index": null, - "value": [ - "airIRmPmEheating3", - 9 - ] - }, - "airIRmPmEheating3StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating3", - 10 - ] - }, - "airIRmPmEheating3StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating3StartTemperature", - 1 - ] - }, - "airIRmPmEheating3StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating3StartTemperature", - 2 - ] - }, - "airIRmPmEheating3Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating3", - 11 - ] - }, - "airIRmPmEheating3HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating3Hysteresis", - 1 - ] - }, - "airIRmPmEheating3HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating3Hysteresis", - 2 - ] - }, - "airIRmPmEheating3Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating3", - 17 - ] - }, - "airIRmPmEheating4ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating4", - 2 - ] - }, - "airIRmPmEheating4Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmEheating4", - 4 - ] - }, - "airIRmPmEheating4ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmEheating4", - 5 - ] - }, - "airIRmPmEheating4Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "pwm" - } - }, - "index": null, - "value": [ - "airIRmPmEheating4", - 9 - ] - }, - "airIRmPmEheating4StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating4", - 10 - ] - }, - "airIRmPmEheating4StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating4StartTemperature", - 1 - ] - }, - "airIRmPmEheating4StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating4StartTemperature", - 2 - ] - }, - "airIRmPmEheating4Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmEheating4", - 11 - ] - }, - "airIRmPmEheating4HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating4Hysteresis", - 1 - ] - }, - "airIRmPmEheating4HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating4Hysteresis", - 2 - ] - }, - "airIRmPmEheating4Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmEheating4", - 17 - ] - }, - "airIRmPmGECWvalveManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalve", - 2 - ] - }, - "airIRmPmGECWvalveStartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmGECWvalve", - 9 - ] - }, - "airIRmPmGECWvalveStartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalveStartTemperature", - 1 - ] - }, - "airIRmPmGECWvalveStartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalveStartTemperature", - 2 - ] - }, - "airIRmPmGECWvalveLinearRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmGECWvalve", - 10 - ] - }, - "airIRmPmGECWvalveLinearRangeK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalveLinearRange", - 1 - ] - }, - "airIRmPmGECWvalveLinearRangeF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalveLinearRange", - 2 - ] - }, - "airIRmPmGECWvalveGEOffTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmGECWvalve", - 12 - ] - }, - "airIRmPmGECWvalveGEOffTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalveGEOffTemp", - 1 - ] - }, - "airIRmPmGECWvalveGEOffTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalveGEOffTemp", - 2 - ] - }, - "airIRmPmGECWvalveOpeningGrade": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalve", - 15 - ] - }, - "airIRmPmGECWvalveManOpOpeningGrade": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGECWvalve", - 16 - ] - }, - "airIRmPmGvalveManOperationEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmGvalve", - 2 - ] - }, - "airIRmPmGvalvePreOpeningTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGvalve", - 11 - ] - }, - "airIRmPmGvalvePreOpeningGrade": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGvalve", - 12 - ] - }, - "airIRmPmGvalveOpeningGrade": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGvalve", - 13 - ] - }, - "airIRmPmGvalveManOpOpeningGrade": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmGvalve", - 14 - ] - }, - "airIRmPmDrycooler1ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1", - 2 - ] - }, - "airIRmPmDrycooler1Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1", - 3 - ] - }, - "airIRmPmDrycooler1ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1", - 5 - ] - }, - "airIRmPmDrycooler1WinterStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler1", - 9 - ] - }, - "airIRmPmDrycooler1WinterStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1WinterStartTemp", - 1 - ] - }, - "airIRmPmDrycooler1WinterStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1WinterStartTemp", - 2 - ] - }, - "airIRmPmDrycooler1SummerStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler1", - 10 - ] - }, - "airIRmPmDrycooler1SummerStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1SummerStartTemp", - 1 - ] - }, - "airIRmPmDrycooler1SummerStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1SummerStartTemp", - 2 - ] - }, - "airIRmPmDrycooler1Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler1", - 11 - ] - }, - "airIRmPmDrycooler1HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1Hysteresis", - 1 - ] - }, - "airIRmPmDrycooler1HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1Hysteresis", - 2 - ] - }, - "airIRmPmDrycooler1Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler1", - 16 - ] - }, - "airIRmPmDrycooler2ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2", - 2 - ] - }, - "airIRmPmDrycooler2Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2", - 3 - ] - }, - "airIRmPmDrycooler2ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2", - 5 - ] - }, - "airIRmPmDrycooler2WinterStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler2", - 9 - ] - }, - "airIRmPmDrycooler2WinterStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2WinterStartTemp", - 1 - ] - }, - "airIRmPmDrycooler2WinterStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2WinterStartTemp", - 2 - ] - }, - "airIRmPmDrycooler2SummerStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler2", - 10 - ] - }, - "airIRmPmDrycooler2SummerStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2SummerStartTemp", - 1 - ] - }, - "airIRmPmDrycooler2SummerStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2SummerStartTemp", - 2 - ] - }, - "airIRmPmDrycooler2Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler2", - 11 - ] - }, - "airIRmPmDrycooler2HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2Hysteresis", - 1 - ] - }, - "airIRmPmDrycooler2HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2Hysteresis", - 2 - ] - }, - "airIRmPmDrycooler2Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler2", - 16 - ] - }, - "airIRmPmDrycooler3ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3", - 2 - ] - }, - "airIRmPmDrycooler3Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3", - 3 - ] - }, - "airIRmPmDrycooler3ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3", - 5 - ] - }, - "airIRmPmDrycooler3WinterStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler3", - 9 - ] - }, - "airIRmPmDrycooler3WinterStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3WinterStartTemp", - 1 - ] - }, - "airIRmPmDrycooler3WinterStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3WinterStartTemp", - 2 - ] - }, - "airIRmPmDrycooler3SummerStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler3", - 10 - ] - }, - "airIRmPmDrycooler3SummerStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3SummerStartTemp", - 1 - ] - }, - "airIRmPmDrycooler3SummerStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3SummerStartTemp", - 2 - ] - }, - "airIRmPmDrycooler3Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler3", - 11 - ] - }, - "airIRmPmDrycooler3HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3Hysteresis", - 1 - ] - }, - "airIRmPmDrycooler3HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3Hysteresis", - 2 - ] - }, - "airIRmPmDrycooler3Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler3", - 16 - ] - }, - "airIRmPmDrycooler4ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4", - 2 - ] - }, - "airIRmPmDrycooler4Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4", - 3 - ] - }, - "airIRmPmDrycooler4ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4", - 5 - ] - }, - "airIRmPmDrycooler4WinterStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler4", - 9 - ] - }, - "airIRmPmDrycooler4WinterStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4WinterStartTemp", - 1 - ] - }, - "airIRmPmDrycooler4WinterStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4WinterStartTemp", - 2 - ] - }, - "airIRmPmDrycooler4SummerStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler4", - 10 - ] - }, - "airIRmPmDrycooler4SummerStartTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4SummerStartTemp", - 1 - ] - }, - "airIRmPmDrycooler4SummerStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4SummerStartTemp", - 2 - ] - }, - "airIRmPmDrycooler4Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDrycooler4", - 11 - ] - }, - "airIRmPmDrycooler4HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4Hysteresis", - 1 - ] - }, - "airIRmPmDrycooler4HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4Hysteresis", - 2 - ] - }, - "airIRmPmDrycooler4Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDrycooler4", - 16 - ] - }, - "airIRmPmPump1ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 2 - ] - }, - "airIRmPmPump1Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 3 - ] - }, - "airIRmPmPump1ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 6 - ] - }, - "airIRmPmPump1StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump1", - 10 - ] - }, - "airIRmPmPump1StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1StartTemperature", - 1 - ] - }, - "airIRmPmPump1StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1StartTemperature", - 2 - ] - }, - "airIRmPmPump1Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump1", - 11 - ] - }, - "airIRmPmPump1HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1Hysteresis", - 1 - ] - }, - "airIRmPmPump1HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1Hysteresis", - 2 - ] - }, - "airIRmPmPump1LinearRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump1", - 12 - ] - }, - "airIRmPmPump1LinearRangeK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1LinearRange", - 1 - ] - }, - "airIRmPmPump1LinearRangeF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1LinearRange", - 2 - ] - }, - "airIRmPmPump1PressureSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 13 - ] - }, - "airIRmPmPump1Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 21 - ] - }, - "airIRmPmPump1Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 22 - ] - }, - "airIRmPmPump1ControlCycle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 28 - ] - }, - "airIRmPmPump1MaxAdjust": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 29 - ] - }, - "airIRmPmPump1ControlFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump1", - 30 - ] - }, - "airIRmPmPump2ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 2 - ] - }, - "airIRmPmPump2Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 3 - ] - }, - "airIRmPmPump2ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 6 - ] - }, - "airIRmPmPump2StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump2", - 10 - ] - }, - "airIRmPmPump2StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2StartTemperature", - 1 - ] - }, - "airIRmPmPump2StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2StartTemperature", - 2 - ] - }, - "airIRmPmPump2Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump2", - 11 - ] - }, - "airIRmPmPump2HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2Hysteresis", - 1 - ] - }, - "airIRmPmPump2HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2Hysteresis", - 2 - ] - }, - "airIRmPmPump2LinearRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump2", - 12 - ] - }, - "airIRmPmPump2LinearRangeK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2LinearRange", - 1 - ] - }, - "airIRmPmPump2LinearRangeF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2LinearRange", - 2 - ] - }, - "airIRmPmPump2PressureSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 13 - ] - }, - "airIRmPmPump2Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 21 - ] - }, - "airIRmPmPump2Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 22 - ] - }, - "airIRmPmPump2ControlCycle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 28 - ] - }, - "airIRmPmPump2MaxAdjust": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 29 - ] - }, - "airIRmPmPump2ControlFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump2", - 30 - ] - }, - "airIRmPmPump3ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 2 - ] - }, - "airIRmPmPump3Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 3 - ] - }, - "airIRmPmPump3ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 6 - ] - }, - "airIRmPmPump3StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump3", - 10 - ] - }, - "airIRmPmPump3StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3StartTemperature", - 1 - ] - }, - "airIRmPmPump3StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3StartTemperature", - 2 - ] - }, - "airIRmPmPump3Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump3", - 11 - ] - }, - "airIRmPmPump3HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3Hysteresis", - 1 - ] - }, - "airIRmPmPump3HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3Hysteresis", - 2 - ] - }, - "airIRmPmPump3LinearRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump3", - 12 - ] - }, - "airIRmPmPump3LinearRangeK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3LinearRange", - 1 - ] - }, - "airIRmPmPump3LinearRangeF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3LinearRange", - 2 - ] - }, - "airIRmPmPump3PressureSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 13 - ] - }, - "airIRmPmPump3Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 21 - ] - }, - "airIRmPmPump3Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 22 - ] - }, - "airIRmPmPump3ControlCycle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 28 - ] - }, - "airIRmPmPump3MaxAdjust": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 29 - ] - }, - "airIRmPmPump3ControlFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump3", - 30 - ] - }, - "airIRmPmPump4ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 2 - ] - }, - "airIRmPmPump4Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 3 - ] - }, - "airIRmPmPump4ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 6 - ] - }, - "airIRmPmPump4StartTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump4", - 10 - ] - }, - "airIRmPmPump4StartTemperatureK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4StartTemperature", - 1 - ] - }, - "airIRmPmPump4StartTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4StartTemperature", - 2 - ] - }, - "airIRmPmPump4Hysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump4", - 11 - ] - }, - "airIRmPmPump4HysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4Hysteresis", - 1 - ] - }, - "airIRmPmPump4HysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4Hysteresis", - 2 - ] - }, - "airIRmPmPump4LinearRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPump4", - 12 - ] - }, - "airIRmPmPump4LinearRangeK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4LinearRange", - 1 - ] - }, - "airIRmPmPump4LinearRangeF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4LinearRange", - 2 - ] - }, - "airIRmPmPump4PressureSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 13 - ] - }, - "airIRmPmPump4Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 21 - ] - }, - "airIRmPmPump4Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 22 - ] - }, - "airIRmPmPump4ControlCycle": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 28 - ] - }, - "airIRmPmPump4MaxAdjust": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 29 - ] - }, - "airIRmPmPump4ControlFactor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPump4", - 30 - ] - }, - "airIRmPmHotgasHeatRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmHotgasHeating", - 3 - ] - }, - "airIRmPmPWWHeatingManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPWWHeating", - 2 - ] - }, - "airIRmPmPWWHeatingRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPWWHeating", - 3 - ] - }, - "airIRmPmPWWHeatingManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmPWWHeating", - 4 - ] - }, - "airIRmPmPWWHeatingType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "undefined" - } - }, - "index": null, - "value": [ - "airIRmPmPWWHeating", - 9 - ] - }, - "airIRmPmPWWHeatingStartTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPWWHeating", - 10 - ] - }, - "airIRmPmPWWHeatingStartTempK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeatingStartTemp", - 1 - ] - }, - "airIRmPmPWWHeatingStartTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeatingStartTemp", - 2 - ] - }, - "airIRmPmPWWHeatingHysteresis": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPWWHeating", - 12 - ] - }, - "airIRmPmPWWHeatingHysteresisK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeatingHysteresis", - 1 - ] - }, - "airIRmPmPWWHeatingHysteresisF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeatingHysteresis", - 2 - ] - }, - "airIRmPmPWWHeatingLinearRange": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmPWWHeating", - 13 - ] - }, - "airIRmPmPWWHeatingLinearRangeK": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeatingLinearRange", - 1 - ] - }, - "airIRmPmPWWHeatingLinearRangeF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeatingLinearRange", - 2 - ] - }, - "airIRmPmPWWHeatingCurrentValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeating", - 16 - ] - }, - "airIRmPmPWWHeatingManOpValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmPWWHeating", - 17 - ] - }, - "airIRmPmHumidifier1ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 2 - ] - }, - "airIRmPmHumidifier1Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 3 - ] - }, - "airIRmPmHumidifier1ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 5 - ] - }, - "airIRmPmHumidifier1Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 17 - ] - }, - "airIRmPmHumidifier1StartHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 18 - ] - }, - "airIRmPmHumidifier1Hysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 20 - ] - }, - "airIRmPmHumidifier1LinearRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 21 - ] - }, - "airIRmPmHumidifier1Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 27 - ] - }, - "airIRmPmHumidifier1CurrentValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 28 - ] - }, - "airIRmPmHumidifier1ManOpValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier1", - 29 - ] - }, - "airIRmPmHumidifier2ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 2 - ] - }, - "airIRmPmHumidifier2Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 3 - ] - }, - "airIRmPmHumidifier2ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 5 - ] - }, - "airIRmPmHumidifier2Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 17 - ] - }, - "airIRmPmHumidifier2StartHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 18 - ] - }, - "airIRmPmHumidifier2Hysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 20 - ] - }, - "airIRmPmHumidifier2LinearRange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 21 - ] - }, - "airIRmPmHumidifier2Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 27 - ] - }, - "airIRmPmHumidifier2CurrentValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 28 - ] - }, - "airIRmPmHumidifier2ManOpValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmHumidifier2", - 29 - ] - }, - "airIRmPmDehumidificManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDehumidification", - 2 - ] - }, - "airIRmPmDehumidificRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmControlState" - }, - "index": null, - "value": [ - "airIRmPmDehumidification", - 3 - ] - }, - "airIRmPmDehumidificManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmDehumidification", - 5 - ] - }, - "airIRmPmDehumidificStartHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidification", - 10 - ] - }, - "airIRmPmDehumidificHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidification", - 12 - ] - }, - "airIRmPmDehumidificMinWaterTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDehumidification", - 18 - ] - }, - "airIRmPmDehumidificMinWaterTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidificMinWaterTemp", - 1 - ] - }, - "airIRmPmDehumidificMinWaterTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidificMinWaterTemp", - 2 - ] - }, - "airIRmPmDehumidificMaxWaterTemp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmDehumidification", - 19 - ] - }, - "airIRmPmDehumidificMaxWaterTempC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidificMaxWaterTemp", - 1 - ] - }, - "airIRmPmDehumidificMaxWaterTempF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidificMaxWaterTemp", - 2 - ] - }, - "airIRmPmDehumidificRuntime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmDehumidification", - 21 - ] - }, - "airIRmPmFan1ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan1", - 2 - ] - }, - "airIRmPmFan1Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan1", - 3 - ] - }, - "airIRmPmFan1ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan1", - 6 - ] - }, - "airIRmPmFan1Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRmPmFan1", - 9 - ] - }, - "airIRmPmFan1Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan1", - 32 - ] - }, - "airIRmPmFan1Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan1", - 33 - ] - }, - "airIRmPmFan1ManOpSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan1", - 34 - ] - }, - "airIRmPmFan2ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan2", - 2 - ] - }, - "airIRmPmFan2Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan2", - 3 - ] - }, - "airIRmPmFan2ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan2", - 6 - ] - }, - "airIRmPmFan2Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRmPmFan2", - 9 - ] - }, - "airIRmPmFan2Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan2", - 32 - ] - }, - "airIRmPmFan2Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan2", - 33 - ] - }, - "airIRmPmFan2ManOpSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan2", - 34 - ] - }, - "airIRmPmFan3ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan3", - 2 - ] - }, - "airIRmPmFan3Running": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan3", - 3 - ] - }, - "airIRmPmFan3ManOpRunning": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmFan3", - 6 - ] - }, - "airIRmPmFan3Type": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRmPmFan3", - 9 - ] - }, - "airIRmPmFan3Runtime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan3", - 32 - ] - }, - "airIRmPmFan3Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan3", - 33 - ] - }, - "airIRmPmFan3ManOpSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmFan3", - 34 - ] - }, - "airIRmPmLouver1ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmLouver1", - 2 - ] - }, - "airIRmPmLouver1Position": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "airIRmPmLouver1", - 3 - ] - }, - "airIRmPmLouver1ManOpPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "airIRmPmLouver1", - 4 - ] - }, - "airIRmPmLouver2ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmLouver2", - 2 - ] - }, - "airIRmPmLouver2Position": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "airIRmPmLouver2", - 3 - ] - }, - "airIRmPmLouver2ManOpPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "airIRmPmLouver2", - 4 - ] - }, - "airIRmPmLouver3ManOpEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmLouver3", - 2 - ] - }, - "airIRmPmLouver3Position": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "airIRmPmLouver3", - 3 - ] - }, - "airIRmPmLouver3ManOpPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "closed", - "2": "open" - } - }, - "index": null, - "value": [ - "airIRmPmLouver3", - 4 - ] - }, - "airIRmPmFan1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 1 - ] - }, - "airIRmPmFan2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 2 - ] - }, - "airIRmPmFan3Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 3 - ] - }, - "airIRmPmCompressor1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 4 - ] - }, - "airIRmPmCompressor2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 5 - ] - }, - "airIRmPmWaterDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 6 - ] - }, - "airIRmPmPhaseFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 7 - ] - }, - "airIRmPmFireSmokeDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 8 - ] - }, - "airIRmPmReturnAirTemperatureTooHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 9 - ] - }, - "airIRmPmReturnAirHumidityTooHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 10 - ] - }, - "airIRmPmSupplyAirTemperatureTooHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 11 - ] - }, - "airIRmPmSupplyAirHumidityTooHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 12 - ] - }, - "airIRmPmWaterTemperatureTooHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 13 - ] - }, - "airIRmPmReturnAirTemperatureTooLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 14 - ] - }, - "airIRmPmReturnAirHumidityTooLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 15 - ] - }, - "airIRmPmSupplyAirTemperatureTooLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 16 - ] - }, - "airIRmPmSupplyAirHumidityTooLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 17 - ] - }, - "airIRmPmWaterTemperatureTooLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 18 - ] - }, - "airIRmPmSensor1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 19 - ] - }, - "airIRmPmSensor2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 20 - ] - }, - "airIRmPmSensor3Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 21 - ] - }, - "airIRmPmSensor4Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 22 - ] - }, - "airIRmPmSensor5Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 23 - ] - }, - "airIRmPmSensor6Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 24 - ] - }, - "airIRmPmSensor7Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 25 - ] - }, - "airIRmPmSensor8Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 26 - ] - }, - "airIRmPmSensor9Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 27 - ] - }, - "airIRmPmSensor10Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 28 - ] - }, - "airIRmPmSensor11Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 29 - ] - }, - "airIRmPmSensor12Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 30 - ] - }, - "airIRmPmSensor13Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 31 - ] - }, - "airIRmPmSensor14Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 32 - ] - }, - "airIRmPmSensor15Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 33 - ] - }, - "airIRmPmSensor16Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 34 - ] - }, - "airIRmPmSensor17Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 35 - ] - }, - "airIRmPmSensor18Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 36 - ] - }, - "airIRmPmSensor19Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 37 - ] - }, - "airIRmPmSensor20Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 38 - ] - }, - "airIRmPmSensor21Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 39 - ] - }, - "airIRmPmSensor1Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 40 - ] - }, - "airIRmPmSensor2Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 41 - ] - }, - "airIRmPmSensor3Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 42 - ] - }, - "airIRmPmSensor4Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 43 - ] - }, - "airIRmPmSensor5Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 44 - ] - }, - "airIRmPmSensor6Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 45 - ] - }, - "airIRmPmSensor7Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 46 - ] - }, - "airIRmPmSensor8Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 47 - ] - }, - "airIRmPmSensor9Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 48 - ] - }, - "airIRmPmSensor10Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 49 - ] - }, - "airIRmPmSensor11Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 50 - ] - }, - "airIRmPmSensor12Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 51 - ] - }, - "airIRmPmSensor13Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 52 - ] - }, - "airIRmPmSensor14Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 53 - ] - }, - "airIRmPmSensor15Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 54 - ] - }, - "airIRmPmSensor16Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 55 - ] - }, - "airIRmPmSensor17Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 56 - ] - }, - "airIRmPmSensor18Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 57 - ] - }, - "airIRmPmSensor19Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 58 - ] - }, - "airIRmPmSensor20Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 59 - ] - }, - "airIRmPmSensor21Defect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 60 - ] - }, - "airIRmPmCompressor1Alarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 61 - ] - }, - "airIRmPmCompressor2Alarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 62 - ] - }, - "airIRmPmCompressor1LowPressure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 63 - ] - }, - "airIRmPmCompressor2LowPressure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 64 - ] - }, - "airIRmPmReheat1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 65 - ] - }, - "airIRmPmReheat2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 66 - ] - }, - "airIRmPmReheat3Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 67 - ] - }, - "airIRmPmReheat4Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 68 - ] - }, - "airIRmPmDrycooler1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 69 - ] - }, - "airIRmPmDrycooler2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 70 - ] - }, - "airIRmPmDrycooler3Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 71 - ] - }, - "airIRmPmDrycooler4Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 72 - ] - }, - "airIRmPmPump1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 73 - ] - }, - "airIRmPmPump2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 74 - ] - }, - "airIRmPmPump3Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 75 - ] - }, - "airIRmPmPump4Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 76 - ] - }, - "airIRmPmHumidifier1Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 77 - ] - }, - "airIRmPmHumidifier2Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 78 - ] - }, - "airIRmPmHumidifier3Failure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 79 - ] - }, - "airIRmPmHumidifier1Alarm5us": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 80 - ] - }, - "airIRmPmHumidifier2Alarm5us": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 81 - ] - }, - "airIRmPmHumidifier3Alarm5us": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 82 - ] - }, - "airIRmPmHumidifier1Alarm20us": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 83 - ] - }, - "airIRmPmHumidifier2Alarm20us": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 84 - ] - }, - "airIRmPmHumidifier3Alarm20us": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 85 - ] - }, - "airIRmPmFan1Alarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 86 - ] - }, - "airIRmPmFan2Alarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 87 - ] - }, - "airIRmPmFan3Alarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 88 - ] - }, - "airIRmPmFilter1Clogged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 89 - ] - }, - "airIRmPmFilter2Clogged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 90 - ] - }, - "airIRmPmFilter3Clogged": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 91 - ] - }, - "airIRmPmAuxiliaryAlarm1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 92 - ] - }, - "airIRmPmAuxiliaryAlarm2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 93 - ] - }, - "airIRmPmAuxiliaryAlarm3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 94 - ] - }, - "airIRmPmAuxiliaryAlarm4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 95 - ] - }, - "airIRmPmAuxiliaryAlarm5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 96 - ] - }, - "airIRmPmAuxiliaryAlarm6": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 97 - ] - }, - "airIRmPmAuxiliaryAlarm7": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 98 - ] - }, - "airIRmPmAuxiliaryAlarm8": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 99 - ] - }, - "airIRmPmAuxiliaryAlarm9": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 100 - ] - }, - "airIRmPmAuxiliaryAlarm10": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 101 - ] - }, - "airIRmPmHotGasHeatingAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 102 - ] - }, - "airIRmPmEEV1PressureSensorError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 103 - ] - }, - "airIRmPmEEV1TemperatureSensorError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 104 - ] - }, - "airIRmPmEEV1StepperMotorError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 105 - ] - }, - "airIRmPmEEV2PressureSensorError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 106 - ] - }, - "airIRmPmEEV2TemperatureSensorError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 107 - ] - }, - "airIRmPmEEV2StepperMotorError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmAlarmState" - }, - "index": null, - "value": [ - "airIRmPmAlarmBits", - 108 - ] - }, - "airIRmPmMyZoneNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZone", - 1 - ] - }, - "airIRmPmMyZoneRoomTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmMyZone", - 2 - ] - }, - "airIRmPmMyZoneRoomTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZoneRoomTemperature", - 1 - ] - }, - "airIRmPmMyZoneRoomTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZoneRoomTemperature", - 2 - ] - }, - "airIRmPmMyZoneRoomHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZone", - 3 - ] - }, - "airIRmPmMyZoneSupplyTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmMyZone", - 4 - ] - }, - "airIRmPmMyZoneSupplyTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZoneSupplyTemperature", - 1 - ] - }, - "airIRmPmMyZoneSupplyTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZoneSupplyTemperature", - 2 - ] - }, - "airIRmPmMyZoneSupplyHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZone", - 5 - ] - }, - "airIRmPmMyZoneSequencingTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZone", - 6 - ] - }, - "airIRmPmMyZoneNumberOfErrorUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZone", - 7 - ] - }, - "airIRmPmMyZoneEmergencyTemperature": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "airIRmPmMyZone", - 8 - ] - }, - "airIRmPmMyZoneEmergencyTemperatureC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZoneEmergencyTemperature", - 1 - ] - }, - "airIRmPmMyZoneEmergencyTemperatureF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRmPmMyZoneEmergencyTemperature", - 2 - ] - }, - "airIRmPmMyZoneCWEnergySaveMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmMyZone", - 9 - ] - }, - "airIRmPmGlobalZoneDataEmergencyOpMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRmActivityState" - }, - "index": null, - "value": [ - "airIRmPmGlobalZoneData", - 1 - ] - }, - "airIRG3IdentTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3Ident", - 1 - ] - }, - "AirIRG3IdentEntry": { - "tp": "SEQUENCE" - }, - "airIRG3IdentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3IdentEntry" - }, - "index": null, - "value": [ - "airIRG3Ident", - 2 - ] - }, - "airIRG3IdentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3IdentEntry" - }, - "index": [ - "airIRG3IdentIndex" - ], - "value": [ - "airIRG3IdentTable", - 1 - ] - }, - "airIRG3IdentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 1 - ] - }, - "airIRG3IdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 2 - ] - }, - "airIRG3IdentLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 3 - ] - }, - "airIRG3IdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 4 - ] - }, - "airIRG3IdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 5 - ] - }, - "airIRG3IdentFirmwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 6 - ] - }, - "airIRG3IdentHardwareRevision": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 7 - ] - }, - "airIRG3IdentManufactureDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 8 - ] - }, - "airIRG3IdentRDUSysOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 9 - ] - }, - "airIRG3IdentCMSysOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 10 - ] - }, - "airIRG3IdentGroupSysOID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "airIRG3IdentEntry", - 11 - ] - }, - "airIRG3GroupTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3Group", - 1 - ] - }, - "AirIRG3GroupStatusEntry": { - "tp": "SEQUENCE" - }, - "airIRG3GroupStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3GroupStatusEntry" - }, - "index": null, - "value": [ - "airIRG3Group", - 2 - ] - }, - "airIRG3GroupStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3GroupStatusEntry" - }, - "index": [ - "airIRG3GroupStatusIndex" - ], - "value": [ - "airIRG3GroupStatusTable", - 1 - ] - }, - "airIRG3GroupStatusIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 1 - ] - }, - "airIRG3GroupStatusCoolOutput": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 2 - ] - }, - "airIRG3GroupStatusCoolDemand": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 3 - ] - }, - "airIRG3GroupStatusAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 4 - ] - }, - "airIRG3GroupStatusAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 5 - ] - }, - "airIRG3GroupStatusMaxRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 6 - ] - }, - "airIRG3GroupStatusMaxRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 7 - ] - }, - "airIRG3GroupStatusMinRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 8 - ] - }, - "airIRG3GroupStatusMinRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 9 - ] - }, - "airIRG3GroupStatusMaxReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 10 - ] - }, - "airIRG3GroupStatusMaxReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 11 - ] - }, - "airIRG3GroupStatusMinReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 12 - ] - }, - "airIRG3GroupStatusMinReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 13 - ] - }, - "airIRG3GroupStatusAvgSupplyTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 14 - ] - }, - "airIRG3GroupStatusAvgSupplyTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 15 - ] - }, - "airIRG3GroupStatusAvgReturnTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 16 - ] - }, - "airIRG3GroupStatusAvgReturnTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 17 - ] - }, - "airIRG3GroupStatusAvgFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 18 - ] - }, - "airIRG3GroupStatusAvgAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 19 - ] - }, - "airIRG3GroupStatusAvgAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 20 - ] - }, - "airIRG3GroupStatusTotalAirFlowUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 21 - ] - }, - "airIRG3GroupStatusTotalAirFlowMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupStatusEntry", - 22 - ] - }, - "AirIRG3GroupSetpointsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3GroupSetpointsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3GroupSetpointsEntry" - }, - "index": null, - "value": [ - "airIRG3Group", - 3 - ] - }, - "airIRG3GroupSetpointsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3GroupSetpointsEntry" - }, - "index": [ - "airIRG3GroupSetpointsIndex" - ], - "value": [ - "airIRG3GroupSetpointsTable", - 1 - ] - }, - "airIRG3GroupSetpointsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 1 - ] - }, - "airIRG3GroupSetpointsCoolSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 2 - ] - }, - "airIRG3GroupSetpointsCoolSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 3 - ] - }, - "airIRG3GroupSetpointsCoolDeadbandUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 4 - ] - }, - "airIRG3GroupSetpointsCoolDeadbandMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 5 - ] - }, - "airIRG3GroupSetpointsFanSpeedPreference": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "low", - "2": "med-low", - "3": "med", - "4": "med-high", - "5": "high" - } - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 6 - ] - }, - "airIRG3GroupSetpointsSupplyAirSetpointUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 7 - ] - }, - "airIRG3GroupSetpointsSupplyAirSetpointMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 8 - ] - }, - "airIRG3GroupSetpointsAirFlowControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 9 - ] - }, - "airIRG3GroupSetpointsLightingOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupSetpointsEntry", - 10 - ] - }, - "AirIRG3GroupConfigEntry": { - "tp": "SEQUENCE" - }, - "airIRG3GroupConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3GroupConfigEntry" - }, - "index": null, - "value": [ - "airIRG3Group", - 4 - ] - }, - "airIRG3GroupConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3GroupConfigEntry" - }, - "index": [ - "airIRG3GroupConfigIndex" - ], - "value": [ - "airIRG3GroupConfigTable", - 1 - ] - }, - "airIRG3GroupConfigIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 1 - ] - }, - "airIRG3GroupConfigNumberofCoolingUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 2 - ] - }, - "airIRG3GroupConfigConfigurationType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "racs", - "2": "spot", - "3": "in-row", - "4": "hacs" - } - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 3 - ] - }, - "airIRG3GroupConfigCapacityControlType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "discrete", - "2": "proportional" - } - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 4 - ] - }, - "airIRG3GroupConfigFanSpeedControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "automatic", - "2": "manual" - } - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 5 - ] - }, - "airIRG3GroupConfigCoolGainP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 6 - ] - }, - "airIRG3GroupConfigCoolResetRateI": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 7 - ] - }, - "airIRG3GroupConfigCoolDerivativeD": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 8 - ] - }, - "airIRG3GroupConfigCoolPIDReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "readBack", - "2": "reset" - } - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 9 - ] - }, - "airIRG3GroupConfigNumberofBackupUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 10 - ] - }, - "airIRG3GroupConfigRuntimeBalancingEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 11 - ] - }, - "airIRG3GroupConfigLoadAssistEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRG3GroupConfigEntry", - 12 - ] - }, - "airIRG3AlarmsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3Alarms", - 1 - ] - }, - "AirIRG3AlarmsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3AlarmsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3AlarmsEntry" - }, - "index": null, - "value": [ - "airIRG3Alarms", - 2 - ] - }, - "airIRG3AlarmsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3AlarmsEntry" - }, - "index": [ - "airIRG3AlarmsIndex" - ], - "value": [ - "airIRG3AlarmsTable", - 1 - ] - }, - "airIRG3AlarmsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3AlarmsEntry", - 1 - ] - }, - "airIRG3AlarmsEventCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3AlarmsEntry", - 2 - ] - }, - "airIRG3AlarmsDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3AlarmsEntry", - 3 - ] - }, - "airIRG3RDUTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDU", - 1 - ] - }, - "AirIRG3RDUStatusEntry": { - "tp": "SEQUENCE" - }, - "airIRG3RDUStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3RDUStatusEntry" - }, - "index": null, - "value": [ - "airIRG3RDU", - 2 - ] - }, - "airIRG3RDUStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3RDUStatusEntry" - }, - "index": [ - "airIRG3RDUStatusDeviceIndex" - ], - "value": [ - "airIRG3RDUStatusTable", - 1 - ] - }, - "airIRG3RDUStatusDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 1 - ] - }, - "airIRG3RDUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 2 - ] - }, - "airIRG3RDUStatusOnReadyStandby": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "ready", - "3": "on" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 3 - ] - }, - "airIRG3RDUStatusOperatingMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "ready", - "3": "on", - "4": "stop", - "5": "maintenancemode" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 4 - ] - }, - "airIRG3RDUStatusLeadPump": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "pump1", - "2": "pump2" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 5 - ] - }, - "airIRG3RDUStatusStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 6 - ] - }, - "airIRG3RDUStatusPumpChangeOverInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 7 - ] - }, - "airIRG3RDUStatusStopOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 8 - ] - }, - "airIRG3RDUStatusPowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "singleFeed", - "2": "dualFeed" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 9 - ] - }, - "airIRG3RDUStatusTotalRDUOutputPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 10 - ] - }, - "airIRG3RDUStatusInletWaterTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 11 - ] - }, - "airIRG3RDUStatusInletWaterTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 12 - ] - }, - "airIRG3RDUStatusOutletWaterTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 13 - ] - }, - "airIRG3RDUStatusOutletWaterTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 14 - ] - }, - "airIRG3RDUStatusCondenserSaturationTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 15 - ] - }, - "airIRG3RDUStatusCondenserSaturationTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 16 - ] - }, - "airIRG3RDUStatusDewPointTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 17 - ] - }, - "airIRG3RDUStatusDewPointTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 18 - ] - }, - "airIRG3RDUStatusPumpOutletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 19 - ] - }, - "airIRG3RDUStatusPumpOutletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 20 - ] - }, - "airIRG3RDUStatusSubcoolerOutletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 21 - ] - }, - "airIRG3RDUStatusSubcoolerOutletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 22 - ] - }, - "airIRG3RDUStatusCondenserOutletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 23 - ] - }, - "airIRG3RDUStatusCondenserOutletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 24 - ] - }, - "airIRG3RDUStatusCondenserInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 25 - ] - }, - "airIRG3RDUStatusCondenserInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 26 - ] - }, - "airIRG3RDUStatusCondenserOutletPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 27 - ] - }, - "airIRG3RDUStatusCondenserOutletPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 28 - ] - }, - "airIRG3RDUStatusPump1HeadPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 29 - ] - }, - "airIRG3RDUStatusPump1HeadPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 30 - ] - }, - "airIRG3RDUStatusPump2HeadPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 31 - ] - }, - "airIRG3RDUStatusPump2HeadPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 32 - ] - }, - "airIRG3RDUStatusPump1Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 33 - ] - }, - "airIRG3RDUStatusPump2Speed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 34 - ] - }, - "airIRG3RDUStatusCWValvePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 35 - ] - }, - "airIRG3RDUStatusReceiverLiquidLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 36 - ] - }, - "airIRG3RDUStatusDCPowerSupply1Current": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 37 - ] - }, - "airIRG3RDUStatusDCPowerSupply2Current": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 38 - ] - }, - "airIRG3RDUStatusTotalDCPowerSupplyCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 39 - ] - }, - "airIRG3RDUStatusInputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 40 - ] - }, - "airIRG3RDUStatusOutputState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 41 - ] - }, - "airIRG3RDUStatusByPassValvePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 42 - ] - }, - "airIRG3RDUStatusRefrigerantLeakDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "suspended", - "2": "calibrating", - "3": "operating", - "4": "disabled" - } - }, - "index": null, - "value": [ - "airIRG3RDUStatusEntry", - 43 - ] - }, - "AirIRG3RDURunHoursEntry": { - "tp": "SEQUENCE" - }, - "airIRG3RDURunHoursTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3RDURunHoursEntry" - }, - "index": null, - "value": [ - "airIRG3RDU", - 3 - ] - }, - "airIRG3RDURunHoursEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3RDURunHoursEntry" - }, - "index": [ - "airIRG3RDURunHoursDeviceIndex" - ], - "value": [ - "airIRG3RDURunHoursTable", - 1 - ] - }, - "airIRG3RDURunHoursDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDURunHoursEntry", - 1 - ] - }, - "airIRG3RDURunHoursRDUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3RDURunHoursEntry", - 2 - ] - }, - "airIRG3RDURunHoursPump1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDURunHoursEntry", - 3 - ] - }, - "airIRG3RDURunHoursPump2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDURunHoursEntry", - 4 - ] - }, - "airIRG3RDURunHoursPowerSupply1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDURunHoursEntry", - 5 - ] - }, - "airIRG3RDURunHoursPowerSupply2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDURunHoursEntry", - 6 - ] - }, - "AirIRG3RDUServiceIntervalsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3RDUServiceIntervalsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3RDUServiceIntervalsEntry" - }, - "index": null, - "value": [ - "airIRG3RDU", - 4 - ] - }, - "airIRG3RDUServiceIntervalsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3RDUServiceIntervalsEntry" - }, - "index": [ - "airIRG3RDUServiceIntervalsDeviceIndex" - ], - "value": [ - "airIRG3RDUServiceIntervalsTable", - 1 - ] - }, - "airIRG3RDUServiceIntervalsDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUServiceIntervalsEntry", - 1 - ] - }, - "airIRG3RDUServiceIntervalsRDUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3RDUServiceIntervalsEntry", - 2 - ] - }, - "airIRG3RDUServiceIntervalsAirFilterInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUServiceIntervalsEntry", - 3 - ] - }, - "airIRG3RDUServiceIntervalsAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "airIRG3RDUServiceIntervalsEntry", - 4 - ] - }, - "AirIRG3RDUThresholdsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3RDUThresholdsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3RDUThresholdsEntry" - }, - "index": null, - "value": [ - "airIRG3RDU", - 5 - ] - }, - "airIRG3RDUThresholdsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3RDUThresholdsEntry" - }, - "index": [ - "airIRG3RDUThresholdsDeviceIndex" - ], - "value": [ - "airIRG3RDUThresholdsTable", - 1 - ] - }, - "airIRG3RDUThresholdsDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUThresholdsEntry", - 1 - ] - }, - "airIRG3RDUThresholdsRDUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3RDUThresholdsEntry", - 2 - ] - }, - "airIRG3RDUThresholdsEnteringFluidTempHighUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUThresholdsEntry", - 3 - ] - }, - "airIRG3RDUThresholdsEnteringFluidTempHighMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUThresholdsEntry", - 4 - ] - }, - "AirIRG3RDUSetpointsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3RDUSetpointsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3RDUSetpointsEntry" - }, - "index": null, - "value": [ - "airIRG3RDU", - 6 - ] - }, - "airIRG3RDUSetpointsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3RDUSetpointsEntry" - }, - "index": [ - "airIRG3RDUSetpointsDeviceIndex" - ], - "value": [ - "airIRG3RDUSetpointsTable", - 1 - ] - }, - "airIRG3RDUSetpointsDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUSetpointsEntry", - 1 - ] - }, - "AirIRG3RDUConfigEntry": { - "tp": "SEQUENCE" - }, - "airIRG3RDUConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3RDUConfigEntry" - }, - "index": null, - "value": [ - "airIRG3RDU", - 7 - ] - }, - "airIRG3RDUConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3RDUConfigEntry" - }, - "index": [ - "airIRG3RDUConfigDeviceIndex" - ], - "value": [ - "airIRG3RDUConfigTable", - 1 - ] - }, - "airIRG3RDUConfigDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 1 - ] - }, - "airIRG3RDUConfigRDUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 2 - ] - }, - "airIRG3RDUConfigStopOnLeakDetect": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 3 - ] - }, - "airIRG3RDUConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 4 - ] - }, - "airIRG3RDUConfigPumpChangeOverInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 5 - ] - }, - "airIRG3RDUConfigPowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "singleFeed", - "2": "dualFeed" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 6 - ] - }, - "airIRG3RDUConfigOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "anyalarm", - "2": "onlycriticalalarms" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 7 - ] - }, - "airIRG3RDUConfigInputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 8 - ] - }, - "airIRG3RDUConfigOutputNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 9 - ] - }, - "airIRG3RDUConfigByPassValveEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 10 - ] - }, - "airIRG3RDUConfigRefrigerantLeakDetectorEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 11 - ] - }, - "airIRG3RDUConfigCalibrateRefrigerantLeakDetector": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 12 - ] - }, - "airIRG3RDUConfigOnReadyStandby": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standby", - "2": "ready", - "3": "on" - } - }, - "index": null, - "value": [ - "airIRG3RDUConfigEntry", - 13 - ] - }, - "airIRG3CMTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CM", - 1 - ] - }, - "AirIRG3CMStatusEntry": { - "tp": "SEQUENCE" - }, - "airIRG3CMStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3CMStatusEntry" - }, - "index": null, - "value": [ - "airIRG3CM", - 2 - ] - }, - "airIRG3CMStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3CMStatusEntry" - }, - "index": [ - "airIRG3CMStatusDeviceIndex" - ], - "value": [ - "airIRG3CMStatusTable", - 1 - ] - }, - "airIRG3CMStatusDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 1 - ] - }, - "airIRG3CMStatusCMID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 2 - ] - }, - "airIRG3CMStatusOperatingMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standBy", - "2": "on", - "3": "idle" - } - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 3 - ] - }, - "airIRG3CMStatusUnitType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unconfigured", - "2": "oa", - "3": "ra" - } - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 4 - ] - }, - "airIRG3CMStatusRackInletTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 5 - ] - }, - "airIRG3CMStatusRackInletTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 6 - ] - }, - "airIRG3CMStatusReturnAirTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 7 - ] - }, - "airIRG3CMStatusReturnAirTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 8 - ] - }, - "airIRG3CMStatusLiquidTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 9 - ] - }, - "airIRG3CMStatusLiquidTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 10 - ] - }, - "airIRG3CMStatusVaporTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 11 - ] - }, - "airIRG3CMStatusVaporTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 12 - ] - }, - "airIRG3CMStatusEvaporatorTempUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 13 - ] - }, - "airIRG3CMStatusEvaporatorTempMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 14 - ] - }, - "airIRG3CMStatusLiquidInletPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 15 - ] - }, - "airIRG3CMStatusLiquidInletPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 16 - ] - }, - "airIRG3CMStatusVaporOutletPressureUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 17 - ] - }, - "airIRG3CMStatusVaporOutletPressureMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 18 - ] - }, - "airIRG3CMStatusExpansionValvePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 19 - ] - }, - "airIRG3CMStatusEPRValvePosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 20 - ] - }, - "airIRG3CMStatusLocalDisplayOnOffEnabled": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 21 - ] - }, - "airIRG3CMStatusAverageFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMStatusEntry", - 22 - ] - }, - "AirIRG3CMRunHoursEntry": { - "tp": "SEQUENCE" - }, - "airIRG3CMRunHoursTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3CMRunHoursEntry" - }, - "index": null, - "value": [ - "airIRG3CM", - 3 - ] - }, - "airIRG3CMRunHoursEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3CMRunHoursEntry" - }, - "index": [ - "airIRG3CMRunHoursDeviceIndex" - ], - "value": [ - "airIRG3CMRunHoursTable", - 1 - ] - }, - "airIRG3CMRunHoursDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 1 - ] - }, - "airIRG3CMRunHoursCMID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 2 - ] - }, - "airIRG3CMRunHoursFan1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 3 - ] - }, - "airIRG3CMRunHoursFan2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 4 - ] - }, - "airIRG3CMRunHoursFan3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 5 - ] - }, - "airIRG3CMRunHoursFan4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 6 - ] - }, - "airIRG3CMRunHoursFan5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 7 - ] - }, - "airIRG3CMRunHoursAirFilter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMRunHoursEntry", - 8 - ] - }, - "AirIRG3CMServiceIntervalsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3CMServiceIntervalsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3CMServiceIntervalsEntry" - }, - "index": null, - "value": [ - "airIRG3CM", - 4 - ] - }, - "airIRG3CMServiceIntervalsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3CMServiceIntervalsEntry" - }, - "index": [ - "airIRG3CMServiceIntervalsDeviceIndex" - ], - "value": [ - "airIRG3CMServiceIntervalsTable", - 1 - ] - }, - "airIRG3CMServiceIntervalsDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMServiceIntervalsEntry", - 1 - ] - }, - "airIRG3CMServiceIntervalsCMID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3CMServiceIntervalsEntry", - 2 - ] - }, - "airIRG3CMServiceIntervalsAirFilterInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMServiceIntervalsEntry", - 3 - ] - }, - "airIRG3CMServiceIntervalsAirFilterAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disable", - "2": "enable" - } - }, - "index": null, - "value": [ - "airIRG3CMServiceIntervalsEntry", - 4 - ] - }, - "AirIRG3CMThresholdsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3CMThresholdsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3CMThresholdsEntry" - }, - "index": null, - "value": [ - "airIRG3CM", - 5 - ] - }, - "airIRG3CMThresholdsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3CMThresholdsEntry" - }, - "index": [ - "airIRG3CMThresholdsDeviceIndex" - ], - "value": [ - "airIRG3CMThresholdsTable", - 1 - ] - }, - "airIRG3CMThresholdsDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 1 - ] - }, - "airIRG3CMThresholdsCMID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 2 - ] - }, - "airIRG3CMThresholdsRackInletTempHighUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 3 - ] - }, - "airIRG3CMThresholdsRackInletTempHighMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 4 - ] - }, - "airIRG3CMThresholdsSupplyAirTempHighUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 5 - ] - }, - "airIRG3CMThresholdsSupplyAirTempHighMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 6 - ] - }, - "airIRG3CMThresholdsReturnAirTempHighUS": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 7 - ] - }, - "airIRG3CMThresholdsReturnAirTempHighMetric": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMThresholdsEntry", - 8 - ] - }, - "AirIRG3CMSetpointsEntry": { - "tp": "SEQUENCE" - }, - "airIRG3CMSetpointsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3CMSetpointsEntry" - }, - "index": null, - "value": [ - "airIRG3CM", - 6 - ] - }, - "airIRG3CMSetpointsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3CMSetpointsEntry" - }, - "index": [ - "airIRG3CMSetpointsDeviceIndex" - ], - "value": [ - "airIRG3CMSetpointsTable", - 1 - ] - }, - "airIRG3CMSetpointsDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMSetpointsEntry", - 1 - ] - }, - "AirIRG3CMConfigEntry": { - "tp": "SEQUENCE" - }, - "airIRG3CMConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AirIRG3CMConfigEntry" - }, - "index": null, - "value": [ - "airIRG3CM", - 7 - ] - }, - "airIRG3CMConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AirIRG3CMConfigEntry" - }, - "index": [ - "airIRG3CMConfigDeviceIndex" - ], - "value": [ - "airIRG3CMConfigTable", - 1 - ] - }, - "airIRG3CMConfigDeviceIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMConfigEntry", - 1 - ] - }, - "airIRG3CMConfigCMID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "airIRG3CMConfigEntry", - 2 - ] - }, - "airIRG3CMConfigStopOnCoolFail": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "airIRG3CMConfigEntry", - 3 - ] - }, - "airIRG3CMConfigStartupDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "airIRG3CMConfigEntry", - 4 - ] - }, - "airIRG3CMConfigRemoteOnStandby": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standBy", - "2": "on" - } - }, - "index": null, - "value": [ - "airIRG3CMConfigEntry", - 5 - ] - }, - "airIRG3CMConfigPowerSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "singleFeed", - "2": "dualFeed" - } - }, - "index": null, - "value": [ - "airIRG3CMConfigEntry", - 6 - ] - }, - "rARUIdentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUIdentEntry" - }, - "index": null, - "value": [ - "rARUIdent", - 1 - ] - }, - "rARUIdentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUIdentEntry" - }, - "index": [ - "rARUIdentAruIndex" - ], - "value": [ - "rARUIdentTable", - 1 - ] - }, - "RARUIdentEntry": { - "tp": "SEQUENCE" - }, - "rARUIdentAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUIdentEntry", - 1 - ] - }, - "rARUIdentName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUIdentEntry", - 2 - ] - }, - "rARUConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUConfigEntry" - }, - "index": null, - "value": [ - "rARUConfig", - 1 - ] - }, - "rARUConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUConfigEntry" - }, - "index": [ - "rARUConfigAruIndex" - ], - "value": [ - "rARUConfigTable", - 1 - ] - }, - "RARUConfigEntry": { - "tp": "SEQUENCE" - }, - "rARUConfigAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUConfigEntry", - 1 - ] - }, - "rARUConfigAruName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUConfigEntry", - 2 - ] - }, - "rARUConfigAruRemoteSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "aruOff", - "2": "aru85F-29C", - "3": "aru90F-32C", - "4": "aru95F-35C", - "5": "aru100F-38C", - "6": "aru7kW-1200cfm", - "7": "aru5kW-800cfm", - "8": "aru3kW-500cfm", - "9": "aru2kW-300cfm", - "10": "aru400cfm", - "11": "aru600cfm", - "12": "aru700cfm", - "13": "aru900cfm", - "14": "aru1000cfm", - "15": "aru1400cfm", - "16": "aru1600cfm", - "17": "aru1800cfm", - "18": "aru2000cfm" - } - }, - "index": null, - "value": [ - "rARUConfigEntry", - 3 - ] - }, - "rARUConfigAruTempOvrdEnableDisable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "rARUConfigEntry", - 4 - ] - }, - "rARUConfigAruTempOvrdSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUConfigEntry", - 5 - ] - }, - "rARUConfigAruMasterControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "aruOn", - "2": "aruOff" - } - }, - "index": null, - "value": [ - "rARUConfigEntry", - 6 - ] - }, - "rARUStatusAruDeviceCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatus", - 1 - ] - }, - "rARUStatusSysTempUnits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "celsius", - "2": "fahrenheit" - } - }, - "index": null, - "value": [ - "rARUStatus", - 2 - ] - }, - "rARUStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUStatusEntry" - }, - "index": null, - "value": [ - "rARUStatus", - 3 - ] - }, - "rARUStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUStatusEntry" - }, - "index": [ - "rARUStatusAruIndex" - ], - "value": [ - "rARUStatusTable", - 1 - ] - }, - "RARUStatusEntry": { - "tp": "SEQUENCE" - }, - "rARUStatusAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 1 - ] - }, - "rARUStatusAruName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 2 - ] - }, - "rARUStatusAruRemoteSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "aruOff", - "2": "aru85F-29C", - "3": "aru90F-32C", - "4": "aru95F-35C", - "5": "aru100F-38C", - "6": "aru7kW-1200cfm", - "7": "aru5kW-800cfm", - "8": "aru3kW-500cfm", - "9": "aru2kW-300cfm", - "10": "aru400cfm", - "11": "aru600cfm", - "12": "aru700cfm", - "13": "aru900cfm", - "14": "aru1000cfm", - "15": "aru1400cfm", - "16": "aru1600cfm", - "17": "aru1800cfm", - "18": "aru2000cfm" - } - }, - "index": null, - "value": [ - "rARUStatusEntry", - 3 - ] - }, - "rARUStatusAruManualSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "aruOff", - "2": "aru85F-29C", - "3": "aru90F-32C", - "4": "aru95F-35C", - "5": "aru100F-38C", - "6": "aru7kW", - "7": "aru5kW", - "8": "aru3kW", - "9": "aru2kW", - "10": "aruRem" - } - }, - "index": null, - "value": [ - "rARUStatusEntry", - 4 - ] - }, - "rARUStatusAruTemp1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 5 - ] - }, - "rARUStatusAruTemp2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 6 - ] - }, - "rARUStatusAruTemp3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 7 - ] - }, - "rARUStatusAruTempOvrdEnableDisable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "rARUStatusEntry", - 8 - ] - }, - "rARUStatusAruTempOvrdSetpoint": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 9 - ] - }, - "rARUStatusAruAlarmState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 10 - ] - }, - "rARUStatusAruCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "commsNeverDiscovered", - "2": "commsEstablished", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "rARUStatusEntry", - 11 - ] - }, - "rARUStatusAruTempOvrdStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "inactive", - "2": "active" - } - }, - "index": null, - "value": [ - "rARUStatusEntry", - 12 - ] - }, - "rARUStatusAruMasterControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "aruOn", - "2": "aruOff" - } - }, - "index": null, - "value": [ - "rARUStatusEntry", - 13 - ] - }, - "rARUStatusAruTotalAirflow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUStatusEntry", - 14 - ] - }, - "rARUFanStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUFanStatusEntry" - }, - "index": null, - "value": [ - "rARUFanStatus", - 1 - ] - }, - "rARUFanStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUFanStatusEntry" - }, - "index": [ - "rARUFanStatusAruIndex", - "rARUFanStatusFanIndex" - ], - "value": [ - "rARUFanStatusTable", - 1 - ] - }, - "RARUFanStatusEntry": { - "tp": "SEQUENCE" - }, - "rARUFanStatusAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 1 - ] - }, - "rARUFanStatusNominalFanSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 2 - ] - }, - "rARUFanStatusSelectedFanLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 3 - ] - }, - "rARUFanStatusReplacementThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "khr20", - "3": "khr25", - "4": "khr30", - "5": "khr35", - "6": "khr40", - "7": "khr50" - } - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 4 - ] - }, - "rARUFanStatusFanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 5 - ] - }, - "rARUFanStatusFanOperatingStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "off", - "3": "onOk", - "4": "onDegraded", - "5": "offFailed" - } - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 6 - ] - }, - "rARUFanStatusFanRpmSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 7 - ] - }, - "rARUFanStatusFanFlowRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 8 - ] - }, - "rARUFanStatusFanInServiceDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 9 - ] - }, - "rARUFanStatusFanRunhourCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 10 - ] - }, - "rARUFanStatusFanRunhourReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "rARUFanStatusEntry", - 11 - ] - }, - "rARUPowerStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUPowerStatusEntry" - }, - "index": null, - "value": [ - "rARUPower", - 1 - ] - }, - "rARUPowerStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUPowerStatusEntry" - }, - "index": [ - "rARUPowerStatusAruIndex" - ], - "value": [ - "rARUPowerStatusTable", - 1 - ] - }, - "RARUPowerStatusEntry": { - "tp": "SEQUENCE" - }, - "rARUPowerStatusAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUPowerStatusEntry", - 1 - ] - }, - "rARUPowerStatusPrimaryAcPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "rARUPowerStatusEntry", - 2 - ] - }, - "rARUPowerStatusAuxiliaryAcPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "rARUPowerStatusEntry", - 3 - ] - }, - "rARUPowerStatusRedundantAcConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "singleCord", - "2": "dualCord" - } - }, - "index": null, - "value": [ - "rARUPowerStatusEntry", - 4 - ] - }, - "rARUSensorsStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensors", - 1 - ] - }, - "rARUSensorsStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUSensorsStatusEntry" - }, - "index": null, - "value": [ - "rARUSensors", - 2 - ] - }, - "rARUSensorsStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUSensorsStatusEntry" - }, - "index": [ - "rARUSensorsStatusAruIndex", - "rARUSensorsStatusSensorNumber" - ], - "value": [ - "rARUSensorsStatusTable", - 1 - ] - }, - "RARUSensorsStatusEntry": { - "tp": "SEQUENCE" - }, - "rARUSensorsStatusAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsStatusEntry", - 1 - ] - }, - "rARUSensorsStatusSensorNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsStatusEntry", - 2 - ] - }, - "rARUSensorsTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsStatusEntry", - 3 - ] - }, - "rARUSensorsConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensors", - 3 - ] - }, - "rARUSensorsConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RARUSensorsConfigEntry" - }, - "index": null, - "value": [ - "rARUSensors", - 4 - ] - }, - "rARUSensorsConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RARUSensorsConfigEntry" - }, - "index": [ - "rARUSensorsConfigAruIndex", - "rARUSensorsConfigSensorNumber" - ], - "value": [ - "rARUSensorsConfigTable", - 1 - ] - }, - "RARUSensorsConfigEntry": { - "tp": "SEQUENCE" - }, - "rARUSensorsConfigAruIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 1 - ] - }, - "rARUSensorsConfigSensorNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 2 - ] - }, - "rARUSensorsName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 3 - ] - }, - "rARUSensorsLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 4 - ] - }, - "rARUSensorsTempMaxThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 5 - ] - }, - "rARUSensorsTempHighThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 6 - ] - }, - "rARUSensorsTempLowThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 7 - ] - }, - "rARUSensorsTempMinThresh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 8 - ] - }, - "rARUSensorsTempThreshHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 9 - ] - }, - "rARUSensorsTempShortDecRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 10 - ] - }, - "rARUSensorsTempShortDecRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 11 - ] - }, - "rARUSensorsTempShortIncRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 12 - ] - }, - "rARUSensorsTempShortIncRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 13 - ] - }, - "rARUSensorsTempLongDecRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 14 - ] - }, - "rARUSensorsTempLongDecRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 15 - ] - }, - "rARUSensorsTempLongIncRateThreshValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 16 - ] - }, - "rARUSensorsTempLongIncRateThreshTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "rARUSensorsConfigEntry", - 17 - ] - }, - "isxModularDistInfoTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistInfo", - 1 - ] - }, - "isxModularDistInfoTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistInfoEntry" - }, - "index": null, - "value": [ - "isxModularDistInfo", - 2 - ] - }, - "isxModularDistInfoEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistInfoEntry" - }, - "index": [ - "isxModularDistInfoSegmentIndex" - ], - "value": [ - "isxModularDistInfoTable", - 1 - ] - }, - "IsxModularDistInfoEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistInfoSegmentIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistInfoEntry", - 1 - ] - }, - "isxModularDistInfoMeterModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistInfoEntry", - 2 - ] - }, - "isxModularDistInfoMeterSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistInfoEntry", - 3 - ] - }, - "isxModularDistInfoMeterDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistInfoEntry", - 4 - ] - }, - "isxModularDistInfoMeterFirmwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistInfoEntry", - 5 - ] - }, - "isxModularDistInfoMeterHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistInfoEntry", - 6 - ] - }, - "isxModularDistModuleInfoTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModules", - 1 - ] - }, - "isxModularDistModuleInfoTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistModuleInfoEntry" - }, - "index": null, - "value": [ - "isxModularDistModules", - 2 - ] - }, - "isxModularDistModuleInfoEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistModuleInfoEntry" - }, - "index": [ - "isxModularDistModuleInfoModIndex" - ], - "value": [ - "isxModularDistModuleInfoTable", - 1 - ] - }, - "IsxModularDistModuleInfoEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistModuleInfoModIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleInfoEntry", - 1 - ] - }, - "isxModularDistModuleInfoAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "warning", - "3": "critical", - "4": "notPresent", - "5": "unknown" - } - }, - "index": null, - "value": [ - "isxModularDistModuleInfoEntry", - 2 - ] - }, - "isxModularDistModuleInfoModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleInfoEntry", - 3 - ] - }, - "isxModularDistModuleInfoSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleInfoEntry", - 4 - ] - }, - "isxModularDistModuleInfoDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleInfoEntry", - 5 - ] - }, - "isxModularDistModuleInfoNumCables": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleInfoEntry", - 6 - ] - }, - "isxModularDistModuleBreakerTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModules", - 3 - ] - }, - "isxModularDistModuleBreakerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistModuleBreakerEntry" - }, - "index": null, - "value": [ - "isxModularDistModules", - 4 - ] - }, - "isxModularDistModuleBreakerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistModuleBreakerEntry" - }, - "index": [ - "isxModularDistModuleBreakerModIndex", - "isxModularDistModuleBreakerPhaseIndex" - ], - "value": [ - "isxModularDistModuleBreakerTable", - 1 - ] - }, - "IsxModularDistModuleBreakerEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistModuleBreakerModIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 1 - ] - }, - "isxModularDistModuleBreakerPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phaseL1", - "2": "phaseL2", - "3": "phaseL3" - } - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 2 - ] - }, - "isxModularDistModuleBreakerAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 3 - ] - }, - "isxModularDistModuleBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 4 - ] - }, - "isxModularDistModuleBreakerPhysicalGroup": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 5 - ] - }, - "isxModularDistModuleBreakerCableNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 6 - ] - }, - "isxModularDistModuleBreakerPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 7 - ] - }, - "isxModularDistModuleBreakerPositionAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 8 - ] - }, - "isxModularDistModuleBreakerCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 9 - ] - }, - "isxModularDistModuleBreakerPercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 10 - ] - }, - "isxModularDistModuleBreakerPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleBreakerEntry", - 11 - ] - }, - "isxModularDistModuleOutputsTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModules", - 5 - ] - }, - "isxModularDistModuleOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistModuleOutputEntry" - }, - "index": null, - "value": [ - "isxModularDistModules", - 6 - ] - }, - "isxModularDistModuleOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistModuleOutputEntry" - }, - "index": [ - "isxModularDistModuleOutputModIndex", - "isxModularDistModuleOutputCordIndex" - ], - "value": [ - "isxModularDistModuleOutputTable", - 1 - ] - }, - "IsxModularDistModuleOutputEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistModuleOutputModIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 1 - ] - }, - "isxModularDistModuleOutputNumCables": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 2 - ] - }, - "isxModularDistModuleOutputCordIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 3 - ] - }, - "isxModularDistModuleOutputName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 4 - ] - }, - "isxModularDistModuleOutputLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 5 - ] - }, - "isxModularDistModuleOutputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "warning", - "3": "critical", - "4": "notPresent", - "6": "unknown" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 6 - ] - }, - "isxModularDistModuleOutputAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 7 - ] - }, - "isxModularDistModuleOutputBreakerMap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 8 - ] - }, - "isxModularDistModuleOutputThresholdMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 9 - ] - }, - "isxModularDistModuleOutputThresholdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 10 - ] - }, - "isxModularDistModuleOutputThresholdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 11 - ] - }, - "isxModularDistModuleOutputThresholdMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 12 - ] - }, - "isxModularDistModuleOutputAlarmMinEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 13 - ] - }, - "isxModularDistModuleOutputAlarmLowEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 14 - ] - }, - "isxModularDistModuleOutputAlarmHighEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 15 - ] - }, - "isxModularDistModuleOutputAlarmMaxEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 16 - ] - }, - "isxModularDistModuleOutputCableLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 17 - ] - }, - "isxModularDistModuleOutputConnectorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 18 - ] - }, - "isxModularDistModuleOutputAvailableVoltages": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 19 - ] - }, - "isxModularDistModuleOutputTotalPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 20 - ] - }, - "isxModularDistModuleOutputKwhUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 21 - ] - }, - "isxModularDistModuleOutputKwhReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 22 - ] - }, - "isxModularDistModuleOutputKwhResetDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistModuleOutputEntry", - 23 - ] - }, - "isxModularDistSubFeedInfoTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeeds", - 1 - ] - }, - "isxModularDistSubFeedInfoTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistSubFeedInfoEntry" - }, - "index": null, - "value": [ - "isxModularDistSubFeeds", - 2 - ] - }, - "isxModularDistSubFeedInfoEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistSubFeedInfoEntry" - }, - "index": [ - "isxModularDistSubFeedInfoSubIndex" - ], - "value": [ - "isxModularDistSubFeedInfoTable", - 1 - ] - }, - "IsxModularDistSubFeedInfoEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistSubFeedInfoSubIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 1 - ] - }, - "isxModularDistSubFeedInfoName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 2 - ] - }, - "isxModularDistSubFeedInfoLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 3 - ] - }, - "isxModularDistSubFeedInfoBreakerRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 4 - ] - }, - "isxModularDistSubFeedInfoBreakerPosition": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "open", - "2": "closed" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 5 - ] - }, - "isxModularDistSubFeedInfoAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "warning", - "3": "critical" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 6 - ] - }, - "isxModularDistSubFeedInfoAlarmGeneration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 7 - ] - }, - "isxModularDistSubFeedInfoThresholdMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 8 - ] - }, - "isxModularDistSubFeedInfoThresholdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 9 - ] - }, - "isxModularDistSubFeedInfoThresholdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 10 - ] - }, - "isxModularDistSubFeedInfoThresholdMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 11 - ] - }, - "isxModularDistSubFeedInfoAlarmMinEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 12 - ] - }, - "isxModularDistSubFeedInfoAlarmLowEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 13 - ] - }, - "isxModularDistSubFeedInfoAlarmHighEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 14 - ] - }, - "isxModularDistSubFeedInfoAlarmMaxEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 15 - ] - }, - "isxModularDistSubFeedInfoBreakerAlarmEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 16 - ] - }, - "isxModularDistSubFeedInfoTotalPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 17 - ] - }, - "isxModularDistSubFeedInfoKwhUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 18 - ] - }, - "isxModularDistSubFeedInfoKwhReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 19 - ] - }, - "isxModularDistSubFeedInfoKwhResetDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistSubFeedInfoEntry", - 20 - ] - }, - "isxModularDistSubFeedLoadingTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeeds", - 3 - ] - }, - "isxModularDistSubFeedLoadingTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistSubFeedLoadingEntry" - }, - "index": null, - "value": [ - "isxModularDistSubFeeds", - 4 - ] - }, - "isxModularDistSubFeedLoadingEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistSubFeedLoadingEntry" - }, - "index": [ - "isxModularDistSubFeedLoadingSubIndex", - "isxModularDistSubFeedLoadingPhaseIndex" - ], - "value": [ - "isxModularDistSubFeedLoadingTable", - 1 - ] - }, - "IsxModularDistSubFeedLoadingEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistSubFeedLoadingSubIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedLoadingEntry", - 1 - ] - }, - "isxModularDistSubFeedLoadingPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "isxModularDistSubFeedLoadingEntry", - 2 - ] - }, - "isxModularDistSubFeedLoadingAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedLoadingEntry", - 3 - ] - }, - "isxModularDistSubFeedLoadingCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedLoadingEntry", - 4 - ] - }, - "isxModularDistSubFeedLoadingPercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedLoadingEntry", - 5 - ] - }, - "isxModularDistSubFeedLoadingPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSubFeedLoadingEntry", - 6 - ] - }, - "isxModularDistSysOutputVoltageNominalLineToNeutral": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 1 - ] - }, - "isxModularDistSysOutputVoltageNominalLineToLine": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 2 - ] - }, - "isxModularDistSysOutputNominalFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 3 - ] - }, - "isxModularDistSysOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 4 - ] - }, - "isxModularDistSysOutputVoltageMonitoring": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 5 - ] - }, - "isxModularDistSysOutputVoltageThresholdMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 6 - ] - }, - "isxModularDistSysOutputVoltageThresholdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 7 - ] - }, - "isxModularDistSysOutputVoltageThresholdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 8 - ] - }, - "isxModularDistSysOutputVoltageThresholdMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 9 - ] - }, - "isxModularDistSysOutputVoltageAlarmMinEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 10 - ] - }, - "isxModularDistSysOutputVoltageAlarmLowEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 11 - ] - }, - "isxModularDistSysOutputVoltageAlarmHighEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 12 - ] - }, - "isxModularDistSysOutputVoltageAlarmMaxEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 13 - ] - }, - "isxModularDistSysOutputVoltageFrequencyTolerance": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "freqToleranceOff", - "2": "freqTolerancePointTwo", - "3": "freqTolerancePointFive", - "4": "freqToleranceOne", - "5": "freqToleranceOnePointFive", - "6": "freqToleranceTwo", - "7": "freqToleranceThree", - "8": "freqToleranceFour", - "9": "freqToleranceFive", - "10": "freqToleranceNine", - "11": "freqToleranceNotAvailable" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 14 - ] - }, - "isxModularDistSysVoltageTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistSysVoltageEntry" - }, - "index": null, - "value": [ - "isxModularDistSysVoltage", - 15 - ] - }, - "isxModularDistSysVoltageEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistSysVoltageEntry" - }, - "index": [ - "isxModularDistSysVoltagePhaseIndex" - ], - "value": [ - "isxModularDistSysVoltageTable", - 1 - ] - }, - "IsxModularDistSysVoltageEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistSysVoltagePhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "isxModularDistSysVoltageEntry", - 1 - ] - }, - "isxModularDistSysVoltageAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltageEntry", - 2 - ] - }, - "isxModularDistSysVoltageLtoN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltageEntry", - 3 - ] - }, - "isxModularDistSysVoltageLtoL": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysVoltageEntry", - 4 - ] - }, - "isxModularDistSysCurrentRating": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 1 - ] - }, - "isxModularDistSysCurrentMonitoring": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 2 - ] - }, - "isxModularDistSysCurrentThresholdMin": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 3 - ] - }, - "isxModularDistSysCurrentThresholdLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 4 - ] - }, - "isxModularDistSysCurrentThresholdHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 5 - ] - }, - "isxModularDistSysCurrentThresholdMax": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 6 - ] - }, - "isxModularDistSysCurrentAlarmMinEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 7 - ] - }, - "isxModularDistSysCurrentAlarmLowEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 8 - ] - }, - "isxModularDistSysCurrentAlarmHighEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 9 - ] - }, - "isxModularDistSysCurrentAlarmMaxEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 10 - ] - }, - "isxModularDistSysCurrentTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistSysCurrentEntry" - }, - "index": null, - "value": [ - "isxModularDistSysCurrent", - 11 - ] - }, - "isxModularDistSysCurrentEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistSysCurrentEntry" - }, - "index": [ - "isxModularDistSysCurrentPhaseIndex" - ], - "value": [ - "isxModularDistSysCurrentTable", - 1 - ] - }, - "IsxModularDistSysCurrentEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistSysCurrentPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "isxModularDistSysCurrentEntry", - 1 - ] - }, - "isxModularDistSysCurrentAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrentEntry", - 2 - ] - }, - "isxModularDistSysCurrentAmps": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrentEntry", - 3 - ] - }, - "isxModularDistSysCurrentPercent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysCurrentEntry", - 4 - ] - }, - "isxModularDistSysPowerTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysPower", - 1 - ] - }, - "isxModularDistSysPowerKwhUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysPower", - 2 - ] - }, - "isxModularDistSysPowerKwhReset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "no", - "2": "yes" - } - }, - "index": null, - "value": [ - "isxModularDistSysPower", - 3 - ] - }, - "isxModularDistSysPowerKwhResetDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularDistSysPower", - 4 - ] - }, - "isxModularDistSysPowerTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF IsxModularDistSysPowerEntry" - }, - "index": null, - "value": [ - "isxModularDistSysPower", - 5 - ] - }, - "isxModularDistSysPowerEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IsxModularDistSysPowerEntry" - }, - "index": [ - "isxModularDistSysPowerPhaseIndex" - ], - "value": [ - "isxModularDistSysPowerTable", - 1 - ] - }, - "IsxModularDistSysPowerEntry": { - "tp": "SEQUENCE" - }, - "isxModularDistSysPowerPhaseIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "phase1", - "2": "phase2", - "3": "phase3" - } - }, - "index": null, - "value": [ - "isxModularDistSysPowerEntry", - 1 - ] - }, - "isxModularDistSysPowerKw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysPowerEntry", - 2 - ] - }, - "isxModularDistSysPowerKwhPhaseUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularDistSysPowerEntry", - 3 - ] - }, - "isxModularPduIdentModelNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 1 - ] - }, - "isxModularPduIdentSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 2 - ] - }, - "isxModularPduIdentDateOfManufacture": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 3 - ] - }, - "isxModularPduIdentMonitorCardSerialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 4 - ] - }, - "isxModularPduIdentMonitorCardHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 5 - ] - }, - "isxModularPduIdentMonitorCardFirmwareAppRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 6 - ] - }, - "isxModularPduIdentMonitorCardFirmwareAppOSRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "isxModularPduIdent", - 7 - ] - }, - "isxModularPduDeviceTransformerPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "isoXfmrPresent", - "3": "autoXfmrPresent" - } - }, - "index": null, - "value": [ - "isxModularPduDevice", - 1 - ] - }, - "isxModularPduDeviceServiceType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "threeWire", - "2": "fourWire" - } - }, - "index": null, - "value": [ - "isxModularPduDevice", - 2 - ] - }, - "isxModularPduDeviceFansPresent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notPresent", - "2": "present" - } - }, - "index": null, - "value": [ - "isxModularPduDevice", - 3 - ] - }, - "isxModularPduDeviceNominalMainInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "isxModularPduDevice", - 4 - ] - }, - "isxModularPduAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "warning", - "3": "critical" - } - }, - "index": null, - "value": [ - "isxModularPduStatus", - 1 - ] - }, - "isxModularPduTransformerTempStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "overtemp", - "3": "noTransformerPresent", - "4": "unknown" - } - }, - "index": null, - "value": [ - "isxModularPduStatus", - 2 - ] - }, - "isxModularPduFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normal", - "2": "failed", - "3": "noCoolingFansPresent", - "4": "unknown" - } - }, - "index": null, - "value": [ - "isxModularPduStatus", - 3 - ] - }, - "uioSensorStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensor", - 1 - ] - }, - "uioSensorStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UIOSensorStatusEntry" - }, - "index": null, - "value": [ - "uioSensor", - 2 - ] - }, - "uioSensorStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UIOSensorStatusEntry" - }, - "index": [ - "uioSensorStatusPortID", - "uioSensorStatusSensorID" - ], - "value": [ - "uioSensorStatusTable", - 1 - ] - }, - "UIOSensorStatusEntry": { - "tp": "SEQUENCE" - }, - "uioSensorStatusPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 1 - ] - }, - "uioSensorStatusSensorID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 2 - ] - }, - "uioSensorStatusSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 3 - ] - }, - "uioSensorStatusSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 4 - ] - }, - "uioSensorStatusTemperatureDegF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 5 - ] - }, - "uioSensorStatusTemperatureDegC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 6 - ] - }, - "uioSensorStatusHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 7 - ] - }, - "uioSensorStatusViolationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 8 - ] - }, - "uioSensorStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioNormal", - "2": "uioWarning", - "3": "uioCritical", - "4": "sensorStatusNotApplicable" - } - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 9 - ] - }, - "uioSensorStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "uioSensorStatusEntry", - 10 - ] - }, - "uioSensorConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensor", - 3 - ] - }, - "uioSensorConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UIOSensorConfigEntry" - }, - "index": null, - "value": [ - "uioSensor", - 4 - ] - }, - "uioSensorConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UIOSensorConfigEntry" - }, - "index": [ - "uioSensorConfigPortID", - "uioSensorConfigSensorID" - ], - "value": [ - "uioSensorConfigTable", - 1 - ] - }, - "UIOSensorConfigEntry": { - "tp": "SEQUENCE" - }, - "uioSensorConfigPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 1 - ] - }, - "uioSensorConfigSensorID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 2 - ] - }, - "uioSensorConfigSensorName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 3 - ] - }, - "uioSensorConfigSensorLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 4 - ] - }, - "uioSensorConfigMinTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 5 - ] - }, - "uioSensorConfigLowTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 6 - ] - }, - "uioSensorConfigHighTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 7 - ] - }, - "uioSensorConfigMaxTemperatureThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 8 - ] - }, - "uioSensorConfigTemperatureHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 9 - ] - }, - "uioSensorConfigMinTemperatureEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 10 - ] - }, - "uioSensorConfigLowTemperatureEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 11 - ] - }, - "uioSensorConfigHighTemperatureEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 12 - ] - }, - "uioSensorConfigMaxTemperatureEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 13 - ] - }, - "uioSensorConfigMinHumidityThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 14 - ] - }, - "uioSensorConfigLowHumidityThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 15 - ] - }, - "uioSensorConfigHighHumidityThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 16 - ] - }, - "uioSensorConfigMaxHumidityThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 17 - ] - }, - "uioSensorConfigHumidityHysteresis": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 18 - ] - }, - "uioSensorConfigMinHumidityEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 19 - ] - }, - "uioSensorConfigLowHumidityEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 20 - ] - }, - "uioSensorConfigHighHumidityEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 21 - ] - }, - "uioSensorConfigMaxHumidityEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "uioSensorConfigEntry", - 22 - ] - }, - "uioInputContactStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioInputContact", - 1 - ] - }, - "uioInputContactStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UIOInputContactStatusEntry" - }, - "index": null, - "value": [ - "uioInputContact", - 2 - ] - }, - "uioInputContactStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UIOInputContactStatusEntry" - }, - "index": [ - "uioInputContactStatusPortID", - "uioInputContactStatusContactID" - ], - "value": [ - "uioInputContactStatusTable", - 1 - ] - }, - "UIOInputContactStatusEntry": { - "tp": "SEQUENCE" - }, - "uioInputContactStatusPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 1 - ] - }, - "uioInputContactStatusContactID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 2 - ] - }, - "uioInputContactStatusContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 3 - ] - }, - "uioInputContactStatusContactLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 4 - ] - }, - "uioInputContactStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioInputClosed", - "2": "uioInputOpen", - "3": "uioInputDisabled", - "4": "inputStateNotApplicable" - } - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 5 - ] - }, - "uioInputContactStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioNormal", - "2": "uioWarning", - "3": "uioCritical", - "4": "inputStatusNotApplicable" - } - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 6 - ] - }, - "uioInputContactStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "uioInputContactStatusEntry", - 7 - ] - }, - "uioInputContactConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioInputContact", - 3 - ] - }, - "uioInputContactConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UIOInputContactConfigEntry" - }, - "index": null, - "value": [ - "uioInputContact", - 4 - ] - }, - "uioInputContactConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UIOInputContactConfigEntry" - }, - "index": [ - "uioInputContactConfigPortID", - "uioInputContactConfigContactID" - ], - "value": [ - "uioInputContactConfigTable", - 1 - ] - }, - "UIOInputContactConfigEntry": { - "tp": "SEQUENCE" - }, - "uioInputContactConfigPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 1 - ] - }, - "uioInputContactConfigContactID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 2 - ] - }, - "uioInputContactConfigContactName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 3 - ] - }, - "uioInputContactConfigContactLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 4 - ] - }, - "uioInputContactConfigEnable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioInputContactDisabled", - "2": "uioInputContactEnabled" - } - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 5 - ] - }, - "uioInputContactConfigNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioInputNormallyOpen", - "2": "uioInputNormallyClosed" - } - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 6 - ] - }, - "uioInputContactConfigSeverity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioInputCriticalSeverity", - "2": "uioInputWarningSeverity" - } - }, - "index": null, - "value": [ - "uioInputContactConfigEntry", - 7 - ] - }, - "uioOutputRelayStatusTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioOutputRelay", - 1 - ] - }, - "uioOutputRelayStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UIOOutputRelayStatusEntry" - }, - "index": null, - "value": [ - "uioOutputRelay", - 2 - ] - }, - "uioOutputRelayStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UIOOutputRelayStatusEntry" - }, - "index": [ - "uioOutputRelayStatusPortID", - "uioOutputRelayStatusRelayID" - ], - "value": [ - "uioOutputRelayStatusTable", - 1 - ] - }, - "UIOOutputRelayStatusEntry": { - "tp": "SEQUENCE" - }, - "uioOutputRelayStatusPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 1 - ] - }, - "uioOutputRelayStatusRelayID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 2 - ] - }, - "uioOutputRelayStatusRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 3 - ] - }, - "uioOutputRelayStatusRelayLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 4 - ] - }, - "uioOutputRelayStatusCurrentState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioOutputClosed", - "2": "uioOutputOpen", - "3": "outputStateNotApplicable" - } - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 5 - ] - }, - "uioOutputRelayStatusAlarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioNormal", - "2": "uioWarning", - "3": "uioCritical", - "4": "inputStatusNotApplicable" - } - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 6 - ] - }, - "uioOutputRelayStatusCommStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notInstalled", - "2": "commsOK", - "3": "commsLost" - } - }, - "index": null, - "value": [ - "uioOutputRelayStatusEntry", - 7 - ] - }, - "uioOutputRelayConfigTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioOutputRelay", - 3 - ] - }, - "uioOutputRelayConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UIOOutputRelayConfigEntry" - }, - "index": null, - "value": [ - "uioOutputRelay", - 4 - ] - }, - "uioOutputRelayConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UIOOutputRelayConfigEntry" - }, - "index": [ - "uioOutputRelayConfigPortID", - "uioOutputRelayConfigRelayID" - ], - "value": [ - "uioOutputRelayConfigTable", - 1 - ] - }, - "UIOOutputRelayConfigEntry": { - "tp": "SEQUENCE" - }, - "uioOutputRelayConfigPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 1 - ] - }, - "uioOutputRelayConfigRelayID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 2 - ] - }, - "uioOutputRelayConfigRelayName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 3 - ] - }, - "uioOutputRelayConfigRelayLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 4 - ] - }, - "uioOutputRelayConfigNormalState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioOutputNormallyOpen", - "2": "uioOutputNormallyClosed" - } - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 5 - ] - }, - "uioOutputRelayConfigControlState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "uioOutputClose", - "2": "uioOutputOpen" - } - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 6 - ] - }, - "uioOutputRelayConfigDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 7 - ] - }, - "uioOutputRelayConfigHold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "uioOutputRelayConfigEntry", - 8 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/RMON-MIB.json b/mibs/parsed/RMON-MIB.json deleted file mode 100644 index 0dbc619..0000000 --- a/mibs/parsed/RMON-MIB.json +++ /dev/null @@ -1,2605 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "OBJECT-IDENTITY", - "NOTIFICATION-TYPE", - "mib-2", - "Counter32", - "Integer32", - "TimeTicks" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ] - ], - "rmonMibModule": { - "tp": "MODULE-IDENTITY", - "value": [ - "rmonConformance", - 8 - ] - }, - "rmon": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "mib-2", - 16 - ] - }, - "OwnerString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "EntryStatus": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "valid", - "2": "createRequest", - "3": "underCreation", - "4": "invalid" - } - }, - "display_hint": null - }, - "statistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 1 - ] - }, - "history": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 2 - ] - }, - "alarm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 3 - ] - }, - "hosts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 4 - ] - }, - "hostTopN": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 5 - ] - }, - "matrix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 6 - ] - }, - "filter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 7 - ] - }, - "capture": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 8 - ] - }, - "event": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 9 - ] - }, - "rmonConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 20 - ] - }, - "etherStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EtherStatsEntry" - }, - "index": null, - "value": [ - "statistics", - 1 - ] - }, - "etherStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EtherStatsEntry" - }, - "index": [ - "etherStatsIndex" - ], - "value": [ - "etherStatsTable", - 1 - ] - }, - "EtherStatsEntry": { - "tp": "SEQUENCE" - }, - "etherStatsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 1 - ] - }, - "etherStatsDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "etherStatsEntry", - 2 - ] - }, - "etherStatsDropEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 3 - ] - }, - "etherStatsOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 4 - ] - }, - "etherStatsPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 5 - ] - }, - "etherStatsBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 6 - ] - }, - "etherStatsMulticastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 7 - ] - }, - "etherStatsCRCAlignErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 8 - ] - }, - "etherStatsUndersizePkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 9 - ] - }, - "etherStatsOversizePkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 10 - ] - }, - "etherStatsFragments": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 11 - ] - }, - "etherStatsJabbers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 12 - ] - }, - "etherStatsCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 13 - ] - }, - "etherStatsPkts64Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 14 - ] - }, - "etherStatsPkts65to127Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 15 - ] - }, - "etherStatsPkts128to255Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 16 - ] - }, - "etherStatsPkts256to511Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 17 - ] - }, - "etherStatsPkts512to1023Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 18 - ] - }, - "etherStatsPkts1024to1518Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStatsEntry", - 19 - ] - }, - "etherStatsOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "etherStatsEntry", - 20 - ] - }, - "etherStatsStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "etherStatsEntry", - 21 - ] - }, - "historyControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HistoryControlEntry" - }, - "index": null, - "value": [ - "history", - 1 - ] - }, - "historyControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HistoryControlEntry" - }, - "index": [ - "historyControlIndex" - ], - "value": [ - "historyControlTable", - 1 - ] - }, - "HistoryControlEntry": { - "tp": "SEQUENCE" - }, - "historyControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "historyControlEntry", - 1 - ] - }, - "historyControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "historyControlEntry", - 2 - ] - }, - "historyControlBucketsRequested": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "historyControlEntry", - 3 - ] - }, - "historyControlBucketsGranted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "historyControlEntry", - 4 - ] - }, - "historyControlInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "historyControlEntry", - 5 - ] - }, - "historyControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "historyControlEntry", - 6 - ] - }, - "historyControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "historyControlEntry", - 7 - ] - }, - "etherHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EtherHistoryEntry" - }, - "index": null, - "value": [ - "history", - 2 - ] - }, - "etherHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EtherHistoryEntry" - }, - "index": [ - "etherHistoryIndex", - "etherHistorySampleIndex" - ], - "value": [ - "etherHistoryTable", - 1 - ] - }, - "EtherHistoryEntry": { - "tp": "SEQUENCE" - }, - "etherHistoryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 1 - ] - }, - "etherHistorySampleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 2 - ] - }, - "etherHistoryIntervalStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 3 - ] - }, - "etherHistoryDropEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 4 - ] - }, - "etherHistoryOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 5 - ] - }, - "etherHistoryPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 6 - ] - }, - "etherHistoryBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 7 - ] - }, - "etherHistoryMulticastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 8 - ] - }, - "etherHistoryCRCAlignErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 9 - ] - }, - "etherHistoryUndersizePkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 10 - ] - }, - "etherHistoryOversizePkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 11 - ] - }, - "etherHistoryFragments": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 12 - ] - }, - "etherHistoryJabbers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 13 - ] - }, - "etherHistoryCollisions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 14 - ] - }, - "etherHistoryUtilization": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "etherHistoryEntry", - 15 - ] - }, - "alarmTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AlarmEntry" - }, - "index": null, - "value": [ - "alarm", - 1 - ] - }, - "alarmEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AlarmEntry" - }, - "index": [ - "alarmIndex" - ], - "value": [ - "alarmTable", - 1 - ] - }, - "AlarmEntry": { - "tp": "SEQUENCE" - }, - "alarmIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 1 - ] - }, - "alarmInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 2 - ] - }, - "alarmVariable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "alarmEntry", - 3 - ] - }, - "alarmSampleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "absoluteValue", - "2": "deltaValue" - } - }, - "index": null, - "value": [ - "alarmEntry", - 4 - ] - }, - "alarmValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 5 - ] - }, - "alarmStartupAlarm": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "risingAlarm", - "2": "fallingAlarm", - "3": "risingOrFallingAlarm" - } - }, - "index": null, - "value": [ - "alarmEntry", - 6 - ] - }, - "alarmRisingThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 7 - ] - }, - "alarmFallingThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 8 - ] - }, - "alarmRisingEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 9 - ] - }, - "alarmFallingEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alarmEntry", - 10 - ] - }, - "alarmOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "alarmEntry", - 11 - ] - }, - "alarmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "alarmEntry", - 12 - ] - }, - "hostControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HostControlEntry" - }, - "index": null, - "value": [ - "hosts", - 1 - ] - }, - "hostControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostControlEntry" - }, - "index": [ - "hostControlIndex" - ], - "value": [ - "hostControlTable", - 1 - ] - }, - "HostControlEntry": { - "tp": "SEQUENCE" - }, - "hostControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostControlEntry", - 1 - ] - }, - "hostControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "hostControlEntry", - 2 - ] - }, - "hostControlTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostControlEntry", - 3 - ] - }, - "hostControlLastDeleteTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "hostControlEntry", - 4 - ] - }, - "hostControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "hostControlEntry", - 5 - ] - }, - "hostControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "hostControlEntry", - 6 - ] - }, - "hostTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HostEntry" - }, - "index": null, - "value": [ - "hosts", - 2 - ] - }, - "hostEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostEntry" - }, - "index": [ - "hostIndex", - "hostAddress" - ], - "value": [ - "hostTable", - 1 - ] - }, - "HostEntry": { - "tp": "SEQUENCE" - }, - "hostAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hostEntry", - 1 - ] - }, - "hostCreationOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostEntry", - 2 - ] - }, - "hostIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostEntry", - 3 - ] - }, - "hostInPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 4 - ] - }, - "hostOutPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 5 - ] - }, - "hostInOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 6 - ] - }, - "hostOutOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 7 - ] - }, - "hostOutErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 8 - ] - }, - "hostOutBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 9 - ] - }, - "hostOutMulticastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostEntry", - 10 - ] - }, - "hostTimeTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HostTimeEntry" - }, - "index": null, - "value": [ - "hosts", - 3 - ] - }, - "hostTimeEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostTimeEntry" - }, - "index": [ - "hostTimeIndex", - "hostTimeCreationOrder" - ], - "value": [ - "hostTimeTable", - 1 - ] - }, - "HostTimeEntry": { - "tp": "SEQUENCE" - }, - "hostTimeAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hostTimeEntry", - 1 - ] - }, - "hostTimeCreationOrder": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 2 - ] - }, - "hostTimeIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 3 - ] - }, - "hostTimeInPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 4 - ] - }, - "hostTimeOutPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 5 - ] - }, - "hostTimeInOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 6 - ] - }, - "hostTimeOutOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 7 - ] - }, - "hostTimeOutErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 8 - ] - }, - "hostTimeOutBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 9 - ] - }, - "hostTimeOutMulticastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostTimeEntry", - 10 - ] - }, - "hostTopNControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HostTopNControlEntry" - }, - "index": null, - "value": [ - "hostTopN", - 1 - ] - }, - "hostTopNControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostTopNControlEntry" - }, - "index": [ - "hostTopNControlIndex" - ], - "value": [ - "hostTopNControlTable", - 1 - ] - }, - "HostTopNControlEntry": { - "tp": "SEQUENCE" - }, - "hostTopNControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 1 - ] - }, - "hostTopNHostIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 2 - ] - }, - "hostTopNRateBase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "hostTopNInPkts", - "2": "hostTopNOutPkts", - "3": "hostTopNInOctets", - "4": "hostTopNOutOctets", - "5": "hostTopNOutErrors", - "6": "hostTopNOutBroadcastPkts", - "7": "hostTopNOutMulticastPkts" - } - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 3 - ] - }, - "hostTopNTimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 4 - ] - }, - "hostTopNDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 5 - ] - }, - "hostTopNRequestedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 6 - ] - }, - "hostTopNGrantedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 7 - ] - }, - "hostTopNStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 8 - ] - }, - "hostTopNOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 9 - ] - }, - "hostTopNStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "hostTopNControlEntry", - 10 - ] - }, - "hostTopNTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HostTopNEntry" - }, - "index": null, - "value": [ - "hostTopN", - 2 - ] - }, - "hostTopNEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostTopNEntry" - }, - "index": [ - "hostTopNReport", - "hostTopNIndex" - ], - "value": [ - "hostTopNTable", - 1 - ] - }, - "HostTopNEntry": { - "tp": "SEQUENCE" - }, - "hostTopNReport": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNEntry", - 1 - ] - }, - "hostTopNIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNEntry", - 2 - ] - }, - "hostTopNAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hostTopNEntry", - 3 - ] - }, - "hostTopNRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hostTopNEntry", - 4 - ] - }, - "matrixControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MatrixControlEntry" - }, - "index": null, - "value": [ - "matrix", - 1 - ] - }, - "matrixControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MatrixControlEntry" - }, - "index": [ - "matrixControlIndex" - ], - "value": [ - "matrixControlTable", - 1 - ] - }, - "MatrixControlEntry": { - "tp": "SEQUENCE" - }, - "matrixControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "matrixControlEntry", - 1 - ] - }, - "matrixControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "matrixControlEntry", - 2 - ] - }, - "matrixControlTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "matrixControlEntry", - 3 - ] - }, - "matrixControlLastDeleteTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "matrixControlEntry", - 4 - ] - }, - "matrixControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "matrixControlEntry", - 5 - ] - }, - "matrixControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "matrixControlEntry", - 6 - ] - }, - "matrixSDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MatrixSDEntry" - }, - "index": null, - "value": [ - "matrix", - 2 - ] - }, - "matrixSDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MatrixSDEntry" - }, - "index": [ - "matrixSDIndex", - "matrixSDSourceAddress", - "matrixSDDestAddress" - ], - "value": [ - "matrixSDTable", - 1 - ] - }, - "MatrixSDEntry": { - "tp": "SEQUENCE" - }, - "matrixSDSourceAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "matrixSDEntry", - 1 - ] - }, - "matrixSDDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "matrixSDEntry", - 2 - ] - }, - "matrixSDIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "matrixSDEntry", - 3 - ] - }, - "matrixSDPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixSDEntry", - 4 - ] - }, - "matrixSDOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixSDEntry", - 5 - ] - }, - "matrixSDErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixSDEntry", - 6 - ] - }, - "matrixDSTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MatrixDSEntry" - }, - "index": null, - "value": [ - "matrix", - 3 - ] - }, - "matrixDSEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MatrixDSEntry" - }, - "index": [ - "matrixDSIndex", - "matrixDSDestAddress", - "matrixDSSourceAddress" - ], - "value": [ - "matrixDSTable", - 1 - ] - }, - "MatrixDSEntry": { - "tp": "SEQUENCE" - }, - "matrixDSSourceAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "matrixDSEntry", - 1 - ] - }, - "matrixDSDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "matrixDSEntry", - 2 - ] - }, - "matrixDSIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "matrixDSEntry", - 3 - ] - }, - "matrixDSPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixDSEntry", - 4 - ] - }, - "matrixDSOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixDSEntry", - 5 - ] - }, - "matrixDSErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixDSEntry", - 6 - ] - }, - "filterTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF FilterEntry" - }, - "index": null, - "value": [ - "filter", - 1 - ] - }, - "filterEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FilterEntry" - }, - "index": [ - "filterIndex" - ], - "value": [ - "filterTable", - 1 - ] - }, - "FilterEntry": { - "tp": "SEQUENCE" - }, - "filterIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filterEntry", - 1 - ] - }, - "filterChannelIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filterEntry", - 2 - ] - }, - "filterPktDataOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filterEntry", - 3 - ] - }, - "filterPktData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "filterEntry", - 4 - ] - }, - "filterPktDataMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "filterEntry", - 5 - ] - }, - "filterPktDataNotMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "filterEntry", - 6 - ] - }, - "filterPktStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filterEntry", - 7 - ] - }, - "filterPktStatusMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filterEntry", - 8 - ] - }, - "filterPktStatusNotMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filterEntry", - 9 - ] - }, - "filterOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "filterEntry", - 10 - ] - }, - "filterStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "filterEntry", - 11 - ] - }, - "channelTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ChannelEntry" - }, - "index": null, - "value": [ - "filter", - 2 - ] - }, - "channelEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ChannelEntry" - }, - "index": [ - "channelIndex" - ], - "value": [ - "channelTable", - 1 - ] - }, - "ChannelEntry": { - "tp": "SEQUENCE" - }, - "channelIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "channelEntry", - 1 - ] - }, - "channelIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "channelEntry", - 2 - ] - }, - "channelAcceptType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "acceptMatched", - "2": "acceptFailed" - } - }, - "index": null, - "value": [ - "channelEntry", - 3 - ] - }, - "channelDataControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off" - } - }, - "index": null, - "value": [ - "channelEntry", - 4 - ] - }, - "channelTurnOnEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "channelEntry", - 5 - ] - }, - "channelTurnOffEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "channelEntry", - 6 - ] - }, - "channelEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "channelEntry", - 7 - ] - }, - "channelEventStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "eventReady", - "2": "eventFired", - "3": "eventAlwaysReady" - } - }, - "index": null, - "value": [ - "channelEntry", - 8 - ] - }, - "channelMatches": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "channelEntry", - 9 - ] - }, - "channelDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "channelEntry", - 10 - ] - }, - "channelOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "channelEntry", - 11 - ] - }, - "channelStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "channelEntry", - 12 - ] - }, - "bufferControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF BufferControlEntry" - }, - "index": null, - "value": [ - "capture", - 1 - ] - }, - "bufferControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BufferControlEntry" - }, - "index": [ - "bufferControlIndex" - ], - "value": [ - "bufferControlTable", - 1 - ] - }, - "BufferControlEntry": { - "tp": "SEQUENCE" - }, - "bufferControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 1 - ] - }, - "bufferControlChannelIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 2 - ] - }, - "bufferControlFullStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "spaceAvailable", - "2": "full" - } - }, - "index": null, - "value": [ - "bufferControlEntry", - 3 - ] - }, - "bufferControlFullAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "lockWhenFull", - "2": "wrapWhenFull" - } - }, - "index": null, - "value": [ - "bufferControlEntry", - 4 - ] - }, - "bufferControlCaptureSliceSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 5 - ] - }, - "bufferControlDownloadSliceSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 6 - ] - }, - "bufferControlDownloadOffset": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 7 - ] - }, - "bufferControlMaxOctetsRequested": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 8 - ] - }, - "bufferControlMaxOctetsGranted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 9 - ] - }, - "bufferControlCapturedPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "bufferControlEntry", - 10 - ] - }, - "bufferControlTurnOnTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "bufferControlEntry", - 11 - ] - }, - "bufferControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "bufferControlEntry", - 12 - ] - }, - "bufferControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "bufferControlEntry", - 13 - ] - }, - "captureBufferTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF CaptureBufferEntry" - }, - "index": null, - "value": [ - "capture", - 2 - ] - }, - "captureBufferEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "CaptureBufferEntry" - }, - "index": [ - "captureBufferControlIndex", - "captureBufferIndex" - ], - "value": [ - "captureBufferTable", - 1 - ] - }, - "CaptureBufferEntry": { - "tp": "SEQUENCE" - }, - "captureBufferControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "captureBufferEntry", - 1 - ] - }, - "captureBufferIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "captureBufferEntry", - 2 - ] - }, - "captureBufferPacketID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "captureBufferEntry", - 3 - ] - }, - "captureBufferPacketData": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "captureBufferEntry", - 4 - ] - }, - "captureBufferPacketLength": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "captureBufferEntry", - 5 - ] - }, - "captureBufferPacketTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "captureBufferEntry", - 6 - ] - }, - "captureBufferPacketStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "captureBufferEntry", - 7 - ] - }, - "eventTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EventEntry" - }, - "index": null, - "value": [ - "event", - 1 - ] - }, - "eventEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EventEntry" - }, - "index": [ - "eventIndex" - ], - "value": [ - "eventTable", - 1 - ] - }, - "EventEntry": { - "tp": "SEQUENCE" - }, - "eventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "eventEntry", - 1 - ] - }, - "eventDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "eventEntry", - 2 - ] - }, - "eventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "log", - "3": "snmptrap", - "4": "logandtrap" - } - }, - "index": null, - "value": [ - "eventEntry", - 3 - ] - }, - "eventCommunity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "eventEntry", - 4 - ] - }, - "eventLastTimeSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "eventEntry", - 5 - ] - }, - "eventOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "eventEntry", - 6 - ] - }, - "eventStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "eventEntry", - 7 - ] - }, - "logTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF LogEntry" - }, - "index": null, - "value": [ - "event", - 2 - ] - }, - "logEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LogEntry" - }, - "index": [ - "logEventIndex", - "logIndex" - ], - "value": [ - "logTable", - 1 - ] - }, - "LogEntry": { - "tp": "SEQUENCE" - }, - "logEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "logEntry", - 1 - ] - }, - "logIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "logEntry", - 2 - ] - }, - "logTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "logEntry", - 3 - ] - }, - "logDescription": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "logEntry", - 4 - ] - }, - "rmonEventsV2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "rmon", - 0 - ] - }, - "rmonCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmonConformance", - 9 - ] - }, - "rmonGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmonConformance", - 10 - ] - }, - "rmonEtherStatsGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 1 - ] - }, - "rmonHistoryControlGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 2 - ] - }, - "rmonEthernetHistoryGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 3 - ] - }, - "rmonAlarmGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 4 - ] - }, - "rmonHostGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 5 - ] - }, - "rmonHostTopNGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 6 - ] - }, - "rmonMatrixGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 7 - ] - }, - "rmonFilterGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 8 - ] - }, - "rmonPacketCaptureGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 9 - ] - }, - "rmonEventGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmonGroups", - 10 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/RMON2-MIB.json b/mibs/parsed/RMON2-MIB.json deleted file mode 100644 index b02c259..0000000 --- a/mibs/parsed/RMON2-MIB.json +++ /dev/null @@ -1,3528 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Counter32", - "Integer32", - "Gauge32", - "IpAddress", - "TimeTicks", - "mib-2" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "RowStatus", - "DisplayString", - "TimeStamp" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "IF-MIB", - [ - "ifIndex" - ] - ], - [ - "RMON-MIB", - [ - "OwnerString", - "statistics", - "history", - "hosts", - "matrix", - "filter", - "etherStatsEntry", - "historyControlEntry", - "hostControlEntry", - "matrixControlEntry", - "filterEntry", - "channelEntry" - ] - ], - [ - "TOKEN-RING-RMON-MIB", - [ - "tokenRing", - "tokenRingMLStatsEntry", - "tokenRingPStatsEntry", - "ringStationControlEntry", - "sourceRoutingStatsEntry" - ] - ] - ], - "rmon": { - "tp": "MODULE-IDENTITY", - "value": [ - "mib-2", - 16 - ] - }, - "protocolDir": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 11 - ] - }, - "protocolDist": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 12 - ] - }, - "addressMap": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 13 - ] - }, - "nlHost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 14 - ] - }, - "nlMatrix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 15 - ] - }, - "alHost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 16 - ] - }, - "alMatrix": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 17 - ] - }, - "usrHistory": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 18 - ] - }, - "probeConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 19 - ] - }, - "rmonConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 20 - ] - }, - "ZeroBasedCounter32": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Gauge32" - }, - "display_hint": null - }, - "LastCreateTime": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "TimeTicks" - }, - "display_hint": null - }, - "TimeFilter": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "TimeTicks" - }, - "display_hint": null - }, - "DataSource": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "display_hint": null - }, - "protocolDirLastChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "protocolDir", - 1 - ] - }, - "protocolDirTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ProtocolDirEntry" - }, - "index": null, - "value": [ - "protocolDir", - 2 - ] - }, - "protocolDirEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProtocolDirEntry" - }, - "index": [ - "protocolDirID", - "protocolDirParameters" - ], - "value": [ - "protocolDirTable", - 1 - ] - }, - "ProtocolDirEntry": { - "tp": "SEQUENCE" - }, - "protocolDirID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "protocolDirEntry", - 1 - ] - }, - "protocolDirParameters": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "protocolDirEntry", - 2 - ] - }, - "protocolDirLocalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "protocolDirEntry", - 3 - ] - }, - "protocolDirDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "protocolDirEntry", - 4 - ] - }, - "protocolDirType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "extensible", - "1": "addressRecognitionCapable" - } - }, - "index": null, - "value": [ - "protocolDirEntry", - 5 - ] - }, - "protocolDirAddressMapConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notSupported", - "2": "supportedOff", - "3": "supportedOn" - } - }, - "index": null, - "value": [ - "protocolDirEntry", - 6 - ] - }, - "protocolDirHostConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notSupported", - "2": "supportedOff", - "3": "supportedOn" - } - }, - "index": null, - "value": [ - "protocolDirEntry", - 7 - ] - }, - "protocolDirMatrixConfig": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notSupported", - "2": "supportedOff", - "3": "supportedOn" - } - }, - "index": null, - "value": [ - "protocolDirEntry", - 8 - ] - }, - "protocolDirOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "protocolDirEntry", - 9 - ] - }, - "protocolDirStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "protocolDirEntry", - 10 - ] - }, - "protocolDistControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ProtocolDistControlEntry" - }, - "index": null, - "value": [ - "protocolDist", - 1 - ] - }, - "protocolDistControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProtocolDistControlEntry" - }, - "index": [ - "protocolDistControlIndex" - ], - "value": [ - "protocolDistControlTable", - 1 - ] - }, - "ProtocolDistControlEntry": { - "tp": "SEQUENCE" - }, - "protocolDistControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "protocolDistControlEntry", - 1 - ] - }, - "protocolDistControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DataSource" - }, - "index": null, - "value": [ - "protocolDistControlEntry", - 2 - ] - }, - "protocolDistControlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "protocolDistControlEntry", - 3 - ] - }, - "protocolDistControlCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "protocolDistControlEntry", - 4 - ] - }, - "protocolDistControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "protocolDistControlEntry", - 5 - ] - }, - "protocolDistControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "protocolDistControlEntry", - 6 - ] - }, - "protocolDistStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ProtocolDistStatsEntry" - }, - "index": null, - "value": [ - "protocolDist", - 2 - ] - }, - "protocolDistStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ProtocolDistStatsEntry" - }, - "index": [ - "protocolDistControlIndex", - "protocolDirLocalIndex" - ], - "value": [ - "protocolDistStatsTable", - 1 - ] - }, - "ProtocolDistStatsEntry": { - "tp": "SEQUENCE" - }, - "protocolDistStatsPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "protocolDistStatsEntry", - 1 - ] - }, - "protocolDistStatsOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "protocolDistStatsEntry", - 2 - ] - }, - "addressMapInserts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "addressMap", - 1 - ] - }, - "addressMapDeletes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "addressMap", - 2 - ] - }, - "addressMapMaxDesiredEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "addressMap", - 3 - ] - }, - "addressMapControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AddressMapControlEntry" - }, - "index": null, - "value": [ - "addressMap", - 4 - ] - }, - "addressMapControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AddressMapControlEntry" - }, - "index": [ - "addressMapControlIndex" - ], - "value": [ - "addressMapControlTable", - 1 - ] - }, - "AddressMapControlEntry": { - "tp": "SEQUENCE" - }, - "addressMapControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "addressMapControlEntry", - 1 - ] - }, - "addressMapControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DataSource" - }, - "index": null, - "value": [ - "addressMapControlEntry", - 2 - ] - }, - "addressMapControlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "addressMapControlEntry", - 3 - ] - }, - "addressMapControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "addressMapControlEntry", - 4 - ] - }, - "addressMapControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "addressMapControlEntry", - 5 - ] - }, - "addressMapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AddressMapEntry" - }, - "index": null, - "value": [ - "addressMap", - 5 - ] - }, - "addressMapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AddressMapEntry" - }, - "index": [ - "addressMapTimeMark", - "protocolDirLocalIndex", - "addressMapNetworkAddress", - "addressMapSource" - ], - "value": [ - "addressMapTable", - 1 - ] - }, - "AddressMapEntry": { - "tp": "SEQUENCE" - }, - "addressMapTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "addressMapEntry", - 1 - ] - }, - "addressMapNetworkAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "addressMapEntry", - 2 - ] - }, - "addressMapSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "addressMapEntry", - 3 - ] - }, - "addressMapPhysicalAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "addressMapEntry", - 4 - ] - }, - "addressMapLastChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "addressMapEntry", - 5 - ] - }, - "hlHostControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HlHostControlEntry" - }, - "index": null, - "value": [ - "nlHost", - 1 - ] - }, - "hlHostControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HlHostControlEntry" - }, - "index": [ - "hlHostControlIndex" - ], - "value": [ - "hlHostControlTable", - 1 - ] - }, - "HlHostControlEntry": { - "tp": "SEQUENCE" - }, - "hlHostControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 1 - ] - }, - "hlHostControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DataSource" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 2 - ] - }, - "hlHostControlNlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 3 - ] - }, - "hlHostControlNlInserts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 4 - ] - }, - "hlHostControlNlDeletes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 5 - ] - }, - "hlHostControlNlMaxDesiredEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 6 - ] - }, - "hlHostControlAlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 7 - ] - }, - "hlHostControlAlInserts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 8 - ] - }, - "hlHostControlAlDeletes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 9 - ] - }, - "hlHostControlAlMaxDesiredEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 10 - ] - }, - "hlHostControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 11 - ] - }, - "hlHostControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "hlHostControlEntry", - 12 - ] - }, - "nlHostTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NlHostEntry" - }, - "index": null, - "value": [ - "nlHost", - 2 - ] - }, - "nlHostEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NlHostEntry" - }, - "index": [ - "hlHostControlIndex", - "nlHostTimeMark", - "protocolDirLocalIndex", - "nlHostAddress" - ], - "value": [ - "nlHostTable", - 1 - ] - }, - "NlHostEntry": { - "tp": "SEQUENCE" - }, - "nlHostTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "nlHostEntry", - 1 - ] - }, - "nlHostAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlHostEntry", - 2 - ] - }, - "nlHostInPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlHostEntry", - 3 - ] - }, - "nlHostOutPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlHostEntry", - 4 - ] - }, - "nlHostInOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlHostEntry", - 5 - ] - }, - "nlHostOutOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlHostEntry", - 6 - ] - }, - "nlHostOutMacNonUnicastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlHostEntry", - 7 - ] - }, - "nlHostCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "nlHostEntry", - 8 - ] - }, - "hlMatrixControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HlMatrixControlEntry" - }, - "index": null, - "value": [ - "nlMatrix", - 1 - ] - }, - "hlMatrixControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HlMatrixControlEntry" - }, - "index": [ - "hlMatrixControlIndex" - ], - "value": [ - "hlMatrixControlTable", - 1 - ] - }, - "HlMatrixControlEntry": { - "tp": "SEQUENCE" - }, - "hlMatrixControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 1 - ] - }, - "hlMatrixControlDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DataSource" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 2 - ] - }, - "hlMatrixControlNlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 3 - ] - }, - "hlMatrixControlNlInserts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 4 - ] - }, - "hlMatrixControlNlDeletes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 5 - ] - }, - "hlMatrixControlNlMaxDesiredEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 6 - ] - }, - "hlMatrixControlAlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 7 - ] - }, - "hlMatrixControlAlInserts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 8 - ] - }, - "hlMatrixControlAlDeletes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 9 - ] - }, - "hlMatrixControlAlMaxDesiredEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 10 - ] - }, - "hlMatrixControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 11 - ] - }, - "hlMatrixControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "hlMatrixControlEntry", - 12 - ] - }, - "nlMatrixSDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NlMatrixSDEntry" - }, - "index": null, - "value": [ - "nlMatrix", - 2 - ] - }, - "nlMatrixSDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NlMatrixSDEntry" - }, - "index": [ - "hlMatrixControlIndex", - "nlMatrixSDTimeMark", - "protocolDirLocalIndex", - "nlMatrixSDSourceAddress", - "nlMatrixSDDestAddress" - ], - "value": [ - "nlMatrixSDTable", - 1 - ] - }, - "NlMatrixSDEntry": { - "tp": "SEQUENCE" - }, - "nlMatrixSDTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "nlMatrixSDEntry", - 1 - ] - }, - "nlMatrixSDSourceAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlMatrixSDEntry", - 2 - ] - }, - "nlMatrixSDDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlMatrixSDEntry", - 3 - ] - }, - "nlMatrixSDPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlMatrixSDEntry", - 4 - ] - }, - "nlMatrixSDOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlMatrixSDEntry", - 5 - ] - }, - "nlMatrixSDCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "nlMatrixSDEntry", - 6 - ] - }, - "nlMatrixDSTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NlMatrixDSEntry" - }, - "index": null, - "value": [ - "nlMatrix", - 3 - ] - }, - "nlMatrixDSEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NlMatrixDSEntry" - }, - "index": [ - "hlMatrixControlIndex", - "nlMatrixDSTimeMark", - "protocolDirLocalIndex", - "nlMatrixDSDestAddress", - "nlMatrixDSSourceAddress" - ], - "value": [ - "nlMatrixDSTable", - 1 - ] - }, - "NlMatrixDSEntry": { - "tp": "SEQUENCE" - }, - "nlMatrixDSTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "nlMatrixDSEntry", - 1 - ] - }, - "nlMatrixDSSourceAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlMatrixDSEntry", - 2 - ] - }, - "nlMatrixDSDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlMatrixDSEntry", - 3 - ] - }, - "nlMatrixDSPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlMatrixDSEntry", - 4 - ] - }, - "nlMatrixDSOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "nlMatrixDSEntry", - 5 - ] - }, - "nlMatrixDSCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "nlMatrixDSEntry", - 6 - ] - }, - "nlMatrixTopNControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NlMatrixTopNControlEntry" - }, - "index": null, - "value": [ - "nlMatrix", - 4 - ] - }, - "nlMatrixTopNControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NlMatrixTopNControlEntry" - }, - "index": [ - "nlMatrixTopNControlIndex" - ], - "value": [ - "nlMatrixTopNControlTable", - 1 - ] - }, - "NlMatrixTopNControlEntry": { - "tp": "SEQUENCE" - }, - "nlMatrixTopNControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 1 - ] - }, - "nlMatrixTopNControlMatrixIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 2 - ] - }, - "nlMatrixTopNControlRateBase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nlMatrixTopNPkts", - "2": "nlMatrixTopNOctets", - "3": "nlMatrixTopNHighCapacityPkts", - "4": "nlMatrixTopNHighCapacityOctets" - } - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 3 - ] - }, - "nlMatrixTopNControlTimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 4 - ] - }, - "nlMatrixTopNControlGeneratedReports": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 5 - ] - }, - "nlMatrixTopNControlDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 6 - ] - }, - "nlMatrixTopNControlRequestedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 7 - ] - }, - "nlMatrixTopNControlGrantedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 8 - ] - }, - "nlMatrixTopNControlStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 9 - ] - }, - "nlMatrixTopNControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 10 - ] - }, - "nlMatrixTopNControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "nlMatrixTopNControlEntry", - 11 - ] - }, - "nlMatrixTopNTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NlMatrixTopNEntry" - }, - "index": null, - "value": [ - "nlMatrix", - 5 - ] - }, - "nlMatrixTopNEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NlMatrixTopNEntry" - }, - "index": [ - "nlMatrixTopNControlIndex", - "nlMatrixTopNIndex" - ], - "value": [ - "nlMatrixTopNTable", - 1 - ] - }, - "NlMatrixTopNEntry": { - "tp": "SEQUENCE" - }, - "nlMatrixTopNIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 1 - ] - }, - "nlMatrixTopNProtocolDirLocalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 2 - ] - }, - "nlMatrixTopNSourceAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 3 - ] - }, - "nlMatrixTopNDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 4 - ] - }, - "nlMatrixTopNPktRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 5 - ] - }, - "nlMatrixTopNReversePktRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 6 - ] - }, - "nlMatrixTopNOctetRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 7 - ] - }, - "nlMatrixTopNReverseOctetRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "nlMatrixTopNEntry", - 8 - ] - }, - "alHostTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AlHostEntry" - }, - "index": null, - "value": [ - "alHost", - 1 - ] - }, - "alHostEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AlHostEntry" - }, - "index": [ - "hlHostControlIndex", - "alHostTimeMark", - "protocolDirLocalIndex", - "nlHostAddress", - "protocolDirLocalIndex" - ], - "value": [ - "alHostTable", - 1 - ] - }, - "AlHostEntry": { - "tp": "SEQUENCE" - }, - "alHostTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "alHostEntry", - 1 - ] - }, - "alHostInPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alHostEntry", - 2 - ] - }, - "alHostOutPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alHostEntry", - 3 - ] - }, - "alHostInOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alHostEntry", - 4 - ] - }, - "alHostOutOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alHostEntry", - 5 - ] - }, - "alHostCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "alHostEntry", - 6 - ] - }, - "alMatrixSDTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AlMatrixSDEntry" - }, - "index": null, - "value": [ - "alMatrix", - 1 - ] - }, - "alMatrixSDEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AlMatrixSDEntry" - }, - "index": [ - "hlMatrixControlIndex", - "alMatrixSDTimeMark", - "protocolDirLocalIndex", - "nlMatrixSDSourceAddress", - "nlMatrixSDDestAddress", - "protocolDirLocalIndex" - ], - "value": [ - "alMatrixSDTable", - 1 - ] - }, - "AlMatrixSDEntry": { - "tp": "SEQUENCE" - }, - "alMatrixSDTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "alMatrixSDEntry", - 1 - ] - }, - "alMatrixSDPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alMatrixSDEntry", - 2 - ] - }, - "alMatrixSDOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alMatrixSDEntry", - 3 - ] - }, - "alMatrixSDCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "alMatrixSDEntry", - 4 - ] - }, - "alMatrixDSTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AlMatrixDSEntry" - }, - "index": null, - "value": [ - "alMatrix", - 2 - ] - }, - "alMatrixDSEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AlMatrixDSEntry" - }, - "index": [ - "hlMatrixControlIndex", - "alMatrixDSTimeMark", - "protocolDirLocalIndex", - "nlMatrixDSDestAddress", - "nlMatrixDSSourceAddress", - "protocolDirLocalIndex" - ], - "value": [ - "alMatrixDSTable", - 1 - ] - }, - "AlMatrixDSEntry": { - "tp": "SEQUENCE" - }, - "alMatrixDSTimeMark": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeFilter" - }, - "index": null, - "value": [ - "alMatrixDSEntry", - 1 - ] - }, - "alMatrixDSPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alMatrixDSEntry", - 2 - ] - }, - "alMatrixDSOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ZeroBasedCounter32" - }, - "index": null, - "value": [ - "alMatrixDSEntry", - 3 - ] - }, - "alMatrixDSCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "alMatrixDSEntry", - 4 - ] - }, - "alMatrixTopNControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AlMatrixTopNControlEntry" - }, - "index": null, - "value": [ - "alMatrix", - 3 - ] - }, - "alMatrixTopNControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AlMatrixTopNControlEntry" - }, - "index": [ - "alMatrixTopNControlIndex" - ], - "value": [ - "alMatrixTopNControlTable", - 1 - ] - }, - "AlMatrixTopNControlEntry": { - "tp": "SEQUENCE" - }, - "alMatrixTopNControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 1 - ] - }, - "alMatrixTopNControlMatrixIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 2 - ] - }, - "alMatrixTopNControlRateBase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "alMatrixTopNTerminalsPkts", - "2": "alMatrixTopNTerminalsOctets", - "3": "alMatrixTopNAllPkts", - "4": "alMatrixTopNAllOctets", - "5": "alMatrixTopNTerminalsHighCapacityPkts", - "6": "alMatrixTopNTerminalsHighCapacityOctets", - "7": "alMatrixTopNAllHighCapacityPkts", - "8": "alMatrixTopNAllHighCapacityOctets" - } - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 3 - ] - }, - "alMatrixTopNControlTimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 4 - ] - }, - "alMatrixTopNControlGeneratedReports": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 5 - ] - }, - "alMatrixTopNControlDuration": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 6 - ] - }, - "alMatrixTopNControlRequestedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 7 - ] - }, - "alMatrixTopNControlGrantedSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 8 - ] - }, - "alMatrixTopNControlStartTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 9 - ] - }, - "alMatrixTopNControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 10 - ] - }, - "alMatrixTopNControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "alMatrixTopNControlEntry", - 11 - ] - }, - "alMatrixTopNTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF AlMatrixTopNEntry" - }, - "index": null, - "value": [ - "alMatrix", - 4 - ] - }, - "alMatrixTopNEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "AlMatrixTopNEntry" - }, - "index": [ - "alMatrixTopNControlIndex", - "alMatrixTopNIndex" - ], - "value": [ - "alMatrixTopNTable", - 1 - ] - }, - "AlMatrixTopNEntry": { - "tp": "SEQUENCE" - }, - "alMatrixTopNIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 1 - ] - }, - "alMatrixTopNProtocolDirLocalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 2 - ] - }, - "alMatrixTopNSourceAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 3 - ] - }, - "alMatrixTopNDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 4 - ] - }, - "alMatrixTopNAppProtocolDirLocalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 5 - ] - }, - "alMatrixTopNPktRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 6 - ] - }, - "alMatrixTopNReversePktRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 7 - ] - }, - "alMatrixTopNOctetRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 8 - ] - }, - "alMatrixTopNReverseOctetRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "alMatrixTopNEntry", - 9 - ] - }, - "usrHistoryControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UsrHistoryControlEntry" - }, - "index": null, - "value": [ - "usrHistory", - 1 - ] - }, - "usrHistoryControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UsrHistoryControlEntry" - }, - "index": [ - "usrHistoryControlIndex" - ], - "value": [ - "usrHistoryControlTable", - 1 - ] - }, - "UsrHistoryControlEntry": { - "tp": "SEQUENCE" - }, - "usrHistoryControlIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 1 - ] - }, - "usrHistoryControlObjects": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 2 - ] - }, - "usrHistoryControlBucketsRequested": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 3 - ] - }, - "usrHistoryControlBucketsGranted": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 4 - ] - }, - "usrHistoryControlInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 5 - ] - }, - "usrHistoryControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 6 - ] - }, - "usrHistoryControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "usrHistoryControlEntry", - 7 - ] - }, - "usrHistoryObjectTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UsrHistoryObjectEntry" - }, - "index": null, - "value": [ - "usrHistory", - 2 - ] - }, - "usrHistoryObjectEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UsrHistoryObjectEntry" - }, - "index": [ - "usrHistoryControlIndex", - "usrHistoryObjectIndex" - ], - "value": [ - "usrHistoryObjectTable", - 1 - ] - }, - "UsrHistoryObjectEntry": { - "tp": "SEQUENCE" - }, - "usrHistoryObjectIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryObjectEntry", - 1 - ] - }, - "usrHistoryObjectVariable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "usrHistoryObjectEntry", - 2 - ] - }, - "usrHistoryObjectSampleType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "absoluteValue", - "2": "deltaValue" - } - }, - "index": null, - "value": [ - "usrHistoryObjectEntry", - 3 - ] - }, - "usrHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UsrHistoryEntry" - }, - "index": null, - "value": [ - "usrHistory", - 3 - ] - }, - "usrHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UsrHistoryEntry" - }, - "index": [ - "usrHistoryControlIndex", - "usrHistorySampleIndex", - "usrHistoryObjectIndex" - ], - "value": [ - "usrHistoryTable", - 1 - ] - }, - "UsrHistoryEntry": { - "tp": "SEQUENCE" - }, - "usrHistorySampleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "usrHistoryEntry", - 1 - ] - }, - "usrHistoryIntervalStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "usrHistoryEntry", - 2 - ] - }, - "usrHistoryIntervalEnd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeStamp" - }, - "index": null, - "value": [ - "usrHistoryEntry", - 3 - ] - }, - "usrHistoryAbsValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "usrHistoryEntry", - 4 - ] - }, - "usrHistoryValStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "valueNotAvailable", - "2": "valuePositive", - "3": "valueNegative" - } - }, - "index": null, - "value": [ - "usrHistoryEntry", - 5 - ] - }, - "ControlString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": null - }, - "probeCapabilities": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "BITS", - "values": { - "0": "etherStats", - "1": "historyControl", - "2": "etherHistory", - "3": "alarm", - "4": "hosts", - "5": "hostTopN", - "6": "matrix", - "7": "filter", - "8": "capture", - "9": "event", - "10": "tokenRingMLStats", - "11": "tokenRingPStats", - "12": "tokenRingMLHistory", - "13": "tokenRingPHistory", - "14": "ringStation", - "15": "ringStationOrder", - "16": "ringStationConfig", - "17": "sourceRouting", - "18": "protocolDirectory", - "19": "protocolDistribution", - "20": "addressMapping", - "21": "nlHost", - "22": "nlMatrix", - "23": "alHost", - "24": "alMatrix", - "25": "usrHistory", - "26": "probeConfig" - } - }, - "index": null, - "value": [ - "probeConfig", - 1 - ] - }, - "probeSoftwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "probeConfig", - 2 - ] - }, - "probeHardwareRev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "probeConfig", - 3 - ] - }, - "probeDateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "probeConfig", - 4 - ] - }, - "probeResetControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "running", - "2": "warmBoot", - "3": "coldBoot" - } - }, - "index": null, - "value": [ - "probeConfig", - 5 - ] - }, - "probeDownloadFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "probeConfig", - 6 - ] - }, - "probeDownloadTFTPServer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "probeConfig", - 7 - ] - }, - "probeDownloadAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "notDownloading", - "2": "downloadToPROM", - "3": "downloadToRAM" - } - }, - "index": null, - "value": [ - "probeConfig", - 8 - ] - }, - "probeDownloadStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "downloadSuccess", - "2": "downloadStatusUnknown", - "3": "downloadGeneralError", - "4": "downloadNoResponseFromServer", - "5": "downloadChecksumError", - "6": "downloadIncompatibleImage", - "7": "downloadTftpFileNotFound", - "8": "downloadTftpAccessViolation" - } - }, - "index": null, - "value": [ - "probeConfig", - 9 - ] - }, - "serialConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SerialConfigEntry" - }, - "index": null, - "value": [ - "probeConfig", - 10 - ] - }, - "serialConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SerialConfigEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "serialConfigTable", - 1 - ] - }, - "SerialConfigEntry": { - "tp": "SEQUENCE" - }, - "serialMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "modem" - } - }, - "index": null, - "value": [ - "serialConfigEntry", - 1 - ] - }, - "serialProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "slip", - "3": "ppp" - } - }, - "index": null, - "value": [ - "serialConfigEntry", - 2 - ] - }, - "serialTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serialConfigEntry", - 3 - ] - }, - "serialModemInitString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControlString" - }, - "index": null, - "value": [ - "serialConfigEntry", - 4 - ] - }, - "serialModemHangUpString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControlString" - }, - "index": null, - "value": [ - "serialConfigEntry", - 5 - ] - }, - "serialModemConnectResp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "serialConfigEntry", - 6 - ] - }, - "serialModemNoConnectResp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "serialConfigEntry", - 7 - ] - }, - "serialDialoutTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serialConfigEntry", - 8 - ] - }, - "serialStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "serialConfigEntry", - 9 - ] - }, - "netConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF NetConfigEntry" - }, - "index": null, - "value": [ - "probeConfig", - 11 - ] - }, - "netConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "NetConfigEntry" - }, - "index": [ - "ifIndex" - ], - "value": [ - "netConfigTable", - 1 - ] - }, - "NetConfigEntry": { - "tp": "SEQUENCE" - }, - "netConfigIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "netConfigEntry", - 1 - ] - }, - "netConfigSubnetMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "netConfigEntry", - 2 - ] - }, - "netConfigStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "netConfigEntry", - 3 - ] - }, - "netDefaultGateway": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "probeConfig", - 12 - ] - }, - "trapDestTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TrapDestEntry" - }, - "index": null, - "value": [ - "probeConfig", - 13 - ] - }, - "trapDestEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TrapDestEntry" - }, - "index": [ - "trapDestIndex" - ], - "value": [ - "trapDestTable", - 1 - ] - }, - "TrapDestEntry": { - "tp": "SEQUENCE" - }, - "trapDestIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "trapDestEntry", - 1 - ] - }, - "trapDestCommunity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "trapDestEntry", - 2 - ] - }, - "trapDestProtocol": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ip", - "2": "ipx" - } - }, - "index": null, - "value": [ - "trapDestEntry", - 3 - ] - }, - "trapDestAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "trapDestEntry", - 4 - ] - }, - "trapDestOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "trapDestEntry", - 5 - ] - }, - "trapDestStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "trapDestEntry", - 6 - ] - }, - "serialConnectionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SerialConnectionEntry" - }, - "index": null, - "value": [ - "probeConfig", - 14 - ] - }, - "serialConnectionEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SerialConnectionEntry" - }, - "index": [ - "serialConnectIndex" - ], - "value": [ - "serialConnectionTable", - 1 - ] - }, - "SerialConnectionEntry": { - "tp": "SEQUENCE" - }, - "serialConnectIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 1 - ] - }, - "serialConnectDestIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 2 - ] - }, - "serialConnectType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "direct", - "2": "modem", - "3": "switch", - "4": "modemSwitch" - } - }, - "index": null, - "value": [ - "serialConnectionEntry", - 3 - ] - }, - "serialConnectDialString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControlString" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 4 - ] - }, - "serialConnectSwitchConnectSeq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControlString" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 5 - ] - }, - "serialConnectSwitchDisconnectSeq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControlString" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 6 - ] - }, - "serialConnectSwitchResetSeq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ControlString" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 7 - ] - }, - "serialConnectOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 8 - ] - }, - "serialConnectStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RowStatus" - }, - "index": null, - "value": [ - "serialConnectionEntry", - 9 - ] - }, - "etherStats2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EtherStats2Entry" - }, - "index": null, - "value": [ - "statistics", - 4 - ] - }, - "etherStats2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EtherStats2Entry" - }, - "index": "etherStatsEntry", - "value": [ - "etherStats2Table", - 1 - ] - }, - "EtherStats2Entry": { - "tp": "SEQUENCE" - }, - "etherStatsDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "etherStats2Entry", - 1 - ] - }, - "etherStatsCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "etherStats2Entry", - 2 - ] - }, - "historyControl2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HistoryControl2Entry" - }, - "index": null, - "value": [ - "history", - 5 - ] - }, - "historyControl2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HistoryControl2Entry" - }, - "index": "historyControlEntry", - "value": [ - "historyControl2Table", - 1 - ] - }, - "HistoryControl2Entry": { - "tp": "SEQUENCE" - }, - "historyControlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "historyControl2Entry", - 1 - ] - }, - "hostControl2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HostControl2Entry" - }, - "index": null, - "value": [ - "hosts", - 4 - ] - }, - "hostControl2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostControl2Entry" - }, - "index": "hostControlEntry", - "value": [ - "hostControl2Table", - 1 - ] - }, - "HostControl2Entry": { - "tp": "SEQUENCE" - }, - "hostControlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "hostControl2Entry", - 1 - ] - }, - "hostControlCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "hostControl2Entry", - 2 - ] - }, - "matrixControl2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF MatrixControl2Entry" - }, - "index": null, - "value": [ - "matrix", - 4 - ] - }, - "matrixControl2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MatrixControl2Entry" - }, - "index": "matrixControlEntry", - "value": [ - "matrixControl2Table", - 1 - ] - }, - "MatrixControl2Entry": { - "tp": "SEQUENCE" - }, - "matrixControlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "matrixControl2Entry", - 1 - ] - }, - "matrixControlCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "matrixControl2Entry", - 2 - ] - }, - "channel2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Channel2Entry" - }, - "index": null, - "value": [ - "filter", - 3 - ] - }, - "channel2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Channel2Entry" - }, - "index": "channelEntry", - "value": [ - "channel2Table", - 1 - ] - }, - "Channel2Entry": { - "tp": "SEQUENCE" - }, - "channelDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "channel2Entry", - 1 - ] - }, - "channelCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "channel2Entry", - 2 - ] - }, - "tokenRingMLStats2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TokenRingMLStats2Entry" - }, - "index": null, - "value": [ - "statistics", - 5 - ] - }, - "tokenRingMLStats2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TokenRingMLStats2Entry" - }, - "index": "tokenRingMLStatsEntry", - "value": [ - "tokenRingMLStats2Table", - 1 - ] - }, - "TokenRingMLStats2Entry": { - "tp": "SEQUENCE" - }, - "tokenRingMLStatsDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "tokenRingMLStats2Entry", - 1 - ] - }, - "tokenRingMLStatsCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "tokenRingMLStats2Entry", - 2 - ] - }, - "tokenRingPStats2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TokenRingPStats2Entry" - }, - "index": null, - "value": [ - "statistics", - 6 - ] - }, - "tokenRingPStats2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TokenRingPStats2Entry" - }, - "index": "tokenRingPStatsEntry", - "value": [ - "tokenRingPStats2Table", - 1 - ] - }, - "TokenRingPStats2Entry": { - "tp": "SEQUENCE" - }, - "tokenRingPStatsDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "tokenRingPStats2Entry", - 1 - ] - }, - "tokenRingPStatsCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "tokenRingPStats2Entry", - 2 - ] - }, - "ringStationControl2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RingStationControl2Entry" - }, - "index": null, - "value": [ - "tokenRing", - 7 - ] - }, - "ringStationControl2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RingStationControl2Entry" - }, - "index": "ringStationControlEntry", - "value": [ - "ringStationControl2Table", - 1 - ] - }, - "RingStationControl2Entry": { - "tp": "SEQUENCE" - }, - "ringStationControlDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "ringStationControl2Entry", - 1 - ] - }, - "ringStationControlCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "ringStationControl2Entry", - 2 - ] - }, - "sourceRoutingStats2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SourceRoutingStats2Entry" - }, - "index": null, - "value": [ - "tokenRing", - 8 - ] - }, - "sourceRoutingStats2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SourceRoutingStats2Entry" - }, - "index": "sourceRoutingStatsEntry", - "value": [ - "sourceRoutingStats2Table", - 1 - ] - }, - "SourceRoutingStats2Entry": { - "tp": "SEQUENCE" - }, - "sourceRoutingStatsDroppedFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "sourceRoutingStats2Entry", - 1 - ] - }, - "sourceRoutingStatsCreateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "LastCreateTime" - }, - "index": null, - "value": [ - "sourceRoutingStats2Entry", - 2 - ] - }, - "filter2Table": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF Filter2Entry" - }, - "index": null, - "value": [ - "filter", - 4 - ] - }, - "filter2Entry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Filter2Entry" - }, - "index": "filterEntry", - "value": [ - "filter2Table", - 1 - ] - }, - "Filter2Entry": { - "tp": "SEQUENCE" - }, - "filterProtocolDirDataLocalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filter2Entry", - 1 - ] - }, - "filterProtocolDirLocalIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "filter2Entry", - 2 - ] - }, - "rmon2MIBCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmonConformance", - 1 - ] - }, - "rmon2MIBGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmonConformance", - 2 - ] - }, - "protocolDirectoryGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 1 - ] - }, - "protocolDistributionGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 2 - ] - }, - "addressMapGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 3 - ] - }, - "nlHostGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 4 - ] - }, - "nlMatrixGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 5 - ] - }, - "alHostGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 6 - ] - }, - "alMatrixGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 7 - ] - }, - "usrHistoryGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 8 - ] - }, - "probeInformationGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 9 - ] - }, - "probeConfigurationGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 10 - ] - }, - "rmon1EnhancementGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 11 - ] - }, - "rmon1EthernetEnhancementGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 12 - ] - }, - "rmon1TokenRingEnhancementGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "rmon2MIBGroups", - 13 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/STATISTICS-MIB.json b/mibs/parsed/STATISTICS-MIB.json deleted file mode 100644 index 10747f7..0000000 --- a/mibs/parsed/STATISTICS-MIB.json +++ /dev/null @@ -1,1859 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "Counter", - "IpAddress" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC1213-MIB", - [ - "DisplayString" - ] - ], - [ - "HP-ICF-TC", - [ - "HpSwitchPortType", - "VidList" - ] - ], - [ - "INET-ADDRESS-MIB", - [ - "InetAddress", - "InetAddressType", - "InetPortNumber" - ] - ], - [ - "HP-ICF-OID", - [ - "hpSwitch" - ] - ] - ], - "hpSwitchStatistics": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitch", - 9 - ] - }, - "MacAddress": { - "tp": "OCTET STRING" - }, - "VlanID": { - "tp": "INTEGER" - }, - "hpSwitchIpxStat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 1 - ] - }, - "hpSwitchIpxStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchIpxStatEntry" - }, - "index": null, - "value": [ - "hpSwitchIpxStat", - 1 - ] - }, - "hpSwitchIpxStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchIpxStatEntry" - }, - "index": [ - "hpSwitchIpxStatIndex" - ], - "value": [ - "hpSwitchIpxStatTable", - 1 - ] - }, - "HpSwitchIpxStatEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchIpxStatIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpSwitchIpxStatEntry", - 1 - ] - }, - "hpSwitchIpxStatNodeAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpSwitchIpxStatEntry", - 2 - ] - }, - "hpSwitchIpxStatGatewayAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpSwitchIpxStatEntry", - 3 - ] - }, - "hpSwitchIpxStatGatewayEncap": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "ethernetII", - "2": "ieee8022", - "3": "snap", - "4": "ieee8023Raw", - "5": "noGateway" - } - }, - "index": null, - "value": [ - "hpSwitchIpxStatEntry", - 4 - ] - }, - "hpSwitchIpxStatAdminStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "hpSwitchIpxStatEntry", - 5 - ] - }, - "hpSwitchIpStat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 2 - ] - }, - "hpSwitchIpStatTimepAdminStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "hpSwitchIpStat", - 1 - ] - }, - "hpSwitchIpStatTimepServerAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "hpSwitchIpStat", - 2 - ] - }, - "hpSwitchIpStatTimepPollInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchIpStat", - 3 - ] - }, - "hpSwitchIpStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchIpStatEntry" - }, - "index": null, - "value": [ - "hpSwitchIpStat", - 4 - ] - }, - "hpSwitchIpStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchIpStatEntry" - }, - "index": [ - "hpSwitchIpStatIndex" - ], - "value": [ - "hpSwitchIpStatTable", - 1 - ] - }, - "HpSwitchIpStatEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchIpStatIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpSwitchIpStatEntry", - 1 - ] - }, - "hpSwitchIpStatAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "hpSwitchIpStatEntry", - 2 - ] - }, - "hpSwitchIpStatMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "hpSwitchIpStatEntry", - 3 - ] - }, - "hpSwitchIpStatGatewayAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "hpSwitchIpStatEntry", - 4 - ] - }, - "hpSwitchIpStatAdminStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable", - "3": "bootp" - } - }, - "index": null, - "value": [ - "hpSwitchIpStatEntry", - 5 - ] - }, - "hpSwitchFdbInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 4 - ] - }, - "hpSwitchVlanFdbAddrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchVlanFdbAddrEntry" - }, - "index": null, - "value": [ - "hpSwitchFdbInfo", - 1 - ] - }, - "hpSwitchVlanFdbAddrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchVlanFdbAddrEntry" - }, - "index": [ - "hpSwitchVlanFdbId", - "hpSwitchVlanFdbAddress" - ], - "value": [ - "hpSwitchVlanFdbAddrTable", - 1 - ] - }, - "HpSwitchVlanFdbAddrEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchVlanFdbId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpSwitchVlanFdbAddrEntry", - 1 - ] - }, - "hpSwitchVlanFdbAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpSwitchVlanFdbAddrEntry", - 2 - ] - }, - "hpSwitchVlanFdbPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchVlanFdbAddrEntry", - 3 - ] - }, - "hpSwitchPortFdbAddrTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchPortFdbAddrEntry" - }, - "index": null, - "value": [ - "hpSwitchFdbInfo", - 2 - ] - }, - "hpSwitchPortFdbAddrEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchPortFdbAddrEntry" - }, - "index": [ - "hpSwitchPortFdbId", - "hpSwitchPortFdbAddress" - ], - "value": [ - "hpSwitchPortFdbAddrTable", - 1 - ] - }, - "HpSwitchPortFdbAddrEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchPortFdbId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchPortFdbAddrEntry", - 1 - ] - }, - "hpSwitchPortFdbAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpSwitchPortFdbAddrEntry", - 2 - ] - }, - "hpSwitchPortFdbVlanId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpSwitchPortFdbAddrEntry", - 3 - ] - }, - "hpSwitchPortFdbVidList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VidList" - }, - "index": null, - "value": [ - "hpSwitchPortFdbAddrEntry", - 4 - ] - }, - "hpSwitchStpStat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 5 - ] - }, - "hpSwitchStpStatAdminStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enable", - "2": "disable" - } - }, - "index": null, - "value": [ - "hpSwitchStpStat", - 1 - ] - }, - "hpSwitchMiscStat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 6 - ] - }, - "hpSwitchCpuStat": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchMiscStat", - 1 - ] - }, - "hpSwitchFddiIpFragStat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 7 - ] - }, - "hpSwitchFddiIpFragStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchFddiIpFragStatEntry" - }, - "index": null, - "value": [ - "hpSwitchFddiIpFragStat", - 1 - ] - }, - "hpSwitchFddiIpFragStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchFddiIpFragStatEntry" - }, - "index": [ - "hpSwitchFddiIpFragStatIndex" - ], - "value": [ - "hpSwitchFddiIpFragStatTable", - 1 - ] - }, - "HpSwitchFddiIpFragStatEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchFddiIpFragStatIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchFddiIpFragStatEntry", - 1 - ] - }, - "hpSwitchFddiIpFragFramesFragmented": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpSwitchFddiIpFragStatEntry", - 2 - ] - }, - "hpSwitchFddiIpFragFramesCreated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpSwitchFddiIpFragStatEntry", - 3 - ] - }, - "hpSwitchFddiIpFragFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpSwitchFddiIpFragStatEntry", - 4 - ] - }, - "hpSwitchFddiSystemStat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 8 - ] - }, - "hpSwitchFddiSystemStatTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchFddiSystemStatEntry" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStat", - 1 - ] - }, - "hpSwitchFddiSystemStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchFddiSystemStatEntry" - }, - "index": [ - "hpSwitchFddiSystemStatIndex" - ], - "value": [ - "hpSwitchFddiSystemStatTable", - 1 - ] - }, - "HpSwitchFddiSystemStatEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchFddiSystemStatIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 1 - ] - }, - "hpSwitchFddiSystemOsVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 2 - ] - }, - "hpSwitchFddiSystemRomVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 3 - ] - }, - "hpSwitchFddiSystemMemoryTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 4 - ] - }, - "hpSwitchFddiSystemMemoryFree": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 5 - ] - }, - "hpSwitchFddiSystemCpuUtil": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 6 - ] - }, - "hpSwitchFddiSystemBuildDirectory": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 7 - ] - }, - "hpSwitchFddiSystemBuildDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 8 - ] - }, - "hpSwitchFddiSystemBuildNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "hpSwitchFddiSystemStatEntry", - 9 - ] - }, - "hpABCStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 9 - ] - }, - "hpABCStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpABCStatsEntry" - }, - "index": null, - "value": [ - "hpABCStats", - 1 - ] - }, - "hpABCStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpABCStatsEntry" - }, - "index": [ - "hpABCStatsVlanIndex", - "hpABCStatsPortIndex" - ], - "value": [ - "hpABCStatsTable", - 1 - ] - }, - "HpABCStatsEntry": { - "tp": "SEQUENCE" - }, - "hpABCStatsVlanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 1 - ] - }, - "hpABCStatsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 2 - ] - }, - "hpABCStatsPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchPortType" - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 3 - ] - }, - "hpABCStatsArpReplies": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 4 - ] - }, - "hpABCStatsIpxReplies": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 5 - ] - }, - "hpABCStatsIpRipControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "forwarding", - "2": "notforwarding" - } - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 6 - ] - }, - "hpABCStatsIpxRipSapControl": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "forwarding", - "2": "notforwarding" - } - }, - "index": null, - "value": [ - "hpABCStatsEntry", - 7 - ] - }, - "hpIgmpStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 10 - ] - }, - "hpIgmpStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpIgmpStatsEntry" - }, - "index": null, - "value": [ - "hpIgmpStats", - 1 - ] - }, - "hpIgmpStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpIgmpStatsEntry" - }, - "index": [ - "hpIgmpStatsVlanIndex", - "hpIgmpStatsActiveGroupAddr" - ], - "value": [ - "hpIgmpStatsTable", - 1 - ] - }, - "HpIgmpStatsEntry": { - "tp": "SEQUENCE" - }, - "hpIgmpStatsVlanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpIgmpStatsEntry", - 1 - ] - }, - "hpIgmpStatsActiveGroupAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "hpIgmpStatsEntry", - 2 - ] - }, - "hpIgmpStatsReports": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpIgmpStatsEntry", - 3 - ] - }, - "hpIgmpStatsQueries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpIgmpStatsEntry", - 4 - ] - }, - "hpIgmpStatsQuerierAccessPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpIgmpStatsEntry", - 5 - ] - }, - "hpIgmpStatsPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpIgmpStatsPortEntry" - }, - "index": null, - "value": [ - "hpIgmpStats", - 2 - ] - }, - "hpIgmpStatsPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpIgmpStatsPortEntry" - }, - "index": [ - "hpIgmpStatsActiveGroupAddr", - "hpIgmpStatsPortIndex" - ], - "value": [ - "hpIgmpStatsPortTable", - 1 - ] - }, - "HpIgmpStatsPortEntry": { - "tp": "SEQUENCE" - }, - "hpIgmpStatsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry", - 1 - ] - }, - "hpIgmpStatsPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchPortType" - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry", - 2 - ] - }, - "hpIgmpStatsPortAccess": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "host", - "2": "router", - "3": "host-router" - } - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry", - 3 - ] - }, - "hpIgmpStatsPortTable2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpIgmpStatsPortEntry2" - }, - "index": null, - "value": [ - "hpIgmpStats", - 3 - ] - }, - "hpIgmpStatsPortEntry2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpIgmpStatsPortEntry2" - }, - "index": [ - "hpIgmpStatsVlanIndex", - "hpIgmpStatsActiveGroupAddr", - "hpIgmpStatsPortIndex2" - ], - "value": [ - "hpIgmpStatsPortTable2", - 1 - ] - }, - "HpIgmpStatsPortEntry2": { - "tp": "SEQUENCE" - }, - "hpIgmpStatsPortIndex2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry2", - 1 - ] - }, - "hpIgmpStatsPortType2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchPortType" - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry2", - 2 - ] - }, - "hpIgmpStatsPortAccess2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "host", - "2": "router", - "3": "host-router" - } - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry2", - 3 - ] - }, - "hpIgmpStatsPortAgeTimer2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry2", - 4 - ] - }, - "hpIgmpStatsPortLeaveTimer2": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpIgmpStatsPortEntry2", - 5 - ] - }, - "hpLdbalStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 11 - ] - }, - "hpLdbalStatsPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpLdbalStatsPortEntry" - }, - "index": null, - "value": [ - "hpLdbalStats", - 1 - ] - }, - "hpLdbalStatsPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpLdbalStatsPortEntry" - }, - "index": [ - "hpLdbalStatsPortIndex" - ], - "value": [ - "hpLdbalStatsPortTable", - 1 - ] - }, - "HpLdbalStatsPortEntry": { - "tp": "SEQUENCE" - }, - "hpLdbalStatsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpLdbalStatsPortEntry", - 1 - ] - }, - "hpLdbalStatsPortState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "error", - "3": "initial", - "4": "notEstablished", - "5": "established", - "6": "topologyError" - } - }, - "index": null, - "value": [ - "hpLdbalStatsPortEntry", - 2 - ] - }, - "hpLdbalStatsAdjacentSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpLdbalStatsPortEntry", - 3 - ] - }, - "hpLdbalStatsPeerPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpLdbalStatsPortEntry", - 4 - ] - }, - "hpLdbalStatsAdjacentHost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpLdbalStatsPortEntry", - 5 - ] - }, - "hpLdbalStatsMeshWarningStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "hpLdbalStatsPortEntry", - 6 - ] - }, - "hpSwitchMacStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 12 - ] - }, - "hpSwitchFdbAddressCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchMacStats", - 1 - ] - }, - "hpSwitchFlowControlStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 13 - ] - }, - "hpSwitchFlowControlStatusTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchFlowControlStatusEntry" - }, - "index": null, - "value": [ - "hpSwitchFlowControlStatus", - 1 - ] - }, - "hpSwitchFlowControlStatusEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchFlowControlStatusEntry" - }, - "index": [ - "hpSwitchFlowControlStatusPortIndex" - ], - "value": [ - "hpSwitchFlowControlStatusTable", - 1 - ] - }, - "HpSwitchFlowControlStatusEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchFlowControlStatusPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchFlowControlStatusEntry", - 1 - ] - }, - "hpSwitchFlowControlState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "off", - "2": "on", - "3": "on-rx", - "4": "on-tx" - } - }, - "index": null, - "value": [ - "hpSwitchFlowControlStatusEntry", - 2 - ] - }, - "hpFECStatsTrunk": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 14 - ] - }, - "hpFECStatsTrunkTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpFECStatsTrunkEntry" - }, - "index": null, - "value": [ - "hpFECStatsTrunk", - 1 - ] - }, - "hpFECStatsTrunkEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpFECStatsTrunkEntry" - }, - "index": [ - "hpFECStatsTrunkIndex" - ], - "value": [ - "hpFECStatsTrunkTable", - 1 - ] - }, - "HpFECStatsTrunkEntry": { - "tp": "SEQUENCE" - }, - "hpFECStatsTrunkIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpFECStatsTrunkEntry", - 1 - ] - }, - "hpFECStatsTrunkName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpFECStatsTrunkEntry", - 2 - ] - }, - "hpFECStatsTrunkNegotiationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "successful", - "2": "failed", - "3": "initialized" - } - }, - "index": null, - "value": [ - "hpFECStatsTrunkEntry", - 3 - ] - }, - "hpFECStatsTrunkForwardingMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sa-only", - "2": "sa-da", - "3": "none" - } - }, - "index": null, - "value": [ - "hpFECStatsTrunkEntry", - 4 - ] - }, - "hpFECStatsTrunkFlushPktsEchoed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpFECStatsTrunkEntry", - 5 - ] - }, - "hpFECStatsPort": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 15 - ] - }, - "hpFECStatsPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpFECStatsPortEntry" - }, - "index": null, - "value": [ - "hpFECStatsPort", - 1 - ] - }, - "hpFECStatsPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpFECStatsPortEntry" - }, - "index": [ - "hpFECStatsPortIndex" - ], - "value": [ - "hpFECStatsPortTable", - 1 - ] - }, - "HpFECStatsPortEntry": { - "tp": "SEQUENCE" - }, - "hpFECStatsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 1 - ] - }, - "hpFECStatsPortTrunkNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 2 - ] - }, - "hpFECStatsPortTrunkName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 3 - ] - }, - "hpFECStatsPortMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "down", - "2": "forwarding", - "3": "blocking", - "4": "up" - } - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 4 - ] - }, - "hpFECStatsPortNegotiationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "successful", - "2": "failed", - "3": "initialized" - } - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 5 - ] - }, - "hpFECStatsPortHellosSent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 6 - ] - }, - "hpFECStatsPortHellosReceived": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 7 - ] - }, - "hpFECStatsPortMySlowHello": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fast", - "2": "slow" - } - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 8 - ] - }, - "hpFECStatsPortMyAutoMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "desirable", - "2": "auto" - } - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 9 - ] - }, - "hpFECStatsPortPartner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 10 - ] - }, - "hpFECStatsPortFlushPktsEchoed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpFECStatsPortEntry", - 11 - ] - }, - "hpGvrpStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 16 - ] - }, - "hpGvrpStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpGvrpStatsEntry" - }, - "index": null, - "value": [ - "hpGvrpStats", - 1 - ] - }, - "hpGvrpStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpGvrpStatsEntry" - }, - "index": [ - "hpGvrpStatsVlanIndex", - "hpGvrpStatsPortIndex" - ], - "value": [ - "hpGvrpStatsTable", - 1 - ] - }, - "HpGvrpStatsEntry": { - "tp": "SEQUENCE" - }, - "hpGvrpStatsVlanIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "VlanID" - }, - "index": null, - "value": [ - "hpGvrpStatsEntry", - 1 - ] - }, - "hpGvrpStatsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpGvrpStatsEntry", - 2 - ] - }, - "hpGvrpStatsPortVlanMember": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "pending", - "2": "yes", - "3": "no" - } - }, - "index": null, - "value": [ - "hpGvrpStatsEntry", - 3 - ] - }, - "hpGvrpPortIfOperStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "up", - "2": "down" - } - }, - "index": null, - "value": [ - "hpGvrpStatsEntry", - 4 - ] - }, - "hpPortGvrpCtrlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "learn", - "2": "block", - "3": "disable" - } - }, - "index": null, - "value": [ - "hpGvrpStatsEntry", - 5 - ] - }, - "hpSshStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 17 - ] - }, - "hpSshStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSshStatsEntry" - }, - "index": null, - "value": [ - "hpSshStats", - 1 - ] - }, - "hpSshStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSshStatsEntry" - }, - "index": [ - "hpSshStatsSesIndex" - ], - "value": [ - "hpSshStatsTable", - 1 - ] - }, - "HpSshStatsEntry": { - "tp": "SEQUENCE" - }, - "hpSshStatsSesIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 1 - ] - }, - "hpSshStatsSesType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "console", - "2": "telnet", - "3": "ssh", - "4": "inactive" - } - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 2 - ] - }, - "hpSshStatsSourceIpPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 3 - ] - }, - "hpSshStatsSesVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "version1", - "2": "version2", - "255": "noConnect" - } - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 4 - ] - }, - "hpSshStatsSourceIpType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddressType" - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 5 - ] - }, - "hpSshStatsSourceIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetAddress" - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 6 - ] - }, - "hpSshStatsSourceIpPortNum": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "InetPortNumber" - }, - "index": null, - "value": [ - "hpSshStatsEntry", - 7 - ] - }, - "hpSwitchPhysicalPort": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 18 - ] - }, - "hpSwitchPhysicalPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchPhysicalPortEntry" - }, - "index": null, - "value": [ - "hpSwitchPhysicalPort", - 1 - ] - }, - "hpSwitchPhysicalPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchPhysicalPortEntry" - }, - "index": [ - "hpSwitchPhysicalPortIndex" - ], - "value": [ - "hpSwitchPhysicalPortTable", - 1 - ] - }, - "HpSwitchPhysicalPortEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchPhysicalPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchPhysicalPortEntry", - 1 - ] - }, - "hpSwitchPhysicalPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchPortType" - }, - "index": null, - "value": [ - "hpSwitchPhysicalPortEntry", - 2 - ] - }, - "hpSwitchCosStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "hpSwitchStatistics", - 19 - ] - }, - "hpSwitchQueueWatchStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF HpSwitchQueueWatchStatsEntry" - }, - "index": null, - "value": [ - "hpSwitchCosStats", - 1 - ] - }, - "hpSwitchQueueWatchStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HpSwitchQueueWatchStatsEntry" - }, - "index": [ - "hpSwitchQueueWatchStatsPortIndex", - "hpSwitchQueueWatchStatsQueueIndex" - ], - "value": [ - "hpSwitchQueueWatchStatsTable", - 1 - ] - }, - "HpSwitchQueueWatchStatsEntry": { - "tp": "SEQUENCE" - }, - "hpSwitchQueueWatchStatsPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchQueueWatchStatsEntry", - 1 - ] - }, - "hpSwitchQueueWatchStatsQueueIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "hpSwitchQueueWatchStatsEntry", - 2 - ] - }, - "hpSwitchQueueWatchStatsQueueDrops": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "hpSwitchQueueWatchStatsEntry", - 3 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SW-MIB.json b/mibs/parsed/SW-MIB.json deleted file mode 100644 index d634ff0..0000000 --- a/mibs/parsed/SW-MIB.json +++ /dev/null @@ -1,4387 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-TC", - [ - "DisplayString", - "TEXTUAL-CONVENTION", - "TruthValue" - ] - ], - [ - "SNMPv2-SMI", - [ - "Counter32", - "Integer32", - "IpAddress", - "OBJECT-TYPE", - "OBJECT-IDENTITY", - "MODULE-IDENTITY", - "NOTIFICATION-TYPE" - ] - ], - [ - "Brocade-TC", - [ - "FcWwn", - "SwDomainIndex", - "SwNbIndex", - "SwSensorIndex", - "SwPortIndex", - "SwTrunkMaster" - ] - ], - [ - "Brocade-REG-MIB", - [ - "fcSwitch", - "bcsiModules" - ] - ], - [ - "FCMGMT-MIB", - [ - "connUnitPortStatEntry", - "connUnitPortEntry" - ] - ] - ], - "swMibModule": { - "tp": "MODULE-IDENTITY", - "value": [ - "bcsiModules", - 3 - ] - }, - "sw": { - "tp": "OBJECT-IDENTITY", - "value": [ - "fcSwitch", - 1 - ] - }, - "sw28k": { - "tp": "OBJECT-IDENTITY", - "value": [ - "fcSwitch", - 2 - ] - }, - "sw21kN24k": { - "tp": "OBJECT-IDENTITY", - "value": [ - "fcSwitch", - 3 - ] - }, - "sw20x0": { - "tp": "OBJECT-IDENTITY", - "value": [ - "fcSwitch", - 4 - ] - }, - "SwSevType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "none", - "1": "critical", - "2": "error", - "3": "warning", - "4": "informational", - "5": "debug" - } - }, - "display_hint": null - }, - "FcPortFlag": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "BITS", - "values": { - "0": "physical", - "1": "virtual" - } - }, - "display_hint": null - }, - "swSystem": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 1 - ] - }, - "swFabric": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 2 - ] - }, - "swModule": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 3 - ] - }, - "swAgtCfg": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 4 - ] - }, - "swFCport": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 6 - ] - }, - "swNs": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 7 - ] - }, - "swEvent": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 8 - ] - }, - "swFwSystem": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 10 - ] - }, - "swEndDevice": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 21 - ] - }, - "swGroup": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 22 - ] - }, - "swBlmPerfMnt": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 23 - ] - }, - "swTrunk": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 24 - ] - }, - "swTopTalker": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 25 - ] - }, - "swCpuOrMemoryUsage": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 26 - ] - }, - "swConnUnitPortStatExtentionTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwConnUnitPortStatEntry" - }, - "index": null, - "value": [ - "sw", - 27 - ] - }, - "swCurrentDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 1 - ] - }, - "swBootDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 2 - ] - }, - "swFWLastUpdated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 3 - ] - }, - "swFlashLastUpdated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 4 - ] - }, - "swBootPromLastUpdated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 5 - ] - }, - "swFirmwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 6 - ] - }, - "swOperStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "online", - "2": "offline", - "3": "testing", - "4": "faulty" - } - }, - "index": null, - "value": [ - "swSystem", - 7 - ] - }, - "swAdmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "online", - "2": "offline", - "3": "testing", - "4": "faulty", - "5": "reboot", - "6": "fastboot" - } - }, - "index": null, - "value": [ - "swSystem", - 8 - ] - }, - "swTelnetShellAdmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "terminated" - } - }, - "index": null, - "value": [ - "swSystem", - 9 - ] - }, - "swSsn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 10 - ] - }, - "swFlashDLOperStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "swCurrent", - "2": "swFwUpgraded", - "3": "swCfUploaded", - "4": "swCfDownloaded", - "5": "swFwCorrupted" - } - }, - "index": null, - "value": [ - "swSystem", - 11 - ] - }, - "swFlashDLAdmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "swCurrent", - "2": "swFwUpgrade", - "3": "swCfUpload", - "4": "swCfDownload", - "5": "swFwCorrupted" - } - }, - "index": null, - "value": [ - "swSystem", - 12 - ] - }, - "swFlashDLHost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 13 - ] - }, - "swFlashDLUser": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 14 - ] - }, - "swFlashDLFile": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 15 - ] - }, - "swFlashDLPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 16 - ] - }, - "swBeaconOperStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off" - } - }, - "index": null, - "value": [ - "swSystem", - 18 - ] - }, - "swBeaconAdmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off" - } - }, - "index": null, - "value": [ - "swSystem", - 19 - ] - }, - "swDiagResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "sw-ok", - "2": "sw-faulty", - "3": "sw-embedded-port-fault" - } - }, - "index": null, - "value": [ - "swSystem", - 20 - ] - }, - "swNumSensors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swSystem", - 21 - ] - }, - "swSensorTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwSensorEntry" - }, - "index": null, - "value": [ - "swSystem", - 22 - ] - }, - "swSensorEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwSensorEntry" - }, - "index": [ - "swSensorIndex" - ], - "value": [ - "swSensorTable", - 1 - ] - }, - "SwSensorEntry": { - "tp": "SEQUENCE" - }, - "swSensorIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwSensorIndex" - }, - "index": null, - "value": [ - "swSensorEntry", - 1 - ] - }, - "swSensorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "temperature", - "2": "fan", - "3": "power-supply" - } - }, - "index": null, - "value": [ - "swSensorEntry", - 2 - ] - }, - "swSensorStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "faulty", - "3": "below-min", - "4": "nominal", - "5": "above-max", - "6": "absent" - } - }, - "index": null, - "value": [ - "swSensorEntry", - 3 - ] - }, - "swSensorValue": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swSensorEntry", - 4 - ] - }, - "swSensorInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSensorEntry", - 5 - ] - }, - "swTrackChangesInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 23 - ] - }, - "swID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swSystem", - 24 - ] - }, - "swEtherIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swSystem", - 25 - ] - }, - "swEtherIPMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swSystem", - 26 - ] - }, - "swFCIPAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swSystem", - 27 - ] - }, - "swFCIPMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swSystem", - 28 - ] - }, - "swIPv6Address": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 29 - ] - }, - "swIPv6Status": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "tentative", - "2": "preferred", - "3": "ipdeprecated", - "4": "inactive" - } - }, - "index": null, - "value": [ - "swSystem", - 30 - ] - }, - "swModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "switch7500", - "2": "switch7500E", - "3": "other" - } - }, - "index": null, - "value": [ - "swSystem", - 31 - ] - }, - "swTestString": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swSystem", - 32 - ] - }, - "swPortList": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swSystem", - 33 - ] - }, - "swBrcdTrapBitMask": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swSystem", - 34 - ] - }, - "swFCPortPrevType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "fl-port", - "4": "f-port", - "5": "e-port", - "6": "g-port", - "7": "ex-port" - } - }, - "index": null, - "value": [ - "swSystem", - 35 - ] - }, - "swDeviceStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "login", - "2": "logout", - "3": "unknown" - } - }, - "index": null, - "value": [ - "swSystem", - 36 - ] - }, - "swDomainID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwDomainIndex" - }, - "index": null, - "value": [ - "swFabric", - 1 - ] - }, - "swPrincipalSwitch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "yes", - "2": "no" - } - }, - "index": null, - "value": [ - "swFabric", - 2 - ] - }, - "swNumNbs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFabric", - 8 - ] - }, - "swNbTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwNbEntry" - }, - "index": null, - "value": [ - "swFabric", - 9 - ] - }, - "swNbEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwNbEntry" - }, - "index": [ - "swNbIndex" - ], - "value": [ - "swNbTable", - 1 - ] - }, - "SwNbEntry": { - "tp": "SEQUENCE" - }, - "swNbIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwNbIndex" - }, - "index": null, - "value": [ - "swNbEntry", - 1 - ] - }, - "swNbMyPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swNbEntry", - 2 - ] - }, - "swNbRemDomain": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwDomainIndex" - }, - "index": null, - "value": [ - "swNbEntry", - 3 - ] - }, - "swNbRemPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swNbEntry", - 4 - ] - }, - "swNbBaudRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "oneEighth", - "4": "quarter", - "8": "half", - "16": "full", - "32": "double", - "64": "quadruple", - "128": "octuple", - "256": "decuple", - "512": "sexdecuple" - } - }, - "index": null, - "value": [ - "swNbEntry", - 5 - ] - }, - "swNbIslState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "sw-down", - "1": "sw-init", - "2": "sw-internal2", - "3": "sw-internal3", - "4": "sw-internal4", - "5": "sw-active" - } - }, - "index": null, - "value": [ - "swNbEntry", - 6 - ] - }, - "swNbIslCost": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swNbEntry", - 7 - ] - }, - "swNbRemPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNbEntry", - 8 - ] - }, - "swFabricMemTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwFabricMemEntry" - }, - "index": null, - "value": [ - "swFabric", - 10 - ] - }, - "swFabricMemEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFabricMemEntry" - }, - "index": [ - "swFabricMemWwn" - ], - "value": [ - "swFabricMemTable", - 1 - ] - }, - "SwFabricMemEntry": { - "tp": "SEQUENCE" - }, - "swFabricMemWwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcWwn" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 1 - ] - }, - "swFabricMemDid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwDomainIndex" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 2 - ] - }, - "swFabricMemName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 3 - ] - }, - "swFabricMemEIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 4 - ] - }, - "swFabricMemFCIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 5 - ] - }, - "swFabricMemGWIP": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 6 - ] - }, - "swFabricMemType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 7 - ] - }, - "swFabricMemShortVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swFabricMemEntry", - 8 - ] - }, - "swIDIDMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled" - } - }, - "index": null, - "value": [ - "swFabric", - 11 - ] - }, - "swPmgrEventType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "create", - "1": "delete", - "2": "moveport", - "3": "fidchange", - "4": "basechange", - "6": "vfstatechange" - } - }, - "index": null, - "value": [ - "swFabric", - 12 - ] - }, - "swPmgrEventTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFabric", - 13 - ] - }, - "swPmgrEventDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFabric", - 14 - ] - }, - "swVfId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFabric", - 15 - ] - }, - "swVfName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFabric", - 16 - ] - }, - "swAgtCmtyTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwAgtCmtyEntry" - }, - "index": null, - "value": [ - "swAgtCfg", - 11 - ] - }, - "swauthProtocolPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swAgtCfg", - 12 - ] - }, - "swprivProtocolPassword": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swAgtCfg", - 13 - ] - }, - "swAgtCmtyEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwAgtCmtyEntry" - }, - "index": [ - "swAgtCmtyIdx" - ], - "value": [ - "swAgtCmtyTable", - 1 - ] - }, - "SwAgtCmtyEntry": { - "tp": "SEQUENCE" - }, - "swAgtCmtyIdx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swAgtCmtyEntry", - 1 - ] - }, - "swAgtCmtyStr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swAgtCmtyEntry", - 2 - ] - }, - "swAgtTrapRcp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "swAgtCmtyEntry", - 3 - ] - }, - "swAgtTrapSeverityLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwSevType" - }, - "index": null, - "value": [ - "swAgtCmtyEntry", - 4 - ] - }, - "swFCPortCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFCport", - 1 - ] - }, - "swFCPortTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwFCPortEntry" - }, - "index": null, - "value": [ - "swFCport", - 2 - ] - }, - "swFCPortEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFCPortEntry" - }, - "index": [ - "swFCPortIndex" - ], - "value": [ - "swFCPortTable", - 1 - ] - }, - "SwFCPortEntry": { - "tp": "SEQUENCE" - }, - "swFCPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swFCPortEntry", - 1 - ] - }, - "swFCPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "stitch", - "2": "flannel", - "3": "loom", - "4": "bloom", - "5": "rdbloom", - "6": "wormhole", - "7": "other", - "8": "unknown" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 2 - ] - }, - "swFCPortPhyState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "noCard", - "2": "noTransceiver", - "3": "laserFault", - "4": "noLight", - "5": "noSync", - "6": "inSync", - "7": "portFault", - "8": "diagFault", - "9": "lockRef", - "10": "validating", - "11": "invalidModule", - "14": "noSigDet", - "255": "unknown" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 3 - ] - }, - "swFCPortOpStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "unknown", - "1": "online", - "2": "offline", - "3": "testing", - "4": "faulty" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 4 - ] - }, - "swFCPortAdmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "online", - "2": "offline", - "3": "testing", - "4": "faulty" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 5 - ] - }, - "swFCPortLinkState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "enabled", - "2": "disabled", - "3": "loopback" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 6 - ] - }, - "swFCPortTxType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "lw", - "3": "sw", - "4": "ld", - "5": "cu" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 7 - ] - }, - "swFCPortTxWords": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 11 - ] - }, - "swFCPortRxWords": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 12 - ] - }, - "swFCPortTxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 13 - ] - }, - "swFCPortRxFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 14 - ] - }, - "swFCPortRxC2Frames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 15 - ] - }, - "swFCPortRxC3Frames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 16 - ] - }, - "swFCPortRxLCs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 17 - ] - }, - "swFCPortRxMcasts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 18 - ] - }, - "swFCPortTooManyRdys": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 19 - ] - }, - "swFCPortNoTxCredits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 20 - ] - }, - "swFCPortRxEncInFrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 21 - ] - }, - "swFCPortRxCrcs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 22 - ] - }, - "swFCPortRxTruncs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 23 - ] - }, - "swFCPortRxTooLongs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 24 - ] - }, - "swFCPortRxBadEofs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 25 - ] - }, - "swFCPortRxEncOutFrs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 26 - ] - }, - "swFCPortRxBadOs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 27 - ] - }, - "swFCPortC3Discards": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 28 - ] - }, - "swFCPortMcastTimedOuts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 29 - ] - }, - "swFCPortTxMcasts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 30 - ] - }, - "swFCPortLipIns": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 31 - ] - }, - "swFCPortLipOuts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swFCPortEntry", - 32 - ] - }, - "swFCPortLipLastAlpa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swFCPortEntry", - 33 - ] - }, - "swFCPortWwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swFCPortEntry", - 34 - ] - }, - "swFCPortSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "one-GB", - "2": "two-GB", - "3": "auto-Negotiate", - "4": "four-GB", - "5": "eight-GB", - "6": "ten-GB", - "7": "unknown", - "8": "sixteen-GB" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 35 - ] - }, - "swFCPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFCPortEntry", - 36 - ] - }, - "swFCPortSpecifier": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFCPortEntry", - 37 - ] - }, - "swFCPortFlag": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcPortFlag" - }, - "index": null, - "value": [ - "swFCPortEntry", - 38 - ] - }, - "swFCPortBrcdType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "other", - "3": "fl-port", - "4": "f-port", - "5": "e-port", - "6": "g-port", - "7": "ex-port" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 39 - ] - }, - "swFCPortDisableReason": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "r-recover-fail", - "2": "r-invalid-reason", - "3": "r-forced", - "4": "r-sw-disabled", - "5": "r-bl-disabled", - "6": "r-slot-off", - "7": "r-sw-enabled", - "8": "r-bl-enabled", - "9": "r-slot-on", - "10": "r-persistid", - "11": "r-sw-violation", - "12": "r-prv-dev-violation", - "13": "r-pub-dev-violation", - "14": "r-port-data-fail", - "15": "r-online-incomplete", - "16": "r-online-route-fail", - "17": "r-inconsistent", - "18": "r-set-vcc-fail", - "19": "r-ecp-in-testing", - "20": "r-elp-in-testing", - "21": "r-ecp-retries-exceeded", - "22": "r-invalid-ecp-state", - "23": "r-bad-ecp-rcvd", - "24": "r-send-rtmark-fail", - "25": "r-send-ecp-fail", - "26": "r-save-link-rtt-fail", - "27": "r-em-incnst", - "28": "r-pci-attach-fail", - "29": "r-buf-starv", - "30": "r-elp-fctl-mismatch", - "31": "r-eport-disabled", - "32": "r-trunk-with-vcxlt", - "33": "r-sw-fl-port-not-ready", - "34": "r-link-reinit", - "35": "r-domain-id-change", - "36": "r-auth-rejected", - "37": "r-auth-timeout", - "38": "r-auth-fail-retry", - "39": "r-fcr-conf-mismatch1", - "40": "r-fcr-conf-mismatch2", - "41": "r-fcr-port-ld-mode-mismatch", - "42": "r-fcr-ld-credit-mismatch", - "43": "r-fcr-set-vcc-failed", - "44": "r-fcr-set-rtc-failed", - "45": "r-fcr-elp-ver-inconsis", - "46": "r-fcr-elp-fctl-mismatch", - "47": "r-fcr-pid-mismatch", - "48": "r-fcr-tov-mismatch", - "49": "r-fcr-ld-incompat", - "50": "r-fcr-isolated", - "51": "r-elp-retries-exceeded", - "52": "r-fcr-exports-exceeded", - "53": "r-fcr-license", - "54": "r-fcr-conf-ex", - "55": "r-fcr-ftag-over", - "56": "r-fcr-ftag-conflict", - "57": "r-fcr-fowner-conflict", - "58": "r-fcr-zone-resource", - "59": "r-fcr-port-state-to", - "60": "r-fcr-authn-reject", - "61": "r-fcr-sec-fcs-list", - "62": "r-fcr-sec-failure", - "63": "r-fcr-incompatible-mode", - "64": "r-fcr-sec-scc-list", - "65": "r-fcr-generic", - "66": "r-sw-ex-port-not-ready", - "67": "r-fcr-class-f-incompat", - "68": "r-fcr-class-n-incompat", - "69": "r-fcr-invalid-flow-rcvd", - "70": "r-fcr-state-disabled", - "71": "r-fdd-strict-exist", - "72": "r-last-port-disable-msg", - "73": "r-sw-l-port-not-support", - "74": "r-peer-port-in-di-zone", - "75": "r-zone-incompat", - "76": "r-sw-config-l-port-not-support", - "77": "r-sw-port-mirror-configured", - "78": "r-nportlogin-inprogress", - "79": "r-nonpiv", - "80": "r-nomapping", - "81": "r-unknowntype", - "82": "r-nportoffline", - "83": "r-flogifailed", - "84": "r-nportbusy", - "85": "r-noflogi", - "86": "r-noflogiresp", - "87": "r-flogidupalpa", - "88": "r-loopcfg", - "89": "r-noenclicense", - "90": "r-nofiportmapping", - "91": "r-brcdfabconn", - "92": "r-port-reset", - "93": "r-floginport", - "94": "r-fdd-strict-conflict", - "95": "r-fdd-cfg-conflict", - "96": "r-fdd-cfg-conflict-na-neigh", - "97": "r-fcr-insistent-front-did-mismatch", - "98": "r-fcr-fabric-binding-failure", - "99": "r-fcr-non-standard-domain-offset", - "100": "r-area-in-use", - "101": "r-mstr-diff-pg", - "102": "r-mstr-diff-area", - "103": "r-ta-not-supported", - "104": "r-eport-not-supported", - "105": "r-fport-not-supported", - "106": "r-cfg-not-supported", - "107": "r-port-ll-th-exceeded", - "108": "r-port-synl-th-exceeded", - "109": "r-port-pe-th-exceeded", - "110": "f-port-disable-no-trk-lic", - "111": "r-port-inw-th-exceeded", - "112": "r-port-crc-th-exceeded", - "113": "f-port-tr-disable-speed-not-ok", - "114": "r-port-auto-disable", - "115": "r-fcr-export-in-non-base-sw", - "116": "r-base-switch-supports-no-device", - "117": "r-port-trunk-proto-error", - "118": "r-no-area-avail", - "119": "r-cannot-unbind-existing-area", - "120": "r-cannot-use-10bit-area", - "121": "r-authentication-required", - "122": "r-port-lr-th-exceeded", - "123": "r-fcr-export-lf-conflict", - "124": "r-incompat", - "125": "r-did-overlap", - "126": "r-zone-conflict", - "127": "r-eport-seg", - "128": "r-no-license", - "129": "r-platform-db", - "130": "r-sec-incompat", - "131": "r-sec-violation", - "132": "r-ecp-longdist", - "133": "r-dup-wwn", - "134": "r-eport-isolated", - "135": "r-ad", - "136": "r-esc-did-offset", - "137": "r-esc-etiz", - "138": "r-esc-fid", - "139": "r-safe-zone", - "140": "r-vf", - "141": "r-vf-bs-incompat", - "142": "r-pers-pid-on-lport", - "143": "r-pers-pid-portaddr-collision", - "144": "r-pers-pid-port-on-same-area", - "145": "r-pers-pid-port-addr-bnd", - "146": "r-msfr", - "147": "r-sw-halfbw-lic", - "148": "r-1g-mode-incompat", - "149": "r-10g-mode-incompat", - "150": "r-dual-mode-incompat", - "151": "r-implict-plt-service-block", - "152": "r-port-st-th-exceeded", - "153": "r-port-c3txto-th-exceeded", - "154": "r-eport-not-supported-def-sw", - "155": "r-eport-ll-th-exceeded", - "156": "r-eport-synl-th-exceeded", - "157": "r-eport-pe-th-exceeded", - "158": "r-eport-inw-th-exceeded", - "159": "r-eport-crc-th-exceeded", - "160": "r-eport-lr-th-exceeded", - "161": "r-eport-st-th-exceeded", - "162": "r-eport-c3txto-th-exceeded", - "163": "r-fopport-ll-th-exceeded", - "164": "r-fopport-synl-th-exceeded", - "165": "r-fopport-pe-th-exceeded", - "166": "r-fopport-inw-th-exceeded", - "167": "r-fopport-crc-th-exceeded", - "168": "r-fopport-lr-th-exceeded", - "169": "r-fopport-st-th-exceeded", - "170": "r-fopport-c3txto-th-exceeded", - "171": "r-fcuport-ll-th-exceeded", - "172": "r-fcuport-synl-th-exceeded", - "173": "r-fcuport-pe-th-exceeded", - "174": "r-fcuport-inw-th-exceeded", - "175": "r-fcuport-crc-th-exceeded", - "176": "r-fcuport-lr-th-exceeded", - "177": "r-fcuport-st-th-exceeded", - "178": "r-fcuport-c3txto-th-exceeded", - "179": "r-port-no-area-avail-pers-disable", - "180": "r-eport-locked", - "181": "r-enh-tizone", - "182": "r-sw-port-swap-not-supported", - "183": "r-fport-slow-drain-condition", - "184": "r-esc-vlanid", - "185": "r-port-recov-state", - "186": "r-port-auto-disable-losn", - "187": "r-port-auto-disable-losg", - "188": "r-port-auto-disable-ols", - "189": "r-port-auto-disable-nos", - "190": "r-port-auto-disable-lip", - "191": "r-port-compression", - "192": "r-port-encryption", - "193": "r-port-enccomp-res", - "194": "r-port-decommissioned", - "195": "r-port-dportmode", - "196": "r-port-dport-incompat", - "197": "r-port-enc-comp-mismatch", - "198": "r-non-rcs-rem-dom", - "199": "r-port-fips-comp-mismatch", - "200": "r-port-non-fips-comp-mismatch", - "201": "r-port-enc-auth-disabled", - "202": "r-port-disable-on-zeroize", - "203": "r-cfgspeed-not-supported", - "204": "r-fcr-ex-port-not-allowed", - "205": "r-port-duplicate-pwwn", - "206": "r-fcr-trunk-master-sfid-not-set", - "207": "r-nportistrunkmem", - "208": "r-policynotsupported", - "209": "r-no-icl-license", - "210": "r-no-ten-gig-license", - "211": "r-fdd-strict-scc-conflict", - "212": "r-fdd-strict-dcc-conflict", - "213": "r-fdd-strict-fcs-conflict", - "214": "r-fdd-strict-fabwide-conflict", - "215": "r-fdd-strict-pwd-conflict", - "216": "r-fcr-interop-conf", - "217": "r-port-enc-interop-conflict", - "218": "r-port-comp-interop-conflict", - "219": "r-no-port-open-rsp", - "220": "r-no-eicl-license", - "221": "r-eicl-license-limited", - "222": "r-esc-base-sw", - "223": "r-sw-cpu-overload", - "224": "r-no-icl-pod2-license", - "225": "r-port-area-mismatch-pers-disable", - "226": "r-unauthorized-device", - "227": "r-max-flogi-reached", - "228": "r-auth-not-supported-in-switch", - "229": "r-icl-ex-on-non-vf", - "230": "r-user-disabled-reason" - } - }, - "index": null, - "value": [ - "swFCPortEntry", - 40 - ] - }, - "swNsLocalNumEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swNs", - 1 - ] - }, - "swNsLocalTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwNsEntry" - }, - "index": null, - "value": [ - "swNs", - 2 - ] - }, - "swNsLocalEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwNsEntry" - }, - "index": [ - "swNsEntryIndex" - ], - "value": [ - "swNsLocalTable", - 1 - ] - }, - "SwNsEntry": { - "tp": "SEQUENCE" - }, - "swNsEntryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 1 - ] - }, - "swNsPortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 2 - ] - }, - "swNsPortType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "nPort", - "2": "nlPort" - } - }, - "index": null, - "value": [ - "swNsLocalEntry", - 3 - ] - }, - "swNsPortName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcWwn" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 4 - ] - }, - "swNsPortSymb": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 5 - ] - }, - "swNsNodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcWwn" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 6 - ] - }, - "swNsNodeSymb": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 7 - ] - }, - "swNsIPA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 8 - ] - }, - "swNsIpAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 9 - ] - }, - "swNsCos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "class-F", - "2": "class-1", - "3": "class-F-1", - "4": "class-2", - "5": "class-F-2", - "6": "class-1-2", - "7": "class-F-1-2", - "8": "class-3", - "9": "class-F-3", - "10": "class-1-3", - "11": "class-F-1-3", - "12": "class-2-3", - "13": "class-F-2-3", - "14": "class-1-2-3", - "15": "class-F-1-2-3" - } - }, - "index": null, - "value": [ - "swNsLocalEntry", - 10 - ] - }, - "swNsFc4": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 11 - ] - }, - "swNsIpNxPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 12 - ] - }, - "swNsWwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 13 - ] - }, - "swNsHardAddr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swNsLocalEntry", - 14 - ] - }, - "swEventTrapLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "none", - "1": "critical", - "2": "error", - "3": "warning", - "4": "informational", - "5": "debug" - } - }, - "index": null, - "value": [ - "swEvent", - 1 - ] - }, - "swEventNumEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swEvent", - 4 - ] - }, - "swEventTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwEventEntry" - }, - "index": null, - "value": [ - "swEvent", - 5 - ] - }, - "swEventEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwEventEntry" - }, - "index": [ - "swEventIndex" - ], - "value": [ - "swEventTable", - 1 - ] - }, - "SwEventEntry": { - "tp": "SEQUENCE" - }, - "swEventIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swEventEntry", - 1 - ] - }, - "swEventTimeInfo": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swEventEntry", - 2 - ] - }, - "swEventLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "critical", - "2": "error", - "3": "warning", - "4": "informational", - "5": "debug" - } - }, - "index": null, - "value": [ - "swEventEntry", - 3 - ] - }, - "swEventRepeatCount": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swEventEntry", - 4 - ] - }, - "swEventDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swEventEntry", - 5 - ] - }, - "swEventVfId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swEventEntry", - 6 - ] - }, - "SwFwActs": { - "tp": "INTEGER", - "values": { - "0": "swFwNoAction", - "1": "swFwErrlog", - "2": "swFwSnmptrap", - "3": "swFwErrlogSnmptrap", - "4": "swFwPortloglock", - "5": "swFwErrlogPortloglock", - "6": "swFwSnmptrapPortloglock", - "7": "swFwErrlogSnmptrapPortloglock", - "8": "swFwRn", - "9": "swFwElRn", - "10": "swFwStRn", - "11": "swFwElStRn", - "12": "swFwPlRn", - "13": "swFwElPlRn", - "14": "swFwStPlRn", - "15": "swFwElStPlRn", - "16": "swFwMailAlert", - "17": "swFwMailAlertErrlog", - "18": "swFwMailAlertSnmptrap", - "19": "swFwMailAlertErrlogSnmptrap", - "20": "swFwMailAlertPortloglock", - "21": "swFwMailAlertErrlogPortloglock", - "22": "swFwMailAlertSnmptrapPortloglock", - "23": "swFwMailAlertErrlogSnmptrapPortloglock", - "24": "swFwMailAlertRn", - "25": "swFwElMailAlertRn", - "26": "swFwMailAlertStRn", - "27": "swFwMailAlertElStRn", - "28": "swFwMailAlertPlRn", - "29": "swFwMailAlertElPlRn", - "30": "swFwMailAlertStPlRn", - "31": "swFwMailAlertElStPlRn", - "32": "swFwPf", - "33": "swFwElPf", - "34": "swFwStPf", - "35": "swFwElStPf", - "36": "swFwPlPf", - "37": "swFwElPlPf", - "38": "swFwStPlPf", - "39": "swFwElStPlPf", - "40": "swFwRnPf", - "41": "swFwElRnPf", - "42": "swFwStRnPf", - "43": "swFwElStRnPf", - "44": "swFwPlRnPf", - "45": "swFwElPlRnPf", - "46": "swFwStPlRnPf", - "47": "swFwElStPlRnPf", - "48": "swFwMailAlertPf", - "49": "swFwMailAlertElPf", - "50": "swFwMailAlertStPf", - "51": "swFwMailAlertElStPf", - "52": "swFwMailAlertPlPf", - "53": "swFwMailAlertElPlPf", - "54": "swFwMailAlertStPlPf", - "55": "swFwMailAlertElStPlPf", - "56": "swFwMailAlertRnPf", - "57": "swFwMailAlertElRnPf", - "58": "swFwMailAlertStRnPf", - "59": "swFwMailAlertElStRnPf", - "60": "swFwMailAlertPlRnPf", - "61": "swFwMailAlertElPlRnPf", - "62": "swFwMailAlertStPlRnPf", - "63": "swFwMailAlertElStPlRnPf" - } - }, - "SwFwLevels": { - "tp": "INTEGER", - "values": { - "1": "swFwReserved", - "2": "swFwDefault", - "3": "swFwCustom" - } - }, - "SwFwClassesAreas": { - "tp": "INTEGER", - "values": { - "1": "swFwEnvTemp", - "2": "swFwEnvFan", - "3": "swFwEnvPs", - "4": "swFwTransceiverTemp", - "5": "swFwTransceiverRxp", - "6": "swFwTransceiverTxp", - "7": "swFwTransceiverCurrent", - "8": "swFwPortLink", - "9": "swFwPortSync", - "10": "swFwPortSignal", - "11": "swFwPortPe", - "12": "swFwPortWords", - "13": "swFwPortCrcs", - "14": "swFwPortRXPerf", - "15": "swFwPortTXPerf", - "16": "swFwPortState", - "17": "swFwFabricEd", - "18": "swFwFabricFr", - "19": "swFwFabricDi", - "20": "swFwFabricSc", - "21": "swFwFabricZc", - "22": "swFwFabricFq", - "23": "swFwFabricFl", - "24": "swFwFabricGs", - "25": "swFwEPortLink", - "26": "swFwEPortSync", - "27": "swFwEPortSignal", - "28": "swFwEPortPe", - "29": "swFwEPortWords", - "30": "swFwEPortCrcs", - "31": "swFwEPortRXPerf", - "32": "swFwEPortTXPerf", - "33": "swFwEPortState", - "34": "swFwFCUPortLink", - "35": "swFwFCUPortSync", - "36": "swFwFCUPortSignal", - "37": "swFwFCUPortPe", - "38": "swFwFCUPortWords", - "39": "swFwFCUPortCrcs", - "40": "swFwFCUPortRXPerf", - "41": "swFwFCUPortTXPerf", - "42": "swFwFCUPortState", - "43": "swFwFOPPortLink", - "44": "swFwFOPPortSync", - "45": "swFwFOPPortSignal", - "46": "swFwFOPPortPe", - "47": "swFwFOPPortWords", - "48": "swFwFOPPortCrcs", - "49": "swFwFOPPortRXPerf", - "50": "swFwFOPPortTXPerf", - "51": "swFwFOPPortState", - "52": "swFwPerfALPACRC", - "53": "swFwPerfEToECRC", - "54": "swFwPerfEToERxCnt", - "55": "swFwPerfEToETxCnt", - "56": "swFwPerffltCusDef", - "57": "swFwTransceiverVoltage", - "58": "swFwSecTelnetViolations", - "59": "swFwSecHTTPViolations", - "60": "swFwSecAPIViolations", - "61": "swFwSecRSNMPViolations", - "62": "swFwSecWSNMPViolations", - "63": "swFwSecSESViolations", - "64": "swFwSecMSViolations", - "65": "swFwSecSerialViolations", - "66": "swFwSecFPViolations", - "67": "swFwSecSCCViolations", - "68": "swFwSecDCCViolations", - "69": "swFwSecLoginViolations", - "70": "swFwSecInvalidTS", - "71": "swFwSecInvalidSign", - "72": "swFwSecInvalidCert", - "73": "swFwSecSlapFail", - "74": "swFwSecSlapBadPkt", - "75": "swFwSecTSOutSync", - "76": "swFwSecNoFcs", - "77": "swFwSecIncompDB", - "78": "swFwSecIllegalCmd", - "79": "swFwSAMTotalDownTime", - "80": "swFwSAMTotalUpTime", - "81": "swFwSAMDurationOfOccur", - "82": "swFwSAMFreqOfOccur", - "83": "swFwResourceFlash", - "84": "swFwEPortUtil", - "85": "swFwEPortPktl", - "86": "swFwPortLr", - "87": "swFwEPortLr", - "88": "swFwFCUPortLr", - "89": "swFwFOPPortLr", - "90": "swFwPortC3Discard", - "91": "swFwEPortC3Discard", - "92": "swFwFCUPortC3Discard", - "93": "swFwFOPPortC3Discard", - "94": "swFwVEPortStateChange", - "95": "swFwVEPortUtil", - "96": "swFwVEPortPktLoss", - "97": "swFwEPortTrunkUtil", - "98": "swFwFCUPortTrunkUtil", - "99": "swFwFOPPortTrunkUtil", - "100": "swFwCPUMemUsage", - "101": "filterFmCfg1", - "102": "filterFmCfg2", - "103": "filterFmCfg3", - "104": "filterFmCfg4", - "105": "filterFmCfg5", - "106": "filterFmCfg6", - "107": "filterFmCfg7", - "108": "filterFmCfg8", - "109": "filterFmCfg9", - "110": "filterFmCfg10", - "111": "filterFmCfg11", - "112": "filterFmCfg12", - "113": "filterFmCfg13", - "114": "filterFmCfg14", - "115": "filterFmCfg15", - "116": "filterFmCfg16", - "117": "filterFmCfg17", - "118": "filterFmCfg18", - "119": "filterFmCfg19", - "120": "filterFmCfg20", - "121": "filterFmCfg21", - "122": "filterFmCfg22", - "123": "filterFmCfg23", - "124": "filterFmCfg24", - "125": "filterFmCfg25", - "126": "filterFmCfg26", - "127": "filterFmCfg27", - "128": "filterFmCfg28", - "129": "filterFmCfg29", - "130": "filterFmCfg30", - "131": "filterFmCfg31", - "132": "filterFmCfg32", - "133": "filterFmCfg33", - "134": "filterFmCfg34", - "135": "filterFmCfg35", - "136": "filterFmCfg36", - "137": "filterFmCfg37", - "138": "filterFmCfg38", - "139": "filterFmCfg39", - "140": "filterFmCfg40", - "141": "filterFmCfg41", - "142": "filterFmCfg42", - "143": "filterFmCfg43", - "144": "filterFmCfg44", - "145": "filterFmCfg45", - "146": "filterFmCfg46", - "147": "filterFmCfg47", - "148": "filterFmCfg48", - "149": "filterFmCfg49", - "150": "filterFmCfg50", - "151": "filterFmCfg51", - "152": "swFwPowerOnHours" - } - }, - "SwFwWriteVals": { - "tp": "INTEGER", - "values": { - "1": "swFwCancelWrite", - "2": "swFwApplyWrite" - } - }, - "SwFwTimebase": { - "tp": "INTEGER", - "values": { - "1": "swFwTbNone", - "2": "swFwTbSec", - "3": "swFwTbMin", - "4": "swFwTbHour", - "5": "swFwTbDay" - } - }, - "SwFwStatus": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "SwFwEvent": { - "tp": "INTEGER", - "values": { - "1": "started", - "2": "changed", - "3": "exceeded", - "4": "below", - "5": "above", - "6": "inBetween", - "7": "lowBufferCrsd" - } - }, - "SwFwBehavior": { - "tp": "INTEGER", - "values": { - "1": "triggered", - "2": "continuous" - } - }, - "SwFwState": { - "tp": "INTEGER", - "values": { - "1": "swFwInformative", - "2": "swFwNormal", - "3": "swFwFaulty" - } - }, - "SwFwLicense": { - "tp": "INTEGER", - "values": { - "1": "swFwLicensed", - "2": "swFwNotLicensed" - } - }, - "swFwFabricWatchLicense": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwLicense" - }, - "index": null, - "value": [ - "swFwSystem", - 1 - ] - }, - "swFwClassAreaTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF\tSwFwClassAreaEntry" - }, - "index": null, - "value": [ - "swFwSystem", - 2 - ] - }, - "swFwClassAreaEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwClassAreaEntry" - }, - "index": [ - "swFwClassAreaIndex" - ], - "value": [ - "swFwClassAreaTable", - 1 - ] - }, - "SwFwClassAreaEntry": { - "tp": "SEQUENCE" - }, - "swFwClassAreaIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwClassesAreas" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 1 - ] - }, - "swFwWriteThVals": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwWriteVals" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 2 - ] - }, - "swFwDefaultUnit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 3 - ] - }, - "swFwDefaultTimebase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwTimebase" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 4 - ] - }, - "swFwDefaultLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 5 - ] - }, - "swFwDefaultHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 6 - ] - }, - "swFwDefaultBufSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 7 - ] - }, - "swFwCustUnit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 8 - ] - }, - "swFwCustTimebase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwTimebase" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 9 - ] - }, - "swFwCustLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 10 - ] - }, - "swFwCustHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 11 - ] - }, - "swFwCustBufSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 12 - ] - }, - "swFwThLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwLevels" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 13 - ] - }, - "swFwWriteActVals": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwWriteVals" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 14 - ] - }, - "swFwDefaultChangedActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 15 - ] - }, - "swFwDefaultExceededActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 16 - ] - }, - "swFwDefaultBelowActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 17 - ] - }, - "swFwDefaultAboveActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 18 - ] - }, - "swFwDefaultInBetweenActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 19 - ] - }, - "swFwCustChangedActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 20 - ] - }, - "swFwCustExceededActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 21 - ] - }, - "swFwCustBelowActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 22 - ] - }, - "swFwCustAboveActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 23 - ] - }, - "swFwCustInBetweenActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 24 - ] - }, - "swFwValidActs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwActs" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 25 - ] - }, - "swFwActLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwLevels" - }, - "index": null, - "value": [ - "swFwClassAreaEntry", - 26 - ] - }, - "swFwThresholdTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF\tSwFwThresholdEntry" - }, - "index": null, - "value": [ - "swFwSystem", - 3 - ] - }, - "swFwThresholdEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwThresholdEntry" - }, - "index": [ - "swFwClassAreaIndex", - "swFwThresholdIndex" - ], - "value": [ - "swFwThresholdTable", - 1 - ] - }, - "SwFwThresholdEntry": { - "tp": "SEQUENCE" - }, - "swFwThresholdIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 1 - ] - }, - "swFwStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwStatus" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 2 - ] - }, - "swFwName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 3 - ] - }, - "swFwLabel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 4 - ] - }, - "swFwCurVal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 5 - ] - }, - "swFwLastEvent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwEvent" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 6 - ] - }, - "swFwLastEventVal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 7 - ] - }, - "swFwLastEventTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 8 - ] - }, - "swFwLastState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwState" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 9 - ] - }, - "swFwBehaviorType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwFwBehavior" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 10 - ] - }, - "swFwBehaviorInt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 11 - ] - }, - "swFwLastSeverityLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwSevType" - }, - "index": null, - "value": [ - "swFwThresholdEntry", - 12 - ] - }, - "swEndDeviceRlsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF\tSwEndDeviceRlsEntry" - }, - "index": null, - "value": [ - "swEndDevice", - 1 - ] - }, - "swEndDeviceRlsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwEndDeviceRlsEntry" - }, - "index": [ - "swEndDevicePort", - "swEndDeviceAlpa" - ], - "value": [ - "swEndDeviceRlsTable", - 1 - ] - }, - "SwEndDeviceRlsEntry": { - "tp": "SEQUENCE" - }, - "swEndDevicePort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 1 - ] - }, - "swEndDeviceAlpa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 2 - ] - }, - "swEndDevicePortID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 3 - ] - }, - "swEndDeviceLinkFailure": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 4 - ] - }, - "swEndDeviceSyncLoss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 5 - ] - }, - "swEndDeviceSigLoss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 6 - ] - }, - "swEndDeviceProtoErr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 7 - ] - }, - "swEndDeviceInvalidWord": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 8 - ] - }, - "swEndDeviceInvalidCRC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "swEndDeviceRlsEntry", - 9 - ] - }, - "swGroupTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwGroupEntry" - }, - "index": null, - "value": [ - "swGroup", - 1 - ] - }, - "swGroupEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwGroupEntry" - }, - "index": [ - "swGroupIndex" - ], - "value": [ - "swGroupTable", - 1 - ] - }, - "SwGroupEntry": { - "tp": "SEQUENCE" - }, - "swGroupIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swGroupEntry", - 1 - ] - }, - "swGroupName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swGroupEntry", - 2 - ] - }, - "swGroupType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swGroupEntry", - 3 - ] - }, - "swGroupMemTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwGroupMemEntry" - }, - "index": null, - "value": [ - "swGroup", - 2 - ] - }, - "swGroupMemEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwGroupMemEntry" - }, - "index": [ - "swGroupId", - "swGroupMemWwn" - ], - "value": [ - "swGroupMemTable", - 1 - ] - }, - "SwGroupMemEntry": { - "tp": "SEQUENCE" - }, - "swGroupId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swGroupMemEntry", - 1 - ] - }, - "swGroupMemWwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcWwn" - }, - "index": null, - "value": [ - "swGroupMemEntry", - 2 - ] - }, - "swGroupMemPos": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swGroupMemEntry", - 3 - ] - }, - "swBlmPerfALPAMntTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwBlmPerfALPAMntEntry" - }, - "index": null, - "value": [ - "swBlmPerfMnt", - 1 - ] - }, - "swBlmPerfALPAMntEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwBlmPerfALPAMntEntry" - }, - "index": [ - "swBlmPerfAlpaPort", - "swBlmPerfAlpaIndx" - ], - "value": [ - "swBlmPerfALPAMntTable", - 1 - ] - }, - "SwBlmPerfALPAMntEntry": { - "tp": "SEQUENCE" - }, - "swBlmPerfAlpaPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swBlmPerfALPAMntEntry", - 1 - ] - }, - "swBlmPerfAlpaIndx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swBlmPerfALPAMntEntry", - 2 - ] - }, - "swBlmPerfAlpa": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swBlmPerfALPAMntEntry", - 3 - ] - }, - "swBlmPerfAlpaCRCCnt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swBlmPerfALPAMntEntry", - 4 - ] - }, - "swBlmPerfEEMntTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwBlmPerfEEMntEntry" - }, - "index": null, - "value": [ - "swBlmPerfMnt", - 2 - ] - }, - "swBlmPerfEEMntEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwBlmPerfEEMntEntry" - }, - "index": [ - "swBlmPerfEEPort", - "swBlmPerfEERefKey" - ], - "value": [ - "swBlmPerfEEMntTable", - 1 - ] - }, - "SwBlmPerfEEMntEntry": { - "tp": "SEQUENCE" - }, - "swBlmPerfEEPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 1 - ] - }, - "swBlmPerfEERefKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 2 - ] - }, - "swBlmPerfEECRC": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 3 - ] - }, - "swBlmPerfEEFCWRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 4 - ] - }, - "swBlmPerfEEFCWTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 5 - ] - }, - "swBlmPerfEESid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 6 - ] - }, - "swBlmPerfEEDid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swBlmPerfEEMntEntry", - 7 - ] - }, - "swBlmPerfFltMntTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwBlmPerfFltMntEntry" - }, - "index": null, - "value": [ - "swBlmPerfMnt", - 3 - ] - }, - "swBlmPerfFltMntEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwBlmPerfFltMntEntry" - }, - "index": [ - "swBlmPerfFltPort", - "swBlmPerfFltRefkey" - ], - "value": [ - "swBlmPerfFltMntTable", - 1 - ] - }, - "SwBlmPerfFltMntEntry": { - "tp": "SEQUENCE" - }, - "swBlmPerfFltPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swBlmPerfFltMntEntry", - 1 - ] - }, - "swBlmPerfFltRefkey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swBlmPerfFltMntEntry", - 2 - ] - }, - "swBlmPerfFltCnt": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swBlmPerfFltMntEntry", - 3 - ] - }, - "swBlmPerfFltAlias": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "swBlmPerfFltMntEntry", - 4 - ] - }, - "swSwitchTrunkable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "8": "yes", - "0": "no" - } - }, - "index": null, - "value": [ - "swTrunk", - 1 - ] - }, - "swTrunkTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwTrunkEntry" - }, - "index": null, - "value": [ - "swTrunk", - 2 - ] - }, - "swTrunkEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwTrunkEntry" - }, - "index": [ - "swTrunkPortIndex" - ], - "value": [ - "swTrunkTable", - 1 - ] - }, - "SwTrunkEntry": { - "tp": "SEQUENCE" - }, - "swTrunkPortIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwPortIndex" - }, - "index": null, - "value": [ - "swTrunkEntry", - 1 - ] - }, - "swTrunkGroupNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTrunkEntry", - 2 - ] - }, - "swTrunkMaster": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwTrunkMaster" - }, - "index": null, - "value": [ - "swTrunkEntry", - 3 - ] - }, - "swPortTrunked": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "disabled", - "1": "enabled" - } - }, - "index": null, - "value": [ - "swTrunkEntry", - 4 - ] - }, - "swTrunkGrpTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwTrunkGrpEntry" - }, - "index": null, - "value": [ - "swTrunk", - 3 - ] - }, - "swTrunkGrpEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwTrunkGrpEntry" - }, - "index": [ - "swTrunkGrpNumber" - ], - "value": [ - "swTrunkGrpTable", - 1 - ] - }, - "SwTrunkGrpEntry": { - "tp": "SEQUENCE" - }, - "swTrunkGrpNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTrunkGrpEntry", - 1 - ] - }, - "swTrunkGrpMaster": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwTrunkMaster" - }, - "index": null, - "value": [ - "swTrunkGrpEntry", - 2 - ] - }, - "swTrunkGrpTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swTrunkGrpEntry", - 3 - ] - }, - "swTrunkGrpRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swTrunkGrpEntry", - 4 - ] - }, - "swTopTalkerMntMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "fabricmode", - "2": "portmode" - } - }, - "index": null, - "value": [ - "swTopTalker", - 1 - ] - }, - "swTopTalkerMntNumEntries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTopTalker", - 2 - ] - }, - "swTopTalkerMntTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SwTopTalkerMntEntry" - }, - "index": null, - "value": [ - "swTopTalker", - 3 - ] - }, - "swTopTalkerMntEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwTopTalkerMntEntry" - }, - "index": [ - "swTopTalkerMntIndex" - ], - "value": [ - "swTopTalkerMntTable", - 1 - ] - }, - "SwTopTalkerMntEntry": { - "tp": "SEQUENCE" - }, - "swTopTalkerMntIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 1 - ] - }, - "swTopTalkerMntPort": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 2 - ] - }, - "swTopTalkerMntSpid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 3 - ] - }, - "swTopTalkerMntDpid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 4 - ] - }, - "swTopTalkerMntflow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 5 - ] - }, - "swTopTalkerMntSwwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcWwn" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 6 - ] - }, - "swTopTalkerMntDwwn": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FcWwn" - }, - "index": null, - "value": [ - "swTopTalkerMntEntry", - 7 - ] - }, - "swCpuUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 1 - ] - }, - "swCpuNoOfRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 2 - ] - }, - "swCpuUsageLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 3 - ] - }, - "swCpuPollingInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 4 - ] - }, - "swCpuAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "none", - "1": "raslog", - "2": "snmp", - "3": "raslogandSnmp" - } - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 5 - ] - }, - "swMemUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 6 - ] - }, - "swMemNoOfRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 7 - ] - }, - "swMemUsageLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 8 - ] - }, - "swMemPollingInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 9 - ] - }, - "swMemAction": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "none", - "1": "raslog", - "2": "snmp", - "3": "raslogandSnmp" - } - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 10 - ] - }, - "swMemUsageLimit1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 11 - ] - }, - "swMemUsageLimit3": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "swCpuOrMemoryUsage", - 12 - ] - }, - "swConnUnitPortStatEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SwConnUnitPortStatEntry" - }, - "index": "connUnitPortStatEntry", - "value": [ - "swConnUnitPortStatExtentionTable", - 1 - ] - }, - "SwConnUnitPortStatEntry": { - "tp": "SEQUENCE" - }, - "swConnUnitCRCWithBadEOF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 1 - ] - }, - "swConnUnitZeroTenancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 2 - ] - }, - "swConnUnitFLNumOfTenancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 3 - ] - }, - "swConnUnitNLNumOfTenancy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 4 - ] - }, - "swConnUnitStopTenancyStarVation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 5 - ] - }, - "swConnUnitOpend": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 6 - ] - }, - "swConnUnitTransferConnection": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 7 - ] - }, - "swConnUnitOpen": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 8 - ] - }, - "swConnUnitInvalidARB": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 9 - ] - }, - "swConnUnitFTB1Miss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 10 - ] - }, - "swConnUnitFTB2Miss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 11 - ] - }, - "swConnUnitFTB6Miss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 12 - ] - }, - "swConnUnitZoneMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 13 - ] - }, - "swConnUnitLunZoneMiss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 14 - ] - }, - "swConnUnitBadEOF": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 15 - ] - }, - "swConnUnitLCRX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 16 - ] - }, - "swConnUnitRDYPriority": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 17 - ] - }, - "swConnUnitLli": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 18 - ] - }, - "swConnUnitInterrupts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 19 - ] - }, - "swConnUnitUnknownInterrupts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 20 - ] - }, - "swConnUnitTimedOut": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 21 - ] - }, - "swConnUnitProcRequired": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 22 - ] - }, - "swConnUnitTxBufferUnavailable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 23 - ] - }, - "swConnUnitStateChange": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 24 - ] - }, - "swConnUnitC3DiscardDueToRXTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 25 - ] - }, - "swConnUnitC3DiscardDueToDestUnreachable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 26 - ] - }, - "swConnUnitC3DiscardDueToTXTimeout": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 27 - ] - }, - "swConnUnitC3DiscardOther": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 28 - ] - }, - "swConnUnitPCSErrorCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 29 - ] - }, - "swConnUnitUnroutableFrameCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 30 - ] - }, - "swConnUnitFECCorrectedCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 31 - ] - }, - "swConnUnitFECUnCorrectedCounter": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "swConnUnitPortStatEntry", - 32 - ] - }, - "swTrapsV2": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sw", - 0 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-DISK-MIB.json b/mibs/parsed/SYNOLOGY-DISK-MIB.json deleted file mode 100644 index fe81e9b..0000000 --- a/mibs/parsed/SYNOLOGY-DISK-MIB.json +++ /dev/null @@ -1,155 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "enterprises", - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32" - ] - ] - ], - "synoDisk": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 2 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "diskTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DiskEntry" - }, - "index": null, - "value": [ - "synoDisk", - 1 - ] - }, - "diskEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DiskEntry" - }, - "index": [ - "diskIndex" - ], - "value": [ - "diskTable", - 1 - ] - }, - "DiskEntry": { - "tp": "SEQUENCE" - }, - "diskIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskEntry", - 1 - ] - }, - "diskID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "diskEntry", - 2 - ] - }, - "diskModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "diskEntry", - 3 - ] - }, - "diskType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "diskEntry", - 4 - ] - }, - "diskStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskEntry", - 5 - ] - }, - "diskTemperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskEntry", - 6 - ] - }, - "diskConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synoDisk", - 2 - ] - }, - "diskCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "diskConformance", - 1 - ] - }, - "diskGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "diskConformance", - 2 - ] - }, - "diskGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "diskGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-EBOX-MIB.json b/mibs/parsed/SYNOLOGY-EBOX-MIB.json deleted file mode 100644 index 1342922..0000000 --- a/mibs/parsed/SYNOLOGY-EBOX-MIB.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "synologyEbox": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 105 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "eboxTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF EboxEntry" - }, - "index": null, - "value": [ - "synologyEbox", - 1 - ] - }, - "eboxEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EboxEntry" - }, - "index": [ - "eboxIndex" - ], - "value": [ - "eboxTable", - 1 - ] - }, - "EboxEntry": { - "tp": "SEQUENCE" - }, - "eboxIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "eboxEntry", - 1 - ] - }, - "eboxModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "eboxEntry", - 2 - ] - }, - "eboxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "eboxEntry", - 3 - ] - }, - "eboxRedundantPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "eboxEntry", - 4 - ] - }, - "synologyEboxConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyEbox", - 2 - ] - }, - "synologyEboxCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyEboxConformance", - 1 - ] - }, - "synologyEboxGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyEboxConformance", - 2 - ] - }, - "synologyEboxGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "synologyEboxGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-FLASHCACHE-MIB.json b/mibs/parsed/SYNOLOGY-FLASHCACHE-MIB.json deleted file mode 100644 index cdaa9af..0000000 --- a/mibs/parsed/SYNOLOGY-FLASHCACHE-MIB.json +++ /dev/null @@ -1,261 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "Counter64", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "flashCache": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 103 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "flashCacheTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF FlashCacheEntry" - }, - "index": null, - "value": [ - "flashCache", - 1 - ] - }, - "flashCacheEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "FlashCacheEntry" - }, - "index": [ - "flashCacheIndex" - ], - "value": [ - "flashCacheTable", - 1 - ] - }, - "FlashCacheEntry": { - "tp": "SEQUENCE" - }, - "flashCacheIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "flashCacheEntry", - 1 - ] - }, - "flashCacheSSDDev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "flashCacheEntry", - 2 - ] - }, - "flashCacheSpaceDev": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "flashCacheEntry", - 3 - ] - }, - "flashCacheReadHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 4 - ] - }, - "flashCacheWriteHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 5 - ] - }, - "flashCacheDiskRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 6 - ] - }, - "flashCacheDiskWrite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 7 - ] - }, - "flashCacheTotalRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 8 - ] - }, - "flashCacheTotalWrite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 9 - ] - }, - "flashCacheReadHitRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "flashCacheEntry", - 10 - ] - }, - "flashCacheWriteHitRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "flashCacheEntry", - 11 - ] - }, - "flashCacheReadSeqSkip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 12 - ] - }, - "flashCacheWriteSeqSkip": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 13 - ] - }, - "flashCacheWriteMissSsd": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "flashCacheEntry", - 14 - ] - }, - "flashCacheSsdUuid": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "flashCacheEntry", - 15 - ] - }, - "flashCacheConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "flashCache", - 2 - ] - }, - "flashCacheCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "flashCacheConformance", - 1 - ] - }, - "flashCacheGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "flashCacheConformance", - 2 - ] - }, - "flashCacheGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "flashCacheGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-ISCSILUN-MIB.json b/mibs/parsed/SYNOLOGY-ISCSILUN-MIB.json deleted file mode 100644 index abcd9eb..0000000 --- a/mibs/parsed/SYNOLOGY-ISCSILUN-MIB.json +++ /dev/null @@ -1,276 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "synologyiSCSILUN": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 104 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "iSCSILUNTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ISCSILUNEntry" - }, - "index": null, - "value": [ - "synologyiSCSILUN", - 1 - ] - }, - "iSCSILUNEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ISCSILUNEntry" - }, - "index": [ - "iSCSILUNInfoIndex" - ], - "value": [ - "iSCSILUNTable", - 1 - ] - }, - "ISCSILUNEntry": { - "tp": "SEQUENCE" - }, - "iSCSILUNInfoIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 1 - ] - }, - "iSCSILUNUUID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 2 - ] - }, - "iSCSILUNName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 3 - ] - }, - "iSCSILUNThroughputReadHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 4 - ] - }, - "iSCSILUNThroughputReadLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 5 - ] - }, - "iSCSILUNThroughputWriteHigh": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 6 - ] - }, - "iSCSILUNThroughputWriteLow": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 7 - ] - }, - "iSCSILUNIopsRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 8 - ] - }, - "iSCSILUNIopsWrite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 9 - ] - }, - "iSCSILUNDiskLatencyRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 10 - ] - }, - "iSCSILUNDiskLatencyWrite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 11 - ] - }, - "iSCSILUNNetworkLatencyTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 12 - ] - }, - "iSCSILUNNetworkLatencyRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 13 - ] - }, - "iSCSILUNIoSizeRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 14 - ] - }, - "iSCSILUNIoSizeWrite": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 15 - ] - }, - "iSCSILUNQueueDepth": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 16 - ] - }, - "iSCSILUNType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "iSCSILUNEntry", - 17 - ] - }, - "synologyiSCSILUNConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyiSCSILUN", - 2 - ] - }, - "synologyiSCSILUNCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyiSCSILUNConformance", - 1 - ] - }, - "synologyiSCSILUNGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyiSCSILUNConformance", - 2 - ] - }, - "synologyiSCSILUNGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "synologyiSCSILUNGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-RAID-MIB.json b/mibs/parsed/SYNOLOGY-RAID-MIB.json deleted file mode 100644 index 326c84f..0000000 --- a/mibs/parsed/SYNOLOGY-RAID-MIB.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "enterprises", - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32" - ] - ] - ], - "synoRaid": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 3 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "raidTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RaidEntry" - }, - "index": null, - "value": [ - "synoRaid", - 1 - ] - }, - "raidEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RaidEntry" - }, - "index": [ - "raidIndex" - ], - "value": [ - "raidTable", - 1 - ] - }, - "RaidEntry": { - "tp": "SEQUENCE" - }, - "raidIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "raidEntry", - 1 - ] - }, - "raidName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "raidEntry", - 2 - ] - }, - "raidStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "raidEntry", - 3 - ] - }, - "raidFreeSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "raidEntry", - 4 - ] - }, - "raidTotalSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "raidEntry", - 5 - ] - }, - "raidConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synoRaid", - 2 - ] - }, - "raidCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "raidConformance", - 1 - ] - }, - "raidGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "raidConformance", - 2 - ] - }, - "raidGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "raidGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-SERVICES-MIB.json b/mibs/parsed/SYNOLOGY-SERVICES-MIB.json deleted file mode 100644 index 195b69b..0000000 --- a/mibs/parsed/SYNOLOGY-SERVICES-MIB.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "synologyService": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 6 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "serviceTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF ServiceEntry" - }, - "index": null, - "value": [ - "synologyService", - 1 - ] - }, - "serviceEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceEntry" - }, - "index": [ - "serviceInfoIndex" - ], - "value": [ - "serviceTable", - 1 - ] - }, - "ServiceEntry": { - "tp": "SEQUENCE" - }, - "serviceInfoIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 1 - ] - }, - "serviceName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "serviceEntry", - 2 - ] - }, - "serviceUsers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "serviceEntry", - 3 - ] - }, - "synologyServiceConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyService", - 2 - ] - }, - "synologyServiceCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyServiceConformance", - 1 - ] - }, - "synologyServiceGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyServiceConformance", - 2 - ] - }, - "synologyServiceGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "synologyServiceGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-SHA-MIB.json b/mibs/parsed/SYNOLOGY-SHA-MIB.json deleted file mode 100644 index 581b40f..0000000 --- a/mibs/parsed/SYNOLOGY-SHA-MIB.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Unsigned32", - "Integer32", - "enterprises" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "TruthValue" - ] - ] - ], - "synologyHA": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 106 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "HostName": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": "255a" - }, - "ClusterStatusType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "normal", - "1": "warning", - "2": "critical", - "3": "upgrading", - "4": "processing" - } - }, - "display_hint": null - }, - "HeartbeatStatusType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "0": "normal", - "1": "abnormal", - "2": "disconnected", - "3": "empty" - } - }, - "display_hint": null - }, - "activeNodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostName" - }, - "index": null, - "value": [ - "synologyHA", - 1 - ] - }, - "passiveNodeName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostName" - }, - "index": null, - "value": [ - "synologyHA", - 2 - ] - }, - "clusterAutoFailover": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "synologyHA", - 3 - ] - }, - "clusterName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HostName" - }, - "index": null, - "value": [ - "synologyHA", - 4 - ] - }, - "clusterStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ClusterStatusType" - }, - "index": null, - "value": [ - "synologyHA", - 5 - ] - }, - "heartbeatStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HeartbeatStatusType" - }, - "index": null, - "value": [ - "synologyHA", - 6 - ] - }, - "heartbeatTxRate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "synologyHA", - 7 - ] - }, - "heartbeatLatency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Unsigned32" - }, - "index": null, - "value": [ - "synologyHA", - 8 - ] - }, - "synologyHAConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyHA", - 9 - ] - }, - "synologyHACompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyHAConformance", - 1 - ] - }, - "synologyHAGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyHAConformance", - 2 - ] - }, - "synologyHAGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "synologyHAGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-SMART-MIB.json b/mibs/parsed/SYNOLOGY-SMART-MIB.json deleted file mode 100644 index aebc03c..0000000 --- a/mibs/parsed/SYNOLOGY-SMART-MIB.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "synologyDiskSMART": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 5 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "diskSMARTTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF DiskSMARTEntry" - }, - "index": null, - "value": [ - "synologyDiskSMART", - 1 - ] - }, - "diskSMARTEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DiskSMARTEntry" - }, - "index": [ - "diskSMARTInfoIndex" - ], - "value": [ - "diskSMARTTable", - 1 - ] - }, - "DiskSMARTEntry": { - "tp": "SEQUENCE" - }, - "diskSMARTInfoIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 1 - ] - }, - "diskSMARTInfoDevName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 2 - ] - }, - "diskSMARTAttrName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 3 - ] - }, - "diskSMARTAttrId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 4 - ] - }, - "diskSMARTAttrCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 5 - ] - }, - "diskSMARTAttrWorst": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 6 - ] - }, - "diskSMARTAttrThreshold": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 7 - ] - }, - "diskSMARTAttrRaw": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 8 - ] - }, - "diskSMARTAttrStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "diskSMARTEntry", - 9 - ] - }, - "synologyDiskSMARTConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyDiskSMART", - 2 - ] - }, - "synologyDiskSMARTCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyDiskSMARTConformance", - 1 - ] - }, - "synologyDiskSMARTGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synologyDiskSMARTConformance", - 2 - ] - }, - "synologyDiskSMARTGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "synologyDiskSMARTGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-SPACEIO-MIB.json b/mibs/parsed/SYNOLOGY-SPACEIO-MIB.json deleted file mode 100644 index 2cb42dc..0000000 --- a/mibs/parsed/SYNOLOGY-SPACEIO-MIB.json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "Counter32", - "Counter64", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "spaceIO": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 102 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "spaceIOTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SpaceIOEntry" - }, - "index": null, - "value": [ - "spaceIO", - 1 - ] - }, - "spaceIOEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SpaceIOEntry" - }, - "index": [ - "spaceIOIndex" - ], - "value": [ - "spaceIOTable", - 1 - ] - }, - "SpaceIOEntry": { - "tp": "SEQUENCE" - }, - "spaceIOIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 1 - ] - }, - "spaceIODevice": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "spaceIOEntry", - 2 - ] - }, - "spaceIONRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 3 - ] - }, - "spaceIONWritten": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 4 - ] - }, - "spaceIOReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 5 - ] - }, - "spaceIOWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 6 - ] - }, - "spaceIOLA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 8 - ] - }, - "spaceIOLA1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 9 - ] - }, - "spaceIOLA5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 10 - ] - }, - "spaceIOLA15": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "spaceIOEntry", - 11 - ] - }, - "spaceIONReadX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "spaceIOEntry", - 12 - ] - }, - "spaceIONWrittenX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "spaceIOEntry", - 13 - ] - }, - "spaceIOConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "spaceIO", - 2 - ] - }, - "spaceIOCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "spaceIOConformance", - 1 - ] - }, - "spaceIOGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "spaceIOConformance", - 2 - ] - }, - "spaceIOGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "spaceIOGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-STORAGEIO-MIB.json b/mibs/parsed/SYNOLOGY-STORAGEIO-MIB.json deleted file mode 100644 index c9e49eb..0000000 --- a/mibs/parsed/SYNOLOGY-STORAGEIO-MIB.json +++ /dev/null @@ -1,229 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "OBJECT-TYPE", - "Integer32", - "Counter32", - "Counter64", - "enterprises", - "MODULE-IDENTITY" - ] - ] - ], - "storageIO": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 101 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "storageIOTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF StorageIOEntry" - }, - "index": null, - "value": [ - "storageIO", - 1 - ] - }, - "storageIOEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "StorageIOEntry" - }, - "index": [ - "storageIOIndex" - ], - "value": [ - "storageIOTable", - 1 - ] - }, - "StorageIOEntry": { - "tp": "SEQUENCE" - }, - "storageIOIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "storageIOEntry", - 1 - ] - }, - "storageIODevice": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "storageIOEntry", - 2 - ] - }, - "storageIONRead": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "storageIOEntry", - 3 - ] - }, - "storageIONWritten": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "storageIOEntry", - 4 - ] - }, - "storageIOReads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "storageIOEntry", - 5 - ] - }, - "storageIOWrites": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "storageIOEntry", - 6 - ] - }, - "storageIOLA": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "storageIOEntry", - 8 - ] - }, - "storageIOLA1": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "storageIOEntry", - 9 - ] - }, - "storageIOLA5": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "storageIOEntry", - 10 - ] - }, - "storageIOLA15": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "storageIOEntry", - 11 - ] - }, - "storageIONReadX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "storageIOEntry", - 12 - ] - }, - "storageIONWrittenX": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "storageIOEntry", - 13 - ] - }, - "storageIOConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storageIO", - 2 - ] - }, - "storageIOCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storageIOConformance", - 1 - ] - }, - "storageIOGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "storageIOConformance", - 2 - ] - }, - "storageIOGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "storageIOGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/SYNOLOGY-SYSTEM-MIB.json b/mibs/parsed/SYNOLOGY-SYSTEM-MIB.json deleted file mode 100644 index dced20f..0000000 --- a/mibs/parsed/SYNOLOGY-SYSTEM-MIB.json +++ /dev/null @@ -1,175 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ], - [ - "SNMPv2-SMI", - [ - "enterprises", - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32" - ] - ] - ], - "synoSystem": { - "tp": "MODULE-IDENTITY", - "value": [ - "synology", - 1 - ] - }, - "synology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 6574 - ] - }, - "systemStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "synoSystem", - 1 - ] - }, - "temperature": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "synoSystem", - 2 - ] - }, - "powerStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "synoSystem", - 3 - ] - }, - "fan": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synoSystem", - 4 - ] - }, - "systemFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "fan", - 1 - ] - }, - "cpuFanStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "fan", - 2 - ] - }, - "dsmInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synoSystem", - 5 - ] - }, - "modelName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dsmInfo", - 1 - ] - }, - "serialNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dsmInfo", - 2 - ] - }, - "version": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "dsmInfo", - 3 - ] - }, - "upgradeAvailable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "dsmInfo", - 4 - ] - }, - "systemConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "synoSystem", - 6 - ] - }, - "systemCompliances": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemConformance", - 1 - ] - }, - "systemGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "systemConformance", - 2 - ] - }, - "systemGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "systemGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/TOKEN-RING-RMON-MIB.json b/mibs/parsed/TOKEN-RING-RMON-MIB.json deleted file mode 100644 index 72ba6ba..0000000 --- a/mibs/parsed/TOKEN-RING-RMON-MIB.json +++ /dev/null @@ -1,2124 +0,0 @@ -{ - "IMPORTS": [ - [ - "RFC1155-SMI", - [ - "Counter", - "TimeTicks" - ] - ], - [ - "RFC-1212", - [ - "OBJECT-TYPE" - ] - ], - [ - "RFC1271-MIB", - [ - "OwnerString", - "rmon", - "statistics", - "history" - ] - ] - ], - "OwnerString": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "OCTET STRING" - }, - "display_hint": "255a" - }, - "MacAddress": { - "tp": "OCTET STRING" - }, - "TimeInterval": { - "tp": "INTEGER" - }, - "tokenRing": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "rmon", - 10 - ] - }, - "EntryStatus": { - "tp": "INTEGER", - "values": { - "1": "valid", - "2": "createRequest", - "3": "underCreation", - "4": "invalid" - } - }, - "tokenRingMLStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TokenRingMLStatsEntry" - }, - "index": null, - "value": [ - "statistics", - 2 - ] - }, - "tokenRingMLStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TokenRingMLStatsEntry" - }, - "index": [ - "tokenRingMLStatsIndex" - ], - "value": [ - "tokenRingMLStatsTable", - 1 - ] - }, - "TokenRingMLStatsEntry": { - "tp": "SEQUENCE" - }, - "tokenRingMLStatsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 1 - ] - }, - "tokenRingMLStatsDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 2 - ] - }, - "tokenRingMLStatsDropEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 3 - ] - }, - "tokenRingMLStatsMacOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 4 - ] - }, - "tokenRingMLStatsMacPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 5 - ] - }, - "tokenRingMLStatsRingPurgeEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 6 - ] - }, - "tokenRingMLStatsRingPurgePkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 7 - ] - }, - "tokenRingMLStatsBeaconEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 8 - ] - }, - "tokenRingMLStatsBeaconTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeInterval" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 9 - ] - }, - "tokenRingMLStatsBeaconPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 10 - ] - }, - "tokenRingMLStatsClaimTokenEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 11 - ] - }, - "tokenRingMLStatsClaimTokenPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 12 - ] - }, - "tokenRingMLStatsNAUNChanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 13 - ] - }, - "tokenRingMLStatsLineErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 14 - ] - }, - "tokenRingMLStatsInternalErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 15 - ] - }, - "tokenRingMLStatsBurstErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 16 - ] - }, - "tokenRingMLStatsACErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 17 - ] - }, - "tokenRingMLStatsAbortErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 18 - ] - }, - "tokenRingMLStatsLostFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 19 - ] - }, - "tokenRingMLStatsCongestionErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 20 - ] - }, - "tokenRingMLStatsFrameCopiedErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 21 - ] - }, - "tokenRingMLStatsFrequencyErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 22 - ] - }, - "tokenRingMLStatsTokenErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 23 - ] - }, - "tokenRingMLStatsSoftErrorReports": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 24 - ] - }, - "tokenRingMLStatsRingPollEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 25 - ] - }, - "tokenRingMLStatsOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 26 - ] - }, - "tokenRingMLStatsStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "tokenRingMLStatsEntry", - 27 - ] - }, - "tokenRingPStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TokenRingPStatsEntry" - }, - "index": null, - "value": [ - "statistics", - 3 - ] - }, - "tokenRingPStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TokenRingPStatsEntry" - }, - "index": [ - "tokenRingPStatsIndex" - ], - "value": [ - "tokenRingPStatsTable", - 1 - ] - }, - "TokenRingPStatsEntry": { - "tp": "SEQUENCE" - }, - "tokenRingPStatsIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 1 - ] - }, - "tokenRingPStatsDataSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 2 - ] - }, - "tokenRingPStatsDropEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 3 - ] - }, - "tokenRingPStatsDataOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 4 - ] - }, - "tokenRingPStatsDataPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 5 - ] - }, - "tokenRingPStatsDataBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 6 - ] - }, - "tokenRingPStatsDataMulticastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 7 - ] - }, - "tokenRingPStatsDataPkts18to63Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 8 - ] - }, - "tokenRingPStatsDataPkts64to127Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 9 - ] - }, - "tokenRingPStatsDataPkts128to255Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 10 - ] - }, - "tokenRingPStatsDataPkts256to511Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 11 - ] - }, - "tokenRingPStatsDataPkts512to1023Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 12 - ] - }, - "tokenRingPStatsDataPkts1024to2047Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 13 - ] - }, - "tokenRingPStatsDataPkts2048to4095Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 14 - ] - }, - "tokenRingPStatsDataPkts4096to8191Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 15 - ] - }, - "tokenRingPStatsDataPkts8192to18000Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 16 - ] - }, - "tokenRingPStatsDataPktsGreaterThan18000Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 17 - ] - }, - "tokenRingPStatsOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 18 - ] - }, - "tokenRingPStatsStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "tokenRingPStatsEntry", - 19 - ] - }, - "tokenRingMLHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TokenRingMLHistoryEntry" - }, - "index": null, - "value": [ - "history", - 3 - ] - }, - "tokenRingMLHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TokenRingMLHistoryEntry" - }, - "index": [ - "tokenRingMLHistoryIndex", - "tokenRingMLHistorySampleIndex" - ], - "value": [ - "tokenRingMLHistoryTable", - 1 - ] - }, - "TokenRingMLHistoryEntry": { - "tp": "SEQUENCE" - }, - "tokenRingMLHistoryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 1 - ] - }, - "tokenRingMLHistorySampleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 2 - ] - }, - "tokenRingMLHistoryIntervalStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 3 - ] - }, - "tokenRingMLHistoryDropEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 4 - ] - }, - "tokenRingMLHistoryMacOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 5 - ] - }, - "tokenRingMLHistoryMacPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 6 - ] - }, - "tokenRingMLHistoryRingPurgeEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 7 - ] - }, - "tokenRingMLHistoryRingPurgePkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 8 - ] - }, - "tokenRingMLHistoryBeaconEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 9 - ] - }, - "tokenRingMLHistoryBeaconTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeInterval" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 10 - ] - }, - "tokenRingMLHistoryBeaconPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 11 - ] - }, - "tokenRingMLHistoryClaimTokenEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 12 - ] - }, - "tokenRingMLHistoryClaimTokenPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 13 - ] - }, - "tokenRingMLHistoryNAUNChanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 14 - ] - }, - "tokenRingMLHistoryLineErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 15 - ] - }, - "tokenRingMLHistoryInternalErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 16 - ] - }, - "tokenRingMLHistoryBurstErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 17 - ] - }, - "tokenRingMLHistoryACErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 18 - ] - }, - "tokenRingMLHistoryAbortErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 19 - ] - }, - "tokenRingMLHistoryLostFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 20 - ] - }, - "tokenRingMLHistoryCongestionErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 21 - ] - }, - "tokenRingMLHistoryFrameCopiedErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 22 - ] - }, - "tokenRingMLHistoryFrequencyErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 23 - ] - }, - "tokenRingMLHistoryTokenErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 24 - ] - }, - "tokenRingMLHistorySoftErrorReports": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 25 - ] - }, - "tokenRingMLHistoryRingPollEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 26 - ] - }, - "tokenRingMLHistoryActiveStations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingMLHistoryEntry", - 27 - ] - }, - "tokenRingPHistoryTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF TokenRingPHistoryEntry" - }, - "index": null, - "value": [ - "history", - 4 - ] - }, - "tokenRingPHistoryEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TokenRingPHistoryEntry" - }, - "index": [ - "tokenRingPHistoryIndex", - "tokenRingPHistorySampleIndex" - ], - "value": [ - "tokenRingPHistoryTable", - 1 - ] - }, - "TokenRingPHistoryEntry": { - "tp": "SEQUENCE" - }, - "tokenRingPHistoryIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 1 - ] - }, - "tokenRingPHistorySampleIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 2 - ] - }, - "tokenRingPHistoryIntervalStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 3 - ] - }, - "tokenRingPHistoryDropEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 4 - ] - }, - "tokenRingPHistoryDataOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 5 - ] - }, - "tokenRingPHistoryDataPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 6 - ] - }, - "tokenRingPHistoryDataBroadcastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 7 - ] - }, - "tokenRingPHistoryDataMulticastPkts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 8 - ] - }, - "tokenRingPHistoryDataPkts18to63Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 9 - ] - }, - "tokenRingPHistoryDataPkts64to127Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 10 - ] - }, - "tokenRingPHistoryDataPkts128to255Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 11 - ] - }, - "tokenRingPHistoryDataPkts256to511Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 12 - ] - }, - "tokenRingPHistoryDataPkts512to1023Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 13 - ] - }, - "tokenRingPHistoryDataPkts1024to2047Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 14 - ] - }, - "tokenRingPHistoryDataPkts2048to4095Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 15 - ] - }, - "tokenRingPHistoryDataPkts4096to8191Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 16 - ] - }, - "tokenRingPHistoryDataPkts8192to18000Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 17 - ] - }, - "tokenRingPHistoryDataPktsGreaterThan18000Octets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "tokenRingPHistoryEntry", - 18 - ] - }, - "ringStationControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RingStationControlEntry" - }, - "index": null, - "value": [ - "tokenRing", - 1 - ] - }, - "ringStationControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RingStationControlEntry" - }, - "index": [ - "ringStationControlIfIndex" - ], - "value": [ - "ringStationControlTable", - 1 - ] - }, - "RingStationControlEntry": { - "tp": "SEQUENCE" - }, - "ringStationControlIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 1 - ] - }, - "ringStationControlTableSize": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 2 - ] - }, - "ringStationControlActiveStations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 3 - ] - }, - "ringStationControlRingState": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "normalOperation", - "2": "ringPurgeState", - "3": "claimTokenState", - "4": "beaconFrameStreamingState", - "5": "beaconBitStreamingState", - "6": "beaconRingSignalLossState", - "7": "beaconSetRecoveryModeState" - } - }, - "index": null, - "value": [ - "ringStationControlEntry", - 4 - ] - }, - "ringStationControlBeaconSender": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 5 - ] - }, - "ringStationControlBeaconNAUN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 6 - ] - }, - "ringStationControlActiveMonitor": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 7 - ] - }, - "ringStationControlOrderChanges": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 8 - ] - }, - "ringStationControlOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 9 - ] - }, - "ringStationControlStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "ringStationControlEntry", - 10 - ] - }, - "ringStationTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RingStationEntry" - }, - "index": null, - "value": [ - "tokenRing", - 2 - ] - }, - "ringStationEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RingStationEntry" - }, - "index": [ - "ringStationIfIndex", - "ringStationMacAddress" - ], - "value": [ - "ringStationTable", - 1 - ] - }, - "RingStationEntry": { - "tp": "SEQUENCE" - }, - "ringStationIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationEntry", - 1 - ] - }, - "ringStationMacAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationEntry", - 2 - ] - }, - "ringStationLastNAUN": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationEntry", - 3 - ] - }, - "ringStationStationStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "active", - "2": "inactive", - "3": "forcedRemoval" - } - }, - "index": null, - "value": [ - "ringStationEntry", - 4 - ] - }, - "ringStationLastEnterTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "ringStationEntry", - 5 - ] - }, - "ringStationLastExitTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "ringStationEntry", - 6 - ] - }, - "ringStationDuplicateAddresses": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 7 - ] - }, - "ringStationInLineErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 8 - ] - }, - "ringStationOutLineErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 9 - ] - }, - "ringStationInternalErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 10 - ] - }, - "ringStationInBurstErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 11 - ] - }, - "ringStationOutBurstErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 12 - ] - }, - "ringStationACErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 13 - ] - }, - "ringStationAbortErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 14 - ] - }, - "ringStationLostFrameErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 15 - ] - }, - "ringStationCongestionErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 16 - ] - }, - "ringStationFrameCopiedErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 17 - ] - }, - "ringStationFrequencyErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 18 - ] - }, - "ringStationTokenErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 19 - ] - }, - "ringStationInBeaconErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 20 - ] - }, - "ringStationOutBeaconErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 21 - ] - }, - "ringStationInsertions": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "ringStationEntry", - 22 - ] - }, - "ringStationOrderTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RingStationOrderEntry" - }, - "index": null, - "value": [ - "tokenRing", - 3 - ] - }, - "ringStationOrderEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RingStationOrderEntry" - }, - "index": [ - "ringStationOrderIfIndex", - "ringStationOrderOrderIndex" - ], - "value": [ - "ringStationOrderTable", - 1 - ] - }, - "RingStationOrderEntry": { - "tp": "SEQUENCE" - }, - "ringStationOrderIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationOrderEntry", - 1 - ] - }, - "ringStationOrderOrderIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationOrderEntry", - 2 - ] - }, - "ringStationOrderMacAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationOrderEntry", - 3 - ] - }, - "ringStationConfigControlTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RingStationConfigControlEntry" - }, - "index": null, - "value": [ - "tokenRing", - 4 - ] - }, - "ringStationConfigControlEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RingStationConfigControlEntry" - }, - "index": [ - "ringStationConfigControlIfIndex", - "ringStationConfigControlMacAddress" - ], - "value": [ - "ringStationConfigControlTable", - 1 - ] - }, - "RingStationConfigControlEntry": { - "tp": "SEQUENCE" - }, - "ringStationConfigControlIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationConfigControlEntry", - 1 - ] - }, - "ringStationConfigControlMacAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationConfigControlEntry", - 2 - ] - }, - "ringStationConfigControlRemove": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "stable", - "2": "removing" - } - }, - "index": null, - "value": [ - "ringStationConfigControlEntry", - 3 - ] - }, - "ringStationConfigControlUpdateStats": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "stable", - "2": "updating" - } - }, - "index": null, - "value": [ - "ringStationConfigControlEntry", - 4 - ] - }, - "ringStationConfigTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF RingStationConfigEntry" - }, - "index": null, - "value": [ - "tokenRing", - 5 - ] - }, - "ringStationConfigEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RingStationConfigEntry" - }, - "index": [ - "ringStationConfigIfIndex", - "ringStationConfigMacAddress" - ], - "value": [ - "ringStationConfigTable", - 1 - ] - }, - "RingStationConfigEntry": { - "tp": "SEQUENCE" - }, - "ringStationConfigIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 1 - ] - }, - "ringStationConfigMacAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 2 - ] - }, - "ringStationConfigUpdateTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 3 - ] - }, - "ringStationConfigLocation": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 4 - ] - }, - "ringStationConfigMicrocode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 5 - ] - }, - "ringStationConfigGroupAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 6 - ] - }, - "ringStationConfigFunctionalAddress": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OCTET STRING" - }, - "index": null, - "value": [ - "ringStationConfigEntry", - 7 - ] - }, - "sourceRoutingStatsTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF SourceRoutingStatsEntry" - }, - "index": null, - "value": [ - "tokenRing", - 6 - ] - }, - "sourceRoutingStatsEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SourceRoutingStatsEntry" - }, - "index": [ - "sourceRoutingStatsIfIndex" - ], - "value": [ - "sourceRoutingStatsTable", - 1 - ] - }, - "SourceRoutingStatsEntry": { - "tp": "SEQUENCE" - }, - "sourceRoutingStatsIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 1 - ] - }, - "sourceRoutingStatsRingNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 2 - ] - }, - "sourceRoutingStatsInFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 3 - ] - }, - "sourceRoutingStatsOutFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 4 - ] - }, - "sourceRoutingStatsThroughFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 5 - ] - }, - "sourceRoutingStatsAllRoutesBroadcastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 6 - ] - }, - "sourceRoutingStatsSingleRouteBroadcastFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 7 - ] - }, - "sourceRoutingStatsInOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 8 - ] - }, - "sourceRoutingStatsOutOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 9 - ] - }, - "sourceRoutingStatsThroughOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 10 - ] - }, - "sourceRoutingStatsAllRoutesBroadcastOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 11 - ] - }, - "sourceRoutingStatsSingleRoutesBroadcastOctets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 12 - ] - }, - "sourceRoutingStatsLocalLLCFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 13 - ] - }, - "sourceRoutingStats1HopFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 14 - ] - }, - "sourceRoutingStats2HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 15 - ] - }, - "sourceRoutingStats3HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 16 - ] - }, - "sourceRoutingStats4HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 17 - ] - }, - "sourceRoutingStats5HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 18 - ] - }, - "sourceRoutingStats6HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 19 - ] - }, - "sourceRoutingStats7HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 20 - ] - }, - "sourceRoutingStats8HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 21 - ] - }, - "sourceRoutingStatsMoreThan8HopsFrames": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 22 - ] - }, - "sourceRoutingStatsOwner": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OwnerString" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 23 - ] - }, - "sourceRoutingStatsStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "EntryStatus" - }, - "index": null, - "value": [ - "sourceRoutingStatsEntry", - 24 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/UBNT-MIB.json b/mibs/parsed/UBNT-MIB.json deleted file mode 100644 index df250ee..0000000 --- a/mibs/parsed/UBNT-MIB.json +++ /dev/null @@ -1,212 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32", - "enterprises" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "SNMPv2-CONF", - [ - "OBJECT-GROUP", - "MODULE-COMPLIANCE" - ] - ] - ], - "ubntMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "ubnt", - 1 - ] - }, - "ubnt": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "enterprises", - 41112 - ] - }, - "ubntSnmpInfo": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 2 - ] - }, - "ubntSnmpGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 1 - ] - }, - "ubntAirosGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 2 - ] - }, - "ubntAirFiberGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 3 - ] - }, - "ubntEdgeMaxGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 4 - ] - }, - "ubntUniFiGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 5 - ] - }, - "ubntAirVisionGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 6 - ] - }, - "ubntMFiGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 7 - ] - }, - "ubntUniTelGroups": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntSnmpInfo", - 8 - ] - }, - "ubntAirFIBER": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 3 - ] - }, - "ubntEdgeMax": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 5 - ] - }, - "ubntUniFi": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 6 - ] - }, - "ubntAirVision": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 7 - ] - }, - "ubntMFi": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 8 - ] - }, - "ubntUniTel": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntMIB", - 9 - ] - }, - "ubntORTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UbntOREntry" - }, - "index": null, - "value": [ - "ubntMIB", - 1 - ] - }, - "ubntOREntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UbntOREntry" - }, - "index": [ - "ubntORIndex" - ], - "value": [ - "ubntORTable", - 1 - ] - }, - "UbntOREntry": { - "tp": "SEQUENCE" - }, - "ubntORIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "ubntOREntry", - 1 - ] - }, - "ubntORID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "ubntOREntry", - 2 - ] - }, - "ubntORDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "ubntOREntry", - 3 - ] - }, - "ubntORInfoGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ubntSnmpGroups", - 1 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/UBNT-UniFi-MIB.json b/mibs/parsed/UBNT-UniFi-MIB.json deleted file mode 100644 index cafb44a..0000000 --- a/mibs/parsed/UBNT-UniFi-MIB.json +++ /dev/null @@ -1,801 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "Integer32", - "Unsigned32", - "Counter32", - "Gauge32", - "IpAddress", - "enterprises" - ] - ], - [ - "SNMPv2-TC", - [ - "TEXTUAL-CONVENTION", - "DisplayString", - "MacAddress", - "DateAndTime", - "TruthValue" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP" - ] - ], - [ - "UBNT-MIB", - [ - "ubntMIB", - "ubntUniFi", - "ubntUniFiGroups" - ] - ] - ], - "ubntUniFi": { - "tp": "MODULE-IDENTITY", - "value": [ - "ubntMIB", - 6 - ] - }, - "unifiApWireless": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntUniFi", - 1 - ] - }, - "unifiApIf": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntUniFi", - 2 - ] - }, - "unifiApSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "ubntUniFi", - 3 - ] - }, - "TableIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "d" - }, - "ObjectIndex": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "x" - }, - "Voltage": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "d-2" - }, - "Temperature": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "Integer32" - }, - "display_hint": "d-1" - }, - "unifiIfTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UbntIfEntry" - }, - "index": null, - "value": [ - "unifiApIf", - 1 - ] - }, - "unifiIfEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UbntIfEntry" - }, - "index": [ - "unifiIfIndex" - ], - "value": [ - "unifiIfTable", - 1 - ] - }, - "UbntIfEntry": { - "tp": "SEQUENCE" - }, - "unifiIfIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectIndex" - }, - "index": null, - "value": [ - "unifiIfEntry", - 1 - ] - }, - "unifiIfFullDuplex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "unifiIfEntry", - 2 - ] - }, - "unifiIfIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "unifiIfEntry", - 3 - ] - }, - "unifiIfMac": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "unifiIfEntry", - 4 - ] - }, - "unifiIfName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiIfEntry", - 5 - ] - }, - "unifiIfRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 6 - ] - }, - "unifiIfRxDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 7 - ] - }, - "unifiIfRxError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 8 - ] - }, - "unifiIfRxMulticast": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 9 - ] - }, - "unifiIfRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 10 - ] - }, - "unifiIfSpeed": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 11 - ] - }, - "unifiIfTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 12 - ] - }, - "unifiIfTxDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 13 - ] - }, - "unifiIfTxError": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 14 - ] - }, - "unifiIfTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiIfEntry", - 15 - ] - }, - "unifiIfUp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "unifiIfEntry", - 16 - ] - }, - "unifiRadioTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UbntRadioEntry" - }, - "index": null, - "value": [ - "unifiApWireless", - 1 - ] - }, - "unifiRadioEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UbntRadioEntry" - }, - "index": [ - "unifiRadioIndex" - ], - "value": [ - "unifiRadioTable", - 1 - ] - }, - "UbntRadioEntry": { - "tp": "SEQUENCE" - }, - "unifiRadioIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectIndex" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 1 - ] - }, - "unifiRadioName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 2 - ] - }, - "unifiRadioRadio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 3 - ] - }, - "unifiRadioRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 4 - ] - }, - "unifiRadioTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 5 - ] - }, - "unifiRadioCuTotal": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 6 - ] - }, - "unifiRadioCuSelfRx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 7 - ] - }, - "unifiRadioCuSelfTx": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 8 - ] - }, - "unifiRadioOtherBss": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiRadioEntry", - 9 - ] - }, - "unifiVapTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF UbntVapEntry" - }, - "index": null, - "value": [ - "unifiApWireless", - 2 - ] - }, - "unifiVapEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "UbntVapEntry" - }, - "index": [ - "unifiVapIndex" - ], - "value": [ - "unifiVapTable", - 1 - ] - }, - "UbntVapEntry": { - "tp": "SEQUENCE" - }, - "unifiVapIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ObjectIndex" - }, - "index": null, - "value": [ - "unifiVapEntry", - 1 - ] - }, - "unifiVapBssId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "MacAddress" - }, - "index": null, - "value": [ - "unifiVapEntry", - 2 - ] - }, - "unifiVapCcq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 3 - ] - }, - "unifiVapChannel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 4 - ] - }, - "unifiVapExtChannel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 5 - ] - }, - "unifiVapEssId": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiVapEntry", - 6 - ] - }, - "unifiVapName": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiVapEntry", - 7 - ] - }, - "unifiVapNumStations": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 8 - ] - }, - "unifiVapRadio": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiVapEntry", - 9 - ] - }, - "unifiVapRxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 10 - ] - }, - "unifiVapRxCrypts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 11 - ] - }, - "unifiVapRxDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 12 - ] - }, - "unifiVapRxErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 13 - ] - }, - "unifiVapRxFrags": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 14 - ] - }, - "unifiVapRxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 15 - ] - }, - "unifiVapTxBytes": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 16 - ] - }, - "unifiVapTxDropped": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 17 - ] - }, - "unifiVapTxErrors": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 18 - ] - }, - "unifiVapTxPackets": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 19 - ] - }, - "unifiVapTxRetries": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 20 - ] - }, - "unifiVapTxPower": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "unifiVapEntry", - 21 - ] - }, - "unifiVapUp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "unifiVapEntry", - 22 - ] - }, - "unifiVapUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiVapEntry", - 23 - ] - }, - "unifiApSystemIp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "IpAddress" - }, - "index": null, - "value": [ - "unifiApSystem", - 1 - ] - }, - "unifiApSystemIsolated": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TruthValue" - }, - "index": null, - "value": [ - "unifiApSystem", - 2 - ] - }, - "unifiApSystemModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiApSystem", - 3 - ] - }, - "unifiApSystemUplink": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiApSystem", - 4 - ] - }, - "unifiApSystemUptime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "unifiApSystem", - 5 - ] - }, - "unifiApSystemVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "unifiApSystem", - 6 - ] - }, - "unifiIfGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ubntUniFiGroups", - 1 - ] - }, - "unifiRadioGroups": { - "tp": "OBJECT-GROUP", - "value": [ - "ubntUniFiGroups", - 2 - ] - }, - "unifiVapGroups": { - "tp": "OBJECT-GROUP", - "value": [ - "ubntUniFiGroups", - 3 - ] - }, - "unifiApSystemGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "ubntUniFiGroups", - 4 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/XG-FIREWALL-MIB.json b/mibs/parsed/XG-FIREWALL-MIB.json deleted file mode 100644 index b84c08c..0000000 --- a/mibs/parsed/XG-FIREWALL-MIB.json +++ /dev/null @@ -1,861 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "IpAddress", - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE", - "snmpModules", - "OBJECT-IDENTITY", - "enterprises", - "Gauge32", - "Counter32", - "Counter64", - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString", - "TEXTUAL-CONVENTION", - "TruthValue", - "DateAndTime" - ] - ] - ], - "sophos": { - "tp": "MODULE-IDENTITY", - "value": [ - "enterprises", - 21067 - ] - }, - "xg-firewall": { - "tp": "OBJECT-IDENTITY", - "value": [ - "sophos", - 2 - ] - }, - "HaModeType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "standalone", - "2": "active-passive", - "3": "active-active" - } - }, - "display_hint": null - }, - "ServiceStatsType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "untouched", - "2": "stopped", - "3": "initializing", - "4": "running", - "5": "exiting", - "6": "dead", - "7": "unregistered" - } - }, - "display_hint": null - }, - "RegistrationStatusType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "registered", - "2": "unregistered" - } - }, - "display_hint": null - }, - "SubscriptionStatusType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "trial", - "2": "unsubscribed", - "3": "subscribed", - "4": "expired" - } - }, - "display_hint": null - }, - "SupportStatusType": { - "tp": "TEXTUAL-CONVENTION", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "support8x5", - "2": "support24x7" - } - }, - "display_hint": null - }, - "sfosSystem": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xg-firewall", - 1 - ] - }, - "sysInstall": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sfosSystem", - 1 - ] - }, - "sysStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sfosSystem", - 2 - ] - }, - "sysLicense": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sfosSystem", - 3 - ] - }, - "sysAlerts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sfosSystem", - 4 - ] - }, - "applianceKey": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 1 - ] - }, - "applianceModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 2 - ] - }, - "xg-firewallVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 3 - ] - }, - "webcatVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 4 - ] - }, - "avVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 5 - ] - }, - "asVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 6 - ] - }, - "idpVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "sysInstall", - 7 - ] - }, - "systemDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "sysStatus", - 1 - ] - }, - "cpuStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatus", - 2 - ] - }, - "cpuPercentUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "cpuStatus", - 1 - ] - }, - "diskStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatus", - 3 - ] - }, - "diskCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "diskStatus", - 1 - ] - }, - "diskPercentUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "diskStatus", - 2 - ] - }, - "memoryStatus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatus", - 4 - ] - }, - "memoryCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "memoryStatus", - 1 - ] - }, - "memoryPercentUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "memoryStatus", - 2 - ] - }, - "swapCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "memoryStatus", - 3 - ] - }, - "swapPercentUsage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "memoryStatus", - 4 - ] - }, - "haMode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "HaModeType" - }, - "index": null, - "value": [ - "sysStatus", - 5 - ] - }, - "liveUsers": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "sysStatus", - 6 - ] - }, - "httpHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sysStatus", - 7 - ] - }, - "ftpHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "sysStatus", - 8 - ] - }, - "mailHits": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatus", - 9 - ] - }, - "serviceStats": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysStatus", - 10 - ] - }, - "pop3Hits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "mailHits", - 1 - ] - }, - "imapHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "mailHits", - 2 - ] - }, - "smtpHits": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter64" - }, - "index": null, - "value": [ - "mailHits", - 3 - ] - }, - "pop3Service": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 1 - ] - }, - "imap4Service": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 2 - ] - }, - "smtpService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 3 - ] - }, - "ftpService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 4 - ] - }, - "httpService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 5 - ] - }, - "avService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 6 - ] - }, - "asService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 7 - ] - }, - "dnsService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 8 - ] - }, - "haService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 9 - ] - }, - "idpService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 10 - ] - }, - "apacheService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 11 - ] - }, - "ntpService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 12 - ] - }, - "tomcatService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 13 - ] - }, - "sslvpnService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 14 - ] - }, - "databaseservice": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 15 - ] - }, - "networkService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 16 - ] - }, - "garnerService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 17 - ] - }, - "droutingService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 18 - ] - }, - "sshdService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 19 - ] - }, - "dgdService": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "ServiceStatsType" - }, - "index": null, - "value": [ - "serviceStats", - 20 - ] - }, - "liAppliance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysLicense", - 1 - ] - }, - "liSupport": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysLicense", - 2 - ] - }, - "liAntivirus": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysLicense", - 3 - ] - }, - "liAntispam": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysLicense", - 4 - ] - }, - "liIdp": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysLicense", - 5 - ] - }, - "liWebcat": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysLicense", - 6 - ] - }, - "appRegStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "RegistrationStatusType" - }, - "index": null, - "value": [ - "liAppliance", - 1 - ] - }, - "appExpiryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "liAppliance", - 2 - ] - }, - "supportSubStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SupportStatusType" - }, - "index": null, - "value": [ - "liSupport", - 1 - ] - }, - "supportExpiryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "liSupport", - 2 - ] - }, - "avSubStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SubscriptionStatusType" - }, - "index": null, - "value": [ - "liAntivirus", - 1 - ] - }, - "avExpiryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "liAntivirus", - 2 - ] - }, - "asSubStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SubscriptionStatusType" - }, - "index": null, - "value": [ - "liAntispam", - 1 - ] - }, - "asExpiryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "liAntispam", - 2 - ] - }, - "idpSubStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SubscriptionStatusType" - }, - "index": null, - "value": [ - "liIdp", - 1 - ] - }, - "idpExpiryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "liIdp", - 2 - ] - }, - "webcatSubStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SubscriptionStatusType" - }, - "index": null, - "value": [ - "liWebcat", - 1 - ] - }, - "webcatExpiryDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DateAndTime" - }, - "index": null, - "value": [ - "liWebcat", - 2 - ] - }, - "highDiskUsage": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 2 - ] - }, - "highMemUsage": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 3 - ] - }, - "avAlerts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 4 - ] - }, - "dgdAlerts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 5 - ] - }, - "idpAlerts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 6 - ] - }, - "dosAlerts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 7 - ] - }, - "cscAlerts": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "sysAlerts", - 8 - ] - } -} \ No newline at end of file diff --git a/mibs/parsed/XUPS-MIB.json b/mibs/parsed/XUPS-MIB.json deleted file mode 100644 index 4426c6e..0000000 --- a/mibs/parsed/XUPS-MIB.json +++ /dev/null @@ -1,1742 +0,0 @@ -{ - "IMPORTS": [ - [ - "SNMPv2-SMI", - [ - "TimeTicks", - "Gauge32", - "Counter32", - "Integer32" - ] - ], - [ - "SNMPv2-TC", - [ - "DisplayString" - ] - ], - [ - "SNMPv2-SMI", - [ - "MODULE-IDENTITY", - "OBJECT-TYPE", - "NOTIFICATION-TYPE" - ] - ], - [ - "SNMPv2-CONF", - [ - "MODULE-COMPLIANCE", - "OBJECT-GROUP", - "NOTIFICATION-GROUP" - ] - ], - [ - "EATON-OIDS", - [ - "eaton", - "xupsEnvironment" - ] - ], - [ - "EATON-EMP-MIB", - [ - "xupsContactIndex", - "xupsContactType", - "xupsContactState", - "xupsContactDescr", - "xupsEnvRemoteTemp", - "xupsEnvRemoteTempLowerLimit", - "xupsEnvRemoteTempUpperLimit", - "xupsEnvRemoteHumidity", - "xupsEnvRemoteHumidityLowerLimit", - "xupsEnvRemoteHumidityUpperLimit" - ] - ] - ], - "xupsMIB": { - "tp": "MODULE-IDENTITY", - "value": [ - "eaton", - 1 - ] - }, - "xupsIdent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 1 - ] - }, - "xupsBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 2 - ] - }, - "xupsInput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 3 - ] - }, - "xupsOutput": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 4 - ] - }, - "xupsBypass": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 5 - ] - }, - "xupsAlarm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 7 - ] - }, - "xupsTest": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 8 - ] - }, - "xupsControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 9 - ] - }, - "xupsConfig": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 10 - ] - }, - "xupsTrapControl": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 11 - ] - }, - "xupsRecep": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 12 - ] - }, - "xupsTopology": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 13 - ] - }, - "xupsIdentManufacturer": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsIdent", - 1 - ] - }, - "xupsIdentModel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsIdent", - 2 - ] - }, - "xupsIdentSoftwareVersion": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsIdent", - 3 - ] - }, - "xupsIdentOemCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsIdent", - 4 - ] - }, - "xupsBatTimeRemaining": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBattery", - 1 - ] - }, - "xupsBatVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBattery", - 2 - ] - }, - "xupsBatCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBattery", - 3 - ] - }, - "xupsBatCapacity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBattery", - 4 - ] - }, - "xupsBatteryAbmStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "batteryCharging", - "2": "batteryDischarging", - "3": "batteryFloating", - "4": "batteryResting", - "5": "unknown", - "6": "batteryDisconnected", - "7": "batteryUnderTest", - "8": "checkBattery" - } - }, - "index": null, - "value": [ - "xupsBattery", - 5 - ] - }, - "xupsBatteryLastReplacedDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsBattery", - 6 - ] - }, - "xupsInputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsInput", - 1 - ] - }, - "xupsInputLineBads": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Counter32" - }, - "index": null, - "value": [ - "xupsInput", - 2 - ] - }, - "xupsInputNumPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsInput", - 3 - ] - }, - "xupsInputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsInputEntry" - }, - "index": null, - "value": [ - "xupsInput", - 4 - ] - }, - "xupsInputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsInputEntry" - }, - "index": [ - "xupsInputPhase" - ], - "value": [ - "xupsInputTable", - 1 - ] - }, - "XupsInputEntry": { - "tp": "SEQUENCE" - }, - "xupsInputPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsInputEntry", - 1 - ] - }, - "xupsInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsInputEntry", - 2 - ] - }, - "xupsInputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsInputEntry", - 3 - ] - }, - "xupsInputWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsInputEntry", - 4 - ] - }, - "xupsInputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "primaryUtility", - "4": "bypassFeed", - "5": "secondaryUtility", - "6": "generator", - "7": "flywheel", - "8": "fuelcell" - } - }, - "index": null, - "value": [ - "xupsInput", - 5 - ] - }, - "xupsDualInputStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "bothSourcesBad", - "2": "primarySourceGood", - "3": "secondarySourceGood", - "4": "bothSourcesGood" - } - }, - "index": null, - "value": [ - "xupsInput", - 6 - ] - }, - "xupsSecondaryInputWatch": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "disabled", - "2": "enabled" - } - }, - "index": null, - "value": [ - "xupsInput", - 7 - ] - }, - "xupsOutputLoad": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutput", - 1 - ] - }, - "xupsOutputFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutput", - 2 - ] - }, - "xupsOutputNumPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutput", - 3 - ] - }, - "xupsOutputTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsOutputEntry" - }, - "index": null, - "value": [ - "xupsOutput", - 4 - ] - }, - "xupsOutputEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsOutputEntry" - }, - "index": [ - "xupsOutputPhase" - ], - "value": [ - "xupsOutputTable", - 1 - ] - }, - "XupsOutputEntry": { - "tp": "SEQUENCE" - }, - "xupsOutputPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutputEntry", - 1 - ] - }, - "xupsOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutputEntry", - 2 - ] - }, - "xupsOutputCurrent": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutputEntry", - 3 - ] - }, - "xupsOutputWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsOutputEntry", - 4 - ] - }, - "xupsOutputSource": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "other", - "2": "none", - "3": "normal", - "4": "bypass", - "5": "battery", - "6": "booster", - "7": "reducer", - "8": "parallelCapacity", - "9": "parallelRedundant", - "10": "highEfficiencyMode", - "11": "maintenanceBypass" - } - }, - "index": null, - "value": [ - "xupsOutput", - 5 - ] - }, - "xupsBypassFrequency": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBypass", - 1 - ] - }, - "xupsBypassNumPhases": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBypass", - 2 - ] - }, - "xupsBypassTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsBypassEntry" - }, - "index": null, - "value": [ - "xupsBypass", - 3 - ] - }, - "xupsBypassEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsBypassEntry" - }, - "index": [ - "xupsBypassPhase" - ], - "value": [ - "xupsBypassTable", - 1 - ] - }, - "XupsBypassEntry": { - "tp": "SEQUENCE" - }, - "xupsBypassPhase": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBypassEntry", - 1 - ] - }, - "xupsBypassVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsBypassEntry", - 2 - ] - }, - "xupsEnvAmbientTemp": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 1 - ] - }, - "xupsEnvAmbientLowerLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 2 - ] - }, - "xupsEnvAmbientUpperLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 3 - ] - }, - "xupsEnvAmbientHumidity": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsEnvironment", - 4 - ] - }, - "xupsAlarms": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "xupsAlarm", - 1 - ] - }, - "xupsAlarmTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsAlarmEntry" - }, - "index": null, - "value": [ - "xupsAlarm", - 2 - ] - }, - "xupsAlarmEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsAlarmEntry" - }, - "index": [ - "xupsAlarmID" - ], - "value": [ - "xupsAlarmTable", - 1 - ] - }, - "XupsAlarmEntry": { - "tp": "SEQUENCE" - }, - "xupsAlarmID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsAlarmEntry", - 1 - ] - }, - "xupsAlarmDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "OBJECT IDENTIFIER" - }, - "index": null, - "value": [ - "xupsAlarmEntry", - 2 - ] - }, - "xupsAlarmTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "TimeTicks" - }, - "index": null, - "value": [ - "xupsAlarmEntry", - 3 - ] - }, - "xupsOnBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 3 - ] - }, - "xupsLowBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 4 - ] - }, - "xupsUtilityPowerRestored": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 5 - ] - }, - "xupsReturnFromLowBattery": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 6 - ] - }, - "xupsOutputOverload": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 7 - ] - }, - "xupsInternalFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 8 - ] - }, - "xupsBatteryDischarged": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 9 - ] - }, - "xupsInverterFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 10 - ] - }, - "xupsOnBypass": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 11 - ] - }, - "xupsBypassNotAvailable": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 12 - ] - }, - "xupsOutputOff": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 13 - ] - }, - "xupsInputFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 14 - ] - }, - "xupsBuildingAlarm": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 15 - ] - }, - "xupsShutdownImminent": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 16 - ] - }, - "xupsOnInverter": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 17 - ] - }, - "xupsAlarmNumEvents": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Gauge32" - }, - "index": null, - "value": [ - "xupsAlarm", - 18 - ] - }, - "xupsAlarmEventTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsAlarmEventEntry" - }, - "index": null, - "value": [ - "xupsAlarm", - 19 - ] - }, - "xupsAlarmEventEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsAlarmEventEntry" - }, - "index": [ - "xupsAlarmEventID" - ], - "value": [ - "xupsAlarmEventTable", - 1 - ] - }, - "XupsAlarmEventEntry": { - "tp": "SEQUENCE" - }, - "xupsAlarmEventID": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsAlarmEventEntry", - 1 - ] - }, - "xupsAlarmEventDateAndTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsAlarmEventEntry", - 2 - ] - }, - "xupsAlarmEventKind": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "occurred", - "2": "cleared", - "3": "unknown" - } - }, - "index": null, - "value": [ - "xupsAlarmEventEntry", - 3 - ] - }, - "xupsAlarmEventDescr": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsAlarmEventEntry", - 4 - ] - }, - "xupsAlarmEventMsg": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsAlarmEventEntry", - 5 - ] - }, - "xupsBreakerOpen": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 20 - ] - }, - "xupsAlarmEntryAdded": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 21 - ] - }, - "xupsAlarmEntryRemoved": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 22 - ] - }, - "xupsAlarmBatteryBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 23 - ] - }, - "xupsOutputOffAsRequested": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 24 - ] - }, - "xupsDiagnosticTestFailed": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 25 - ] - }, - "xupsCommunicationsLost": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 26 - ] - }, - "xupsUpsShutdownPending": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 27 - ] - }, - "xupsAlarmTestInProgress": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 28 - ] - }, - "xupsAmbientTempBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 29 - ] - }, - "xupsLossOfRedundancy": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 30 - ] - }, - "xupsAlarmTempBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 31 - ] - }, - "xupsAlarmChargerFailed": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 32 - ] - }, - "xupsAlarmFanFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 33 - ] - }, - "xupsAlarmFuseFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 34 - ] - }, - "xupsPowerSwitchBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 35 - ] - }, - "xupsModuleFailure": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 36 - ] - }, - "xupsOnAlternatePowerSource": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 37 - ] - }, - "xupsAltPowerNotAvailable": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 38 - ] - }, - "xupsNoticeCondition": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 39 - ] - }, - "xupsRemoteTempBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 40 - ] - }, - "xupsRemoteHumidityBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 41 - ] - }, - "xupsAlarmOutputBad": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 42 - ] - }, - "xupsAlarmAwaitingPower": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 43 - ] - }, - "xupsOnMaintenanceBypass": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsAlarm", - 44 - ] - }, - "xupsTestStart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "testBattery", - "2": "noTestStarted", - "3": "testSystem", - "4": "testSecondarySource", - "5": "flashLightsTest", - "6": "cancelTest" - } - }, - "index": null, - "value": [ - "xupsTest", - 1 - ] - }, - "xupsTestBatteryStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "passed", - "3": "failed", - "4": "inProgress", - "5": "notSupported", - "6": "inhibited", - "7": "scheduled" - } - }, - "index": null, - "value": [ - "xupsTest", - 2 - ] - }, - "xupsLastGeneralTest": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "2": "noTestStarted", - "3": "testSystem", - "4": "testSecondarySource", - "5": "flashLightsTest" - } - }, - "index": null, - "value": [ - "xupsTest", - 3 - ] - }, - "xupsLastGeneralTestResult": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "unknown", - "2": "passed", - "3": "failed", - "4": "inProgress", - "5": "notSupported", - "6": "inhibited", - "7": "scheduled" - } - }, - "index": null, - "value": [ - "xupsTest", - 4 - ] - }, - "xupsControlOutputOffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsControl", - 1 - ] - }, - "xupsControlOutputOnDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsControl", - 2 - ] - }, - "xupsControlOutputOffTrapDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsControl", - 3 - ] - }, - "xupsControlOutputOnTrapDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsControl", - 4 - ] - }, - "xupsControlToBypassDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsControl", - 5 - ] - }, - "xupsLoadShedSecsWithRestart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsControl", - 6 - ] - }, - "xupsSwitchable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "switchable", - "2": "notSwitchable" - } - }, - "index": null, - "value": [ - "xupsControl", - 7 - ] - }, - "xupsConfigOutputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsConfig", - 1 - ] - }, - "xupsConfigInputVoltage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsConfig", - 2 - ] - }, - "xupsConfigOutputWatts": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsConfig", - 3 - ] - }, - "xupsConfigOutputFreq": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsConfig", - 4 - ] - }, - "xupsConfigDateAndTime": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsConfig", - 5 - ] - }, - "xupsConfigLowOutputVoltageLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsConfig", - 6 - ] - }, - "xupsConfigHighOutputVoltageLimit": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsConfig", - 7 - ] - }, - "xupsConfigInstallDate": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsConfig", - 8 - ] - }, - "xupsMaxTrapLevel": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "none", - "2": "critical", - "3": "major", - "4": "minor", - "5": "allTraps" - } - }, - "index": null, - "value": [ - "xupsTrapControl", - 1 - ] - }, - "xupsSendTrapType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "stnd", - "2": "xups", - "3": "stndPlus", - "4": "xupsPlus", - "5": "pxg" - } - }, - "index": null, - "value": [ - "xupsTrapControl", - 2 - ] - }, - "xupsTrapMessage": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "DisplayString" - }, - "index": null, - "value": [ - "xupsTrapControl", - 3 - ] - }, - "xupsTrapSource": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsTrapControl", - 4 - ] - }, - "xupsHeartbeatMinsInterval": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsTrapControl", - 5 - ] - }, - "xupsNumReceptacles": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecep", - 1 - ] - }, - "xupsRecepTable": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "SEQUENCE OF XupsRecepEntry" - }, - "index": null, - "value": [ - "xupsRecep", - 2 - ] - }, - "xupsRecepEntry": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "XupsRecepEntry" - }, - "index": [ - "xupsRecepIndex" - ], - "value": [ - "xupsRecepTable", - 1 - ] - }, - "XupsRecepEntry": { - "tp": "SEQUENCE" - }, - "xupsRecepIndex": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecepEntry", - 1 - ] - }, - "xupsRecepStatus": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "on", - "2": "off", - "3": "pendingOff", - "4": "pendingOn", - "5": "unknown", - "6": "reserved", - "7": "failedClosed", - "8": "failedOpen" - } - }, - "index": null, - "value": [ - "xupsRecepEntry", - 2 - ] - }, - "xupsRecepOffDelaySecs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecepEntry", - 3 - ] - }, - "xupsRecepOnDelaySecs": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecepEntry", - 4 - ] - }, - "xupsRecepAutoOffDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecepEntry", - 5 - ] - }, - "xupsRecepAutoOnDelay": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecepEntry", - 6 - ] - }, - "xupsRecepShedSecsWithRestart": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsRecepEntry", - 7 - ] - }, - "xupsTopologyType": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsTopology", - 1 - ] - }, - "xupsTopoMachineCode": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsTopology", - 2 - ] - }, - "xupsTopoUnitNumber": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "Integer32" - }, - "index": null, - "value": [ - "xupsTopology", - 3 - ] - }, - "xupsTopoPowerStrategy": { - "tp": "OBJECT-TYPE", - "syntax": { - "tp": "INTEGER", - "values": { - "1": "highAlert", - "2": "standard", - "3": "enableHighEfficiency", - "4": "immediateHighEfficiency" - } - }, - "index": null, - "value": [ - "xupsTopology", - 4 - ] - }, - "xupsTrapDefined": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsTrapSource", - 1 - ] - }, - "xupsTrapOidDefined": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsTrapDefined", - 0 - ] - }, - "xupsConformance": { - "tp": "OBJECT IDENTIFIER", - "value": [ - "xupsMIB", - 100 - ] - }, - "xupsIdentFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 2 - ] - }, - "xupsBatteryFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 3 - ] - }, - "xupsInputFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 4 - ] - }, - "xupsInputTableFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 5 - ] - }, - "xupsOutputFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 6 - ] - }, - "xupsOutputTableFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 7 - ] - }, - "xupsBypassFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 8 - ] - }, - "xupsEnvironmentFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 9 - ] - }, - "xupsAlarmFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 10 - ] - }, - "xupsAlarmEventsFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 11 - ] - }, - "xupsTestFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 12 - ] - }, - "xupsControlFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 13 - ] - }, - "xupsConfigFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 14 - ] - }, - "xupsTrapControlFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 15 - ] - }, - "xupsRecepFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 16 - ] - }, - "xupsTopologyFullGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 17 - ] - }, - "xupsDeprecatedGroup": { - "tp": "OBJECT-GROUP", - "value": [ - "xupsConformance", - 21 - ] - } -} \ No newline at end of file diff --git a/mibs/parser/__init__.py b/mibs/parser/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/mibs/parser/grammar.py b/mibs/parser/grammar.py deleted file mode 100644 index cfd9ad0..0000000 --- a/mibs/parser/grammar.py +++ /dev/null @@ -1,353 +0,0 @@ -from pyleri.grammar import Grammar -from pyleri.repeat import Repeat -from pyleri.sequence import Sequence -from pyleri.regex import Regex -from pyleri.choice import Choice -from pyleri.optional import Optional -from pyleri.keyword import Keyword -from pyleri.list import List - - -class MibsGrammar(Grammar): - # RE_KEYWORDS = re.compile('^[A-Z-]+') - # tk = Token('::=') - r_dec = Regex(r'[\d-]+') - r_hex = Regex("'.*?'[hH]") - r_bin = Regex("'.*?'[bB]") - r_objname = Regex(r'[\w\-]+') - r_objname2 = Regex(r'[A-Z][\w\-]+') - r_quotes = Regex('\"(.|\n)*?\"') - - s_value_key = Sequence(r_objname, '(', r_dec, ')') - s_accolades_map_itm = Sequence( - r_objname, '(', Choice(r_dec, r_hex, most_greedy=False), ')') - s_accolades_map = Sequence('{', List(s_accolades_map_itm), '}') - s_accolades_list = Sequence('{', List(r_objname), '}') - s_oid = Sequence('{', Repeat(Choice(r_dec, r_objname, s_value_key)), '}') - s_sub_types_int = Sequence( - '(', - List( - List(Choice(r_dec, r_hex, r_bin, most_greedy=False), '..', 1, 2), - '|', - 1), ')') - s_sub_types_octetstring = Sequence( - '(', 'SIZE', '(', List( - List(Choice(r_dec, r_hex, r_bin, most_greedy=False), '..', 1, 2), - '|', - 1), ')', ')') - - s_val_int = Sequence('INTEGER', Optional(s_sub_types_int)) - s_val_int_map = Sequence('INTEGER', s_accolades_map) - s_val_bit_map = Sequence('BITS', s_accolades_map) - s_val_octetstring = Sequence( - 'OCTET STRING', Optional(s_sub_types_octetstring)) - s_val_objectidentifier = Sequence('OBJECT IDENTIFIER') - s_val_sequenceof = Sequence('SEQUENCE OF', r_objname2) - s_val_other_map = Sequence(r_objname2, s_accolades_map) - s_val_other = Sequence(r_objname2, Repeat( - Choice(s_sub_types_octetstring, s_sub_types_int, most_greedy=False), - 0, - 1)) - s_val_sequence = Sequence( - 'SEQUENCE', - '{', - List(Sequence( - r_objname, - Choice( - s_val_octetstring, - s_val_objectidentifier, - s_val_int_map, - s_val_int, - s_val_other, - most_greedy=False))), '}') # s_accolades map ok? - - c_syntax = Choice( - s_val_sequenceof, - s_val_int_map, - s_val_int, - s_val_bit_map, - s_val_octetstring, - s_val_objectidentifier, - s_val_other_map, - s_val_other, - most_greedy=False) - - s_status = Sequence('STATUS', Choice( - 'current', - 'deprecated', - 'obsolete', - most_greedy=False)) - s_status_ = Sequence('STATUS', Choice( - 'mandatory', - 'optional', - 'obsolete', - 'deprecated', - most_greedy=False)) - s_description = Sequence('DESCRIPTION', r_quotes) - s_access_ = Sequence('ACCESS', Choice( - 'read-only', - 'read-write', - 'write-only', - 'not-accessible', - most_greedy=False)) - s_access = Sequence('MAX-ACCESS', Choice( - 'not-accessible', - 'accessible-for-notify', - 'read-only', - 'read-write', - 'read-create', - most_greedy=False)) - s_index = Sequence( - 'INDEX', - '{', - List(Sequence(Optional('IMPLIED'), r_objname)), - '}') - s_defval = Sequence( - 'DEFVAL', - Sequence( - '{', - Choice( - r_quotes, - r_hex, - r_bin, - s_accolades_list, - Sequence('{', Repeat(r_dec, 1), '}'), - r_objname, - most_greedy=False), '}')) - s_units = Sequence('UNITS', r_quotes) - s_reference = Sequence('REFERENCE', r_quotes) - s_augments = Sequence('AUGMENTS', '{', r_objname, '}') - s_objects = Sequence('OBJECTS', s_accolades_list) - s_displayhint = Sequence('DISPLAY-HINT', r_quotes) - s_notifications = Sequence('NOTIFICATIONS', s_accolades_list) - s_lastupdated = Sequence('LAST-UPDATED', r_quotes) # rfc5878 ExtUTCTime - s_organization = Sequence('ORGANIZATION', r_quotes) - s_contactinfo = Sequence('CONTACT-INFO', r_quotes) - s_revision = Sequence('REVISION', r_quotes, 'DESCRIPTION', r_quotes) - s_productrelease = Sequence('PRODUCT-RELEASE', r_quotes) - s_enterprice = Sequence('ENTERPRISE', r_objname) - s_variables = Sequence('VARIABLES', s_accolades_list) - s_syntax = Sequence('SYNTAX', c_syntax) - s_val_textualconvention = Sequence( - 'TEXTUAL-CONVENTION', - Repeat(s_displayhint, 0, 1), - s_status, - s_description, - Repeat(s_reference, 0, 1), - s_syntax) - - s_objidentifier = Sequence('OBJECT', 'IDENTIFIER', '::=', s_oid) - - # rfc1212 - s_objtyp_ = Sequence( - 'OBJECT-TYPE', - s_syntax, # - s_access_, - s_status_, - Repeat(s_description, 0, 1), - Repeat(s_reference, 0, 1), - Repeat(s_index, 0, 1), # - Repeat(s_augments, 0, 1), # - Repeat(s_defval, 0, 1), # - '::=', - s_oid, - ) - - # rfc1215 - s_traptyp = Sequence( - 'TRAP-TYPE', - s_enterprice, - Repeat(s_variables, 0, 1), - Repeat(s_description, 0, 1), - Repeat(s_reference, 0, 1), - '::=', - r_dec, - ) - - # rfc2578 - s_moduleidentity = Sequence( - 'MODULE-IDENTITY', - s_lastupdated, - s_organization, - s_contactinfo, - s_description, - Repeat(s_revision), - '::=', - s_oid, - ) - - s_objidentity = Sequence( - 'OBJECT-IDENTITY', - s_status, - s_description, - Repeat(s_reference, 0, 1), - '::=', - s_oid, - ) - - s_objtyp = Sequence( - 'OBJECT-TYPE', - s_syntax, # - Repeat(s_units, 0, 1), - s_access, - s_status, - s_description, - Repeat(s_reference, 0, 1), - Repeat(s_index, 0, 1), # - Repeat(s_augments, 0, 1), # - Repeat(s_defval, 0, 1), # - '::=', - s_oid, - ) - - s_notificationtyp = Sequence( - 'NOTIFICATION-TYPE', - Repeat(s_objects, 0, 1), # - s_status, - s_description, - Repeat(s_reference, 0, 1), - '::=', - s_oid, - ) - - # rfc2580 - s_objgroup = Sequence( - 'OBJECT-GROUP', - s_objects, - s_status, - s_description, - Repeat(s_reference, 0, 1), - '::=', - s_oid, - ) - - s_notificationgroup = Sequence( - 'NOTIFICATION-GROUP', - s_notifications, - s_status, - s_description, - Repeat(s_reference, 0, 1), - '::=', - s_oid, - ) - - s_modulecompliance = Sequence( - 'MODULE-COMPLIANCE', - s_status, - s_description, - Repeat(s_reference, 0, 1), - Sequence('MODULE', Repeat(Choice( - Sequence( - 'OBJECT', - r_objname, - Repeat(Sequence('SYNTAX', c_syntax), 0, 1), - Repeat(Sequence('WRITE-SYNTAX', c_syntax), 0, 1), - Repeat(Sequence( - 'MIN-ACCESS', - Choice( - 'not-accessible', - 'accessible-for-notify', - 'read-only', - 'read-write', - 'read-create', - most_greedy=False)), 0, 1), - s_description, - ), - Sequence('GROUP', r_objname, s_description), - Sequence('MANDATORY-GROUPS', s_accolades_list), - r_objname2, # modulename - ))), - '::=', - s_oid, - ) - - s_agentcapabilities = Sequence( - 'AGENT-CAPABILITIES', - s_productrelease, - Sequence('STATUS', Choice('current', 'obsolete', most_greedy=False)), - s_description, - Repeat(s_reference, 0, 1), - Repeat(Sequence( - Sequence('SUPPORTS', r_objname), - Sequence('INCLUDES', s_accolades_list), - Repeat(Sequence( - 'VARIATION', r_objname, - Repeat(Sequence('SYNTAX', c_syntax), 0, 1), - Repeat(Sequence('WRITE-SYNTAX', c_syntax), 0, 1), - Repeat(Sequence( - 'ACCESS', - Choice( - 'not-implemented', - 'accessible-for-notify', - 'read-only', - 'read-write', - 'read-create', - 'write-only', - most_greedy=False)), 0, 1), - Repeat(Sequence('CREATION-REQUIRES', s_accolades_list), 0, 1), - Repeat(s_defval, 0, 1), - Sequence('DESCRIPTION', r_quotes) - )), - )), - '::=', - s_oid, - ) - - mib_kv = Sequence(r_objname, Choice( - # KV-types - s_agentcapabilities, - s_moduleidentity, - s_modulecompliance, - s_notificationtyp, - s_notificationgroup, - s_objidentifier, - s_objidentity, - s_objgroup, - s_objtyp, - s_objtyp_, - s_traptyp, - most_greedy=False)) - - s_val_choice = Sequence('CHOICE', Regex('{(.|\n)*?}')) - s_val_implicit = Sequence( - Regex(r'\[.*?\]'), - 'IMPLICIT', - Choice(s_val_int, s_val_octetstring, most_greedy=False)) - - mib_v = Sequence(r_objname2, '::=', Choice( - # V-types - s_val_sequence, - s_val_textualconvention, - s_val_octetstring, - s_val_int_map, - s_val_int, - s_val_choice, # smi - s_val_objectidentifier, # smi - s_val_other, - s_val_implicit, # smi - most_greedy=False)) - - s_macro = Sequence( - Regex(r'[A-Z\-]+'), 'MACRO', '::=', Regex('BEGIN(.|\n)*?END')) - - mib_imports = Repeat(Sequence( - 'IMPORTS', - Repeat(Sequence(List(r_objname), 'FROM', r_objname)), ';'), 0, 1) - mib_exports = Repeat(Sequence('EXPORTS', List(r_objname), ';'), 0, 1) - - rp_obj_def = Repeat(Choice( - mib_v, - mib_kv, - s_macro, - most_greedy=False)) - - START = Sequence( - r_objname, - 'DEFINITIONS', - '::=', - 'BEGIN', - mib_exports, - mib_imports, - rp_obj_def, - 'END' - ) diff --git a/mibs/parser/parse_tree.py b/mibs/parser/parse_tree.py deleted file mode 100644 index eda30a3..0000000 --- a/mibs/parser/parse_tree.py +++ /dev/null @@ -1,167 +0,0 @@ -V_FUNS = { - 's_val_textualconvention': lambda n: { - 'tp': n.children[0].string, - 'syntax': parse_syntax(n.children[5]), - 'display_hint': parse_display_hint(n.children[1]), - }, - 's_val_objectidentifier': lambda n: { - 'tp': n.children[0].string, - }, - 's_val_octetstring': lambda n: { - 'tp': n.children[0].string, - }, - 's_val_int': lambda n: { - 'tp': n.children[0].string, - }, - 's_val_int_map': lambda n: { - 'tp': n.children[0].string, - 'values': parse_map(n) - }, - 's_val_bit_map': lambda n: { - 'tp': n.children[0].string, - 'values': parse_map(n) - }, - 's_val_other': lambda n: { - 'tp': n.children[0].string, - }, - 's_val_sequence': lambda n: { - 'tp': n.children[0].string, - }, - 's_val_sequenceof': lambda n: { - 'tp': n.string, - }, -} -KV_FUNS = { - 's_objtyp': lambda n: { - 'tp': 'OBJECT-TYPE', - # 'description': parse_description(n.children[5], - 'syntax': parse_syntax(n.children[1]), - 'index': parse_index(n.children[-5]) or parse_augments(n.children[-4]), - 'value': parse_oid(n.children[-1]), - }, - 's_objtyp_': lambda n: { - 'tp': 'OBJECT-TYPE', - # 'description': n.children[5].children else n.children[3]), - 'syntax': parse_syntax(n.children[1]), - 'index': parse_index(n.children[-5]) or parse_augments(n.children[-4]), - 'value': parse_oid(n.children[-1]), - }, - 's_objidentity': lambda n: { - 'tp': 'OBJECT-IDENTITY', - # 'description': parse_description(n.children[2]), - 'value': parse_oid(n.children[-1]), - }, - 's_objidentifier': lambda n: { - 'tp': 'OBJECT IDENTIFIER', - 'value': parse_oid(n.children[-1]), - }, - 's_moduleidentity': lambda n: { - 'tp': 'MODULE-IDENTITY', - 'value': parse_oid(n.children[-1]), - }, - 's_objgroup': lambda n: { - 'tp': 'OBJECT-GROUP', - 'value': parse_oid(n.children[-1]), - }, -} - - -def parse_map(node): - lu = {} - for i, n in enumerate(node.children[1].children[1].children): - if i % 2 == 0: - k = int(n.children[2].string) - v = n.children[0].string - lu[k] = v - return lu - - -def parse_augments(node): - if node.children: - return node.children[0].children[2].string - - -def parse_index(node): - if node.children: - columns = [] - for i, n in enumerate(node.children[0].children[2].children): - if i % 2 == 0: - columns.append(n.string) - return columns - - -def parse_display_hint(node): - if node.children: - return node.children[0].children[-1].string[1:-1] - - -def parse_description(node): - if node.children: - return node.children[1].string.strip() - - -def parse_oid(node): - if len(node.children[1].children) < 2: - raise Exception('! oid length: {}'.format(node.string)) - path = [] - for i, a in enumerate(node.children[1].children): - if a.children[0].element.name == 'r_dec': - path += (int(a.string), ) - elif a.children[0].element.name == 's_value_key': - path += (int(a.children[0].children[2].string), ) - elif not i and a.children[0].element.name == 'r_objname': - path += (a.string, ) - else: - raise Exception('! oid: {}'.format(node.string)) - return path - - -def parse_syntax(node): - a = node.children[-1].children[0] - tp = a.element.name - return V_FUNS[tp](a) - - -def parse_tree(node): - lk_definitions = { - 'Counter', - 'Counter32', - 'Counter64', - 'Gauge', - 'Gauge32', - 'Integer32', - 'IpAddress', - 'NetworkAddress', - 'Opaque', - 'TimeTicks', - 'Unsigned32', - } - - mib = {} - mib['IMPORTS'] = [ - [ - a.children[2].string, - [n.string for i, n in enumerate(a.children[0].children) - if i % 2 == 0]] - for a in node.children[5].children[0].children[1].children - ] if node.children[5].children else [] - - for a in node.children[6].children: - if a.children[0].element.name == 'mib_v': - name = a.children[0].children[0].string - node_ = a.children[0].children[-1].children[0] - tp = node_.element.name - # skip predefined type assignments - if name in lk_definitions: - continue - if tp in V_FUNS: - mib[name] = V_FUNS[tp](node_) - - elif a.children[0].element.name == 'mib_kv': - name = a.children[0].children[0].string - node_ = a.children[0].children[-1].children[0] - tp = a.children[0].children[-1].children[0].element.name - if tp in KV_FUNS: - mib[name] = KV_FUNS[tp](node_) - - return node.children[0].string, mib diff --git a/mibs/parser/utils.py b/mibs/parser/utils.py deleted file mode 100644 index ed060bd..0000000 --- a/mibs/parser/utils.py +++ /dev/null @@ -1,52 +0,0 @@ -def remove_comments_from_mib(mib): - CAPTURE, COMMENT, MLCOMMENT, DQUOTE, SQUOTE = range(5) - - context = CAPTURE - prev = None - out = [] - p = 0 - - for i, c in enumerate(mib): - if context == CAPTURE: - if c == '-' and prev == '-': - context = COMMENT - out.append(mib[p:i - 1]) - prev = None - continue - if c == '*' and prev == '/': - context = MLCOMMENT - out.append(mib[p:i - 1]) - prev = None - continue - - if c == '"' and prev != '\\': - context = DQUOTE - elif c == "'" and prev != '\\': - context = SQUOTE - - elif context == DQUOTE: - if c == '"' and prev != '\\': - context = CAPTURE - - elif context == SQUOTE: - if c == "'" and prev != '\\': - context = CAPTURE - - elif context == COMMENT: - if c == '-' and prev == '-': - context = CAPTURE - p = i + 1 - elif c == '\n': - context = CAPTURE - p = i - - elif context == MLCOMMENT: - if c == '/' and prev == '*': - context = CAPTURE - p = i + 1 - - prev = c - - out.append(mib[p:i + 1]) - - return ''.join(filter(lambda x: x.strip(), out)) diff --git a/mibs/requirements.txt b/mibs/requirements.txt deleted file mode 100644 index d12507a..0000000 --- a/mibs/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -pyleri==1.3.4 \ No newline at end of file